From 98b5eeb8440d34ac84f58271c8b8eea88881260a Mon Sep 17 00:00:00 2001 From: Pedro Ribeiro <92851886+pedrolourencoribeiro@users.noreply.github.com> Date: Mon, 19 May 2025 14:26:00 +0100 Subject: [PATCH] fix(pypdfium): resolve overlapping text when merging bounding boxes (#1549) get merged_text from boundingbox instead of merging it to prevent overlaps Signed-off-by: Pedro Ribeiro --- docling/backend/pypdfium2_backend.py | 7 +- .../groundtruth/docling_v1/2203.01017v2.json | 110 +- .../docling_v1/2203.01017v2.pages.json | 1660 +- .../groundtruth/docling_v1/2206.01062.json | 32 +- .../docling_v1/2206.01062.pages.json | 650 +- .../docling_v1/2305.03393v1-pg9.pages.json | 12 +- .../groundtruth/docling_v1/2305.03393v1.json | 24 +- .../docling_v1/2305.03393v1.pages.json | 572 +- .../docling_v1/amt_handbook_sample.json | 2 +- .../docling_v1/amt_handbook_sample.pages.json | 54 +- .../docling_v1/code_and_formula.pages.json | 36 +- .../docling_v1/multi_page.doctags.txt | 55 + .../groundtruth/docling_v1/multi_page.json | 1319 + .../data/groundtruth/docling_v1/multi_page.md | 105 + .../docling_v1/multi_page.pages.json | 21968 ++++++++++++++++ .../docling_v1/picture_classification.json | 4 +- .../picture_classification.pages.json | 24 +- .../docling_v1/redp5110_sampled.json | 52 +- .../docling_v1/redp5110_sampled.pages.json | 1014 +- .../docling_v1/right_to_left_01.pages.json | 12 +- .../docling_v1/right_to_left_02.pages.json | 18 +- .../docling_v1/right_to_left_03.json | 2 +- .../docling_v1/right_to_left_03.pages.json | 156 +- .../groundtruth/docling_v2/2203.01017v2.json | 110 +- .../docling_v2/2203.01017v2.pages.json | 1660 +- .../groundtruth/docling_v2/2206.01062.json | 32 +- .../docling_v2/2206.01062.pages.json | 650 +- .../docling_v2/2305.03393v1-pg9.pages.json | 12 +- .../groundtruth/docling_v2/2305.03393v1.json | 24 +- .../docling_v2/2305.03393v1.pages.json | 572 +- .../docling_v2/amt_handbook_sample.json | 2 +- .../docling_v2/amt_handbook_sample.pages.json | 54 +- .../docling_v2/code_and_formula.pages.json | 36 +- .../docling_v2/multi_page.doctags.txt | 66 + .../groundtruth/docling_v2/multi_page.json | 1949 ++ .../data/groundtruth/docling_v2/multi_page.md | 87 + .../docling_v2/multi_page.pages.json | 21968 ++++++++++++++++ .../docling_v2/picture_classification.json | 4 +- .../picture_classification.pages.json | 24 +- .../docling_v2/redp5110_sampled.json | 52 +- .../docling_v2/redp5110_sampled.pages.json | 1014 +- .../docling_v2/right_to_left_01.pages.json | 12 +- .../docling_v2/right_to_left_02.pages.json | 18 +- .../docling_v2/right_to_left_03.json | 2 +- .../docling_v2/right_to_left_03.pages.json | 156 +- tests/data/pdf/multi_page.pdf | Bin 0 -> 128322 bytes .../groundtruth/docling_v1/ocr_test.json | 8 +- .../docling_v1/ocr_test.pages.json | 246 +- .../docling_v2/ocr_test.doctags.txt | 2 +- .../groundtruth/docling_v2/ocr_test.json | 8 +- .../docling_v2/ocr_test.pages.json | 246 +- tests/test_backend_pdfium.py | 13 + 52 files changed, 52225 insertions(+), 4690 deletions(-) create mode 100644 tests/data/groundtruth/docling_v1/multi_page.doctags.txt create mode 100644 tests/data/groundtruth/docling_v1/multi_page.json create mode 100644 tests/data/groundtruth/docling_v1/multi_page.md create mode 100644 tests/data/groundtruth/docling_v1/multi_page.pages.json create mode 100644 tests/data/groundtruth/docling_v2/multi_page.doctags.txt create mode 100644 tests/data/groundtruth/docling_v2/multi_page.json create mode 100644 tests/data/groundtruth/docling_v2/multi_page.md create mode 100644 tests/data/groundtruth/docling_v2/multi_page.pages.json create mode 100644 tests/data/pdf/multi_page.pdf diff --git a/docling/backend/pypdfium2_backend.py b/docling/backend/pypdfium2_backend.py index 67e1f05..d91e16f 100644 --- a/docling/backend/pypdfium2_backend.py +++ b/docling/backend/pypdfium2_backend.py @@ -175,13 +175,18 @@ class PyPdfiumPageBackend(PdfPageBackend): if len(group) == 1: return group[0] - merged_text = "".join(cell.text for cell in group) merged_bbox = BoundingBox( l=min(cell.rect.to_bounding_box().l for cell in group), t=min(cell.rect.to_bounding_box().t for cell in group), r=max(cell.rect.to_bounding_box().r for cell in group), b=max(cell.rect.to_bounding_box().b for cell in group), ) + + assert self._ppage is not None + self.text_page = self._ppage.get_textpage() + bbox = merged_bbox.to_bottom_left_origin(page_size.height) + merged_text = self.text_page.get_text_bounded(*bbox.as_tuple()) + return TextCell( index=group[0].index, text=merged_text, diff --git a/tests/data/groundtruth/docling_v1/2203.01017v2.json b/tests/data/groundtruth/docling_v1/2203.01017v2.json index 19244b1..0973773 100644 --- a/tests/data/groundtruth/docling_v1/2203.01017v2.json +++ b/tests/data/groundtruth/docling_v1/2203.01017v2.json @@ -4913,9 +4913,9 @@ { "bbox": [ 315.65362548828125, - 489.1985778808594, + 489.19854736328125, 537.1475219726562, - 563.276611328125 + 563.2765655517578 ], "page": 1, "span": [ @@ -4979,9 +4979,9 @@ { "bbox": [ 312.10369873046875, - 541.3901519775391, + 541.3901214599609, 550.38916015625, - 713.5591354370117 + 713.5591125488281 ], "page": 3, "span": [ @@ -5003,7 +5003,7 @@ 74.30525970458984, 608.2984924316406, 519.9801025390625, - 714.0887985229492 + 714.0887908935547 ], "page": 5, "span": [ @@ -5024,7 +5024,7 @@ "bbox": [ 53.03328323364258, 284.3311462402344, - 285.3731689453125, + 285.3731384277344, 534.3346557617188 ], "page": 5, @@ -5047,7 +5047,7 @@ 49.97503662109375, 604.4210662841797, 301.6335754394531, - 688.2873382568359 + 688.2873153686523 ], "page": 8, "span": [ @@ -5066,7 +5066,7 @@ "prov": [ { "bbox": [ - 305.5836486816406, + 305.58367919921875, 611.3732452392578, 554.8258666992188, 693.3458404541016 @@ -5111,9 +5111,9 @@ { "bbox": [ 216.76925659179688, - 348.65301513671875, + 348.6529541015625, 375.7829284667969, - 411.5093688964844 + 411.5093994140625 ], "page": 8, "span": [ @@ -5132,10 +5132,10 @@ "prov": [ { "bbox": [ - 383.1364440917969, + 383.1363830566406, 349.2250671386719, - 542.1132202148438, - 410.7686767578125 + 542.1131591796875, + 410.7687072753906 ], "page": 8, "span": [ @@ -5220,7 +5220,7 @@ "prov": [ { "bbox": [ - 51.15378952026367, + 51.153778076171875, 447.09332275390625, 282.8598937988281, 687.6914825439453 @@ -5286,8 +5286,8 @@ "prov": [ { "bbox": [ - 55.116363525390625, - 542.6654510498047, + 55.11635208129883, + 542.6654968261719, 279.370849609375, 655.7449951171875 ], @@ -5375,9 +5375,9 @@ { "bbox": [ 323.46868896484375, - 327.739501953125, + 327.73956298828125, 525.9569091796875, - 429.5491638183594 + 429.5492248535156 ], "page": 15, "span": [ @@ -5421,7 +5421,7 @@ 66.79948425292969, 293.8616027832031, 528.5565795898438, - 538.3836822509766 + 538.3837127685547 ], "page": 16, "span": [ @@ -5443,9 +5443,9 @@ { "bbox": [ 315.65362548828125, - 489.1985778808594, + 489.19854736328125, 537.1475219726562, - 563.276611328125 + 563.2765655517578 ], "page": 1, "span": [ @@ -6250,10 +6250,10 @@ "prov": [ { "bbox": [ - 310.67584228515625, + 310.6757507324219, 636.7794799804688, - 542.9547119140625, - 718.8061141967773 + 542.9546508789062, + 718.8061218261719 ], "page": 4, "span": [ @@ -9329,7 +9329,7 @@ 332.9688720703125, 148.73028564453125, 520.942138671875, - 251.7164306640625 + 251.71649169921875 ], "page": 7, "span": [ @@ -10152,9 +10152,9 @@ { "bbox": [ 53.62853240966797, - 499.60003662109375, + 499.6000061035156, 298.5574951171875, - 573.0514221191406 + 573.0514526367188 ], "page": 8, "span": [ @@ -12941,7 +12941,7 @@ "prov": [ { "bbox": [ - 83.31756591796875, + 83.31759643554688, 304.7430114746094, 248.873046875, 395.9864501953125 @@ -12968,9 +12968,9 @@ { "bbox": [ 310.3294372558594, - 655.8524780273438, + 655.8524932861328, 555.8338623046875, - 690.8223266601562 + 690.8223342895508 ], "page": 13, "span": [ @@ -12994,9 +12994,9 @@ { "bbox": [ 309.9566345214844, - 607.2774658203125, + 607.2774353027344, 555.7466430664062, - 637.3855133056641 + 637.3854827880859 ], "page": 13, "span": [ @@ -13019,10 +13019,10 @@ "prov": [ { "bbox": [ - 309.9635314941406, - 558.4485473632812, - 555.7054443359375, - 596.2945861816406 + 309.96356201171875, + 558.4485168457031, + 555.7053833007812, + 596.2945098876953 ], "page": 13, "span": [ @@ -13175,10 +13175,10 @@ "prov": [ { "bbox": [ - 51.72642135620117, - 447.7554931640625, - 283.114013671875, - 518.3907165527344 + 51.726383209228516, + 447.7555236816406, + 283.1140441894531, + 518.3907470703125 ], "page": 14, "span": [ @@ -13201,7 +13201,7 @@ "prov": [ { "bbox": [ - 51.434879302978516, + 51.43488693237305, 300.17974853515625, 310.7267150878906, 338.51251220703125 @@ -13253,7 +13253,7 @@ "prov": [ { "bbox": [ - 51.27280807495117, + 51.2728271484375, 200.086669921875, 311.0897216796875, 238.271484375 @@ -13435,10 +13435,10 @@ "prov": [ { "bbox": [ - 319.06494140625, + 319.0649719238281, 122.80792236328125, - 533.77392578125, - 182.1591796875 + 533.7738647460938, + 182.1590576171875 ], "page": 14, "span": [ @@ -13461,8 +13461,8 @@ "prov": [ { "bbox": [ - 55.116363525390625, - 542.6654510498047, + 55.11635208129883, + 542.6654968261719, 279.370849609375, 655.7449951171875 ], @@ -13513,10 +13513,10 @@ "prov": [ { "bbox": [ - 323.0059509277344, - 569.0885925292969, - 525.95166015625, - 670.4528503417969 + 323.0059814453125, + 569.0885772705078, + 525.9517211914062, + 670.4528656005859 ], "page": 15, "span": [ @@ -13540,9 +13540,9 @@ { "bbox": [ 323.384765625, - 447.90789794921875, + 447.9078674316406, 526.1268920898438, - 550.0270538330078 + 550.0270690917969 ], "page": 15, "span": [ @@ -13566,9 +13566,9 @@ { "bbox": [ 323.46868896484375, - 327.739501953125, + 327.73956298828125, 525.9569091796875, - 429.5491638183594 + 429.5492248535156 ], "page": 15, "span": [ diff --git a/tests/data/groundtruth/docling_v1/2203.01017v2.pages.json b/tests/data/groundtruth/docling_v1/2203.01017v2.pages.json index 6b07b6f..9acf05b 100644 --- a/tests/data/groundtruth/docling_v1/2203.01017v2.pages.json +++ b/tests/data/groundtruth/docling_v1/2203.01017v2.pages.json @@ -3171,7 +3171,7 @@ "b": 119.93133999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.8868067860603333, + "confidence": 0.8868065476417542, "cells": [ { "index": 0, @@ -3211,7 +3211,7 @@ "b": 171.32037000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.7586215734481812, + "confidence": 0.758621335029602, "cells": [ { "index": 1, @@ -3276,7 +3276,7 @@ "b": 184.42553999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.4854728579521179, + "confidence": 0.48547330498695374, "cells": [ { "index": 3, @@ -3390,7 +3390,7 @@ "b": 184.42553999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9096331596374512, + "confidence": 0.9096331000328064, "cells": [ { "index": 3, @@ -3507,7 +3507,7 @@ "b": 226.23071000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9258671402931213, + "confidence": 0.9258671998977661, "cells": [ { "index": 7, @@ -4227,7 +4227,7 @@ "b": 713.151779, "coord_origin": "TOPLEFT" }, - "confidence": 0.9841895699501038, + "confidence": 0.9841894507408142, "cells": [ { "index": 34, @@ -4567,7 +4567,7 @@ "b": 226.75482, "coord_origin": "TOPLEFT" }, - "confidence": 0.6724023818969727, + "confidence": 0.6724020838737488, "cells": [ { "index": 47, @@ -4632,7 +4632,7 @@ "b": 333.2428, "coord_origin": "TOPLEFT" }, - "confidence": 0.5549328923225403, + "confidence": 0.5549331307411194, "cells": [ { "index": 49, @@ -4722,7 +4722,7 @@ "b": 428.93082, "coord_origin": "TOPLEFT" }, - "confidence": 0.5501358509063721, + "confidence": 0.550135612487793, "cells": [ { "index": 52, @@ -4787,7 +4787,7 @@ "b": 410.0494384765625, "coord_origin": "TOPLEFT" }, - "confidence": 0.8742761611938477, + "confidence": 0.8742762207984924, "cells": [ { "index": 54, @@ -6428,7 +6428,7 @@ "b": 496.0290222167969, "coord_origin": "TOPLEFT" }, - "confidence": 0.5088632702827454, + "confidence": 0.5088635683059692, "cells": [ { "index": 76, @@ -8004,7 +8004,7 @@ "b": 496.0290222167969, "coord_origin": "TOPLEFT" }, - "confidence": 0.8056110739707947, + "confidence": 0.8056108951568604, "cells": [ { "index": 76, @@ -9575,12 +9575,12 @@ "label": "picture", "bbox": { "l": 315.65362548828125, - "t": 228.723388671875, + "t": 228.7234344482422, "r": 537.1475219726562, - "b": 302.8014221191406, + "b": 302.80145263671875, "coord_origin": "TOPLEFT" }, - "confidence": 0.608779788017273, + "confidence": 0.6087799668312073, "cells": [ { "index": 97, @@ -9786,12 +9786,12 @@ "label": "table", "bbox": { "l": 315.65362548828125, - "t": 228.723388671875, + "t": 228.7234344482422, "r": 537.1475219726562, - "b": 302.8014221191406, + "b": 302.80145263671875, "coord_origin": "TOPLEFT" }, - "confidence": 0.6515864729881287, + "confidence": 0.6515868902206421, "cells": [ { "index": 97, @@ -10002,7 +10002,7 @@ "b": 559.2729, "coord_origin": "TOPLEFT" }, - "confidence": 0.9214619398117065, + "confidence": 0.921461820602417, "cells": [ { "index": 106, @@ -10497,7 +10497,7 @@ "b": 743.039928, "coord_origin": "TOPLEFT" }, - "confidence": 0.8045893311500549, + "confidence": 0.8045890927314758, "cells": [ { "index": 124, @@ -10537,7 +10537,7 @@ "b": 560.00003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8773143887519836, + "confidence": 0.8773139119148254, "cells": [ { "index": 125, @@ -10585,7 +10585,7 @@ "b": 496.0290222167969, "coord_origin": "TOPLEFT" }, - "confidence": 0.8056110739707947, + "confidence": 0.8056108951568604, "cells": [ { "index": 76, @@ -12578,12 +12578,12 @@ "label": "table", "bbox": { "l": 315.65362548828125, - "t": 228.723388671875, + "t": 228.7234344482422, "r": 537.1475219726562, - "b": 302.8014221191406, + "b": 302.80145263671875, "coord_origin": "TOPLEFT" }, - "confidence": 0.6515864729881287, + "confidence": 0.6515868902206421, "cells": [ { "index": 97, @@ -12857,7 +12857,7 @@ "b": 119.93133999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.8868067860603333, + "confidence": 0.8868065476417542, "cells": [ { "index": 0, @@ -12903,7 +12903,7 @@ "b": 171.32037000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.7586215734481812, + "confidence": 0.758621335029602, "cells": [ { "index": 1, @@ -12974,7 +12974,7 @@ "b": 184.42553999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.4854728579521179, + "confidence": 0.48547330498695374, "cells": [ { "index": 3, @@ -13088,7 +13088,7 @@ "b": 184.42553999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9096331596374512, + "confidence": 0.9096331000328064, "cells": [ { "index": 3, @@ -13211,7 +13211,7 @@ "b": 226.23071000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9258671402931213, + "confidence": 0.9258671998977661, "cells": [ { "index": 7, @@ -13949,7 +13949,7 @@ "b": 713.151779, "coord_origin": "TOPLEFT" }, - "confidence": 0.9841895699501038, + "confidence": 0.9841894507408142, "cells": [ { "index": 34, @@ -14295,7 +14295,7 @@ "b": 226.75482, "coord_origin": "TOPLEFT" }, - "confidence": 0.6724023818969727, + "confidence": 0.6724020838737488, "cells": [ { "index": 47, @@ -14366,7 +14366,7 @@ "b": 333.2428, "coord_origin": "TOPLEFT" }, - "confidence": 0.5549328923225403, + "confidence": 0.5549331307411194, "cells": [ { "index": 49, @@ -14462,7 +14462,7 @@ "b": 428.93082, "coord_origin": "TOPLEFT" }, - "confidence": 0.5501358509063721, + "confidence": 0.550135612487793, "cells": [ { "index": 52, @@ -14533,7 +14533,7 @@ "b": 410.0494384765625, "coord_origin": "TOPLEFT" }, - "confidence": 0.8742761611938477, + "confidence": 0.8742762207984924, "cells": [ { "index": 54, @@ -16184,7 +16184,7 @@ "b": 496.0290222167969, "coord_origin": "TOPLEFT" }, - "confidence": 0.5088632702827454, + "confidence": 0.5088635683059692, "cells": [ { "index": 76, @@ -17770,7 +17770,7 @@ "b": 496.0290222167969, "coord_origin": "TOPLEFT" }, - "confidence": 0.8056110739707947, + "confidence": 0.8056108951568604, "cells": [ { "index": 76, @@ -19763,12 +19763,12 @@ "label": "picture", "bbox": { "l": 315.65362548828125, - "t": 228.723388671875, + "t": 228.7234344482422, "r": 537.1475219726562, - "b": 302.8014221191406, + "b": 302.80145263671875, "coord_origin": "TOPLEFT" }, - "confidence": 0.608779788017273, + "confidence": 0.6087799668312073, "cells": [ { "index": 97, @@ -19984,12 +19984,12 @@ "label": "table", "bbox": { "l": 315.65362548828125, - "t": 228.723388671875, + "t": 228.7234344482422, "r": 537.1475219726562, - "b": 302.8014221191406, + "b": 302.80145263671875, "coord_origin": "TOPLEFT" }, - "confidence": 0.6515864729881287, + "confidence": 0.6515868902206421, "cells": [ { "index": 97, @@ -20255,7 +20255,7 @@ "b": 559.2729, "coord_origin": "TOPLEFT" }, - "confidence": 0.9214619398117065, + "confidence": 0.921461820602417, "cells": [ { "index": 106, @@ -20768,7 +20768,7 @@ "b": 743.039928, "coord_origin": "TOPLEFT" }, - "confidence": 0.8045893311500549, + "confidence": 0.8045890927314758, "cells": [ { "index": 124, @@ -20814,7 +20814,7 @@ "b": 560.00003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8773143887519836, + "confidence": 0.8773139119148254, "cells": [ { "index": 125, @@ -20862,7 +20862,7 @@ "b": 119.93133999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.8868067860603333, + "confidence": 0.8868065476417542, "cells": [ { "index": 0, @@ -20908,7 +20908,7 @@ "b": 171.32037000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.7586215734481812, + "confidence": 0.758621335029602, "cells": [ { "index": 1, @@ -20979,7 +20979,7 @@ "b": 184.42553999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.4854728579521179, + "confidence": 0.48547330498695374, "cells": [ { "index": 3, @@ -21093,7 +21093,7 @@ "b": 184.42553999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9096331596374512, + "confidence": 0.9096331000328064, "cells": [ { "index": 3, @@ -21216,7 +21216,7 @@ "b": 226.23071000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9258671402931213, + "confidence": 0.9258671998977661, "cells": [ { "index": 7, @@ -21954,7 +21954,7 @@ "b": 713.151779, "coord_origin": "TOPLEFT" }, - "confidence": 0.9841895699501038, + "confidence": 0.9841894507408142, "cells": [ { "index": 34, @@ -22300,7 +22300,7 @@ "b": 226.75482, "coord_origin": "TOPLEFT" }, - "confidence": 0.6724023818969727, + "confidence": 0.6724020838737488, "cells": [ { "index": 47, @@ -22371,7 +22371,7 @@ "b": 333.2428, "coord_origin": "TOPLEFT" }, - "confidence": 0.5549328923225403, + "confidence": 0.5549331307411194, "cells": [ { "index": 49, @@ -22467,7 +22467,7 @@ "b": 428.93082, "coord_origin": "TOPLEFT" }, - "confidence": 0.5501358509063721, + "confidence": 0.550135612487793, "cells": [ { "index": 52, @@ -22538,7 +22538,7 @@ "b": 410.0494384765625, "coord_origin": "TOPLEFT" }, - "confidence": 0.8742761611938477, + "confidence": 0.8742762207984924, "cells": [ { "index": 54, @@ -24189,7 +24189,7 @@ "b": 496.0290222167969, "coord_origin": "TOPLEFT" }, - "confidence": 0.5088632702827454, + "confidence": 0.5088635683059692, "cells": [ { "index": 76, @@ -25775,7 +25775,7 @@ "b": 496.0290222167969, "coord_origin": "TOPLEFT" }, - "confidence": 0.8056110739707947, + "confidence": 0.8056108951568604, "cells": [ { "index": 76, @@ -27768,12 +27768,12 @@ "label": "picture", "bbox": { "l": 315.65362548828125, - "t": 228.723388671875, + "t": 228.7234344482422, "r": 537.1475219726562, - "b": 302.8014221191406, + "b": 302.80145263671875, "coord_origin": "TOPLEFT" }, - "confidence": 0.608779788017273, + "confidence": 0.6087799668312073, "cells": [ { "index": 97, @@ -27989,12 +27989,12 @@ "label": "table", "bbox": { "l": 315.65362548828125, - "t": 228.723388671875, + "t": 228.7234344482422, "r": 537.1475219726562, - "b": 302.8014221191406, + "b": 302.80145263671875, "coord_origin": "TOPLEFT" }, - "confidence": 0.6515864729881287, + "confidence": 0.6515868902206421, "cells": [ { "index": 97, @@ -28260,7 +28260,7 @@ "b": 559.2729, "coord_origin": "TOPLEFT" }, - "confidence": 0.9214619398117065, + "confidence": 0.921461820602417, "cells": [ { "index": 106, @@ -28775,7 +28775,7 @@ "b": 743.039928, "coord_origin": "TOPLEFT" }, - "confidence": 0.8045893311500549, + "confidence": 0.8045890927314758, "cells": [ { "index": 124, @@ -28821,7 +28821,7 @@ "b": 560.00003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8773143887519836, + "confidence": 0.8773139119148254, "cells": [ { "index": 125, @@ -33593,7 +33593,7 @@ "b": 592.57295, "coord_origin": "TOPLEFT" }, - "confidence": 0.9802963733673096, + "confidence": 0.98029625415802, "cells": [ { "index": 50, @@ -33873,7 +33873,7 @@ "b": 695.369957, "coord_origin": "TOPLEFT" }, - "confidence": 0.9742533564567566, + "confidence": 0.974253237247467, "cells": [ { "index": 60, @@ -33988,7 +33988,7 @@ "b": 712.721542, "coord_origin": "TOPLEFT" }, - "confidence": 0.895367443561554, + "confidence": 0.8953677415847778, "cells": [ { "index": 64, @@ -34118,7 +34118,7 @@ "b": 132.47968000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.9428724646568298, + "confidence": 0.942872166633606, "cells": [ { "index": 68, @@ -37259,7 +37259,7 @@ "b": 592.57295, "coord_origin": "TOPLEFT" }, - "confidence": 0.9802963733673096, + "confidence": 0.98029625415802, "cells": [ { "index": 50, @@ -37551,7 +37551,7 @@ "b": 695.369957, "coord_origin": "TOPLEFT" }, - "confidence": 0.9742533564567566, + "confidence": 0.974253237247467, "cells": [ { "index": 60, @@ -37672,7 +37672,7 @@ "b": 712.721542, "coord_origin": "TOPLEFT" }, - "confidence": 0.895367443561554, + "confidence": 0.8953677415847778, "cells": [ { "index": 64, @@ -37814,7 +37814,7 @@ "b": 132.47968000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.9428724646568298, + "confidence": 0.942872166633606, "cells": [ { "index": 68, @@ -40972,7 +40972,7 @@ "b": 592.57295, "coord_origin": "TOPLEFT" }, - "confidence": 0.9802963733673096, + "confidence": 0.98029625415802, "cells": [ { "index": 50, @@ -41264,7 +41264,7 @@ "b": 695.369957, "coord_origin": "TOPLEFT" }, - "confidence": 0.9742533564567566, + "confidence": 0.974253237247467, "cells": [ { "index": 60, @@ -41385,7 +41385,7 @@ "b": 712.721542, "coord_origin": "TOPLEFT" }, - "confidence": 0.895367443561554, + "confidence": 0.8953677415847778, "cells": [ { "index": 64, @@ -41527,7 +41527,7 @@ "b": 132.47968000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.9428724646568298, + "confidence": 0.942872166633606, "cells": [ { "index": 68, @@ -46695,7 +46695,7 @@ "b": 84.11492999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.8767216801643372, + "confidence": 0.8767215609550476, "cells": [ { "index": 0, @@ -48405,9 +48405,9 @@ "label": "picture", "bbox": { "l": 312.10369873046875, - "t": 78.44086456298828, + "t": 78.44088745117188, "r": 550.38916015625, - "b": 250.60984802246094, + "b": 250.60987854003906, "coord_origin": "TOPLEFT" }, "confidence": 0.9746918082237244, @@ -49249,7 +49249,7 @@ "b": 88.55975000000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.5687217116355896, + "confidence": 0.5687220692634583, "cells": [ { "index": 65, @@ -50571,7 +50571,7 @@ "b": 288.6979099999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9667505025863647, + "confidence": 0.9667506217956543, "cells": [ { "index": 98, @@ -50661,7 +50661,7 @@ "b": 326.37991, "coord_origin": "TOPLEFT" }, - "confidence": 0.8879811763763428, + "confidence": 0.8879812359809875, "cells": [ { "index": 101, @@ -51341,7 +51341,7 @@ "b": 713.151764, "coord_origin": "TOPLEFT" }, - "confidence": 0.9840091466903687, + "confidence": 0.9840090274810791, "cells": [ { "index": 127, @@ -51531,7 +51531,7 @@ "b": 743.039761, "coord_origin": "TOPLEFT" }, - "confidence": 0.8715606927871704, + "confidence": 0.87156081199646, "cells": [ { "index": 134, @@ -51586,7 +51586,7 @@ "b": 84.11492999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.8767216801643372, + "confidence": 0.8767215609550476, "cells": [ { "index": 0, @@ -53332,9 +53332,9 @@ "label": "picture", "bbox": { "l": 312.10369873046875, - "t": 78.44086456298828, + "t": 78.44088745117188, "r": 550.38916015625, - "b": 250.60984802246094, + "b": 250.60987854003906, "coord_origin": "TOPLEFT" }, "confidence": 0.9746918082237244, @@ -54176,7 +54176,7 @@ "b": 88.55975000000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.5687217116355896, + "confidence": 0.5687220692634583, "cells": [ { "index": 65, @@ -55508,7 +55508,7 @@ "b": 288.6979099999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9667505025863647, + "confidence": 0.9667506217956543, "cells": [ { "index": 98, @@ -55604,7 +55604,7 @@ "b": 326.37991, "coord_origin": "TOPLEFT" }, - "confidence": 0.8879811763763428, + "confidence": 0.8879812359809875, "cells": [ { "index": 101, @@ -56296,7 +56296,7 @@ "b": 713.151764, "coord_origin": "TOPLEFT" }, - "confidence": 0.9840091466903687, + "confidence": 0.9840090274810791, "cells": [ { "index": 127, @@ -56492,7 +56492,7 @@ "b": 743.039761, "coord_origin": "TOPLEFT" }, - "confidence": 0.8715606927871704, + "confidence": 0.87156081199646, "cells": [ { "index": 134, @@ -56540,7 +56540,7 @@ "b": 84.11492999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.8767216801643372, + "confidence": 0.8767215609550476, "cells": [ { "index": 0, @@ -58286,9 +58286,9 @@ "label": "picture", "bbox": { "l": 312.10369873046875, - "t": 78.44086456298828, + "t": 78.44088745117188, "r": 550.38916015625, - "b": 250.60984802246094, + "b": 250.60987854003906, "coord_origin": "TOPLEFT" }, "confidence": 0.9746918082237244, @@ -59130,7 +59130,7 @@ "b": 88.55975000000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.5687217116355896, + "confidence": 0.5687220692634583, "cells": [ { "index": 65, @@ -60462,7 +60462,7 @@ "b": 288.6979099999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9667505025863647, + "confidence": 0.9667506217956543, "cells": [ { "index": 98, @@ -60558,7 +60558,7 @@ "b": 326.37991, "coord_origin": "TOPLEFT" }, - "confidence": 0.8879811763763428, + "confidence": 0.8879812359809875, "cells": [ { "index": 101, @@ -61250,7 +61250,7 @@ "b": 713.151764, "coord_origin": "TOPLEFT" }, - "confidence": 0.9840091466903687, + "confidence": 0.9840090274810791, "cells": [ { "index": 127, @@ -61448,7 +61448,7 @@ "b": 743.039761, "coord_origin": "TOPLEFT" }, - "confidence": 0.8715606927871704, + "confidence": 0.87156081199646, "cells": [ { "index": 134, @@ -66765,7 +66765,7 @@ "b": 713.151894, "coord_origin": "TOPLEFT" }, - "confidence": 0.9871614575386047, + "confidence": 0.9871613383293152, "cells": [ { "index": 50, @@ -66949,13 +66949,13 @@ "id": 8, "label": "table", "bbox": { - "l": 310.67584228515625, - "t": 73.19388580322266, - "r": 542.9547119140625, + "l": 310.6757507324219, + "t": 73.19387817382812, + "r": 542.9546508789062, "b": 155.22052001953125, "coord_origin": "TOPLEFT" }, - "confidence": 0.9777463674545288, + "confidence": 0.9777464866638184, "cells": [ { "index": 57, @@ -69181,7 +69181,7 @@ "b": 224.38897999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9667726755142212, + "confidence": 0.9667725563049316, "cells": [ { "index": 91, @@ -69446,7 +69446,7 @@ "b": 294.39197, "coord_origin": "TOPLEFT" }, - "confidence": 0.978954017162323, + "confidence": 0.9789542555809021, "cells": [ { "index": 101, @@ -69561,7 +69561,7 @@ "b": 306.67896, "coord_origin": "TOPLEFT" }, - "confidence": 0.9043695330619812, + "confidence": 0.9043692350387573, "cells": [ { "index": 105, @@ -69666,7 +69666,7 @@ "b": 446.48685000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.9884450435638428, + "confidence": 0.9884451627731323, "cells": [ { "index": 108, @@ -69906,7 +69906,7 @@ "b": 467.54633, "coord_origin": "TOPLEFT" }, - "confidence": 0.937696099281311, + "confidence": 0.9376963376998901, "cells": [ { "index": 117, @@ -70811,7 +70811,7 @@ "b": 713.1518169999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.978580117225647, + "confidence": 0.9785799980163574, "cells": [ { "index": 152, @@ -70951,7 +70951,7 @@ "b": 743.039814, "coord_origin": "TOPLEFT" }, - "confidence": 0.8565718531608582, + "confidence": 0.856571614742279, "cells": [ { "index": 157, @@ -70993,13 +70993,13 @@ "id": 8, "label": "table", "bbox": { - "l": 310.67584228515625, - "t": 73.19388580322266, - "r": 542.9547119140625, + "l": 310.6757507324219, + "t": 73.19387817382812, + "r": 542.9546508789062, "b": 155.22052001953125, "coord_origin": "TOPLEFT" }, - "confidence": 0.9777463674545288, + "confidence": 0.9777464866638184, "cells": [ { "index": 57, @@ -75267,7 +75267,7 @@ "b": 713.151894, "coord_origin": "TOPLEFT" }, - "confidence": 0.9871614575386047, + "confidence": 0.9871613383293152, "cells": [ { "index": 50, @@ -75457,13 +75457,13 @@ "id": 8, "label": "table", "bbox": { - "l": 310.67584228515625, - "t": 73.19388580322266, - "r": 542.9547119140625, + "l": 310.6757507324219, + "t": 73.19387817382812, + "r": 542.9546508789062, "b": 155.22052001953125, "coord_origin": "TOPLEFT" }, - "confidence": 0.9777463674545288, + "confidence": 0.9777464866638184, "cells": [ { "index": 57, @@ -78389,7 +78389,7 @@ "b": 224.38897999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9667726755142212, + "confidence": 0.9667725563049316, "cells": [ { "index": 91, @@ -78660,7 +78660,7 @@ "b": 294.39197, "coord_origin": "TOPLEFT" }, - "confidence": 0.978954017162323, + "confidence": 0.9789542555809021, "cells": [ { "index": 101, @@ -78781,7 +78781,7 @@ "b": 306.67896, "coord_origin": "TOPLEFT" }, - "confidence": 0.9043695330619812, + "confidence": 0.9043692350387573, "cells": [ { "index": 105, @@ -78898,7 +78898,7 @@ "b": 446.48685000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.9884450435638428, + "confidence": 0.9884451627731323, "cells": [ { "index": 108, @@ -79144,7 +79144,7 @@ "b": 467.54633, "coord_origin": "TOPLEFT" }, - "confidence": 0.937696099281311, + "confidence": 0.9376963376998901, "cells": [ { "index": 117, @@ -80061,7 +80061,7 @@ "b": 713.1518169999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.978580117225647, + "confidence": 0.9785799980163574, "cells": [ { "index": 152, @@ -80207,7 +80207,7 @@ "b": 743.039814, "coord_origin": "TOPLEFT" }, - "confidence": 0.8565718531608582, + "confidence": 0.856571614742279, "cells": [ { "index": 157, @@ -81589,7 +81589,7 @@ "b": 713.151894, "coord_origin": "TOPLEFT" }, - "confidence": 0.9871614575386047, + "confidence": 0.9871613383293152, "cells": [ { "index": 50, @@ -81779,13 +81779,13 @@ "id": 8, "label": "table", "bbox": { - "l": 310.67584228515625, - "t": 73.19388580322266, - "r": 542.9547119140625, + "l": 310.6757507324219, + "t": 73.19387817382812, + "r": 542.9546508789062, "b": 155.22052001953125, "coord_origin": "TOPLEFT" }, - "confidence": 0.9777463674545288, + "confidence": 0.9777464866638184, "cells": [ { "index": 57, @@ -84711,7 +84711,7 @@ "b": 224.38897999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9667726755142212, + "confidence": 0.9667725563049316, "cells": [ { "index": 91, @@ -84982,7 +84982,7 @@ "b": 294.39197, "coord_origin": "TOPLEFT" }, - "confidence": 0.978954017162323, + "confidence": 0.9789542555809021, "cells": [ { "index": 101, @@ -85103,7 +85103,7 @@ "b": 306.67896, "coord_origin": "TOPLEFT" }, - "confidence": 0.9043695330619812, + "confidence": 0.9043692350387573, "cells": [ { "index": 105, @@ -85220,7 +85220,7 @@ "b": 446.48685000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.9884450435638428, + "confidence": 0.9884451627731323, "cells": [ { "index": 108, @@ -85466,7 +85466,7 @@ "b": 467.54633, "coord_origin": "TOPLEFT" }, - "confidence": 0.937696099281311, + "confidence": 0.9376963376998901, "cells": [ { "index": 117, @@ -86383,7 +86383,7 @@ "b": 713.1518169999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.978580117225647, + "confidence": 0.9785799980163574, "cells": [ { "index": 152, @@ -86531,7 +86531,7 @@ "b": 743.039814, "coord_origin": "TOPLEFT" }, - "confidence": 0.8565718531608582, + "confidence": 0.856571614742279, "cells": [ { "index": 157, @@ -91958,12 +91958,12 @@ "label": "picture", "bbox": { "l": 74.30525970458984, - "t": 77.91120147705078, + "t": 77.91120910644531, "r": 519.9801025390625, "b": 183.70150756835938, "coord_origin": "TOPLEFT" }, - "confidence": 0.9296807646751404, + "confidence": 0.9296805262565613, "cells": [ { "index": 0, @@ -95814,7 +95814,7 @@ "b": 224.96691999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9677652716636658, + "confidence": 0.967765212059021, "cells": [ { "index": 59, @@ -95925,11 +95925,11 @@ "bbox": { "l": 53.03328323364258, "t": 257.66534423828125, - "r": 285.3731689453125, + "r": 285.3731384277344, "b": 507.6688537597656, "coord_origin": "TOPLEFT" }, - "confidence": 0.9724942445755005, + "confidence": 0.9724941253662109, "cells": [ { "index": 63, @@ -98805,7 +98805,7 @@ "b": 680.27094, "coord_origin": "TOPLEFT" }, - "confidence": 0.8913407325744629, + "confidence": 0.8913412690162659, "cells": [ { "index": 107, @@ -99520,7 +99520,7 @@ "b": 294.3069499999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9831458330154419, + "confidence": 0.9831457138061523, "cells": [ { "index": 135, @@ -101570,7 +101570,7 @@ "b": 743.039722, "coord_origin": "TOPLEFT" }, - "confidence": 0.8719564080238342, + "confidence": 0.8719562292098999, "cells": [ { "index": 214, @@ -101620,12 +101620,12 @@ "label": "picture", "bbox": { "l": 74.30525970458984, - "t": 77.91120147705078, + "t": 77.91120910644531, "r": 519.9801025390625, "b": 183.70150756835938, "coord_origin": "TOPLEFT" }, - "confidence": 0.9296807646751404, + "confidence": 0.9296805262565613, "cells": [ { "index": 0, @@ -105486,7 +105486,7 @@ "b": 224.96691999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9677652716636658, + "confidence": 0.967765212059021, "cells": [ { "index": 59, @@ -105603,11 +105603,11 @@ "bbox": { "l": 53.03328323364258, "t": 257.66534423828125, - "r": 285.3731689453125, + "r": 285.3731384277344, "b": 507.6688537597656, "coord_origin": "TOPLEFT" }, - "confidence": 0.9724942445755005, + "confidence": 0.9724941253662109, "cells": [ { "index": 63, @@ -108493,7 +108493,7 @@ "b": 680.27094, "coord_origin": "TOPLEFT" }, - "confidence": 0.8913407325744629, + "confidence": 0.8913412690162659, "cells": [ { "index": 107, @@ -109214,7 +109214,7 @@ "b": 294.3069499999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9831458330154419, + "confidence": 0.9831457138061523, "cells": [ { "index": 135, @@ -111294,7 +111294,7 @@ "b": 743.039722, "coord_origin": "TOPLEFT" }, - "confidence": 0.8719564080238342, + "confidence": 0.8719562292098999, "cells": [ { "index": 214, @@ -111337,12 +111337,12 @@ "label": "picture", "bbox": { "l": 74.30525970458984, - "t": 77.91120147705078, + "t": 77.91120910644531, "r": 519.9801025390625, "b": 183.70150756835938, "coord_origin": "TOPLEFT" }, - "confidence": 0.9296807646751404, + "confidence": 0.9296805262565613, "cells": [ { "index": 0, @@ -115203,7 +115203,7 @@ "b": 224.96691999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9677652716636658, + "confidence": 0.967765212059021, "cells": [ { "index": 59, @@ -115320,11 +115320,11 @@ "bbox": { "l": 53.03328323364258, "t": 257.66534423828125, - "r": 285.3731689453125, + "r": 285.3731384277344, "b": 507.6688537597656, "coord_origin": "TOPLEFT" }, - "confidence": 0.9724942445755005, + "confidence": 0.9724941253662109, "cells": [ { "index": 63, @@ -118210,7 +118210,7 @@ "b": 680.27094, "coord_origin": "TOPLEFT" }, - "confidence": 0.8913407325744629, + "confidence": 0.8913412690162659, "cells": [ { "index": 107, @@ -118931,7 +118931,7 @@ "b": 294.3069499999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9831458330154419, + "confidence": 0.9831457138061523, "cells": [ { "index": 135, @@ -121013,7 +121013,7 @@ "b": 743.039722, "coord_origin": "TOPLEFT" }, - "confidence": 0.8719564080238342, + "confidence": 0.8719562292098999, "cells": [ { "index": 214, @@ -124995,7 +124995,7 @@ "b": 155.84600999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.9868090152740479, + "confidence": 0.9868088960647583, "cells": [ { "index": 0, @@ -126265,7 +126265,7 @@ "b": 468.87189, "coord_origin": "TOPLEFT" }, - "confidence": 0.9724196195602417, + "confidence": 0.9724195003509521, "cells": [ { "index": 49, @@ -126330,7 +126330,7 @@ "b": 517.07172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9423348307609558, + "confidence": 0.9423347115516663, "cells": [ { "index": 51, @@ -126695,7 +126695,7 @@ "b": 540.21588, "coord_origin": "TOPLEFT" }, - "confidence": 0.9363929629325867, + "confidence": 0.9363928437232971, "cells": [ { "index": 65, @@ -126885,7 +126885,7 @@ "b": 566.66461, "coord_origin": "TOPLEFT" }, - "confidence": 0.9554555416107178, + "confidence": 0.9554554224014282, "cells": [ { "index": 72, @@ -127180,7 +127180,7 @@ "b": 678.39588, "coord_origin": "TOPLEFT" }, - "confidence": 0.844183623790741, + "confidence": 0.8441833853721619, "cells": [ { "index": 82, @@ -129165,7 +129165,7 @@ "b": 743.03989, "coord_origin": "TOPLEFT" }, - "confidence": 0.8820409178733826, + "confidence": 0.8820405602455139, "cells": [ { "index": 156, @@ -129220,7 +129220,7 @@ "b": 155.84600999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.9868090152740479, + "confidence": 0.9868088960647583, "cells": [ { "index": 0, @@ -130508,7 +130508,7 @@ "b": 468.87189, "coord_origin": "TOPLEFT" }, - "confidence": 0.9724196195602417, + "confidence": 0.9724195003509521, "cells": [ { "index": 49, @@ -130579,7 +130579,7 @@ "b": 517.07172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9423348307609558, + "confidence": 0.9423347115516663, "cells": [ { "index": 51, @@ -130950,7 +130950,7 @@ "b": 540.21588, "coord_origin": "TOPLEFT" }, - "confidence": 0.9363929629325867, + "confidence": 0.9363928437232971, "cells": [ { "index": 65, @@ -131146,7 +131146,7 @@ "b": 566.66461, "coord_origin": "TOPLEFT" }, - "confidence": 0.9554555416107178, + "confidence": 0.9554554224014282, "cells": [ { "index": 72, @@ -131459,7 +131459,7 @@ "b": 678.39588, "coord_origin": "TOPLEFT" }, - "confidence": 0.844183623790741, + "confidence": 0.8441833853721619, "cells": [ { "index": 82, @@ -133498,7 +133498,7 @@ "b": 743.03989, "coord_origin": "TOPLEFT" }, - "confidence": 0.8820409178733826, + "confidence": 0.8820405602455139, "cells": [ { "index": 156, @@ -133546,7 +133546,7 @@ "b": 155.84600999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.9868090152740479, + "confidence": 0.9868088960647583, "cells": [ { "index": 0, @@ -134834,7 +134834,7 @@ "b": 468.87189, "coord_origin": "TOPLEFT" }, - "confidence": 0.9724196195602417, + "confidence": 0.9724195003509521, "cells": [ { "index": 49, @@ -134905,7 +134905,7 @@ "b": 517.07172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9423348307609558, + "confidence": 0.9423347115516663, "cells": [ { "index": 51, @@ -135276,7 +135276,7 @@ "b": 540.21588, "coord_origin": "TOPLEFT" }, - "confidence": 0.9363929629325867, + "confidence": 0.9363928437232971, "cells": [ { "index": 65, @@ -135472,7 +135472,7 @@ "b": 566.66461, "coord_origin": "TOPLEFT" }, - "confidence": 0.9554555416107178, + "confidence": 0.9554554224014282, "cells": [ { "index": 72, @@ -135785,7 +135785,7 @@ "b": 678.39588, "coord_origin": "TOPLEFT" }, - "confidence": 0.844183623790741, + "confidence": 0.8441833853721619, "cells": [ { "index": 82, @@ -137826,7 +137826,7 @@ "b": 743.03989, "coord_origin": "TOPLEFT" }, - "confidence": 0.8820409178733826, + "confidence": 0.8820405602455139, "cells": [ { "index": 156, @@ -143308,7 +143308,7 @@ "b": 84.25342, "coord_origin": "TOPLEFT" }, - "confidence": 0.9554274082183838, + "confidence": 0.955427348613739, "cells": [ { "index": 0, @@ -148379,7 +148379,7 @@ "b": 613.29492, "coord_origin": "TOPLEFT" }, - "confidence": 0.7209173440933228, + "confidence": 0.7209175229072571, "cells": [ { "index": 109, @@ -148444,7 +148444,7 @@ "b": 625.24992, "coord_origin": "TOPLEFT" }, - "confidence": 0.6433312892913818, + "confidence": 0.6433306932449341, "cells": [ { "index": 111, @@ -148484,7 +148484,7 @@ "b": 713.151932, "coord_origin": "TOPLEFT" }, - "confidence": 0.9854635000228882, + "confidence": 0.9854633808135986, "cells": [ { "index": 112, @@ -148724,7 +148724,7 @@ "b": 227.57709, "coord_origin": "TOPLEFT" }, - "confidence": 0.9713197946548462, + "confidence": 0.9713196754455566, "cells": [ { "index": 121, @@ -149364,7 +149364,7 @@ "b": 303.8056640625, "coord_origin": "TOPLEFT" }, - "confidence": 0.9691730737686157, + "confidence": 0.969173014163971, "cells": [ { "index": 146, @@ -150420,7 +150420,7 @@ "b": 337.3108500000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9519917964935303, + "confidence": 0.9519916772842407, "cells": [ { "index": 162, @@ -150970,7 +150970,7 @@ "label": "table", "bbox": { "l": 332.9688720703125, - "t": 540.2835693359375, + "t": 540.2835083007812, "r": 520.942138671875, "b": 643.2697143554688, "coord_origin": "TOPLEFT" @@ -152876,7 +152876,7 @@ "b": 689.6779300000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9541404247283936, + "confidence": 0.9541401863098145, "cells": [ { "index": 212, @@ -152991,7 +152991,7 @@ "b": 743.039921, "coord_origin": "TOPLEFT" }, - "confidence": 0.8787972331047058, + "confidence": 0.8787970542907715, "cells": [ { "index": 216, @@ -157818,7 +157818,7 @@ "b": 303.8056640625, "coord_origin": "TOPLEFT" }, - "confidence": 0.9691730737686157, + "confidence": 0.969173014163971, "cells": [ { "index": 146, @@ -159205,7 +159205,7 @@ "label": "table", "bbox": { "l": 332.9688720703125, - "t": 540.2835693359375, + "t": 540.2835083007812, "r": 520.942138671875, "b": 643.2697143554688, "coord_origin": "TOPLEFT" @@ -161698,7 +161698,7 @@ "b": 84.25342, "coord_origin": "TOPLEFT" }, - "confidence": 0.9554274082183838, + "confidence": 0.955427348613739, "cells": [ { "index": 0, @@ -167928,7 +167928,7 @@ "b": 613.29492, "coord_origin": "TOPLEFT" }, - "confidence": 0.7209173440933228, + "confidence": 0.7209175229072571, "cells": [ { "index": 109, @@ -167999,7 +167999,7 @@ "b": 625.24992, "coord_origin": "TOPLEFT" }, - "confidence": 0.6433312892913818, + "confidence": 0.6433306932449341, "cells": [ { "index": 111, @@ -168045,7 +168045,7 @@ "b": 713.151932, "coord_origin": "TOPLEFT" }, - "confidence": 0.9854635000228882, + "confidence": 0.9854633808135986, "cells": [ { "index": 112, @@ -168291,7 +168291,7 @@ "b": 227.57709, "coord_origin": "TOPLEFT" }, - "confidence": 0.9713197946548462, + "confidence": 0.9713196754455566, "cells": [ { "index": 121, @@ -168937,7 +168937,7 @@ "b": 303.8056640625, "coord_origin": "TOPLEFT" }, - "confidence": 0.9691730737686157, + "confidence": 0.969173014163971, "cells": [ { "index": 146, @@ -170329,7 +170329,7 @@ "b": 337.3108500000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9519917964935303, + "confidence": 0.9519916772842407, "cells": [ { "index": 162, @@ -170891,7 +170891,7 @@ "label": "table", "bbox": { "l": 332.9688720703125, - "t": 540.2835693359375, + "t": 540.2835083007812, "r": 520.942138671875, "b": 643.2697143554688, "coord_origin": "TOPLEFT" @@ -173376,7 +173376,7 @@ "b": 689.6779300000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9541404247283936, + "confidence": 0.9541401863098145, "cells": [ { "index": 212, @@ -173497,7 +173497,7 @@ "b": 743.039921, "coord_origin": "TOPLEFT" }, - "confidence": 0.8787972331047058, + "confidence": 0.8787970542907715, "cells": [ { "index": 216, @@ -173545,7 +173545,7 @@ "b": 84.25342, "coord_origin": "TOPLEFT" }, - "confidence": 0.9554274082183838, + "confidence": 0.955427348613739, "cells": [ { "index": 0, @@ -179775,7 +179775,7 @@ "b": 613.29492, "coord_origin": "TOPLEFT" }, - "confidence": 0.7209173440933228, + "confidence": 0.7209175229072571, "cells": [ { "index": 109, @@ -179846,7 +179846,7 @@ "b": 625.24992, "coord_origin": "TOPLEFT" }, - "confidence": 0.6433312892913818, + "confidence": 0.6433306932449341, "cells": [ { "index": 111, @@ -179892,7 +179892,7 @@ "b": 713.151932, "coord_origin": "TOPLEFT" }, - "confidence": 0.9854635000228882, + "confidence": 0.9854633808135986, "cells": [ { "index": 112, @@ -180138,7 +180138,7 @@ "b": 227.57709, "coord_origin": "TOPLEFT" }, - "confidence": 0.9713197946548462, + "confidence": 0.9713196754455566, "cells": [ { "index": 121, @@ -180784,7 +180784,7 @@ "b": 303.8056640625, "coord_origin": "TOPLEFT" }, - "confidence": 0.9691730737686157, + "confidence": 0.969173014163971, "cells": [ { "index": 146, @@ -182176,7 +182176,7 @@ "b": 337.3108500000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9519917964935303, + "confidence": 0.9519916772842407, "cells": [ { "index": 162, @@ -182738,7 +182738,7 @@ "label": "table", "bbox": { "l": 332.9688720703125, - "t": 540.2835693359375, + "t": 540.2835083007812, "r": 520.942138671875, "b": 643.2697143554688, "coord_origin": "TOPLEFT" @@ -185223,7 +185223,7 @@ "b": 689.6779300000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9541404247283936, + "confidence": 0.9541401863098145, "cells": [ { "index": 212, @@ -185346,7 +185346,7 @@ "b": 743.039921, "coord_origin": "TOPLEFT" }, - "confidence": 0.8787972331047058, + "confidence": 0.8787970542907715, "cells": [ { "index": 216, @@ -190928,7 +190928,7 @@ "b": 216.10645, "coord_origin": "TOPLEFT" }, - "confidence": 0.5986505746841431, + "confidence": 0.5986502170562744, "cells": [ { "index": 0, @@ -190993,7 +190993,7 @@ "b": 102.15430000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.46452972292900085, + "confidence": 0.4645298421382904, "cells": [ { "index": 2, @@ -191033,7 +191033,7 @@ "b": 102.15430000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.4629225730895996, + "confidence": 0.462923139333725, "cells": [ { "index": 3, @@ -191073,7 +191073,7 @@ "b": 86.56073000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.5820134282112122, + "confidence": 0.5820130705833435, "cells": [ { "index": 4, @@ -191113,7 +191113,7 @@ "b": 86.56073000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.541211724281311, + "confidence": 0.5412119626998901, "cells": [ { "index": 5, @@ -191148,12 +191148,12 @@ "label": "table", "bbox": { "l": 53.62853240966797, - "t": 218.94857788085938, + "t": 218.94854736328125, "r": 298.5574951171875, - "b": 292.39996337890625, + "b": 292.3999938964844, "coord_origin": "TOPLEFT" }, - "confidence": 0.8824009299278259, + "confidence": 0.8824007511138916, "cells": [ { "index": 6, @@ -195719,7 +195719,7 @@ "b": 298.60284, "coord_origin": "TOPLEFT" }, - "confidence": 0.7499915957450867, + "confidence": 0.7499913573265076, "cells": [ { "index": 76, @@ -195759,7 +195759,7 @@ "b": 287.90069580078125, "coord_origin": "TOPLEFT" }, - "confidence": 0.8899767994880676, + "confidence": 0.8899765014648438, "cells": [ { "index": 77, @@ -198505,7 +198505,7 @@ "b": 365.64987, "coord_origin": "TOPLEFT" }, - "confidence": 0.9140303134918213, + "confidence": 0.9140309691429138, "cells": [ { "index": 119, @@ -198640,12 +198640,12 @@ "label": "picture", "bbox": { "l": 216.76925659179688, - "t": 380.4906311035156, + "t": 380.4906005859375, "r": 375.7829284667969, - "b": 443.34698486328125, + "b": 443.3470458984375, "coord_origin": "TOPLEFT" }, - "confidence": 0.805853009223938, + "confidence": 0.8058520555496216, "cells": [ { "index": 124, @@ -198726,7 +198726,7 @@ "b": 443.6580810546875, "coord_origin": "TOPLEFT" }, - "confidence": 0.8308426737785339, + "confidence": 0.8308423161506653, "cells": [ { "index": 125, @@ -198801,13 +198801,13 @@ "id": 13, "label": "picture", "bbox": { - "l": 383.1364440917969, - "t": 381.2313232421875, - "r": 542.1132202148438, + "l": 383.1363830566406, + "t": 381.2312927246094, + "r": 542.1131591796875, "b": 442.7749328613281, "coord_origin": "TOPLEFT" }, - "confidence": 0.7881615161895752, + "confidence": 0.7881602644920349, "cells": [ { "index": 126, @@ -202398,7 +202398,7 @@ "b": 467.63492, "coord_origin": "TOPLEFT" }, - "confidence": 0.9153602719306946, + "confidence": 0.9153599143028259, "cells": [ { "index": 181, @@ -202438,7 +202438,7 @@ "b": 501.24741, "coord_origin": "TOPLEFT" }, - "confidence": 0.9561247229576111, + "confidence": 0.9561248421669006, "cells": [ { "index": 182, @@ -203348,7 +203348,7 @@ "b": 682.84664, "coord_origin": "TOPLEFT" }, - "confidence": 0.9442470073699951, + "confidence": 0.9442470669746399, "cells": [ { "index": 216, @@ -203388,7 +203388,7 @@ "b": 712.936752, "coord_origin": "TOPLEFT" }, - "confidence": 0.8318753838539124, + "confidence": 0.8318751454353333, "cells": [ { "index": 217, @@ -203478,7 +203478,7 @@ "b": 743.039928, "coord_origin": "TOPLEFT" }, - "confidence": 0.8709858059883118, + "confidence": 0.8709856867790222, "cells": [ { "index": 220, @@ -203512,13 +203512,13 @@ "id": 15, "label": "picture", "bbox": { - "l": 305.5836486816406, + "l": 305.58367919921875, "t": 98.65415954589844, "r": 554.8258666992188, "b": 180.6267547607422, "coord_origin": "TOPLEFT" }, - "confidence": 0.7699173092842102, + "confidence": 0.7699161171913147, "cells": [], "children": [] }, @@ -203527,12 +203527,12 @@ "label": "picture", "bbox": { "l": 49.97503662109375, - "t": 103.71266174316406, + "t": 103.71268463134766, "r": 301.6335754394531, "b": 187.5789337158203, "coord_origin": "TOPLEFT" }, - "confidence": 0.7873926162719727, + "confidence": 0.7873924374580383, "cells": [], "children": [] } @@ -203549,12 +203549,12 @@ "label": "table", "bbox": { "l": 53.62853240966797, - "t": 218.94857788085938, + "t": 218.94854736328125, "r": 298.5574951171875, - "b": 292.39996337890625, + "b": 292.3999938964844, "coord_origin": "TOPLEFT" }, - "confidence": 0.8824009299278259, + "confidence": 0.8824007511138916, "cells": [ { "index": 6, @@ -209266,7 +209266,7 @@ "b": 287.90069580078125, "coord_origin": "TOPLEFT" }, - "confidence": 0.8899767994880676, + "confidence": 0.8899765014648438, "cells": [ { "index": 77, @@ -212663,7 +212663,7 @@ "b": 216.10645, "coord_origin": "TOPLEFT" }, - "confidence": 0.5986505746841431, + "confidence": 0.5986502170562744, "cells": [ { "index": 0, @@ -212734,7 +212734,7 @@ "b": 102.15430000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.46452972292900085, + "confidence": 0.4645298421382904, "cells": [ { "index": 2, @@ -212780,7 +212780,7 @@ "b": 102.15430000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.4629225730895996, + "confidence": 0.462923139333725, "cells": [ { "index": 3, @@ -212826,7 +212826,7 @@ "b": 86.56073000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.5820134282112122, + "confidence": 0.5820130705833435, "cells": [ { "index": 4, @@ -212872,7 +212872,7 @@ "b": 86.56073000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.541211724281311, + "confidence": 0.5412119626998901, "cells": [ { "index": 5, @@ -212913,12 +212913,12 @@ "label": "table", "bbox": { "l": 53.62853240966797, - "t": 218.94857788085938, + "t": 218.94854736328125, "r": 298.5574951171875, - "b": 292.39996337890625, + "b": 292.3999938964844, "coord_origin": "TOPLEFT" }, - "confidence": 0.8824009299278259, + "confidence": 0.8824007511138916, "cells": [ { "index": 6, @@ -218630,7 +218630,7 @@ "b": 298.60284, "coord_origin": "TOPLEFT" }, - "confidence": 0.7499915957450867, + "confidence": 0.7499913573265076, "cells": [ { "index": 76, @@ -218676,7 +218676,7 @@ "b": 287.90069580078125, "coord_origin": "TOPLEFT" }, - "confidence": 0.8899767994880676, + "confidence": 0.8899765014648438, "cells": [ { "index": 77, @@ -222065,7 +222065,7 @@ "b": 365.64987, "coord_origin": "TOPLEFT" }, - "confidence": 0.9140303134918213, + "confidence": 0.9140309691429138, "cells": [ { "index": 119, @@ -222206,12 +222206,12 @@ "label": "picture", "bbox": { "l": 216.76925659179688, - "t": 380.4906311035156, + "t": 380.4906005859375, "r": 375.7829284667969, - "b": 443.34698486328125, + "b": 443.3470458984375, "coord_origin": "TOPLEFT" }, - "confidence": 0.805853009223938, + "confidence": 0.8058520555496216, "cells": [ { "index": 124, @@ -222302,7 +222302,7 @@ "b": 443.6580810546875, "coord_origin": "TOPLEFT" }, - "confidence": 0.8308426737785339, + "confidence": 0.8308423161506653, "cells": [ { "index": 125, @@ -222387,13 +222387,13 @@ "id": 13, "label": "picture", "bbox": { - "l": 383.1364440917969, - "t": 381.2313232421875, - "r": 542.1132202148438, + "l": 383.1363830566406, + "t": 381.2312927246094, + "r": 542.1131591796875, "b": 442.7749328613281, "coord_origin": "TOPLEFT" }, - "confidence": 0.7881615161895752, + "confidence": 0.7881602644920349, "cells": [ { "index": 126, @@ -225994,7 +225994,7 @@ "b": 467.63492, "coord_origin": "TOPLEFT" }, - "confidence": 0.9153602719306946, + "confidence": 0.9153599143028259, "cells": [ { "index": 181, @@ -226040,7 +226040,7 @@ "b": 501.24741, "coord_origin": "TOPLEFT" }, - "confidence": 0.9561247229576111, + "confidence": 0.9561248421669006, "cells": [ { "index": 182, @@ -226974,7 +226974,7 @@ "b": 682.84664, "coord_origin": "TOPLEFT" }, - "confidence": 0.9442470073699951, + "confidence": 0.9442470669746399, "cells": [ { "index": 216, @@ -227020,7 +227020,7 @@ "b": 712.936752, "coord_origin": "TOPLEFT" }, - "confidence": 0.8318753838539124, + "confidence": 0.8318751454353333, "cells": [ { "index": 217, @@ -227116,7 +227116,7 @@ "b": 743.039928, "coord_origin": "TOPLEFT" }, - "confidence": 0.8709858059883118, + "confidence": 0.8709856867790222, "cells": [ { "index": 220, @@ -227156,13 +227156,13 @@ "id": 15, "label": "picture", "bbox": { - "l": 305.5836486816406, + "l": 305.58367919921875, "t": 98.65415954589844, "r": 554.8258666992188, "b": 180.6267547607422, "coord_origin": "TOPLEFT" }, - "confidence": 0.7699173092842102, + "confidence": 0.7699161171913147, "cells": [], "children": [] }, @@ -227181,12 +227181,12 @@ "label": "picture", "bbox": { "l": 49.97503662109375, - "t": 103.71266174316406, + "t": 103.71268463134766, "r": 301.6335754394531, "b": 187.5789337158203, "coord_origin": "TOPLEFT" }, - "confidence": 0.7873926162719727, + "confidence": 0.7873924374580383, "cells": [], "children": [] }, @@ -227212,7 +227212,7 @@ "b": 216.10645, "coord_origin": "TOPLEFT" }, - "confidence": 0.5986505746841431, + "confidence": 0.5986502170562744, "cells": [ { "index": 0, @@ -227283,7 +227283,7 @@ "b": 102.15430000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.46452972292900085, + "confidence": 0.4645298421382904, "cells": [ { "index": 2, @@ -227329,7 +227329,7 @@ "b": 102.15430000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.4629225730895996, + "confidence": 0.462923139333725, "cells": [ { "index": 3, @@ -227375,7 +227375,7 @@ "b": 86.56073000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.5820134282112122, + "confidence": 0.5820130705833435, "cells": [ { "index": 4, @@ -227421,7 +227421,7 @@ "b": 86.56073000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.541211724281311, + "confidence": 0.5412119626998901, "cells": [ { "index": 5, @@ -227462,12 +227462,12 @@ "label": "table", "bbox": { "l": 53.62853240966797, - "t": 218.94857788085938, + "t": 218.94854736328125, "r": 298.5574951171875, - "b": 292.39996337890625, + "b": 292.3999938964844, "coord_origin": "TOPLEFT" }, - "confidence": 0.8824009299278259, + "confidence": 0.8824007511138916, "cells": [ { "index": 6, @@ -233179,7 +233179,7 @@ "b": 298.60284, "coord_origin": "TOPLEFT" }, - "confidence": 0.7499915957450867, + "confidence": 0.7499913573265076, "cells": [ { "index": 76, @@ -233225,7 +233225,7 @@ "b": 287.90069580078125, "coord_origin": "TOPLEFT" }, - "confidence": 0.8899767994880676, + "confidence": 0.8899765014648438, "cells": [ { "index": 77, @@ -236614,7 +236614,7 @@ "b": 365.64987, "coord_origin": "TOPLEFT" }, - "confidence": 0.9140303134918213, + "confidence": 0.9140309691429138, "cells": [ { "index": 119, @@ -236755,12 +236755,12 @@ "label": "picture", "bbox": { "l": 216.76925659179688, - "t": 380.4906311035156, + "t": 380.4906005859375, "r": 375.7829284667969, - "b": 443.34698486328125, + "b": 443.3470458984375, "coord_origin": "TOPLEFT" }, - "confidence": 0.805853009223938, + "confidence": 0.8058520555496216, "cells": [ { "index": 124, @@ -236851,7 +236851,7 @@ "b": 443.6580810546875, "coord_origin": "TOPLEFT" }, - "confidence": 0.8308426737785339, + "confidence": 0.8308423161506653, "cells": [ { "index": 125, @@ -236936,13 +236936,13 @@ "id": 13, "label": "picture", "bbox": { - "l": 383.1364440917969, - "t": 381.2313232421875, - "r": 542.1132202148438, + "l": 383.1363830566406, + "t": 381.2312927246094, + "r": 542.1131591796875, "b": 442.7749328613281, "coord_origin": "TOPLEFT" }, - "confidence": 0.7881615161895752, + "confidence": 0.7881602644920349, "cells": [ { "index": 126, @@ -240543,7 +240543,7 @@ "b": 467.63492, "coord_origin": "TOPLEFT" }, - "confidence": 0.9153602719306946, + "confidence": 0.9153599143028259, "cells": [ { "index": 181, @@ -240589,7 +240589,7 @@ "b": 501.24741, "coord_origin": "TOPLEFT" }, - "confidence": 0.9561247229576111, + "confidence": 0.9561248421669006, "cells": [ { "index": 182, @@ -241523,7 +241523,7 @@ "b": 682.84664, "coord_origin": "TOPLEFT" }, - "confidence": 0.9442470073699951, + "confidence": 0.9442470669746399, "cells": [ { "index": 216, @@ -241569,7 +241569,7 @@ "b": 712.936752, "coord_origin": "TOPLEFT" }, - "confidence": 0.8318753838539124, + "confidence": 0.8318751454353333, "cells": [ { "index": 217, @@ -241659,13 +241659,13 @@ "id": 15, "label": "picture", "bbox": { - "l": 305.5836486816406, + "l": 305.58367919921875, "t": 98.65415954589844, "r": 554.8258666992188, "b": 180.6267547607422, "coord_origin": "TOPLEFT" }, - "confidence": 0.7699173092842102, + "confidence": 0.7699161171913147, "cells": [], "children": [] }, @@ -241684,12 +241684,12 @@ "label": "picture", "bbox": { "l": 49.97503662109375, - "t": 103.71266174316406, + "t": 103.71268463134766, "r": 301.6335754394531, "b": 187.5789337158203, "coord_origin": "TOPLEFT" }, - "confidence": 0.7873926162719727, + "confidence": 0.7873924374580383, "cells": [], "children": [] }, @@ -241715,7 +241715,7 @@ "b": 743.039928, "coord_origin": "TOPLEFT" }, - "confidence": 0.8709858059883118, + "confidence": 0.8709856867790222, "cells": [ { "index": 220, @@ -246797,7 +246797,7 @@ "b": 116.77575999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.7310384511947632, + "confidence": 0.7310386300086975, "cells": [ { "index": 0, @@ -246962,7 +246962,7 @@ "b": 149.96569999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9372755885124207, + "confidence": 0.9372758865356445, "cells": [ { "index": 6, @@ -247152,7 +247152,7 @@ "b": 183.15466000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9378374218940735, + "confidence": 0.9378378391265869, "cells": [ { "index": 13, @@ -247317,7 +247317,7 @@ "b": 227.30358999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9648825526237488, + "confidence": 0.9648826718330383, "cells": [ { "index": 19, @@ -247457,7 +247457,7 @@ "b": 271.45154, "coord_origin": "TOPLEFT" }, - "confidence": 0.9620943069458008, + "confidence": 0.9620945453643799, "cells": [ { "index": 24, @@ -247647,7 +247647,7 @@ "b": 315.6004899999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9555517435073853, + "confidence": 0.9555518627166748, "cells": [ { "index": 31, @@ -247862,7 +247862,7 @@ "b": 348.78952, "coord_origin": "TOPLEFT" }, - "confidence": 0.9479843378067017, + "confidence": 0.9479843974113464, "cells": [ { "index": 39, @@ -248077,7 +248077,7 @@ "b": 403.89749, "coord_origin": "TOPLEFT" }, - "confidence": 0.9484425187110901, + "confidence": 0.9484427571296692, "cells": [ { "index": 47, @@ -248317,7 +248317,7 @@ "b": 437.08646000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9330756664276123, + "confidence": 0.9330760836601257, "cells": [ { "index": 56, @@ -248482,7 +248482,7 @@ "b": 481.23544, "coord_origin": "TOPLEFT" }, - "confidence": 0.9274735450744629, + "confidence": 0.927473783493042, "cells": [ { "index": 62, @@ -248697,7 +248697,7 @@ "b": 536.34238, "coord_origin": "TOPLEFT" }, - "confidence": 0.9299950003623962, + "confidence": 0.9299951195716858, "cells": [ { "index": 70, @@ -249102,7 +249102,7 @@ "b": 646.55737, "coord_origin": "TOPLEFT" }, - "confidence": 0.9298838973045349, + "confidence": 0.9298841953277588, "cells": [ { "index": 85, @@ -249317,7 +249317,7 @@ "b": 679.74638, "coord_origin": "TOPLEFT" }, - "confidence": 0.9115257263183594, + "confidence": 0.9115263819694519, "cells": [ { "index": 93, @@ -249457,7 +249457,7 @@ "b": 712.936386, "coord_origin": "TOPLEFT" }, - "confidence": 0.912230372428894, + "confidence": 0.9122310876846313, "cells": [ { "index": 98, @@ -249912,7 +249912,7 @@ "b": 172.05633999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.9253129959106445, + "confidence": 0.9253132939338684, "cells": [ { "index": 115, @@ -250052,7 +250052,7 @@ "b": 260.21423000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9299732446670532, + "confidence": 0.9299730658531189, "cells": [ { "index": 120, @@ -250342,7 +250342,7 @@ "b": 326.45413, "coord_origin": "TOPLEFT" }, - "confidence": 0.937321662902832, + "confidence": 0.9373218417167664, "cells": [ { "index": 131, @@ -250582,7 +250582,7 @@ "b": 370.77713, "coord_origin": "TOPLEFT" }, - "confidence": 0.9027292728424072, + "confidence": 0.9027294516563416, "cells": [ { "index": 140, @@ -250772,7 +250772,7 @@ "b": 437.01706, "coord_origin": "TOPLEFT" }, - "confidence": 0.882714569568634, + "confidence": 0.8827158212661743, "cells": [ { "index": 147, @@ -251187,7 +251187,7 @@ "b": 558.05096, "coord_origin": "TOPLEFT" }, - "confidence": 0.8896440863609314, + "confidence": 0.889644205570221, "cells": [ { "index": 163, @@ -251552,7 +251552,7 @@ "b": 624.29097, "coord_origin": "TOPLEFT" }, - "confidence": 0.9025435447692871, + "confidence": 0.9025442600250244, "cells": [ { "index": 177, @@ -251792,7 +251792,7 @@ "b": 668.61398, "coord_origin": "TOPLEFT" }, - "confidence": 0.8777532577514648, + "confidence": 0.8777535557746887, "cells": [ { "index": 186, @@ -251982,7 +251982,7 @@ "b": 712.935974, "coord_origin": "TOPLEFT" }, - "confidence": 0.8654531240463257, + "confidence": 0.8654532432556152, "cells": [ { "index": 193, @@ -252227,7 +252227,7 @@ "b": 116.77575999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.7310384511947632, + "confidence": 0.7310386300086975, "cells": [ { "index": 0, @@ -252398,7 +252398,7 @@ "b": 149.96569999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9372755885124207, + "confidence": 0.9372758865356445, "cells": [ { "index": 6, @@ -252594,7 +252594,7 @@ "b": 183.15466000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9378374218940735, + "confidence": 0.9378378391265869, "cells": [ { "index": 13, @@ -252765,7 +252765,7 @@ "b": 227.30358999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9648825526237488, + "confidence": 0.9648826718330383, "cells": [ { "index": 19, @@ -252911,7 +252911,7 @@ "b": 271.45154, "coord_origin": "TOPLEFT" }, - "confidence": 0.9620943069458008, + "confidence": 0.9620945453643799, "cells": [ { "index": 24, @@ -253107,7 +253107,7 @@ "b": 315.6004899999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9555517435073853, + "confidence": 0.9555518627166748, "cells": [ { "index": 31, @@ -253328,7 +253328,7 @@ "b": 348.78952, "coord_origin": "TOPLEFT" }, - "confidence": 0.9479843378067017, + "confidence": 0.9479843974113464, "cells": [ { "index": 39, @@ -253549,7 +253549,7 @@ "b": 403.89749, "coord_origin": "TOPLEFT" }, - "confidence": 0.9484425187110901, + "confidence": 0.9484427571296692, "cells": [ { "index": 47, @@ -253795,7 +253795,7 @@ "b": 437.08646000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9330756664276123, + "confidence": 0.9330760836601257, "cells": [ { "index": 56, @@ -253966,7 +253966,7 @@ "b": 481.23544, "coord_origin": "TOPLEFT" }, - "confidence": 0.9274735450744629, + "confidence": 0.927473783493042, "cells": [ { "index": 62, @@ -254187,7 +254187,7 @@ "b": 536.34238, "coord_origin": "TOPLEFT" }, - "confidence": 0.9299950003623962, + "confidence": 0.9299951195716858, "cells": [ { "index": 70, @@ -254604,7 +254604,7 @@ "b": 646.55737, "coord_origin": "TOPLEFT" }, - "confidence": 0.9298838973045349, + "confidence": 0.9298841953277588, "cells": [ { "index": 85, @@ -254825,7 +254825,7 @@ "b": 679.74638, "coord_origin": "TOPLEFT" }, - "confidence": 0.9115257263183594, + "confidence": 0.9115263819694519, "cells": [ { "index": 93, @@ -254971,7 +254971,7 @@ "b": 712.936386, "coord_origin": "TOPLEFT" }, - "confidence": 0.912230372428894, + "confidence": 0.9122310876846313, "cells": [ { "index": 98, @@ -255438,7 +255438,7 @@ "b": 172.05633999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.9253129959106445, + "confidence": 0.9253132939338684, "cells": [ { "index": 115, @@ -255584,7 +255584,7 @@ "b": 260.21423000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9299732446670532, + "confidence": 0.9299730658531189, "cells": [ { "index": 120, @@ -255880,7 +255880,7 @@ "b": 326.45413, "coord_origin": "TOPLEFT" }, - "confidence": 0.937321662902832, + "confidence": 0.9373218417167664, "cells": [ { "index": 131, @@ -256126,7 +256126,7 @@ "b": 370.77713, "coord_origin": "TOPLEFT" }, - "confidence": 0.9027292728424072, + "confidence": 0.9027294516563416, "cells": [ { "index": 140, @@ -256322,7 +256322,7 @@ "b": 437.01706, "coord_origin": "TOPLEFT" }, - "confidence": 0.882714569568634, + "confidence": 0.8827158212661743, "cells": [ { "index": 147, @@ -256743,7 +256743,7 @@ "b": 558.05096, "coord_origin": "TOPLEFT" }, - "confidence": 0.8896440863609314, + "confidence": 0.889644205570221, "cells": [ { "index": 163, @@ -257114,7 +257114,7 @@ "b": 624.29097, "coord_origin": "TOPLEFT" }, - "confidence": 0.9025435447692871, + "confidence": 0.9025442600250244, "cells": [ { "index": 177, @@ -257360,7 +257360,7 @@ "b": 668.61398, "coord_origin": "TOPLEFT" }, - "confidence": 0.8777532577514648, + "confidence": 0.8777535557746887, "cells": [ { "index": 186, @@ -257556,7 +257556,7 @@ "b": 712.935974, "coord_origin": "TOPLEFT" }, - "confidence": 0.8654531240463257, + "confidence": 0.8654532432556152, "cells": [ { "index": 193, @@ -257800,7 +257800,7 @@ "b": 116.77575999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.7310384511947632, + "confidence": 0.7310386300086975, "cells": [ { "index": 0, @@ -257971,7 +257971,7 @@ "b": 149.96569999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9372755885124207, + "confidence": 0.9372758865356445, "cells": [ { "index": 6, @@ -258167,7 +258167,7 @@ "b": 183.15466000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9378374218940735, + "confidence": 0.9378378391265869, "cells": [ { "index": 13, @@ -258338,7 +258338,7 @@ "b": 227.30358999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9648825526237488, + "confidence": 0.9648826718330383, "cells": [ { "index": 19, @@ -258484,7 +258484,7 @@ "b": 271.45154, "coord_origin": "TOPLEFT" }, - "confidence": 0.9620943069458008, + "confidence": 0.9620945453643799, "cells": [ { "index": 24, @@ -258680,7 +258680,7 @@ "b": 315.6004899999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9555517435073853, + "confidence": 0.9555518627166748, "cells": [ { "index": 31, @@ -258901,7 +258901,7 @@ "b": 348.78952, "coord_origin": "TOPLEFT" }, - "confidence": 0.9479843378067017, + "confidence": 0.9479843974113464, "cells": [ { "index": 39, @@ -259122,7 +259122,7 @@ "b": 403.89749, "coord_origin": "TOPLEFT" }, - "confidence": 0.9484425187110901, + "confidence": 0.9484427571296692, "cells": [ { "index": 47, @@ -259368,7 +259368,7 @@ "b": 437.08646000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9330756664276123, + "confidence": 0.9330760836601257, "cells": [ { "index": 56, @@ -259539,7 +259539,7 @@ "b": 481.23544, "coord_origin": "TOPLEFT" }, - "confidence": 0.9274735450744629, + "confidence": 0.927473783493042, "cells": [ { "index": 62, @@ -259760,7 +259760,7 @@ "b": 536.34238, "coord_origin": "TOPLEFT" }, - "confidence": 0.9299950003623962, + "confidence": 0.9299951195716858, "cells": [ { "index": 70, @@ -260177,7 +260177,7 @@ "b": 646.55737, "coord_origin": "TOPLEFT" }, - "confidence": 0.9298838973045349, + "confidence": 0.9298841953277588, "cells": [ { "index": 85, @@ -260398,7 +260398,7 @@ "b": 679.74638, "coord_origin": "TOPLEFT" }, - "confidence": 0.9115257263183594, + "confidence": 0.9115263819694519, "cells": [ { "index": 93, @@ -260544,7 +260544,7 @@ "b": 712.936386, "coord_origin": "TOPLEFT" }, - "confidence": 0.912230372428894, + "confidence": 0.9122310876846313, "cells": [ { "index": 98, @@ -261011,7 +261011,7 @@ "b": 172.05633999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.9253129959106445, + "confidence": 0.9253132939338684, "cells": [ { "index": 115, @@ -261157,7 +261157,7 @@ "b": 260.21423000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9299732446670532, + "confidence": 0.9299730658531189, "cells": [ { "index": 120, @@ -261453,7 +261453,7 @@ "b": 326.45413, "coord_origin": "TOPLEFT" }, - "confidence": 0.937321662902832, + "confidence": 0.9373218417167664, "cells": [ { "index": 131, @@ -261699,7 +261699,7 @@ "b": 370.77713, "coord_origin": "TOPLEFT" }, - "confidence": 0.9027292728424072, + "confidence": 0.9027294516563416, "cells": [ { "index": 140, @@ -261895,7 +261895,7 @@ "b": 437.01706, "coord_origin": "TOPLEFT" }, - "confidence": 0.882714569568634, + "confidence": 0.8827158212661743, "cells": [ { "index": 147, @@ -262316,7 +262316,7 @@ "b": 558.05096, "coord_origin": "TOPLEFT" }, - "confidence": 0.8896440863609314, + "confidence": 0.889644205570221, "cells": [ { "index": 163, @@ -262687,7 +262687,7 @@ "b": 624.29097, "coord_origin": "TOPLEFT" }, - "confidence": 0.9025435447692871, + "confidence": 0.9025442600250244, "cells": [ { "index": 177, @@ -262933,7 +262933,7 @@ "b": 668.61398, "coord_origin": "TOPLEFT" }, - "confidence": 0.8777532577514648, + "confidence": 0.8777535557746887, "cells": [ { "index": 186, @@ -263129,7 +263129,7 @@ "b": 712.935974, "coord_origin": "TOPLEFT" }, - "confidence": 0.8654531240463257, + "confidence": 0.8654532432556152, "cells": [ { "index": 193, @@ -266584,7 +266584,7 @@ "b": 94.85875999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.6886764168739319, + "confidence": 0.6886764764785767, "cells": [ { "index": 0, @@ -266674,7 +266674,7 @@ "b": 160.97668, "coord_origin": "TOPLEFT" }, - "confidence": 0.7723011374473572, + "confidence": 0.7723009586334229, "cells": [ { "index": 3, @@ -266914,7 +266914,7 @@ "b": 227.0946, "coord_origin": "TOPLEFT" }, - "confidence": 0.8580600619316101, + "confidence": 0.858059823513031, "cells": [ { "index": 12, @@ -267154,7 +267154,7 @@ "b": 271.29553, "coord_origin": "TOPLEFT" }, - "confidence": 0.8512731194496155, + "confidence": 0.8512733578681946, "cells": [ { "index": 21, @@ -267344,7 +267344,7 @@ "b": 326.4545, "coord_origin": "TOPLEFT" }, - "confidence": 0.8494512438774109, + "confidence": 0.8494508862495422, "cells": [ { "index": 28, @@ -267734,7 +267734,7 @@ "b": 381.61447, "coord_origin": "TOPLEFT" }, - "confidence": 0.8567671179771423, + "confidence": 0.8567669987678528, "cells": [ { "index": 43, @@ -267974,7 +267974,7 @@ "b": 458.69144, "coord_origin": "TOPLEFT" }, - "confidence": 0.8832162618637085, + "confidence": 0.883216381072998, "cells": [ { "index": 52, @@ -268314,7 +268314,7 @@ "b": 502.89243, "coord_origin": "TOPLEFT" }, - "confidence": 0.8431925177574158, + "confidence": 0.8431923389434814, "cells": [ { "index": 65, @@ -268529,7 +268529,7 @@ "b": 547.09244, "coord_origin": "TOPLEFT" }, - "confidence": 0.8405635952949524, + "confidence": 0.8405640125274658, "cells": [ { "index": 73, @@ -268984,7 +268984,7 @@ "b": 635.49445, "coord_origin": "TOPLEFT" }, - "confidence": 0.8360886573791504, + "confidence": 0.8360887765884399, "cells": [ { "index": 90, @@ -269199,7 +269199,7 @@ "b": 690.65347, "coord_origin": "TOPLEFT" }, - "confidence": 0.8079474568367004, + "confidence": 0.8079472780227661, "cells": [ { "index": 98, @@ -269414,7 +269414,7 @@ "b": 712.936462, "coord_origin": "TOPLEFT" }, - "confidence": 0.8385783433914185, + "confidence": 0.8385782837867737, "cells": [ { "index": 106, @@ -269654,7 +269654,7 @@ "b": 116.77544999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.7556979060173035, + "confidence": 0.7556983232498169, "cells": [ { "index": 115, @@ -269819,7 +269819,7 @@ "b": 161.60742000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.8375797271728516, + "confidence": 0.8375802040100098, "cells": [ { "index": 121, @@ -269984,7 +269984,7 @@ "b": 743.039555, "coord_origin": "TOPLEFT" }, - "confidence": 0.9069584012031555, + "confidence": 0.9069585800170898, "cells": [ { "index": 127, @@ -270039,7 +270039,7 @@ "b": 94.85875999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.6886764168739319, + "confidence": 0.6886764764785767, "cells": [ { "index": 0, @@ -270135,7 +270135,7 @@ "b": 160.97668, "coord_origin": "TOPLEFT" }, - "confidence": 0.7723011374473572, + "confidence": 0.7723009586334229, "cells": [ { "index": 3, @@ -270381,7 +270381,7 @@ "b": 227.0946, "coord_origin": "TOPLEFT" }, - "confidence": 0.8580600619316101, + "confidence": 0.858059823513031, "cells": [ { "index": 12, @@ -270627,7 +270627,7 @@ "b": 271.29553, "coord_origin": "TOPLEFT" }, - "confidence": 0.8512731194496155, + "confidence": 0.8512733578681946, "cells": [ { "index": 21, @@ -270823,7 +270823,7 @@ "b": 326.4545, "coord_origin": "TOPLEFT" }, - "confidence": 0.8494512438774109, + "confidence": 0.8494508862495422, "cells": [ { "index": 28, @@ -271219,7 +271219,7 @@ "b": 381.61447, "coord_origin": "TOPLEFT" }, - "confidence": 0.8567671179771423, + "confidence": 0.8567669987678528, "cells": [ { "index": 43, @@ -271465,7 +271465,7 @@ "b": 458.69144, "coord_origin": "TOPLEFT" }, - "confidence": 0.8832162618637085, + "confidence": 0.883216381072998, "cells": [ { "index": 52, @@ -271811,7 +271811,7 @@ "b": 502.89243, "coord_origin": "TOPLEFT" }, - "confidence": 0.8431925177574158, + "confidence": 0.8431923389434814, "cells": [ { "index": 65, @@ -272032,7 +272032,7 @@ "b": 547.09244, "coord_origin": "TOPLEFT" }, - "confidence": 0.8405635952949524, + "confidence": 0.8405640125274658, "cells": [ { "index": 73, @@ -272499,7 +272499,7 @@ "b": 635.49445, "coord_origin": "TOPLEFT" }, - "confidence": 0.8360886573791504, + "confidence": 0.8360887765884399, "cells": [ { "index": 90, @@ -272720,7 +272720,7 @@ "b": 690.65347, "coord_origin": "TOPLEFT" }, - "confidence": 0.8079474568367004, + "confidence": 0.8079472780227661, "cells": [ { "index": 98, @@ -272941,7 +272941,7 @@ "b": 712.936462, "coord_origin": "TOPLEFT" }, - "confidence": 0.8385783433914185, + "confidence": 0.8385782837867737, "cells": [ { "index": 106, @@ -273187,7 +273187,7 @@ "b": 116.77544999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.7556979060173035, + "confidence": 0.7556983232498169, "cells": [ { "index": 115, @@ -273358,7 +273358,7 @@ "b": 161.60742000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.8375797271728516, + "confidence": 0.8375802040100098, "cells": [ { "index": 121, @@ -273529,7 +273529,7 @@ "b": 743.039555, "coord_origin": "TOPLEFT" }, - "confidence": 0.9069584012031555, + "confidence": 0.9069585800170898, "cells": [ { "index": 127, @@ -273577,7 +273577,7 @@ "b": 94.85875999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.6886764168739319, + "confidence": 0.6886764764785767, "cells": [ { "index": 0, @@ -273673,7 +273673,7 @@ "b": 160.97668, "coord_origin": "TOPLEFT" }, - "confidence": 0.7723011374473572, + "confidence": 0.7723009586334229, "cells": [ { "index": 3, @@ -273919,7 +273919,7 @@ "b": 227.0946, "coord_origin": "TOPLEFT" }, - "confidence": 0.8580600619316101, + "confidence": 0.858059823513031, "cells": [ { "index": 12, @@ -274165,7 +274165,7 @@ "b": 271.29553, "coord_origin": "TOPLEFT" }, - "confidence": 0.8512731194496155, + "confidence": 0.8512733578681946, "cells": [ { "index": 21, @@ -274361,7 +274361,7 @@ "b": 326.4545, "coord_origin": "TOPLEFT" }, - "confidence": 0.8494512438774109, + "confidence": 0.8494508862495422, "cells": [ { "index": 28, @@ -274757,7 +274757,7 @@ "b": 381.61447, "coord_origin": "TOPLEFT" }, - "confidence": 0.8567671179771423, + "confidence": 0.8567669987678528, "cells": [ { "index": 43, @@ -275003,7 +275003,7 @@ "b": 458.69144, "coord_origin": "TOPLEFT" }, - "confidence": 0.8832162618637085, + "confidence": 0.883216381072998, "cells": [ { "index": 52, @@ -275349,7 +275349,7 @@ "b": 502.89243, "coord_origin": "TOPLEFT" }, - "confidence": 0.8431925177574158, + "confidence": 0.8431923389434814, "cells": [ { "index": 65, @@ -275570,7 +275570,7 @@ "b": 547.09244, "coord_origin": "TOPLEFT" }, - "confidence": 0.8405635952949524, + "confidence": 0.8405640125274658, "cells": [ { "index": 73, @@ -276037,7 +276037,7 @@ "b": 635.49445, "coord_origin": "TOPLEFT" }, - "confidence": 0.8360886573791504, + "confidence": 0.8360887765884399, "cells": [ { "index": 90, @@ -276258,7 +276258,7 @@ "b": 690.65347, "coord_origin": "TOPLEFT" }, - "confidence": 0.8079474568367004, + "confidence": 0.8079472780227661, "cells": [ { "index": 98, @@ -276479,7 +276479,7 @@ "b": 712.936462, "coord_origin": "TOPLEFT" }, - "confidence": 0.8385783433914185, + "confidence": 0.8385782837867737, "cells": [ { "index": 106, @@ -276725,7 +276725,7 @@ "b": 116.77544999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.7556979060173035, + "confidence": 0.7556983232498169, "cells": [ { "index": 115, @@ -276896,7 +276896,7 @@ "b": 161.60742000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.8375797271728516, + "confidence": 0.8375802040100098, "cells": [ { "index": 121, @@ -277069,7 +277069,7 @@ "b": 743.039555, "coord_origin": "TOPLEFT" }, - "confidence": 0.9069584012031555, + "confidence": 0.9069585800170898, "cells": [ { "index": 127, @@ -279776,7 +279776,7 @@ "b": 135.53008999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.6497084498405457, + "confidence": 0.6497083306312561, "cells": [ { "index": 0, @@ -280386,7 +280386,7 @@ "b": 627.4597, "coord_origin": "TOPLEFT" }, - "confidence": 0.9826022386550903, + "confidence": 0.9826023578643799, "cells": [ { "index": 22, @@ -280926,7 +280926,7 @@ "b": 651.57269, "coord_origin": "TOPLEFT" }, - "confidence": 0.9335853457450867, + "confidence": 0.9335852265357971, "cells": [ { "index": 43, @@ -280991,7 +280991,7 @@ "b": 672.24219, "coord_origin": "TOPLEFT" }, - "confidence": 0.9515743255615234, + "confidence": 0.9515743851661682, "cells": [ { "index": 45, @@ -281171,7 +281171,7 @@ "b": 207.42773, "coord_origin": "TOPLEFT" }, - "confidence": 0.9596064686775208, + "confidence": 0.9596062302589417, "cells": [ { "index": 51, @@ -281906,7 +281906,7 @@ "b": 497.38861, "coord_origin": "TOPLEFT" }, - "confidence": 0.9568928480148315, + "confidence": 0.9568929672241211, "cells": [ { "index": 78, @@ -282426,7 +282426,7 @@ "b": 646.98631, "coord_origin": "TOPLEFT" }, - "confidence": 0.954940915107727, + "confidence": 0.9549408555030823, "cells": [ { "index": 97, @@ -282711,7 +282711,7 @@ "b": 135.53008999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.6497084498405457, + "confidence": 0.6497083306312561, "cells": [ { "index": 0, @@ -283345,7 +283345,7 @@ "b": 627.4597, "coord_origin": "TOPLEFT" }, - "confidence": 0.9826022386550903, + "confidence": 0.9826023578643799, "cells": [ { "index": 22, @@ -283891,7 +283891,7 @@ "b": 651.57269, "coord_origin": "TOPLEFT" }, - "confidence": 0.9335853457450867, + "confidence": 0.9335852265357971, "cells": [ { "index": 43, @@ -283962,7 +283962,7 @@ "b": 672.24219, "coord_origin": "TOPLEFT" }, - "confidence": 0.9515743255615234, + "confidence": 0.9515743851661682, "cells": [ { "index": 45, @@ -284154,7 +284154,7 @@ "b": 207.42773, "coord_origin": "TOPLEFT" }, - "confidence": 0.9596064686775208, + "confidence": 0.9596062302589417, "cells": [ { "index": 51, @@ -284913,7 +284913,7 @@ "b": 497.38861, "coord_origin": "TOPLEFT" }, - "confidence": 0.9568928480148315, + "confidence": 0.9568929672241211, "cells": [ { "index": 78, @@ -285451,7 +285451,7 @@ "b": 646.98631, "coord_origin": "TOPLEFT" }, - "confidence": 0.954940915107727, + "confidence": 0.9549408555030823, "cells": [ { "index": 97, @@ -285741,7 +285741,7 @@ "b": 135.53008999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.6497084498405457, + "confidence": 0.6497083306312561, "cells": [ { "index": 0, @@ -286375,7 +286375,7 @@ "b": 627.4597, "coord_origin": "TOPLEFT" }, - "confidence": 0.9826022386550903, + "confidence": 0.9826023578643799, "cells": [ { "index": 22, @@ -286921,7 +286921,7 @@ "b": 651.57269, "coord_origin": "TOPLEFT" }, - "confidence": 0.9335853457450867, + "confidence": 0.9335852265357971, "cells": [ { "index": 43, @@ -286992,7 +286992,7 @@ "b": 672.24219, "coord_origin": "TOPLEFT" }, - "confidence": 0.9515743255615234, + "confidence": 0.9515743851661682, "cells": [ { "index": 45, @@ -287184,7 +287184,7 @@ "b": 207.42773, "coord_origin": "TOPLEFT" }, - "confidence": 0.9596064686775208, + "confidence": 0.9596062302589417, "cells": [ { "index": 51, @@ -287943,7 +287943,7 @@ "b": 497.38861, "coord_origin": "TOPLEFT" }, - "confidence": 0.9568928480148315, + "confidence": 0.9568929672241211, "cells": [ { "index": 78, @@ -288481,7 +288481,7 @@ "b": 646.98631, "coord_origin": "TOPLEFT" }, - "confidence": 0.954940915107727, + "confidence": 0.9549408555030823, "cells": [ { "index": 97, @@ -293432,7 +293432,7 @@ "b": 147.59091186523438, "coord_origin": "TOPLEFT" }, - "confidence": 0.6033818125724792, + "confidence": 0.6033809185028076, "cells": [ { "index": 0, @@ -297348,7 +297348,7 @@ "b": 231.79296999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9621952772140503, + "confidence": 0.9621953964233398, "cells": [ { "index": 61, @@ -297438,7 +297438,7 @@ "b": 264.93298000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9629555344581604, + "confidence": 0.96295565366745, "cells": [ { "index": 64, @@ -297528,7 +297528,7 @@ "b": 395.70688, "coord_origin": "TOPLEFT" }, - "confidence": 0.9767085909843445, + "confidence": 0.9767084717750549, "cells": [ { "index": 67, @@ -297793,7 +297793,7 @@ "b": 419.93188, "coord_origin": "TOPLEFT" }, - "confidence": 0.934766411781311, + "confidence": 0.9347663521766663, "cells": [ { "index": 77, @@ -297858,7 +297858,7 @@ "b": 456.11185000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.8280702233314514, + "confidence": 0.8280696272850037, "cells": [ { "index": 79, @@ -297973,7 +297973,7 @@ "b": 504.2468, "coord_origin": "TOPLEFT" }, - "confidence": 0.9646760821342468, + "confidence": 0.9646762013435364, "cells": [ { "index": 83, @@ -298113,7 +298113,7 @@ "b": 528.4727800000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9391399025917053, + "confidence": 0.9391400218009949, "cells": [ { "index": 88, @@ -298203,7 +298203,7 @@ "b": 564.65277, "coord_origin": "TOPLEFT" }, - "confidence": 0.9491708874702454, + "confidence": 0.9491710066795349, "cells": [ { "index": 91, @@ -298293,7 +298293,7 @@ "b": 600.83278, "coord_origin": "TOPLEFT" }, - "confidence": 0.9587163329124451, + "confidence": 0.9587164521217346, "cells": [ { "index": 94, @@ -298408,7 +298408,7 @@ "b": 654.1056100000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9298412799835205, + "confidence": 0.9298411011695862, "cells": [ { "index": 98, @@ -298848,7 +298848,7 @@ "b": 688.92679, "coord_origin": "TOPLEFT" }, - "confidence": 0.9545555114746094, + "confidence": 0.9545556306838989, "cells": [ { "index": 115, @@ -299113,7 +299113,7 @@ "b": 713.151787, "coord_origin": "TOPLEFT" }, - "confidence": 0.9260510206222534, + "confidence": 0.9260509014129639, "cells": [ { "index": 125, @@ -299253,7 +299253,7 @@ "b": 255.7038, "coord_origin": "TOPLEFT" }, - "confidence": 0.8942298889160156, + "confidence": 0.8942293524742126, "cells": [ { "index": 130, @@ -299368,7 +299368,7 @@ "b": 279.96380999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9423392415046692, + "confidence": 0.9423390626907349, "cells": [ { "index": 134, @@ -299508,7 +299508,7 @@ "b": 387.91071, "coord_origin": "TOPLEFT" }, - "confidence": 0.9562004804611206, + "confidence": 0.9562005996704102, "cells": [ { "index": 139, @@ -299798,7 +299798,7 @@ "b": 459.99164, "coord_origin": "TOPLEFT" }, - "confidence": 0.8719939589500427, + "confidence": 0.8719941973686218, "cells": [ { "index": 150, @@ -299988,7 +299988,7 @@ "b": 567.93858, "coord_origin": "TOPLEFT" }, - "confidence": 0.9126082062721252, + "confidence": 0.9126085042953491, "cells": [ { "index": 157, @@ -300278,7 +300278,7 @@ "b": 604.15459, "coord_origin": "TOPLEFT" }, - "confidence": 0.8459473848342896, + "confidence": 0.8459469676017761, "cells": [ { "index": 168, @@ -300418,7 +300418,7 @@ "b": 628.4155900000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.7716891169548035, + "confidence": 0.771689236164093, "cells": [ { "index": 173, @@ -300648,7 +300648,7 @@ "b": 688.89159, "coord_origin": "TOPLEFT" }, - "confidence": 0.7590745091438293, + "confidence": 0.7590745687484741, "cells": [ { "index": 181, @@ -300713,7 +300713,7 @@ "b": 713.151596, "coord_origin": "TOPLEFT" }, - "confidence": 0.6971189975738525, + "confidence": 0.6971189379692078, "cells": [ { "index": 183, @@ -300833,7 +300833,7 @@ "b": 147.59091186523438, "coord_origin": "TOPLEFT" }, - "confidence": 0.6033818125724792, + "confidence": 0.6033809185028076, "cells": [ { "index": 0, @@ -304765,7 +304765,7 @@ "b": 231.79296999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9621952772140503, + "confidence": 0.9621953964233398, "cells": [ { "index": 61, @@ -304861,7 +304861,7 @@ "b": 264.93298000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9629555344581604, + "confidence": 0.96295565366745, "cells": [ { "index": 64, @@ -304957,7 +304957,7 @@ "b": 395.70688, "coord_origin": "TOPLEFT" }, - "confidence": 0.9767085909843445, + "confidence": 0.9767084717750549, "cells": [ { "index": 67, @@ -305228,7 +305228,7 @@ "b": 419.93188, "coord_origin": "TOPLEFT" }, - "confidence": 0.934766411781311, + "confidence": 0.9347663521766663, "cells": [ { "index": 77, @@ -305299,7 +305299,7 @@ "b": 456.11185000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.8280702233314514, + "confidence": 0.8280696272850037, "cells": [ { "index": 79, @@ -305420,7 +305420,7 @@ "b": 504.2468, "coord_origin": "TOPLEFT" }, - "confidence": 0.9646760821342468, + "confidence": 0.9646762013435364, "cells": [ { "index": 83, @@ -305566,7 +305566,7 @@ "b": 528.4727800000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9391399025917053, + "confidence": 0.9391400218009949, "cells": [ { "index": 88, @@ -305662,7 +305662,7 @@ "b": 564.65277, "coord_origin": "TOPLEFT" }, - "confidence": 0.9491708874702454, + "confidence": 0.9491710066795349, "cells": [ { "index": 91, @@ -305758,7 +305758,7 @@ "b": 600.83278, "coord_origin": "TOPLEFT" }, - "confidence": 0.9587163329124451, + "confidence": 0.9587164521217346, "cells": [ { "index": 94, @@ -305879,7 +305879,7 @@ "b": 654.1056100000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9298412799835205, + "confidence": 0.9298411011695862, "cells": [ { "index": 98, @@ -306325,7 +306325,7 @@ "b": 688.92679, "coord_origin": "TOPLEFT" }, - "confidence": 0.9545555114746094, + "confidence": 0.9545556306838989, "cells": [ { "index": 115, @@ -306596,7 +306596,7 @@ "b": 713.151787, "coord_origin": "TOPLEFT" }, - "confidence": 0.9260510206222534, + "confidence": 0.9260509014129639, "cells": [ { "index": 125, @@ -306742,7 +306742,7 @@ "b": 255.7038, "coord_origin": "TOPLEFT" }, - "confidence": 0.8942298889160156, + "confidence": 0.8942293524742126, "cells": [ { "index": 130, @@ -306863,7 +306863,7 @@ "b": 279.96380999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9423392415046692, + "confidence": 0.9423390626907349, "cells": [ { "index": 134, @@ -307009,7 +307009,7 @@ "b": 387.91071, "coord_origin": "TOPLEFT" }, - "confidence": 0.9562004804611206, + "confidence": 0.9562005996704102, "cells": [ { "index": 139, @@ -307305,7 +307305,7 @@ "b": 459.99164, "coord_origin": "TOPLEFT" }, - "confidence": 0.8719939589500427, + "confidence": 0.8719941973686218, "cells": [ { "index": 150, @@ -307501,7 +307501,7 @@ "b": 567.93858, "coord_origin": "TOPLEFT" }, - "confidence": 0.9126082062721252, + "confidence": 0.9126085042953491, "cells": [ { "index": 157, @@ -307797,7 +307797,7 @@ "b": 604.15459, "coord_origin": "TOPLEFT" }, - "confidence": 0.8459473848342896, + "confidence": 0.8459469676017761, "cells": [ { "index": 168, @@ -307943,7 +307943,7 @@ "b": 628.4155900000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.7716891169548035, + "confidence": 0.771689236164093, "cells": [ { "index": 173, @@ -308185,7 +308185,7 @@ "b": 688.89159, "coord_origin": "TOPLEFT" }, - "confidence": 0.7590745091438293, + "confidence": 0.7590745687484741, "cells": [ { "index": 181, @@ -308256,7 +308256,7 @@ "b": 713.151596, "coord_origin": "TOPLEFT" }, - "confidence": 0.6971189975738525, + "confidence": 0.6971189379692078, "cells": [ { "index": 183, @@ -308375,7 +308375,7 @@ "b": 147.59091186523438, "coord_origin": "TOPLEFT" }, - "confidence": 0.6033818125724792, + "confidence": 0.6033809185028076, "cells": [ { "index": 0, @@ -312307,7 +312307,7 @@ "b": 231.79296999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9621952772140503, + "confidence": 0.9621953964233398, "cells": [ { "index": 61, @@ -312403,7 +312403,7 @@ "b": 264.93298000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9629555344581604, + "confidence": 0.96295565366745, "cells": [ { "index": 64, @@ -312499,7 +312499,7 @@ "b": 395.70688, "coord_origin": "TOPLEFT" }, - "confidence": 0.9767085909843445, + "confidence": 0.9767084717750549, "cells": [ { "index": 67, @@ -312770,7 +312770,7 @@ "b": 419.93188, "coord_origin": "TOPLEFT" }, - "confidence": 0.934766411781311, + "confidence": 0.9347663521766663, "cells": [ { "index": 77, @@ -312841,7 +312841,7 @@ "b": 456.11185000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.8280702233314514, + "confidence": 0.8280696272850037, "cells": [ { "index": 79, @@ -312962,7 +312962,7 @@ "b": 504.2468, "coord_origin": "TOPLEFT" }, - "confidence": 0.9646760821342468, + "confidence": 0.9646762013435364, "cells": [ { "index": 83, @@ -313108,7 +313108,7 @@ "b": 528.4727800000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9391399025917053, + "confidence": 0.9391400218009949, "cells": [ { "index": 88, @@ -313204,7 +313204,7 @@ "b": 564.65277, "coord_origin": "TOPLEFT" }, - "confidence": 0.9491708874702454, + "confidence": 0.9491710066795349, "cells": [ { "index": 91, @@ -313300,7 +313300,7 @@ "b": 600.83278, "coord_origin": "TOPLEFT" }, - "confidence": 0.9587163329124451, + "confidence": 0.9587164521217346, "cells": [ { "index": 94, @@ -313421,7 +313421,7 @@ "b": 654.1056100000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9298412799835205, + "confidence": 0.9298411011695862, "cells": [ { "index": 98, @@ -313867,7 +313867,7 @@ "b": 688.92679, "coord_origin": "TOPLEFT" }, - "confidence": 0.9545555114746094, + "confidence": 0.9545556306838989, "cells": [ { "index": 115, @@ -314138,7 +314138,7 @@ "b": 713.151787, "coord_origin": "TOPLEFT" }, - "confidence": 0.9260510206222534, + "confidence": 0.9260509014129639, "cells": [ { "index": 125, @@ -314284,7 +314284,7 @@ "b": 255.7038, "coord_origin": "TOPLEFT" }, - "confidence": 0.8942298889160156, + "confidence": 0.8942293524742126, "cells": [ { "index": 130, @@ -314405,7 +314405,7 @@ "b": 279.96380999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9423392415046692, + "confidence": 0.9423390626907349, "cells": [ { "index": 134, @@ -314551,7 +314551,7 @@ "b": 387.91071, "coord_origin": "TOPLEFT" }, - "confidence": 0.9562004804611206, + "confidence": 0.9562005996704102, "cells": [ { "index": 139, @@ -314847,7 +314847,7 @@ "b": 459.99164, "coord_origin": "TOPLEFT" }, - "confidence": 0.8719939589500427, + "confidence": 0.8719941973686218, "cells": [ { "index": 150, @@ -315043,7 +315043,7 @@ "b": 567.93858, "coord_origin": "TOPLEFT" }, - "confidence": 0.9126082062721252, + "confidence": 0.9126085042953491, "cells": [ { "index": 157, @@ -315339,7 +315339,7 @@ "b": 604.15459, "coord_origin": "TOPLEFT" }, - "confidence": 0.8459473848342896, + "confidence": 0.8459469676017761, "cells": [ { "index": 168, @@ -315485,7 +315485,7 @@ "b": 628.4155900000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.7716891169548035, + "confidence": 0.771689236164093, "cells": [ { "index": 173, @@ -315727,7 +315727,7 @@ "b": 688.89159, "coord_origin": "TOPLEFT" }, - "confidence": 0.7590745091438293, + "confidence": 0.7590745687484741, "cells": [ { "index": 181, @@ -315798,7 +315798,7 @@ "b": 713.151596, "coord_origin": "TOPLEFT" }, - "confidence": 0.6971189975738525, + "confidence": 0.6971189379692078, "cells": [ { "index": 183, @@ -316203,7 +316203,7 @@ "b": 84.11492999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.7545598149299622, + "confidence": 0.7545598745346069, "cells": [ { "index": 0, @@ -316243,7 +316243,7 @@ "b": 108.02495999999985, "coord_origin": "TOPLEFT" }, - "confidence": 0.9170762300491333, + "confidence": 0.9170765280723572, "cells": [ { "index": 1, @@ -316308,7 +316308,7 @@ "b": 131.70587, "coord_origin": "TOPLEFT" }, - "confidence": 0.9454683065414429, + "confidence": 0.9454688429832458, "cells": [ { "index": 3, @@ -316373,7 +316373,7 @@ "b": 510.96292, "coord_origin": "TOPLEFT" }, - "confidence": 0.8971090316772461, + "confidence": 0.8971090912818909, "cells": [ { "index": 5, @@ -316413,7 +316413,7 @@ "b": 327.45990000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.8773345351219177, + "confidence": 0.8773341774940491, "cells": [ { "index": 6, @@ -316543,7 +316543,7 @@ "b": 743.039921, "coord_origin": "TOPLEFT" }, - "confidence": 0.9020507335662842, + "confidence": 0.9020510315895081, "cells": [ { "index": 10, @@ -316578,12 +316578,12 @@ "label": "table", "bbox": { "l": 310.3294372558594, - "t": 101.17767333984375, + "t": 101.17766571044922, "r": 555.8338623046875, - "b": 136.14752197265625, + "b": 136.1475067138672, "coord_origin": "TOPLEFT" }, - "confidence": 0.70481276512146, + "confidence": 0.7048152089118958, "cells": [], "children": [] }, @@ -316592,12 +316592,12 @@ "label": "table", "bbox": { "l": 309.9566345214844, - "t": 154.61448669433594, + "t": 154.61451721191406, "r": 555.7466430664062, - "b": 184.7225341796875, + "b": 184.72256469726562, "coord_origin": "TOPLEFT" }, - "confidence": 0.564289927482605, + "confidence": 0.5642902851104736, "cells": [], "children": [] }, @@ -316611,7 +316611,7 @@ "b": 214.39334106445312, "coord_origin": "TOPLEFT" }, - "confidence": 0.8857279419898987, + "confidence": 0.8857280611991882, "cells": [], "children": [] }, @@ -316619,13 +316619,13 @@ "id": 21, "label": "table", "bbox": { - "l": 309.9635314941406, - "t": 195.70541381835938, - "r": 555.7054443359375, - "b": 233.55145263671875, + "l": 309.96356201171875, + "t": 195.7054901123047, + "r": 555.7053833007812, + "b": 233.55148315429688, "coord_origin": "TOPLEFT" }, - "confidence": 0.6602518558502197, + "confidence": 0.6602524518966675, "cells": [], "children": [] }, @@ -316653,7 +316653,7 @@ "b": 292.39398193359375, "coord_origin": "TOPLEFT" }, - "confidence": 0.6956620812416077, + "confidence": 0.6956619620323181, "cells": [], "children": [] }, @@ -316667,7 +316667,7 @@ "b": 292.39398193359375, "coord_origin": "TOPLEFT" }, - "confidence": 0.52826988697052, + "confidence": 0.5282703042030334, "cells": [], "children": [] }, @@ -316681,7 +316681,7 @@ "b": 367.9095764160156, "coord_origin": "TOPLEFT" }, - "confidence": 0.9085132479667664, + "confidence": 0.908513069152832, "cells": [], "children": [] }, @@ -316695,7 +316695,7 @@ "b": 437.02239990234375, "coord_origin": "TOPLEFT" }, - "confidence": 0.8486077189445496, + "confidence": 0.8486080765724182, "cells": [], "children": [] }, @@ -316703,13 +316703,13 @@ "id": 0, "label": "table", "bbox": { - "l": 83.31756591796875, + "l": 83.31759643554688, "t": 396.0135498046875, "r": 248.873046875, "b": 487.2569885253906, "coord_origin": "TOPLEFT" }, - "confidence": 0.9613965749740601, + "confidence": 0.9613964557647705, "cells": [], "children": [] }, @@ -316723,7 +316723,7 @@ "b": 502.7210998535156, "coord_origin": "TOPLEFT" }, - "confidence": 0.8815538287162781, + "confidence": 0.8815536499023438, "cells": [], "children": [] }, @@ -316737,7 +316737,7 @@ "b": 567.6879272460938, "coord_origin": "TOPLEFT" }, - "confidence": 0.9096733927726746, + "confidence": 0.9096732139587402, "cells": [], "children": [] }, @@ -316751,7 +316751,7 @@ "b": 665.4903564453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.8023569583892822, + "confidence": 0.8023567795753479, "cells": [], "children": [] }, @@ -316765,7 +316765,7 @@ "b": 665.4903564453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.5930293798446655, + "confidence": 0.5930299758911133, "cells": [], "children": [] } @@ -316782,12 +316782,12 @@ "label": "table", "bbox": { "l": 310.3294372558594, - "t": 101.17767333984375, + "t": 101.17766571044922, "r": 555.8338623046875, - "b": 136.14752197265625, + "b": 136.1475067138672, "coord_origin": "TOPLEFT" }, - "confidence": 0.70481276512146, + "confidence": 0.7048152089118958, "cells": [], "children": [] }, @@ -316819,12 +316819,12 @@ "label": "table", "bbox": { "l": 309.9566345214844, - "t": 154.61448669433594, + "t": 154.61451721191406, "r": 555.7466430664062, - "b": 184.7225341796875, + "b": 184.72256469726562, "coord_origin": "TOPLEFT" }, - "confidence": 0.564289927482605, + "confidence": 0.5642902851104736, "cells": [], "children": [] }, @@ -316861,7 +316861,7 @@ "b": 214.39334106445312, "coord_origin": "TOPLEFT" }, - "confidence": 0.8857279419898987, + "confidence": 0.8857280611991882, "cells": [], "children": [] }, @@ -316905,13 +316905,13 @@ "id": 21, "label": "table", "bbox": { - "l": 309.9635314941406, - "t": 195.70541381835938, - "r": 555.7054443359375, - "b": 233.55145263671875, + "l": 309.96356201171875, + "t": 195.7054901123047, + "r": 555.7053833007812, + "b": 233.55148315429688, "coord_origin": "TOPLEFT" }, - "confidence": 0.6602518558502197, + "confidence": 0.6602524518966675, "cells": [], "children": [] }, @@ -316998,7 +316998,7 @@ "b": 292.39398193359375, "coord_origin": "TOPLEFT" }, - "confidence": 0.52826988697052, + "confidence": 0.5282703042030334, "cells": [], "children": [] }, @@ -317035,7 +317035,7 @@ "b": 367.9095764160156, "coord_origin": "TOPLEFT" }, - "confidence": 0.9085132479667664, + "confidence": 0.908513069152832, "cells": [], "children": [] }, @@ -317085,7 +317085,7 @@ "b": 437.02239990234375, "coord_origin": "TOPLEFT" }, - "confidence": 0.8486077189445496, + "confidence": 0.8486080765724182, "cells": [], "children": [] }, @@ -317140,13 +317140,13 @@ "id": 0, "label": "table", "bbox": { - "l": 83.31756591796875, + "l": 83.31759643554688, "t": 396.0135498046875, "r": 248.873046875, "b": 487.2569885253906, "coord_origin": "TOPLEFT" }, - "confidence": 0.9613965749740601, + "confidence": 0.9613964557647705, "cells": [], "children": [] }, @@ -317201,7 +317201,7 @@ "b": 502.7210998535156, "coord_origin": "TOPLEFT" }, - "confidence": 0.8815538287162781, + "confidence": 0.8815536499023438, "cells": [], "children": [] }, @@ -317262,7 +317262,7 @@ "b": 567.6879272460938, "coord_origin": "TOPLEFT" }, - "confidence": 0.9096733927726746, + "confidence": 0.9096732139587402, "cells": [], "children": [] }, @@ -317323,7 +317323,7 @@ "b": 665.4903564453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.5930293798446655, + "confidence": 0.5930299758911133, "cells": [], "children": [] }, @@ -317410,7 +317410,7 @@ "b": 84.11492999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.7545598149299622, + "confidence": 0.7545598745346069, "cells": [ { "index": 0, @@ -317456,7 +317456,7 @@ "b": 108.02495999999985, "coord_origin": "TOPLEFT" }, - "confidence": 0.9170762300491333, + "confidence": 0.9170765280723572, "cells": [ { "index": 1, @@ -317527,7 +317527,7 @@ "b": 131.70587, "coord_origin": "TOPLEFT" }, - "confidence": 0.9454683065414429, + "confidence": 0.9454688429832458, "cells": [ { "index": 3, @@ -317598,7 +317598,7 @@ "b": 510.96292, "coord_origin": "TOPLEFT" }, - "confidence": 0.8971090316772461, + "confidence": 0.8971090912818909, "cells": [ { "index": 5, @@ -317644,7 +317644,7 @@ "b": 327.45990000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.8773345351219177, + "confidence": 0.8773341774940491, "cells": [ { "index": 6, @@ -317786,7 +317786,7 @@ "b": 743.039921, "coord_origin": "TOPLEFT" }, - "confidence": 0.9020507335662842, + "confidence": 0.9020510315895081, "cells": [ { "index": 10, @@ -317827,12 +317827,12 @@ "label": "table", "bbox": { "l": 310.3294372558594, - "t": 101.17767333984375, + "t": 101.17766571044922, "r": 555.8338623046875, - "b": 136.14752197265625, + "b": 136.1475067138672, "coord_origin": "TOPLEFT" }, - "confidence": 0.70481276512146, + "confidence": 0.7048152089118958, "cells": [], "children": [] }, @@ -317864,12 +317864,12 @@ "label": "table", "bbox": { "l": 309.9566345214844, - "t": 154.61448669433594, + "t": 154.61451721191406, "r": 555.7466430664062, - "b": 184.7225341796875, + "b": 184.72256469726562, "coord_origin": "TOPLEFT" }, - "confidence": 0.564289927482605, + "confidence": 0.5642902851104736, "cells": [], "children": [] }, @@ -317906,7 +317906,7 @@ "b": 214.39334106445312, "coord_origin": "TOPLEFT" }, - "confidence": 0.8857279419898987, + "confidence": 0.8857280611991882, "cells": [], "children": [] }, @@ -317950,13 +317950,13 @@ "id": 21, "label": "table", "bbox": { - "l": 309.9635314941406, - "t": 195.70541381835938, - "r": 555.7054443359375, - "b": 233.55145263671875, + "l": 309.96356201171875, + "t": 195.7054901123047, + "r": 555.7053833007812, + "b": 233.55148315429688, "coord_origin": "TOPLEFT" }, - "confidence": 0.6602518558502197, + "confidence": 0.6602524518966675, "cells": [], "children": [] }, @@ -318043,7 +318043,7 @@ "b": 292.39398193359375, "coord_origin": "TOPLEFT" }, - "confidence": 0.6956620812416077, + "confidence": 0.6956619620323181, "cells": [], "children": [] }, @@ -318067,7 +318067,7 @@ "b": 292.39398193359375, "coord_origin": "TOPLEFT" }, - "confidence": 0.52826988697052, + "confidence": 0.5282703042030334, "cells": [], "children": [] }, @@ -318104,7 +318104,7 @@ "b": 367.9095764160156, "coord_origin": "TOPLEFT" }, - "confidence": 0.9085132479667664, + "confidence": 0.908513069152832, "cells": [], "children": [] }, @@ -318154,7 +318154,7 @@ "b": 437.02239990234375, "coord_origin": "TOPLEFT" }, - "confidence": 0.8486077189445496, + "confidence": 0.8486080765724182, "cells": [], "children": [] }, @@ -318209,13 +318209,13 @@ "id": 0, "label": "table", "bbox": { - "l": 83.31756591796875, + "l": 83.31759643554688, "t": 396.0135498046875, "r": 248.873046875, "b": 487.2569885253906, "coord_origin": "TOPLEFT" }, - "confidence": 0.9613965749740601, + "confidence": 0.9613964557647705, "cells": [], "children": [] }, @@ -318270,7 +318270,7 @@ "b": 502.7210998535156, "coord_origin": "TOPLEFT" }, - "confidence": 0.8815538287162781, + "confidence": 0.8815536499023438, "cells": [], "children": [] }, @@ -318331,7 +318331,7 @@ "b": 567.6879272460938, "coord_origin": "TOPLEFT" }, - "confidence": 0.9096733927726746, + "confidence": 0.9096732139587402, "cells": [], "children": [] }, @@ -318392,7 +318392,7 @@ "b": 665.4903564453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.8023569583892822, + "confidence": 0.8023567795753479, "cells": [], "children": [] }, @@ -318416,7 +318416,7 @@ "b": 665.4903564453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.5930293798446655, + "confidence": 0.5930299758911133, "cells": [], "children": [] }, @@ -318497,7 +318497,7 @@ "b": 84.11492999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.7545598149299622, + "confidence": 0.7545598745346069, "cells": [ { "index": 0, @@ -318543,7 +318543,7 @@ "b": 108.02495999999985, "coord_origin": "TOPLEFT" }, - "confidence": 0.9170762300491333, + "confidence": 0.9170765280723572, "cells": [ { "index": 1, @@ -318614,7 +318614,7 @@ "b": 131.70587, "coord_origin": "TOPLEFT" }, - "confidence": 0.9454683065414429, + "confidence": 0.9454688429832458, "cells": [ { "index": 3, @@ -318685,7 +318685,7 @@ "b": 510.96292, "coord_origin": "TOPLEFT" }, - "confidence": 0.8971090316772461, + "confidence": 0.8971090912818909, "cells": [ { "index": 5, @@ -318731,7 +318731,7 @@ "b": 327.45990000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.8773345351219177, + "confidence": 0.8773341774940491, "cells": [ { "index": 6, @@ -318868,12 +318868,12 @@ "label": "table", "bbox": { "l": 310.3294372558594, - "t": 101.17767333984375, + "t": 101.17766571044922, "r": 555.8338623046875, - "b": 136.14752197265625, + "b": 136.1475067138672, "coord_origin": "TOPLEFT" }, - "confidence": 0.70481276512146, + "confidence": 0.7048152089118958, "cells": [], "children": [] }, @@ -318905,12 +318905,12 @@ "label": "table", "bbox": { "l": 309.9566345214844, - "t": 154.61448669433594, + "t": 154.61451721191406, "r": 555.7466430664062, - "b": 184.7225341796875, + "b": 184.72256469726562, "coord_origin": "TOPLEFT" }, - "confidence": 0.564289927482605, + "confidence": 0.5642902851104736, "cells": [], "children": [] }, @@ -318947,7 +318947,7 @@ "b": 214.39334106445312, "coord_origin": "TOPLEFT" }, - "confidence": 0.8857279419898987, + "confidence": 0.8857280611991882, "cells": [], "children": [] }, @@ -318991,13 +318991,13 @@ "id": 21, "label": "table", "bbox": { - "l": 309.9635314941406, - "t": 195.70541381835938, - "r": 555.7054443359375, - "b": 233.55145263671875, + "l": 309.96356201171875, + "t": 195.7054901123047, + "r": 555.7053833007812, + "b": 233.55148315429688, "coord_origin": "TOPLEFT" }, - "confidence": 0.6602518558502197, + "confidence": 0.6602524518966675, "cells": [], "children": [] }, @@ -319084,7 +319084,7 @@ "b": 292.39398193359375, "coord_origin": "TOPLEFT" }, - "confidence": 0.6956620812416077, + "confidence": 0.6956619620323181, "cells": [], "children": [] }, @@ -319108,7 +319108,7 @@ "b": 292.39398193359375, "coord_origin": "TOPLEFT" }, - "confidence": 0.52826988697052, + "confidence": 0.5282703042030334, "cells": [], "children": [] }, @@ -319145,7 +319145,7 @@ "b": 367.9095764160156, "coord_origin": "TOPLEFT" }, - "confidence": 0.9085132479667664, + "confidence": 0.908513069152832, "cells": [], "children": [] }, @@ -319195,7 +319195,7 @@ "b": 437.02239990234375, "coord_origin": "TOPLEFT" }, - "confidence": 0.8486077189445496, + "confidence": 0.8486080765724182, "cells": [], "children": [] }, @@ -319250,13 +319250,13 @@ "id": 0, "label": "table", "bbox": { - "l": 83.31756591796875, + "l": 83.31759643554688, "t": 396.0135498046875, "r": 248.873046875, "b": 487.2569885253906, "coord_origin": "TOPLEFT" }, - "confidence": 0.9613965749740601, + "confidence": 0.9613964557647705, "cells": [], "children": [] }, @@ -319311,7 +319311,7 @@ "b": 502.7210998535156, "coord_origin": "TOPLEFT" }, - "confidence": 0.8815538287162781, + "confidence": 0.8815536499023438, "cells": [], "children": [] }, @@ -319372,7 +319372,7 @@ "b": 567.6879272460938, "coord_origin": "TOPLEFT" }, - "confidence": 0.9096733927726746, + "confidence": 0.9096732139587402, "cells": [], "children": [] }, @@ -319433,7 +319433,7 @@ "b": 665.4903564453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.8023569583892822, + "confidence": 0.8023567795753479, "cells": [], "children": [] }, @@ -319457,7 +319457,7 @@ "b": 665.4903564453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.5930293798446655, + "confidence": 0.5930299758911133, "cells": [], "children": [] }, @@ -319538,7 +319538,7 @@ "b": 743.039921, "coord_origin": "TOPLEFT" }, - "confidence": 0.9020507335662842, + "confidence": 0.9020510315895081, "cells": [ { "index": 10, @@ -319770,7 +319770,7 @@ "b": 377.6319, "coord_origin": "TOPLEFT" }, - "confidence": 0.951069176197052, + "confidence": 0.9510690569877625, "cells": [ { "index": 0, @@ -319860,7 +319860,7 @@ "b": 680.72492, "coord_origin": "TOPLEFT" }, - "confidence": 0.926384687423706, + "confidence": 0.9263845086097717, "cells": [ { "index": 3, @@ -319900,7 +319900,7 @@ "b": 380.59091, "coord_origin": "TOPLEFT" }, - "confidence": 0.9178510904312134, + "confidence": 0.9178509712219238, "cells": [ { "index": 4, @@ -319940,7 +319940,7 @@ "b": 692.452927, "coord_origin": "TOPLEFT" }, - "confidence": 0.9191023111343384, + "confidence": 0.919101893901825, "cells": [ { "index": 5, @@ -319980,7 +319980,7 @@ "b": 743.039925, "coord_origin": "TOPLEFT" }, - "confidence": 0.887715220451355, + "confidence": 0.8877150416374207, "cells": [ { "index": 6, @@ -320020,7 +320020,7 @@ "b": 359.0575866699219, "coord_origin": "TOPLEFT" }, - "confidence": 0.5003598928451538, + "confidence": 0.5003602504730225, "cells": [], "children": [] }, @@ -320028,13 +320028,13 @@ "id": 30, "label": "picture", "bbox": { - "l": 51.15378952026367, + "l": 51.153778076171875, "t": 104.30851745605469, "r": 282.8598937988281, "b": 344.90667724609375, "coord_origin": "TOPLEFT" }, - "confidence": 0.5613773465156555, + "confidence": 0.5613781213760376, "cells": [], "children": [] }, @@ -320048,7 +320048,7 @@ "b": 214.6260528564453, "coord_origin": "TOPLEFT" }, - "confidence": 0.6235634684562683, + "confidence": 0.6235637068748474, "cells": [], "children": [] }, @@ -320062,7 +320062,7 @@ "b": 279.8576965332031, "coord_origin": "TOPLEFT" }, - "confidence": 0.5502500534057617, + "confidence": 0.5502495765686035, "cells": [], "children": [] }, @@ -320070,13 +320070,13 @@ "id": 27, "label": "table", "bbox": { - "l": 51.72642135620117, - "t": 273.6092834472656, - "r": 283.114013671875, - "b": 344.2445068359375, + "l": 51.726383209228516, + "t": 273.6092529296875, + "r": 283.1140441894531, + "b": 344.2444763183594, "coord_origin": "TOPLEFT" }, - "confidence": 0.5696635246276855, + "confidence": 0.5696631669998169, "cells": [], "children": [] }, @@ -320090,7 +320090,7 @@ "b": 358.2724304199219, "coord_origin": "TOPLEFT" }, - "confidence": 0.5227423310279846, + "confidence": 0.522743284702301, "cells": [], "children": [] }, @@ -320104,7 +320104,7 @@ "b": 477.94354248046875, "coord_origin": "TOPLEFT" }, - "confidence": 0.8384715914726257, + "confidence": 0.8384720087051392, "cells": [], "children": [] }, @@ -320112,13 +320112,13 @@ "id": 9, "label": "table", "bbox": { - "l": 51.434879302978516, + "l": 51.43488693237305, "t": 453.48748779296875, "r": 310.7267150878906, "b": 491.82025146484375, "coord_origin": "TOPLEFT" }, - "confidence": 0.8418155908584595, + "confidence": 0.8418160080909729, "cells": [], "children": [] }, @@ -320132,7 +320132,7 @@ "b": 535.69580078125, "coord_origin": "TOPLEFT" }, - "confidence": 0.8502867221832275, + "confidence": 0.8502869606018066, "cells": [], "children": [] }, @@ -320146,7 +320146,7 @@ "b": 542.4459838867188, "coord_origin": "TOPLEFT" }, - "confidence": 0.8922696709632874, + "confidence": 0.8922702074050903, "cells": [], "children": [] }, @@ -320160,7 +320160,7 @@ "b": 593.1064453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.6817973256111145, + "confidence": 0.681797444820404, "cells": [], "children": [] }, @@ -320168,13 +320168,13 @@ "id": 6, "label": "table", "bbox": { - "l": 51.27280807495117, + "l": 51.2728271484375, "t": 553.728515625, "r": 311.0897216796875, "b": 591.913330078125, "coord_origin": "TOPLEFT" }, - "confidence": 0.88722163438797, + "confidence": 0.8872225880622864, "cells": [], "children": [] }, @@ -320182,13 +320182,13 @@ "id": 7, "label": "table", "bbox": { - "l": 319.06494140625, - "t": 609.8408203125, - "r": 533.77392578125, + "l": 319.0649719238281, + "t": 609.8409423828125, + "r": 533.7738647460938, "b": 669.1920776367188, "coord_origin": "TOPLEFT" }, - "confidence": 0.8717735409736633, + "confidence": 0.8717731237411499, "cells": [], "children": [] }, @@ -320224,7 +320224,7 @@ "b": 214.6260528564453, "coord_origin": "TOPLEFT" }, - "confidence": 0.6235634684562683, + "confidence": 0.6235637068748474, "cells": [], "children": [] }, @@ -320291,7 +320291,7 @@ "b": 279.8576965332031, "coord_origin": "TOPLEFT" }, - "confidence": 0.5502500534057617, + "confidence": 0.5502495765686035, "cells": [], "children": [] }, @@ -320352,13 +320352,13 @@ "id": 27, "label": "table", "bbox": { - "l": 51.72642135620117, - "t": 273.6092834472656, - "r": 283.114013671875, - "b": 344.2445068359375, + "l": 51.726383209228516, + "t": 273.6092529296875, + "r": 283.1140441894531, + "b": 344.2444763183594, "coord_origin": "TOPLEFT" }, - "confidence": 0.5696635246276855, + "confidence": 0.5696631669998169, "cells": [], "children": [] }, @@ -320432,7 +320432,7 @@ "b": 358.2724304199219, "coord_origin": "TOPLEFT" }, - "confidence": 0.5227423310279846, + "confidence": 0.522743284702301, "cells": [], "children": [] }, @@ -320478,7 +320478,7 @@ "b": 477.94354248046875, "coord_origin": "TOPLEFT" }, - "confidence": 0.8384715914726257, + "confidence": 0.8384720087051392, "cells": [], "children": [] }, @@ -320521,13 +320521,13 @@ "id": 9, "label": "table", "bbox": { - "l": 51.434879302978516, + "l": 51.43488693237305, "t": 453.48748779296875, "r": 310.7267150878906, "b": 491.82025146484375, "coord_origin": "TOPLEFT" }, - "confidence": 0.8418155908584595, + "confidence": 0.8418160080909729, "cells": [], "children": [] }, @@ -320572,7 +320572,7 @@ "b": 535.69580078125, "coord_origin": "TOPLEFT" }, - "confidence": 0.8502867221832275, + "confidence": 0.8502869606018066, "cells": [], "children": [] }, @@ -320621,7 +320621,7 @@ "b": 542.4459838867188, "coord_origin": "TOPLEFT" }, - "confidence": 0.8922696709632874, + "confidence": 0.8922702074050903, "cells": [], "children": [] }, @@ -320666,7 +320666,7 @@ "b": 593.1064453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.6817973256111145, + "confidence": 0.681797444820404, "cells": [], "children": [] }, @@ -320709,13 +320709,13 @@ "id": 6, "label": "table", "bbox": { - "l": 51.27280807495117, + "l": 51.2728271484375, "t": 553.728515625, "r": 311.0897216796875, "b": 591.913330078125, "coord_origin": "TOPLEFT" }, - "confidence": 0.88722163438797, + "confidence": 0.8872225880622864, "cells": [], "children": [] }, @@ -320754,13 +320754,13 @@ "id": 7, "label": "table", "bbox": { - "l": 319.06494140625, - "t": 609.8408203125, - "r": 533.77392578125, + "l": 319.0649719238281, + "t": 609.8409423828125, + "r": 533.7738647460938, "b": 669.1920776367188, "coord_origin": "TOPLEFT" }, - "confidence": 0.8717735409736633, + "confidence": 0.8717731237411499, "cells": [], "children": [] }, @@ -320821,7 +320821,7 @@ "b": 377.6319, "coord_origin": "TOPLEFT" }, - "confidence": 0.951069176197052, + "confidence": 0.9510690569877625, "cells": [ { "index": 0, @@ -320917,7 +320917,7 @@ "b": 680.72492, "coord_origin": "TOPLEFT" }, - "confidence": 0.926384687423706, + "confidence": 0.9263845086097717, "cells": [ { "index": 3, @@ -320963,7 +320963,7 @@ "b": 380.59091, "coord_origin": "TOPLEFT" }, - "confidence": 0.9178510904312134, + "confidence": 0.9178509712219238, "cells": [ { "index": 4, @@ -321009,7 +321009,7 @@ "b": 692.452927, "coord_origin": "TOPLEFT" }, - "confidence": 0.9191023111343384, + "confidence": 0.919101893901825, "cells": [ { "index": 5, @@ -321055,7 +321055,7 @@ "b": 743.039925, "coord_origin": "TOPLEFT" }, - "confidence": 0.887715220451355, + "confidence": 0.8877150416374207, "cells": [ { "index": 6, @@ -321101,7 +321101,7 @@ "b": 359.0575866699219, "coord_origin": "TOPLEFT" }, - "confidence": 0.5003598928451538, + "confidence": 0.5003602504730225, "cells": [], "children": [] }, @@ -321119,13 +321119,13 @@ "id": 30, "label": "picture", "bbox": { - "l": 51.15378952026367, + "l": 51.153778076171875, "t": 104.30851745605469, "r": 282.8598937988281, "b": 344.90667724609375, "coord_origin": "TOPLEFT" }, - "confidence": 0.5613773465156555, + "confidence": 0.5613781213760376, "cells": [], "children": [] }, @@ -321149,7 +321149,7 @@ "b": 214.6260528564453, "coord_origin": "TOPLEFT" }, - "confidence": 0.6235634684562683, + "confidence": 0.6235637068748474, "cells": [], "children": [] }, @@ -321216,7 +321216,7 @@ "b": 279.8576965332031, "coord_origin": "TOPLEFT" }, - "confidence": 0.5502500534057617, + "confidence": 0.5502495765686035, "cells": [], "children": [] }, @@ -321277,13 +321277,13 @@ "id": 27, "label": "table", "bbox": { - "l": 51.72642135620117, - "t": 273.6092834472656, - "r": 283.114013671875, - "b": 344.2445068359375, + "l": 51.726383209228516, + "t": 273.6092529296875, + "r": 283.1140441894531, + "b": 344.2444763183594, "coord_origin": "TOPLEFT" }, - "confidence": 0.5696635246276855, + "confidence": 0.5696631669998169, "cells": [], "children": [] }, @@ -321357,7 +321357,7 @@ "b": 358.2724304199219, "coord_origin": "TOPLEFT" }, - "confidence": 0.5227423310279846, + "confidence": 0.522743284702301, "cells": [], "children": [] }, @@ -321403,7 +321403,7 @@ "b": 477.94354248046875, "coord_origin": "TOPLEFT" }, - "confidence": 0.8384715914726257, + "confidence": 0.8384720087051392, "cells": [], "children": [] }, @@ -321446,13 +321446,13 @@ "id": 9, "label": "table", "bbox": { - "l": 51.434879302978516, + "l": 51.43488693237305, "t": 453.48748779296875, "r": 310.7267150878906, "b": 491.82025146484375, "coord_origin": "TOPLEFT" }, - "confidence": 0.8418155908584595, + "confidence": 0.8418160080909729, "cells": [], "children": [] }, @@ -321497,7 +321497,7 @@ "b": 535.69580078125, "coord_origin": "TOPLEFT" }, - "confidence": 0.8502867221832275, + "confidence": 0.8502869606018066, "cells": [], "children": [] }, @@ -321546,7 +321546,7 @@ "b": 542.4459838867188, "coord_origin": "TOPLEFT" }, - "confidence": 0.8922696709632874, + "confidence": 0.8922702074050903, "cells": [], "children": [] }, @@ -321591,7 +321591,7 @@ "b": 593.1064453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.6817973256111145, + "confidence": 0.681797444820404, "cells": [], "children": [] }, @@ -321634,13 +321634,13 @@ "id": 6, "label": "table", "bbox": { - "l": 51.27280807495117, + "l": 51.2728271484375, "t": 553.728515625, "r": 311.0897216796875, "b": 591.913330078125, "coord_origin": "TOPLEFT" }, - "confidence": 0.88722163438797, + "confidence": 0.8872225880622864, "cells": [], "children": [] }, @@ -321679,13 +321679,13 @@ "id": 7, "label": "table", "bbox": { - "l": 319.06494140625, - "t": 609.8408203125, - "r": 533.77392578125, + "l": 319.0649719238281, + "t": 609.8409423828125, + "r": 533.7738647460938, "b": 669.1920776367188, "coord_origin": "TOPLEFT" }, - "confidence": 0.8717735409736633, + "confidence": 0.8717731237411499, "cells": [], "children": [] }, @@ -321764,7 +321764,7 @@ "b": 377.6319, "coord_origin": "TOPLEFT" }, - "confidence": 0.951069176197052, + "confidence": 0.9510690569877625, "cells": [ { "index": 0, @@ -321860,7 +321860,7 @@ "b": 680.72492, "coord_origin": "TOPLEFT" }, - "confidence": 0.926384687423706, + "confidence": 0.9263845086097717, "cells": [ { "index": 3, @@ -321906,7 +321906,7 @@ "b": 380.59091, "coord_origin": "TOPLEFT" }, - "confidence": 0.9178510904312134, + "confidence": 0.9178509712219238, "cells": [ { "index": 4, @@ -321952,7 +321952,7 @@ "b": 692.452927, "coord_origin": "TOPLEFT" }, - "confidence": 0.9191023111343384, + "confidence": 0.919101893901825, "cells": [ { "index": 5, @@ -321998,7 +321998,7 @@ "b": 359.0575866699219, "coord_origin": "TOPLEFT" }, - "confidence": 0.5003598928451538, + "confidence": 0.5003602504730225, "cells": [], "children": [] }, @@ -322016,13 +322016,13 @@ "id": 30, "label": "picture", "bbox": { - "l": 51.15378952026367, + "l": 51.153778076171875, "t": 104.30851745605469, "r": 282.8598937988281, "b": 344.90667724609375, "coord_origin": "TOPLEFT" }, - "confidence": 0.5613773465156555, + "confidence": 0.5613781213760376, "cells": [], "children": [] }, @@ -322046,7 +322046,7 @@ "b": 214.6260528564453, "coord_origin": "TOPLEFT" }, - "confidence": 0.6235634684562683, + "confidence": 0.6235637068748474, "cells": [], "children": [] }, @@ -322113,7 +322113,7 @@ "b": 279.8576965332031, "coord_origin": "TOPLEFT" }, - "confidence": 0.5502500534057617, + "confidence": 0.5502495765686035, "cells": [], "children": [] }, @@ -322174,13 +322174,13 @@ "id": 27, "label": "table", "bbox": { - "l": 51.72642135620117, - "t": 273.6092834472656, - "r": 283.114013671875, - "b": 344.2445068359375, + "l": 51.726383209228516, + "t": 273.6092529296875, + "r": 283.1140441894531, + "b": 344.2444763183594, "coord_origin": "TOPLEFT" }, - "confidence": 0.5696635246276855, + "confidence": 0.5696631669998169, "cells": [], "children": [] }, @@ -322254,7 +322254,7 @@ "b": 358.2724304199219, "coord_origin": "TOPLEFT" }, - "confidence": 0.5227423310279846, + "confidence": 0.522743284702301, "cells": [], "children": [] }, @@ -322300,7 +322300,7 @@ "b": 477.94354248046875, "coord_origin": "TOPLEFT" }, - "confidence": 0.8384715914726257, + "confidence": 0.8384720087051392, "cells": [], "children": [] }, @@ -322343,13 +322343,13 @@ "id": 9, "label": "table", "bbox": { - "l": 51.434879302978516, + "l": 51.43488693237305, "t": 453.48748779296875, "r": 310.7267150878906, "b": 491.82025146484375, "coord_origin": "TOPLEFT" }, - "confidence": 0.8418155908584595, + "confidence": 0.8418160080909729, "cells": [], "children": [] }, @@ -322394,7 +322394,7 @@ "b": 535.69580078125, "coord_origin": "TOPLEFT" }, - "confidence": 0.8502867221832275, + "confidence": 0.8502869606018066, "cells": [], "children": [] }, @@ -322443,7 +322443,7 @@ "b": 542.4459838867188, "coord_origin": "TOPLEFT" }, - "confidence": 0.8922696709632874, + "confidence": 0.8922702074050903, "cells": [], "children": [] }, @@ -322488,7 +322488,7 @@ "b": 593.1064453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.6817973256111145, + "confidence": 0.681797444820404, "cells": [], "children": [] }, @@ -322531,13 +322531,13 @@ "id": 6, "label": "table", "bbox": { - "l": 51.27280807495117, + "l": 51.2728271484375, "t": 553.728515625, "r": 311.0897216796875, "b": 591.913330078125, "coord_origin": "TOPLEFT" }, - "confidence": 0.88722163438797, + "confidence": 0.8872225880622864, "cells": [], "children": [] }, @@ -322576,13 +322576,13 @@ "id": 7, "label": "table", "bbox": { - "l": 319.06494140625, - "t": 609.8408203125, - "r": 533.77392578125, + "l": 319.0649719238281, + "t": 609.8409423828125, + "r": 533.7738647460938, "b": 669.1920776367188, "coord_origin": "TOPLEFT" }, - "confidence": 0.8717735409736633, + "confidence": 0.8717731237411499, "cells": [], "children": [] }, @@ -322661,7 +322661,7 @@ "b": 743.039925, "coord_origin": "TOPLEFT" }, - "confidence": 0.887715220451355, + "confidence": 0.8877150416374207, "cells": [ { "index": 6, @@ -322818,7 +322818,7 @@ "b": 653.25793, "coord_origin": "TOPLEFT" }, - "confidence": 0.9257225394248962, + "confidence": 0.9257223606109619, "cells": [ { "index": 0, @@ -322858,7 +322858,7 @@ "b": 673.79691, "coord_origin": "TOPLEFT" }, - "confidence": 0.9134758710861206, + "confidence": 0.9134756922721863, "cells": [ { "index": 1, @@ -322923,7 +322923,7 @@ "b": 743.039906, "coord_origin": "TOPLEFT" }, - "confidence": 0.9037020802497864, + "confidence": 0.9037018418312073, "cells": [ { "index": 3, @@ -322957,13 +322957,13 @@ "id": 4, "label": "table", "bbox": { - "l": 323.0059509277344, - "t": 121.54714965820312, - "r": 525.95166015625, - "b": 222.91140747070312, + "l": 323.0059814453125, + "t": 121.54713439941406, + "r": 525.9517211914062, + "b": 222.9114227294922, "coord_origin": "TOPLEFT" }, - "confidence": 0.8569068908691406, + "confidence": 0.856907069683075, "cells": [], "children": [] }, @@ -322971,13 +322971,13 @@ "id": 6, "label": "picture", "bbox": { - "l": 55.116363525390625, + "l": 55.11635208129883, "t": 136.2550048828125, "r": 279.370849609375, - "b": 249.3345489501953, + "b": 249.33450317382812, "coord_origin": "TOPLEFT" }, - "confidence": 0.8099280595779419, + "confidence": 0.809927225112915, "cells": [], "children": [] }, @@ -322985,13 +322985,13 @@ "id": 19, "label": "table", "bbox": { - "l": 55.116363525390625, + "l": 55.11635208129883, "t": 136.2550048828125, "r": 279.370849609375, - "b": 249.3345489501953, + "b": 249.33450317382812, "coord_origin": "TOPLEFT" }, - "confidence": 0.5584819912910461, + "confidence": 0.5584838390350342, "cells": [], "children": [] }, @@ -323000,12 +323000,12 @@ "label": "table", "bbox": { "l": 323.384765625, - "t": 241.9729461669922, + "t": 241.97293090820312, "r": 526.1268920898438, - "b": 344.09210205078125, + "b": 344.0921325683594, "coord_origin": "TOPLEFT" }, - "confidence": 0.9060239195823669, + "confidence": 0.9060238003730774, "cells": [], "children": [] }, @@ -323033,7 +323033,7 @@ "b": 373.5270690917969, "coord_origin": "TOPLEFT" }, - "confidence": 0.7748245000839233, + "confidence": 0.7748245596885681, "cells": [], "children": [] }, @@ -323042,12 +323042,12 @@ "label": "picture", "bbox": { "l": 323.46868896484375, - "t": 362.4508361816406, + "t": 362.4507751464844, "r": 525.9569091796875, - "b": 464.260498046875, + "b": 464.26043701171875, "coord_origin": "TOPLEFT" }, - "confidence": 0.5515198707580566, + "confidence": 0.5515192747116089, "cells": [], "children": [] }, @@ -323056,12 +323056,12 @@ "label": "table", "bbox": { "l": 323.46868896484375, - "t": 362.4508361816406, + "t": 362.4507751464844, "r": 525.9569091796875, - "b": 464.260498046875, + "b": 464.26043701171875, "coord_origin": "TOPLEFT" }, - "confidence": 0.7755160927772522, + "confidence": 0.7755167484283447, "cells": [], "children": [] }, @@ -323075,7 +323075,7 @@ "b": 497.563720703125, "coord_origin": "TOPLEFT" }, - "confidence": 0.8410326838493347, + "confidence": 0.8410324454307556, "cells": [], "children": [] }, @@ -323089,7 +323089,7 @@ "b": 635.7732543945312, "coord_origin": "TOPLEFT" }, - "confidence": 0.5478786826133728, + "confidence": 0.5478792786598206, "cells": [], "children": [] }, @@ -323103,7 +323103,7 @@ "b": 635.7732543945312, "coord_origin": "TOPLEFT" }, - "confidence": 0.7805566787719727, + "confidence": 0.7805564999580383, "cells": [], "children": [] }, @@ -323117,7 +323117,7 @@ "b": 631.263671875, "coord_origin": "TOPLEFT" }, - "confidence": 0.8057592511177063, + "confidence": 0.8057589530944824, "cells": [], "children": [] }, @@ -323131,7 +323131,7 @@ "b": 631.263671875, "coord_origin": "TOPLEFT" }, - "confidence": 0.6835257411003113, + "confidence": 0.6835256218910217, "cells": [], "children": [] } @@ -323147,13 +323147,13 @@ "id": 4, "label": "table", "bbox": { - "l": 323.0059509277344, - "t": 121.54714965820312, - "r": 525.95166015625, - "b": 222.91140747070312, + "l": 323.0059814453125, + "t": 121.54713439941406, + "r": 525.9517211914062, + "b": 222.9114227294922, "coord_origin": "TOPLEFT" }, - "confidence": 0.8569068908691406, + "confidence": 0.856907069683075, "cells": [], "children": [] }, @@ -323199,13 +323199,13 @@ "id": 19, "label": "table", "bbox": { - "l": 55.116363525390625, + "l": 55.11635208129883, "t": 136.2550048828125, "r": 279.370849609375, - "b": 249.3345489501953, + "b": 249.33450317382812, "coord_origin": "TOPLEFT" }, - "confidence": 0.5584819912910461, + "confidence": 0.5584838390350342, "cells": [], "children": [] }, @@ -323309,12 +323309,12 @@ "label": "table", "bbox": { "l": 323.384765625, - "t": 241.9729461669922, + "t": 241.97293090820312, "r": 526.1268920898438, - "b": 344.09210205078125, + "b": 344.0921325683594, "coord_origin": "TOPLEFT" }, - "confidence": 0.9060239195823669, + "confidence": 0.9060238003730774, "cells": [], "children": [] }, @@ -323366,7 +323366,7 @@ "b": 373.5270690917969, "coord_origin": "TOPLEFT" }, - "confidence": 0.7748245000839233, + "confidence": 0.7748245596885681, "cells": [], "children": [] }, @@ -323518,12 +323518,12 @@ "label": "table", "bbox": { "l": 323.46868896484375, - "t": 362.4508361816406, + "t": 362.4507751464844, "r": 525.9569091796875, - "b": 464.260498046875, + "b": 464.26043701171875, "coord_origin": "TOPLEFT" }, - "confidence": 0.7755160927772522, + "confidence": 0.7755167484283447, "cells": [], "children": [] }, @@ -323575,7 +323575,7 @@ "b": 635.7732543945312, "coord_origin": "TOPLEFT" }, - "confidence": 0.7805566787719727, + "confidence": 0.7805564999580383, "cells": [], "children": [] }, @@ -323627,7 +323627,7 @@ "b": 631.263671875, "coord_origin": "TOPLEFT" }, - "confidence": 0.6835257411003113, + "confidence": 0.6835256218910217, "cells": [], "children": [] }, @@ -323828,7 +323828,7 @@ "b": 653.25793, "coord_origin": "TOPLEFT" }, - "confidence": 0.9257225394248962, + "confidence": 0.9257223606109619, "cells": [ { "index": 0, @@ -323874,7 +323874,7 @@ "b": 673.79691, "coord_origin": "TOPLEFT" }, - "confidence": 0.9134758710861206, + "confidence": 0.9134756922721863, "cells": [ { "index": 1, @@ -323945,7 +323945,7 @@ "b": 743.039906, "coord_origin": "TOPLEFT" }, - "confidence": 0.9037020802497864, + "confidence": 0.9037018418312073, "cells": [ { "index": 3, @@ -323985,13 +323985,13 @@ "id": 4, "label": "table", "bbox": { - "l": 323.0059509277344, - "t": 121.54714965820312, - "r": 525.95166015625, - "b": 222.91140747070312, + "l": 323.0059814453125, + "t": 121.54713439941406, + "r": 525.9517211914062, + "b": 222.9114227294922, "coord_origin": "TOPLEFT" }, - "confidence": 0.8569068908691406, + "confidence": 0.856907069683075, "cells": [], "children": [] }, @@ -324037,13 +324037,13 @@ "id": 6, "label": "picture", "bbox": { - "l": 55.116363525390625, + "l": 55.11635208129883, "t": 136.2550048828125, "r": 279.370849609375, - "b": 249.3345489501953, + "b": 249.33450317382812, "coord_origin": "TOPLEFT" }, - "confidence": 0.8099280595779419, + "confidence": 0.809927225112915, "cells": [], "children": [] }, @@ -324061,13 +324061,13 @@ "id": 19, "label": "table", "bbox": { - "l": 55.116363525390625, + "l": 55.11635208129883, "t": 136.2550048828125, "r": 279.370849609375, - "b": 249.3345489501953, + "b": 249.33450317382812, "coord_origin": "TOPLEFT" }, - "confidence": 0.5584819912910461, + "confidence": 0.5584838390350342, "cells": [], "children": [] }, @@ -324171,12 +324171,12 @@ "label": "table", "bbox": { "l": 323.384765625, - "t": 241.9729461669922, + "t": 241.97293090820312, "r": 526.1268920898438, - "b": 344.09210205078125, + "b": 344.0921325683594, "coord_origin": "TOPLEFT" }, - "confidence": 0.9060239195823669, + "confidence": 0.9060238003730774, "cells": [], "children": [] }, @@ -324252,7 +324252,7 @@ "b": 373.5270690917969, "coord_origin": "TOPLEFT" }, - "confidence": 0.7748245000839233, + "confidence": 0.7748245596885681, "cells": [], "children": [] }, @@ -324404,12 +324404,12 @@ "label": "picture", "bbox": { "l": 323.46868896484375, - "t": 362.4508361816406, + "t": 362.4507751464844, "r": 525.9569091796875, - "b": 464.260498046875, + "b": 464.26043701171875, "coord_origin": "TOPLEFT" }, - "confidence": 0.5515198707580566, + "confidence": 0.5515192747116089, "cells": [], "children": [] }, @@ -324428,12 +324428,12 @@ "label": "table", "bbox": { "l": 323.46868896484375, - "t": 362.4508361816406, + "t": 362.4507751464844, "r": 525.9569091796875, - "b": 464.260498046875, + "b": 464.26043701171875, "coord_origin": "TOPLEFT" }, - "confidence": 0.7755160927772522, + "confidence": 0.7755167484283447, "cells": [], "children": [] }, @@ -324485,7 +324485,7 @@ "b": 497.563720703125, "coord_origin": "TOPLEFT" }, - "confidence": 0.8410326838493347, + "confidence": 0.8410324454307556, "cells": [], "children": [] }, @@ -324509,7 +324509,7 @@ "b": 635.7732543945312, "coord_origin": "TOPLEFT" }, - "confidence": 0.5478786826133728, + "confidence": 0.5478792786598206, "cells": [], "children": [] }, @@ -324533,7 +324533,7 @@ "b": 635.7732543945312, "coord_origin": "TOPLEFT" }, - "confidence": 0.7805566787719727, + "confidence": 0.7805564999580383, "cells": [], "children": [] }, @@ -324585,7 +324585,7 @@ "b": 631.263671875, "coord_origin": "TOPLEFT" }, - "confidence": 0.8057592511177063, + "confidence": 0.8057589530944824, "cells": [], "children": [] }, @@ -324609,7 +324609,7 @@ "b": 631.263671875, "coord_origin": "TOPLEFT" }, - "confidence": 0.6835257411003113, + "confidence": 0.6835256218910217, "cells": [], "children": [] }, @@ -324804,7 +324804,7 @@ "b": 653.25793, "coord_origin": "TOPLEFT" }, - "confidence": 0.9257225394248962, + "confidence": 0.9257223606109619, "cells": [ { "index": 0, @@ -324850,7 +324850,7 @@ "b": 673.79691, "coord_origin": "TOPLEFT" }, - "confidence": 0.9134758710861206, + "confidence": 0.9134756922721863, "cells": [ { "index": 1, @@ -324915,13 +324915,13 @@ "id": 4, "label": "table", "bbox": { - "l": 323.0059509277344, - "t": 121.54714965820312, - "r": 525.95166015625, - "b": 222.91140747070312, + "l": 323.0059814453125, + "t": 121.54713439941406, + "r": 525.9517211914062, + "b": 222.9114227294922, "coord_origin": "TOPLEFT" }, - "confidence": 0.8569068908691406, + "confidence": 0.856907069683075, "cells": [], "children": [] }, @@ -324967,13 +324967,13 @@ "id": 6, "label": "picture", "bbox": { - "l": 55.116363525390625, + "l": 55.11635208129883, "t": 136.2550048828125, "r": 279.370849609375, - "b": 249.3345489501953, + "b": 249.33450317382812, "coord_origin": "TOPLEFT" }, - "confidence": 0.8099280595779419, + "confidence": 0.809927225112915, "cells": [], "children": [] }, @@ -324991,13 +324991,13 @@ "id": 19, "label": "table", "bbox": { - "l": 55.116363525390625, + "l": 55.11635208129883, "t": 136.2550048828125, "r": 279.370849609375, - "b": 249.3345489501953, + "b": 249.33450317382812, "coord_origin": "TOPLEFT" }, - "confidence": 0.5584819912910461, + "confidence": 0.5584838390350342, "cells": [], "children": [] }, @@ -325101,12 +325101,12 @@ "label": "table", "bbox": { "l": 323.384765625, - "t": 241.9729461669922, + "t": 241.97293090820312, "r": 526.1268920898438, - "b": 344.09210205078125, + "b": 344.0921325683594, "coord_origin": "TOPLEFT" }, - "confidence": 0.9060239195823669, + "confidence": 0.9060238003730774, "cells": [], "children": [] }, @@ -325182,7 +325182,7 @@ "b": 373.5270690917969, "coord_origin": "TOPLEFT" }, - "confidence": 0.7748245000839233, + "confidence": 0.7748245596885681, "cells": [], "children": [] }, @@ -325334,12 +325334,12 @@ "label": "picture", "bbox": { "l": 323.46868896484375, - "t": 362.4508361816406, + "t": 362.4507751464844, "r": 525.9569091796875, - "b": 464.260498046875, + "b": 464.26043701171875, "coord_origin": "TOPLEFT" }, - "confidence": 0.5515198707580566, + "confidence": 0.5515192747116089, "cells": [], "children": [] }, @@ -325358,12 +325358,12 @@ "label": "table", "bbox": { "l": 323.46868896484375, - "t": 362.4508361816406, + "t": 362.4507751464844, "r": 525.9569091796875, - "b": 464.260498046875, + "b": 464.26043701171875, "coord_origin": "TOPLEFT" }, - "confidence": 0.7755160927772522, + "confidence": 0.7755167484283447, "cells": [], "children": [] }, @@ -325415,7 +325415,7 @@ "b": 497.563720703125, "coord_origin": "TOPLEFT" }, - "confidence": 0.8410326838493347, + "confidence": 0.8410324454307556, "cells": [], "children": [] }, @@ -325439,7 +325439,7 @@ "b": 635.7732543945312, "coord_origin": "TOPLEFT" }, - "confidence": 0.5478786826133728, + "confidence": 0.5478792786598206, "cells": [], "children": [] }, @@ -325463,7 +325463,7 @@ "b": 635.7732543945312, "coord_origin": "TOPLEFT" }, - "confidence": 0.7805566787719727, + "confidence": 0.7805564999580383, "cells": [], "children": [] }, @@ -325515,7 +325515,7 @@ "b": 631.263671875, "coord_origin": "TOPLEFT" }, - "confidence": 0.8057592511177063, + "confidence": 0.8057589530944824, "cells": [], "children": [] }, @@ -325539,7 +325539,7 @@ "b": 631.263671875, "coord_origin": "TOPLEFT" }, - "confidence": 0.6835257411003113, + "confidence": 0.6835256218910217, "cells": [], "children": [] }, @@ -325734,7 +325734,7 @@ "b": 743.039906, "coord_origin": "TOPLEFT" }, - "confidence": 0.9037020802497864, + "confidence": 0.9037018418312073, "cells": [ { "index": 3, @@ -325866,7 +325866,7 @@ "b": 529.1989100000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9624594449996948, + "confidence": 0.9624595642089844, "cells": [ { "index": 0, @@ -325966,12 +325966,12 @@ "label": "picture", "bbox": { "l": 66.79948425292969, - "t": 253.61631774902344, + "t": 253.6162872314453, "r": 528.5565795898438, "b": 498.1383972167969, "coord_origin": "TOPLEFT" }, - "confidence": 0.6913455724716187, + "confidence": 0.6913463473320007, "cells": [], "children": [] } @@ -326000,7 +326000,7 @@ "b": 529.1989100000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9624594449996948, + "confidence": 0.9624595642089844, "cells": [ { "index": 0, @@ -326112,12 +326112,12 @@ "label": "picture", "bbox": { "l": 66.79948425292969, - "t": 253.61631774902344, + "t": 253.6162872314453, "r": 528.5565795898438, "b": 498.1383972167969, "coord_origin": "TOPLEFT" }, - "confidence": 0.6913455724716187, + "confidence": 0.6913463473320007, "cells": [], "children": [] }, @@ -326143,7 +326143,7 @@ "b": 529.1989100000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9624594449996948, + "confidence": 0.9624595642089844, "cells": [ { "index": 0, @@ -326209,12 +326209,12 @@ "label": "picture", "bbox": { "l": 66.79948425292969, - "t": 253.61631774902344, + "t": 253.6162872314453, "r": 528.5565795898438, "b": 498.1383972167969, "coord_origin": "TOPLEFT" }, - "confidence": 0.6913455724716187, + "confidence": 0.6913463473320007, "cells": [], "children": [] }, diff --git a/tests/data/groundtruth/docling_v1/2206.01062.json b/tests/data/groundtruth/docling_v1/2206.01062.json index 70ca3d4..2e48ada 100644 --- a/tests/data/groundtruth/docling_v1/2206.01062.json +++ b/tests/data/groundtruth/docling_v1/2206.01062.json @@ -3099,9 +3099,9 @@ "prov": [ { "bbox": [ - 323.408203125, - 266.1492919921875, - 553.2952270507812, + 323.4081115722656, + 266.14935302734375, + 553.295166015625, 541.6512603759766 ], "page": 1, @@ -3122,9 +3122,9 @@ { "bbox": [ 88.33030700683594, - 571.4317321777344, + 571.4317626953125, 263.7049560546875, - 699.1134796142578 + 699.1134490966797 ], "page": 3, "span": [ @@ -3144,9 +3144,9 @@ { "bbox": [ 53.05912780761719, - 251.135986328125, + 251.1358642578125, 295.8506164550781, - 481.2087097167969 + 481.20867919921875 ], "page": 4, "span": [ @@ -3234,9 +3234,9 @@ { "bbox": [ 98.93103790283203, - 497.91851806640625, + 497.91845703125, 512.579833984375, - 654.5245208740234 + 654.5244903564453 ], "page": 4, "span": [ @@ -8153,7 +8153,7 @@ 62.02753829956055, 440.3381042480469, 285.78955078125, - 596.3199310302734 + 596.3199462890625 ], "page": 6, "span": [ @@ -10514,9 +10514,9 @@ "prov": [ { "bbox": [ - 80.35525512695312, + 80.35527038574219, 496.5545349121094, - 267.0082092285156, + 267.00823974609375, 641.0637054443359 ], "page": 7, @@ -14214,10 +14214,10 @@ "prov": [ { "bbox": [ - 72.6590347290039, - 452.1459655761719, - 274.83465576171875, - 619.5191955566406 + 72.65901947021484, + 452.14599609375, + 274.8346862792969, + 619.5191650390625 ], "page": 8, "span": [ diff --git a/tests/data/groundtruth/docling_v1/2206.01062.pages.json b/tests/data/groundtruth/docling_v1/2206.01062.pages.json index b2c3758..1f59e4d 100644 --- a/tests/data/groundtruth/docling_v1/2206.01062.pages.json +++ b/tests/data/groundtruth/docling_v1/2206.01062.pages.json @@ -10621,7 +10621,7 @@ "b": 119.59558000000015, "coord_origin": "TOPLEFT" }, - "confidence": 0.8416302800178528, + "confidence": 0.8416303396224976, "cells": [ { "index": 0, @@ -10686,7 +10686,7 @@ "b": 180.24030000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.8637151718139648, + "confidence": 0.8637148141860962, "cells": [ { "index": 2, @@ -10801,7 +10801,7 @@ "b": 180.24030000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.8612664937973022, + "confidence": 0.8612663745880127, "cells": [ { "index": 6, @@ -10916,7 +10916,7 @@ "b": 180.24030000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.8760607242584229, + "confidence": 0.8760605454444885, "cells": [ { "index": 10, @@ -11031,7 +11031,7 @@ "b": 238.62531, "coord_origin": "TOPLEFT" }, - "confidence": 0.8319916129112244, + "confidence": 0.8319913148880005, "cells": [ { "index": 14, @@ -11146,7 +11146,7 @@ "b": 238.62531, "coord_origin": "TOPLEFT" }, - "confidence": 0.8027974367141724, + "confidence": 0.8027966022491455, "cells": [ { "index": 18, @@ -11261,7 +11261,7 @@ "b": 258.01202, "coord_origin": "TOPLEFT" }, - "confidence": 0.8876155018806458, + "confidence": 0.8876153826713562, "cells": [ { "index": 22, @@ -11301,7 +11301,7 @@ "b": 534.29318, "coord_origin": "TOPLEFT" }, - "confidence": 0.9823057055473328, + "confidence": 0.9823058247566223, "cells": [ { "index": 23, @@ -12471,7 +12471,7 @@ "b": 672.79189, "coord_origin": "TOPLEFT" }, - "confidence": 0.7107349038124084, + "confidence": 0.7107346653938293, "cells": [ { "index": 68, @@ -12731,7 +12731,7 @@ "b": 706.266891, "coord_origin": "TOPLEFT" }, - "confidence": 0.509588360786438, + "confidence": 0.5095885992050171, "cells": [ { "index": 76, @@ -12765,13 +12765,13 @@ "id": 20, "label": "picture", "bbox": { - "l": 323.408203125, + "l": 323.4081115722656, "t": 250.34873962402344, - "r": 553.2952270507812, - "b": 525.8507080078125, + "r": 553.295166015625, + "b": 525.8506469726562, "coord_origin": "TOPLEFT" }, - "confidence": 0.5910208821296692, + "confidence": 0.5910214781761169, "cells": [ { "index": 77, @@ -34322,7 +34322,7 @@ "b": 559.51524, "coord_origin": "TOPLEFT" }, - "confidence": 0.7793365120887756, + "confidence": 0.7793370485305786, "cells": [ { "index": 409, @@ -34427,7 +34427,7 @@ "b": 627.00117, "coord_origin": "TOPLEFT" }, - "confidence": 0.9509093761444092, + "confidence": 0.9509091973304749, "cells": [ { "index": 412, @@ -34492,7 +34492,7 @@ "b": 647.58609, "coord_origin": "TOPLEFT" }, - "confidence": 0.8721988797187805, + "confidence": 0.8721989393234253, "cells": [ { "index": 414, @@ -34532,7 +34532,7 @@ "b": 707.377029, "coord_origin": "TOPLEFT" }, - "confidence": 0.9455165863037109, + "confidence": 0.9455164670944214, "cells": [ { "index": 415, @@ -34747,7 +34747,7 @@ "b": 555.00003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8537883758544922, + "confidence": 0.8537886738777161, "cells": [ { "index": 423, @@ -34802,7 +34802,7 @@ "b": 119.59558000000015, "coord_origin": "TOPLEFT" }, - "confidence": 0.8416302800178528, + "confidence": 0.8416303396224976, "cells": [ { "index": 0, @@ -34873,7 +34873,7 @@ "b": 180.24030000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.8637151718139648, + "confidence": 0.8637148141860962, "cells": [ { "index": 2, @@ -34994,7 +34994,7 @@ "b": 180.24030000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.8612664937973022, + "confidence": 0.8612663745880127, "cells": [ { "index": 6, @@ -35115,7 +35115,7 @@ "b": 180.24030000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.8760607242584229, + "confidence": 0.8760605454444885, "cells": [ { "index": 10, @@ -35236,7 +35236,7 @@ "b": 238.62531, "coord_origin": "TOPLEFT" }, - "confidence": 0.8319916129112244, + "confidence": 0.8319913148880005, "cells": [ { "index": 14, @@ -35357,7 +35357,7 @@ "b": 238.62531, "coord_origin": "TOPLEFT" }, - "confidence": 0.8027974367141724, + "confidence": 0.8027966022491455, "cells": [ { "index": 18, @@ -35478,7 +35478,7 @@ "b": 258.01202, "coord_origin": "TOPLEFT" }, - "confidence": 0.8876155018806458, + "confidence": 0.8876153826713562, "cells": [ { "index": 22, @@ -35524,7 +35524,7 @@ "b": 534.29318, "coord_origin": "TOPLEFT" }, - "confidence": 0.9823057055473328, + "confidence": 0.9823058247566223, "cells": [ { "index": 23, @@ -36712,7 +36712,7 @@ "b": 672.79189, "coord_origin": "TOPLEFT" }, - "confidence": 0.7107349038124084, + "confidence": 0.7107346653938293, "cells": [ { "index": 68, @@ -36996,7 +36996,7 @@ "b": 706.266891, "coord_origin": "TOPLEFT" }, - "confidence": 0.509588360786438, + "confidence": 0.5095885992050171, "cells": [ { "index": 76, @@ -37036,13 +37036,13 @@ "id": 20, "label": "picture", "bbox": { - "l": 323.408203125, + "l": 323.4081115722656, "t": 250.34873962402344, - "r": 553.2952270507812, - "b": 525.8507080078125, + "r": 553.295166015625, + "b": 525.8506469726562, "coord_origin": "TOPLEFT" }, - "confidence": 0.5910208821296692, + "confidence": 0.5910214781761169, "cells": [ { "index": 77, @@ -58603,7 +58603,7 @@ "b": 559.51524, "coord_origin": "TOPLEFT" }, - "confidence": 0.7793365120887756, + "confidence": 0.7793370485305786, "cells": [ { "index": 409, @@ -58720,7 +58720,7 @@ "b": 627.00117, "coord_origin": "TOPLEFT" }, - "confidence": 0.9509093761444092, + "confidence": 0.9509091973304749, "cells": [ { "index": 412, @@ -58791,7 +58791,7 @@ "b": 647.58609, "coord_origin": "TOPLEFT" }, - "confidence": 0.8721988797187805, + "confidence": 0.8721989393234253, "cells": [ { "index": 414, @@ -58837,7 +58837,7 @@ "b": 707.377029, "coord_origin": "TOPLEFT" }, - "confidence": 0.9455165863037109, + "confidence": 0.9455164670944214, "cells": [ { "index": 415, @@ -59058,7 +59058,7 @@ "b": 555.00003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8537883758544922, + "confidence": 0.8537886738777161, "cells": [ { "index": 423, @@ -59106,7 +59106,7 @@ "b": 119.59558000000015, "coord_origin": "TOPLEFT" }, - "confidence": 0.8416302800178528, + "confidence": 0.8416303396224976, "cells": [ { "index": 0, @@ -59177,7 +59177,7 @@ "b": 180.24030000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.8637151718139648, + "confidence": 0.8637148141860962, "cells": [ { "index": 2, @@ -59298,7 +59298,7 @@ "b": 180.24030000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.8612664937973022, + "confidence": 0.8612663745880127, "cells": [ { "index": 6, @@ -59419,7 +59419,7 @@ "b": 180.24030000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.8760607242584229, + "confidence": 0.8760605454444885, "cells": [ { "index": 10, @@ -59540,7 +59540,7 @@ "b": 238.62531, "coord_origin": "TOPLEFT" }, - "confidence": 0.8319916129112244, + "confidence": 0.8319913148880005, "cells": [ { "index": 14, @@ -59661,7 +59661,7 @@ "b": 238.62531, "coord_origin": "TOPLEFT" }, - "confidence": 0.8027974367141724, + "confidence": 0.8027966022491455, "cells": [ { "index": 18, @@ -59782,7 +59782,7 @@ "b": 258.01202, "coord_origin": "TOPLEFT" }, - "confidence": 0.8876155018806458, + "confidence": 0.8876153826713562, "cells": [ { "index": 22, @@ -59828,7 +59828,7 @@ "b": 534.29318, "coord_origin": "TOPLEFT" }, - "confidence": 0.9823057055473328, + "confidence": 0.9823058247566223, "cells": [ { "index": 23, @@ -61016,7 +61016,7 @@ "b": 672.79189, "coord_origin": "TOPLEFT" }, - "confidence": 0.7107349038124084, + "confidence": 0.7107346653938293, "cells": [ { "index": 68, @@ -61300,7 +61300,7 @@ "b": 706.266891, "coord_origin": "TOPLEFT" }, - "confidence": 0.509588360786438, + "confidence": 0.5095885992050171, "cells": [ { "index": 76, @@ -61340,13 +61340,13 @@ "id": 20, "label": "picture", "bbox": { - "l": 323.408203125, + "l": 323.4081115722656, "t": 250.34873962402344, - "r": 553.2952270507812, - "b": 525.8507080078125, + "r": 553.295166015625, + "b": 525.8506469726562, "coord_origin": "TOPLEFT" }, - "confidence": 0.5910208821296692, + "confidence": 0.5910214781761169, "cells": [ { "index": 77, @@ -82907,7 +82907,7 @@ "b": 559.51524, "coord_origin": "TOPLEFT" }, - "confidence": 0.7793365120887756, + "confidence": 0.7793370485305786, "cells": [ { "index": 409, @@ -83024,7 +83024,7 @@ "b": 627.00117, "coord_origin": "TOPLEFT" }, - "confidence": 0.9509093761444092, + "confidence": 0.9509091973304749, "cells": [ { "index": 412, @@ -83095,7 +83095,7 @@ "b": 647.58609, "coord_origin": "TOPLEFT" }, - "confidence": 0.8721988797187805, + "confidence": 0.8721989393234253, "cells": [ { "index": 414, @@ -83141,7 +83141,7 @@ "b": 707.377029, "coord_origin": "TOPLEFT" }, - "confidence": 0.9455165863037109, + "confidence": 0.9455164670944214, "cells": [ { "index": 415, @@ -83364,7 +83364,7 @@ "b": 555.00003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8537883758544922, + "confidence": 0.8537886738777161, "cells": [ { "index": 423, @@ -87296,7 +87296,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.7682238221168518, + "confidence": 0.7682234048843384, "cells": [ { "index": 0, @@ -88581,7 +88581,7 @@ "b": 579.63217, "coord_origin": "TOPLEFT" }, - "confidence": 0.9795253276824951, + "confidence": 0.9795252084732056, "cells": [ { "index": 49, @@ -88846,7 +88846,7 @@ "b": 614.87418, "coord_origin": "TOPLEFT" }, - "confidence": 0.9687220454216003, + "confidence": 0.9687221646308899, "cells": [ { "index": 59, @@ -89241,7 +89241,7 @@ "b": 691.58617, "coord_origin": "TOPLEFT" }, - "confidence": 0.9447500109672546, + "confidence": 0.9447500705718994, "cells": [ { "index": 73, @@ -89356,7 +89356,7 @@ "b": 708.739891, "coord_origin": "TOPLEFT" }, - "confidence": 0.8584771752357483, + "confidence": 0.8584773540496826, "cells": [ { "index": 77, @@ -89396,7 +89396,7 @@ "b": 106.69713999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.7997146844863892, + "confidence": 0.7997149229049683, "cells": [ { "index": 78, @@ -89461,7 +89461,7 @@ "b": 161.49114999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9563499093055725, + "confidence": 0.9563500285148621, "cells": [ { "index": 80, @@ -89651,7 +89651,7 @@ "b": 220.18615999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9813903570175171, + "confidence": 0.9813902974128723, "cells": [ { "index": 87, @@ -89791,7 +89791,7 @@ "b": 307.85718, "coord_origin": "TOPLEFT" }, - "confidence": 0.9844217300415039, + "confidence": 0.9844218492507935, "cells": [ { "index": 92, @@ -90006,7 +90006,7 @@ "b": 331.51797, "coord_origin": "TOPLEFT" }, - "confidence": 0.9347459077835083, + "confidence": 0.9347460269927979, "cells": [ { "index": 100, @@ -90576,7 +90576,7 @@ "b": 575.629, "coord_origin": "TOPLEFT" }, - "confidence": 0.9331073760986328, + "confidence": 0.9331074357032776, "cells": [ { "index": 121, @@ -91486,7 +91486,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.7682238221168518, + "confidence": 0.7682234048843384, "cells": [ { "index": 0, @@ -92795,7 +92795,7 @@ "b": 579.63217, "coord_origin": "TOPLEFT" }, - "confidence": 0.9795253276824951, + "confidence": 0.9795252084732056, "cells": [ { "index": 49, @@ -93066,7 +93066,7 @@ "b": 614.87418, "coord_origin": "TOPLEFT" }, - "confidence": 0.9687220454216003, + "confidence": 0.9687221646308899, "cells": [ { "index": 59, @@ -93479,7 +93479,7 @@ "b": 691.58617, "coord_origin": "TOPLEFT" }, - "confidence": 0.9447500109672546, + "confidence": 0.9447500705718994, "cells": [ { "index": 73, @@ -93600,7 +93600,7 @@ "b": 708.739891, "coord_origin": "TOPLEFT" }, - "confidence": 0.8584771752357483, + "confidence": 0.8584773540496826, "cells": [ { "index": 77, @@ -93646,7 +93646,7 @@ "b": 106.69713999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.7997146844863892, + "confidence": 0.7997149229049683, "cells": [ { "index": 78, @@ -93717,7 +93717,7 @@ "b": 161.49114999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9563499093055725, + "confidence": 0.9563500285148621, "cells": [ { "index": 80, @@ -93913,7 +93913,7 @@ "b": 220.18615999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9813903570175171, + "confidence": 0.9813902974128723, "cells": [ { "index": 87, @@ -94059,7 +94059,7 @@ "b": 307.85718, "coord_origin": "TOPLEFT" }, - "confidence": 0.9844217300415039, + "confidence": 0.9844218492507935, "cells": [ { "index": 92, @@ -94280,7 +94280,7 @@ "b": 331.51797, "coord_origin": "TOPLEFT" }, - "confidence": 0.9347459077835083, + "confidence": 0.9347460269927979, "cells": [ { "index": 100, @@ -94868,7 +94868,7 @@ "b": 575.629, "coord_origin": "TOPLEFT" }, - "confidence": 0.9331073760986328, + "confidence": 0.9331074357032776, "cells": [ { "index": 121, @@ -97021,7 +97021,7 @@ "b": 579.63217, "coord_origin": "TOPLEFT" }, - "confidence": 0.9795253276824951, + "confidence": 0.9795252084732056, "cells": [ { "index": 49, @@ -97292,7 +97292,7 @@ "b": 614.87418, "coord_origin": "TOPLEFT" }, - "confidence": 0.9687220454216003, + "confidence": 0.9687221646308899, "cells": [ { "index": 59, @@ -97705,7 +97705,7 @@ "b": 691.58617, "coord_origin": "TOPLEFT" }, - "confidence": 0.9447500109672546, + "confidence": 0.9447500705718994, "cells": [ { "index": 73, @@ -97826,7 +97826,7 @@ "b": 708.739891, "coord_origin": "TOPLEFT" }, - "confidence": 0.8584771752357483, + "confidence": 0.8584773540496826, "cells": [ { "index": 77, @@ -97872,7 +97872,7 @@ "b": 106.69713999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.7997146844863892, + "confidence": 0.7997149229049683, "cells": [ { "index": 78, @@ -97943,7 +97943,7 @@ "b": 161.49114999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9563499093055725, + "confidence": 0.9563500285148621, "cells": [ { "index": 80, @@ -98139,7 +98139,7 @@ "b": 220.18615999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9813903570175171, + "confidence": 0.9813902974128723, "cells": [ { "index": 87, @@ -98285,7 +98285,7 @@ "b": 307.85718, "coord_origin": "TOPLEFT" }, - "confidence": 0.9844217300415039, + "confidence": 0.9844218492507935, "cells": [ { "index": 92, @@ -98506,7 +98506,7 @@ "b": 331.51797, "coord_origin": "TOPLEFT" }, - "confidence": 0.9347459077835083, + "confidence": 0.9347460269927979, "cells": [ { "index": 100, @@ -99094,7 +99094,7 @@ "b": 575.629, "coord_origin": "TOPLEFT" }, - "confidence": 0.9331073760986328, + "confidence": 0.9331074357032776, "cells": [ { "index": 121, @@ -100009,7 +100009,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.7682238221168518, + "confidence": 0.7682234048843384, "cells": [ { "index": 0, @@ -103516,7 +103516,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8919971585273743, + "confidence": 0.8919970393180847, "cells": [ { "index": 0, @@ -103556,7 +103556,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.9104517102241516, + "confidence": 0.910452127456665, "cells": [ { "index": 1, @@ -103591,12 +103591,12 @@ "label": "picture", "bbox": { "l": 88.33030700683594, - "t": 92.88652038574219, + "t": 92.88655090332031, "r": 263.7049560546875, - "b": 220.56826782226562, + "b": 220.5682373046875, "coord_origin": "TOPLEFT" }, - "confidence": 0.9698190689086914, + "confidence": 0.9698189496994019, "cells": [ { "index": 2, @@ -104392,7 +104392,7 @@ "b": 255.54724, "coord_origin": "TOPLEFT" }, - "confidence": 0.9425410628318787, + "confidence": 0.9425409436225891, "cells": [ { "index": 14, @@ -106017,7 +106017,7 @@ "b": 708.169891, "coord_origin": "TOPLEFT" }, - "confidence": 0.9048352241516113, + "confidence": 0.9048354029655457, "cells": [ { "index": 76, @@ -107647,7 +107647,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8919971585273743, + "confidence": 0.8919970393180847, "cells": [ { "index": 0, @@ -107693,7 +107693,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.9104517102241516, + "confidence": 0.910452127456665, "cells": [ { "index": 1, @@ -107734,12 +107734,12 @@ "label": "picture", "bbox": { "l": 88.33030700683594, - "t": 92.88652038574219, + "t": 92.88655090332031, "r": 263.7049560546875, - "b": 220.56826782226562, + "b": 220.5682373046875, "coord_origin": "TOPLEFT" }, - "confidence": 0.9698190689086914, + "confidence": 0.9698189496994019, "cells": [ { "index": 2, @@ -108545,7 +108545,7 @@ "b": 255.54724, "coord_origin": "TOPLEFT" }, - "confidence": 0.9425410628318787, + "confidence": 0.9425409436225891, "cells": [ { "index": 14, @@ -110200,7 +110200,7 @@ "b": 708.169891, "coord_origin": "TOPLEFT" }, - "confidence": 0.9048352241516113, + "confidence": 0.9048354029655457, "cells": [ { "index": 76, @@ -111848,12 +111848,12 @@ "label": "picture", "bbox": { "l": 88.33030700683594, - "t": 92.88652038574219, + "t": 92.88655090332031, "r": 263.7049560546875, - "b": 220.56826782226562, + "b": 220.5682373046875, "coord_origin": "TOPLEFT" }, - "confidence": 0.9698190689086914, + "confidence": 0.9698189496994019, "cells": [ { "index": 2, @@ -112659,7 +112659,7 @@ "b": 255.54724, "coord_origin": "TOPLEFT" }, - "confidence": 0.9425410628318787, + "confidence": 0.9425409436225891, "cells": [ { "index": 14, @@ -114314,7 +114314,7 @@ "b": 708.169891, "coord_origin": "TOPLEFT" }, - "confidence": 0.9048352241516113, + "confidence": 0.9048354029655457, "cells": [ { "index": 76, @@ -115967,7 +115967,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8919971585273743, + "confidence": 0.8919970393180847, "cells": [ { "index": 0, @@ -116013,7 +116013,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.9104517102241516, + "confidence": 0.910452127456665, "cells": [ { "index": 1, @@ -122120,7 +122120,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.7625049948692322, + "confidence": 0.7625044584274292, "cells": [ { "index": 0, @@ -122185,7 +122185,7 @@ "b": 115.34618999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.8906616568565369, + "confidence": 0.8906612396240234, "cells": [ { "index": 2, @@ -122270,12 +122270,12 @@ "label": "table", "bbox": { "l": 98.93103790283203, - "t": 137.47547912597656, + "t": 137.4755096435547, "r": 512.579833984375, - "b": 294.08148193359375, + "b": 294.08154296875, "coord_origin": "TOPLEFT" }, - "confidence": 0.9860090613365173, + "confidence": 0.9860089421272278, "cells": [ { "index": 5, @@ -132561,7 +132561,7 @@ "b": 606.31924, "coord_origin": "TOPLEFT" }, - "confidence": 0.810490071773529, + "confidence": 0.8104899525642395, "cells": [ { "index": 163, @@ -134601,7 +134601,7 @@ "b": 708.86689, "coord_origin": "TOPLEFT" }, - "confidence": 0.9080352783203125, + "confidence": 0.9080352187156677, "cells": [ { "index": 241, @@ -134636,9 +134636,9 @@ "label": "picture", "bbox": { "l": 53.05912780761719, - "t": 310.7912902832031, + "t": 310.79132080078125, "r": 295.8506164550781, - "b": 540.864013671875, + "b": 540.8641357421875, "coord_origin": "TOPLEFT" }, "confidence": 0.9847871661186218, @@ -134658,12 +134658,12 @@ "label": "table", "bbox": { "l": 98.93103790283203, - "t": 137.47547912597656, + "t": 137.4755096435547, "r": 512.579833984375, - "b": 294.08148193359375, + "b": 294.08154296875, "coord_origin": "TOPLEFT" }, - "confidence": 0.9860090613365173, + "confidence": 0.9860089421272278, "cells": [ { "index": 5, @@ -148153,7 +148153,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.7625049948692322, + "confidence": 0.7625044584274292, "cells": [ { "index": 0, @@ -148224,7 +148224,7 @@ "b": 115.34618999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.8906616568565369, + "confidence": 0.8906612396240234, "cells": [ { "index": 2, @@ -148315,12 +148315,12 @@ "label": "table", "bbox": { "l": 98.93103790283203, - "t": 137.47547912597656, + "t": 137.4755096435547, "r": 512.579833984375, - "b": 294.08148193359375, + "b": 294.08154296875, "coord_origin": "TOPLEFT" }, - "confidence": 0.9860090613365173, + "confidence": 0.9860089421272278, "cells": [ { "index": 5, @@ -161802,7 +161802,7 @@ "b": 606.31924, "coord_origin": "TOPLEFT" }, - "confidence": 0.810490071773529, + "confidence": 0.8104899525642395, "cells": [ { "index": 163, @@ -163878,7 +163878,7 @@ "b": 708.86689, "coord_origin": "TOPLEFT" }, - "confidence": 0.9080352783203125, + "confidence": 0.9080352187156677, "cells": [ { "index": 241, @@ -163919,9 +163919,9 @@ "label": "picture", "bbox": { "l": 53.05912780761719, - "t": 310.7912902832031, + "t": 310.79132080078125, "r": 295.8506164550781, - "b": 540.864013671875, + "b": 540.8641357421875, "coord_origin": "TOPLEFT" }, "confidence": 0.9847871661186218, @@ -163950,7 +163950,7 @@ "b": 115.34618999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.8906616568565369, + "confidence": 0.8906612396240234, "cells": [ { "index": 2, @@ -164041,12 +164041,12 @@ "label": "table", "bbox": { "l": 98.93103790283203, - "t": 137.47547912597656, + "t": 137.4755096435547, "r": 512.579833984375, - "b": 294.08148193359375, + "b": 294.08154296875, "coord_origin": "TOPLEFT" }, - "confidence": 0.9860090613365173, + "confidence": 0.9860089421272278, "cells": [ { "index": 5, @@ -177528,7 +177528,7 @@ "b": 606.31924, "coord_origin": "TOPLEFT" }, - "confidence": 0.810490071773529, + "confidence": 0.8104899525642395, "cells": [ { "index": 163, @@ -179604,7 +179604,7 @@ "b": 708.86689, "coord_origin": "TOPLEFT" }, - "confidence": 0.9080352783203125, + "confidence": 0.9080352187156677, "cells": [ { "index": 241, @@ -179645,9 +179645,9 @@ "label": "picture", "bbox": { "l": 53.05912780761719, - "t": 310.7912902832031, + "t": 310.79132080078125, "r": 295.8506164550781, - "b": 540.864013671875, + "b": 540.8641357421875, "coord_origin": "TOPLEFT" }, "confidence": 0.9847871661186218, @@ -179676,7 +179676,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.7625049948692322, + "confidence": 0.7625044584274292, "cells": [ { "index": 0, @@ -182683,7 +182683,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8877827525138855, + "confidence": 0.8877830505371094, "cells": [ { "index": 0, @@ -182723,7 +182723,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8534670472145081, + "confidence": 0.8534676432609558, "cells": [ { "index": 1, @@ -182763,7 +182763,7 @@ "b": 106.70612000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.9022762179374695, + "confidence": 0.9022756218910217, "cells": [ { "index": 2, @@ -182878,7 +182878,7 @@ "b": 249.16216999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9711344838142395, + "confidence": 0.97113436460495, "cells": [ { "index": 6, @@ -183433,7 +183433,7 @@ "b": 389.77313, "coord_origin": "TOPLEFT" }, - "confidence": 0.9691526293754578, + "confidence": 0.9691525101661682, "cells": [ { "index": 27, @@ -183673,7 +183673,7 @@ "b": 433.60016, "coord_origin": "TOPLEFT" }, - "confidence": 0.9591284990310669, + "confidence": 0.9591283798217773, "cells": [ { "index": 36, @@ -183913,7 +183913,7 @@ "b": 455.52713, "coord_origin": "TOPLEFT" }, - "confidence": 0.9413429498672485, + "confidence": 0.9413430094718933, "cells": [ { "index": 45, @@ -184128,7 +184128,7 @@ "b": 477.43518, "coord_origin": "TOPLEFT" }, - "confidence": 0.9426738023757935, + "confidence": 0.9426739811897278, "cells": [ { "index": 53, @@ -184358,7 +184358,7 @@ "b": 521.27118, "coord_origin": "TOPLEFT" }, - "confidence": 0.9544308185577393, + "confidence": 0.9544306993484497, "cells": [ { "index": 61, @@ -184978,7 +184978,7 @@ "b": 459.68084716796875, "coord_origin": "TOPLEFT" }, - "confidence": 0.7264115214347839, + "confidence": 0.7264108061790466, "cells": [ { "index": 84, @@ -185684,7 +185684,7 @@ "b": 503.88519, "coord_origin": "TOPLEFT" }, - "confidence": 0.8873711824417114, + "confidence": 0.887371838092804, "cells": [ { "index": 95, @@ -185774,7 +185774,7 @@ "b": 544.83118, "coord_origin": "TOPLEFT" }, - "confidence": 0.9611718654632568, + "confidence": 0.9611716270446777, "cells": [ { "index": 98, @@ -186294,7 +186294,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8877827525138855, + "confidence": 0.8877830505371094, "cells": [ { "index": 0, @@ -186340,7 +186340,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8534670472145081, + "confidence": 0.8534676432609558, "cells": [ { "index": 1, @@ -186386,7 +186386,7 @@ "b": 106.70612000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.9022762179374695, + "confidence": 0.9022756218910217, "cells": [ { "index": 2, @@ -186507,7 +186507,7 @@ "b": 249.16216999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9711344838142395, + "confidence": 0.97113436460495, "cells": [ { "index": 6, @@ -187074,7 +187074,7 @@ "b": 389.77313, "coord_origin": "TOPLEFT" }, - "confidence": 0.9691526293754578, + "confidence": 0.9691525101661682, "cells": [ { "index": 27, @@ -187320,7 +187320,7 @@ "b": 433.60016, "coord_origin": "TOPLEFT" }, - "confidence": 0.9591284990310669, + "confidence": 0.9591283798217773, "cells": [ { "index": 36, @@ -187566,7 +187566,7 @@ "b": 455.52713, "coord_origin": "TOPLEFT" }, - "confidence": 0.9413429498672485, + "confidence": 0.9413430094718933, "cells": [ { "index": 45, @@ -187787,7 +187787,7 @@ "b": 477.43518, "coord_origin": "TOPLEFT" }, - "confidence": 0.9426738023757935, + "confidence": 0.9426739811897278, "cells": [ { "index": 53, @@ -188029,7 +188029,7 @@ "b": 521.27118, "coord_origin": "TOPLEFT" }, - "confidence": 0.9544308185577393, + "confidence": 0.9544306993484497, "cells": [ { "index": 61, @@ -188667,7 +188667,7 @@ "b": 459.68084716796875, "coord_origin": "TOPLEFT" }, - "confidence": 0.7264115214347839, + "confidence": 0.7264108061790466, "cells": [ { "index": 84, @@ -189389,7 +189389,7 @@ "b": 503.88519, "coord_origin": "TOPLEFT" }, - "confidence": 0.8873711824417114, + "confidence": 0.887371838092804, "cells": [ { "index": 95, @@ -189485,7 +189485,7 @@ "b": 544.83118, "coord_origin": "TOPLEFT" }, - "confidence": 0.9611718654632568, + "confidence": 0.9611716270446777, "cells": [ { "index": 98, @@ -190004,7 +190004,7 @@ "b": 106.70612000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.9022762179374695, + "confidence": 0.9022756218910217, "cells": [ { "index": 2, @@ -190125,7 +190125,7 @@ "b": 249.16216999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9711344838142395, + "confidence": 0.97113436460495, "cells": [ { "index": 6, @@ -190692,7 +190692,7 @@ "b": 389.77313, "coord_origin": "TOPLEFT" }, - "confidence": 0.9691526293754578, + "confidence": 0.9691525101661682, "cells": [ { "index": 27, @@ -190938,7 +190938,7 @@ "b": 433.60016, "coord_origin": "TOPLEFT" }, - "confidence": 0.9591284990310669, + "confidence": 0.9591283798217773, "cells": [ { "index": 36, @@ -191184,7 +191184,7 @@ "b": 455.52713, "coord_origin": "TOPLEFT" }, - "confidence": 0.9413429498672485, + "confidence": 0.9413430094718933, "cells": [ { "index": 45, @@ -191405,7 +191405,7 @@ "b": 477.43518, "coord_origin": "TOPLEFT" }, - "confidence": 0.9426738023757935, + "confidence": 0.9426739811897278, "cells": [ { "index": 53, @@ -191647,7 +191647,7 @@ "b": 521.27118, "coord_origin": "TOPLEFT" }, - "confidence": 0.9544308185577393, + "confidence": 0.9544306993484497, "cells": [ { "index": 61, @@ -192285,7 +192285,7 @@ "b": 459.68084716796875, "coord_origin": "TOPLEFT" }, - "confidence": 0.7264115214347839, + "confidence": 0.7264108061790466, "cells": [ { "index": 84, @@ -193007,7 +193007,7 @@ "b": 503.88519, "coord_origin": "TOPLEFT" }, - "confidence": 0.8873711824417114, + "confidence": 0.887371838092804, "cells": [ { "index": 95, @@ -193103,7 +193103,7 @@ "b": 544.83118, "coord_origin": "TOPLEFT" }, - "confidence": 0.9611718654632568, + "confidence": 0.9611716270446777, "cells": [ { "index": 98, @@ -193622,7 +193622,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8877827525138855, + "confidence": 0.8877830505371094, "cells": [ { "index": 0, @@ -193668,7 +193668,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8534670472145081, + "confidence": 0.8534676432609558, "cells": [ { "index": 1, @@ -198750,7 +198750,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8662876486778259, + "confidence": 0.8662878274917603, "cells": [ { "index": 0, @@ -199100,7 +199100,7 @@ "label": "table", "bbox": { "l": 62.02753829956055, - "t": 195.68006896972656, + "t": 195.6800537109375, "r": 285.78955078125, "b": 351.6618957519531, "coord_origin": "TOPLEFT" @@ -205316,7 +205316,7 @@ "b": 260.0107727050781, "coord_origin": "TOPLEFT" }, - "confidence": 0.9782691597938538, + "confidence": 0.9782690405845642, "cells": [ { "index": 131, @@ -208040,7 +208040,7 @@ "label": "table", "bbox": { "l": 62.02753829956055, - "t": 195.68006896972656, + "t": 195.6800537109375, "r": 285.78955078125, "b": 351.6618957519531, "coord_origin": "TOPLEFT" @@ -214899,7 +214899,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8662876486778259, + "confidence": 0.8662878274917603, "cells": [ { "index": 0, @@ -215261,7 +215261,7 @@ "label": "table", "bbox": { "l": 62.02753829956055, - "t": 195.68006896972656, + "t": 195.6800537109375, "r": 285.78955078125, "b": 351.6618957519531, "coord_origin": "TOPLEFT" @@ -223125,7 +223125,7 @@ "b": 260.0107727050781, "coord_origin": "TOPLEFT" }, - "confidence": 0.9782691597938538, + "confidence": 0.9782690405845642, "cells": [ { "index": 131, @@ -226179,7 +226179,7 @@ "label": "table", "bbox": { "l": 62.02753829956055, - "t": 195.68006896972656, + "t": 195.6800537109375, "r": 285.78955078125, "b": 351.6618957519531, "coord_origin": "TOPLEFT" @@ -234043,7 +234043,7 @@ "b": 260.0107727050781, "coord_origin": "TOPLEFT" }, - "confidence": 0.9782691597938538, + "confidence": 0.9782690405845642, "cells": [ { "index": 131, @@ -236806,7 +236806,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8662876486778259, + "confidence": 0.8662878274917603, "cells": [ { "index": 0, @@ -242263,7 +242263,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.9316118955612183, + "confidence": 0.9316116571426392, "cells": [ { "index": 0, @@ -242343,7 +242343,7 @@ "b": 128.22313999999994, "coord_origin": "TOPLEFT" }, - "confidence": 0.8296934366226196, + "confidence": 0.8296923041343689, "cells": [ { "index": 2, @@ -242452,9 +242452,9 @@ "id": 4, "label": "table", "bbox": { - "l": 80.35525512695312, + "l": 80.35527038574219, "t": 150.93629455566406, - "r": 267.0082092285156, + "r": 267.00823974609375, "b": 295.4454650878906, "coord_origin": "TOPLEFT" }, @@ -246699,7 +246699,7 @@ "b": 329.879, "coord_origin": "TOPLEFT" }, - "confidence": 0.9555686116218567, + "confidence": 0.9555687308311462, "cells": [ { "index": 71, @@ -247709,7 +247709,7 @@ "b": 128.22321, "coord_origin": "TOPLEFT" }, - "confidence": 0.8736215829849243, + "confidence": 0.8736217617988586, "cells": [ { "index": 109, @@ -251530,7 +251530,7 @@ "b": 416.49017, "coord_origin": "TOPLEFT" }, - "confidence": 0.9740146994590759, + "confidence": 0.9740145802497864, "cells": [ { "index": 171, @@ -251945,7 +251945,7 @@ "b": 439.70398, "coord_origin": "TOPLEFT" }, - "confidence": 0.9562516808509827, + "confidence": 0.9562518000602722, "cells": [ { "index": 187, @@ -252440,7 +252440,7 @@ "b": 708.640137, "coord_origin": "TOPLEFT" }, - "confidence": 0.9872549772262573, + "confidence": 0.9872550964355469, "cells": [ { "index": 205, @@ -252707,9 +252707,9 @@ "id": 4, "label": "table", "bbox": { - "l": 80.35525512695312, + "l": 80.35527038574219, "t": 150.93629455566406, - "r": 267.0082092285156, + "r": 267.00823974609375, "b": 295.4454650878906, "coord_origin": "TOPLEFT" }, @@ -263103,7 +263103,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.9316118955612183, + "confidence": 0.9316116571426392, "cells": [ { "index": 0, @@ -263195,7 +263195,7 @@ "b": 128.22313999999994, "coord_origin": "TOPLEFT" }, - "confidence": 0.8296934366226196, + "confidence": 0.8296923041343689, "cells": [ { "index": 2, @@ -263310,9 +263310,9 @@ "id": 4, "label": "table", "bbox": { - "l": 80.35525512695312, + "l": 80.35527038574219, "t": 150.93629455566406, - "r": 267.0082092285156, + "r": 267.00823974609375, "b": 295.4454650878906, "coord_origin": "TOPLEFT" }, @@ -268882,7 +268882,7 @@ "b": 329.879, "coord_origin": "TOPLEFT" }, - "confidence": 0.9555686116218567, + "confidence": 0.9555687308311462, "cells": [ { "index": 71, @@ -269916,7 +269916,7 @@ "b": 128.22321, "coord_origin": "TOPLEFT" }, - "confidence": 0.8736215829849243, + "confidence": 0.8736217617988586, "cells": [ { "index": 109, @@ -274903,7 +274903,7 @@ "b": 416.49017, "coord_origin": "TOPLEFT" }, - "confidence": 0.9740146994590759, + "confidence": 0.9740145802497864, "cells": [ { "index": 171, @@ -275324,7 +275324,7 @@ "b": 439.70398, "coord_origin": "TOPLEFT" }, - "confidence": 0.9562516808509827, + "confidence": 0.9562518000602722, "cells": [ { "index": 187, @@ -275837,7 +275837,7 @@ "b": 708.640137, "coord_origin": "TOPLEFT" }, - "confidence": 0.9872549772262573, + "confidence": 0.9872550964355469, "cells": [ { "index": 205, @@ -276110,7 +276110,7 @@ "b": 128.22313999999994, "coord_origin": "TOPLEFT" }, - "confidence": 0.8296934366226196, + "confidence": 0.8296923041343689, "cells": [ { "index": 2, @@ -276225,9 +276225,9 @@ "id": 4, "label": "table", "bbox": { - "l": 80.35525512695312, + "l": 80.35527038574219, "t": 150.93629455566406, - "r": 267.0082092285156, + "r": 267.00823974609375, "b": 295.4454650878906, "coord_origin": "TOPLEFT" }, @@ -281797,7 +281797,7 @@ "b": 329.879, "coord_origin": "TOPLEFT" }, - "confidence": 0.9555686116218567, + "confidence": 0.9555687308311462, "cells": [ { "index": 71, @@ -282831,7 +282831,7 @@ "b": 128.22321, "coord_origin": "TOPLEFT" }, - "confidence": 0.8736215829849243, + "confidence": 0.8736217617988586, "cells": [ { "index": 109, @@ -287818,7 +287818,7 @@ "b": 416.49017, "coord_origin": "TOPLEFT" }, - "confidence": 0.9740146994590759, + "confidence": 0.9740145802497864, "cells": [ { "index": 171, @@ -288239,7 +288239,7 @@ "b": 439.70398, "coord_origin": "TOPLEFT" }, - "confidence": 0.9562516808509827, + "confidence": 0.9562518000602722, "cells": [ { "index": 187, @@ -288752,7 +288752,7 @@ "b": 708.640137, "coord_origin": "TOPLEFT" }, - "confidence": 0.9872549772262573, + "confidence": 0.9872550964355469, "cells": [ { "index": 205, @@ -289025,7 +289025,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.9316118955612183, + "confidence": 0.9316116571426392, "cells": [ { "index": 0, @@ -294478,7 +294478,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.7984216809272766, + "confidence": 0.7984210848808289, "cells": [ { "index": 0, @@ -294702,10 +294702,10 @@ "id": 0, "label": "table", "bbox": { - "l": 72.6590347290039, - "t": 172.48080444335938, - "r": 274.83465576171875, - "b": 339.8540344238281, + "l": 72.65901947021484, + "t": 172.4808349609375, + "r": 274.8346862792969, + "b": 339.85400390625, "coord_origin": "TOPLEFT" }, "confidence": 0.9892616271972656, @@ -299569,7 +299569,7 @@ "b": 615.37001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9574698805809021, + "confidence": 0.9574697613716125, "cells": [ { "index": 103, @@ -299609,7 +299609,7 @@ "b": 705.350174, "coord_origin": "TOPLEFT" }, - "confidence": 0.9859886169433594, + "confidence": 0.9859885573387146, "cells": [ { "index": 104, @@ -299889,7 +299889,7 @@ "b": 186.14917000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.985493004322052, + "confidence": 0.9854928851127625, "cells": [ { "index": 114, @@ -300344,7 +300344,7 @@ "b": 317.65616000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.9676101207733154, + "confidence": 0.9676100015640259, "cells": [ { "index": 131, @@ -300434,7 +300434,7 @@ "b": 345.40097, "coord_origin": "TOPLEFT" }, - "confidence": 0.9378752708435059, + "confidence": 0.9378753900527954, "cells": [ { "index": 134, @@ -300639,7 +300639,7 @@ "b": 403.04287999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9480945467948914, + "confidence": 0.9480944871902466, "cells": [ { "index": 141, @@ -300829,7 +300829,7 @@ "b": 426.94689999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9257517457008362, + "confidence": 0.9257519841194153, "cells": [ { "index": 148, @@ -300944,7 +300944,7 @@ "b": 458.8269, "coord_origin": "TOPLEFT" }, - "confidence": 0.9270977973937988, + "confidence": 0.9270976781845093, "cells": [ { "index": 152, @@ -301134,7 +301134,7 @@ "b": 490.70792, "coord_origin": "TOPLEFT" }, - "confidence": 0.9290012121200562, + "confidence": 0.9290013313293457, "cells": [ { "index": 159, @@ -301324,7 +301324,7 @@ "b": 514.6248800000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.927480161190033, + "confidence": 0.9274798035621643, "cells": [ { "index": 166, @@ -301489,7 +301489,7 @@ "b": 554.46889, "coord_origin": "TOPLEFT" }, - "confidence": 0.9426893591880798, + "confidence": 0.9426894783973694, "cells": [ { "index": 172, @@ -301679,7 +301679,7 @@ "b": 578.38586, "coord_origin": "TOPLEFT" }, - "confidence": 0.9139686226844788, + "confidence": 0.9139688611030579, "cells": [ { "index": 179, @@ -302174,7 +302174,7 @@ "b": 650.1168700000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9127691984176636, + "confidence": 0.9127686023712158, "cells": [ { "index": 197, @@ -302339,7 +302339,7 @@ "b": 674.01989, "coord_origin": "TOPLEFT" }, - "confidence": 0.9142459630966187, + "confidence": 0.914246141910553, "cells": [ { "index": 203, @@ -302504,7 +302504,7 @@ "b": 705.900894, "coord_origin": "TOPLEFT" }, - "confidence": 0.889543354511261, + "confidence": 0.8895430564880371, "cells": [ { "index": 209, @@ -302646,10 +302646,10 @@ "id": 0, "label": "table", "bbox": { - "l": 72.6590347290039, - "t": 172.48080444335938, - "r": 274.83465576171875, - "b": 339.8540344238281, + "l": 72.65901947021484, + "t": 172.4808349609375, + "r": 274.8346862792969, + "b": 339.85400390625, "coord_origin": "TOPLEFT" }, "confidence": 0.9892616271972656, @@ -307902,7 +307902,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.7984216809272766, + "confidence": 0.7984210848808289, "cells": [ { "index": 0, @@ -308138,10 +308138,10 @@ "id": 0, "label": "table", "bbox": { - "l": 72.6590347290039, - "t": 172.48080444335938, - "r": 274.83465576171875, - "b": 339.8540344238281, + "l": 72.65901947021484, + "t": 172.4808349609375, + "r": 274.8346862792969, + "b": 339.85400390625, "coord_origin": "TOPLEFT" }, "confidence": 0.9892616271972656, @@ -314278,7 +314278,7 @@ "b": 615.37001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9574698805809021, + "confidence": 0.9574697613716125, "cells": [ { "index": 103, @@ -314324,7 +314324,7 @@ "b": 705.350174, "coord_origin": "TOPLEFT" }, - "confidence": 0.9859886169433594, + "confidence": 0.9859885573387146, "cells": [ { "index": 104, @@ -314616,7 +314616,7 @@ "b": 186.14917000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.985493004322052, + "confidence": 0.9854928851127625, "cells": [ { "index": 114, @@ -315083,7 +315083,7 @@ "b": 317.65616000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.9676101207733154, + "confidence": 0.9676100015640259, "cells": [ { "index": 131, @@ -315179,7 +315179,7 @@ "b": 345.40097, "coord_origin": "TOPLEFT" }, - "confidence": 0.9378752708435059, + "confidence": 0.9378753900527954, "cells": [ { "index": 134, @@ -315396,7 +315396,7 @@ "b": 403.04287999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9480945467948914, + "confidence": 0.9480944871902466, "cells": [ { "index": 141, @@ -315592,7 +315592,7 @@ "b": 426.94689999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9257517457008362, + "confidence": 0.9257519841194153, "cells": [ { "index": 148, @@ -315713,7 +315713,7 @@ "b": 458.8269, "coord_origin": "TOPLEFT" }, - "confidence": 0.9270977973937988, + "confidence": 0.9270976781845093, "cells": [ { "index": 152, @@ -315909,7 +315909,7 @@ "b": 490.70792, "coord_origin": "TOPLEFT" }, - "confidence": 0.9290012121200562, + "confidence": 0.9290013313293457, "cells": [ { "index": 159, @@ -316105,7 +316105,7 @@ "b": 514.6248800000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.927480161190033, + "confidence": 0.9274798035621643, "cells": [ { "index": 166, @@ -316276,7 +316276,7 @@ "b": 554.46889, "coord_origin": "TOPLEFT" }, - "confidence": 0.9426893591880798, + "confidence": 0.9426894783973694, "cells": [ { "index": 172, @@ -316472,7 +316472,7 @@ "b": 578.38586, "coord_origin": "TOPLEFT" }, - "confidence": 0.9139686226844788, + "confidence": 0.9139688611030579, "cells": [ { "index": 179, @@ -316985,7 +316985,7 @@ "b": 650.1168700000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9127691984176636, + "confidence": 0.9127686023712158, "cells": [ { "index": 197, @@ -317156,7 +317156,7 @@ "b": 674.01989, "coord_origin": "TOPLEFT" }, - "confidence": 0.9142459630966187, + "confidence": 0.914246141910553, "cells": [ { "index": 203, @@ -317327,7 +317327,7 @@ "b": 705.900894, "coord_origin": "TOPLEFT" }, - "confidence": 0.889543354511261, + "confidence": 0.8895430564880371, "cells": [ { "index": 209, @@ -317640,10 +317640,10 @@ "id": 0, "label": "table", "bbox": { - "l": 72.6590347290039, - "t": 172.48080444335938, - "r": 274.83465576171875, - "b": 339.8540344238281, + "l": 72.65901947021484, + "t": 172.4808349609375, + "r": 274.8346862792969, + "b": 339.85400390625, "coord_origin": "TOPLEFT" }, "confidence": 0.9892616271972656, @@ -323780,7 +323780,7 @@ "b": 615.37001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9574698805809021, + "confidence": 0.9574697613716125, "cells": [ { "index": 103, @@ -323826,7 +323826,7 @@ "b": 705.350174, "coord_origin": "TOPLEFT" }, - "confidence": 0.9859886169433594, + "confidence": 0.9859885573387146, "cells": [ { "index": 104, @@ -324118,7 +324118,7 @@ "b": 186.14917000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.985493004322052, + "confidence": 0.9854928851127625, "cells": [ { "index": 114, @@ -324585,7 +324585,7 @@ "b": 317.65616000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.9676101207733154, + "confidence": 0.9676100015640259, "cells": [ { "index": 131, @@ -324681,7 +324681,7 @@ "b": 345.40097, "coord_origin": "TOPLEFT" }, - "confidence": 0.9378752708435059, + "confidence": 0.9378753900527954, "cells": [ { "index": 134, @@ -324898,7 +324898,7 @@ "b": 403.04287999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9480945467948914, + "confidence": 0.9480944871902466, "cells": [ { "index": 141, @@ -325094,7 +325094,7 @@ "b": 426.94689999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9257517457008362, + "confidence": 0.9257519841194153, "cells": [ { "index": 148, @@ -325215,7 +325215,7 @@ "b": 458.8269, "coord_origin": "TOPLEFT" }, - "confidence": 0.9270977973937988, + "confidence": 0.9270976781845093, "cells": [ { "index": 152, @@ -325411,7 +325411,7 @@ "b": 490.70792, "coord_origin": "TOPLEFT" }, - "confidence": 0.9290012121200562, + "confidence": 0.9290013313293457, "cells": [ { "index": 159, @@ -325607,7 +325607,7 @@ "b": 514.6248800000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.927480161190033, + "confidence": 0.9274798035621643, "cells": [ { "index": 166, @@ -325778,7 +325778,7 @@ "b": 554.46889, "coord_origin": "TOPLEFT" }, - "confidence": 0.9426893591880798, + "confidence": 0.9426894783973694, "cells": [ { "index": 172, @@ -325974,7 +325974,7 @@ "b": 578.38586, "coord_origin": "TOPLEFT" }, - "confidence": 0.9139686226844788, + "confidence": 0.9139688611030579, "cells": [ { "index": 179, @@ -326487,7 +326487,7 @@ "b": 650.1168700000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9127691984176636, + "confidence": 0.9127686023712158, "cells": [ { "index": 197, @@ -326658,7 +326658,7 @@ "b": 674.01989, "coord_origin": "TOPLEFT" }, - "confidence": 0.9142459630966187, + "confidence": 0.914246141910553, "cells": [ { "index": 203, @@ -326829,7 +326829,7 @@ "b": 705.900894, "coord_origin": "TOPLEFT" }, - "confidence": 0.889543354511261, + "confidence": 0.8895430564880371, "cells": [ { "index": 209, @@ -326977,7 +326977,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.7984216809272766, + "confidence": 0.7984210848808289, "cells": [ { "index": 0, @@ -329134,7 +329134,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8021690249443054, + "confidence": 0.8021690845489502, "cells": [ { "index": 0, @@ -329174,7 +329174,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8429245352745056, + "confidence": 0.8429243564605713, "cells": [ { "index": 1, @@ -329214,7 +329214,7 @@ "b": 442.1351318359375, "coord_origin": "TOPLEFT" }, - "confidence": 0.8352116942405701, + "confidence": 0.8352119326591492, "cells": [ { "index": 2, @@ -329945,7 +329945,7 @@ "b": 448.26483, "coord_origin": "TOPLEFT" }, - "confidence": 0.6248989701271057, + "confidence": 0.6248990893363953, "cells": [ { "index": 13, @@ -330210,7 +330210,7 @@ "b": 505.83124, "coord_origin": "TOPLEFT" }, - "confidence": 0.8651240468025208, + "confidence": 0.8651238679885864, "cells": [ { "index": 23, @@ -330325,7 +330325,7 @@ "b": 549.5199, "coord_origin": "TOPLEFT" }, - "confidence": 0.8445900082588196, + "confidence": 0.8445895910263062, "cells": [ { "index": 27, @@ -330415,7 +330415,7 @@ "b": 573.43686, "coord_origin": "TOPLEFT" }, - "confidence": 0.8561117053031921, + "confidence": 0.8561118245124817, "cells": [ { "index": 30, @@ -330555,7 +330555,7 @@ "b": 589.37787, "coord_origin": "TOPLEFT" }, - "confidence": 0.8615185618400574, + "confidence": 0.861518383026123, "cells": [ { "index": 35, @@ -330695,7 +330695,7 @@ "b": 613.2809, "coord_origin": "TOPLEFT" }, - "confidence": 0.859420895576477, + "confidence": 0.8594212532043457, "cells": [ { "index": 40, @@ -330810,7 +330810,7 @@ "b": 629.22089, "coord_origin": "TOPLEFT" }, - "confidence": 0.8385182023048401, + "confidence": 0.8385178446769714, "cells": [ { "index": 44, @@ -331115,7 +331115,7 @@ "b": 708.92189, "coord_origin": "TOPLEFT" }, - "confidence": 0.7421631217002869, + "confidence": 0.7421633005142212, "cells": [ { "index": 55, @@ -331330,7 +331330,7 @@ "b": 541.5499, "coord_origin": "TOPLEFT" }, - "confidence": 0.9088895320892334, + "confidence": 0.9088893532752991, "cells": [ { "index": 63, @@ -331420,7 +331420,7 @@ "b": 565.4599000000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9247174859046936, + "confidence": 0.9247176647186279, "cells": [ { "index": 66, @@ -331535,7 +331535,7 @@ "b": 597.3478700000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.8956930637359619, + "confidence": 0.8956933617591858, "cells": [ { "index": 70, @@ -331750,7 +331750,7 @@ "b": 613.28787, "coord_origin": "TOPLEFT" }, - "confidence": 0.8972970843315125, + "confidence": 0.8972972631454468, "cells": [ { "index": 78, @@ -331905,7 +331905,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8021690249443054, + "confidence": 0.8021690845489502, "cells": [ { "index": 0, @@ -331951,7 +331951,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8429245352745056, + "confidence": 0.8429243564605713, "cells": [ { "index": 1, @@ -331997,7 +331997,7 @@ "b": 442.1351318359375, "coord_origin": "TOPLEFT" }, - "confidence": 0.8352116942405701, + "confidence": 0.8352119326591492, "cells": [ { "index": 2, @@ -332738,7 +332738,7 @@ "b": 448.26483, "coord_origin": "TOPLEFT" }, - "confidence": 0.6248989701271057, + "confidence": 0.6248990893363953, "cells": [ { "index": 13, @@ -333009,7 +333009,7 @@ "b": 505.83124, "coord_origin": "TOPLEFT" }, - "confidence": 0.8651240468025208, + "confidence": 0.8651238679885864, "cells": [ { "index": 23, @@ -333130,7 +333130,7 @@ "b": 549.5199, "coord_origin": "TOPLEFT" }, - "confidence": 0.8445900082588196, + "confidence": 0.8445895910263062, "cells": [ { "index": 27, @@ -333226,7 +333226,7 @@ "b": 573.43686, "coord_origin": "TOPLEFT" }, - "confidence": 0.8561117053031921, + "confidence": 0.8561118245124817, "cells": [ { "index": 30, @@ -333372,7 +333372,7 @@ "b": 589.37787, "coord_origin": "TOPLEFT" }, - "confidence": 0.8615185618400574, + "confidence": 0.861518383026123, "cells": [ { "index": 35, @@ -333518,7 +333518,7 @@ "b": 613.2809, "coord_origin": "TOPLEFT" }, - "confidence": 0.859420895576477, + "confidence": 0.8594212532043457, "cells": [ { "index": 40, @@ -333639,7 +333639,7 @@ "b": 629.22089, "coord_origin": "TOPLEFT" }, - "confidence": 0.8385182023048401, + "confidence": 0.8385178446769714, "cells": [ { "index": 44, @@ -333956,7 +333956,7 @@ "b": 708.92189, "coord_origin": "TOPLEFT" }, - "confidence": 0.7421631217002869, + "confidence": 0.7421633005142212, "cells": [ { "index": 55, @@ -334177,7 +334177,7 @@ "b": 541.5499, "coord_origin": "TOPLEFT" }, - "confidence": 0.9088895320892334, + "confidence": 0.9088893532752991, "cells": [ { "index": 63, @@ -334273,7 +334273,7 @@ "b": 565.4599000000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9247174859046936, + "confidence": 0.9247176647186279, "cells": [ { "index": 66, @@ -334394,7 +334394,7 @@ "b": 597.3478700000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.8956930637359619, + "confidence": 0.8956933617591858, "cells": [ { "index": 70, @@ -334615,7 +334615,7 @@ "b": 613.28787, "coord_origin": "TOPLEFT" }, - "confidence": 0.8972970843315125, + "confidence": 0.8972972631454468, "cells": [ { "index": 78, @@ -334763,7 +334763,7 @@ "b": 442.1351318359375, "coord_origin": "TOPLEFT" }, - "confidence": 0.8352116942405701, + "confidence": 0.8352119326591492, "cells": [ { "index": 2, @@ -335504,7 +335504,7 @@ "b": 448.26483, "coord_origin": "TOPLEFT" }, - "confidence": 0.6248989701271057, + "confidence": 0.6248990893363953, "cells": [ { "index": 13, @@ -335775,7 +335775,7 @@ "b": 505.83124, "coord_origin": "TOPLEFT" }, - "confidence": 0.8651240468025208, + "confidence": 0.8651238679885864, "cells": [ { "index": 23, @@ -335896,7 +335896,7 @@ "b": 549.5199, "coord_origin": "TOPLEFT" }, - "confidence": 0.8445900082588196, + "confidence": 0.8445895910263062, "cells": [ { "index": 27, @@ -335992,7 +335992,7 @@ "b": 573.43686, "coord_origin": "TOPLEFT" }, - "confidence": 0.8561117053031921, + "confidence": 0.8561118245124817, "cells": [ { "index": 30, @@ -336138,7 +336138,7 @@ "b": 589.37787, "coord_origin": "TOPLEFT" }, - "confidence": 0.8615185618400574, + "confidence": 0.861518383026123, "cells": [ { "index": 35, @@ -336284,7 +336284,7 @@ "b": 613.2809, "coord_origin": "TOPLEFT" }, - "confidence": 0.859420895576477, + "confidence": 0.8594212532043457, "cells": [ { "index": 40, @@ -336405,7 +336405,7 @@ "b": 629.22089, "coord_origin": "TOPLEFT" }, - "confidence": 0.8385182023048401, + "confidence": 0.8385178446769714, "cells": [ { "index": 44, @@ -336722,7 +336722,7 @@ "b": 708.92189, "coord_origin": "TOPLEFT" }, - "confidence": 0.7421631217002869, + "confidence": 0.7421633005142212, "cells": [ { "index": 55, @@ -336943,7 +336943,7 @@ "b": 541.5499, "coord_origin": "TOPLEFT" }, - "confidence": 0.9088895320892334, + "confidence": 0.9088893532752991, "cells": [ { "index": 63, @@ -337039,7 +337039,7 @@ "b": 565.4599000000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9247174859046936, + "confidence": 0.9247176647186279, "cells": [ { "index": 66, @@ -337160,7 +337160,7 @@ "b": 597.3478700000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.8956930637359619, + "confidence": 0.8956933617591858, "cells": [ { "index": 70, @@ -337381,7 +337381,7 @@ "b": 613.28787, "coord_origin": "TOPLEFT" }, - "confidence": 0.8972970843315125, + "confidence": 0.8972972631454468, "cells": [ { "index": 78, @@ -337529,7 +337529,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8021690249443054, + "confidence": 0.8021690845489502, "cells": [ { "index": 0, @@ -337575,7 +337575,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8429245352745056, + "confidence": 0.8429243564605713, "cells": [ { "index": 1, diff --git a/tests/data/groundtruth/docling_v1/2305.03393v1-pg9.pages.json b/tests/data/groundtruth/docling_v1/2305.03393v1-pg9.pages.json index 3bca0d5..fefe130 100644 --- a/tests/data/groundtruth/docling_v1/2305.03393v1-pg9.pages.json +++ b/tests/data/groundtruth/docling_v1/2305.03393v1-pg9.pages.json @@ -2686,7 +2686,7 @@ "b": 102.78223000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8858679533004761, + "confidence": 0.8858681321144104, "cells": [ { "index": 1, @@ -2816,7 +2816,7 @@ "b": 179.20818999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9577404260635376, + "confidence": 0.957740306854248, "cells": [ { "index": 5, @@ -13628,7 +13628,7 @@ "b": 102.78223000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8858679533004761, + "confidence": 0.8858681321144104, "cells": [ { "index": 1, @@ -13770,7 +13770,7 @@ "b": 179.20818999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9577404260635376, + "confidence": 0.957740306854248, "cells": [ { "index": 5, @@ -20153,7 +20153,7 @@ "b": 179.20818999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9577404260635376, + "confidence": 0.957740306854248, "cells": [ { "index": 5, @@ -26486,7 +26486,7 @@ "b": 102.78223000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8858679533004761, + "confidence": 0.8858681321144104, "cells": [ { "index": 1, diff --git a/tests/data/groundtruth/docling_v1/2305.03393v1.json b/tests/data/groundtruth/docling_v1/2305.03393v1.json index 140b25b..5d98775 100644 --- a/tests/data/groundtruth/docling_v1/2305.03393v1.json +++ b/tests/data/groundtruth/docling_v1/2305.03393v1.json @@ -2498,9 +2498,9 @@ { "bbox": [ 148.45364379882812, - 366.1537780761719, + 366.1538391113281, 464.3608093261719, - 583.6257629394531 + 583.6257476806641 ], "page": 2, "span": [ @@ -2541,9 +2541,9 @@ "prov": [ { "bbox": [ - 164.65028381347656, + 164.6503143310547, 511.6590576171875, - 449.5505676269531, + 449.550537109375, 628.2029113769531 ], "page": 7, @@ -2563,7 +2563,7 @@ "prov": [ { "bbox": [ - 140.70968627929688, + 140.70960998535156, 198.32281494140625, 472.73382568359375, 283.9361572265625 @@ -2585,10 +2585,10 @@ "prov": [ { "bbox": [ - 162.67430114746094, - 128.78643798828125, - 451.70062255859375, - 347.37744140625 + 162.67434692382812, + 128.786376953125, + 451.70068359375, + 347.3774719238281 ], "page": 10, "span": [ @@ -2607,9 +2607,9 @@ "prov": [ { "bbox": [ - 168.39285278320312, + 168.3928985595703, 157.99432373046875, - 447.35137939453125, + 447.3513488769531, 610.0334930419922 ], "page": 11, @@ -4065,7 +4065,7 @@ 143.6376495361328, 528.7375183105469, 470.8485412597656, - 635.6522979736328 + 635.6522827148438 ], "page": 10, "span": [ diff --git a/tests/data/groundtruth/docling_v1/2305.03393v1.pages.json b/tests/data/groundtruth/docling_v1/2305.03393v1.pages.json index 3bb80df..6e589f6 100644 --- a/tests/data/groundtruth/docling_v1/2305.03393v1.pages.json +++ b/tests/data/groundtruth/docling_v1/2305.03393v1.pages.json @@ -1896,7 +1896,7 @@ "b": 146.51409999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.8918349742889404, + "confidence": 0.8918347954750061, "cells": [ { "index": 0, @@ -1961,7 +1961,7 @@ "b": 236.27752999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.48445820808410645, + "confidence": 0.4844588339328766, "cells": [ { "index": 2, @@ -2925,7 +2925,7 @@ "b": 200.18591000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.7918068766593933, + "confidence": 0.7918062210083008, "cells": [ { "index": 2, @@ -3815,7 +3815,7 @@ "b": 204.38073999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.5015263557434082, + "confidence": 0.5015257596969604, "cells": [ { "index": 30, @@ -3855,7 +3855,7 @@ "b": 225.27368, "coord_origin": "TOPLEFT" }, - "confidence": 0.6310867667198181, + "confidence": 0.631085991859436, "cells": [ { "index": 38, @@ -3895,7 +3895,7 @@ "b": 236.27752999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.6924149990081787, + "confidence": 0.6924147605895996, "cells": [ { "index": 39, @@ -4517,7 +4517,7 @@ "b": 532.68808, "coord_origin": "TOPLEFT" }, - "confidence": 0.9392016530036926, + "confidence": 0.9392015337944031, "cells": [ { "index": 62, @@ -4772,7 +4772,7 @@ "b": 664.85453, "coord_origin": "TOPLEFT" }, - "confidence": 0.9696458578109741, + "confidence": 0.9696459770202637, "cells": [ { "index": 71, @@ -4862,7 +4862,7 @@ "b": 555.00003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8899643421173096, + "confidence": 0.8899640440940857, "cells": [ { "index": 74, @@ -4917,7 +4917,7 @@ "b": 146.51409999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.8918349742889404, + "confidence": 0.8918347954750061, "cells": [ { "index": 0, @@ -4988,7 +4988,7 @@ "b": 236.27752999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.48445820808410645, + "confidence": 0.4844588339328766, "cells": [ { "index": 2, @@ -5952,7 +5952,7 @@ "b": 200.18591000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.7918068766593933, + "confidence": 0.7918062210083008, "cells": [ { "index": 2, @@ -6842,7 +6842,7 @@ "b": 204.38073999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.5015263557434082, + "confidence": 0.5015257596969604, "cells": [ { "index": 30, @@ -6882,7 +6882,7 @@ "b": 225.27368, "coord_origin": "TOPLEFT" }, - "confidence": 0.6310867667198181, + "confidence": 0.631085991859436, "cells": [ { "index": 38, @@ -6922,7 +6922,7 @@ "b": 236.27752999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.6924149990081787, + "confidence": 0.6924147605895996, "cells": [ { "index": 39, @@ -7562,7 +7562,7 @@ "b": 532.68808, "coord_origin": "TOPLEFT" }, - "confidence": 0.9392016530036926, + "confidence": 0.9392015337944031, "cells": [ { "index": 62, @@ -7829,7 +7829,7 @@ "b": 664.85453, "coord_origin": "TOPLEFT" }, - "confidence": 0.9696458578109741, + "confidence": 0.9696459770202637, "cells": [ { "index": 71, @@ -7925,7 +7925,7 @@ "b": 555.00003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8899643421173096, + "confidence": 0.8899640440940857, "cells": [ { "index": 74, @@ -7973,7 +7973,7 @@ "b": 146.51409999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.8918349742889404, + "confidence": 0.8918347954750061, "cells": [ { "index": 0, @@ -8044,7 +8044,7 @@ "b": 236.27752999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.48445820808410645, + "confidence": 0.4844588339328766, "cells": [ { "index": 2, @@ -9008,7 +9008,7 @@ "b": 200.18591000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.7918068766593933, + "confidence": 0.7918062210083008, "cells": [ { "index": 2, @@ -9898,7 +9898,7 @@ "b": 204.38073999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.5015263557434082, + "confidence": 0.5015257596969604, "cells": [ { "index": 30, @@ -9938,7 +9938,7 @@ "b": 225.27368, "coord_origin": "TOPLEFT" }, - "confidence": 0.6310867667198181, + "confidence": 0.631085991859436, "cells": [ { "index": 38, @@ -9978,7 +9978,7 @@ "b": 236.27752999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.6924149990081787, + "confidence": 0.6924147605895996, "cells": [ { "index": 39, @@ -10618,7 +10618,7 @@ "b": 532.68808, "coord_origin": "TOPLEFT" }, - "confidence": 0.9392016530036926, + "confidence": 0.9392015337944031, "cells": [ { "index": 62, @@ -10885,7 +10885,7 @@ "b": 664.85453, "coord_origin": "TOPLEFT" }, - "confidence": 0.9696458578109741, + "confidence": 0.9696459770202637, "cells": [ { "index": 71, @@ -10983,7 +10983,7 @@ "b": 555.00003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8899643421173096, + "confidence": 0.8899640440940857, "cells": [ { "index": 74, @@ -14490,7 +14490,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8580349683761597, + "confidence": 0.8580352067947388, "cells": [ { "index": 0, @@ -14530,7 +14530,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9076642990112305, + "confidence": 0.9076644778251648, "cells": [ { "index": 1, @@ -14595,7 +14595,7 @@ "b": 200.22058000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.8939083218574524, + "confidence": 0.8939085006713867, "cells": [ { "index": 3, @@ -14830,9 +14830,9 @@ "label": "picture", "bbox": { "l": 148.45364379882812, - "t": 208.37423706054688, + "t": 208.37425231933594, "r": 464.3608093261719, - "b": 425.8462219238281, + "b": 425.8461608886719, "coord_origin": "TOPLEFT" }, "confidence": 0.9688959121704102, @@ -21741,7 +21741,7 @@ "b": 520.88669, "coord_origin": "TOPLEFT" }, - "confidence": 0.950499951839447, + "confidence": 0.9504998326301575, "cells": [ { "index": 118, @@ -22286,7 +22286,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8580349683761597, + "confidence": 0.8580352067947388, "cells": [ { "index": 0, @@ -22332,7 +22332,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9076642990112305, + "confidence": 0.9076644778251648, "cells": [ { "index": 1, @@ -22403,7 +22403,7 @@ "b": 200.22058000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.8939083218574524, + "confidence": 0.8939085006713867, "cells": [ { "index": 3, @@ -22644,9 +22644,9 @@ "label": "picture", "bbox": { "l": 148.45364379882812, - "t": 208.37423706054688, + "t": 208.37425231933594, "r": 464.3608093261719, - "b": 425.8462219238281, + "b": 425.8461608886719, "coord_origin": "TOPLEFT" }, "confidence": 0.9688959121704102, @@ -29565,7 +29565,7 @@ "b": 520.88669, "coord_origin": "TOPLEFT" }, - "confidence": 0.950499951839447, + "confidence": 0.9504998326301575, "cells": [ { "index": 118, @@ -30109,7 +30109,7 @@ "b": 200.22058000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.8939083218574524, + "confidence": 0.8939085006713867, "cells": [ { "index": 3, @@ -30350,9 +30350,9 @@ "label": "picture", "bbox": { "l": 148.45364379882812, - "t": 208.37423706054688, + "t": 208.37425231933594, "r": 464.3608093261719, - "b": 425.8462219238281, + "b": 425.8461608886719, "coord_origin": "TOPLEFT" }, "confidence": 0.9688959121704102, @@ -37271,7 +37271,7 @@ "b": 520.88669, "coord_origin": "TOPLEFT" }, - "confidence": 0.950499951839447, + "confidence": 0.9504998326301575, "cells": [ { "index": 118, @@ -37815,7 +37815,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8580349683761597, + "confidence": 0.8580352067947388, "cells": [ { "index": 0, @@ -37861,7 +37861,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9076642990112305, + "confidence": 0.9076644778251648, "cells": [ { "index": 1, @@ -39183,7 +39183,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8773486614227295, + "confidence": 0.8773490786552429, "cells": [ { "index": 1, @@ -39993,7 +39993,7 @@ "b": 472.65634, "coord_origin": "TOPLEFT" }, - "confidence": 0.9439423680305481, + "confidence": 0.9439422488212585, "cells": [ { "index": 31, @@ -40509,7 +40509,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8773486614227295, + "confidence": 0.8773490786552429, "cells": [ { "index": 1, @@ -41343,7 +41343,7 @@ "b": 472.65634, "coord_origin": "TOPLEFT" }, - "confidence": 0.9439423680305481, + "confidence": 0.9439422488212585, "cells": [ { "index": 31, @@ -42600,7 +42600,7 @@ "b": 472.65634, "coord_origin": "TOPLEFT" }, - "confidence": 0.9439423680305481, + "confidence": 0.9439422488212585, "cells": [ { "index": 31, @@ -43115,7 +43115,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8773486614227295, + "confidence": 0.8773490786552429, "cells": [ { "index": 1, @@ -44677,7 +44677,7 @@ "b": 259.23792000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.9467443823814392, + "confidence": 0.9467443227767944, "cells": [ { "index": 3, @@ -44992,7 +44992,7 @@ "b": 486.6467, "coord_origin": "TOPLEFT" }, - "confidence": 0.929087221622467, + "confidence": 0.9290876388549805, "cells": [ { "index": 15, @@ -45922,7 +45922,7 @@ "b": 616.11823, "coord_origin": "TOPLEFT" }, - "confidence": 0.9393903017044067, + "confidence": 0.9393905401229858, "cells": [ { "index": 51, @@ -45987,7 +45987,7 @@ "b": 664.85566, "coord_origin": "TOPLEFT" }, - "confidence": 0.9692807197570801, + "confidence": 0.9692806005477905, "cells": [ { "index": 53, @@ -46209,7 +46209,7 @@ "b": 259.23792000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.9467443823814392, + "confidence": 0.9467443227767944, "cells": [ { "index": 3, @@ -46530,7 +46530,7 @@ "b": 486.6467, "coord_origin": "TOPLEFT" }, - "confidence": 0.929087221622467, + "confidence": 0.9290876388549805, "cells": [ { "index": 15, @@ -47472,7 +47472,7 @@ "b": 616.11823, "coord_origin": "TOPLEFT" }, - "confidence": 0.9393903017044067, + "confidence": 0.9393905401229858, "cells": [ { "index": 51, @@ -47543,7 +47543,7 @@ "b": 664.85566, "coord_origin": "TOPLEFT" }, - "confidence": 0.9692807197570801, + "confidence": 0.9692806005477905, "cells": [ { "index": 53, @@ -47641,7 +47641,7 @@ "b": 259.23792000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.9467443823814392, + "confidence": 0.9467443227767944, "cells": [ { "index": 3, @@ -47962,7 +47962,7 @@ "b": 486.6467, "coord_origin": "TOPLEFT" }, - "confidence": 0.929087221622467, + "confidence": 0.9290876388549805, "cells": [ { "index": 15, @@ -48904,7 +48904,7 @@ "b": 616.11823, "coord_origin": "TOPLEFT" }, - "confidence": 0.9393903017044067, + "confidence": 0.9393905401229858, "cells": [ { "index": 51, @@ -48975,7 +48975,7 @@ "b": 664.85566, "coord_origin": "TOPLEFT" }, - "confidence": 0.9692807197570801, + "confidence": 0.9692806005477905, "cells": [ { "index": 53, @@ -50516,7 +50516,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8696112036705017, + "confidence": 0.8696111440658569, "cells": [ { "index": 1, @@ -51021,7 +51021,7 @@ "b": 229.21178999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.8472551703453064, + "confidence": 0.8472548127174377, "cells": [ { "index": 20, @@ -51086,7 +51086,7 @@ "b": 532.42059, "coord_origin": "TOPLEFT" }, - "confidence": 0.9844799637794495, + "confidence": 0.9844798445701599, "cells": [ { "index": 22, @@ -51551,7 +51551,7 @@ "b": 580.7056, "coord_origin": "TOPLEFT" }, - "confidence": 0.978394627571106, + "confidence": 0.9783945083618164, "cells": [ { "index": 40, @@ -51856,7 +51856,7 @@ "b": 340.2304992675781, "coord_origin": "TOPLEFT" }, - "confidence": 0.9387977123260498, + "confidence": 0.9387975931167603, "cells": [], "children": [] } @@ -51931,7 +51931,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8696112036705017, + "confidence": 0.8696111440658569, "cells": [ { "index": 1, @@ -52448,7 +52448,7 @@ "b": 229.21178999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.8472551703453064, + "confidence": 0.8472548127174377, "cells": [ { "index": 20, @@ -52519,7 +52519,7 @@ "b": 532.42059, "coord_origin": "TOPLEFT" }, - "confidence": 0.9844799637794495, + "confidence": 0.9844798445701599, "cells": [ { "index": 22, @@ -52990,7 +52990,7 @@ "b": 580.7056, "coord_origin": "TOPLEFT" }, - "confidence": 0.978394627571106, + "confidence": 0.9783945083618164, "cells": [ { "index": 40, @@ -53307,7 +53307,7 @@ "b": 340.2304992675781, "coord_origin": "TOPLEFT" }, - "confidence": 0.9387977123260498, + "confidence": 0.9387975931167603, "cells": [], "children": [] }, @@ -53804,7 +53804,7 @@ "b": 229.21178999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.8472551703453064, + "confidence": 0.8472548127174377, "cells": [ { "index": 20, @@ -53875,7 +53875,7 @@ "b": 532.42059, "coord_origin": "TOPLEFT" }, - "confidence": 0.9844799637794495, + "confidence": 0.9844798445701599, "cells": [ { "index": 22, @@ -54346,7 +54346,7 @@ "b": 580.7056, "coord_origin": "TOPLEFT" }, - "confidence": 0.978394627571106, + "confidence": 0.9783945083618164, "cells": [ { "index": 40, @@ -54663,7 +54663,7 @@ "b": 340.2304992675781, "coord_origin": "TOPLEFT" }, - "confidence": 0.9387977123260498, + "confidence": 0.9387975931167603, "cells": [], "children": [] }, @@ -54735,7 +54735,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8696112036705017, + "confidence": 0.8696111440658569, "cells": [ { "index": 1, @@ -56292,7 +56292,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8378868699073792, + "confidence": 0.8378866910934448, "cells": [ { "index": 0, @@ -56332,7 +56332,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8919177651405334, + "confidence": 0.891918420791626, "cells": [ { "index": 1, @@ -56462,7 +56462,7 @@ "b": 295.74191, "coord_origin": "TOPLEFT" }, - "confidence": 0.9856827855110168, + "confidence": 0.9856826663017273, "cells": [ { "index": 5, @@ -56852,7 +56852,7 @@ "b": 331.19949, "coord_origin": "TOPLEFT" }, - "confidence": 0.957028865814209, + "confidence": 0.9570288062095642, "cells": [ { "index": 20, @@ -56917,7 +56917,7 @@ "b": 441.59985, "coord_origin": "TOPLEFT" }, - "confidence": 0.9879323840141296, + "confidence": 0.9879322648048401, "cells": [ { "index": 22, @@ -57197,7 +57197,7 @@ "b": 521.7058400000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9671263098716736, + "confidence": 0.967126190662384, "cells": [ { "index": 32, @@ -57287,7 +57287,7 @@ "b": 534.29883, "coord_origin": "TOPLEFT" }, - "confidence": 0.8555866479873657, + "confidence": 0.8555870056152344, "cells": [ { "index": 35, @@ -57442,7 +57442,7 @@ "b": 581.32483, "coord_origin": "TOPLEFT" }, - "confidence": 0.9319931268692017, + "confidence": 0.9319930076599121, "cells": [ { "index": 40, @@ -57582,7 +57582,7 @@ "b": 605.87383, "coord_origin": "TOPLEFT" }, - "confidence": 0.9438967704772949, + "confidence": 0.9438966512680054, "cells": [ { "index": 45, @@ -57722,7 +57722,7 @@ "b": 618.46683, "coord_origin": "TOPLEFT" }, - "confidence": 0.9036387801170349, + "confidence": 0.9036386609077454, "cells": [ { "index": 50, @@ -57837,7 +57837,7 @@ "b": 631.06082, "coord_origin": "TOPLEFT" }, - "confidence": 0.8636871576309204, + "confidence": 0.8636865019798279, "cells": [ { "index": 54, @@ -57952,7 +57952,7 @@ "b": 664.85484, "coord_origin": "TOPLEFT" }, - "confidence": 0.9443338513374329, + "confidence": 0.9443334937095642, "cells": [ { "index": 58, @@ -58032,7 +58032,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8378868699073792, + "confidence": 0.8378866910934448, "cells": [ { "index": 0, @@ -58078,7 +58078,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8919177651405334, + "confidence": 0.891918420791626, "cells": [ { "index": 1, @@ -58220,7 +58220,7 @@ "b": 295.74191, "coord_origin": "TOPLEFT" }, - "confidence": 0.9856827855110168, + "confidence": 0.9856826663017273, "cells": [ { "index": 5, @@ -58616,7 +58616,7 @@ "b": 331.19949, "coord_origin": "TOPLEFT" }, - "confidence": 0.957028865814209, + "confidence": 0.9570288062095642, "cells": [ { "index": 20, @@ -58687,7 +58687,7 @@ "b": 441.59985, "coord_origin": "TOPLEFT" }, - "confidence": 0.9879323840141296, + "confidence": 0.9879322648048401, "cells": [ { "index": 22, @@ -58979,7 +58979,7 @@ "b": 521.7058400000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9671263098716736, + "confidence": 0.967126190662384, "cells": [ { "index": 32, @@ -59075,7 +59075,7 @@ "b": 534.29883, "coord_origin": "TOPLEFT" }, - "confidence": 0.8555866479873657, + "confidence": 0.8555870056152344, "cells": [ { "index": 35, @@ -59242,7 +59242,7 @@ "b": 581.32483, "coord_origin": "TOPLEFT" }, - "confidence": 0.9319931268692017, + "confidence": 0.9319930076599121, "cells": [ { "index": 40, @@ -59388,7 +59388,7 @@ "b": 605.87383, "coord_origin": "TOPLEFT" }, - "confidence": 0.9438967704772949, + "confidence": 0.9438966512680054, "cells": [ { "index": 45, @@ -59534,7 +59534,7 @@ "b": 618.46683, "coord_origin": "TOPLEFT" }, - "confidence": 0.9036387801170349, + "confidence": 0.9036386609077454, "cells": [ { "index": 50, @@ -59655,7 +59655,7 @@ "b": 631.06082, "coord_origin": "TOPLEFT" }, - "confidence": 0.8636871576309204, + "confidence": 0.8636865019798279, "cells": [ { "index": 54, @@ -59776,7 +59776,7 @@ "b": 664.85484, "coord_origin": "TOPLEFT" }, - "confidence": 0.9443338513374329, + "confidence": 0.9443334937095642, "cells": [ { "index": 58, @@ -59920,7 +59920,7 @@ "b": 295.74191, "coord_origin": "TOPLEFT" }, - "confidence": 0.9856827855110168, + "confidence": 0.9856826663017273, "cells": [ { "index": 5, @@ -60316,7 +60316,7 @@ "b": 331.19949, "coord_origin": "TOPLEFT" }, - "confidence": 0.957028865814209, + "confidence": 0.9570288062095642, "cells": [ { "index": 20, @@ -60387,7 +60387,7 @@ "b": 441.59985, "coord_origin": "TOPLEFT" }, - "confidence": 0.9879323840141296, + "confidence": 0.9879322648048401, "cells": [ { "index": 22, @@ -60679,7 +60679,7 @@ "b": 521.7058400000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9671263098716736, + "confidence": 0.967126190662384, "cells": [ { "index": 32, @@ -60775,7 +60775,7 @@ "b": 534.29883, "coord_origin": "TOPLEFT" }, - "confidence": 0.8555866479873657, + "confidence": 0.8555870056152344, "cells": [ { "index": 35, @@ -60942,7 +60942,7 @@ "b": 581.32483, "coord_origin": "TOPLEFT" }, - "confidence": 0.9319931268692017, + "confidence": 0.9319930076599121, "cells": [ { "index": 40, @@ -61088,7 +61088,7 @@ "b": 605.87383, "coord_origin": "TOPLEFT" }, - "confidence": 0.9438967704772949, + "confidence": 0.9438966512680054, "cells": [ { "index": 45, @@ -61234,7 +61234,7 @@ "b": 618.46683, "coord_origin": "TOPLEFT" }, - "confidence": 0.9036387801170349, + "confidence": 0.9036386609077454, "cells": [ { "index": 50, @@ -61355,7 +61355,7 @@ "b": 631.06082, "coord_origin": "TOPLEFT" }, - "confidence": 0.8636871576309204, + "confidence": 0.8636865019798279, "cells": [ { "index": 54, @@ -61476,7 +61476,7 @@ "b": 664.85484, "coord_origin": "TOPLEFT" }, - "confidence": 0.9443338513374329, + "confidence": 0.9443334937095642, "cells": [ { "index": 58, @@ -61549,7 +61549,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8378868699073792, + "confidence": 0.8378866910934448, "cells": [ { "index": 0, @@ -61595,7 +61595,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8919177651405334, + "confidence": 0.891918420791626, "cells": [ { "index": 1, @@ -64577,7 +64577,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.932651162147522, + "confidence": 0.9326512813568115, "cells": [ { "index": 0, @@ -64617,7 +64617,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8749732375144958, + "confidence": 0.8749731183052063, "cells": [ { "index": 1, @@ -64657,7 +64657,7 @@ "b": 155.84966999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9333080053329468, + "confidence": 0.9333084225654602, "cells": [ { "index": 2, @@ -64766,13 +64766,13 @@ "id": 12, "label": "picture", "bbox": { - "l": 164.65028381347656, + "l": 164.6503143310547, "t": 163.79708862304688, - "r": 449.5505676269531, + "r": 449.550537109375, "b": 280.3409423828125, "coord_origin": "TOPLEFT" }, - "confidence": 0.7868534922599792, + "confidence": 0.786853551864624, "cells": [ { "index": 6, @@ -68671,7 +68671,7 @@ "b": 279.02288999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.5250625610351562, + "confidence": 0.5250615477561951, "cells": [ { "index": 60, @@ -69258,7 +69258,7 @@ "b": 314.10275, "coord_origin": "TOPLEFT" }, - "confidence": 0.9233023524284363, + "confidence": 0.9233025312423706, "cells": [ { "index": 75, @@ -69323,7 +69323,7 @@ "b": 334.04474, "coord_origin": "TOPLEFT" }, - "confidence": 0.9169168472290039, + "confidence": 0.9169170260429382, "cells": [ { "index": 77, @@ -69363,7 +69363,7 @@ "b": 367.93375, "coord_origin": "TOPLEFT" }, - "confidence": 0.9588112235069275, + "confidence": 0.958811342716217, "cells": [ { "index": 78, @@ -69593,7 +69593,7 @@ "b": 403.80475, "coord_origin": "TOPLEFT" }, - "confidence": 0.6506174206733704, + "confidence": 0.6506175994873047, "cells": [ { "index": 86, @@ -69683,7 +69683,7 @@ "b": 439.67371, "coord_origin": "TOPLEFT" }, - "confidence": 0.7247239947319031, + "confidence": 0.7247226238250732, "cells": [ { "index": 89, @@ -69773,7 +69773,7 @@ "b": 451.63269, "coord_origin": "TOPLEFT" }, - "confidence": 0.9259927272796631, + "confidence": 0.9259928464889526, "cells": [ { "index": 92, @@ -69978,7 +69978,7 @@ "b": 499.45969, "coord_origin": "TOPLEFT" }, - "confidence": 0.9617829918861389, + "confidence": 0.961783230304718, "cells": [ { "index": 99, @@ -70093,7 +70093,7 @@ "b": 640.9416699999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9785562753677368, + "confidence": 0.9785561561584473, "cells": [ { "index": 103, @@ -70383,7 +70383,7 @@ "b": 664.8546699999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9590610861778259, + "confidence": 0.9590608477592468, "cells": [ { "index": 114, @@ -70463,7 +70463,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.932651162147522, + "confidence": 0.9326512813568115, "cells": [ { "index": 0, @@ -70509,7 +70509,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8749732375144958, + "confidence": 0.8749731183052063, "cells": [ { "index": 1, @@ -70555,7 +70555,7 @@ "b": 155.84966999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9333080053329468, + "confidence": 0.9333084225654602, "cells": [ { "index": 2, @@ -70670,13 +70670,13 @@ "id": 12, "label": "picture", "bbox": { - "l": 164.65028381347656, + "l": 164.6503143310547, "t": 163.79708862304688, - "r": 449.5505676269531, + "r": 449.550537109375, "b": 280.3409423828125, "coord_origin": "TOPLEFT" }, - "confidence": 0.7868534922599792, + "confidence": 0.786853551864624, "cells": [ { "index": 6, @@ -74575,7 +74575,7 @@ "b": 279.02288999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.5250625610351562, + "confidence": 0.5250615477561951, "cells": [ { "index": 60, @@ -75172,7 +75172,7 @@ "b": 314.10275, "coord_origin": "TOPLEFT" }, - "confidence": 0.9233023524284363, + "confidence": 0.9233025312423706, "cells": [ { "index": 75, @@ -75243,7 +75243,7 @@ "b": 334.04474, "coord_origin": "TOPLEFT" }, - "confidence": 0.9169168472290039, + "confidence": 0.9169170260429382, "cells": [ { "index": 77, @@ -75289,7 +75289,7 @@ "b": 367.93375, "coord_origin": "TOPLEFT" }, - "confidence": 0.9588112235069275, + "confidence": 0.958811342716217, "cells": [ { "index": 78, @@ -75531,7 +75531,7 @@ "b": 403.80475, "coord_origin": "TOPLEFT" }, - "confidence": 0.6506174206733704, + "confidence": 0.6506175994873047, "cells": [ { "index": 86, @@ -75627,7 +75627,7 @@ "b": 439.67371, "coord_origin": "TOPLEFT" }, - "confidence": 0.7247239947319031, + "confidence": 0.7247226238250732, "cells": [ { "index": 89, @@ -75723,7 +75723,7 @@ "b": 451.63269, "coord_origin": "TOPLEFT" }, - "confidence": 0.9259927272796631, + "confidence": 0.9259928464889526, "cells": [ { "index": 92, @@ -75940,7 +75940,7 @@ "b": 499.45969, "coord_origin": "TOPLEFT" }, - "confidence": 0.9617829918861389, + "confidence": 0.961783230304718, "cells": [ { "index": 99, @@ -76061,7 +76061,7 @@ "b": 640.9416699999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9785562753677368, + "confidence": 0.9785561561584473, "cells": [ { "index": 103, @@ -76357,7 +76357,7 @@ "b": 664.8546699999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9590610861778259, + "confidence": 0.9590608477592468, "cells": [ { "index": 114, @@ -76430,7 +76430,7 @@ "b": 155.84966999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9333080053329468, + "confidence": 0.9333084225654602, "cells": [ { "index": 2, @@ -76545,13 +76545,13 @@ "id": 12, "label": "picture", "bbox": { - "l": 164.65028381347656, + "l": 164.6503143310547, "t": 163.79708862304688, - "r": 449.5505676269531, + "r": 449.550537109375, "b": 280.3409423828125, "coord_origin": "TOPLEFT" }, - "confidence": 0.7868534922599792, + "confidence": 0.786853551864624, "cells": [ { "index": 6, @@ -80450,7 +80450,7 @@ "b": 279.02288999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.5250625610351562, + "confidence": 0.5250615477561951, "cells": [ { "index": 60, @@ -81047,7 +81047,7 @@ "b": 314.10275, "coord_origin": "TOPLEFT" }, - "confidence": 0.9233023524284363, + "confidence": 0.9233025312423706, "cells": [ { "index": 75, @@ -81118,7 +81118,7 @@ "b": 334.04474, "coord_origin": "TOPLEFT" }, - "confidence": 0.9169168472290039, + "confidence": 0.9169170260429382, "cells": [ { "index": 77, @@ -81164,7 +81164,7 @@ "b": 367.93375, "coord_origin": "TOPLEFT" }, - "confidence": 0.9588112235069275, + "confidence": 0.958811342716217, "cells": [ { "index": 78, @@ -81406,7 +81406,7 @@ "b": 403.80475, "coord_origin": "TOPLEFT" }, - "confidence": 0.6506174206733704, + "confidence": 0.6506175994873047, "cells": [ { "index": 86, @@ -81502,7 +81502,7 @@ "b": 439.67371, "coord_origin": "TOPLEFT" }, - "confidence": 0.7247239947319031, + "confidence": 0.7247226238250732, "cells": [ { "index": 89, @@ -81598,7 +81598,7 @@ "b": 451.63269, "coord_origin": "TOPLEFT" }, - "confidence": 0.9259927272796631, + "confidence": 0.9259928464889526, "cells": [ { "index": 92, @@ -81815,7 +81815,7 @@ "b": 499.45969, "coord_origin": "TOPLEFT" }, - "confidence": 0.9617829918861389, + "confidence": 0.961783230304718, "cells": [ { "index": 99, @@ -81936,7 +81936,7 @@ "b": 640.9416699999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9785562753677368, + "confidence": 0.9785561561584473, "cells": [ { "index": 103, @@ -82232,7 +82232,7 @@ "b": 664.8546699999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9590610861778259, + "confidence": 0.9590608477592468, "cells": [ { "index": 114, @@ -82305,7 +82305,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.932651162147522, + "confidence": 0.9326512813568115, "cells": [ { "index": 0, @@ -82351,7 +82351,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8749732375144958, + "confidence": 0.8749731183052063, "cells": [ { "index": 1, @@ -85133,7 +85133,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8301323056221008, + "confidence": 0.8301324844360352, "cells": [ { "index": 0, @@ -85238,7 +85238,7 @@ "b": 139.68579, "coord_origin": "TOPLEFT" }, - "confidence": 0.9464744925498962, + "confidence": 0.9464746713638306, "cells": [ { "index": 3, @@ -85633,7 +85633,7 @@ "b": 331.73239000000007, "coord_origin": "TOPLEFT" }, - "confidence": 0.95152747631073, + "confidence": 0.9515273571014404, "cells": [ { "index": 17, @@ -86072,7 +86072,7 @@ "id": 6, "label": "picture", "bbox": { - "l": 140.70968627929688, + "l": 140.70960998535156, "t": 508.0638427734375, "r": 472.73382568359375, "b": 593.6771850585938, @@ -90774,7 +90774,7 @@ "b": 664.8547599999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.951270341873169, + "confidence": 0.9512702226638794, "cells": [ { "index": 105, @@ -90904,7 +90904,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8301323056221008, + "confidence": 0.8301324844360352, "cells": [ { "index": 0, @@ -91021,7 +91021,7 @@ "b": 139.68579, "coord_origin": "TOPLEFT" }, - "confidence": 0.9464744925498962, + "confidence": 0.9464746713638306, "cells": [ { "index": 3, @@ -91434,7 +91434,7 @@ "b": 331.73239000000007, "coord_origin": "TOPLEFT" }, - "confidence": 0.95152747631073, + "confidence": 0.9515273571014404, "cells": [ { "index": 17, @@ -91891,7 +91891,7 @@ "id": 6, "label": "picture", "bbox": { - "l": 140.70968627929688, + "l": 140.70960998535156, "t": 508.0638427734375, "r": 472.73382568359375, "b": 593.6771850585938, @@ -96603,7 +96603,7 @@ "b": 664.8547599999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.951270341873169, + "confidence": 0.9512702226638794, "cells": [ { "index": 105, @@ -96726,7 +96726,7 @@ "b": 139.68579, "coord_origin": "TOPLEFT" }, - "confidence": 0.9464744925498962, + "confidence": 0.9464746713638306, "cells": [ { "index": 3, @@ -97139,7 +97139,7 @@ "b": 331.73239000000007, "coord_origin": "TOPLEFT" }, - "confidence": 0.95152747631073, + "confidence": 0.9515273571014404, "cells": [ { "index": 17, @@ -97596,7 +97596,7 @@ "id": 6, "label": "picture", "bbox": { - "l": 140.70968627929688, + "l": 140.70960998535156, "t": 508.0638427734375, "r": 472.73382568359375, "b": 593.6771850585938, @@ -102308,7 +102308,7 @@ "b": 664.8547599999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.951270341873169, + "confidence": 0.9512702226638794, "cells": [ { "index": 105, @@ -102431,7 +102431,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8301323056221008, + "confidence": 0.8301324844360352, "cells": [ { "index": 0, @@ -105184,7 +105184,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9373378753662109, + "confidence": 0.9373378157615662, "cells": [ { "index": 0, @@ -105224,7 +105224,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8857625722885132, + "confidence": 0.8857624530792236, "cells": [ { "index": 1, @@ -105634,7 +105634,7 @@ "b": 327.0408, "coord_origin": "TOPLEFT" }, - "confidence": 0.9570781588554382, + "confidence": 0.9570783376693726, "cells": [ { "index": 15, @@ -116120,7 +116120,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9373378753662109, + "confidence": 0.9373378157615662, "cells": [ { "index": 0, @@ -116166,7 +116166,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8857625722885132, + "confidence": 0.8857624530792236, "cells": [ { "index": 1, @@ -116600,7 +116600,7 @@ "b": 327.0408, "coord_origin": "TOPLEFT" }, - "confidence": 0.9570781588554382, + "confidence": 0.9570783376693726, "cells": [ { "index": 15, @@ -122983,7 +122983,7 @@ "b": 327.0408, "coord_origin": "TOPLEFT" }, - "confidence": 0.9570781588554382, + "confidence": 0.9570783376693726, "cells": [ { "index": 15, @@ -128978,7 +128978,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9373378753662109, + "confidence": 0.9373378157615662, "cells": [ { "index": 0, @@ -129024,7 +129024,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8857625722885132, + "confidence": 0.8857624530792236, "cells": [ { "index": 1, @@ -133256,7 +133256,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8309906721115112, + "confidence": 0.830990731716156, "cells": [ { "index": 0, @@ -133296,7 +133296,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8367075324058533, + "confidence": 0.8367077112197876, "cells": [ { "index": 1, @@ -133361,7 +133361,7 @@ "b": 145.88666, "coord_origin": "TOPLEFT" }, - "confidence": 0.9512290954589844, + "confidence": 0.9512290358543396, "cells": [ { "index": 3, @@ -133471,7 +133471,7 @@ "label": "table", "bbox": { "l": 143.6376495361328, - "t": 156.3477020263672, + "t": 156.34771728515625, "r": 470.8485412597656, "b": 263.2624816894531, "coord_origin": "TOPLEFT" @@ -136817,7 +136817,7 @@ "b": 439.71716, "coord_origin": "TOPLEFT" }, - "confidence": 0.9482728838920593, + "confidence": 0.948272705078125, "cells": [ { "index": 62, @@ -136976,10 +136976,10 @@ "id": 2, "label": "picture", "bbox": { - "l": 162.67430114746094, - "t": 444.62255859375, - "r": 451.70062255859375, - "b": 663.2135620117188, + "l": 162.67434692382812, + "t": 444.6225280761719, + "r": 451.70068359375, + "b": 663.213623046875, "coord_origin": "TOPLEFT" }, "confidence": 0.9742383360862732, @@ -143386,7 +143386,7 @@ "label": "table", "bbox": { "l": 143.6376495361328, - "t": 156.3477020263672, + "t": 156.34771728515625, "r": 470.8485412597656, "b": 263.2624816894531, "coord_origin": "TOPLEFT" @@ -147138,7 +147138,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8309906721115112, + "confidence": 0.830990731716156, "cells": [ { "index": 0, @@ -147184,7 +147184,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8367075324058533, + "confidence": 0.8367077112197876, "cells": [ { "index": 1, @@ -147255,7 +147255,7 @@ "b": 145.88666, "coord_origin": "TOPLEFT" }, - "confidence": 0.9512290954589844, + "confidence": 0.9512290358543396, "cells": [ { "index": 3, @@ -147371,7 +147371,7 @@ "label": "table", "bbox": { "l": 143.6376495361328, - "t": 156.3477020263672, + "t": 156.34771728515625, "r": 470.8485412597656, "b": 263.2624816894531, "coord_origin": "TOPLEFT" @@ -151332,7 +151332,7 @@ "b": 439.71716, "coord_origin": "TOPLEFT" }, - "confidence": 0.9482728838920593, + "confidence": 0.948272705078125, "cells": [ { "index": 62, @@ -151497,10 +151497,10 @@ "id": 2, "label": "picture", "bbox": { - "l": 162.67430114746094, - "t": 444.62255859375, - "r": 451.70062255859375, - "b": 663.2135620117188, + "l": 162.67434692382812, + "t": 444.6225280761719, + "r": 451.70068359375, + "b": 663.213623046875, "coord_origin": "TOPLEFT" }, "confidence": 0.9742383360862732, @@ -157928,7 +157928,7 @@ "b": 145.88666, "coord_origin": "TOPLEFT" }, - "confidence": 0.9512290954589844, + "confidence": 0.9512290358543396, "cells": [ { "index": 3, @@ -158044,7 +158044,7 @@ "label": "table", "bbox": { "l": 143.6376495361328, - "t": 156.3477020263672, + "t": 156.34771728515625, "r": 470.8485412597656, "b": 263.2624816894531, "coord_origin": "TOPLEFT" @@ -162005,7 +162005,7 @@ "b": 439.71716, "coord_origin": "TOPLEFT" }, - "confidence": 0.9482728838920593, + "confidence": 0.948272705078125, "cells": [ { "index": 62, @@ -162170,10 +162170,10 @@ "id": 2, "label": "picture", "bbox": { - "l": 162.67430114746094, - "t": 444.62255859375, - "r": 451.70062255859375, - "b": 663.2135620117188, + "l": 162.67434692382812, + "t": 444.6225280761719, + "r": 451.70068359375, + "b": 663.213623046875, "coord_origin": "TOPLEFT" }, "confidence": 0.9742383360862732, @@ -168601,7 +168601,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8309906721115112, + "confidence": 0.830990731716156, "cells": [ { "index": 0, @@ -168647,7 +168647,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8367075324058533, + "confidence": 0.8367077112197876, "cells": [ { "index": 1, @@ -169204,7 +169204,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9301655888557434, + "confidence": 0.9301658868789673, "cells": [ { "index": 0, @@ -169284,7 +169284,7 @@ "b": 177.76764000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8657060861587524, + "confidence": 0.8657063245773315, "cells": [ { "index": 2, @@ -169443,13 +169443,13 @@ "id": 3, "label": "picture", "bbox": { - "l": 168.39285278320312, + "l": 168.3928985595703, "t": 181.9665069580078, - "r": 447.35137939453125, + "r": 447.3513488769531, "b": 634.0056762695312, "coord_origin": "TOPLEFT" }, - "confidence": 0.7612658739089966, + "confidence": 0.7612641453742981, "cells": [ { "index": 8, @@ -170195,7 +170195,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9301655888557434, + "confidence": 0.9301658868789673, "cells": [ { "index": 0, @@ -170287,7 +170287,7 @@ "b": 177.76764000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8657060861587524, + "confidence": 0.8657063245773315, "cells": [ { "index": 2, @@ -170452,13 +170452,13 @@ "id": 3, "label": "picture", "bbox": { - "l": 168.39285278320312, + "l": 168.3928985595703, "t": 181.9665069580078, - "r": 447.35137939453125, + "r": 447.3513488769531, "b": 634.0056762695312, "coord_origin": "TOPLEFT" }, - "confidence": 0.7612658739089966, + "confidence": 0.7612641453742981, "cells": [ { "index": 8, @@ -171201,7 +171201,7 @@ "b": 177.76764000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8657060861587524, + "confidence": 0.8657063245773315, "cells": [ { "index": 2, @@ -171366,13 +171366,13 @@ "id": 3, "label": "picture", "bbox": { - "l": 168.39285278320312, + "l": 168.3928985595703, "t": 181.9665069580078, - "r": 447.35137939453125, + "r": 447.3513488769531, "b": 634.0056762695312, "coord_origin": "TOPLEFT" }, - "confidence": 0.7612658739089966, + "confidence": 0.7612641453742981, "cells": [ { "index": 8, @@ -172115,7 +172115,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9301655888557434, + "confidence": 0.9301658868789673, "cells": [ { "index": 0, @@ -173568,7 +173568,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8610832691192627, + "confidence": 0.8610830903053284, "cells": [ { "index": 0, @@ -173608,7 +173608,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8927664756774902, + "confidence": 0.8927665948867798, "cells": [ { "index": 1, @@ -173673,7 +173673,7 @@ "b": 128.11737000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.915635347366333, + "confidence": 0.9156351685523987, "cells": [ { "index": 3, @@ -173738,7 +173738,7 @@ "b": 203.48181, "coord_origin": "TOPLEFT" }, - "confidence": 0.9806171655654907, + "confidence": 0.9806170463562012, "cells": [ { "index": 5, @@ -173878,7 +173878,7 @@ "b": 323.83679, "coord_origin": "TOPLEFT" }, - "confidence": 0.9873476028442383, + "confidence": 0.9873477220535278, "cells": [ { "index": 10, @@ -174458,7 +174458,7 @@ "b": 504.38922, "coord_origin": "TOPLEFT" }, - "confidence": 0.9403266310691833, + "confidence": 0.9403267502784729, "cells": [ { "index": 32, @@ -174878,7 +174878,7 @@ "b": 631.18761, "coord_origin": "TOPLEFT" }, - "confidence": 0.9617196321487427, + "confidence": 0.9617195129394531, "cells": [ { "index": 47, @@ -175098,7 +175098,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8610832691192627, + "confidence": 0.8610830903053284, "cells": [ { "index": 0, @@ -175144,7 +175144,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8927664756774902, + "confidence": 0.8927665948867798, "cells": [ { "index": 1, @@ -175215,7 +175215,7 @@ "b": 128.11737000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.915635347366333, + "confidence": 0.9156351685523987, "cells": [ { "index": 3, @@ -175286,7 +175286,7 @@ "b": 203.48181, "coord_origin": "TOPLEFT" }, - "confidence": 0.9806171655654907, + "confidence": 0.9806170463562012, "cells": [ { "index": 5, @@ -175432,7 +175432,7 @@ "b": 323.83679, "coord_origin": "TOPLEFT" }, - "confidence": 0.9873476028442383, + "confidence": 0.9873477220535278, "cells": [ { "index": 10, @@ -176024,7 +176024,7 @@ "b": 504.38922, "coord_origin": "TOPLEFT" }, - "confidence": 0.9403266310691833, + "confidence": 0.9403267502784729, "cells": [ { "index": 32, @@ -176462,7 +176462,7 @@ "b": 631.18761, "coord_origin": "TOPLEFT" }, - "confidence": 0.9617196321487427, + "confidence": 0.9617195129394531, "cells": [ { "index": 47, @@ -176681,7 +176681,7 @@ "b": 128.11737000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.915635347366333, + "confidence": 0.9156351685523987, "cells": [ { "index": 3, @@ -176752,7 +176752,7 @@ "b": 203.48181, "coord_origin": "TOPLEFT" }, - "confidence": 0.9806171655654907, + "confidence": 0.9806170463562012, "cells": [ { "index": 5, @@ -176898,7 +176898,7 @@ "b": 323.83679, "coord_origin": "TOPLEFT" }, - "confidence": 0.9873476028442383, + "confidence": 0.9873477220535278, "cells": [ { "index": 10, @@ -177490,7 +177490,7 @@ "b": 504.38922, "coord_origin": "TOPLEFT" }, - "confidence": 0.9403266310691833, + "confidence": 0.9403267502784729, "cells": [ { "index": 32, @@ -177928,7 +177928,7 @@ "b": 631.18761, "coord_origin": "TOPLEFT" }, - "confidence": 0.9617196321487427, + "confidence": 0.9617195129394531, "cells": [ { "index": 47, @@ -178147,7 +178147,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8610832691192627, + "confidence": 0.8610830903053284, "cells": [ { "index": 0, @@ -178193,7 +178193,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8927664756774902, + "confidence": 0.8927665948867798, "cells": [ { "index": 1, @@ -180150,7 +180150,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9163166880607605, + "confidence": 0.91631680727005, "cells": [ { "index": 0, @@ -180190,7 +180190,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9061064720153809, + "confidence": 0.9061065912246704, "cells": [ { "index": 1, @@ -180230,7 +180230,7 @@ "b": 149.66168000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9677112698554993, + "confidence": 0.9677113890647888, "cells": [ { "index": 2, @@ -180345,7 +180345,7 @@ "b": 193.50860999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.973045289516449, + "confidence": 0.9730451703071594, "cells": [ { "index": 6, @@ -180575,7 +180575,7 @@ "b": 270.28839000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.967814564704895, + "confidence": 0.9678146243095398, "cells": [ { "index": 14, @@ -180930,7 +180930,7 @@ "b": 368.94232, "coord_origin": "TOPLEFT" }, - "confidence": 0.9639304876327515, + "confidence": 0.9639303684234619, "cells": [ { "index": 27, @@ -181335,7 +181335,7 @@ "b": 456.59146, "coord_origin": "TOPLEFT" }, - "confidence": 0.9707236886024475, + "confidence": 0.9707236289978027, "cells": [ { "index": 42, @@ -181780,7 +181780,7 @@ "b": 610.09528, "coord_origin": "TOPLEFT" }, - "confidence": 0.9674034714698792, + "confidence": 0.9674035906791687, "cells": [ { "index": 58, @@ -182265,7 +182265,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9163166880607605, + "confidence": 0.91631680727005, "cells": [ { "index": 0, @@ -182311,7 +182311,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9061064720153809, + "confidence": 0.9061065912246704, "cells": [ { "index": 1, @@ -182357,7 +182357,7 @@ "b": 149.66168000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9677112698554993, + "confidence": 0.9677113890647888, "cells": [ { "index": 2, @@ -182478,7 +182478,7 @@ "b": 193.50860999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.973045289516449, + "confidence": 0.9730451703071594, "cells": [ { "index": 6, @@ -182720,7 +182720,7 @@ "b": 270.28839000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.967814564704895, + "confidence": 0.9678146243095398, "cells": [ { "index": 14, @@ -183087,7 +183087,7 @@ "b": 368.94232, "coord_origin": "TOPLEFT" }, - "confidence": 0.9639304876327515, + "confidence": 0.9639303684234619, "cells": [ { "index": 27, @@ -183504,7 +183504,7 @@ "b": 456.59146, "coord_origin": "TOPLEFT" }, - "confidence": 0.9707236886024475, + "confidence": 0.9707236289978027, "cells": [ { "index": 42, @@ -183967,7 +183967,7 @@ "b": 610.09528, "coord_origin": "TOPLEFT" }, - "confidence": 0.9674034714698792, + "confidence": 0.9674035906791687, "cells": [ { "index": 58, @@ -184457,7 +184457,7 @@ "b": 149.66168000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9677112698554993, + "confidence": 0.9677113890647888, "cells": [ { "index": 2, @@ -184578,7 +184578,7 @@ "b": 193.50860999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.973045289516449, + "confidence": 0.9730451703071594, "cells": [ { "index": 6, @@ -184820,7 +184820,7 @@ "b": 270.28839000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.967814564704895, + "confidence": 0.9678146243095398, "cells": [ { "index": 14, @@ -185187,7 +185187,7 @@ "b": 368.94232, "coord_origin": "TOPLEFT" }, - "confidence": 0.9639304876327515, + "confidence": 0.9639303684234619, "cells": [ { "index": 27, @@ -185604,7 +185604,7 @@ "b": 456.59146, "coord_origin": "TOPLEFT" }, - "confidence": 0.9707236886024475, + "confidence": 0.9707236289978027, "cells": [ { "index": 42, @@ -186067,7 +186067,7 @@ "b": 610.09528, "coord_origin": "TOPLEFT" }, - "confidence": 0.9674034714698792, + "confidence": 0.9674035906791687, "cells": [ { "index": 58, @@ -186557,7 +186557,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9163166880607605, + "confidence": 0.91631680727005, "cells": [ { "index": 0, @@ -186603,7 +186603,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9061064720153809, + "confidence": 0.9061065912246704, "cells": [ { "index": 1, @@ -187575,7 +187575,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.7889755964279175, + "confidence": 0.7889754772186279, "cells": [ { "index": 1, @@ -187640,7 +187640,7 @@ "b": 149.66168000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9444757699966431, + "confidence": 0.9444759488105774, "cells": [ { "index": 3, @@ -188085,7 +188085,7 @@ "b": 270.25438999999994, "coord_origin": "TOPLEFT" }, - "confidence": 0.972027063369751, + "confidence": 0.9720271825790405, "cells": [ { "index": 19, @@ -188275,7 +188275,7 @@ "b": 314.0455, "coord_origin": "TOPLEFT" }, - "confidence": 0.9685125946998596, + "confidence": 0.9685124754905701, "cells": [ { "index": 26, @@ -188591,7 +188591,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.7889755964279175, + "confidence": 0.7889754772186279, "cells": [ { "index": 1, @@ -188662,7 +188662,7 @@ "b": 149.66168000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9444757699966431, + "confidence": 0.9444759488105774, "cells": [ { "index": 3, @@ -189125,7 +189125,7 @@ "b": 270.25438999999994, "coord_origin": "TOPLEFT" }, - "confidence": 0.972027063369751, + "confidence": 0.9720271825790405, "cells": [ { "index": 19, @@ -189321,7 +189321,7 @@ "b": 314.0455, "coord_origin": "TOPLEFT" }, - "confidence": 0.9685125946998596, + "confidence": 0.9685124754905701, "cells": [ { "index": 26, @@ -189590,7 +189590,7 @@ "b": 149.66168000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9444757699966431, + "confidence": 0.9444759488105774, "cells": [ { "index": 3, @@ -190053,7 +190053,7 @@ "b": 270.25438999999994, "coord_origin": "TOPLEFT" }, - "confidence": 0.972027063369751, + "confidence": 0.9720271825790405, "cells": [ { "index": 19, @@ -190249,7 +190249,7 @@ "b": 314.0455, "coord_origin": "TOPLEFT" }, - "confidence": 0.9685125946998596, + "confidence": 0.9685124754905701, "cells": [ { "index": 26, @@ -190564,7 +190564,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.7889755964279175, + "confidence": 0.7889754772186279, "cells": [ { "index": 1, diff --git a/tests/data/groundtruth/docling_v1/amt_handbook_sample.json b/tests/data/groundtruth/docling_v1/amt_handbook_sample.json index d6ee15d..1adf657 100644 --- a/tests/data/groundtruth/docling_v1/amt_handbook_sample.json +++ b/tests/data/groundtruth/docling_v1/amt_handbook_sample.json @@ -426,7 +426,7 @@ 320.4467468261719, 81.689208984375, 558.8576049804688, - 352.359375 + 352.3592834472656 ], "page": 1, "span": [ diff --git a/tests/data/groundtruth/docling_v1/amt_handbook_sample.pages.json b/tests/data/groundtruth/docling_v1/amt_handbook_sample.pages.json index c36b312..0972e85 100644 --- a/tests/data/groundtruth/docling_v1/amt_handbook_sample.pages.json +++ b/tests/data/groundtruth/docling_v1/amt_handbook_sample.pages.json @@ -3411,7 +3411,7 @@ "b": 519.65363, "coord_origin": "TOPLEFT" }, - "confidence": 0.9695363640785217, + "confidence": 0.9695364832878113, "cells": [ { "index": 34, @@ -4081,7 +4081,7 @@ "b": 142.65363000000002, "coord_origin": "TOPLEFT" }, - "confidence": 0.9263731241226196, + "confidence": 0.9263732433319092, "cells": [ { "index": 59, @@ -4611,7 +4611,7 @@ "b": 382.15362999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9253152012825012, + "confidence": 0.9253151416778564, "cells": [ { "index": 79, @@ -4651,7 +4651,7 @@ "b": 409.15362999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9676451683044434, + "confidence": 0.9676452875137329, "cells": [ { "index": 80, @@ -4711,12 +4711,12 @@ "label": "picture", "bbox": { "l": 320.4467468261719, - "t": 421.640625, + "t": 421.6407165527344, "r": 558.8576049804688, "b": 692.310791015625, "coord_origin": "TOPLEFT" }, - "confidence": 0.9881086945533752, + "confidence": 0.9881085753440857, "cells": [ { "index": 82, @@ -5463,7 +5463,7 @@ "b": 713.009598, "coord_origin": "TOPLEFT" }, - "confidence": 0.9449448585510254, + "confidence": 0.9449449777603149, "cells": [ { "index": 93, @@ -5528,7 +5528,7 @@ "b": 710.989597, "coord_origin": "TOPLEFT" }, - "confidence": 0.9497622847557068, + "confidence": 0.9497623443603516, "cells": [ { "index": 95, @@ -5593,7 +5593,7 @@ "b": 740.290298, "coord_origin": "TOPLEFT" }, - "confidence": 0.9368568658828735, + "confidence": 0.9368569850921631, "cells": [ { "index": 97, @@ -6624,7 +6624,7 @@ "b": 519.65363, "coord_origin": "TOPLEFT" }, - "confidence": 0.9695363640785217, + "confidence": 0.9695364832878113, "cells": [ { "index": 34, @@ -7312,7 +7312,7 @@ "b": 142.65363000000002, "coord_origin": "TOPLEFT" }, - "confidence": 0.9263731241226196, + "confidence": 0.9263732433319092, "cells": [ { "index": 59, @@ -7854,7 +7854,7 @@ "b": 382.15362999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9253152012825012, + "confidence": 0.9253151416778564, "cells": [ { "index": 79, @@ -7900,7 +7900,7 @@ "b": 409.15362999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9676451683044434, + "confidence": 0.9676452875137329, "cells": [ { "index": 80, @@ -7966,12 +7966,12 @@ "label": "picture", "bbox": { "l": 320.4467468261719, - "t": 421.640625, + "t": 421.6407165527344, "r": 558.8576049804688, "b": 692.310791015625, "coord_origin": "TOPLEFT" }, - "confidence": 0.9881086945533752, + "confidence": 0.9881085753440857, "cells": [ { "index": 82, @@ -8738,7 +8738,7 @@ "b": 713.009598, "coord_origin": "TOPLEFT" }, - "confidence": 0.9449448585510254, + "confidence": 0.9449449777603149, "cells": [ { "index": 93, @@ -8809,7 +8809,7 @@ "b": 710.989597, "coord_origin": "TOPLEFT" }, - "confidence": 0.9497622847557068, + "confidence": 0.9497623443603516, "cells": [ { "index": 95, @@ -8880,7 +8880,7 @@ "b": 740.290298, "coord_origin": "TOPLEFT" }, - "confidence": 0.9368568658828735, + "confidence": 0.9368569850921631, "cells": [ { "index": 97, @@ -9904,7 +9904,7 @@ "b": 519.65363, "coord_origin": "TOPLEFT" }, - "confidence": 0.9695363640785217, + "confidence": 0.9695364832878113, "cells": [ { "index": 34, @@ -10592,7 +10592,7 @@ "b": 142.65363000000002, "coord_origin": "TOPLEFT" }, - "confidence": 0.9263731241226196, + "confidence": 0.9263732433319092, "cells": [ { "index": 59, @@ -11134,7 +11134,7 @@ "b": 382.15362999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9253152012825012, + "confidence": 0.9253151416778564, "cells": [ { "index": 79, @@ -11180,7 +11180,7 @@ "b": 409.15362999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9676451683044434, + "confidence": 0.9676452875137329, "cells": [ { "index": 80, @@ -11246,12 +11246,12 @@ "label": "picture", "bbox": { "l": 320.4467468261719, - "t": 421.640625, + "t": 421.6407165527344, "r": 558.8576049804688, "b": 692.310791015625, "coord_origin": "TOPLEFT" }, - "confidence": 0.9881086945533752, + "confidence": 0.9881085753440857, "cells": [ { "index": 82, @@ -12018,7 +12018,7 @@ "b": 713.009598, "coord_origin": "TOPLEFT" }, - "confidence": 0.9449448585510254, + "confidence": 0.9449449777603149, "cells": [ { "index": 93, @@ -12089,7 +12089,7 @@ "b": 710.989597, "coord_origin": "TOPLEFT" }, - "confidence": 0.9497622847557068, + "confidence": 0.9497623443603516, "cells": [ { "index": 95, @@ -12162,7 +12162,7 @@ "b": 740.290298, "coord_origin": "TOPLEFT" }, - "confidence": 0.9368568658828735, + "confidence": 0.9368569850921631, "cells": [ { "index": 97, diff --git a/tests/data/groundtruth/docling_v1/code_and_formula.pages.json b/tests/data/groundtruth/docling_v1/code_and_formula.pages.json index 1831571..3ba8a3e 100644 --- a/tests/data/groundtruth/docling_v1/code_and_formula.pages.json +++ b/tests/data/groundtruth/docling_v1/code_and_formula.pages.json @@ -1541,7 +1541,7 @@ "b": 358.76782, "coord_origin": "TOPLEFT" }, - "confidence": 0.5588350296020508, + "confidence": 0.5588339567184448, "cells": [ { "index": 18, @@ -1581,7 +1581,7 @@ "b": 406.74554, "coord_origin": "TOPLEFT" }, - "confidence": 0.6312209963798523, + "confidence": 0.6312211155891418, "cells": [ { "index": 19, @@ -2036,7 +2036,7 @@ "b": 607.23564, "coord_origin": "TOPLEFT" }, - "confidence": 0.9843751788139343, + "confidence": 0.9843752980232239, "cells": [ { "index": 36, @@ -2719,7 +2719,7 @@ "b": 358.76782, "coord_origin": "TOPLEFT" }, - "confidence": 0.5588350296020508, + "confidence": 0.5588339567184448, "cells": [ { "index": 18, @@ -2765,7 +2765,7 @@ "b": 406.74554, "coord_origin": "TOPLEFT" }, - "confidence": 0.6312209963798523, + "confidence": 0.6312211155891418, "cells": [ { "index": 19, @@ -3232,7 +3232,7 @@ "b": 607.23564, "coord_origin": "TOPLEFT" }, - "confidence": 0.9843751788139343, + "confidence": 0.9843752980232239, "cells": [ { "index": 36, @@ -3914,7 +3914,7 @@ "b": 358.76782, "coord_origin": "TOPLEFT" }, - "confidence": 0.5588350296020508, + "confidence": 0.5588339567184448, "cells": [ { "index": 18, @@ -3960,7 +3960,7 @@ "b": 406.74554, "coord_origin": "TOPLEFT" }, - "confidence": 0.6312209963798523, + "confidence": 0.6312211155891418, "cells": [ { "index": 19, @@ -4427,7 +4427,7 @@ "b": 607.23564, "coord_origin": "TOPLEFT" }, - "confidence": 0.9843751788139343, + "confidence": 0.9843752980232239, "cells": [ { "index": 36, @@ -5782,7 +5782,7 @@ "b": 137.5481507594625, "coord_origin": "TOPLEFT" }, - "confidence": 0.950506865978241, + "confidence": 0.9505067467689514, "cells": [ { "index": 0, @@ -6302,7 +6302,7 @@ "b": 373.7119120634245, "coord_origin": "TOPLEFT" }, - "confidence": 0.8727474808692932, + "confidence": 0.8727476000785828, "cells": [ { "index": 19, @@ -7037,7 +7037,7 @@ "b": 704.5687238902275, "coord_origin": "TOPLEFT" }, - "confidence": 0.8504500389099121, + "confidence": 0.8504503965377808, "cells": [ { "index": 46, @@ -7092,7 +7092,7 @@ "b": 137.5481507594625, "coord_origin": "TOPLEFT" }, - "confidence": 0.950506865978241, + "confidence": 0.9505067467689514, "cells": [ { "index": 0, @@ -7630,7 +7630,7 @@ "b": 373.7119120634245, "coord_origin": "TOPLEFT" }, - "confidence": 0.8727474808692932, + "confidence": 0.8727476000785828, "cells": [ { "index": 19, @@ -8389,7 +8389,7 @@ "b": 704.5687238902275, "coord_origin": "TOPLEFT" }, - "confidence": 0.8504500389099121, + "confidence": 0.8504503965377808, "cells": [ { "index": 46, @@ -8437,7 +8437,7 @@ "b": 137.5481507594625, "coord_origin": "TOPLEFT" }, - "confidence": 0.950506865978241, + "confidence": 0.9505067467689514, "cells": [ { "index": 0, @@ -8975,7 +8975,7 @@ "b": 373.7119120634245, "coord_origin": "TOPLEFT" }, - "confidence": 0.8727474808692932, + "confidence": 0.8727476000785828, "cells": [ { "index": 19, @@ -9736,7 +9736,7 @@ "b": 704.5687238902275, "coord_origin": "TOPLEFT" }, - "confidence": 0.8504500389099121, + "confidence": 0.8504503965377808, "cells": [ { "index": 46, diff --git a/tests/data/groundtruth/docling_v1/multi_page.doctags.txt b/tests/data/groundtruth/docling_v1/multi_page.doctags.txt new file mode 100644 index 0000000..f58abcf --- /dev/null +++ b/tests/data/groundtruth/docling_v1/multi_page.doctags.txt @@ -0,0 +1,55 @@ + +The Evolution of the Word Processor +The concept of the word processor predates modern computers and has evolved through several technological milestones. +Pre-Digital Era (19th - Early 20th Century) +The origins of word processing can be traced back to the invention of the typewriter in the mid-19th century. Patented in 1868 by Christopher Latham Sholes, the typewriter revolutionized written communication by enabling people to produce legible, professional documents more efficiently than handwriting. +During this period, the term "word processing" didn't exist, but the typewriter laid the groundwork for future developments. Over time, advancements such as carbon paper (for copies) and the electric typewriter (introduced by IBM in 1935) improved the speed and convenience of document creation. +The Birth of Word Processing (1960s - 1970s) +The term "word processor" first emerged in the 1960s and referred to any system designed to streamline written communication and document production. Early word processors were not software programs but rather standalone machines. +- · IBM MT/ST (Magnetic Tape/Selectric Typewriter) : Introduced in 1964, this machine combined IBM's Selectric typewriter with magnetic tape storage. It allowed users to record, edit, and replay typed content-an early example of digital text storage. +- · Wang Laboratories : In the 1970s, Wang introduced dedicated word processing machines. These devices, like the Wang 1200, featured small screens and floppy disks, making them revolutionary for their time. +These machines were primarily used in offices, where secretarial pools benefited from their ability to make revisions without retyping entire documents. +The Rise of Personal Computers (1980s) +The advent of personal computers in the late 1970s and early 1980s transformed word processing from a niche tool to an essential technology for businesses and individuals alike. +- · WordStar (1978) : Developed for the CP/M operating system, WordStar was one of the first widely used word processing programs. It featured early examples of modern features like cut, copy, and paste. +- · Microsoft Word (1983) : Microsoft launched Word for MS-DOS in 1983, introducing a graphical user interface (GUI) and mouse support. Over the years, Microsoft Word became the industry standard for word processing. +Other notable software from this era included WordPerfect, which was popular among legal professionals, and Apple's MacWrite, which leveraged the Macintosh's graphical capabilities. +The Modern Era (1990s - Present) +By the 1990s, word processing software had become more sophisticated, with features like spell check, grammar check, templates, and collaborative tools. +- · Microsoft Office Suite : Microsoft continued to dominate with its Office Suite, integrating Word with other productivity tools like Excel and PowerPoint. +- · OpenOffice and LibreOffice : Open-source alternatives emerged in the early 2000s, offering free and flexible word processing options. +- · Google Docs (2006) : The introduction of cloud-based word processing revolutionized collaboration. Google Docs enabled real-time editing and sharing, making it a staple for teams and remote work. +Future of Word Processing +Today, word processors are more than just tools for typing. They integrate artificial intelligence for grammar and style suggestions (e.g., Grammarly), voice-to-text features, and advanced layout options. As AI continues to advance, word processors may evolve into even more intuitive tools that predict user needs, automate repetitive tasks, and support richer multimedia integration. +From the clunky typewriters of the 19th century to the AI-powered cloud tools of today, the word processor has come a long way. It remains an essential tool for communication and creativity, shaping how we write and share ideas. +Specialized Word Processing Tools +In addition to general-purpose word processors, specialized tools have emerged to cater to specific industries and needs. These tools incorporate unique features tailored to their users' workflows: +- · Academic and Technical Writing : Tools like LaTeX gained popularity among academics, scientists, and engineers. Unlike traditional word processors, LaTeX focuses on precise formatting, particularly for complex mathematical equations, scientific papers, and technical documents. It relies on a markup language to produce polished documents suitable for publishing. +- · Screenwriting Software : For screenwriters, tools like Final Draft and Celtx are specialized to handle scripts for film and television. These programs automate the formatting of dialogue, scene descriptions, and other elements unique to screenwriting. +- · Legal Document Processors : Word processors tailored for legal professionals, like WordPerfect, offered features such as redlining (early version tracking) and document comparison. Even today, many law firms rely on these tools due to their robust formatting options for contracts and legal briefs. +Key Features That Changed Word Processing +The evolution of word processors wasn't just about hardware or software improvements-it was about the features that revolutionized how people wrote and edited. Some of these transformative features include: +- 1. Undo/Redo : Introduced in the 1980s, the ability to undo mistakes and redo actions made experimentation and error correction much easier. +- 2. Spell Check and Grammar Check : By the 1990s, these became standard, allowing users to spot errors automatically. +- 3. Templates : Pre-designed formats for documents, such as resumes, letters, and invoices, helped users save time. +- 4. Track Changes : A game-changer for collaboration, this feature allowed multiple users to suggest edits while maintaining the original text. +- 5. Real-Time Collaboration : Tools like Google Docs and Microsoft 365 enabled multiple users to edit the same document simultaneously, forever changing teamwork dynamics. +The Cultural Impact of Word Processors +The word processor didn't just change workplaces-it changed culture. It democratized writing, enabling anyone with access to a computer to produce professional-quality documents. This shift had profound implications for education, business, and creative fields: +- · Accessibility : Writers no longer needed expensive publishing equipment or training in typesetting to create polished work. This accessibility paved the way for selfpublishing, blogging, and even fan fiction communities. +- · Education : Word processors became a cornerstone of education, teaching students not only how to write essays but also how to use technology effectively. Features like bibliography generators and integrated research tools enhanced learning. +- · Creative Writing : Writers gained powerful tools to organize their ideas. Programs like Scrivener allowed authors to manage large projects, from novels to screenplays, with features like chapter outlines and character notes. +Word Processors in a Post-Digital Era +As we move further into the 21st century, the role of the word processor continues to evolve: +- 1. Artificial Intelligence : Modern word processors are leveraging AI to suggest content improvements. Tools like Grammarly, ProWritingAid, and even native features in Word now analyze tone, conciseness, and clarity. Some AI systems can even generate entire paragraphs or rewrite sentences. +- 2. Integration with Other Tools : Word processors are no longer standalone. They integrate with task managers, cloud storage, and project management platforms. For instance, Google Docs syncs with Google Drive, while Microsoft Word integrates seamlessly with OneDrive and Teams. +- 3. Voice Typing : Speech-to-text capabilities have made word processing more accessible, particularly for those with disabilities. Tools like Dragon NaturallySpeaking and built-in options in Google Docs and Microsoft Word have made dictation mainstream. +- 4. Multimedia Documents : Word processing has expanded beyond text. Modern tools allow users to embed images, videos, charts, and interactive elements, transforming simple documents into rich multimedia experiences. +- 5. Cross-Platform Accessibility : Thanks to cloud computing, documents can now be accessed and edited across devices. Whether you're on a desktop, tablet, or smartphone, you can continue working seamlessly. +A Glimpse Into the Future +The word processor's future lies in adaptability and intelligence. Some exciting possibilities include: +- · Fully AI-Assisted Writing : Imagine a word processor that understands your writing style, drafts emails, or creates entire essays based on minimal input. +- · Immersive Interfaces : As augmented reality (AR) and virtual reality (VR) technology advance, users may be able to write and edit in 3D spaces, collaborating in virtual environments. +- · Hyper-Personalization : Word processors could offer dynamic suggestions based on industry-specific needs, user habits, or even regional language variations. +The journey of the word processor-from clunky typewriters to AI-powered platformsreflects humanity's broader technological progress. What began as a tool to simply replace handwriting has transformed into a powerful ally for creativity, communication, and collaboration. As technology continues to advance, the word processor will undoubtedly remain at the heart of how we express ideas and connect with one another. + \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v1/multi_page.json b/tests/data/groundtruth/docling_v1/multi_page.json new file mode 100644 index 0000000..36f82cd --- /dev/null +++ b/tests/data/groundtruth/docling_v1/multi_page.json @@ -0,0 +1,1319 @@ +{ + "_name": "", + "type": "pdf-document", + "description": { + "title": null, + "abstract": null, + "authors": null, + "affiliations": null, + "subjects": null, + "keywords": null, + "publication_date": null, + "languages": null, + "license": null, + "publishers": null, + "url_refs": null, + "references": null, + "publication": null, + "reference_count": null, + "citation_count": null, + "citation_date": null, + "advanced": null, + "analytics": null, + "logs": [], + "collection": null, + "acquisition": null + }, + "file-info": { + "filename": "multi_page.pdf", + "filename-prov": null, + "document-hash": "5cb2e06891e979af8d2478c8b8b9d80121e88abfa14f3cdd98b7f01fc5702c61", + "#-pages": 5, + "collection-name": null, + "description": null, + "page-hashes": [ + { + "hash": "2cf48d0d188f630682493ed363fac7d669a8d79e35794bdd1f8754eb7e4002cb", + "model": "default", + "page": 1 + }, + { + "hash": "de0204bb364083802c902c12807f3c4b8c394cd0defd654ac80eeac236af3f8b", + "model": "default", + "page": 2 + }, + { + "hash": "861b7a4ad805d9b2687369c8bc99fa6af779283412639f33bdf2cf1ec92758e8", + "model": "default", + "page": 3 + }, + { + "hash": "c3c75b08d5f5ebcc81e5b746c907b7220aed8adb1372fa4271bb7562ad0dba2b", + "model": "default", + "page": 4 + }, + { + "hash": "72e15d763f88dba51af7fb9a5d3d49d81100b9380df10313d6bc6179964bbb40", + "model": "default", + "page": 5 + } + ] + }, + "main-text": [ + { + "prov": [ + { + "bbox": [ + 72.00000026697958, + 756.0480326133338, + 262.98718097516957, + 769.3320326592508 + ], + "page": 1, + "span": [ + 0, + 35 + ], + "__ref_s3_data": null + } + ], + "text": "The Evolution of the Word Processor", + "type": "subtitle-level-1", + "payload": null, + "name": "Section-header", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 72.00000026697958, + 714.528022469817, + 497.51987184482846, + 741.7319925638493 + ], + "page": 1, + "span": [ + 0, + 117 + ], + "__ref_s3_data": null + } + ], + "text": "The concept of the word processor predates modern computers and has evolved through several technological milestones.", + "type": "paragraph", + "payload": null, + "name": "Text", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 72.00000026697958, + 684.9369523675332, + 325.8153412081395, + 699.8150624189605 + ], + "page": 1, + "span": [ + 0, + 43 + ], + "__ref_s3_data": null + } + ], + "text": "Pre-Digital Era (19th - Early 20th Century)", + "type": "subtitle-level-1", + "payload": null, + "name": "Section-header", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 72.00000026697958, + 615.6480121280312, + 508.1806618843591, + 670.6920223182946 + ], + "page": 1, + "span": [ + 0, + 305 + ], + "__ref_s3_data": null + } + ], + "text": "The origins of word processing can be traced back to the invention of the typewriter in the mid-19th century. Patented in 1868 by Christopher Latham Sholes, the typewriter revolutionized written communication by enabling people to produce legible, professional documents more efficiently than handwriting.", + "type": "paragraph", + "payload": null, + "name": "Text", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 72.00000026697958, + 546.5280218891129, + 504.5038518707254, + 601.5720220793764 + ], + "page": 1, + "span": [ + 0, + 295 + ], + "__ref_s3_data": null + } + ], + "text": "During this period, the term \"word processing\" didn't exist, but the typewriter laid the groundwork for future developments. Over time, advancements such as carbon paper (for copies) and the electric typewriter (introduced by IBM in 1935) improved the speed and convenience of document creation.", + "type": "paragraph", + "payload": null, + "name": "Text", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 72.00000026697958, + 489.33698169142804, + 336.7180512485673, + 504.21506174285514 + ], + "page": 1, + "span": [ + 0, + 44 + ], + "__ref_s3_data": null + } + ], + "text": "The Birth of Word Processing (1960s - 1970s)", + "type": "subtitle-level-1", + "payload": null, + "name": "Section-header", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 72.00000026697958, + 433.7280314992118, + 523.1927519400248, + 474.8520216413597 + ], + "page": 1, + "span": [ + 0, + 230 + ], + "__ref_s3_data": null + } + ], + "text": "The term \"word processor\" first emerged in the 1960s and referred to any system designed to streamline written communication and document production. Early word processors were not software programs but rather standalone machines.", + "type": "paragraph", + "payload": null, + "name": "Text", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 90.00000033372447, + 364.8480212611231, + 518.011111920811, + 419.6520414505571 + ], + "page": 1, + "span": [ + 0, + 248 + ], + "__ref_s3_data": null + } + ], + "text": "- \u00b7 IBM MT/ST (Magnetic Tape/Selectric Typewriter) : Introduced in 1964, this machine combined IBM's Selectric typewriter with magnetic tape storage. It allowed users to record, edit, and replay typed content-an early example of digital text storage.", + "type": "paragraph", + "payload": null, + "name": "List-item", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 90.00000033372447, + 323.32800111760616, + 497.51746184481954, + 364.45203125975434 + ], + "page": 1, + "span": [ + 0, + 205 + ], + "__ref_s3_data": null + } + ], + "text": "- \u00b7 Wang Laboratories : In the 1970s, Wang introduced dedicated word processing machines. These devices, like the Wang 1200, featured small screens and floppy disks, making them revolutionary for their time.", + "type": "paragraph", + "payload": null, + "name": "List-item", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 72.00000026697958, + 281.5680209732599, + 514.4709519076839, + 309.01202106812207 + ], + "page": 1, + "span": [ + 0, + 152 + ], + "__ref_s3_data": null + } + ], + "text": "These machines were primarily used in offices, where secretarial pools benefited from their ability to make revisions without retyping entire documents.", + "type": "paragraph", + "payload": null, + "name": "Text", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 72.00000026697958, + 224.37701077557506, + 306.7123111373045, + 239.2550708270021 + ], + "page": 1, + "span": [ + 0, + 38 + ], + "__ref_s3_data": null + } + ], + "text": "The Rise of Personal Computers (1980s)", + "type": "subtitle-level-1", + "payload": null, + "name": "Section-header", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 72.00000026697958, + 182.68802063147405, + 515.5663519117458, + 210.1320507263364 + ], + "page": 1, + "span": [ + 0, + 177 + ], + "__ref_s3_data": null + } + ], + "text": "The advent of personal computers in the late 1970s and early 1980s transformed word processing from a niche tool to an essential technology for businesses and individuals alike.", + "type": "paragraph", + "payload": null, + "name": "Text", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 90.00000033372447, + 127.48804044067151, + 522.527771937559, + 168.37204058198995 + ], + "page": 1, + "span": [ + 0, + 201 + ], + "__ref_s3_data": null + } + ], + "text": "- \u00b7 WordStar (1978) : Developed for the CP/M operating system, WordStar was one of the first widely used word processing programs. It featured early examples of modern features like cut, copy, and paste.", + "type": "paragraph", + "payload": null, + "name": "List-item", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 90.00000033372447, + 85.96801829715457, + 525.2570219476792, + 127.09204043930265 + ], + "page": 1, + "span": [ + 0, + 214 + ], + "__ref_s3_data": null + } + ], + "text": "- \u00b7 Microsoft Word (1983) : Microsoft launched Word for MS-DOS in 1983, introducing a graphical user interface (GUI) and mouse support. Over the years, Microsoft Word became the industry standard for word processing.", + "type": "paragraph", + "payload": null, + "name": "List-item", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 72.00000026697958, + 728.4480025179322, + 516.5014019152128, + 769.5720226600804 + ], + "page": 2, + "span": [ + 0, + 181 + ], + "__ref_s3_data": null + } + ], + "text": "Other notable software from this era included WordPerfect, which was popular among legal professionals, and Apple's MacWrite, which leveraged the Macintosh's graphical capabilities.", + "type": "paragraph", + "payload": null, + "name": "Text", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 72.00000026697958, + 671.2569623202475, + 272.1976610093225, + 686.1350723716746 + ], + "page": 2, + "span": [ + 0, + 32 + ], + "__ref_s3_data": null + } + ], + "text": "The Modern Era (1990s - Present)", + "type": "subtitle-level-1", + "payload": null, + "name": "Section-header", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 72.00000026697958, + 629.5679921761465, + 510.8733818943439, + 656.7720322701791 + ], + "page": 2, + "span": [ + 0, + 152 + ], + "__ref_s3_data": null + } + ], + "text": "By the 1990s, word processing software had become more sophisticated, with features like spell check, grammar check, templates, and collaborative tools.", + "type": "paragraph", + "payload": null, + "name": "Text", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 90.00000033372447, + 588.2880220334594, + 491.2357518215266, + 615.2520121266623 + ], + "page": 2, + "span": [ + 0, + 155 + ], + "__ref_s3_data": null + } + ], + "text": "- \u00b7 Microsoft Office Suite : Microsoft continued to dominate with its Office Suite, integrating Word with other productivity tools like Excel and PowerPoint.", + "type": "paragraph", + "payload": null, + "name": "List-item", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 90.00000033372447, + 560.6879919380578, + 517.5377819190559, + 587.6520420312611 + ], + "page": 2, + "span": [ + 0, + 135 + ], + "__ref_s3_data": null + } + ], + "text": "- \u00b7 OpenOffice and LibreOffice : Open-source alternatives emerged in the early 2000s, offering free and flexible word processing options.", + "type": "paragraph", + "payload": null, + "name": "List-item", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 90.00000033372447, + 518.9280417937117, + 524.5618919451015, + 560.0520019358595 + ], + "page": 2, + "span": [ + 0, + 197 + ], + "__ref_s3_data": null + } + ], + "text": "- \u00b7 Google Docs (2006) : The introduction of cloud-based word processing revolutionized collaboration. Google Docs enabled real-time editing and sharing, making it a staple for teams and remote work.", + "type": "paragraph", + "payload": null, + "name": "List-item", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 72.00000026697958, + 461.7370015960268, + 231.71083085919528, + 476.6150516474538 + ], + "page": 2, + "span": [ + 0, + 25 + ], + "__ref_s3_data": null + } + ], + "text": "Future of Word Processing", + "type": "subtitle-level-1", + "payload": null, + "name": "Section-header", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 72.00000026697958, + 378.52802130840905, + 520.5438819302025, + 447.25201154595834 + ], + "page": 2, + "span": [ + 0, + 385 + ], + "__ref_s3_data": null + } + ], + "text": "Today, word processors are more than just tools for typing. They integrate artificial intelligence for grammar and style suggestions (e.g., Grammarly), voice-to-text features, and advanced layout options. As AI continues to advance, word processors may evolve into even more intuitive tools that predict user needs, automate repetitive tasks, and support richer multimedia integration.", + "type": "paragraph", + "payload": null, + "name": "Text", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 72.00000026697958, + 295.4880110213753, + 515.5564019117089, + 336.3720411626939 + ], + "page": 2, + "span": [ + 0, + 228 + ], + "__ref_s3_data": null + } + ], + "text": "From the clunky typewriters of the 19th century to the AI-powered cloud tools of today, the word processor has come a long way. It remains an essential tool for communication and creativity, shaping how we write and share ideas.", + "type": "paragraph", + "payload": null, + "name": "Text", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 72.00000026697958, + 754.2970026072811, + 276.7262310261146, + 769.1750526587082 + ], + "page": 3, + "span": [ + 0, + 33 + ], + "__ref_s3_data": null + } + ], + "text": "Specialized Word Processing Tools", + "type": "subtitle-level-1", + "payload": null, + "name": "Section-header", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 72.00000026697958, + 698.9280424158944, + 514.6727319084321, + 740.0520025580424 + ], + "page": 3, + "span": [ + 0, + 197 + ], + "__ref_s3_data": null + } + ], + "text": "In addition to general-purpose word processors, specialized tools have emerged to cater to specific industries and needs. These tools incorporate unique features tailored to their users' workflows:", + "type": "paragraph", + "payload": null, + "name": "Text", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 90.00000033372447, + 616.1279921296901, + 519.5101919263695, + 684.61200236641 + ], + "page": 3, + "span": [ + 0, + 365 + ], + "__ref_s3_data": null + } + ], + "text": "- \u00b7 Academic and Technical Writing : Tools like LaTeX gained popularity among academics, scientists, and engineers. Unlike traditional word processors, LaTeX focuses on precise formatting, particularly for complex mathematical equations, scientific papers, and technical documents. It relies on a markup language to produce polished documents suitable for publishing.", + "type": "paragraph", + "payload": null, + "name": "List-item", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 90.00000033372447, + 560.9280419388876, + 503.5271318671036, + 615.7319921283214 + ], + "page": 3, + "span": [ + 0, + 253 + ], + "__ref_s3_data": null + } + ], + "text": "- \u00b7 Screenwriting Software : For screenwriters, tools like Final Draft and Celtx are specialized to handle scripts for film and television. These programs automate the formatting of dialogue, scene descriptions, and other elements unique to screenwriting.", + "type": "paragraph", + "payload": null, + "name": "List-item", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 90.00000033372447, + 505.4880417472553, + 524.4814519448033, + 560.5319819375186 + ], + "page": 3, + "span": [ + 0, + 300 + ], + "__ref_s3_data": null + } + ], + "text": "- \u00b7 Legal Document Processors : Word processors tailored for legal professionals, like WordPerfect, offered features such as redlining (early version tracking) and document comparison. Even today, many law firms rely on these tools due to their robust formatting options for contracts and legal briefs.", + "type": "paragraph", + "payload": null, + "name": "List-item", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 72.00000026697958, + 448.2970015495705, + 340.46878126247515, + 463.17505160099745 + ], + "page": 3, + "span": [ + 0, + 41 + ], + "__ref_s3_data": null + } + ], + "text": "Key Features That Changed Word Processing", + "type": "subtitle-level-1", + "payload": null, + "name": "Section-header", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 72.00000026697958, + 392.92801135818354, + 514.7196019086059, + 434.0520015003316 + ], + "page": 3, + "span": [ + 0, + 206 + ], + "__ref_s3_data": null + } + ], + "text": "The evolution of word processors wasn't just about hardware or software improvements-it was about the features that revolutionized how people wrote and edited. Some of these transformative features include:", + "type": "paragraph", + "payload": null, + "name": "Text", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 90.00000033372447, + 351.4080212146668, + 509.2687418883938, + 378.6120313086994 + ], + "page": 3, + "span": [ + 0, + 140 + ], + "__ref_s3_data": null + } + ], + "text": "- 1. Undo/Redo : Introduced in the 1980s, the ability to undo mistakes and redo actions made experimentation and error correction much easier.", + "type": "paragraph", + "payload": null, + "name": "List-item", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 90.00000033372447, + 323.8080111192654, + 516.6022319155867, + 351.012021213298 + ], + "page": 3, + "span": [ + 0, + 116 + ], + "__ref_s3_data": null + } + ], + "text": "- 2. Spell Check and Grammar Check : By the 1990s, these became standard, allowing users to spot errors automatically.", + "type": "paragraph", + "payload": null, + "name": "List-item", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 90.00000033372447, + 296.20801102386406, + 486.90097180545297, + 323.4120511178967 + ], + "page": 3, + "span": [ + 0, + 114 + ], + "__ref_s3_data": null + } + ], + "text": "- 3. Templates : Pre-designed formats for documents, such as resumes, letters, and invoices, helped users save time.", + "type": "paragraph", + "payload": null, + "name": "List-item", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 90.00000033372447, + 268.6080009284626, + 502.21259186222926, + 295.81204102249535 + ], + "page": 3, + "span": [ + 0, + 142 + ], + "__ref_s3_data": null + } + ], + "text": "- 4. Track Changes : A game-changer for collaboration, this feature allowed multiple users to suggest edits while maintaining the original text.", + "type": "paragraph", + "payload": null, + "name": "List-item", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 90.00000033372447, + 227.08801078494582, + 521.8798819351565, + 268.212040927094 + ], + "page": 3, + "span": [ + 0, + 170 + ], + "__ref_s3_data": null + } + ], + "text": "- 5. Real-Time Collaboration : Tools like Google Docs and Microsoft 365 enabled multiple users to edit the same document simultaneously, forever changing teamwork dynamics.", + "type": "paragraph", + "payload": null, + "name": "List-item", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 72.00000026697958, + 169.6570105864315, + 311.9594411567611, + 184.53506063785858 + ], + "page": 3, + "span": [ + 0, + 38 + ], + "__ref_s3_data": null + } + ], + "text": "The Cultural Impact of Word Processors", + "type": "subtitle-level-1", + "payload": null, + "name": "Section-header", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 72.00000026697958, + 114.28802039504467, + 518.9003919241085, + 155.41205053719273 + ], + "page": 3, + "span": [ + 0, + 261 + ], + "__ref_s3_data": null + } + ], + "text": "The word processor didn't just change workplaces-it changed culture. It democratized writing, enabling anyone with access to a computer to produce professional-quality documents. This shift had profound implications for education, business, and creative fields:", + "type": "paragraph", + "payload": null, + "name": "Text", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 90.00000033372447, + 728.6879925187619, + 514.5589619080102, + 769.5720226600804 + ], + "page": 4, + "span": [ + 0, + 222 + ], + "__ref_s3_data": null + } + ], + "text": "- \u00b7 Accessibility : Writers no longer needed expensive publishing equipment or training in typesetting to create polished work. This accessibility paved the way for selfpublishing, blogging, and even fan fiction communities.", + "type": "paragraph", + "payload": null, + "name": "List-item", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 90.00000033372447, + 687.4080223760747, + 521.9014319352365, + 728.291992517393 + ], + "page": 4, + "span": [ + 0, + 242 + ], + "__ref_s3_data": null + } + ], + "text": "- \u00b7 Education : Word processors became a cornerstone of education, teaching students not only how to write essays but also how to use technology effectively. Features like bibliography generators and integrated research tools enhanced learning.", + "type": "paragraph", + "payload": null, + "name": "List-item", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 90.00000033372447, + 645.6480122317282, + 515.8510119128011, + 686.7720323738763 + ], + "page": 4, + "span": [ + 0, + 226 + ], + "__ref_s3_data": null + } + ], + "text": "- \u00b7 Creative Writing : Writers gained powerful tools to organize their ideas. Programs like Scrivener allowed authors to manage large projects, from novels to screenplays, with features like chapter outlines and character notes.", + "type": "paragraph", + "payload": null, + "name": "List-item", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 72.00000026697958, + 588.4569720340432, + 295.453431095556, + 603.3350820854705 + ], + "page": 4, + "span": [ + 0, + 37 + ], + "__ref_s3_data": null + } + ], + "text": "Word Processors in a Post-Digital Era", + "type": "subtitle-level-1", + "payload": null, + "name": "Section-header", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 72.00000026697958, + 560.4480019372284, + 521.214971932691, + 573.7319919831453 + ], + "page": 4, + "span": [ + 0, + 93 + ], + "__ref_s3_data": null + } + ], + "text": "As we move further into the 21st century, the role of the word processor continues to evolve:", + "type": "paragraph", + "payload": null, + "name": "Text", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 90.00000033372447, + 491.56802169913976, + 523.8382019424181, + 546.3720118885738 + ], + "page": 4, + "span": [ + 0, + 290 + ], + "__ref_s3_data": null + } + ], + "text": "- 1. Artificial Intelligence : Modern word processors are leveraging AI to suggest content improvements. Tools like Grammarly, ProWritingAid, and even native features in Word now analyze tone, conciseness, and clarity. Some AI systems can even generate entire paragraphs or rewrite sentences.", + "type": "paragraph", + "payload": null, + "name": "List-item", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 90.00000033372447, + 436.3680415083371, + 514.5262519078889, + 491.17200169777095 + ], + "page": 4, + "span": [ + 0, + 278 + ], + "__ref_s3_data": null + } + ], + "text": "- 2. Integration with Other Tools : Word processors are no longer standalone. They integrate with task managers, cloud storage, and project management platforms. For instance, Google Docs syncs with Google Drive, while Microsoft Word integrates seamlessly with OneDrive and Teams.", + "type": "paragraph", + "payload": null, + "name": "List-item", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 90.00000033372447, + 381.1680013175343, + 502.9175418648432, + 435.97202150696825 + ], + "page": 4, + "span": [ + 0, + 253 + ], + "__ref_s3_data": null + } + ], + "text": "- 3. Voice Typing : Speech-to-text capabilities have made word processing more accessible, particularly for those with disabilities. Tools like Dragon NaturallySpeaking and built-in options in Google Docs and Microsoft Word have made dictation mainstream.", + "type": "paragraph", + "payload": null, + "name": "List-item", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 90.00000033372447, + 339.888001174847, + 516.9196819167639, + 380.77203131616557 + ], + "page": 4, + "span": [ + 0, + 215 + ], + "__ref_s3_data": null + } + ], + "text": "- 4. Multimedia Documents : Word processing has expanded beyond text. Modern tools allow users to embed images, videos, charts, and interactive elements, transforming simple documents into rich multimedia experiences.", + "type": "paragraph", + "payload": null, + "name": "List-item", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 90.00000033372447, + 298.1280210305007, + 510.9070718944688, + 339.25204117264883 + ], + "page": 4, + "span": [ + 0, + 206 + ], + "__ref_s3_data": null + } + ], + "text": "- 5. Cross-Platform Accessibility : Thanks to cloud computing, documents can now be accessed and edited across devices. Whether you're on a desktop, tablet, or smartphone, you can continue working seamlessly.", + "type": "paragraph", + "payload": null, + "name": "List-item", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 72.00000026697958, + 240.93701083281587, + 228.355610846754, + 255.81506088424294 + ], + "page": 4, + "span": [ + 0, + 25 + ], + "__ref_s3_data": null + } + ], + "text": "A Glimpse Into the Future", + "type": "subtitle-level-1", + "payload": null, + "name": "Section-header", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 72.00000026697958, + 199.24802068871497, + 515.04700190982, + 226.45203078274756 + ], + "page": 4, + "span": [ + 0, + 103 + ], + "__ref_s3_data": null + } + ], + "text": "The word processor's future lies in adaptability and intelligence. Some exciting possibilities include:", + "type": "paragraph", + "payload": null, + "name": "Text", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 90.00000033372447, + 157.96802054602767, + 518.2673319217611, + 184.93204063923076 + ], + "page": 4, + "span": [ + 0, + 155 + ], + "__ref_s3_data": null + } + ], + "text": "- \u00b7 Fully AI-Assisted Writing : Imagine a word processor that understands your writing style, drafts emails, or creates entire essays based on minimal input.", + "type": "paragraph", + "payload": null, + "name": "List-item", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 90.00000033372447, + 116.44800040251084, + 525.5181319486474, + 157.33203054382932 + ], + "page": 4, + "span": [ + 0, + 184 + ], + "__ref_s3_data": null + } + ], + "text": "- \u00b7 Immersive Interfaces : As augmented reality (AR) and virtual reality (VR) technology advance, users may be able to write and edit in 3D spaces, collaborating in virtual environments.", + "type": "paragraph", + "payload": null, + "name": "List-item", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 90.00000033372447, + 88.60803230627994, + 518.906741924132, + 116.05206040114217 + ], + "page": 4, + "span": [ + 0, + 158 + ], + "__ref_s3_data": null + } + ], + "text": "- \u00b7 Hyper-Personalization : Word processors could offer dynamic suggestions based on industry-specific needs, user habits, or even regional language variations.", + "type": "paragraph", + "payload": null, + "name": "List-item", + "font": null + }, + { + "prov": [ + { + "bbox": [ + 72.00000026697958, + 673.0080023262999, + 510.4989618929555, + 741.7319925638493 + ], + "page": 5, + "span": [ + 0, + 416 + ], + "__ref_s3_data": null + } + ], + "text": "The journey of the word processor-from clunky typewriters to AI-powered platformsreflects humanity's broader technological progress. What began as a tool to simply replace handwriting has transformed into a powerful ally for creativity, communication, and collaboration. As technology continues to advance, the word processor will undoubtedly remain at the heart of how we express ideas and connect with one another.", + "type": "paragraph", + "payload": null, + "name": "Text", + "font": null + } + ], + "figures": [], + "tables": [], + "bitmaps": null, + "equations": [], + "footnotes": [], + "page-dimensions": [ + { + "height": 841.9199829101562, + "page": 1, + "width": 595.2000122070312 + }, + { + "height": 841.9199829101562, + "page": 2, + "width": 595.2000122070312 + }, + { + "height": 841.9199829101562, + "page": 3, + "width": 595.2000122070312 + }, + { + "height": 841.9199829101562, + "page": 4, + "width": 595.2000122070312 + }, + { + "height": 841.9199829101562, + "page": 5, + "width": 595.2000122070312 + } + ], + "page-footers": [], + "page-headers": [], + "_s3_data": null, + "identifiers": null +} \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v1/multi_page.md b/tests/data/groundtruth/docling_v1/multi_page.md new file mode 100644 index 0000000..cefba83 --- /dev/null +++ b/tests/data/groundtruth/docling_v1/multi_page.md @@ -0,0 +1,105 @@ +## The Evolution of the Word Processor + +The concept of the word processor predates modern computers and has evolved through several technological milestones. + +## Pre-Digital Era (19th - Early 20th Century) + +The origins of word processing can be traced back to the invention of the typewriter in the mid-19th century. Patented in 1868 by Christopher Latham Sholes, the typewriter revolutionized written communication by enabling people to produce legible, professional documents more efficiently than handwriting. + +During this period, the term "word processing" didn't exist, but the typewriter laid the groundwork for future developments. Over time, advancements such as carbon paper (for copies) and the electric typewriter (introduced by IBM in 1935) improved the speed and convenience of document creation. + +## The Birth of Word Processing (1960s - 1970s) + +The term "word processor" first emerged in the 1960s and referred to any system designed to streamline written communication and document production. Early word processors were not software programs but rather standalone machines. + +- · IBM MT/ST (Magnetic Tape/Selectric Typewriter) : Introduced in 1964, this machine combined IBM's Selectric typewriter with magnetic tape storage. It allowed users to record, edit, and replay typed content-an early example of digital text storage. + +- · Wang Laboratories : In the 1970s, Wang introduced dedicated word processing machines. These devices, like the Wang 1200, featured small screens and floppy disks, making them revolutionary for their time. + +These machines were primarily used in offices, where secretarial pools benefited from their ability to make revisions without retyping entire documents. + +## The Rise of Personal Computers (1980s) + +The advent of personal computers in the late 1970s and early 1980s transformed word processing from a niche tool to an essential technology for businesses and individuals alike. + +- · WordStar (1978) : Developed for the CP/M operating system, WordStar was one of the first widely used word processing programs. It featured early examples of modern features like cut, copy, and paste. + +- · Microsoft Word (1983) : Microsoft launched Word for MS-DOS in 1983, introducing a graphical user interface (GUI) and mouse support. Over the years, Microsoft Word became the industry standard for word processing. + +Other notable software from this era included WordPerfect, which was popular among legal professionals, and Apple's MacWrite, which leveraged the Macintosh's graphical capabilities. + +## The Modern Era (1990s - Present) + +By the 1990s, word processing software had become more sophisticated, with features like spell check, grammar check, templates, and collaborative tools. + +- · Microsoft Office Suite : Microsoft continued to dominate with its Office Suite, integrating Word with other productivity tools like Excel and PowerPoint. + +- · OpenOffice and LibreOffice : Open-source alternatives emerged in the early 2000s, offering free and flexible word processing options. + +- · Google Docs (2006) : The introduction of cloud-based word processing revolutionized collaboration. Google Docs enabled real-time editing and sharing, making it a staple for teams and remote work. + +## Future of Word Processing + +Today, word processors are more than just tools for typing. They integrate artificial intelligence for grammar and style suggestions (e.g., Grammarly), voice-to-text features, and advanced layout options. As AI continues to advance, word processors may evolve into even more intuitive tools that predict user needs, automate repetitive tasks, and support richer multimedia integration. + +From the clunky typewriters of the 19th century to the AI-powered cloud tools of today, the word processor has come a long way. It remains an essential tool for communication and creativity, shaping how we write and share ideas. + +## Specialized Word Processing Tools + +In addition to general-purpose word processors, specialized tools have emerged to cater to specific industries and needs. These tools incorporate unique features tailored to their users' workflows: + +- · Academic and Technical Writing : Tools like LaTeX gained popularity among academics, scientists, and engineers. Unlike traditional word processors, LaTeX focuses on precise formatting, particularly for complex mathematical equations, scientific papers, and technical documents. It relies on a markup language to produce polished documents suitable for publishing. + +- · Screenwriting Software : For screenwriters, tools like Final Draft and Celtx are specialized to handle scripts for film and television. These programs automate the formatting of dialogue, scene descriptions, and other elements unique to screenwriting. + +- · Legal Document Processors : Word processors tailored for legal professionals, like WordPerfect, offered features such as redlining (early version tracking) and document comparison. Even today, many law firms rely on these tools due to their robust formatting options for contracts and legal briefs. + +## Key Features That Changed Word Processing + +The evolution of word processors wasn't just about hardware or software improvements-it was about the features that revolutionized how people wrote and edited. Some of these transformative features include: + +- 1. Undo/Redo : Introduced in the 1980s, the ability to undo mistakes and redo actions made experimentation and error correction much easier. + +- 2. Spell Check and Grammar Check : By the 1990s, these became standard, allowing users to spot errors automatically. + +- 3. Templates : Pre-designed formats for documents, such as resumes, letters, and invoices, helped users save time. + +- 4. Track Changes : A game-changer for collaboration, this feature allowed multiple users to suggest edits while maintaining the original text. + +- 5. Real-Time Collaboration : Tools like Google Docs and Microsoft 365 enabled multiple users to edit the same document simultaneously, forever changing teamwork dynamics. + +## The Cultural Impact of Word Processors + +The word processor didn't just change workplaces-it changed culture. It democratized writing, enabling anyone with access to a computer to produce professional-quality documents. This shift had profound implications for education, business, and creative fields: + +- · Accessibility : Writers no longer needed expensive publishing equipment or training in typesetting to create polished work. This accessibility paved the way for selfpublishing, blogging, and even fan fiction communities. + +- · Education : Word processors became a cornerstone of education, teaching students not only how to write essays but also how to use technology effectively. Features like bibliography generators and integrated research tools enhanced learning. + +- · Creative Writing : Writers gained powerful tools to organize their ideas. Programs like Scrivener allowed authors to manage large projects, from novels to screenplays, with features like chapter outlines and character notes. + +## Word Processors in a Post-Digital Era + +As we move further into the 21st century, the role of the word processor continues to evolve: + +- 1. Artificial Intelligence : Modern word processors are leveraging AI to suggest content improvements. Tools like Grammarly, ProWritingAid, and even native features in Word now analyze tone, conciseness, and clarity. Some AI systems can even generate entire paragraphs or rewrite sentences. + +- 2. Integration with Other Tools : Word processors are no longer standalone. They integrate with task managers, cloud storage, and project management platforms. For instance, Google Docs syncs with Google Drive, while Microsoft Word integrates seamlessly with OneDrive and Teams. + +- 3. Voice Typing : Speech-to-text capabilities have made word processing more accessible, particularly for those with disabilities. Tools like Dragon NaturallySpeaking and built-in options in Google Docs and Microsoft Word have made dictation mainstream. + +- 4. Multimedia Documents : Word processing has expanded beyond text. Modern tools allow users to embed images, videos, charts, and interactive elements, transforming simple documents into rich multimedia experiences. + +- 5. Cross-Platform Accessibility : Thanks to cloud computing, documents can now be accessed and edited across devices. Whether you're on a desktop, tablet, or smartphone, you can continue working seamlessly. + +## A Glimpse Into the Future + +The word processor's future lies in adaptability and intelligence. Some exciting possibilities include: + +- · Fully AI-Assisted Writing : Imagine a word processor that understands your writing style, drafts emails, or creates entire essays based on minimal input. + +- · Immersive Interfaces : As augmented reality (AR) and virtual reality (VR) technology advance, users may be able to write and edit in 3D spaces, collaborating in virtual environments. + +- · Hyper-Personalization : Word processors could offer dynamic suggestions based on industry-specific needs, user habits, or even regional language variations. + +The journey of the word processor-from clunky typewriters to AI-powered platformsreflects humanity's broader technological progress. What began as a tool to simply replace handwriting has transformed into a powerful ally for creativity, communication, and collaboration. As technology continues to advance, the word processor will undoubtedly remain at the heart of how we express ideas and connect with one another. \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v1/multi_page.pages.json b/tests/data/groundtruth/docling_v1/multi_page.pages.json new file mode 100644 index 0000000..b3c3a02 --- /dev/null +++ b/tests/data/groundtruth/docling_v1/multi_page.pages.json @@ -0,0 +1,21968 @@ +[ + { + "page_no": 0, + "size": { + "width": 595.2000122070312, + "height": 841.9199829101562 + }, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 85.87195029682243, + "r_x1": 262.98718097516957, + "r_y1": 85.87195029682243, + "r_x2": 262.98718097516957, + "r_y2": 72.58795025090546, + "r_x3": 72.00000026697958, + "r_y3": 72.58795025090546, + "coord_origin": "TOPLEFT" + }, + "text": "The Evolution of the Word Processor", + "orig": "The Evolution of the Word Processor", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 113.47198039222405, + "r_x1": 497.51987184482846, + "r_y1": 113.47198039222405, + "r_x2": 497.51987184482846, + "r_y2": 100.18799034630695, + "r_x3": 72.00000026697958, + "r_y3": 100.18799034630695, + "coord_origin": "TOPLEFT" + }, + "text": "The concept of the word processor predates modern computers and has evolved through ", + "orig": "The concept of the word processor predates modern computers and has evolved through ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 127.39196044033929, + "r_x1": 233.94727086748813, + "r_y1": 127.39196044033929, + "r_x2": 233.94727086748813, + "r_y2": 114.10797039442241, + "r_x3": 72.00000026697958, + "r_y3": 114.10797039442241, + "coord_origin": "TOPLEFT" + }, + "text": "several technological milestones. ", + "orig": "several technological milestones. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 156.98303054262306, + "r_x1": 325.8153412081395, + "r_y1": 156.98303054262306, + "r_x2": 325.8153412081395, + "r_y2": 142.1049204911958, + "r_x3": 72.00000026697958, + "r_y3": 142.1049204911958, + "coord_origin": "TOPLEFT" + }, + "text": "Pre-Digital Era (19th - Early 20th Century) ", + "orig": "Pre-Digital Era (19th - Early 20th Century) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 184.51196063777877, + "r_x1": 508.1806618843591, + "r_y1": 184.51196063777877, + "r_x2": 508.1806618843591, + "r_y2": 171.2279605918617, + "r_x3": 72.00000026697958, + "r_y3": 171.2279605918617, + "coord_origin": "TOPLEFT" + }, + "text": "The origins of word processing can be traced back to the invention of the typewriter in the ", + "orig": "The origins of word processing can be traced back to the invention of the typewriter in the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 198.43194068589423, + "r_x1": 466.9111617313298, + "r_y1": 198.43194068589423, + "r_x2": 466.9111617313298, + "r_y2": 185.14795063997713, + "r_x3": 72.00000026697958, + "r_y3": 185.14795063997713, + "coord_origin": "TOPLEFT" + }, + "text": "mid-19th century. Patented in 1868 by Christopher Latham Sholes, the typewriter ", + "orig": "mid-19th century. Patented in 1868 by Christopher Latham Sholes, the typewriter ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 212.11194073318006, + "r_x1": 507.5440418819985, + "r_y1": 212.11194073318006, + "r_x2": 507.5440418819985, + "r_y2": 198.82794068726287, + "r_x3": 72.00000026697958, + "r_y3": 198.82794068726287, + "coord_origin": "TOPLEFT" + }, + "text": "revolutionized written communication by enabling people to produce legible, professional ", + "orig": "revolutionized written communication by enabling people to produce legible, professional ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 226.2719707821251, + "r_x1": 294.60361109240483, + "r_y1": 226.2719707821251, + "r_x2": 294.60361109240483, + "r_y2": 212.987970736208, + "r_x3": 72.00000026697958, + "r_y3": 212.987970736208, + "coord_origin": "TOPLEFT" + }, + "text": "documents more efficiently than handwriting. ", + "orig": "documents more efficiently than handwriting. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 253.6319608766969, + "r_x1": 485.8655118016134, + "r_y1": 253.6319608766969, + "r_x2": 485.8655118016134, + "r_y2": 240.3479608307798, + "r_x3": 72.00000026697958, + "r_y3": 240.3479608307798, + "coord_origin": "TOPLEFT" + }, + "text": "During this period, the term \"word processing\" didn't exist, but the typewriter laid the ", + "orig": "During this period, the term \"word processing\" didn't exist, but the typewriter laid the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 267.55194092481236, + "r_x1": 504.5038518707254, + "r_y1": 267.55194092481236, + "r_x2": 504.5038518707254, + "r_y2": 254.26794087889516, + "r_x3": 72.00000026697958, + "r_y3": 254.26794087889516, + "coord_origin": "TOPLEFT" + }, + "text": "groundwork for future developments. Over time, advancements such as carbon paper (for ", + "orig": "groundwork for future developments. Over time, advancements such as carbon paper (for ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 281.2319909720984, + "r_x1": 497.86462184610673, + "r_y1": 281.2319909720984, + "r_x2": 497.86462184610673, + "r_y2": 267.94793092618113, + "r_x3": 72.00000026697958, + "r_y3": 267.94793092618113, + "coord_origin": "TOPLEFT" + }, + "text": "copies) and the electric typewriter (introduced by IBM in 1935) improved the speed and ", + "orig": "copies) and the electric typewriter (introduced by IBM in 1935) improved the speed and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 295.39196102104336, + "r_x1": 242.92383090077365, + "r_y1": 295.39196102104336, + "r_x2": 242.92383090077365, + "r_y2": 282.10797097512625, + "r_x3": 72.00000026697958, + "r_y3": 282.10797097512625, + "coord_origin": "TOPLEFT" + }, + "text": "convenience of document creation. ", + "orig": "convenience of document creation. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 352.5830012187282, + "r_x1": 336.7180512485673, + "r_y1": 352.5830012187282, + "r_x2": 336.7180512485673, + "r_y2": 337.7049211673011, + "r_x3": 72.00000026697958, + "r_y3": 337.7049211673011, + "coord_origin": "TOPLEFT" + }, + "text": "The Birth of Word Processing (1960s - 1970s) ", + "orig": "The Birth of Word Processing (1960s - 1970s) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 380.3519613147136, + "r_x1": 521.6542419343198, + "r_y1": 380.3519613147136, + "r_x2": 521.6542419343198, + "r_y2": 367.0679612687965, + "r_x3": 72.00000026697958, + "r_y3": 367.0679612687965, + "coord_origin": "TOPLEFT" + }, + "text": "The term \"word processor\" first emerged in the 1960s and referred to any system designed to ", + "orig": "The term \"word processor\" first emerged in the 1960s and referred to any system designed to ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 394.0319513619994, + "r_x1": 523.1927519400248, + "r_y1": 394.0319513619994, + "r_x2": 523.1927519400248, + "r_y2": 380.7479813160824, + "r_x3": 72.00000026697958, + "r_y3": 380.7479813160824, + "coord_origin": "TOPLEFT" + }, + "text": "streamline written communication and document production. Early word processors were not ", + "orig": "streamline written communication and document production. Early word processors were not ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 408.19195141094445, + "r_x1": 319.5820911850263, + "r_y1": 408.19195141094445, + "r_x2": 319.5820911850263, + "r_y2": 394.9079613650274, + "r_x3": 72.00000026697958, + "r_y3": 394.9079613650274, + "coord_origin": "TOPLEFT" + }, + "text": "software programs but rather standalone machines. ", + "orig": "software programs but rather standalone machines. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 435.1775515042221, + "r_x1": 94.63680335091797, + "r_y1": 435.1775515042221, + "r_x2": 94.63680335091797, + "r_y2": 422.8295614615404, + "r_x3": 90.00000033372447, + "r_y3": 422.8295614615404, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 435.55194150551625, + "r_x1": 368.59430136676593, + "r_y1": 435.55194150551625, + "r_x2": 368.59430136676593, + "r_y2": 422.2679414595992, + "r_x3": 108.00000040046937, + "r_y3": 422.2679414595992, + "coord_origin": "TOPLEFT" + }, + "text": "IBM MT/ST (Magnetic Tape/Selectric Typewriter)", + "orig": "IBM MT/ST (Magnetic Tape/Selectric Typewriter)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 368.601591366793, + "r_y0": 435.55194150551625, + "r_x1": 492.58316182652294, + "r_y1": 435.55194150551625, + "r_x2": 492.58316182652294, + "r_y2": 422.2679414595992, + "r_x3": 368.601591366793, + "r_y3": 422.2679414595992, + "coord_origin": "TOPLEFT" + }, + "text": ": Introduced in 1964, this ", + "orig": ": Introduced in 1964, this ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 449.47198155363185, + "r_x1": 518.011111920811, + "r_y1": 449.47198155363185, + "r_x2": 518.011111920811, + "r_y2": 436.1879515077147, + "r_x3": 108.00000040046937, + "r_y3": 436.1879515077147, + "coord_origin": "TOPLEFT" + }, + "text": "machine combined IBM's Selectric typewriter with magnetic tape storage. It allowed ", + "orig": "machine combined IBM's Selectric typewriter with magnetic tape storage. It allowed ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 463.1519716009177, + "r_x1": 491.5230418225918, + "r_y1": 463.1519716009177, + "r_x2": 491.5230418225918, + "r_y2": 449.86795155500056, + "r_x3": 108.00000040046937, + "r_y3": 449.86795155500056, + "coord_origin": "TOPLEFT" + }, + "text": "users to record, edit, and replay typed content-an early example of digital text ", + "orig": "users to record, edit, and replay typed content-an early example of digital text ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 477.07196164903314, + "r_x1": 148.65236055121034, + "r_y1": 477.07196164903314, + "r_x2": 148.65236055121034, + "r_y2": 463.78793160311596, + "r_x3": 108.00000040046937, + "r_y3": 463.78793160311596, + "coord_origin": "TOPLEFT" + }, + "text": "storage. ", + "orig": "storage. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 490.37756169502495, + "r_x1": 94.63680335091797, + "r_y1": 490.37756169502495, + "r_x2": 94.63680335091797, + "r_y2": 478.02957165234324, + "r_x3": 90.00000033372447, + "r_y3": 478.02957165234324, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 490.7519816963191, + "r_x1": 208.32721077248766, + "r_y1": 490.7519816963191, + "r_x2": 208.32721077248766, + "r_y2": 477.4679516504019, + "r_x3": 108.00000040046937, + "r_y3": 477.4679516504019, + "coord_origin": "TOPLEFT" + }, + "text": "Wang Laboratories", + "orig": "Wang Laboratories", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 208.3300807724983, + "r_y0": 490.7519816963191, + "r_x1": 496.9083318425608, + "r_y1": 490.7519816963191, + "r_x2": 496.9083318425608, + "r_y2": 477.4679516504019, + "r_x3": 208.3300807724983, + "r_y3": 477.4679516504019, + "coord_origin": "TOPLEFT" + }, + "text": ": In the 1970s, Wang introduced dedicated word processing ", + "orig": ": In the 1970s, Wang introduced dedicated word processing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 504.6719617444345, + "r_x1": 497.51746184481954, + "r_y1": 504.6719617444345, + "r_x2": 497.51746184481954, + "r_y2": 491.38794169851735, + "r_x3": 108.00000040046937, + "r_y3": 491.38794169851735, + "coord_origin": "TOPLEFT" + }, + "text": "machines. These devices, like the Wang 1200, featured small screens and floppy ", + "orig": "machines. These devices, like the Wang 1200, featured small screens and floppy ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 518.5919817925501, + "r_x1": 341.6191112667406, + "r_y1": 518.5919817925501, + "r_x2": 341.6191112667406, + "r_y2": 505.30795174663285, + "r_x3": 108.00000040046937, + "r_y3": 505.30795174663285, + "coord_origin": "TOPLEFT" + }, + "text": "disks, making them revolutionary for their time. ", + "orig": "disks, making them revolutionary for their time. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 546.1919518879513, + "r_x1": 514.4709519076839, + "r_y1": 546.1919518879513, + "r_x2": 514.4709519076839, + "r_y2": 532.9079618420342, + "r_x3": 72.00000026697958, + "r_y3": 532.9079618420342, + "coord_origin": "TOPLEFT" + }, + "text": "These machines were primarily used in offices, where secretarial pools benefited from their ", + "orig": "These machines were primarily used in offices, where secretarial pools benefited from their ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 28, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 560.3519619368964, + "r_x1": 364.2772813507583, + "r_y1": 560.3519619368964, + "r_x2": 364.2772813507583, + "r_y2": 547.0679318909793, + "r_x3": 72.00000026697958, + "r_y3": 547.0679318909793, + "coord_origin": "TOPLEFT" + }, + "text": "ability to make revisions without retyping entire documents. ", + "orig": "ability to make revisions without retyping entire documents. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 29, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 617.5429721345812, + "r_x1": 306.7123111373045, + "r_y1": 617.5429721345812, + "r_x2": 306.7123111373045, + "r_y2": 602.6649120831541, + "r_x3": 72.00000026697958, + "r_y3": 602.6649120831541, + "coord_origin": "TOPLEFT" + }, + "text": "The Rise of Personal Computers (1980s) ", + "orig": "The Rise of Personal Computers (1980s) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 30, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 645.0719622297371, + "r_x1": 487.8694518090441, + "r_y1": 645.0719622297371, + "r_x2": 487.8694518090441, + "r_y2": 631.7879321838199, + "r_x3": 72.00000026697958, + "r_y3": 631.7879321838199, + "coord_origin": "TOPLEFT" + }, + "text": "The advent of personal computers in the late 1970s and early 1980s transformed word ", + "orig": "The advent of personal computers in the late 1970s and early 1980s transformed word ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 31, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 659.2319622786822, + "r_x1": 515.5663519117458, + "r_y1": 659.2319622786822, + "r_x2": 515.5663519117458, + "r_y2": 645.947932232765, + "r_x3": 72.00000026697958, + "r_y3": 645.947932232765, + "coord_origin": "TOPLEFT" + }, + "text": "processing from a niche tool to an essential technology for businesses and individuals alike. ", + "orig": "processing from a niche tool to an essential technology for businesses and individuals alike. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 32, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 686.4575523727893, + "r_x1": 94.63680335091797, + "r_y1": 686.4575523727893, + "r_x2": 94.63680335091797, + "r_y2": 674.1095623301076, + "r_x3": 90.00000033372447, + "r_y3": 674.1095623301076, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 33, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 686.8319723740835, + "r_x1": 194.98799072302515, + "r_y1": 686.8319723740835, + "r_x2": 194.98799072302515, + "r_y2": 673.5479423281663, + "r_x3": 108.00000040046937, + "r_y3": 673.5479423281663, + "coord_origin": "TOPLEFT" + }, + "text": "WordStar (1978)", + "orig": "WordStar (1978)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 34, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 194.98828072302624, + "r_y0": 686.8319723740835, + "r_x1": 514.9152819093315, + "r_y1": 686.8319723740835, + "r_x2": 514.9152819093315, + "r_y2": 673.5479423281663, + "r_x3": 194.98828072302624, + "r_y3": 673.5479423281663, + "coord_origin": "TOPLEFT" + }, + "text": ": Developed for the CP/M operating system, WordStar was one of ", + "orig": ": Developed for the CP/M operating system, WordStar was one of ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 35, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 700.5119624213694, + "r_x1": 522.527771937559, + "r_y1": 700.5119624213694, + "r_x2": 522.527771937559, + "r_y2": 687.2279323754522, + "r_x3": 108.00000040046937, + "r_y3": 687.2279323754522, + "coord_origin": "TOPLEFT" + }, + "text": "the first widely used word processing programs. It featured early examples of modern ", + "orig": "the first widely used word processing programs. It featured early examples of modern ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 36, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 714.4319424694847, + "r_x1": 270.9374410046495, + "r_y1": 714.4319424694847, + "r_x2": 270.9374410046495, + "r_y2": 701.1479524235677, + "r_x3": 108.00000040046937, + "r_y3": 701.1479524235677, + "coord_origin": "TOPLEFT" + }, + "text": "features like cut, copy, and paste. ", + "orig": "features like cut, copy, and paste. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 37, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 727.7375525154766, + "r_x1": 94.63680335091797, + "r_y1": 727.7375525154766, + "r_x2": 94.63680335091797, + "r_y2": 715.3895824727949, + "r_x3": 90.00000033372447, + "r_y3": 715.3895824727949, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 38, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 728.1119425167707, + "r_x1": 225.9647808378886, + "r_y1": 728.1119425167707, + "r_x2": 225.9647808378886, + "r_y2": 714.8279424708536, + "r_x3": 108.00000040046937, + "r_y3": 714.8279424708536, + "coord_origin": "TOPLEFT" + }, + "text": "Microsoft Word (1983)", + "orig": "Microsoft Word (1983)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 39, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 225.96680083789616, + "r_y0": 728.1119425167707, + "r_x1": 525.2570219476792, + "r_y1": 728.1119425167707, + "r_x2": 525.2570219476792, + "r_y2": 714.8279424708536, + "r_x3": 225.96680083789616, + "r_y3": 714.8279424708536, + "coord_origin": "TOPLEFT" + }, + "text": ": Microsoft launched Word for MS-DOS in 1983, introducing ", + "orig": ": Microsoft launched Word for MS-DOS in 1983, introducing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 40, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 742.0319825648862, + "r_x1": 517.5070819189419, + "r_y1": 742.0319825648862, + "r_x2": 517.5070819189419, + "r_y2": 728.747922518969, + "r_x3": 108.00000040046937, + "r_y3": 728.747922518969, + "coord_origin": "TOPLEFT" + }, + "text": "a graphical user interface (GUI) and mouse support. Over the years, Microsoft Word ", + "orig": "a graphical user interface (GUI) and mouse support. Over the years, Microsoft Word ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 41, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 755.9519646130017, + "r_x1": 353.26175130991214, + "r_y1": 755.9519646130017, + "r_x2": 353.26175130991214, + "r_y2": 742.6679685670846, + "r_x3": 108.00000040046937, + "r_y3": 742.6679685670846, + "coord_origin": "TOPLEFT" + }, + "text": "became the industry standard for word processing. ", + "orig": "became the industry standard for word processing. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "parsed_page": null, + "predictions": { + "layout": { + "clusters": [ + { + "id": 13, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 72.58795025090546, + "r": 262.98718097516957, + "b": 85.87195029682243, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9216852784156799, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 85.87195029682243, + "r_x1": 262.98718097516957, + "r_y1": 85.87195029682243, + "r_x2": 262.98718097516957, + "r_y2": 72.58795025090546, + "r_x3": 72.00000026697958, + "r_y3": 72.58795025090546, + "coord_origin": "TOPLEFT" + }, + "text": "The Evolution of the Word Processor", + "orig": "The Evolution of the Word Processor", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 6, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 100.18799034630695, + "r": 497.51987184482846, + "b": 127.39196044033929, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9795150756835938, + "cells": [ + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 113.47198039222405, + "r_x1": 497.51987184482846, + "r_y1": 113.47198039222405, + "r_x2": 497.51987184482846, + "r_y2": 100.18799034630695, + "r_x3": 72.00000026697958, + "r_y3": 100.18799034630695, + "coord_origin": "TOPLEFT" + }, + "text": "The concept of the word processor predates modern computers and has evolved through ", + "orig": "The concept of the word processor predates modern computers and has evolved through ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 127.39196044033929, + "r_x1": 233.94727086748813, + "r_y1": 127.39196044033929, + "r_x2": 233.94727086748813, + "r_y2": 114.10797039442241, + "r_x3": 72.00000026697958, + "r_y3": 114.10797039442241, + "coord_origin": "TOPLEFT" + }, + "text": "several technological milestones. ", + "orig": "several technological milestones. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 11, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 142.1049204911958, + "r": 325.8153412081395, + "b": 156.98303054262306, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9472767114639282, + "cells": [ + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 156.98303054262306, + "r_x1": 325.8153412081395, + "r_y1": 156.98303054262306, + "r_x2": 325.8153412081395, + "r_y2": 142.1049204911958, + "r_x3": 72.00000026697958, + "r_y3": 142.1049204911958, + "coord_origin": "TOPLEFT" + }, + "text": "Pre-Digital Era (19th - Early 20th Century) ", + "orig": "Pre-Digital Era (19th - Early 20th Century) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 0, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 171.2279605918617, + "r": 508.1806618843591, + "b": 226.2719707821251, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.986640989780426, + "cells": [ + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 184.51196063777877, + "r_x1": 508.1806618843591, + "r_y1": 184.51196063777877, + "r_x2": 508.1806618843591, + "r_y2": 171.2279605918617, + "r_x3": 72.00000026697958, + "r_y3": 171.2279605918617, + "coord_origin": "TOPLEFT" + }, + "text": "The origins of word processing can be traced back to the invention of the typewriter in the ", + "orig": "The origins of word processing can be traced back to the invention of the typewriter in the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 198.43194068589423, + "r_x1": 466.9111617313298, + "r_y1": 198.43194068589423, + "r_x2": 466.9111617313298, + "r_y2": 185.14795063997713, + "r_x3": 72.00000026697958, + "r_y3": 185.14795063997713, + "coord_origin": "TOPLEFT" + }, + "text": "mid-19th century. Patented in 1868 by Christopher Latham Sholes, the typewriter ", + "orig": "mid-19th century. Patented in 1868 by Christopher Latham Sholes, the typewriter ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 212.11194073318006, + "r_x1": 507.5440418819985, + "r_y1": 212.11194073318006, + "r_x2": 507.5440418819985, + "r_y2": 198.82794068726287, + "r_x3": 72.00000026697958, + "r_y3": 198.82794068726287, + "coord_origin": "TOPLEFT" + }, + "text": "revolutionized written communication by enabling people to produce legible, professional ", + "orig": "revolutionized written communication by enabling people to produce legible, professional ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 226.2719707821251, + "r_x1": 294.60361109240483, + "r_y1": 226.2719707821251, + "r_x2": 294.60361109240483, + "r_y2": 212.987970736208, + "r_x3": 72.00000026697958, + "r_y3": 212.987970736208, + "coord_origin": "TOPLEFT" + }, + "text": "documents more efficiently than handwriting. ", + "orig": "documents more efficiently than handwriting. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 2, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 240.3479608307798, + "r": 504.5038518707254, + "b": 295.39196102104336, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9847150444984436, + "cells": [ + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 253.6319608766969, + "r_x1": 485.8655118016134, + "r_y1": 253.6319608766969, + "r_x2": 485.8655118016134, + "r_y2": 240.3479608307798, + "r_x3": 72.00000026697958, + "r_y3": 240.3479608307798, + "coord_origin": "TOPLEFT" + }, + "text": "During this period, the term \"word processing\" didn't exist, but the typewriter laid the ", + "orig": "During this period, the term \"word processing\" didn't exist, but the typewriter laid the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 267.55194092481236, + "r_x1": 504.5038518707254, + "r_y1": 267.55194092481236, + "r_x2": 504.5038518707254, + "r_y2": 254.26794087889516, + "r_x3": 72.00000026697958, + "r_y3": 254.26794087889516, + "coord_origin": "TOPLEFT" + }, + "text": "groundwork for future developments. Over time, advancements such as carbon paper (for ", + "orig": "groundwork for future developments. Over time, advancements such as carbon paper (for ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 281.2319909720984, + "r_x1": 497.86462184610673, + "r_y1": 281.2319909720984, + "r_x2": 497.86462184610673, + "r_y2": 267.94793092618113, + "r_x3": 72.00000026697958, + "r_y3": 267.94793092618113, + "coord_origin": "TOPLEFT" + }, + "text": "copies) and the electric typewriter (introduced by IBM in 1935) improved the speed and ", + "orig": "copies) and the electric typewriter (introduced by IBM in 1935) improved the speed and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 295.39196102104336, + "r_x1": 242.92383090077365, + "r_y1": 295.39196102104336, + "r_x2": 242.92383090077365, + "r_y2": 282.10797097512625, + "r_x3": 72.00000026697958, + "r_y3": 282.10797097512625, + "coord_origin": "TOPLEFT" + }, + "text": "convenience of document creation. ", + "orig": "convenience of document creation. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 12, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 337.7049211673011, + "r": 336.7180512485673, + "b": 352.5830012187282, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9312856793403625, + "cells": [ + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 352.5830012187282, + "r_x1": 336.7180512485673, + "r_y1": 352.5830012187282, + "r_x2": 336.7180512485673, + "r_y2": 337.7049211673011, + "r_x3": 72.00000026697958, + "r_y3": 337.7049211673011, + "coord_origin": "TOPLEFT" + }, + "text": "The Birth of Word Processing (1960s - 1970s) ", + "orig": "The Birth of Word Processing (1960s - 1970s) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 1, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 367.0679612687965, + "r": 523.1927519400248, + "b": 408.19195141094445, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9855563044548035, + "cells": [ + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 380.3519613147136, + "r_x1": 521.6542419343198, + "r_y1": 380.3519613147136, + "r_x2": 521.6542419343198, + "r_y2": 367.0679612687965, + "r_x3": 72.00000026697958, + "r_y3": 367.0679612687965, + "coord_origin": "TOPLEFT" + }, + "text": "The term \"word processor\" first emerged in the 1960s and referred to any system designed to ", + "orig": "The term \"word processor\" first emerged in the 1960s and referred to any system designed to ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 394.0319513619994, + "r_x1": 523.1927519400248, + "r_y1": 394.0319513619994, + "r_x2": 523.1927519400248, + "r_y2": 380.7479813160824, + "r_x3": 72.00000026697958, + "r_y3": 380.7479813160824, + "coord_origin": "TOPLEFT" + }, + "text": "streamline written communication and document production. Early word processors were not ", + "orig": "streamline written communication and document production. Early word processors were not ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 408.19195141094445, + "r_x1": 319.5820911850263, + "r_y1": 408.19195141094445, + "r_x2": 319.5820911850263, + "r_y2": 394.9079613650274, + "r_x3": 72.00000026697958, + "r_y3": 394.9079613650274, + "coord_origin": "TOPLEFT" + }, + "text": "software programs but rather standalone machines. ", + "orig": "software programs but rather standalone machines. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 4, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 422.2679414595992, + "r": 518.011111920811, + "b": 477.07196164903314, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9806972742080688, + "cells": [ + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 435.1775515042221, + "r_x1": 94.63680335091797, + "r_y1": 435.1775515042221, + "r_x2": 94.63680335091797, + "r_y2": 422.8295614615404, + "r_x3": 90.00000033372447, + "r_y3": 422.8295614615404, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 435.55194150551625, + "r_x1": 368.59430136676593, + "r_y1": 435.55194150551625, + "r_x2": 368.59430136676593, + "r_y2": 422.2679414595992, + "r_x3": 108.00000040046937, + "r_y3": 422.2679414595992, + "coord_origin": "TOPLEFT" + }, + "text": "IBM MT/ST (Magnetic Tape/Selectric Typewriter)", + "orig": "IBM MT/ST (Magnetic Tape/Selectric Typewriter)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 368.601591366793, + "r_y0": 435.55194150551625, + "r_x1": 492.58316182652294, + "r_y1": 435.55194150551625, + "r_x2": 492.58316182652294, + "r_y2": 422.2679414595992, + "r_x3": 368.601591366793, + "r_y3": 422.2679414595992, + "coord_origin": "TOPLEFT" + }, + "text": ": Introduced in 1964, this ", + "orig": ": Introduced in 1964, this ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 449.47198155363185, + "r_x1": 518.011111920811, + "r_y1": 449.47198155363185, + "r_x2": 518.011111920811, + "r_y2": 436.1879515077147, + "r_x3": 108.00000040046937, + "r_y3": 436.1879515077147, + "coord_origin": "TOPLEFT" + }, + "text": "machine combined IBM's Selectric typewriter with magnetic tape storage. It allowed ", + "orig": "machine combined IBM's Selectric typewriter with magnetic tape storage. It allowed ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 463.1519716009177, + "r_x1": 491.5230418225918, + "r_y1": 463.1519716009177, + "r_x2": 491.5230418225918, + "r_y2": 449.86795155500056, + "r_x3": 108.00000040046937, + "r_y3": 449.86795155500056, + "coord_origin": "TOPLEFT" + }, + "text": "users to record, edit, and replay typed content-an early example of digital text ", + "orig": "users to record, edit, and replay typed content-an early example of digital text ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 477.07196164903314, + "r_x1": 148.65236055121034, + "r_y1": 477.07196164903314, + "r_x2": 148.65236055121034, + "r_y2": 463.78793160311596, + "r_x3": 108.00000040046937, + "r_y3": 463.78793160311596, + "coord_origin": "TOPLEFT" + }, + "text": "storage. ", + "orig": "storage. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 3, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 477.4679516504019, + "r": 497.51746184481954, + "b": 518.5919817925501, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9817657470703125, + "cells": [ + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 490.37756169502495, + "r_x1": 94.63680335091797, + "r_y1": 490.37756169502495, + "r_x2": 94.63680335091797, + "r_y2": 478.02957165234324, + "r_x3": 90.00000033372447, + "r_y3": 478.02957165234324, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 490.7519816963191, + "r_x1": 208.32721077248766, + "r_y1": 490.7519816963191, + "r_x2": 208.32721077248766, + "r_y2": 477.4679516504019, + "r_x3": 108.00000040046937, + "r_y3": 477.4679516504019, + "coord_origin": "TOPLEFT" + }, + "text": "Wang Laboratories", + "orig": "Wang Laboratories", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 208.3300807724983, + "r_y0": 490.7519816963191, + "r_x1": 496.9083318425608, + "r_y1": 490.7519816963191, + "r_x2": 496.9083318425608, + "r_y2": 477.4679516504019, + "r_x3": 208.3300807724983, + "r_y3": 477.4679516504019, + "coord_origin": "TOPLEFT" + }, + "text": ": In the 1970s, Wang introduced dedicated word processing ", + "orig": ": In the 1970s, Wang introduced dedicated word processing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 504.6719617444345, + "r_x1": 497.51746184481954, + "r_y1": 504.6719617444345, + "r_x2": 497.51746184481954, + "r_y2": 491.38794169851735, + "r_x3": 108.00000040046937, + "r_y3": 491.38794169851735, + "coord_origin": "TOPLEFT" + }, + "text": "machines. These devices, like the Wang 1200, featured small screens and floppy ", + "orig": "machines. These devices, like the Wang 1200, featured small screens and floppy ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 518.5919817925501, + "r_x1": 341.6191112667406, + "r_y1": 518.5919817925501, + "r_x2": 341.6191112667406, + "r_y2": 505.30795174663285, + "r_x3": 108.00000040046937, + "r_y3": 505.30795174663285, + "coord_origin": "TOPLEFT" + }, + "text": "disks, making them revolutionary for their time. ", + "orig": "disks, making them revolutionary for their time. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 7, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 532.9079618420342, + "r": 514.4709519076839, + "b": 560.3519619368964, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9792535305023193, + "cells": [ + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 546.1919518879513, + "r_x1": 514.4709519076839, + "r_y1": 546.1919518879513, + "r_x2": 514.4709519076839, + "r_y2": 532.9079618420342, + "r_x3": 72.00000026697958, + "r_y3": 532.9079618420342, + "coord_origin": "TOPLEFT" + }, + "text": "These machines were primarily used in offices, where secretarial pools benefited from their ", + "orig": "These machines were primarily used in offices, where secretarial pools benefited from their ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 28, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 560.3519619368964, + "r_x1": 364.2772813507583, + "r_y1": 560.3519619368964, + "r_x2": 364.2772813507583, + "r_y2": 547.0679318909793, + "r_x3": 72.00000026697958, + "r_y3": 547.0679318909793, + "coord_origin": "TOPLEFT" + }, + "text": "ability to make revisions without retyping entire documents. ", + "orig": "ability to make revisions without retyping entire documents. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 10, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 602.6649120831541, + "r": 306.7123111373045, + "b": 617.5429721345812, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.950114905834198, + "cells": [ + { + "index": 29, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 617.5429721345812, + "r_x1": 306.7123111373045, + "r_y1": 617.5429721345812, + "r_x2": 306.7123111373045, + "r_y2": 602.6649120831541, + "r_x3": 72.00000026697958, + "r_y3": 602.6649120831541, + "coord_origin": "TOPLEFT" + }, + "text": "The Rise of Personal Computers (1980s) ", + "orig": "The Rise of Personal Computers (1980s) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 9, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 631.7879321838199, + "r": 515.5663519117458, + "b": 659.2319622786822, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9778240919113159, + "cells": [ + { + "index": 30, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 645.0719622297371, + "r_x1": 487.8694518090441, + "r_y1": 645.0719622297371, + "r_x2": 487.8694518090441, + "r_y2": 631.7879321838199, + "r_x3": 72.00000026697958, + "r_y3": 631.7879321838199, + "coord_origin": "TOPLEFT" + }, + "text": "The advent of personal computers in the late 1970s and early 1980s transformed word ", + "orig": "The advent of personal computers in the late 1970s and early 1980s transformed word ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 31, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 659.2319622786822, + "r_x1": 515.5663519117458, + "r_y1": 659.2319622786822, + "r_x2": 515.5663519117458, + "r_y2": 645.947932232765, + "r_x3": 72.00000026697958, + "r_y3": 645.947932232765, + "coord_origin": "TOPLEFT" + }, + "text": "processing from a niche tool to an essential technology for businesses and individuals alike. ", + "orig": "processing from a niche tool to an essential technology for businesses and individuals alike. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 8, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 673.5479423281663, + "r": 522.527771937559, + "b": 714.4319424694847, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9782076478004456, + "cells": [ + { + "index": 32, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 686.4575523727893, + "r_x1": 94.63680335091797, + "r_y1": 686.4575523727893, + "r_x2": 94.63680335091797, + "r_y2": 674.1095623301076, + "r_x3": 90.00000033372447, + "r_y3": 674.1095623301076, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 33, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 686.8319723740835, + "r_x1": 194.98799072302515, + "r_y1": 686.8319723740835, + "r_x2": 194.98799072302515, + "r_y2": 673.5479423281663, + "r_x3": 108.00000040046937, + "r_y3": 673.5479423281663, + "coord_origin": "TOPLEFT" + }, + "text": "WordStar (1978)", + "orig": "WordStar (1978)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 34, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 194.98828072302624, + "r_y0": 686.8319723740835, + "r_x1": 514.9152819093315, + "r_y1": 686.8319723740835, + "r_x2": 514.9152819093315, + "r_y2": 673.5479423281663, + "r_x3": 194.98828072302624, + "r_y3": 673.5479423281663, + "coord_origin": "TOPLEFT" + }, + "text": ": Developed for the CP/M operating system, WordStar was one of ", + "orig": ": Developed for the CP/M operating system, WordStar was one of ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 35, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 700.5119624213694, + "r_x1": 522.527771937559, + "r_y1": 700.5119624213694, + "r_x2": 522.527771937559, + "r_y2": 687.2279323754522, + "r_x3": 108.00000040046937, + "r_y3": 687.2279323754522, + "coord_origin": "TOPLEFT" + }, + "text": "the first widely used word processing programs. It featured early examples of modern ", + "orig": "the first widely used word processing programs. It featured early examples of modern ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 36, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 714.4319424694847, + "r_x1": 270.9374410046495, + "r_y1": 714.4319424694847, + "r_x2": 270.9374410046495, + "r_y2": 701.1479524235677, + "r_x3": 108.00000040046937, + "r_y3": 701.1479524235677, + "coord_origin": "TOPLEFT" + }, + "text": "features like cut, copy, and paste. ", + "orig": "features like cut, copy, and paste. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 5, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 714.8279424708536, + "r": 525.2570219476792, + "b": 755.9519646130017, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9797734618186951, + "cells": [ + { + "index": 37, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 727.7375525154766, + "r_x1": 94.63680335091797, + "r_y1": 727.7375525154766, + "r_x2": 94.63680335091797, + "r_y2": 715.3895824727949, + "r_x3": 90.00000033372447, + "r_y3": 715.3895824727949, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 38, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 728.1119425167707, + "r_x1": 225.9647808378886, + "r_y1": 728.1119425167707, + "r_x2": 225.9647808378886, + "r_y2": 714.8279424708536, + "r_x3": 108.00000040046937, + "r_y3": 714.8279424708536, + "coord_origin": "TOPLEFT" + }, + "text": "Microsoft Word (1983)", + "orig": "Microsoft Word (1983)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 39, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 225.96680083789616, + "r_y0": 728.1119425167707, + "r_x1": 525.2570219476792, + "r_y1": 728.1119425167707, + "r_x2": 525.2570219476792, + "r_y2": 714.8279424708536, + "r_x3": 225.96680083789616, + "r_y3": 714.8279424708536, + "coord_origin": "TOPLEFT" + }, + "text": ": Microsoft launched Word for MS-DOS in 1983, introducing ", + "orig": ": Microsoft launched Word for MS-DOS in 1983, introducing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 40, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 742.0319825648862, + "r_x1": 517.5070819189419, + "r_y1": 742.0319825648862, + "r_x2": 517.5070819189419, + "r_y2": 728.747922518969, + "r_x3": 108.00000040046937, + "r_y3": 728.747922518969, + "coord_origin": "TOPLEFT" + }, + "text": "a graphical user interface (GUI) and mouse support. Over the years, Microsoft Word ", + "orig": "a graphical user interface (GUI) and mouse support. Over the years, Microsoft Word ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 41, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 755.9519646130017, + "r_x1": 353.26175130991214, + "r_y1": 755.9519646130017, + "r_x2": 353.26175130991214, + "r_y2": 742.6679685670846, + "r_x3": 108.00000040046937, + "r_y3": 742.6679685670846, + "coord_origin": "TOPLEFT" + }, + "text": "became the industry standard for word processing. ", + "orig": "became the industry standard for word processing. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + } + ] + }, + "tablestructure": { + "table_map": {} + }, + "figures_classification": null, + "equations_prediction": null, + "vlm_response": null + }, + "assembled": { + "elements": [ + { + "label": "section_header", + "id": 13, + "page_no": 0, + "cluster": { + "id": 13, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 72.58795025090546, + "r": 262.98718097516957, + "b": 85.87195029682243, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9216852784156799, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 85.87195029682243, + "r_x1": 262.98718097516957, + "r_y1": 85.87195029682243, + "r_x2": 262.98718097516957, + "r_y2": 72.58795025090546, + "r_x3": 72.00000026697958, + "r_y3": 72.58795025090546, + "coord_origin": "TOPLEFT" + }, + "text": "The Evolution of the Word Processor", + "orig": "The Evolution of the Word Processor", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The Evolution of the Word Processor" + }, + { + "label": "text", + "id": 6, + "page_no": 0, + "cluster": { + "id": 6, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 100.18799034630695, + "r": 497.51987184482846, + "b": 127.39196044033929, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9795150756835938, + "cells": [ + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 113.47198039222405, + "r_x1": 497.51987184482846, + "r_y1": 113.47198039222405, + "r_x2": 497.51987184482846, + "r_y2": 100.18799034630695, + "r_x3": 72.00000026697958, + "r_y3": 100.18799034630695, + "coord_origin": "TOPLEFT" + }, + "text": "The concept of the word processor predates modern computers and has evolved through ", + "orig": "The concept of the word processor predates modern computers and has evolved through ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 127.39196044033929, + "r_x1": 233.94727086748813, + "r_y1": 127.39196044033929, + "r_x2": 233.94727086748813, + "r_y2": 114.10797039442241, + "r_x3": 72.00000026697958, + "r_y3": 114.10797039442241, + "coord_origin": "TOPLEFT" + }, + "text": "several technological milestones. ", + "orig": "several technological milestones. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The concept of the word processor predates modern computers and has evolved through several technological milestones." + }, + { + "label": "section_header", + "id": 11, + "page_no": 0, + "cluster": { + "id": 11, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 142.1049204911958, + "r": 325.8153412081395, + "b": 156.98303054262306, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9472767114639282, + "cells": [ + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 156.98303054262306, + "r_x1": 325.8153412081395, + "r_y1": 156.98303054262306, + "r_x2": 325.8153412081395, + "r_y2": 142.1049204911958, + "r_x3": 72.00000026697958, + "r_y3": 142.1049204911958, + "coord_origin": "TOPLEFT" + }, + "text": "Pre-Digital Era (19th - Early 20th Century) ", + "orig": "Pre-Digital Era (19th - Early 20th Century) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "Pre-Digital Era (19th - Early 20th Century)" + }, + { + "label": "text", + "id": 0, + "page_no": 0, + "cluster": { + "id": 0, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 171.2279605918617, + "r": 508.1806618843591, + "b": 226.2719707821251, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.986640989780426, + "cells": [ + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 184.51196063777877, + "r_x1": 508.1806618843591, + "r_y1": 184.51196063777877, + "r_x2": 508.1806618843591, + "r_y2": 171.2279605918617, + "r_x3": 72.00000026697958, + "r_y3": 171.2279605918617, + "coord_origin": "TOPLEFT" + }, + "text": "The origins of word processing can be traced back to the invention of the typewriter in the ", + "orig": "The origins of word processing can be traced back to the invention of the typewriter in the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 198.43194068589423, + "r_x1": 466.9111617313298, + "r_y1": 198.43194068589423, + "r_x2": 466.9111617313298, + "r_y2": 185.14795063997713, + "r_x3": 72.00000026697958, + "r_y3": 185.14795063997713, + "coord_origin": "TOPLEFT" + }, + "text": "mid-19th century. Patented in 1868 by Christopher Latham Sholes, the typewriter ", + "orig": "mid-19th century. Patented in 1868 by Christopher Latham Sholes, the typewriter ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 212.11194073318006, + "r_x1": 507.5440418819985, + "r_y1": 212.11194073318006, + "r_x2": 507.5440418819985, + "r_y2": 198.82794068726287, + "r_x3": 72.00000026697958, + "r_y3": 198.82794068726287, + "coord_origin": "TOPLEFT" + }, + "text": "revolutionized written communication by enabling people to produce legible, professional ", + "orig": "revolutionized written communication by enabling people to produce legible, professional ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 226.2719707821251, + "r_x1": 294.60361109240483, + "r_y1": 226.2719707821251, + "r_x2": 294.60361109240483, + "r_y2": 212.987970736208, + "r_x3": 72.00000026697958, + "r_y3": 212.987970736208, + "coord_origin": "TOPLEFT" + }, + "text": "documents more efficiently than handwriting. ", + "orig": "documents more efficiently than handwriting. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The origins of word processing can be traced back to the invention of the typewriter in the mid-19th century. Patented in 1868 by Christopher Latham Sholes, the typewriter revolutionized written communication by enabling people to produce legible, professional documents more efficiently than handwriting." + }, + { + "label": "text", + "id": 2, + "page_no": 0, + "cluster": { + "id": 2, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 240.3479608307798, + "r": 504.5038518707254, + "b": 295.39196102104336, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9847150444984436, + "cells": [ + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 253.6319608766969, + "r_x1": 485.8655118016134, + "r_y1": 253.6319608766969, + "r_x2": 485.8655118016134, + "r_y2": 240.3479608307798, + "r_x3": 72.00000026697958, + "r_y3": 240.3479608307798, + "coord_origin": "TOPLEFT" + }, + "text": "During this period, the term \"word processing\" didn't exist, but the typewriter laid the ", + "orig": "During this period, the term \"word processing\" didn't exist, but the typewriter laid the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 267.55194092481236, + "r_x1": 504.5038518707254, + "r_y1": 267.55194092481236, + "r_x2": 504.5038518707254, + "r_y2": 254.26794087889516, + "r_x3": 72.00000026697958, + "r_y3": 254.26794087889516, + "coord_origin": "TOPLEFT" + }, + "text": "groundwork for future developments. Over time, advancements such as carbon paper (for ", + "orig": "groundwork for future developments. Over time, advancements such as carbon paper (for ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 281.2319909720984, + "r_x1": 497.86462184610673, + "r_y1": 281.2319909720984, + "r_x2": 497.86462184610673, + "r_y2": 267.94793092618113, + "r_x3": 72.00000026697958, + "r_y3": 267.94793092618113, + "coord_origin": "TOPLEFT" + }, + "text": "copies) and the electric typewriter (introduced by IBM in 1935) improved the speed and ", + "orig": "copies) and the electric typewriter (introduced by IBM in 1935) improved the speed and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 295.39196102104336, + "r_x1": 242.92383090077365, + "r_y1": 295.39196102104336, + "r_x2": 242.92383090077365, + "r_y2": 282.10797097512625, + "r_x3": 72.00000026697958, + "r_y3": 282.10797097512625, + "coord_origin": "TOPLEFT" + }, + "text": "convenience of document creation. ", + "orig": "convenience of document creation. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "During this period, the term \"word processing\" didn't exist, but the typewriter laid the groundwork for future developments. Over time, advancements such as carbon paper (for copies) and the electric typewriter (introduced by IBM in 1935) improved the speed and convenience of document creation." + }, + { + "label": "section_header", + "id": 12, + "page_no": 0, + "cluster": { + "id": 12, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 337.7049211673011, + "r": 336.7180512485673, + "b": 352.5830012187282, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9312856793403625, + "cells": [ + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 352.5830012187282, + "r_x1": 336.7180512485673, + "r_y1": 352.5830012187282, + "r_x2": 336.7180512485673, + "r_y2": 337.7049211673011, + "r_x3": 72.00000026697958, + "r_y3": 337.7049211673011, + "coord_origin": "TOPLEFT" + }, + "text": "The Birth of Word Processing (1960s - 1970s) ", + "orig": "The Birth of Word Processing (1960s - 1970s) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The Birth of Word Processing (1960s - 1970s)" + }, + { + "label": "text", + "id": 1, + "page_no": 0, + "cluster": { + "id": 1, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 367.0679612687965, + "r": 523.1927519400248, + "b": 408.19195141094445, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9855563044548035, + "cells": [ + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 380.3519613147136, + "r_x1": 521.6542419343198, + "r_y1": 380.3519613147136, + "r_x2": 521.6542419343198, + "r_y2": 367.0679612687965, + "r_x3": 72.00000026697958, + "r_y3": 367.0679612687965, + "coord_origin": "TOPLEFT" + }, + "text": "The term \"word processor\" first emerged in the 1960s and referred to any system designed to ", + "orig": "The term \"word processor\" first emerged in the 1960s and referred to any system designed to ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 394.0319513619994, + "r_x1": 523.1927519400248, + "r_y1": 394.0319513619994, + "r_x2": 523.1927519400248, + "r_y2": 380.7479813160824, + "r_x3": 72.00000026697958, + "r_y3": 380.7479813160824, + "coord_origin": "TOPLEFT" + }, + "text": "streamline written communication and document production. Early word processors were not ", + "orig": "streamline written communication and document production. Early word processors were not ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 408.19195141094445, + "r_x1": 319.5820911850263, + "r_y1": 408.19195141094445, + "r_x2": 319.5820911850263, + "r_y2": 394.9079613650274, + "r_x3": 72.00000026697958, + "r_y3": 394.9079613650274, + "coord_origin": "TOPLEFT" + }, + "text": "software programs but rather standalone machines. ", + "orig": "software programs but rather standalone machines. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The term \"word processor\" first emerged in the 1960s and referred to any system designed to streamline written communication and document production. Early word processors were not software programs but rather standalone machines." + }, + { + "label": "list_item", + "id": 4, + "page_no": 0, + "cluster": { + "id": 4, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 422.2679414595992, + "r": 518.011111920811, + "b": 477.07196164903314, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9806972742080688, + "cells": [ + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 435.1775515042221, + "r_x1": 94.63680335091797, + "r_y1": 435.1775515042221, + "r_x2": 94.63680335091797, + "r_y2": 422.8295614615404, + "r_x3": 90.00000033372447, + "r_y3": 422.8295614615404, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 435.55194150551625, + "r_x1": 368.59430136676593, + "r_y1": 435.55194150551625, + "r_x2": 368.59430136676593, + "r_y2": 422.2679414595992, + "r_x3": 108.00000040046937, + "r_y3": 422.2679414595992, + "coord_origin": "TOPLEFT" + }, + "text": "IBM MT/ST (Magnetic Tape/Selectric Typewriter)", + "orig": "IBM MT/ST (Magnetic Tape/Selectric Typewriter)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 368.601591366793, + "r_y0": 435.55194150551625, + "r_x1": 492.58316182652294, + "r_y1": 435.55194150551625, + "r_x2": 492.58316182652294, + "r_y2": 422.2679414595992, + "r_x3": 368.601591366793, + "r_y3": 422.2679414595992, + "coord_origin": "TOPLEFT" + }, + "text": ": Introduced in 1964, this ", + "orig": ": Introduced in 1964, this ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 449.47198155363185, + "r_x1": 518.011111920811, + "r_y1": 449.47198155363185, + "r_x2": 518.011111920811, + "r_y2": 436.1879515077147, + "r_x3": 108.00000040046937, + "r_y3": 436.1879515077147, + "coord_origin": "TOPLEFT" + }, + "text": "machine combined IBM's Selectric typewriter with magnetic tape storage. It allowed ", + "orig": "machine combined IBM's Selectric typewriter with magnetic tape storage. It allowed ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 463.1519716009177, + "r_x1": 491.5230418225918, + "r_y1": 463.1519716009177, + "r_x2": 491.5230418225918, + "r_y2": 449.86795155500056, + "r_x3": 108.00000040046937, + "r_y3": 449.86795155500056, + "coord_origin": "TOPLEFT" + }, + "text": "users to record, edit, and replay typed content-an early example of digital text ", + "orig": "users to record, edit, and replay typed content-an early example of digital text ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 477.07196164903314, + "r_x1": 148.65236055121034, + "r_y1": 477.07196164903314, + "r_x2": 148.65236055121034, + "r_y2": 463.78793160311596, + "r_x3": 108.00000040046937, + "r_y3": 463.78793160311596, + "coord_origin": "TOPLEFT" + }, + "text": "storage. ", + "orig": "storage. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 IBM MT/ST (Magnetic Tape/Selectric Typewriter) : Introduced in 1964, this machine combined IBM's Selectric typewriter with magnetic tape storage. It allowed users to record, edit, and replay typed content-an early example of digital text storage." + }, + { + "label": "list_item", + "id": 3, + "page_no": 0, + "cluster": { + "id": 3, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 477.4679516504019, + "r": 497.51746184481954, + "b": 518.5919817925501, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9817657470703125, + "cells": [ + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 490.37756169502495, + "r_x1": 94.63680335091797, + "r_y1": 490.37756169502495, + "r_x2": 94.63680335091797, + "r_y2": 478.02957165234324, + "r_x3": 90.00000033372447, + "r_y3": 478.02957165234324, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 490.7519816963191, + "r_x1": 208.32721077248766, + "r_y1": 490.7519816963191, + "r_x2": 208.32721077248766, + "r_y2": 477.4679516504019, + "r_x3": 108.00000040046937, + "r_y3": 477.4679516504019, + "coord_origin": "TOPLEFT" + }, + "text": "Wang Laboratories", + "orig": "Wang Laboratories", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 208.3300807724983, + "r_y0": 490.7519816963191, + "r_x1": 496.9083318425608, + "r_y1": 490.7519816963191, + "r_x2": 496.9083318425608, + "r_y2": 477.4679516504019, + "r_x3": 208.3300807724983, + "r_y3": 477.4679516504019, + "coord_origin": "TOPLEFT" + }, + "text": ": In the 1970s, Wang introduced dedicated word processing ", + "orig": ": In the 1970s, Wang introduced dedicated word processing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 504.6719617444345, + "r_x1": 497.51746184481954, + "r_y1": 504.6719617444345, + "r_x2": 497.51746184481954, + "r_y2": 491.38794169851735, + "r_x3": 108.00000040046937, + "r_y3": 491.38794169851735, + "coord_origin": "TOPLEFT" + }, + "text": "machines. These devices, like the Wang 1200, featured small screens and floppy ", + "orig": "machines. These devices, like the Wang 1200, featured small screens and floppy ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 518.5919817925501, + "r_x1": 341.6191112667406, + "r_y1": 518.5919817925501, + "r_x2": 341.6191112667406, + "r_y2": 505.30795174663285, + "r_x3": 108.00000040046937, + "r_y3": 505.30795174663285, + "coord_origin": "TOPLEFT" + }, + "text": "disks, making them revolutionary for their time. ", + "orig": "disks, making them revolutionary for their time. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Wang Laboratories : In the 1970s, Wang introduced dedicated word processing machines. These devices, like the Wang 1200, featured small screens and floppy disks, making them revolutionary for their time." + }, + { + "label": "text", + "id": 7, + "page_no": 0, + "cluster": { + "id": 7, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 532.9079618420342, + "r": 514.4709519076839, + "b": 560.3519619368964, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9792535305023193, + "cells": [ + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 546.1919518879513, + "r_x1": 514.4709519076839, + "r_y1": 546.1919518879513, + "r_x2": 514.4709519076839, + "r_y2": 532.9079618420342, + "r_x3": 72.00000026697958, + "r_y3": 532.9079618420342, + "coord_origin": "TOPLEFT" + }, + "text": "These machines were primarily used in offices, where secretarial pools benefited from their ", + "orig": "These machines were primarily used in offices, where secretarial pools benefited from their ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 28, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 560.3519619368964, + "r_x1": 364.2772813507583, + "r_y1": 560.3519619368964, + "r_x2": 364.2772813507583, + "r_y2": 547.0679318909793, + "r_x3": 72.00000026697958, + "r_y3": 547.0679318909793, + "coord_origin": "TOPLEFT" + }, + "text": "ability to make revisions without retyping entire documents. ", + "orig": "ability to make revisions without retyping entire documents. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "These machines were primarily used in offices, where secretarial pools benefited from their ability to make revisions without retyping entire documents." + }, + { + "label": "section_header", + "id": 10, + "page_no": 0, + "cluster": { + "id": 10, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 602.6649120831541, + "r": 306.7123111373045, + "b": 617.5429721345812, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.950114905834198, + "cells": [ + { + "index": 29, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 617.5429721345812, + "r_x1": 306.7123111373045, + "r_y1": 617.5429721345812, + "r_x2": 306.7123111373045, + "r_y2": 602.6649120831541, + "r_x3": 72.00000026697958, + "r_y3": 602.6649120831541, + "coord_origin": "TOPLEFT" + }, + "text": "The Rise of Personal Computers (1980s) ", + "orig": "The Rise of Personal Computers (1980s) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The Rise of Personal Computers (1980s)" + }, + { + "label": "text", + "id": 9, + "page_no": 0, + "cluster": { + "id": 9, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 631.7879321838199, + "r": 515.5663519117458, + "b": 659.2319622786822, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9778240919113159, + "cells": [ + { + "index": 30, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 645.0719622297371, + "r_x1": 487.8694518090441, + "r_y1": 645.0719622297371, + "r_x2": 487.8694518090441, + "r_y2": 631.7879321838199, + "r_x3": 72.00000026697958, + "r_y3": 631.7879321838199, + "coord_origin": "TOPLEFT" + }, + "text": "The advent of personal computers in the late 1970s and early 1980s transformed word ", + "orig": "The advent of personal computers in the late 1970s and early 1980s transformed word ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 31, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 659.2319622786822, + "r_x1": 515.5663519117458, + "r_y1": 659.2319622786822, + "r_x2": 515.5663519117458, + "r_y2": 645.947932232765, + "r_x3": 72.00000026697958, + "r_y3": 645.947932232765, + "coord_origin": "TOPLEFT" + }, + "text": "processing from a niche tool to an essential technology for businesses and individuals alike. ", + "orig": "processing from a niche tool to an essential technology for businesses and individuals alike. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The advent of personal computers in the late 1970s and early 1980s transformed word processing from a niche tool to an essential technology for businesses and individuals alike." + }, + { + "label": "list_item", + "id": 8, + "page_no": 0, + "cluster": { + "id": 8, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 673.5479423281663, + "r": 522.527771937559, + "b": 714.4319424694847, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9782076478004456, + "cells": [ + { + "index": 32, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 686.4575523727893, + "r_x1": 94.63680335091797, + "r_y1": 686.4575523727893, + "r_x2": 94.63680335091797, + "r_y2": 674.1095623301076, + "r_x3": 90.00000033372447, + "r_y3": 674.1095623301076, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 33, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 686.8319723740835, + "r_x1": 194.98799072302515, + "r_y1": 686.8319723740835, + "r_x2": 194.98799072302515, + "r_y2": 673.5479423281663, + "r_x3": 108.00000040046937, + "r_y3": 673.5479423281663, + "coord_origin": "TOPLEFT" + }, + "text": "WordStar (1978)", + "orig": "WordStar (1978)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 34, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 194.98828072302624, + "r_y0": 686.8319723740835, + "r_x1": 514.9152819093315, + "r_y1": 686.8319723740835, + "r_x2": 514.9152819093315, + "r_y2": 673.5479423281663, + "r_x3": 194.98828072302624, + "r_y3": 673.5479423281663, + "coord_origin": "TOPLEFT" + }, + "text": ": Developed for the CP/M operating system, WordStar was one of ", + "orig": ": Developed for the CP/M operating system, WordStar was one of ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 35, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 700.5119624213694, + "r_x1": 522.527771937559, + "r_y1": 700.5119624213694, + "r_x2": 522.527771937559, + "r_y2": 687.2279323754522, + "r_x3": 108.00000040046937, + "r_y3": 687.2279323754522, + "coord_origin": "TOPLEFT" + }, + "text": "the first widely used word processing programs. It featured early examples of modern ", + "orig": "the first widely used word processing programs. It featured early examples of modern ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 36, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 714.4319424694847, + "r_x1": 270.9374410046495, + "r_y1": 714.4319424694847, + "r_x2": 270.9374410046495, + "r_y2": 701.1479524235677, + "r_x3": 108.00000040046937, + "r_y3": 701.1479524235677, + "coord_origin": "TOPLEFT" + }, + "text": "features like cut, copy, and paste. ", + "orig": "features like cut, copy, and paste. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 WordStar (1978) : Developed for the CP/M operating system, WordStar was one of the first widely used word processing programs. It featured early examples of modern features like cut, copy, and paste." + }, + { + "label": "list_item", + "id": 5, + "page_no": 0, + "cluster": { + "id": 5, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 714.8279424708536, + "r": 525.2570219476792, + "b": 755.9519646130017, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9797734618186951, + "cells": [ + { + "index": 37, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 727.7375525154766, + "r_x1": 94.63680335091797, + "r_y1": 727.7375525154766, + "r_x2": 94.63680335091797, + "r_y2": 715.3895824727949, + "r_x3": 90.00000033372447, + "r_y3": 715.3895824727949, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 38, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 728.1119425167707, + "r_x1": 225.9647808378886, + "r_y1": 728.1119425167707, + "r_x2": 225.9647808378886, + "r_y2": 714.8279424708536, + "r_x3": 108.00000040046937, + "r_y3": 714.8279424708536, + "coord_origin": "TOPLEFT" + }, + "text": "Microsoft Word (1983)", + "orig": "Microsoft Word (1983)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 39, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 225.96680083789616, + "r_y0": 728.1119425167707, + "r_x1": 525.2570219476792, + "r_y1": 728.1119425167707, + "r_x2": 525.2570219476792, + "r_y2": 714.8279424708536, + "r_x3": 225.96680083789616, + "r_y3": 714.8279424708536, + "coord_origin": "TOPLEFT" + }, + "text": ": Microsoft launched Word for MS-DOS in 1983, introducing ", + "orig": ": Microsoft launched Word for MS-DOS in 1983, introducing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 40, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 742.0319825648862, + "r_x1": 517.5070819189419, + "r_y1": 742.0319825648862, + "r_x2": 517.5070819189419, + "r_y2": 728.747922518969, + "r_x3": 108.00000040046937, + "r_y3": 728.747922518969, + "coord_origin": "TOPLEFT" + }, + "text": "a graphical user interface (GUI) and mouse support. Over the years, Microsoft Word ", + "orig": "a graphical user interface (GUI) and mouse support. Over the years, Microsoft Word ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 41, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 755.9519646130017, + "r_x1": 353.26175130991214, + "r_y1": 755.9519646130017, + "r_x2": 353.26175130991214, + "r_y2": 742.6679685670846, + "r_x3": 108.00000040046937, + "r_y3": 742.6679685670846, + "coord_origin": "TOPLEFT" + }, + "text": "became the industry standard for word processing. ", + "orig": "became the industry standard for word processing. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Microsoft Word (1983) : Microsoft launched Word for MS-DOS in 1983, introducing a graphical user interface (GUI) and mouse support. Over the years, Microsoft Word became the industry standard for word processing." + } + ], + "body": [ + { + "label": "section_header", + "id": 13, + "page_no": 0, + "cluster": { + "id": 13, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 72.58795025090546, + "r": 262.98718097516957, + "b": 85.87195029682243, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9216852784156799, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 85.87195029682243, + "r_x1": 262.98718097516957, + "r_y1": 85.87195029682243, + "r_x2": 262.98718097516957, + "r_y2": 72.58795025090546, + "r_x3": 72.00000026697958, + "r_y3": 72.58795025090546, + "coord_origin": "TOPLEFT" + }, + "text": "The Evolution of the Word Processor", + "orig": "The Evolution of the Word Processor", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The Evolution of the Word Processor" + }, + { + "label": "text", + "id": 6, + "page_no": 0, + "cluster": { + "id": 6, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 100.18799034630695, + "r": 497.51987184482846, + "b": 127.39196044033929, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9795150756835938, + "cells": [ + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 113.47198039222405, + "r_x1": 497.51987184482846, + "r_y1": 113.47198039222405, + "r_x2": 497.51987184482846, + "r_y2": 100.18799034630695, + "r_x3": 72.00000026697958, + "r_y3": 100.18799034630695, + "coord_origin": "TOPLEFT" + }, + "text": "The concept of the word processor predates modern computers and has evolved through ", + "orig": "The concept of the word processor predates modern computers and has evolved through ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 127.39196044033929, + "r_x1": 233.94727086748813, + "r_y1": 127.39196044033929, + "r_x2": 233.94727086748813, + "r_y2": 114.10797039442241, + "r_x3": 72.00000026697958, + "r_y3": 114.10797039442241, + "coord_origin": "TOPLEFT" + }, + "text": "several technological milestones. ", + "orig": "several technological milestones. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The concept of the word processor predates modern computers and has evolved through several technological milestones." + }, + { + "label": "section_header", + "id": 11, + "page_no": 0, + "cluster": { + "id": 11, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 142.1049204911958, + "r": 325.8153412081395, + "b": 156.98303054262306, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9472767114639282, + "cells": [ + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 156.98303054262306, + "r_x1": 325.8153412081395, + "r_y1": 156.98303054262306, + "r_x2": 325.8153412081395, + "r_y2": 142.1049204911958, + "r_x3": 72.00000026697958, + "r_y3": 142.1049204911958, + "coord_origin": "TOPLEFT" + }, + "text": "Pre-Digital Era (19th - Early 20th Century) ", + "orig": "Pre-Digital Era (19th - Early 20th Century) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "Pre-Digital Era (19th - Early 20th Century)" + }, + { + "label": "text", + "id": 0, + "page_no": 0, + "cluster": { + "id": 0, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 171.2279605918617, + "r": 508.1806618843591, + "b": 226.2719707821251, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.986640989780426, + "cells": [ + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 184.51196063777877, + "r_x1": 508.1806618843591, + "r_y1": 184.51196063777877, + "r_x2": 508.1806618843591, + "r_y2": 171.2279605918617, + "r_x3": 72.00000026697958, + "r_y3": 171.2279605918617, + "coord_origin": "TOPLEFT" + }, + "text": "The origins of word processing can be traced back to the invention of the typewriter in the ", + "orig": "The origins of word processing can be traced back to the invention of the typewriter in the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 198.43194068589423, + "r_x1": 466.9111617313298, + "r_y1": 198.43194068589423, + "r_x2": 466.9111617313298, + "r_y2": 185.14795063997713, + "r_x3": 72.00000026697958, + "r_y3": 185.14795063997713, + "coord_origin": "TOPLEFT" + }, + "text": "mid-19th century. Patented in 1868 by Christopher Latham Sholes, the typewriter ", + "orig": "mid-19th century. Patented in 1868 by Christopher Latham Sholes, the typewriter ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 212.11194073318006, + "r_x1": 507.5440418819985, + "r_y1": 212.11194073318006, + "r_x2": 507.5440418819985, + "r_y2": 198.82794068726287, + "r_x3": 72.00000026697958, + "r_y3": 198.82794068726287, + "coord_origin": "TOPLEFT" + }, + "text": "revolutionized written communication by enabling people to produce legible, professional ", + "orig": "revolutionized written communication by enabling people to produce legible, professional ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 226.2719707821251, + "r_x1": 294.60361109240483, + "r_y1": 226.2719707821251, + "r_x2": 294.60361109240483, + "r_y2": 212.987970736208, + "r_x3": 72.00000026697958, + "r_y3": 212.987970736208, + "coord_origin": "TOPLEFT" + }, + "text": "documents more efficiently than handwriting. ", + "orig": "documents more efficiently than handwriting. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The origins of word processing can be traced back to the invention of the typewriter in the mid-19th century. Patented in 1868 by Christopher Latham Sholes, the typewriter revolutionized written communication by enabling people to produce legible, professional documents more efficiently than handwriting." + }, + { + "label": "text", + "id": 2, + "page_no": 0, + "cluster": { + "id": 2, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 240.3479608307798, + "r": 504.5038518707254, + "b": 295.39196102104336, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9847150444984436, + "cells": [ + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 253.6319608766969, + "r_x1": 485.8655118016134, + "r_y1": 253.6319608766969, + "r_x2": 485.8655118016134, + "r_y2": 240.3479608307798, + "r_x3": 72.00000026697958, + "r_y3": 240.3479608307798, + "coord_origin": "TOPLEFT" + }, + "text": "During this period, the term \"word processing\" didn't exist, but the typewriter laid the ", + "orig": "During this period, the term \"word processing\" didn't exist, but the typewriter laid the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 267.55194092481236, + "r_x1": 504.5038518707254, + "r_y1": 267.55194092481236, + "r_x2": 504.5038518707254, + "r_y2": 254.26794087889516, + "r_x3": 72.00000026697958, + "r_y3": 254.26794087889516, + "coord_origin": "TOPLEFT" + }, + "text": "groundwork for future developments. Over time, advancements such as carbon paper (for ", + "orig": "groundwork for future developments. Over time, advancements such as carbon paper (for ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 281.2319909720984, + "r_x1": 497.86462184610673, + "r_y1": 281.2319909720984, + "r_x2": 497.86462184610673, + "r_y2": 267.94793092618113, + "r_x3": 72.00000026697958, + "r_y3": 267.94793092618113, + "coord_origin": "TOPLEFT" + }, + "text": "copies) and the electric typewriter (introduced by IBM in 1935) improved the speed and ", + "orig": "copies) and the electric typewriter (introduced by IBM in 1935) improved the speed and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 295.39196102104336, + "r_x1": 242.92383090077365, + "r_y1": 295.39196102104336, + "r_x2": 242.92383090077365, + "r_y2": 282.10797097512625, + "r_x3": 72.00000026697958, + "r_y3": 282.10797097512625, + "coord_origin": "TOPLEFT" + }, + "text": "convenience of document creation. ", + "orig": "convenience of document creation. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "During this period, the term \"word processing\" didn't exist, but the typewriter laid the groundwork for future developments. Over time, advancements such as carbon paper (for copies) and the electric typewriter (introduced by IBM in 1935) improved the speed and convenience of document creation." + }, + { + "label": "section_header", + "id": 12, + "page_no": 0, + "cluster": { + "id": 12, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 337.7049211673011, + "r": 336.7180512485673, + "b": 352.5830012187282, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9312856793403625, + "cells": [ + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 352.5830012187282, + "r_x1": 336.7180512485673, + "r_y1": 352.5830012187282, + "r_x2": 336.7180512485673, + "r_y2": 337.7049211673011, + "r_x3": 72.00000026697958, + "r_y3": 337.7049211673011, + "coord_origin": "TOPLEFT" + }, + "text": "The Birth of Word Processing (1960s - 1970s) ", + "orig": "The Birth of Word Processing (1960s - 1970s) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The Birth of Word Processing (1960s - 1970s)" + }, + { + "label": "text", + "id": 1, + "page_no": 0, + "cluster": { + "id": 1, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 367.0679612687965, + "r": 523.1927519400248, + "b": 408.19195141094445, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9855563044548035, + "cells": [ + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 380.3519613147136, + "r_x1": 521.6542419343198, + "r_y1": 380.3519613147136, + "r_x2": 521.6542419343198, + "r_y2": 367.0679612687965, + "r_x3": 72.00000026697958, + "r_y3": 367.0679612687965, + "coord_origin": "TOPLEFT" + }, + "text": "The term \"word processor\" first emerged in the 1960s and referred to any system designed to ", + "orig": "The term \"word processor\" first emerged in the 1960s and referred to any system designed to ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 394.0319513619994, + "r_x1": 523.1927519400248, + "r_y1": 394.0319513619994, + "r_x2": 523.1927519400248, + "r_y2": 380.7479813160824, + "r_x3": 72.00000026697958, + "r_y3": 380.7479813160824, + "coord_origin": "TOPLEFT" + }, + "text": "streamline written communication and document production. Early word processors were not ", + "orig": "streamline written communication and document production. Early word processors were not ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 408.19195141094445, + "r_x1": 319.5820911850263, + "r_y1": 408.19195141094445, + "r_x2": 319.5820911850263, + "r_y2": 394.9079613650274, + "r_x3": 72.00000026697958, + "r_y3": 394.9079613650274, + "coord_origin": "TOPLEFT" + }, + "text": "software programs but rather standalone machines. ", + "orig": "software programs but rather standalone machines. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The term \"word processor\" first emerged in the 1960s and referred to any system designed to streamline written communication and document production. Early word processors were not software programs but rather standalone machines." + }, + { + "label": "list_item", + "id": 4, + "page_no": 0, + "cluster": { + "id": 4, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 422.2679414595992, + "r": 518.011111920811, + "b": 477.07196164903314, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9806972742080688, + "cells": [ + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 435.1775515042221, + "r_x1": 94.63680335091797, + "r_y1": 435.1775515042221, + "r_x2": 94.63680335091797, + "r_y2": 422.8295614615404, + "r_x3": 90.00000033372447, + "r_y3": 422.8295614615404, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 435.55194150551625, + "r_x1": 368.59430136676593, + "r_y1": 435.55194150551625, + "r_x2": 368.59430136676593, + "r_y2": 422.2679414595992, + "r_x3": 108.00000040046937, + "r_y3": 422.2679414595992, + "coord_origin": "TOPLEFT" + }, + "text": "IBM MT/ST (Magnetic Tape/Selectric Typewriter)", + "orig": "IBM MT/ST (Magnetic Tape/Selectric Typewriter)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 368.601591366793, + "r_y0": 435.55194150551625, + "r_x1": 492.58316182652294, + "r_y1": 435.55194150551625, + "r_x2": 492.58316182652294, + "r_y2": 422.2679414595992, + "r_x3": 368.601591366793, + "r_y3": 422.2679414595992, + "coord_origin": "TOPLEFT" + }, + "text": ": Introduced in 1964, this ", + "orig": ": Introduced in 1964, this ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 449.47198155363185, + "r_x1": 518.011111920811, + "r_y1": 449.47198155363185, + "r_x2": 518.011111920811, + "r_y2": 436.1879515077147, + "r_x3": 108.00000040046937, + "r_y3": 436.1879515077147, + "coord_origin": "TOPLEFT" + }, + "text": "machine combined IBM's Selectric typewriter with magnetic tape storage. It allowed ", + "orig": "machine combined IBM's Selectric typewriter with magnetic tape storage. It allowed ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 463.1519716009177, + "r_x1": 491.5230418225918, + "r_y1": 463.1519716009177, + "r_x2": 491.5230418225918, + "r_y2": 449.86795155500056, + "r_x3": 108.00000040046937, + "r_y3": 449.86795155500056, + "coord_origin": "TOPLEFT" + }, + "text": "users to record, edit, and replay typed content-an early example of digital text ", + "orig": "users to record, edit, and replay typed content-an early example of digital text ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 477.07196164903314, + "r_x1": 148.65236055121034, + "r_y1": 477.07196164903314, + "r_x2": 148.65236055121034, + "r_y2": 463.78793160311596, + "r_x3": 108.00000040046937, + "r_y3": 463.78793160311596, + "coord_origin": "TOPLEFT" + }, + "text": "storage. ", + "orig": "storage. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 IBM MT/ST (Magnetic Tape/Selectric Typewriter) : Introduced in 1964, this machine combined IBM's Selectric typewriter with magnetic tape storage. It allowed users to record, edit, and replay typed content-an early example of digital text storage." + }, + { + "label": "list_item", + "id": 3, + "page_no": 0, + "cluster": { + "id": 3, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 477.4679516504019, + "r": 497.51746184481954, + "b": 518.5919817925501, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9817657470703125, + "cells": [ + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 490.37756169502495, + "r_x1": 94.63680335091797, + "r_y1": 490.37756169502495, + "r_x2": 94.63680335091797, + "r_y2": 478.02957165234324, + "r_x3": 90.00000033372447, + "r_y3": 478.02957165234324, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 490.7519816963191, + "r_x1": 208.32721077248766, + "r_y1": 490.7519816963191, + "r_x2": 208.32721077248766, + "r_y2": 477.4679516504019, + "r_x3": 108.00000040046937, + "r_y3": 477.4679516504019, + "coord_origin": "TOPLEFT" + }, + "text": "Wang Laboratories", + "orig": "Wang Laboratories", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 208.3300807724983, + "r_y0": 490.7519816963191, + "r_x1": 496.9083318425608, + "r_y1": 490.7519816963191, + "r_x2": 496.9083318425608, + "r_y2": 477.4679516504019, + "r_x3": 208.3300807724983, + "r_y3": 477.4679516504019, + "coord_origin": "TOPLEFT" + }, + "text": ": In the 1970s, Wang introduced dedicated word processing ", + "orig": ": In the 1970s, Wang introduced dedicated word processing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 504.6719617444345, + "r_x1": 497.51746184481954, + "r_y1": 504.6719617444345, + "r_x2": 497.51746184481954, + "r_y2": 491.38794169851735, + "r_x3": 108.00000040046937, + "r_y3": 491.38794169851735, + "coord_origin": "TOPLEFT" + }, + "text": "machines. These devices, like the Wang 1200, featured small screens and floppy ", + "orig": "machines. These devices, like the Wang 1200, featured small screens and floppy ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 518.5919817925501, + "r_x1": 341.6191112667406, + "r_y1": 518.5919817925501, + "r_x2": 341.6191112667406, + "r_y2": 505.30795174663285, + "r_x3": 108.00000040046937, + "r_y3": 505.30795174663285, + "coord_origin": "TOPLEFT" + }, + "text": "disks, making them revolutionary for their time. ", + "orig": "disks, making them revolutionary for their time. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Wang Laboratories : In the 1970s, Wang introduced dedicated word processing machines. These devices, like the Wang 1200, featured small screens and floppy disks, making them revolutionary for their time." + }, + { + "label": "text", + "id": 7, + "page_no": 0, + "cluster": { + "id": 7, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 532.9079618420342, + "r": 514.4709519076839, + "b": 560.3519619368964, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9792535305023193, + "cells": [ + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 546.1919518879513, + "r_x1": 514.4709519076839, + "r_y1": 546.1919518879513, + "r_x2": 514.4709519076839, + "r_y2": 532.9079618420342, + "r_x3": 72.00000026697958, + "r_y3": 532.9079618420342, + "coord_origin": "TOPLEFT" + }, + "text": "These machines were primarily used in offices, where secretarial pools benefited from their ", + "orig": "These machines were primarily used in offices, where secretarial pools benefited from their ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 28, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 560.3519619368964, + "r_x1": 364.2772813507583, + "r_y1": 560.3519619368964, + "r_x2": 364.2772813507583, + "r_y2": 547.0679318909793, + "r_x3": 72.00000026697958, + "r_y3": 547.0679318909793, + "coord_origin": "TOPLEFT" + }, + "text": "ability to make revisions without retyping entire documents. ", + "orig": "ability to make revisions without retyping entire documents. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "These machines were primarily used in offices, where secretarial pools benefited from their ability to make revisions without retyping entire documents." + }, + { + "label": "section_header", + "id": 10, + "page_no": 0, + "cluster": { + "id": 10, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 602.6649120831541, + "r": 306.7123111373045, + "b": 617.5429721345812, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.950114905834198, + "cells": [ + { + "index": 29, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 617.5429721345812, + "r_x1": 306.7123111373045, + "r_y1": 617.5429721345812, + "r_x2": 306.7123111373045, + "r_y2": 602.6649120831541, + "r_x3": 72.00000026697958, + "r_y3": 602.6649120831541, + "coord_origin": "TOPLEFT" + }, + "text": "The Rise of Personal Computers (1980s) ", + "orig": "The Rise of Personal Computers (1980s) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The Rise of Personal Computers (1980s)" + }, + { + "label": "text", + "id": 9, + "page_no": 0, + "cluster": { + "id": 9, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 631.7879321838199, + "r": 515.5663519117458, + "b": 659.2319622786822, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9778240919113159, + "cells": [ + { + "index": 30, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 645.0719622297371, + "r_x1": 487.8694518090441, + "r_y1": 645.0719622297371, + "r_x2": 487.8694518090441, + "r_y2": 631.7879321838199, + "r_x3": 72.00000026697958, + "r_y3": 631.7879321838199, + "coord_origin": "TOPLEFT" + }, + "text": "The advent of personal computers in the late 1970s and early 1980s transformed word ", + "orig": "The advent of personal computers in the late 1970s and early 1980s transformed word ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 31, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 659.2319622786822, + "r_x1": 515.5663519117458, + "r_y1": 659.2319622786822, + "r_x2": 515.5663519117458, + "r_y2": 645.947932232765, + "r_x3": 72.00000026697958, + "r_y3": 645.947932232765, + "coord_origin": "TOPLEFT" + }, + "text": "processing from a niche tool to an essential technology for businesses and individuals alike. ", + "orig": "processing from a niche tool to an essential technology for businesses and individuals alike. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The advent of personal computers in the late 1970s and early 1980s transformed word processing from a niche tool to an essential technology for businesses and individuals alike." + }, + { + "label": "list_item", + "id": 8, + "page_no": 0, + "cluster": { + "id": 8, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 673.5479423281663, + "r": 522.527771937559, + "b": 714.4319424694847, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9782076478004456, + "cells": [ + { + "index": 32, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 686.4575523727893, + "r_x1": 94.63680335091797, + "r_y1": 686.4575523727893, + "r_x2": 94.63680335091797, + "r_y2": 674.1095623301076, + "r_x3": 90.00000033372447, + "r_y3": 674.1095623301076, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 33, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 686.8319723740835, + "r_x1": 194.98799072302515, + "r_y1": 686.8319723740835, + "r_x2": 194.98799072302515, + "r_y2": 673.5479423281663, + "r_x3": 108.00000040046937, + "r_y3": 673.5479423281663, + "coord_origin": "TOPLEFT" + }, + "text": "WordStar (1978)", + "orig": "WordStar (1978)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 34, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 194.98828072302624, + "r_y0": 686.8319723740835, + "r_x1": 514.9152819093315, + "r_y1": 686.8319723740835, + "r_x2": 514.9152819093315, + "r_y2": 673.5479423281663, + "r_x3": 194.98828072302624, + "r_y3": 673.5479423281663, + "coord_origin": "TOPLEFT" + }, + "text": ": Developed for the CP/M operating system, WordStar was one of ", + "orig": ": Developed for the CP/M operating system, WordStar was one of ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 35, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 700.5119624213694, + "r_x1": 522.527771937559, + "r_y1": 700.5119624213694, + "r_x2": 522.527771937559, + "r_y2": 687.2279323754522, + "r_x3": 108.00000040046937, + "r_y3": 687.2279323754522, + "coord_origin": "TOPLEFT" + }, + "text": "the first widely used word processing programs. It featured early examples of modern ", + "orig": "the first widely used word processing programs. It featured early examples of modern ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 36, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 714.4319424694847, + "r_x1": 270.9374410046495, + "r_y1": 714.4319424694847, + "r_x2": 270.9374410046495, + "r_y2": 701.1479524235677, + "r_x3": 108.00000040046937, + "r_y3": 701.1479524235677, + "coord_origin": "TOPLEFT" + }, + "text": "features like cut, copy, and paste. ", + "orig": "features like cut, copy, and paste. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 WordStar (1978) : Developed for the CP/M operating system, WordStar was one of the first widely used word processing programs. It featured early examples of modern features like cut, copy, and paste." + }, + { + "label": "list_item", + "id": 5, + "page_no": 0, + "cluster": { + "id": 5, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 714.8279424708536, + "r": 525.2570219476792, + "b": 755.9519646130017, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9797734618186951, + "cells": [ + { + "index": 37, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 727.7375525154766, + "r_x1": 94.63680335091797, + "r_y1": 727.7375525154766, + "r_x2": 94.63680335091797, + "r_y2": 715.3895824727949, + "r_x3": 90.00000033372447, + "r_y3": 715.3895824727949, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 38, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 728.1119425167707, + "r_x1": 225.9647808378886, + "r_y1": 728.1119425167707, + "r_x2": 225.9647808378886, + "r_y2": 714.8279424708536, + "r_x3": 108.00000040046937, + "r_y3": 714.8279424708536, + "coord_origin": "TOPLEFT" + }, + "text": "Microsoft Word (1983)", + "orig": "Microsoft Word (1983)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 39, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 225.96680083789616, + "r_y0": 728.1119425167707, + "r_x1": 525.2570219476792, + "r_y1": 728.1119425167707, + "r_x2": 525.2570219476792, + "r_y2": 714.8279424708536, + "r_x3": 225.96680083789616, + "r_y3": 714.8279424708536, + "coord_origin": "TOPLEFT" + }, + "text": ": Microsoft launched Word for MS-DOS in 1983, introducing ", + "orig": ": Microsoft launched Word for MS-DOS in 1983, introducing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 40, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 742.0319825648862, + "r_x1": 517.5070819189419, + "r_y1": 742.0319825648862, + "r_x2": 517.5070819189419, + "r_y2": 728.747922518969, + "r_x3": 108.00000040046937, + "r_y3": 728.747922518969, + "coord_origin": "TOPLEFT" + }, + "text": "a graphical user interface (GUI) and mouse support. Over the years, Microsoft Word ", + "orig": "a graphical user interface (GUI) and mouse support. Over the years, Microsoft Word ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 41, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 755.9519646130017, + "r_x1": 353.26175130991214, + "r_y1": 755.9519646130017, + "r_x2": 353.26175130991214, + "r_y2": 742.6679685670846, + "r_x3": 108.00000040046937, + "r_y3": 742.6679685670846, + "coord_origin": "TOPLEFT" + }, + "text": "became the industry standard for word processing. ", + "orig": "became the industry standard for word processing. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Microsoft Word (1983) : Microsoft launched Word for MS-DOS in 1983, introducing a graphical user interface (GUI) and mouse support. Over the years, Microsoft Word became the industry standard for word processing." + } + ], + "headers": [] + } + }, + { + "page_no": 1, + "size": { + "width": 595.2000122070312, + "height": 841.9199829101562 + }, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 85.63196029599305, + "r_x1": 516.5014019152128, + "r_y1": 85.63196029599305, + "r_x2": 516.5014019152128, + "r_y2": 72.34796025007586, + "r_x3": 72.00000026697958, + "r_y3": 72.34796025007586, + "coord_origin": "TOPLEFT" + }, + "text": "Other notable software from this era included WordPerfect, which was popular among legal ", + "orig": "Other notable software from this era included WordPerfect, which was popular among legal ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 99.31195034327891, + "r_x1": 466.85745173113065, + "r_y1": 99.31195034327891, + "r_x2": 466.85745173113065, + "r_y2": 86.02795029736171, + "r_x3": 72.00000026697958, + "r_y3": 86.02795029736171, + "coord_origin": "TOPLEFT" + }, + "text": "professionals, and Apple\u2019s MacWrite, which leveraged the Macintosh\u2019s graphical ", + "orig": "professionals, and Apple\u2019s MacWrite, which leveraged the Macintosh\u2019s graphical ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 113.47198039222405, + "r_x1": 132.64452049185246, + "r_y1": 113.47198039222405, + "r_x2": 132.64452049185246, + "r_y2": 100.18799034630695, + "r_x3": 72.00000026697958, + "r_y3": 100.18799034630695, + "coord_origin": "TOPLEFT" + }, + "text": "capabilities. ", + "orig": "capabilities. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 170.6630205899088, + "r_x1": 272.1976610093225, + "r_y1": 170.6630205899088, + "r_x2": 272.1976610093225, + "r_y2": 155.78491053848165, + "r_x3": 72.00000026697958, + "r_y3": 155.78491053848165, + "coord_origin": "TOPLEFT" + }, + "text": "The Modern Era (1990s - Present) ", + "orig": "The Modern Era (1990s - Present) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 198.43194068589423, + "r_x1": 510.8733818943439, + "r_y1": 198.43194068589423, + "r_x2": 510.8733818943439, + "r_y2": 185.14795063997713, + "r_x3": 72.00000026697958, + "r_y3": 185.14795063997713, + "coord_origin": "TOPLEFT" + }, + "text": "By the 1990s, word processing software had become more sophisticated, with features like ", + "orig": "By the 1990s, word processing software had become more sophisticated, with features like ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 212.35199073400975, + "r_x1": 379.21872140616193, + "r_y1": 212.35199073400975, + "r_x2": 379.21872140616193, + "r_y2": 199.06799068809255, + "r_x3": 72.00000026697958, + "r_y3": 199.06799068809255, + "coord_origin": "TOPLEFT" + }, + "text": "spell check, grammar check, templates, and collaborative tools. ", + "orig": "spell check, grammar check, templates, and collaborative tools. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 239.5775708281169, + "r_x1": 94.63680335091797, + "r_y1": 239.5775708281169, + "r_x2": 94.63680335091797, + "r_y2": 227.2295507854351, + "r_x3": 90.00000033372447, + "r_y3": 227.2295507854351, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 239.95196082941106, + "r_x1": 221.28960082055283, + "r_y1": 239.95196082941106, + "r_x2": 221.28960082055283, + "r_y2": 226.66797078349396, + "r_x3": 108.00000040046937, + "r_y3": 226.66797078349396, + "coord_origin": "TOPLEFT" + }, + "text": "Microsoft Office Suite", + "orig": "Microsoft Office Suite", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 221.29102082055812, + "r_y0": 239.95196082941106, + "r_x1": 491.2357518215266, + "r_y1": 239.95196082941106, + "r_x2": 491.2357518215266, + "r_y2": 226.66797078349396, + "r_x3": 221.29102082055812, + "r_y3": 226.66797078349396, + "coord_origin": "TOPLEFT" + }, + "text": ": Microsoft continued to dominate with its Office Suite, ", + "orig": ": Microsoft continued to dominate with its Office Suite, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 253.6319608766969, + "r_x1": 466.9336917314133, + "r_y1": 253.6319608766969, + "r_x2": 466.9336917314133, + "r_y2": 240.3479608307798, + "r_x3": 108.00000040046937, + "r_y3": 240.3479608307798, + "coord_origin": "TOPLEFT" + }, + "text": "integrating Word with other productivity tools like Excel and PowerPoint. ", + "orig": "integrating Word with other productivity tools like Excel and PowerPoint. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 267.1775509235182, + "r_x1": 94.63680335091797, + "r_y1": 267.1775509235182, + "r_x2": 94.63680335091797, + "r_y2": 254.82959088083658, + "r_x3": 90.00000033372447, + "r_y3": 254.82959088083658, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 267.55194092481236, + "r_x1": 252.64317093681342, + "r_y1": 267.55194092481236, + "r_x2": 252.64317093681342, + "r_y2": 254.26794087889516, + "r_x3": 108.00000040046937, + "r_y3": 254.26794087889516, + "coord_origin": "TOPLEFT" + }, + "text": "OpenOffice and LibreOffice", + "orig": "OpenOffice and LibreOffice", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 252.6446409368189, + "r_y0": 267.55194092481236, + "r_x1": 517.5377819190559, + "r_y1": 267.55194092481236, + "r_x2": 517.5377819190559, + "r_y2": 254.26794087889516, + "r_x3": 252.6446409368189, + "r_y3": 254.26794087889516, + "coord_origin": "TOPLEFT" + }, + "text": ": Open-source alternatives emerged in the early 2000s, ", + "orig": ": Open-source alternatives emerged in the early 2000s, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 281.2319909720984, + "r_x1": 354.59183131484417, + "r_y1": 281.2319909720984, + "r_x2": 354.59183131484417, + "r_y2": 267.94793092618113, + "r_x3": 108.00000040046937, + "r_y3": 267.94793092618113, + "coord_origin": "TOPLEFT" + }, + "text": "offering free and flexible word processing options. ", + "orig": "offering free and flexible word processing options. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 294.7775810189197, + "r_x1": 94.63680335091797, + "r_y1": 294.7775810189197, + "r_x2": 94.63680335091797, + "r_y2": 282.4295609762379, + "r_x3": 90.00000033372447, + "r_y3": 282.4295609762379, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 295.15197102021375, + "r_x1": 206.64719076625803, + "r_y1": 295.15197102021375, + "r_x2": 206.64719076625803, + "r_y2": 281.86798097429676, + "r_x3": 108.00000040046937, + "r_y3": 281.86798097429676, + "coord_origin": "TOPLEFT" + }, + "text": "Google Docs (2006)", + "orig": "Google Docs (2006)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 206.64845076626273, + "r_y0": 295.15197102021375, + "r_x1": 524.5618919451015, + "r_y1": 295.15197102021375, + "r_x2": 524.5618919451015, + "r_y2": 281.86798097429676, + "r_x3": 206.64845076626273, + "r_y3": 281.86798097429676, + "coord_origin": "TOPLEFT" + }, + "text": ": The introduction of cloud-based word processing revolutionized ", + "orig": ": The introduction of cloud-based word processing revolutionized ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 308.8319710674996, + "r_x1": 515.8681019128646, + "r_y1": 308.8319710674996, + "r_x2": 515.8681019128646, + "r_y2": 295.5479710215825, + "r_x3": 108.00000040046937, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": "collaboration. Google Docs enabled real-time editing and sharing, making it a staple ", + "orig": "collaboration. Google Docs enabled real-time editing and sharing, making it a staple ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 322.99194111644454, + "r_x1": 243.2870309021204, + "r_y1": 322.99194111644454, + "r_x2": 243.2870309021204, + "r_y2": 309.70794107052745, + "r_x3": 108.00000040046937, + "r_y3": 309.70794107052745, + "coord_origin": "TOPLEFT" + }, + "text": "for teams and remote work. ", + "orig": "for teams and remote work. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 380.18298131412945, + "r_x1": 231.71083085919528, + "r_y1": 380.18298131412945, + "r_x2": 231.71083085919528, + "r_y2": 365.30493126270244, + "r_x3": 72.00000026697958, + "r_y3": 365.30493126270244, + "coord_origin": "TOPLEFT" + }, + "text": "Future of Word Processing ", + "orig": "Future of Word Processing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 407.95196141011496, + "r_x1": 475.5335117633018, + "r_y1": 407.95196141011496, + "r_x2": 475.5335117633018, + "r_y2": 394.6679713641979, + "r_x3": 72.00000026697958, + "r_y3": 394.6679713641979, + "coord_origin": "TOPLEFT" + }, + "text": "Today, word processors are more than just tools for typing. They integrate artificial ", + "orig": "Today, word processors are more than just tools for typing. They integrate artificial ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 421.6319614574008, + "r_x1": 520.5078119300688, + "r_y1": 421.6319614574008, + "r_x2": 520.5078119300688, + "r_y2": 408.3479614114837, + "r_x3": 72.00000026697958, + "r_y3": 408.3479614114837, + "coord_origin": "TOPLEFT" + }, + "text": "intelligence for grammar and style suggestions (e.g., Grammarly), voice-to-text features, and ", + "orig": "intelligence for grammar and style suggestions (e.g., Grammarly), voice-to-text features, and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 435.55194150551625, + "r_x1": 520.5438819302025, + "r_y1": 435.55194150551625, + "r_x2": 520.5438819302025, + "r_y2": 422.2679414595992, + "r_x3": 72.00000026697958, + "r_y3": 422.2679414595992, + "coord_origin": "TOPLEFT" + }, + "text": "advanced layout options. As AI continues to advance, word processors may evolve into even ", + "orig": "advanced layout options. As AI continues to advance, word processors may evolve into even ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 449.2319915528023, + "r_x1": 498.19421184732886, + "r_y1": 449.2319915528023, + "r_x2": 498.19421184732886, + "r_y2": 435.9479615068851, + "r_x3": 72.00000026697958, + "r_y3": 435.9479615068851, + "coord_origin": "TOPLEFT" + }, + "text": "more intuitive tools that predict user needs, automate repetitive tasks, and support richer ", + "orig": "more intuitive tools that predict user needs, automate repetitive tasks, and support richer ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 463.3919616017472, + "r_x1": 187.64061069578074, + "r_y1": 463.3919616017472, + "r_x2": 187.64061069578074, + "r_y2": 450.1079715558302, + "r_x3": 72.00000026697958, + "r_y3": 450.1079715558302, + "coord_origin": "TOPLEFT" + }, + "text": "multimedia integration. ", + "orig": "multimedia integration. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 518.8319717933796, + "r_x1": 515.5564019117089, + "r_y1": 518.8319717933796, + "r_x2": 515.5564019117089, + "r_y2": 505.54794174746235, + "r_x3": 72.00000026697958, + "r_y3": 505.54794174746235, + "coord_origin": "TOPLEFT" + }, + "text": "From the clunky typewriters of the 19th century to the AI-powered cloud tools of today, the ", + "orig": "From the clunky typewriters of the 19th century to the AI-powered cloud tools of today, the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 532.5119618406654, + "r_x1": 501.86630186094516, + "r_y1": 532.5119618406654, + "r_x2": 501.86630186094516, + "r_y2": 519.2279317947482, + "r_x3": 72.00000026697958, + "r_y3": 519.2279317947482, + "coord_origin": "TOPLEFT" + }, + "text": "word processor has come a long way. It remains an essential tool for communication and ", + "orig": "word processor has come a long way. It remains an essential tool for communication and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 546.4319718887809, + "r_x1": 311.25577115415183, + "r_y1": 546.4319718887809, + "r_x2": 311.25577115415183, + "r_y2": 533.1479518428639, + "r_x3": 72.00000026697958, + "r_y3": 533.1479518428639, + "coord_origin": "TOPLEFT" + }, + "text": "creativity, shaping how we write and share ideas. ", + "orig": "creativity, shaping how we write and share ideas. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "parsed_page": null, + "predictions": { + "layout": { + "clusters": [ + { + "id": 2, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 72.34796025007586, + "r": 516.5014019152128, + "b": 113.47198039222405, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9813448190689087, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 85.63196029599305, + "r_x1": 516.5014019152128, + "r_y1": 85.63196029599305, + "r_x2": 516.5014019152128, + "r_y2": 72.34796025007586, + "r_x3": 72.00000026697958, + "r_y3": 72.34796025007586, + "coord_origin": "TOPLEFT" + }, + "text": "Other notable software from this era included WordPerfect, which was popular among legal ", + "orig": "Other notable software from this era included WordPerfect, which was popular among legal ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 99.31195034327891, + "r_x1": 466.85745173113065, + "r_y1": 99.31195034327891, + "r_x2": 466.85745173113065, + "r_y2": 86.02795029736171, + "r_x3": 72.00000026697958, + "r_y3": 86.02795029736171, + "coord_origin": "TOPLEFT" + }, + "text": "professionals, and Apple\u2019s MacWrite, which leveraged the Macintosh\u2019s graphical ", + "orig": "professionals, and Apple\u2019s MacWrite, which leveraged the Macintosh\u2019s graphical ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 113.47198039222405, + "r_x1": 132.64452049185246, + "r_y1": 113.47198039222405, + "r_x2": 132.64452049185246, + "r_y2": 100.18799034630695, + "r_x3": 72.00000026697958, + "r_y3": 100.18799034630695, + "coord_origin": "TOPLEFT" + }, + "text": "capabilities. ", + "orig": "capabilities. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 8, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 155.78491053848165, + "r": 272.1976610093225, + "b": 170.6630205899088, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9389315843582153, + "cells": [ + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 170.6630205899088, + "r_x1": 272.1976610093225, + "r_y1": 170.6630205899088, + "r_x2": 272.1976610093225, + "r_y2": 155.78491053848165, + "r_x3": 72.00000026697958, + "r_y3": 155.78491053848165, + "coord_origin": "TOPLEFT" + }, + "text": "The Modern Era (1990s - Present) ", + "orig": "The Modern Era (1990s - Present) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 3, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 185.14795063997713, + "r": 510.8733818943439, + "b": 212.35199073400975, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9798638820648193, + "cells": [ + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 198.43194068589423, + "r_x1": 510.8733818943439, + "r_y1": 198.43194068589423, + "r_x2": 510.8733818943439, + "r_y2": 185.14795063997713, + "r_x3": 72.00000026697958, + "r_y3": 185.14795063997713, + "coord_origin": "TOPLEFT" + }, + "text": "By the 1990s, word processing software had become more sophisticated, with features like ", + "orig": "By the 1990s, word processing software had become more sophisticated, with features like ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 212.35199073400975, + "r_x1": 379.21872140616193, + "r_y1": 212.35199073400975, + "r_x2": 379.21872140616193, + "r_y2": 199.06799068809255, + "r_x3": 72.00000026697958, + "r_y3": 199.06799068809255, + "coord_origin": "TOPLEFT" + }, + "text": "spell check, grammar check, templates, and collaborative tools. ", + "orig": "spell check, grammar check, templates, and collaborative tools. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 6, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 226.66797078349396, + "r": 491.2357518215266, + "b": 253.6319608766969, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.968998372554779, + "cells": [ + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 239.5775708281169, + "r_x1": 94.63680335091797, + "r_y1": 239.5775708281169, + "r_x2": 94.63680335091797, + "r_y2": 227.2295507854351, + "r_x3": 90.00000033372447, + "r_y3": 227.2295507854351, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 239.95196082941106, + "r_x1": 221.28960082055283, + "r_y1": 239.95196082941106, + "r_x2": 221.28960082055283, + "r_y2": 226.66797078349396, + "r_x3": 108.00000040046937, + "r_y3": 226.66797078349396, + "coord_origin": "TOPLEFT" + }, + "text": "Microsoft Office Suite", + "orig": "Microsoft Office Suite", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 221.29102082055812, + "r_y0": 239.95196082941106, + "r_x1": 491.2357518215266, + "r_y1": 239.95196082941106, + "r_x2": 491.2357518215266, + "r_y2": 226.66797078349396, + "r_x3": 221.29102082055812, + "r_y3": 226.66797078349396, + "coord_origin": "TOPLEFT" + }, + "text": ": Microsoft continued to dominate with its Office Suite, ", + "orig": ": Microsoft continued to dominate with its Office Suite, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 253.6319608766969, + "r_x1": 466.9336917314133, + "r_y1": 253.6319608766969, + "r_x2": 466.9336917314133, + "r_y2": 240.3479608307798, + "r_x3": 108.00000040046937, + "r_y3": 240.3479608307798, + "coord_origin": "TOPLEFT" + }, + "text": "integrating Word with other productivity tools like Excel and PowerPoint. ", + "orig": "integrating Word with other productivity tools like Excel and PowerPoint. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 5, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 254.26794087889516, + "r": 517.5377819190559, + "b": 281.2319909720984, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9696746468544006, + "cells": [ + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 267.1775509235182, + "r_x1": 94.63680335091797, + "r_y1": 267.1775509235182, + "r_x2": 94.63680335091797, + "r_y2": 254.82959088083658, + "r_x3": 90.00000033372447, + "r_y3": 254.82959088083658, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 267.55194092481236, + "r_x1": 252.64317093681342, + "r_y1": 267.55194092481236, + "r_x2": 252.64317093681342, + "r_y2": 254.26794087889516, + "r_x3": 108.00000040046937, + "r_y3": 254.26794087889516, + "coord_origin": "TOPLEFT" + }, + "text": "OpenOffice and LibreOffice", + "orig": "OpenOffice and LibreOffice", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 252.6446409368189, + "r_y0": 267.55194092481236, + "r_x1": 517.5377819190559, + "r_y1": 267.55194092481236, + "r_x2": 517.5377819190559, + "r_y2": 254.26794087889516, + "r_x3": 252.6446409368189, + "r_y3": 254.26794087889516, + "coord_origin": "TOPLEFT" + }, + "text": ": Open-source alternatives emerged in the early 2000s, ", + "orig": ": Open-source alternatives emerged in the early 2000s, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 281.2319909720984, + "r_x1": 354.59183131484417, + "r_y1": 281.2319909720984, + "r_x2": 354.59183131484417, + "r_y2": 267.94793092618113, + "r_x3": 108.00000040046937, + "r_y3": 267.94793092618113, + "coord_origin": "TOPLEFT" + }, + "text": "offering free and flexible word processing options. ", + "orig": "offering free and flexible word processing options. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 4, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 281.86798097429676, + "r": 524.5618919451015, + "b": 322.99194111644454, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9762884378433228, + "cells": [ + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 294.7775810189197, + "r_x1": 94.63680335091797, + "r_y1": 294.7775810189197, + "r_x2": 94.63680335091797, + "r_y2": 282.4295609762379, + "r_x3": 90.00000033372447, + "r_y3": 282.4295609762379, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 295.15197102021375, + "r_x1": 206.64719076625803, + "r_y1": 295.15197102021375, + "r_x2": 206.64719076625803, + "r_y2": 281.86798097429676, + "r_x3": 108.00000040046937, + "r_y3": 281.86798097429676, + "coord_origin": "TOPLEFT" + }, + "text": "Google Docs (2006)", + "orig": "Google Docs (2006)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 206.64845076626273, + "r_y0": 295.15197102021375, + "r_x1": 524.5618919451015, + "r_y1": 295.15197102021375, + "r_x2": 524.5618919451015, + "r_y2": 281.86798097429676, + "r_x3": 206.64845076626273, + "r_y3": 281.86798097429676, + "coord_origin": "TOPLEFT" + }, + "text": ": The introduction of cloud-based word processing revolutionized ", + "orig": ": The introduction of cloud-based word processing revolutionized ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 308.8319710674996, + "r_x1": 515.8681019128646, + "r_y1": 308.8319710674996, + "r_x2": 515.8681019128646, + "r_y2": 295.5479710215825, + "r_x3": 108.00000040046937, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": "collaboration. Google Docs enabled real-time editing and sharing, making it a staple ", + "orig": "collaboration. Google Docs enabled real-time editing and sharing, making it a staple ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 322.99194111644454, + "r_x1": 243.2870309021204, + "r_y1": 322.99194111644454, + "r_x2": 243.2870309021204, + "r_y2": 309.70794107052745, + "r_x3": 108.00000040046937, + "r_y3": 309.70794107052745, + "coord_origin": "TOPLEFT" + }, + "text": "for teams and remote work. ", + "orig": "for teams and remote work. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 7, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 365.30493126270244, + "r": 231.71083085919528, + "b": 380.18298131412945, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9581918120384216, + "cells": [ + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 380.18298131412945, + "r_x1": 231.71083085919528, + "r_y1": 380.18298131412945, + "r_x2": 231.71083085919528, + "r_y2": 365.30493126270244, + "r_x3": 72.00000026697958, + "r_y3": 365.30493126270244, + "coord_origin": "TOPLEFT" + }, + "text": "Future of Word Processing ", + "orig": "Future of Word Processing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 0, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 394.6679713641979, + "r": 520.5438819302025, + "b": 463.3919616017472, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9876114726066589, + "cells": [ + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 407.95196141011496, + "r_x1": 475.5335117633018, + "r_y1": 407.95196141011496, + "r_x2": 475.5335117633018, + "r_y2": 394.6679713641979, + "r_x3": 72.00000026697958, + "r_y3": 394.6679713641979, + "coord_origin": "TOPLEFT" + }, + "text": "Today, word processors are more than just tools for typing. They integrate artificial ", + "orig": "Today, word processors are more than just tools for typing. They integrate artificial ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 421.6319614574008, + "r_x1": 520.5078119300688, + "r_y1": 421.6319614574008, + "r_x2": 520.5078119300688, + "r_y2": 408.3479614114837, + "r_x3": 72.00000026697958, + "r_y3": 408.3479614114837, + "coord_origin": "TOPLEFT" + }, + "text": "intelligence for grammar and style suggestions (e.g., Grammarly), voice-to-text features, and ", + "orig": "intelligence for grammar and style suggestions (e.g., Grammarly), voice-to-text features, and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 435.55194150551625, + "r_x1": 520.5438819302025, + "r_y1": 435.55194150551625, + "r_x2": 520.5438819302025, + "r_y2": 422.2679414595992, + "r_x3": 72.00000026697958, + "r_y3": 422.2679414595992, + "coord_origin": "TOPLEFT" + }, + "text": "advanced layout options. As AI continues to advance, word processors may evolve into even ", + "orig": "advanced layout options. As AI continues to advance, word processors may evolve into even ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 449.2319915528023, + "r_x1": 498.19421184732886, + "r_y1": 449.2319915528023, + "r_x2": 498.19421184732886, + "r_y2": 435.9479615068851, + "r_x3": 72.00000026697958, + "r_y3": 435.9479615068851, + "coord_origin": "TOPLEFT" + }, + "text": "more intuitive tools that predict user needs, automate repetitive tasks, and support richer ", + "orig": "more intuitive tools that predict user needs, automate repetitive tasks, and support richer ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 463.3919616017472, + "r_x1": 187.64061069578074, + "r_y1": 463.3919616017472, + "r_x2": 187.64061069578074, + "r_y2": 450.1079715558302, + "r_x3": 72.00000026697958, + "r_y3": 450.1079715558302, + "coord_origin": "TOPLEFT" + }, + "text": "multimedia integration. ", + "orig": "multimedia integration. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 1, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 505.54794174746235, + "r": 515.5564019117089, + "b": 546.4319718887809, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9841670393943787, + "cells": [ + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 518.8319717933796, + "r_x1": 515.5564019117089, + "r_y1": 518.8319717933796, + "r_x2": 515.5564019117089, + "r_y2": 505.54794174746235, + "r_x3": 72.00000026697958, + "r_y3": 505.54794174746235, + "coord_origin": "TOPLEFT" + }, + "text": "From the clunky typewriters of the 19th century to the AI-powered cloud tools of today, the ", + "orig": "From the clunky typewriters of the 19th century to the AI-powered cloud tools of today, the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 532.5119618406654, + "r_x1": 501.86630186094516, + "r_y1": 532.5119618406654, + "r_x2": 501.86630186094516, + "r_y2": 519.2279317947482, + "r_x3": 72.00000026697958, + "r_y3": 519.2279317947482, + "coord_origin": "TOPLEFT" + }, + "text": "word processor has come a long way. It remains an essential tool for communication and ", + "orig": "word processor has come a long way. It remains an essential tool for communication and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 546.4319718887809, + "r_x1": 311.25577115415183, + "r_y1": 546.4319718887809, + "r_x2": 311.25577115415183, + "r_y2": 533.1479518428639, + "r_x3": 72.00000026697958, + "r_y3": 533.1479518428639, + "coord_origin": "TOPLEFT" + }, + "text": "creativity, shaping how we write and share ideas. ", + "orig": "creativity, shaping how we write and share ideas. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + } + ] + }, + "tablestructure": { + "table_map": {} + }, + "figures_classification": null, + "equations_prediction": null, + "vlm_response": null + }, + "assembled": { + "elements": [ + { + "label": "text", + "id": 2, + "page_no": 1, + "cluster": { + "id": 2, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 72.34796025007586, + "r": 516.5014019152128, + "b": 113.47198039222405, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9813448190689087, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 85.63196029599305, + "r_x1": 516.5014019152128, + "r_y1": 85.63196029599305, + "r_x2": 516.5014019152128, + "r_y2": 72.34796025007586, + "r_x3": 72.00000026697958, + "r_y3": 72.34796025007586, + "coord_origin": "TOPLEFT" + }, + "text": "Other notable software from this era included WordPerfect, which was popular among legal ", + "orig": "Other notable software from this era included WordPerfect, which was popular among legal ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 99.31195034327891, + "r_x1": 466.85745173113065, + "r_y1": 99.31195034327891, + "r_x2": 466.85745173113065, + "r_y2": 86.02795029736171, + "r_x3": 72.00000026697958, + "r_y3": 86.02795029736171, + "coord_origin": "TOPLEFT" + }, + "text": "professionals, and Apple\u2019s MacWrite, which leveraged the Macintosh\u2019s graphical ", + "orig": "professionals, and Apple\u2019s MacWrite, which leveraged the Macintosh\u2019s graphical ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 113.47198039222405, + "r_x1": 132.64452049185246, + "r_y1": 113.47198039222405, + "r_x2": 132.64452049185246, + "r_y2": 100.18799034630695, + "r_x3": 72.00000026697958, + "r_y3": 100.18799034630695, + "coord_origin": "TOPLEFT" + }, + "text": "capabilities. ", + "orig": "capabilities. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "Other notable software from this era included WordPerfect, which was popular among legal professionals, and Apple's MacWrite, which leveraged the Macintosh's graphical capabilities." + }, + { + "label": "section_header", + "id": 8, + "page_no": 1, + "cluster": { + "id": 8, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 155.78491053848165, + "r": 272.1976610093225, + "b": 170.6630205899088, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9389315843582153, + "cells": [ + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 170.6630205899088, + "r_x1": 272.1976610093225, + "r_y1": 170.6630205899088, + "r_x2": 272.1976610093225, + "r_y2": 155.78491053848165, + "r_x3": 72.00000026697958, + "r_y3": 155.78491053848165, + "coord_origin": "TOPLEFT" + }, + "text": "The Modern Era (1990s - Present) ", + "orig": "The Modern Era (1990s - Present) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The Modern Era (1990s - Present)" + }, + { + "label": "text", + "id": 3, + "page_no": 1, + "cluster": { + "id": 3, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 185.14795063997713, + "r": 510.8733818943439, + "b": 212.35199073400975, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9798638820648193, + "cells": [ + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 198.43194068589423, + "r_x1": 510.8733818943439, + "r_y1": 198.43194068589423, + "r_x2": 510.8733818943439, + "r_y2": 185.14795063997713, + "r_x3": 72.00000026697958, + "r_y3": 185.14795063997713, + "coord_origin": "TOPLEFT" + }, + "text": "By the 1990s, word processing software had become more sophisticated, with features like ", + "orig": "By the 1990s, word processing software had become more sophisticated, with features like ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 212.35199073400975, + "r_x1": 379.21872140616193, + "r_y1": 212.35199073400975, + "r_x2": 379.21872140616193, + "r_y2": 199.06799068809255, + "r_x3": 72.00000026697958, + "r_y3": 199.06799068809255, + "coord_origin": "TOPLEFT" + }, + "text": "spell check, grammar check, templates, and collaborative tools. ", + "orig": "spell check, grammar check, templates, and collaborative tools. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "By the 1990s, word processing software had become more sophisticated, with features like spell check, grammar check, templates, and collaborative tools." + }, + { + "label": "list_item", + "id": 6, + "page_no": 1, + "cluster": { + "id": 6, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 226.66797078349396, + "r": 491.2357518215266, + "b": 253.6319608766969, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.968998372554779, + "cells": [ + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 239.5775708281169, + "r_x1": 94.63680335091797, + "r_y1": 239.5775708281169, + "r_x2": 94.63680335091797, + "r_y2": 227.2295507854351, + "r_x3": 90.00000033372447, + "r_y3": 227.2295507854351, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 239.95196082941106, + "r_x1": 221.28960082055283, + "r_y1": 239.95196082941106, + "r_x2": 221.28960082055283, + "r_y2": 226.66797078349396, + "r_x3": 108.00000040046937, + "r_y3": 226.66797078349396, + "coord_origin": "TOPLEFT" + }, + "text": "Microsoft Office Suite", + "orig": "Microsoft Office Suite", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 221.29102082055812, + "r_y0": 239.95196082941106, + "r_x1": 491.2357518215266, + "r_y1": 239.95196082941106, + "r_x2": 491.2357518215266, + "r_y2": 226.66797078349396, + "r_x3": 221.29102082055812, + "r_y3": 226.66797078349396, + "coord_origin": "TOPLEFT" + }, + "text": ": Microsoft continued to dominate with its Office Suite, ", + "orig": ": Microsoft continued to dominate with its Office Suite, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 253.6319608766969, + "r_x1": 466.9336917314133, + "r_y1": 253.6319608766969, + "r_x2": 466.9336917314133, + "r_y2": 240.3479608307798, + "r_x3": 108.00000040046937, + "r_y3": 240.3479608307798, + "coord_origin": "TOPLEFT" + }, + "text": "integrating Word with other productivity tools like Excel and PowerPoint. ", + "orig": "integrating Word with other productivity tools like Excel and PowerPoint. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Microsoft Office Suite : Microsoft continued to dominate with its Office Suite, integrating Word with other productivity tools like Excel and PowerPoint." + }, + { + "label": "list_item", + "id": 5, + "page_no": 1, + "cluster": { + "id": 5, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 254.26794087889516, + "r": 517.5377819190559, + "b": 281.2319909720984, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9696746468544006, + "cells": [ + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 267.1775509235182, + "r_x1": 94.63680335091797, + "r_y1": 267.1775509235182, + "r_x2": 94.63680335091797, + "r_y2": 254.82959088083658, + "r_x3": 90.00000033372447, + "r_y3": 254.82959088083658, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 267.55194092481236, + "r_x1": 252.64317093681342, + "r_y1": 267.55194092481236, + "r_x2": 252.64317093681342, + "r_y2": 254.26794087889516, + "r_x3": 108.00000040046937, + "r_y3": 254.26794087889516, + "coord_origin": "TOPLEFT" + }, + "text": "OpenOffice and LibreOffice", + "orig": "OpenOffice and LibreOffice", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 252.6446409368189, + "r_y0": 267.55194092481236, + "r_x1": 517.5377819190559, + "r_y1": 267.55194092481236, + "r_x2": 517.5377819190559, + "r_y2": 254.26794087889516, + "r_x3": 252.6446409368189, + "r_y3": 254.26794087889516, + "coord_origin": "TOPLEFT" + }, + "text": ": Open-source alternatives emerged in the early 2000s, ", + "orig": ": Open-source alternatives emerged in the early 2000s, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 281.2319909720984, + "r_x1": 354.59183131484417, + "r_y1": 281.2319909720984, + "r_x2": 354.59183131484417, + "r_y2": 267.94793092618113, + "r_x3": 108.00000040046937, + "r_y3": 267.94793092618113, + "coord_origin": "TOPLEFT" + }, + "text": "offering free and flexible word processing options. ", + "orig": "offering free and flexible word processing options. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 OpenOffice and LibreOffice : Open-source alternatives emerged in the early 2000s, offering free and flexible word processing options." + }, + { + "label": "list_item", + "id": 4, + "page_no": 1, + "cluster": { + "id": 4, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 281.86798097429676, + "r": 524.5618919451015, + "b": 322.99194111644454, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9762884378433228, + "cells": [ + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 294.7775810189197, + "r_x1": 94.63680335091797, + "r_y1": 294.7775810189197, + "r_x2": 94.63680335091797, + "r_y2": 282.4295609762379, + "r_x3": 90.00000033372447, + "r_y3": 282.4295609762379, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 295.15197102021375, + "r_x1": 206.64719076625803, + "r_y1": 295.15197102021375, + "r_x2": 206.64719076625803, + "r_y2": 281.86798097429676, + "r_x3": 108.00000040046937, + "r_y3": 281.86798097429676, + "coord_origin": "TOPLEFT" + }, + "text": "Google Docs (2006)", + "orig": "Google Docs (2006)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 206.64845076626273, + "r_y0": 295.15197102021375, + "r_x1": 524.5618919451015, + "r_y1": 295.15197102021375, + "r_x2": 524.5618919451015, + "r_y2": 281.86798097429676, + "r_x3": 206.64845076626273, + "r_y3": 281.86798097429676, + "coord_origin": "TOPLEFT" + }, + "text": ": The introduction of cloud-based word processing revolutionized ", + "orig": ": The introduction of cloud-based word processing revolutionized ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 308.8319710674996, + "r_x1": 515.8681019128646, + "r_y1": 308.8319710674996, + "r_x2": 515.8681019128646, + "r_y2": 295.5479710215825, + "r_x3": 108.00000040046937, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": "collaboration. Google Docs enabled real-time editing and sharing, making it a staple ", + "orig": "collaboration. Google Docs enabled real-time editing and sharing, making it a staple ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 322.99194111644454, + "r_x1": 243.2870309021204, + "r_y1": 322.99194111644454, + "r_x2": 243.2870309021204, + "r_y2": 309.70794107052745, + "r_x3": 108.00000040046937, + "r_y3": 309.70794107052745, + "coord_origin": "TOPLEFT" + }, + "text": "for teams and remote work. ", + "orig": "for teams and remote work. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Google Docs (2006) : The introduction of cloud-based word processing revolutionized collaboration. Google Docs enabled real-time editing and sharing, making it a staple for teams and remote work." + }, + { + "label": "section_header", + "id": 7, + "page_no": 1, + "cluster": { + "id": 7, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 365.30493126270244, + "r": 231.71083085919528, + "b": 380.18298131412945, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9581918120384216, + "cells": [ + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 380.18298131412945, + "r_x1": 231.71083085919528, + "r_y1": 380.18298131412945, + "r_x2": 231.71083085919528, + "r_y2": 365.30493126270244, + "r_x3": 72.00000026697958, + "r_y3": 365.30493126270244, + "coord_origin": "TOPLEFT" + }, + "text": "Future of Word Processing ", + "orig": "Future of Word Processing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "Future of Word Processing" + }, + { + "label": "text", + "id": 0, + "page_no": 1, + "cluster": { + "id": 0, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 394.6679713641979, + "r": 520.5438819302025, + "b": 463.3919616017472, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9876114726066589, + "cells": [ + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 407.95196141011496, + "r_x1": 475.5335117633018, + "r_y1": 407.95196141011496, + "r_x2": 475.5335117633018, + "r_y2": 394.6679713641979, + "r_x3": 72.00000026697958, + "r_y3": 394.6679713641979, + "coord_origin": "TOPLEFT" + }, + "text": "Today, word processors are more than just tools for typing. They integrate artificial ", + "orig": "Today, word processors are more than just tools for typing. They integrate artificial ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 421.6319614574008, + "r_x1": 520.5078119300688, + "r_y1": 421.6319614574008, + "r_x2": 520.5078119300688, + "r_y2": 408.3479614114837, + "r_x3": 72.00000026697958, + "r_y3": 408.3479614114837, + "coord_origin": "TOPLEFT" + }, + "text": "intelligence for grammar and style suggestions (e.g., Grammarly), voice-to-text features, and ", + "orig": "intelligence for grammar and style suggestions (e.g., Grammarly), voice-to-text features, and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 435.55194150551625, + "r_x1": 520.5438819302025, + "r_y1": 435.55194150551625, + "r_x2": 520.5438819302025, + "r_y2": 422.2679414595992, + "r_x3": 72.00000026697958, + "r_y3": 422.2679414595992, + "coord_origin": "TOPLEFT" + }, + "text": "advanced layout options. As AI continues to advance, word processors may evolve into even ", + "orig": "advanced layout options. As AI continues to advance, word processors may evolve into even ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 449.2319915528023, + "r_x1": 498.19421184732886, + "r_y1": 449.2319915528023, + "r_x2": 498.19421184732886, + "r_y2": 435.9479615068851, + "r_x3": 72.00000026697958, + "r_y3": 435.9479615068851, + "coord_origin": "TOPLEFT" + }, + "text": "more intuitive tools that predict user needs, automate repetitive tasks, and support richer ", + "orig": "more intuitive tools that predict user needs, automate repetitive tasks, and support richer ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 463.3919616017472, + "r_x1": 187.64061069578074, + "r_y1": 463.3919616017472, + "r_x2": 187.64061069578074, + "r_y2": 450.1079715558302, + "r_x3": 72.00000026697958, + "r_y3": 450.1079715558302, + "coord_origin": "TOPLEFT" + }, + "text": "multimedia integration. ", + "orig": "multimedia integration. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "Today, word processors are more than just tools for typing. They integrate artificial intelligence for grammar and style suggestions (e.g., Grammarly), voice-to-text features, and advanced layout options. As AI continues to advance, word processors may evolve into even more intuitive tools that predict user needs, automate repetitive tasks, and support richer multimedia integration." + }, + { + "label": "text", + "id": 1, + "page_no": 1, + "cluster": { + "id": 1, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 505.54794174746235, + "r": 515.5564019117089, + "b": 546.4319718887809, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9841670393943787, + "cells": [ + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 518.8319717933796, + "r_x1": 515.5564019117089, + "r_y1": 518.8319717933796, + "r_x2": 515.5564019117089, + "r_y2": 505.54794174746235, + "r_x3": 72.00000026697958, + "r_y3": 505.54794174746235, + "coord_origin": "TOPLEFT" + }, + "text": "From the clunky typewriters of the 19th century to the AI-powered cloud tools of today, the ", + "orig": "From the clunky typewriters of the 19th century to the AI-powered cloud tools of today, the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 532.5119618406654, + "r_x1": 501.86630186094516, + "r_y1": 532.5119618406654, + "r_x2": 501.86630186094516, + "r_y2": 519.2279317947482, + "r_x3": 72.00000026697958, + "r_y3": 519.2279317947482, + "coord_origin": "TOPLEFT" + }, + "text": "word processor has come a long way. It remains an essential tool for communication and ", + "orig": "word processor has come a long way. It remains an essential tool for communication and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 546.4319718887809, + "r_x1": 311.25577115415183, + "r_y1": 546.4319718887809, + "r_x2": 311.25577115415183, + "r_y2": 533.1479518428639, + "r_x3": 72.00000026697958, + "r_y3": 533.1479518428639, + "coord_origin": "TOPLEFT" + }, + "text": "creativity, shaping how we write and share ideas. ", + "orig": "creativity, shaping how we write and share ideas. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "From the clunky typewriters of the 19th century to the AI-powered cloud tools of today, the word processor has come a long way. It remains an essential tool for communication and creativity, shaping how we write and share ideas." + } + ], + "body": [ + { + "label": "text", + "id": 2, + "page_no": 1, + "cluster": { + "id": 2, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 72.34796025007586, + "r": 516.5014019152128, + "b": 113.47198039222405, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9813448190689087, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 85.63196029599305, + "r_x1": 516.5014019152128, + "r_y1": 85.63196029599305, + "r_x2": 516.5014019152128, + "r_y2": 72.34796025007586, + "r_x3": 72.00000026697958, + "r_y3": 72.34796025007586, + "coord_origin": "TOPLEFT" + }, + "text": "Other notable software from this era included WordPerfect, which was popular among legal ", + "orig": "Other notable software from this era included WordPerfect, which was popular among legal ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 99.31195034327891, + "r_x1": 466.85745173113065, + "r_y1": 99.31195034327891, + "r_x2": 466.85745173113065, + "r_y2": 86.02795029736171, + "r_x3": 72.00000026697958, + "r_y3": 86.02795029736171, + "coord_origin": "TOPLEFT" + }, + "text": "professionals, and Apple\u2019s MacWrite, which leveraged the Macintosh\u2019s graphical ", + "orig": "professionals, and Apple\u2019s MacWrite, which leveraged the Macintosh\u2019s graphical ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 113.47198039222405, + "r_x1": 132.64452049185246, + "r_y1": 113.47198039222405, + "r_x2": 132.64452049185246, + "r_y2": 100.18799034630695, + "r_x3": 72.00000026697958, + "r_y3": 100.18799034630695, + "coord_origin": "TOPLEFT" + }, + "text": "capabilities. ", + "orig": "capabilities. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "Other notable software from this era included WordPerfect, which was popular among legal professionals, and Apple's MacWrite, which leveraged the Macintosh's graphical capabilities." + }, + { + "label": "section_header", + "id": 8, + "page_no": 1, + "cluster": { + "id": 8, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 155.78491053848165, + "r": 272.1976610093225, + "b": 170.6630205899088, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9389315843582153, + "cells": [ + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 170.6630205899088, + "r_x1": 272.1976610093225, + "r_y1": 170.6630205899088, + "r_x2": 272.1976610093225, + "r_y2": 155.78491053848165, + "r_x3": 72.00000026697958, + "r_y3": 155.78491053848165, + "coord_origin": "TOPLEFT" + }, + "text": "The Modern Era (1990s - Present) ", + "orig": "The Modern Era (1990s - Present) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The Modern Era (1990s - Present)" + }, + { + "label": "text", + "id": 3, + "page_no": 1, + "cluster": { + "id": 3, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 185.14795063997713, + "r": 510.8733818943439, + "b": 212.35199073400975, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9798638820648193, + "cells": [ + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 198.43194068589423, + "r_x1": 510.8733818943439, + "r_y1": 198.43194068589423, + "r_x2": 510.8733818943439, + "r_y2": 185.14795063997713, + "r_x3": 72.00000026697958, + "r_y3": 185.14795063997713, + "coord_origin": "TOPLEFT" + }, + "text": "By the 1990s, word processing software had become more sophisticated, with features like ", + "orig": "By the 1990s, word processing software had become more sophisticated, with features like ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 212.35199073400975, + "r_x1": 379.21872140616193, + "r_y1": 212.35199073400975, + "r_x2": 379.21872140616193, + "r_y2": 199.06799068809255, + "r_x3": 72.00000026697958, + "r_y3": 199.06799068809255, + "coord_origin": "TOPLEFT" + }, + "text": "spell check, grammar check, templates, and collaborative tools. ", + "orig": "spell check, grammar check, templates, and collaborative tools. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "By the 1990s, word processing software had become more sophisticated, with features like spell check, grammar check, templates, and collaborative tools." + }, + { + "label": "list_item", + "id": 6, + "page_no": 1, + "cluster": { + "id": 6, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 226.66797078349396, + "r": 491.2357518215266, + "b": 253.6319608766969, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.968998372554779, + "cells": [ + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 239.5775708281169, + "r_x1": 94.63680335091797, + "r_y1": 239.5775708281169, + "r_x2": 94.63680335091797, + "r_y2": 227.2295507854351, + "r_x3": 90.00000033372447, + "r_y3": 227.2295507854351, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 239.95196082941106, + "r_x1": 221.28960082055283, + "r_y1": 239.95196082941106, + "r_x2": 221.28960082055283, + "r_y2": 226.66797078349396, + "r_x3": 108.00000040046937, + "r_y3": 226.66797078349396, + "coord_origin": "TOPLEFT" + }, + "text": "Microsoft Office Suite", + "orig": "Microsoft Office Suite", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 221.29102082055812, + "r_y0": 239.95196082941106, + "r_x1": 491.2357518215266, + "r_y1": 239.95196082941106, + "r_x2": 491.2357518215266, + "r_y2": 226.66797078349396, + "r_x3": 221.29102082055812, + "r_y3": 226.66797078349396, + "coord_origin": "TOPLEFT" + }, + "text": ": Microsoft continued to dominate with its Office Suite, ", + "orig": ": Microsoft continued to dominate with its Office Suite, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 253.6319608766969, + "r_x1": 466.9336917314133, + "r_y1": 253.6319608766969, + "r_x2": 466.9336917314133, + "r_y2": 240.3479608307798, + "r_x3": 108.00000040046937, + "r_y3": 240.3479608307798, + "coord_origin": "TOPLEFT" + }, + "text": "integrating Word with other productivity tools like Excel and PowerPoint. ", + "orig": "integrating Word with other productivity tools like Excel and PowerPoint. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Microsoft Office Suite : Microsoft continued to dominate with its Office Suite, integrating Word with other productivity tools like Excel and PowerPoint." + }, + { + "label": "list_item", + "id": 5, + "page_no": 1, + "cluster": { + "id": 5, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 254.26794087889516, + "r": 517.5377819190559, + "b": 281.2319909720984, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9696746468544006, + "cells": [ + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 267.1775509235182, + "r_x1": 94.63680335091797, + "r_y1": 267.1775509235182, + "r_x2": 94.63680335091797, + "r_y2": 254.82959088083658, + "r_x3": 90.00000033372447, + "r_y3": 254.82959088083658, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 267.55194092481236, + "r_x1": 252.64317093681342, + "r_y1": 267.55194092481236, + "r_x2": 252.64317093681342, + "r_y2": 254.26794087889516, + "r_x3": 108.00000040046937, + "r_y3": 254.26794087889516, + "coord_origin": "TOPLEFT" + }, + "text": "OpenOffice and LibreOffice", + "orig": "OpenOffice and LibreOffice", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 252.6446409368189, + "r_y0": 267.55194092481236, + "r_x1": 517.5377819190559, + "r_y1": 267.55194092481236, + "r_x2": 517.5377819190559, + "r_y2": 254.26794087889516, + "r_x3": 252.6446409368189, + "r_y3": 254.26794087889516, + "coord_origin": "TOPLEFT" + }, + "text": ": Open-source alternatives emerged in the early 2000s, ", + "orig": ": Open-source alternatives emerged in the early 2000s, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 281.2319909720984, + "r_x1": 354.59183131484417, + "r_y1": 281.2319909720984, + "r_x2": 354.59183131484417, + "r_y2": 267.94793092618113, + "r_x3": 108.00000040046937, + "r_y3": 267.94793092618113, + "coord_origin": "TOPLEFT" + }, + "text": "offering free and flexible word processing options. ", + "orig": "offering free and flexible word processing options. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 OpenOffice and LibreOffice : Open-source alternatives emerged in the early 2000s, offering free and flexible word processing options." + }, + { + "label": "list_item", + "id": 4, + "page_no": 1, + "cluster": { + "id": 4, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 281.86798097429676, + "r": 524.5618919451015, + "b": 322.99194111644454, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9762884378433228, + "cells": [ + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 294.7775810189197, + "r_x1": 94.63680335091797, + "r_y1": 294.7775810189197, + "r_x2": 94.63680335091797, + "r_y2": 282.4295609762379, + "r_x3": 90.00000033372447, + "r_y3": 282.4295609762379, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 295.15197102021375, + "r_x1": 206.64719076625803, + "r_y1": 295.15197102021375, + "r_x2": 206.64719076625803, + "r_y2": 281.86798097429676, + "r_x3": 108.00000040046937, + "r_y3": 281.86798097429676, + "coord_origin": "TOPLEFT" + }, + "text": "Google Docs (2006)", + "orig": "Google Docs (2006)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 206.64845076626273, + "r_y0": 295.15197102021375, + "r_x1": 524.5618919451015, + "r_y1": 295.15197102021375, + "r_x2": 524.5618919451015, + "r_y2": 281.86798097429676, + "r_x3": 206.64845076626273, + "r_y3": 281.86798097429676, + "coord_origin": "TOPLEFT" + }, + "text": ": The introduction of cloud-based word processing revolutionized ", + "orig": ": The introduction of cloud-based word processing revolutionized ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 308.8319710674996, + "r_x1": 515.8681019128646, + "r_y1": 308.8319710674996, + "r_x2": 515.8681019128646, + "r_y2": 295.5479710215825, + "r_x3": 108.00000040046937, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": "collaboration. Google Docs enabled real-time editing and sharing, making it a staple ", + "orig": "collaboration. Google Docs enabled real-time editing and sharing, making it a staple ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 322.99194111644454, + "r_x1": 243.2870309021204, + "r_y1": 322.99194111644454, + "r_x2": 243.2870309021204, + "r_y2": 309.70794107052745, + "r_x3": 108.00000040046937, + "r_y3": 309.70794107052745, + "coord_origin": "TOPLEFT" + }, + "text": "for teams and remote work. ", + "orig": "for teams and remote work. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Google Docs (2006) : The introduction of cloud-based word processing revolutionized collaboration. Google Docs enabled real-time editing and sharing, making it a staple for teams and remote work." + }, + { + "label": "section_header", + "id": 7, + "page_no": 1, + "cluster": { + "id": 7, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 365.30493126270244, + "r": 231.71083085919528, + "b": 380.18298131412945, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9581918120384216, + "cells": [ + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 380.18298131412945, + "r_x1": 231.71083085919528, + "r_y1": 380.18298131412945, + "r_x2": 231.71083085919528, + "r_y2": 365.30493126270244, + "r_x3": 72.00000026697958, + "r_y3": 365.30493126270244, + "coord_origin": "TOPLEFT" + }, + "text": "Future of Word Processing ", + "orig": "Future of Word Processing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "Future of Word Processing" + }, + { + "label": "text", + "id": 0, + "page_no": 1, + "cluster": { + "id": 0, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 394.6679713641979, + "r": 520.5438819302025, + "b": 463.3919616017472, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9876114726066589, + "cells": [ + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 407.95196141011496, + "r_x1": 475.5335117633018, + "r_y1": 407.95196141011496, + "r_x2": 475.5335117633018, + "r_y2": 394.6679713641979, + "r_x3": 72.00000026697958, + "r_y3": 394.6679713641979, + "coord_origin": "TOPLEFT" + }, + "text": "Today, word processors are more than just tools for typing. They integrate artificial ", + "orig": "Today, word processors are more than just tools for typing. They integrate artificial ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 421.6319614574008, + "r_x1": 520.5078119300688, + "r_y1": 421.6319614574008, + "r_x2": 520.5078119300688, + "r_y2": 408.3479614114837, + "r_x3": 72.00000026697958, + "r_y3": 408.3479614114837, + "coord_origin": "TOPLEFT" + }, + "text": "intelligence for grammar and style suggestions (e.g., Grammarly), voice-to-text features, and ", + "orig": "intelligence for grammar and style suggestions (e.g., Grammarly), voice-to-text features, and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 435.55194150551625, + "r_x1": 520.5438819302025, + "r_y1": 435.55194150551625, + "r_x2": 520.5438819302025, + "r_y2": 422.2679414595992, + "r_x3": 72.00000026697958, + "r_y3": 422.2679414595992, + "coord_origin": "TOPLEFT" + }, + "text": "advanced layout options. As AI continues to advance, word processors may evolve into even ", + "orig": "advanced layout options. As AI continues to advance, word processors may evolve into even ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 449.2319915528023, + "r_x1": 498.19421184732886, + "r_y1": 449.2319915528023, + "r_x2": 498.19421184732886, + "r_y2": 435.9479615068851, + "r_x3": 72.00000026697958, + "r_y3": 435.9479615068851, + "coord_origin": "TOPLEFT" + }, + "text": "more intuitive tools that predict user needs, automate repetitive tasks, and support richer ", + "orig": "more intuitive tools that predict user needs, automate repetitive tasks, and support richer ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 463.3919616017472, + "r_x1": 187.64061069578074, + "r_y1": 463.3919616017472, + "r_x2": 187.64061069578074, + "r_y2": 450.1079715558302, + "r_x3": 72.00000026697958, + "r_y3": 450.1079715558302, + "coord_origin": "TOPLEFT" + }, + "text": "multimedia integration. ", + "orig": "multimedia integration. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "Today, word processors are more than just tools for typing. They integrate artificial intelligence for grammar and style suggestions (e.g., Grammarly), voice-to-text features, and advanced layout options. As AI continues to advance, word processors may evolve into even more intuitive tools that predict user needs, automate repetitive tasks, and support richer multimedia integration." + }, + { + "label": "text", + "id": 1, + "page_no": 1, + "cluster": { + "id": 1, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 505.54794174746235, + "r": 515.5564019117089, + "b": 546.4319718887809, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9841670393943787, + "cells": [ + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 518.8319717933796, + "r_x1": 515.5564019117089, + "r_y1": 518.8319717933796, + "r_x2": 515.5564019117089, + "r_y2": 505.54794174746235, + "r_x3": 72.00000026697958, + "r_y3": 505.54794174746235, + "coord_origin": "TOPLEFT" + }, + "text": "From the clunky typewriters of the 19th century to the AI-powered cloud tools of today, the ", + "orig": "From the clunky typewriters of the 19th century to the AI-powered cloud tools of today, the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 532.5119618406654, + "r_x1": 501.86630186094516, + "r_y1": 532.5119618406654, + "r_x2": 501.86630186094516, + "r_y2": 519.2279317947482, + "r_x3": 72.00000026697958, + "r_y3": 519.2279317947482, + "coord_origin": "TOPLEFT" + }, + "text": "word processor has come a long way. It remains an essential tool for communication and ", + "orig": "word processor has come a long way. It remains an essential tool for communication and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 546.4319718887809, + "r_x1": 311.25577115415183, + "r_y1": 546.4319718887809, + "r_x2": 311.25577115415183, + "r_y2": 533.1479518428639, + "r_x3": 72.00000026697958, + "r_y3": 533.1479518428639, + "coord_origin": "TOPLEFT" + }, + "text": "creativity, shaping how we write and share ideas. ", + "orig": "creativity, shaping how we write and share ideas. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "From the clunky typewriters of the 19th century to the AI-powered cloud tools of today, the word processor has come a long way. It remains an essential tool for communication and creativity, shaping how we write and share ideas." + } + ], + "headers": [] + } + }, + { + "page_no": 2, + "size": { + "width": 595.2000122070312, + "height": 841.9199829101562 + }, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 87.62298030287513, + "r_x1": 276.7262310261146, + "r_y1": 87.62298030287513, + "r_x2": 276.7262310261146, + "r_y2": 72.74493025144807, + "r_x3": 72.00000026697958, + "r_y3": 72.74493025144807, + "coord_origin": "TOPLEFT" + }, + "text": "Specialized Word Processing Tools ", + "orig": "Specialized Word Processing Tools ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 115.15197039803093, + "r_x1": 507.8394518830939, + "r_y1": 115.15197039803093, + "r_x2": 507.8394518830939, + "r_y2": 101.86798035211382, + "r_x3": 72.00000026697958, + "r_y3": 101.86798035211382, + "coord_origin": "TOPLEFT" + }, + "text": "In addition to general-purpose word processors, specialized tools have emerged to cater to ", + "orig": "In addition to general-purpose word processors, specialized tools have emerged to cater to ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 129.07196044614636, + "r_x1": 514.6727319084321, + "r_y1": 129.07196044614636, + "r_x2": 514.6727319084321, + "r_y2": 115.78796040022928, + "r_x3": 72.00000026697958, + "r_y3": 115.78796040022928, + "coord_origin": "TOPLEFT" + }, + "text": "specific industries and needs. These tools incorporate unique features tailored to their users' ", + "orig": "specific industries and needs. These tools incorporate unique features tailored to their users' ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 142.99194049426183, + "r_x1": 129.66211048079356, + "r_y1": 142.99194049426183, + "r_x2": 129.66211048079356, + "r_y2": 129.70794044834474, + "r_x3": 72.00000026697958, + "r_y3": 129.70794044834474, + "coord_origin": "TOPLEFT" + }, + "text": "workflows: ", + "orig": "workflows: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 170.21759058836926, + "r_x1": 94.63680335091797, + "r_y1": 170.21759058836926, + "r_x2": 94.63680335091797, + "r_y2": 157.86956054568725, + "r_x3": 90.00000033372447, + "r_y3": 157.86956054568725, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 170.5919805896633, + "r_x1": 277.6560410295624, + "r_y1": 170.5919805896633, + "r_x2": 277.6560410295624, + "r_y2": 157.30798054374623, + "r_x3": 108.00000040046937, + "r_y3": 157.30798054374623, + "coord_origin": "TOPLEFT" + }, + "text": "Academic and Technical Writing", + "orig": "Academic and Technical Writing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 277.65817102957027, + "r_y0": 170.5919805896633, + "r_x1": 495.26132183645365, + "r_y1": 170.5919805896633, + "r_x2": 495.26132183645365, + "r_y2": 157.30798054374623, + "r_x3": 277.65817102957027, + "r_y3": 157.30798054374623, + "coord_origin": "TOPLEFT" + }, + "text": ": Tools like LaTeX gained popularity among ", + "orig": ": Tools like LaTeX gained popularity among ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 184.27197063694928, + "r_x1": 495.5327118374599, + "r_y1": 184.27197063694928, + "r_x2": 495.5327118374599, + "r_y2": 170.98797059103208, + "r_x3": 108.00000040046937, + "r_y3": 170.98797059103208, + "coord_origin": "TOPLEFT" + }, + "text": "academics, scientists, and engineers. Unlike traditional word processors, LaTeX ", + "orig": "academics, scientists, and engineers. Unlike traditional word processors, LaTeX ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 198.1919506850645, + "r_x1": 494.8486918349235, + "r_y1": 198.1919506850645, + "r_x2": 494.8486918349235, + "r_y2": 184.90796063914763, + "r_x3": 108.00000040046937, + "r_y3": 184.90796063914763, + "coord_origin": "TOPLEFT" + }, + "text": "focuses on precise formatting, particularly for complex mathematical equations, ", + "orig": "focuses on precise formatting, particularly for complex mathematical equations, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 211.87195073235046, + "r_x1": 519.5101919263695, + "r_y1": 211.87195073235046, + "r_x2": 519.5101919263695, + "r_y2": 198.58795068643337, + "r_x3": 108.00000040046937, + "r_y3": 198.58795068643337, + "coord_origin": "TOPLEFT" + }, + "text": "scientific papers, and technical documents. It relies on a markup language to produce ", + "orig": "scientific papers, and technical documents. It relies on a markup language to produce ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 225.7919907804661, + "r_x1": 320.6426411889588, + "r_y1": 225.7919907804661, + "r_x2": 320.6426411889588, + "r_y2": 212.50799073454903, + "r_x3": 108.00000040046937, + "r_y3": 212.50799073454903, + "coord_origin": "TOPLEFT" + }, + "text": "polished documents suitable for publishing. ", + "orig": "polished documents suitable for publishing. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 239.0975908264578, + "r_x1": 94.63680335091797, + "r_y1": 239.0975908264578, + "r_x2": 94.63680335091797, + "r_y2": 226.7495707837761, + "r_x3": 90.00000033372447, + "r_y3": 226.7495707837761, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 239.47198082775196, + "r_x1": 228.9672108490218, + "r_y1": 239.47198082775196, + "r_x2": 228.9672108490218, + "r_y2": 226.18799078183486, + "r_x3": 108.00000040046937, + "r_y3": 226.18799078183486, + "coord_origin": "TOPLEFT" + }, + "text": "Screenwriting Software", + "orig": "Screenwriting Software", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 228.9668008490203, + "r_y0": 239.47198082775196, + "r_x1": 495.22037183630175, + "r_y1": 239.47198082775196, + "r_x2": 495.22037183630175, + "r_y2": 226.18799078183486, + "r_x3": 228.9668008490203, + "r_y3": 226.18799078183486, + "coord_origin": "TOPLEFT" + }, + "text": ": For screenwriters, tools like Final Draft and Celtx are ", + "orig": ": For screenwriters, tools like Final Draft and Celtx are ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 253.3919608758673, + "r_x1": 503.5271318671036, + "r_y1": 253.3919608758673, + "r_x2": 503.5271318671036, + "r_y2": 240.1079708299502, + "r_x3": 108.00000040046937, + "r_y3": 240.1079708299502, + "coord_origin": "TOPLEFT" + }, + "text": "specialized to handle scripts for film and television. These programs automate the ", + "orig": "specialized to handle scripts for film and television. These programs automate the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 267.07196092315326, + "r_x1": 457.223911695409, + "r_y1": 267.07196092315326, + "r_x2": 457.223911695409, + "r_y2": 253.78796087723617, + "r_x3": 108.00000040046937, + "r_y3": 253.78796087723617, + "coord_origin": "TOPLEFT" + }, + "text": "formatting of dialogue, scene descriptions, and other elements unique to ", + "orig": "formatting of dialogue, scene descriptions, and other elements unique to ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 280.9919409712686, + "r_x1": 179.30858066488514, + "r_y1": 280.9919409712686, + "r_x2": 179.30858066488514, + "r_y2": 267.7079409253515, + "r_x3": 108.00000040046937, + "r_y3": 267.7079409253515, + "coord_origin": "TOPLEFT" + }, + "text": "screenwriting. ", + "orig": "screenwriting. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 294.2975410172604, + "r_x1": 94.63680335091797, + "r_y1": 294.2975410172604, + "r_x2": 94.63680335091797, + "r_y2": 281.9495809745787, + "r_x3": 90.00000033372447, + "r_y3": 281.9495809745787, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 294.67193101855446, + "r_x1": 249.96240092687302, + "r_y1": 294.67193101855446, + "r_x2": 249.96240092687302, + "r_y2": 281.38800097263766, + "r_x3": 108.00000040046937, + "r_y3": 281.38800097263766, + "coord_origin": "TOPLEFT" + }, + "text": "Legal Document Processors", + "orig": "Legal Document Processors", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 249.966710926889, + "r_y0": 294.67193101855446, + "r_x1": 513.5488919042649, + "r_y1": 294.67193101855446, + "r_x2": 513.5488919042649, + "r_y2": 281.38800097263766, + "r_x3": 249.966710926889, + "r_y3": 281.38800097263766, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors tailored for legal professionals, like ", + "orig": ": Word processors tailored for legal professionals, like ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 308.5919810666702, + "r_x1": 524.4814519448033, + "r_y1": 308.5919810666702, + "r_x2": 524.4814519448033, + "r_y2": 295.3079810207531, + "r_x3": 108.00000040046937, + "r_y3": 295.3079810207531, + "coord_origin": "TOPLEFT" + }, + "text": "WordPerfect, offered features such as redlining (early version tracking) and document ", + "orig": "WordPerfect, offered features such as redlining (early version tracking) and document ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 322.27197111395594, + "r_x1": 489.909551816609, + "r_y1": 322.27197111395594, + "r_x2": 489.909551816609, + "r_y2": 308.98797106803886, + "r_x3": 108.00000040046937, + "r_y3": 308.98797106803886, + "coord_origin": "TOPLEFT" + }, + "text": "comparison. Even today, many law firms rely on these tools due to their robust ", + "orig": "comparison. Even today, many law firms rely on these tools due to their robust ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 336.43194116290096, + "r_x1": 343.2655012728455, + "r_y1": 336.43194116290096, + "r_x2": 343.2655012728455, + "r_y2": 323.1479511169839, + "r_x3": 108.00000040046937, + "r_y3": 323.1479511169839, + "coord_origin": "TOPLEFT" + }, + "text": "formatting options for contracts and legal briefs. ", + "orig": "formatting options for contracts and legal briefs. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 393.62298136058575, + "r_x1": 340.46878126247515, + "r_y1": 393.62298136058575, + "r_x2": 340.46878126247515, + "r_y2": 378.7449313091588, + "r_x3": 72.00000026697958, + "r_y3": 378.7449313091588, + "coord_origin": "TOPLEFT" + }, + "text": "Key Features That Changed Word Processing ", + "orig": "Key Features That Changed Word Processing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 421.1519714557417, + "r_x1": 514.7196019086059, + "r_y1": 421.1519714557417, + "r_x2": 514.7196019086059, + "r_y2": 407.86798140982467, + "r_x3": 72.00000026697958, + "r_y3": 407.86798140982467, + "coord_origin": "TOPLEFT" + }, + "text": "The evolution of word processors wasn't just about hardware or software improvements-it ", + "orig": "The evolution of word processors wasn't just about hardware or software improvements-it ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 435.07196150385715, + "r_x1": 490.85507182011503, + "r_y1": 435.07196150385715, + "r_x2": 490.85507182011503, + "r_y2": 421.78796145794007, + "r_x3": 72.00000026697958, + "r_y3": 421.78796145794007, + "coord_origin": "TOPLEFT" + }, + "text": "was about the features that revolutionized how people wrote and edited. Some of these ", + "orig": "was about the features that revolutionized how people wrote and edited. Some of these ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 448.9919715519727, + "r_x1": 227.60155084395785, + "r_y1": 448.9919715519727, + "r_x2": 227.60155084395785, + "r_y2": 435.7079415060554, + "r_x3": 72.00000026697958, + "r_y3": 435.7079415060554, + "coord_origin": "TOPLEFT" + }, + "text": "transformative features include: ", + "orig": "transformative features include: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 476.5919816473741, + "r_x1": 99.00000036709692, + "r_y1": 476.5919816473741, + "r_x2": 99.00000036709692, + "r_y2": 463.30795160145686, + "r_x3": 90.00000033372447, + "r_y3": 463.30795160145686, + "coord_origin": "TOPLEFT" + }, + "text": "1.", + "orig": "1.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 28, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 476.5919816473741, + "r_x1": 166.01521061559265, + "r_y1": 476.5919816473741, + "r_x2": 166.01521061559265, + "r_y2": 463.30795160145686, + "r_x3": 108.00000040046937, + "r_y3": 463.30795160145686, + "coord_origin": "TOPLEFT" + }, + "text": "Undo/Redo", + "orig": "Undo/Redo", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 29, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 166.0136606155869, + "r_y0": 476.5919816473741, + "r_x1": 509.2687418883938, + "r_y1": 476.5919816473741, + "r_x2": 509.2687418883938, + "r_y2": 463.30795160145686, + "r_x3": 166.0136606155869, + "r_y3": 463.30795160145686, + "coord_origin": "TOPLEFT" + }, + "text": ": Introduced in the 1980s, the ability to undo mistakes and redo actions ", + "orig": ": Introduced in the 1980s, the ability to undo mistakes and redo actions ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 30, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 490.51196169548945, + "r_x1": 379.87488140859494, + "r_y1": 490.51196169548945, + "r_x2": 379.87488140859494, + "r_y2": 477.2279316495723, + "r_x3": 108.00000040046937, + "r_y3": 477.2279316495723, + "coord_origin": "TOPLEFT" + }, + "text": "made experimentation and error correction much easier. ", + "orig": "made experimentation and error correction much easier. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 31, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 504.1919517427753, + "r_x1": 99.00000036709692, + "r_y1": 504.1919517427753, + "r_x2": 99.00000036709692, + "r_y2": 490.90796169685825, + "r_x3": 90.00000033372447, + "r_y3": 490.90796169685825, + "coord_origin": "TOPLEFT" + }, + "text": "2.", + "orig": "2.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 32, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 504.1919517427753, + "r_x1": 281.9975910456611, + "r_y1": 504.1919517427753, + "r_x2": 281.9975910456611, + "r_y2": 490.90796169685825, + "r_x3": 108.00000040046937, + "r_y3": 490.90796169685825, + "coord_origin": "TOPLEFT" + }, + "text": "Spell Check and Grammar Check", + "orig": "Spell Check and Grammar Check", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 33, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 282.00000104567005, + "r_y0": 504.1919517427753, + "r_x1": 516.6022319155867, + "r_y1": 504.1919517427753, + "r_x2": 516.6022319155867, + "r_y2": 490.90796169685825, + "r_x3": 282.00000104567005, + "r_y3": 490.90796169685825, + "coord_origin": "TOPLEFT" + }, + "text": ": By the 1990s, these became standard, allowing ", + "orig": ": By the 1990s, these became standard, allowing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 34, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 518.1119717908908, + "r_x1": 273.2930310133841, + "r_y1": 518.1119717908908, + "r_x2": 273.2930310133841, + "r_y2": 504.82794174497366, + "r_x3": 108.00000040046937, + "r_y3": 504.82794174497366, + "coord_origin": "TOPLEFT" + }, + "text": "users to spot errors automatically. ", + "orig": "users to spot errors automatically. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 35, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 531.7919618381768, + "r_x1": 99.00000036709692, + "r_y1": 531.7919618381768, + "r_x2": 99.00000036709692, + "r_y2": 518.5079317922596, + "r_x3": 90.00000033372447, + "r_y3": 518.5079317922596, + "coord_origin": "TOPLEFT" + }, + "text": "3.", + "orig": "3.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 36, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 531.7919618381768, + "r_x1": 161.32320059819446, + "r_y1": 531.7919618381768, + "r_x2": 161.32320059819446, + "r_y2": 518.5079317922596, + "r_x3": 108.00000040046937, + "r_y3": 518.5079317922596, + "coord_origin": "TOPLEFT" + }, + "text": "Templates", + "orig": "Templates", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 37, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 161.32617059820544, + "r_y0": 531.7919618381768, + "r_x1": 486.90097180545297, + "r_y1": 531.7919618381768, + "r_x2": 486.90097180545297, + "r_y2": 518.5079317922596, + "r_x3": 161.32617059820544, + "r_y3": 518.5079317922596, + "coord_origin": "TOPLEFT" + }, + "text": ": Pre-designed formats for documents, such as resumes, letters, and ", + "orig": ": Pre-designed formats for documents, such as resumes, letters, and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 38, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 545.7119718862922, + "r_x1": 268.2890309948291, + "r_y1": 545.7119718862922, + "r_x2": 268.2890309948291, + "r_y2": 532.427951840375, + "r_x3": 108.00000040046937, + "r_y3": 532.427951840375, + "coord_origin": "TOPLEFT" + }, + "text": "invoices, helped users save time. ", + "orig": "invoices, helped users save time. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 39, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 559.391961933578, + "r_x1": 99.00000036709692, + "r_y1": 559.391961933578, + "r_x2": 99.00000036709692, + "r_y2": 546.1079418876609, + "r_x3": 90.00000033372447, + "r_y3": 546.1079418876609, + "coord_origin": "TOPLEFT" + }, + "text": "4.", + "orig": "4.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 40, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 559.391961933578, + "r_x1": 186.338390690952, + "r_y1": 559.391961933578, + "r_x2": 186.338390690952, + "r_y2": 546.1079418876609, + "r_x3": 108.00000040046937, + "r_y3": 546.1079418876609, + "coord_origin": "TOPLEFT" + }, + "text": "Track Changes", + "orig": "Track Changes", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 41, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 186.3398406909574, + "r_y0": 559.391961933578, + "r_x1": 502.21259186222926, + "r_y1": 559.391961933578, + "r_x2": 502.21259186222926, + "r_y2": 546.1079418876609, + "r_x3": 186.3398406909574, + "r_y3": 546.1079418876609, + "coord_origin": "TOPLEFT" + }, + "text": ": A game-changer for collaboration, this feature allowed multiple ", + "orig": ": A game-changer for collaboration, this feature allowed multiple ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 42, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 573.3119819816936, + "r_x1": 384.6211214261943, + "r_y1": 573.3119819816936, + "r_x2": 384.6211214261943, + "r_y2": 560.0279519357764, + "r_x3": 108.00000040046937, + "r_y3": 560.0279519357764, + "coord_origin": "TOPLEFT" + }, + "text": "users to suggest edits while maintaining the original text. ", + "orig": "users to suggest edits while maintaining the original text. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 43, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 586.9919720289795, + "r_x1": 99.00000036709692, + "r_y1": 586.9919720289795, + "r_x2": 99.00000036709692, + "r_y2": 573.7079419830623, + "r_x3": 90.00000033372447, + "r_y3": 573.7079419830623, + "coord_origin": "TOPLEFT" + }, + "text": "5.", + "orig": "5.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 44, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 586.9919720289795, + "r_x1": 236.3166508762739, + "r_y1": 586.9919720289795, + "r_x2": 236.3166508762739, + "r_y2": 573.7079419830623, + "r_x3": 108.00000040046937, + "r_y3": 573.7079419830623, + "coord_origin": "TOPLEFT" + }, + "text": "Real-Time Collaboration", + "orig": "Real-Time Collaboration", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 45, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 236.32033087628753, + "r_y0": 586.9919720289795, + "r_x1": 491.9297818241001, + "r_y1": 586.9919720289795, + "r_x2": 491.9297818241001, + "r_y2": 573.7079419830623, + "r_x3": 236.32033087628753, + "r_y3": 573.7079419830623, + "coord_origin": "TOPLEFT" + }, + "text": ": Tools like Google Docs and Microsoft 365 enabled ", + "orig": ": Tools like Google Docs and Microsoft 365 enabled ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 46, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 600.9119520770948, + "r_x1": 521.8798819351565, + "r_y1": 600.9119520770948, + "r_x2": 521.8798819351565, + "r_y2": 587.6279620311777, + "r_x3": 108.00000040046937, + "r_y3": 587.6279620311777, + "coord_origin": "TOPLEFT" + }, + "text": "multiple users to edit the same document simultaneously, forever changing teamwork ", + "orig": "multiple users to edit the same document simultaneously, forever changing teamwork ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 47, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 614.8319721252104, + "r_x1": 159.99023059325174, + "r_y1": 614.8319721252104, + "r_x2": 159.99023059325174, + "r_y2": 601.5479420792932, + "r_x3": 108.00000040046937, + "r_y3": 601.5479420792932, + "coord_origin": "TOPLEFT" + }, + "text": "dynamics. ", + "orig": "dynamics. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 48, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 672.2629723237247, + "r_x1": 311.9594411567611, + "r_y1": 672.2629723237247, + "r_x2": 311.9594411567611, + "r_y2": 657.3849222722977, + "r_x3": 72.00000026697958, + "r_y3": 657.3849222722977, + "coord_origin": "TOPLEFT" + }, + "text": "The Cultural Impact of Word Processors ", + "orig": "The Cultural Impact of Word Processors ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 49, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 699.7919624188806, + "r_x1": 494.0065318318008, + "r_y1": 699.7919624188806, + "r_x2": 494.0065318318008, + "r_y2": 686.5079323729635, + "r_x3": 72.00000026697958, + "r_y3": 686.5079323729635, + "coord_origin": "TOPLEFT" + }, + "text": "The word processor didn't just change workplaces-it changed culture. It democratized ", + "orig": "The word processor didn't just change workplaces-it changed culture. It democratized ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 50, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 713.4719524661665, + "r_x1": 474.54910175965165, + "r_y1": 713.4719524661665, + "r_x2": 474.54910175965165, + "r_y2": 700.1879524202494, + "r_x3": 72.00000026697958, + "r_y3": 700.1879524202494, + "coord_origin": "TOPLEFT" + }, + "text": "writing, enabling anyone with access to a computer to produce professional-quality ", + "orig": "writing, enabling anyone with access to a computer to produce professional-quality ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 51, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 727.6319625151116, + "r_x1": 518.9003919241085, + "r_y1": 727.6319625151116, + "r_x2": 518.9003919241085, + "r_y2": 714.3479624691945, + "r_x3": 72.00000026697958, + "r_y3": 714.3479624691945, + "coord_origin": "TOPLEFT" + }, + "text": "documents. This shift had profound implications for education, business, and creative fields: ", + "orig": "documents. This shift had profound implications for education, business, and creative fields: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "parsed_page": null, + "predictions": { + "layout": { + "clusters": [ + { + "id": 11, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 72.74493025144807, + "r": 276.7262310261146, + "b": 87.62298030287513, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9600434303283691, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 87.62298030287513, + "r_x1": 276.7262310261146, + "r_y1": 87.62298030287513, + "r_x2": 276.7262310261146, + "r_y2": 72.74493025144807, + "r_x3": 72.00000026697958, + "r_y3": 72.74493025144807, + "coord_origin": "TOPLEFT" + }, + "text": "Specialized Word Processing Tools ", + "orig": "Specialized Word Processing Tools ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 3, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 101.86798035211382, + "r": 514.6727319084321, + "b": 142.99194049426183, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9812871813774109, + "cells": [ + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 115.15197039803093, + "r_x1": 507.8394518830939, + "r_y1": 115.15197039803093, + "r_x2": 507.8394518830939, + "r_y2": 101.86798035211382, + "r_x3": 72.00000026697958, + "r_y3": 101.86798035211382, + "coord_origin": "TOPLEFT" + }, + "text": "In addition to general-purpose word processors, specialized tools have emerged to cater to ", + "orig": "In addition to general-purpose word processors, specialized tools have emerged to cater to ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 129.07196044614636, + "r_x1": 514.6727319084321, + "r_y1": 129.07196044614636, + "r_x2": 514.6727319084321, + "r_y2": 115.78796040022928, + "r_x3": 72.00000026697958, + "r_y3": 115.78796040022928, + "coord_origin": "TOPLEFT" + }, + "text": "specific industries and needs. These tools incorporate unique features tailored to their users' ", + "orig": "specific industries and needs. These tools incorporate unique features tailored to their users' ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 142.99194049426183, + "r_x1": 129.66211048079356, + "r_y1": 142.99194049426183, + "r_x2": 129.66211048079356, + "r_y2": 129.70794044834474, + "r_x3": 72.00000026697958, + "r_y3": 129.70794044834474, + "coord_origin": "TOPLEFT" + }, + "text": "workflows: ", + "orig": "workflows: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 1, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 157.30798054374623, + "r": 519.5101919263695, + "b": 225.7919907804661, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9829118251800537, + "cells": [ + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 170.21759058836926, + "r_x1": 94.63680335091797, + "r_y1": 170.21759058836926, + "r_x2": 94.63680335091797, + "r_y2": 157.86956054568725, + "r_x3": 90.00000033372447, + "r_y3": 157.86956054568725, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 170.5919805896633, + "r_x1": 277.6560410295624, + "r_y1": 170.5919805896633, + "r_x2": 277.6560410295624, + "r_y2": 157.30798054374623, + "r_x3": 108.00000040046937, + "r_y3": 157.30798054374623, + "coord_origin": "TOPLEFT" + }, + "text": "Academic and Technical Writing", + "orig": "Academic and Technical Writing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 277.65817102957027, + "r_y0": 170.5919805896633, + "r_x1": 495.26132183645365, + "r_y1": 170.5919805896633, + "r_x2": 495.26132183645365, + "r_y2": 157.30798054374623, + "r_x3": 277.65817102957027, + "r_y3": 157.30798054374623, + "coord_origin": "TOPLEFT" + }, + "text": ": Tools like LaTeX gained popularity among ", + "orig": ": Tools like LaTeX gained popularity among ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 184.27197063694928, + "r_x1": 495.5327118374599, + "r_y1": 184.27197063694928, + "r_x2": 495.5327118374599, + "r_y2": 170.98797059103208, + "r_x3": 108.00000040046937, + "r_y3": 170.98797059103208, + "coord_origin": "TOPLEFT" + }, + "text": "academics, scientists, and engineers. Unlike traditional word processors, LaTeX ", + "orig": "academics, scientists, and engineers. Unlike traditional word processors, LaTeX ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 198.1919506850645, + "r_x1": 494.8486918349235, + "r_y1": 198.1919506850645, + "r_x2": 494.8486918349235, + "r_y2": 184.90796063914763, + "r_x3": 108.00000040046937, + "r_y3": 184.90796063914763, + "coord_origin": "TOPLEFT" + }, + "text": "focuses on precise formatting, particularly for complex mathematical equations, ", + "orig": "focuses on precise formatting, particularly for complex mathematical equations, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 211.87195073235046, + "r_x1": 519.5101919263695, + "r_y1": 211.87195073235046, + "r_x2": 519.5101919263695, + "r_y2": 198.58795068643337, + "r_x3": 108.00000040046937, + "r_y3": 198.58795068643337, + "coord_origin": "TOPLEFT" + }, + "text": "scientific papers, and technical documents. It relies on a markup language to produce ", + "orig": "scientific papers, and technical documents. It relies on a markup language to produce ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 225.7919907804661, + "r_x1": 320.6426411889588, + "r_y1": 225.7919907804661, + "r_x2": 320.6426411889588, + "r_y2": 212.50799073454903, + "r_x3": 108.00000040046937, + "r_y3": 212.50799073454903, + "coord_origin": "TOPLEFT" + }, + "text": "polished documents suitable for publishing. ", + "orig": "polished documents suitable for publishing. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 4, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 226.18799078183486, + "r": 503.5271318671036, + "b": 280.9919409712686, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9800205230712891, + "cells": [ + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 239.0975908264578, + "r_x1": 94.63680335091797, + "r_y1": 239.0975908264578, + "r_x2": 94.63680335091797, + "r_y2": 226.7495707837761, + "r_x3": 90.00000033372447, + "r_y3": 226.7495707837761, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 239.47198082775196, + "r_x1": 228.9672108490218, + "r_y1": 239.47198082775196, + "r_x2": 228.9672108490218, + "r_y2": 226.18799078183486, + "r_x3": 108.00000040046937, + "r_y3": 226.18799078183486, + "coord_origin": "TOPLEFT" + }, + "text": "Screenwriting Software", + "orig": "Screenwriting Software", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 228.9668008490203, + "r_y0": 239.47198082775196, + "r_x1": 495.22037183630175, + "r_y1": 239.47198082775196, + "r_x2": 495.22037183630175, + "r_y2": 226.18799078183486, + "r_x3": 228.9668008490203, + "r_y3": 226.18799078183486, + "coord_origin": "TOPLEFT" + }, + "text": ": For screenwriters, tools like Final Draft and Celtx are ", + "orig": ": For screenwriters, tools like Final Draft and Celtx are ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 253.3919608758673, + "r_x1": 503.5271318671036, + "r_y1": 253.3919608758673, + "r_x2": 503.5271318671036, + "r_y2": 240.1079708299502, + "r_x3": 108.00000040046937, + "r_y3": 240.1079708299502, + "coord_origin": "TOPLEFT" + }, + "text": "specialized to handle scripts for film and television. These programs automate the ", + "orig": "specialized to handle scripts for film and television. These programs automate the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 267.07196092315326, + "r_x1": 457.223911695409, + "r_y1": 267.07196092315326, + "r_x2": 457.223911695409, + "r_y2": 253.78796087723617, + "r_x3": 108.00000040046937, + "r_y3": 253.78796087723617, + "coord_origin": "TOPLEFT" + }, + "text": "formatting of dialogue, scene descriptions, and other elements unique to ", + "orig": "formatting of dialogue, scene descriptions, and other elements unique to ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 280.9919409712686, + "r_x1": 179.30858066488514, + "r_y1": 280.9919409712686, + "r_x2": 179.30858066488514, + "r_y2": 267.7079409253515, + "r_x3": 108.00000040046937, + "r_y3": 267.7079409253515, + "coord_origin": "TOPLEFT" + }, + "text": "screenwriting. ", + "orig": "screenwriting. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 0, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 281.38800097263766, + "r": 524.4814519448033, + "b": 336.43194116290096, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9835862517356873, + "cells": [ + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 294.2975410172604, + "r_x1": 94.63680335091797, + "r_y1": 294.2975410172604, + "r_x2": 94.63680335091797, + "r_y2": 281.9495809745787, + "r_x3": 90.00000033372447, + "r_y3": 281.9495809745787, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 294.67193101855446, + "r_x1": 249.96240092687302, + "r_y1": 294.67193101855446, + "r_x2": 249.96240092687302, + "r_y2": 281.38800097263766, + "r_x3": 108.00000040046937, + "r_y3": 281.38800097263766, + "coord_origin": "TOPLEFT" + }, + "text": "Legal Document Processors", + "orig": "Legal Document Processors", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 249.966710926889, + "r_y0": 294.67193101855446, + "r_x1": 513.5488919042649, + "r_y1": 294.67193101855446, + "r_x2": 513.5488919042649, + "r_y2": 281.38800097263766, + "r_x3": 249.966710926889, + "r_y3": 281.38800097263766, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors tailored for legal professionals, like ", + "orig": ": Word processors tailored for legal professionals, like ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 308.5919810666702, + "r_x1": 524.4814519448033, + "r_y1": 308.5919810666702, + "r_x2": 524.4814519448033, + "r_y2": 295.3079810207531, + "r_x3": 108.00000040046937, + "r_y3": 295.3079810207531, + "coord_origin": "TOPLEFT" + }, + "text": "WordPerfect, offered features such as redlining (early version tracking) and document ", + "orig": "WordPerfect, offered features such as redlining (early version tracking) and document ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 322.27197111395594, + "r_x1": 489.909551816609, + "r_y1": 322.27197111395594, + "r_x2": 489.909551816609, + "r_y2": 308.98797106803886, + "r_x3": 108.00000040046937, + "r_y3": 308.98797106803886, + "coord_origin": "TOPLEFT" + }, + "text": "comparison. Even today, many law firms rely on these tools due to their robust ", + "orig": "comparison. Even today, many law firms rely on these tools due to their robust ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 336.43194116290096, + "r_x1": 343.2655012728455, + "r_y1": 336.43194116290096, + "r_x2": 343.2655012728455, + "r_y2": 323.1479511169839, + "r_x3": 108.00000040046937, + "r_y3": 323.1479511169839, + "coord_origin": "TOPLEFT" + }, + "text": "formatting options for contracts and legal briefs. ", + "orig": "formatting options for contracts and legal briefs. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 12, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 378.7449313091588, + "r": 340.46878126247515, + "b": 393.62298136058575, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9593706130981445, + "cells": [ + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 393.62298136058575, + "r_x1": 340.46878126247515, + "r_y1": 393.62298136058575, + "r_x2": 340.46878126247515, + "r_y2": 378.7449313091588, + "r_x3": 72.00000026697958, + "r_y3": 378.7449313091588, + "coord_origin": "TOPLEFT" + }, + "text": "Key Features That Changed Word Processing ", + "orig": "Key Features That Changed Word Processing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 6, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 407.86798140982467, + "r": 514.7196019086059, + "b": 448.9919715519727, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9789240956306458, + "cells": [ + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 421.1519714557417, + "r_x1": 514.7196019086059, + "r_y1": 421.1519714557417, + "r_x2": 514.7196019086059, + "r_y2": 407.86798140982467, + "r_x3": 72.00000026697958, + "r_y3": 407.86798140982467, + "coord_origin": "TOPLEFT" + }, + "text": "The evolution of word processors wasn't just about hardware or software improvements-it ", + "orig": "The evolution of word processors wasn't just about hardware or software improvements-it ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 435.07196150385715, + "r_x1": 490.85507182011503, + "r_y1": 435.07196150385715, + "r_x2": 490.85507182011503, + "r_y2": 421.78796145794007, + "r_x3": 72.00000026697958, + "r_y3": 421.78796145794007, + "coord_origin": "TOPLEFT" + }, + "text": "was about the features that revolutionized how people wrote and edited. Some of these ", + "orig": "was about the features that revolutionized how people wrote and edited. Some of these ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 448.9919715519727, + "r_x1": 227.60155084395785, + "r_y1": 448.9919715519727, + "r_x2": 227.60155084395785, + "r_y2": 435.7079415060554, + "r_x3": 72.00000026697958, + "r_y3": 435.7079415060554, + "coord_origin": "TOPLEFT" + }, + "text": "transformative features include: ", + "orig": "transformative features include: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 8, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 463.30795160145686, + "r": 509.2687418883938, + "b": 490.51196169548945, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9704653024673462, + "cells": [ + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 476.5919816473741, + "r_x1": 99.00000036709692, + "r_y1": 476.5919816473741, + "r_x2": 99.00000036709692, + "r_y2": 463.30795160145686, + "r_x3": 90.00000033372447, + "r_y3": 463.30795160145686, + "coord_origin": "TOPLEFT" + }, + "text": "1.", + "orig": "1.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 28, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 476.5919816473741, + "r_x1": 166.01521061559265, + "r_y1": 476.5919816473741, + "r_x2": 166.01521061559265, + "r_y2": 463.30795160145686, + "r_x3": 108.00000040046937, + "r_y3": 463.30795160145686, + "coord_origin": "TOPLEFT" + }, + "text": "Undo/Redo", + "orig": "Undo/Redo", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 29, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 166.0136606155869, + "r_y0": 476.5919816473741, + "r_x1": 509.2687418883938, + "r_y1": 476.5919816473741, + "r_x2": 509.2687418883938, + "r_y2": 463.30795160145686, + "r_x3": 166.0136606155869, + "r_y3": 463.30795160145686, + "coord_origin": "TOPLEFT" + }, + "text": ": Introduced in the 1980s, the ability to undo mistakes and redo actions ", + "orig": ": Introduced in the 1980s, the ability to undo mistakes and redo actions ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 30, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 490.51196169548945, + "r_x1": 379.87488140859494, + "r_y1": 490.51196169548945, + "r_x2": 379.87488140859494, + "r_y2": 477.2279316495723, + "r_x3": 108.00000040046937, + "r_y3": 477.2279316495723, + "coord_origin": "TOPLEFT" + }, + "text": "made experimentation and error correction much easier. ", + "orig": "made experimentation and error correction much easier. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 10, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 490.90796169685825, + "r": 516.6022319155867, + "b": 518.1119717908908, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9631043672561646, + "cells": [ + { + "index": 31, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 504.1919517427753, + "r_x1": 99.00000036709692, + "r_y1": 504.1919517427753, + "r_x2": 99.00000036709692, + "r_y2": 490.90796169685825, + "r_x3": 90.00000033372447, + "r_y3": 490.90796169685825, + "coord_origin": "TOPLEFT" + }, + "text": "2.", + "orig": "2.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 32, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 504.1919517427753, + "r_x1": 281.9975910456611, + "r_y1": 504.1919517427753, + "r_x2": 281.9975910456611, + "r_y2": 490.90796169685825, + "r_x3": 108.00000040046937, + "r_y3": 490.90796169685825, + "coord_origin": "TOPLEFT" + }, + "text": "Spell Check and Grammar Check", + "orig": "Spell Check and Grammar Check", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 33, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 282.00000104567005, + "r_y0": 504.1919517427753, + "r_x1": 516.6022319155867, + "r_y1": 504.1919517427753, + "r_x2": 516.6022319155867, + "r_y2": 490.90796169685825, + "r_x3": 282.00000104567005, + "r_y3": 490.90796169685825, + "coord_origin": "TOPLEFT" + }, + "text": ": By the 1990s, these became standard, allowing ", + "orig": ": By the 1990s, these became standard, allowing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 34, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 518.1119717908908, + "r_x1": 273.2930310133841, + "r_y1": 518.1119717908908, + "r_x2": 273.2930310133841, + "r_y2": 504.82794174497366, + "r_x3": 108.00000040046937, + "r_y3": 504.82794174497366, + "coord_origin": "TOPLEFT" + }, + "text": "users to spot errors automatically. ", + "orig": "users to spot errors automatically. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 9, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 518.5079317922596, + "r": 486.90097180545297, + "b": 545.7119718862922, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9673018455505371, + "cells": [ + { + "index": 35, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 531.7919618381768, + "r_x1": 99.00000036709692, + "r_y1": 531.7919618381768, + "r_x2": 99.00000036709692, + "r_y2": 518.5079317922596, + "r_x3": 90.00000033372447, + "r_y3": 518.5079317922596, + "coord_origin": "TOPLEFT" + }, + "text": "3.", + "orig": "3.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 36, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 531.7919618381768, + "r_x1": 161.32320059819446, + "r_y1": 531.7919618381768, + "r_x2": 161.32320059819446, + "r_y2": 518.5079317922596, + "r_x3": 108.00000040046937, + "r_y3": 518.5079317922596, + "coord_origin": "TOPLEFT" + }, + "text": "Templates", + "orig": "Templates", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 37, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 161.32617059820544, + "r_y0": 531.7919618381768, + "r_x1": 486.90097180545297, + "r_y1": 531.7919618381768, + "r_x2": 486.90097180545297, + "r_y2": 518.5079317922596, + "r_x3": 161.32617059820544, + "r_y3": 518.5079317922596, + "coord_origin": "TOPLEFT" + }, + "text": ": Pre-designed formats for documents, such as resumes, letters, and ", + "orig": ": Pre-designed formats for documents, such as resumes, letters, and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 38, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 545.7119718862922, + "r_x1": 268.2890309948291, + "r_y1": 545.7119718862922, + "r_x2": 268.2890309948291, + "r_y2": 532.427951840375, + "r_x3": 108.00000040046937, + "r_y3": 532.427951840375, + "coord_origin": "TOPLEFT" + }, + "text": "invoices, helped users save time. ", + "orig": "invoices, helped users save time. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 7, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 546.1079418876609, + "r": 502.21259186222926, + "b": 573.3119819816936, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9727876782417297, + "cells": [ + { + "index": 39, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 559.391961933578, + "r_x1": 99.00000036709692, + "r_y1": 559.391961933578, + "r_x2": 99.00000036709692, + "r_y2": 546.1079418876609, + "r_x3": 90.00000033372447, + "r_y3": 546.1079418876609, + "coord_origin": "TOPLEFT" + }, + "text": "4.", + "orig": "4.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 40, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 559.391961933578, + "r_x1": 186.338390690952, + "r_y1": 559.391961933578, + "r_x2": 186.338390690952, + "r_y2": 546.1079418876609, + "r_x3": 108.00000040046937, + "r_y3": 546.1079418876609, + "coord_origin": "TOPLEFT" + }, + "text": "Track Changes", + "orig": "Track Changes", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 41, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 186.3398406909574, + "r_y0": 559.391961933578, + "r_x1": 502.21259186222926, + "r_y1": 559.391961933578, + "r_x2": 502.21259186222926, + "r_y2": 546.1079418876609, + "r_x3": 186.3398406909574, + "r_y3": 546.1079418876609, + "coord_origin": "TOPLEFT" + }, + "text": ": A game-changer for collaboration, this feature allowed multiple ", + "orig": ": A game-changer for collaboration, this feature allowed multiple ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 42, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 573.3119819816936, + "r_x1": 384.6211214261943, + "r_y1": 573.3119819816936, + "r_x2": 384.6211214261943, + "r_y2": 560.0279519357764, + "r_x3": 108.00000040046937, + "r_y3": 560.0279519357764, + "coord_origin": "TOPLEFT" + }, + "text": "users to suggest edits while maintaining the original text. ", + "orig": "users to suggest edits while maintaining the original text. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 5, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 573.7079419830623, + "r": 521.8798819351565, + "b": 614.8319721252104, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9798402190208435, + "cells": [ + { + "index": 43, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 586.9919720289795, + "r_x1": 99.00000036709692, + "r_y1": 586.9919720289795, + "r_x2": 99.00000036709692, + "r_y2": 573.7079419830623, + "r_x3": 90.00000033372447, + "r_y3": 573.7079419830623, + "coord_origin": "TOPLEFT" + }, + "text": "5.", + "orig": "5.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 44, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 586.9919720289795, + "r_x1": 236.3166508762739, + "r_y1": 586.9919720289795, + "r_x2": 236.3166508762739, + "r_y2": 573.7079419830623, + "r_x3": 108.00000040046937, + "r_y3": 573.7079419830623, + "coord_origin": "TOPLEFT" + }, + "text": "Real-Time Collaboration", + "orig": "Real-Time Collaboration", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 45, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 236.32033087628753, + "r_y0": 586.9919720289795, + "r_x1": 491.9297818241001, + "r_y1": 586.9919720289795, + "r_x2": 491.9297818241001, + "r_y2": 573.7079419830623, + "r_x3": 236.32033087628753, + "r_y3": 573.7079419830623, + "coord_origin": "TOPLEFT" + }, + "text": ": Tools like Google Docs and Microsoft 365 enabled ", + "orig": ": Tools like Google Docs and Microsoft 365 enabled ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 46, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 600.9119520770948, + "r_x1": 521.8798819351565, + "r_y1": 600.9119520770948, + "r_x2": 521.8798819351565, + "r_y2": 587.6279620311777, + "r_x3": 108.00000040046937, + "r_y3": 587.6279620311777, + "coord_origin": "TOPLEFT" + }, + "text": "multiple users to edit the same document simultaneously, forever changing teamwork ", + "orig": "multiple users to edit the same document simultaneously, forever changing teamwork ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 47, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 614.8319721252104, + "r_x1": 159.99023059325174, + "r_y1": 614.8319721252104, + "r_x2": 159.99023059325174, + "r_y2": 601.5479420792932, + "r_x3": 108.00000040046937, + "r_y3": 601.5479420792932, + "coord_origin": "TOPLEFT" + }, + "text": "dynamics. ", + "orig": "dynamics. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 13, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 657.3849222722977, + "r": 311.9594411567611, + "b": 672.2629723237247, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9490435123443604, + "cells": [ + { + "index": 48, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 672.2629723237247, + "r_x1": 311.9594411567611, + "r_y1": 672.2629723237247, + "r_x2": 311.9594411567611, + "r_y2": 657.3849222722977, + "r_x3": 72.00000026697958, + "r_y3": 657.3849222722977, + "coord_origin": "TOPLEFT" + }, + "text": "The Cultural Impact of Word Processors ", + "orig": "The Cultural Impact of Word Processors ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 2, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 686.5079323729635, + "r": 518.9003919241085, + "b": 727.6319625151116, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9820713400840759, + "cells": [ + { + "index": 49, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 699.7919624188806, + "r_x1": 494.0065318318008, + "r_y1": 699.7919624188806, + "r_x2": 494.0065318318008, + "r_y2": 686.5079323729635, + "r_x3": 72.00000026697958, + "r_y3": 686.5079323729635, + "coord_origin": "TOPLEFT" + }, + "text": "The word processor didn't just change workplaces-it changed culture. It democratized ", + "orig": "The word processor didn't just change workplaces-it changed culture. It democratized ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 50, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 713.4719524661665, + "r_x1": 474.54910175965165, + "r_y1": 713.4719524661665, + "r_x2": 474.54910175965165, + "r_y2": 700.1879524202494, + "r_x3": 72.00000026697958, + "r_y3": 700.1879524202494, + "coord_origin": "TOPLEFT" + }, + "text": "writing, enabling anyone with access to a computer to produce professional-quality ", + "orig": "writing, enabling anyone with access to a computer to produce professional-quality ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 51, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 727.6319625151116, + "r_x1": 518.9003919241085, + "r_y1": 727.6319625151116, + "r_x2": 518.9003919241085, + "r_y2": 714.3479624691945, + "r_x3": 72.00000026697958, + "r_y3": 714.3479624691945, + "coord_origin": "TOPLEFT" + }, + "text": "documents. This shift had profound implications for education, business, and creative fields: ", + "orig": "documents. This shift had profound implications for education, business, and creative fields: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + } + ] + }, + "tablestructure": { + "table_map": {} + }, + "figures_classification": null, + "equations_prediction": null, + "vlm_response": null + }, + "assembled": { + "elements": [ + { + "label": "section_header", + "id": 11, + "page_no": 2, + "cluster": { + "id": 11, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 72.74493025144807, + "r": 276.7262310261146, + "b": 87.62298030287513, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9600434303283691, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 87.62298030287513, + "r_x1": 276.7262310261146, + "r_y1": 87.62298030287513, + "r_x2": 276.7262310261146, + "r_y2": 72.74493025144807, + "r_x3": 72.00000026697958, + "r_y3": 72.74493025144807, + "coord_origin": "TOPLEFT" + }, + "text": "Specialized Word Processing Tools ", + "orig": "Specialized Word Processing Tools ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "Specialized Word Processing Tools" + }, + { + "label": "text", + "id": 3, + "page_no": 2, + "cluster": { + "id": 3, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 101.86798035211382, + "r": 514.6727319084321, + "b": 142.99194049426183, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9812871813774109, + "cells": [ + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 115.15197039803093, + "r_x1": 507.8394518830939, + "r_y1": 115.15197039803093, + "r_x2": 507.8394518830939, + "r_y2": 101.86798035211382, + "r_x3": 72.00000026697958, + "r_y3": 101.86798035211382, + "coord_origin": "TOPLEFT" + }, + "text": "In addition to general-purpose word processors, specialized tools have emerged to cater to ", + "orig": "In addition to general-purpose word processors, specialized tools have emerged to cater to ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 129.07196044614636, + "r_x1": 514.6727319084321, + "r_y1": 129.07196044614636, + "r_x2": 514.6727319084321, + "r_y2": 115.78796040022928, + "r_x3": 72.00000026697958, + "r_y3": 115.78796040022928, + "coord_origin": "TOPLEFT" + }, + "text": "specific industries and needs. These tools incorporate unique features tailored to their users' ", + "orig": "specific industries and needs. These tools incorporate unique features tailored to their users' ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 142.99194049426183, + "r_x1": 129.66211048079356, + "r_y1": 142.99194049426183, + "r_x2": 129.66211048079356, + "r_y2": 129.70794044834474, + "r_x3": 72.00000026697958, + "r_y3": 129.70794044834474, + "coord_origin": "TOPLEFT" + }, + "text": "workflows: ", + "orig": "workflows: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "In addition to general-purpose word processors, specialized tools have emerged to cater to specific industries and needs. These tools incorporate unique features tailored to their users' workflows:" + }, + { + "label": "list_item", + "id": 1, + "page_no": 2, + "cluster": { + "id": 1, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 157.30798054374623, + "r": 519.5101919263695, + "b": 225.7919907804661, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9829118251800537, + "cells": [ + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 170.21759058836926, + "r_x1": 94.63680335091797, + "r_y1": 170.21759058836926, + "r_x2": 94.63680335091797, + "r_y2": 157.86956054568725, + "r_x3": 90.00000033372447, + "r_y3": 157.86956054568725, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 170.5919805896633, + "r_x1": 277.6560410295624, + "r_y1": 170.5919805896633, + "r_x2": 277.6560410295624, + "r_y2": 157.30798054374623, + "r_x3": 108.00000040046937, + "r_y3": 157.30798054374623, + "coord_origin": "TOPLEFT" + }, + "text": "Academic and Technical Writing", + "orig": "Academic and Technical Writing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 277.65817102957027, + "r_y0": 170.5919805896633, + "r_x1": 495.26132183645365, + "r_y1": 170.5919805896633, + "r_x2": 495.26132183645365, + "r_y2": 157.30798054374623, + "r_x3": 277.65817102957027, + "r_y3": 157.30798054374623, + "coord_origin": "TOPLEFT" + }, + "text": ": Tools like LaTeX gained popularity among ", + "orig": ": Tools like LaTeX gained popularity among ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 184.27197063694928, + "r_x1": 495.5327118374599, + "r_y1": 184.27197063694928, + "r_x2": 495.5327118374599, + "r_y2": 170.98797059103208, + "r_x3": 108.00000040046937, + "r_y3": 170.98797059103208, + "coord_origin": "TOPLEFT" + }, + "text": "academics, scientists, and engineers. Unlike traditional word processors, LaTeX ", + "orig": "academics, scientists, and engineers. Unlike traditional word processors, LaTeX ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 198.1919506850645, + "r_x1": 494.8486918349235, + "r_y1": 198.1919506850645, + "r_x2": 494.8486918349235, + "r_y2": 184.90796063914763, + "r_x3": 108.00000040046937, + "r_y3": 184.90796063914763, + "coord_origin": "TOPLEFT" + }, + "text": "focuses on precise formatting, particularly for complex mathematical equations, ", + "orig": "focuses on precise formatting, particularly for complex mathematical equations, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 211.87195073235046, + "r_x1": 519.5101919263695, + "r_y1": 211.87195073235046, + "r_x2": 519.5101919263695, + "r_y2": 198.58795068643337, + "r_x3": 108.00000040046937, + "r_y3": 198.58795068643337, + "coord_origin": "TOPLEFT" + }, + "text": "scientific papers, and technical documents. It relies on a markup language to produce ", + "orig": "scientific papers, and technical documents. It relies on a markup language to produce ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 225.7919907804661, + "r_x1": 320.6426411889588, + "r_y1": 225.7919907804661, + "r_x2": 320.6426411889588, + "r_y2": 212.50799073454903, + "r_x3": 108.00000040046937, + "r_y3": 212.50799073454903, + "coord_origin": "TOPLEFT" + }, + "text": "polished documents suitable for publishing. ", + "orig": "polished documents suitable for publishing. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Academic and Technical Writing : Tools like LaTeX gained popularity among academics, scientists, and engineers. Unlike traditional word processors, LaTeX focuses on precise formatting, particularly for complex mathematical equations, scientific papers, and technical documents. It relies on a markup language to produce polished documents suitable for publishing." + }, + { + "label": "list_item", + "id": 4, + "page_no": 2, + "cluster": { + "id": 4, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 226.18799078183486, + "r": 503.5271318671036, + "b": 280.9919409712686, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9800205230712891, + "cells": [ + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 239.0975908264578, + "r_x1": 94.63680335091797, + "r_y1": 239.0975908264578, + "r_x2": 94.63680335091797, + "r_y2": 226.7495707837761, + "r_x3": 90.00000033372447, + "r_y3": 226.7495707837761, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 239.47198082775196, + "r_x1": 228.9672108490218, + "r_y1": 239.47198082775196, + "r_x2": 228.9672108490218, + "r_y2": 226.18799078183486, + "r_x3": 108.00000040046937, + "r_y3": 226.18799078183486, + "coord_origin": "TOPLEFT" + }, + "text": "Screenwriting Software", + "orig": "Screenwriting Software", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 228.9668008490203, + "r_y0": 239.47198082775196, + "r_x1": 495.22037183630175, + "r_y1": 239.47198082775196, + "r_x2": 495.22037183630175, + "r_y2": 226.18799078183486, + "r_x3": 228.9668008490203, + "r_y3": 226.18799078183486, + "coord_origin": "TOPLEFT" + }, + "text": ": For screenwriters, tools like Final Draft and Celtx are ", + "orig": ": For screenwriters, tools like Final Draft and Celtx are ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 253.3919608758673, + "r_x1": 503.5271318671036, + "r_y1": 253.3919608758673, + "r_x2": 503.5271318671036, + "r_y2": 240.1079708299502, + "r_x3": 108.00000040046937, + "r_y3": 240.1079708299502, + "coord_origin": "TOPLEFT" + }, + "text": "specialized to handle scripts for film and television. These programs automate the ", + "orig": "specialized to handle scripts for film and television. These programs automate the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 267.07196092315326, + "r_x1": 457.223911695409, + "r_y1": 267.07196092315326, + "r_x2": 457.223911695409, + "r_y2": 253.78796087723617, + "r_x3": 108.00000040046937, + "r_y3": 253.78796087723617, + "coord_origin": "TOPLEFT" + }, + "text": "formatting of dialogue, scene descriptions, and other elements unique to ", + "orig": "formatting of dialogue, scene descriptions, and other elements unique to ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 280.9919409712686, + "r_x1": 179.30858066488514, + "r_y1": 280.9919409712686, + "r_x2": 179.30858066488514, + "r_y2": 267.7079409253515, + "r_x3": 108.00000040046937, + "r_y3": 267.7079409253515, + "coord_origin": "TOPLEFT" + }, + "text": "screenwriting. ", + "orig": "screenwriting. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Screenwriting Software : For screenwriters, tools like Final Draft and Celtx are specialized to handle scripts for film and television. These programs automate the formatting of dialogue, scene descriptions, and other elements unique to screenwriting." + }, + { + "label": "list_item", + "id": 0, + "page_no": 2, + "cluster": { + "id": 0, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 281.38800097263766, + "r": 524.4814519448033, + "b": 336.43194116290096, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9835862517356873, + "cells": [ + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 294.2975410172604, + "r_x1": 94.63680335091797, + "r_y1": 294.2975410172604, + "r_x2": 94.63680335091797, + "r_y2": 281.9495809745787, + "r_x3": 90.00000033372447, + "r_y3": 281.9495809745787, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 294.67193101855446, + "r_x1": 249.96240092687302, + "r_y1": 294.67193101855446, + "r_x2": 249.96240092687302, + "r_y2": 281.38800097263766, + "r_x3": 108.00000040046937, + "r_y3": 281.38800097263766, + "coord_origin": "TOPLEFT" + }, + "text": "Legal Document Processors", + "orig": "Legal Document Processors", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 249.966710926889, + "r_y0": 294.67193101855446, + "r_x1": 513.5488919042649, + "r_y1": 294.67193101855446, + "r_x2": 513.5488919042649, + "r_y2": 281.38800097263766, + "r_x3": 249.966710926889, + "r_y3": 281.38800097263766, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors tailored for legal professionals, like ", + "orig": ": Word processors tailored for legal professionals, like ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 308.5919810666702, + "r_x1": 524.4814519448033, + "r_y1": 308.5919810666702, + "r_x2": 524.4814519448033, + "r_y2": 295.3079810207531, + "r_x3": 108.00000040046937, + "r_y3": 295.3079810207531, + "coord_origin": "TOPLEFT" + }, + "text": "WordPerfect, offered features such as redlining (early version tracking) and document ", + "orig": "WordPerfect, offered features such as redlining (early version tracking) and document ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 322.27197111395594, + "r_x1": 489.909551816609, + "r_y1": 322.27197111395594, + "r_x2": 489.909551816609, + "r_y2": 308.98797106803886, + "r_x3": 108.00000040046937, + "r_y3": 308.98797106803886, + "coord_origin": "TOPLEFT" + }, + "text": "comparison. Even today, many law firms rely on these tools due to their robust ", + "orig": "comparison. Even today, many law firms rely on these tools due to their robust ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 336.43194116290096, + "r_x1": 343.2655012728455, + "r_y1": 336.43194116290096, + "r_x2": 343.2655012728455, + "r_y2": 323.1479511169839, + "r_x3": 108.00000040046937, + "r_y3": 323.1479511169839, + "coord_origin": "TOPLEFT" + }, + "text": "formatting options for contracts and legal briefs. ", + "orig": "formatting options for contracts and legal briefs. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Legal Document Processors : Word processors tailored for legal professionals, like WordPerfect, offered features such as redlining (early version tracking) and document comparison. Even today, many law firms rely on these tools due to their robust formatting options for contracts and legal briefs." + }, + { + "label": "section_header", + "id": 12, + "page_no": 2, + "cluster": { + "id": 12, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 378.7449313091588, + "r": 340.46878126247515, + "b": 393.62298136058575, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9593706130981445, + "cells": [ + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 393.62298136058575, + "r_x1": 340.46878126247515, + "r_y1": 393.62298136058575, + "r_x2": 340.46878126247515, + "r_y2": 378.7449313091588, + "r_x3": 72.00000026697958, + "r_y3": 378.7449313091588, + "coord_origin": "TOPLEFT" + }, + "text": "Key Features That Changed Word Processing ", + "orig": "Key Features That Changed Word Processing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "Key Features That Changed Word Processing" + }, + { + "label": "text", + "id": 6, + "page_no": 2, + "cluster": { + "id": 6, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 407.86798140982467, + "r": 514.7196019086059, + "b": 448.9919715519727, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9789240956306458, + "cells": [ + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 421.1519714557417, + "r_x1": 514.7196019086059, + "r_y1": 421.1519714557417, + "r_x2": 514.7196019086059, + "r_y2": 407.86798140982467, + "r_x3": 72.00000026697958, + "r_y3": 407.86798140982467, + "coord_origin": "TOPLEFT" + }, + "text": "The evolution of word processors wasn't just about hardware or software improvements-it ", + "orig": "The evolution of word processors wasn't just about hardware or software improvements-it ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 435.07196150385715, + "r_x1": 490.85507182011503, + "r_y1": 435.07196150385715, + "r_x2": 490.85507182011503, + "r_y2": 421.78796145794007, + "r_x3": 72.00000026697958, + "r_y3": 421.78796145794007, + "coord_origin": "TOPLEFT" + }, + "text": "was about the features that revolutionized how people wrote and edited. Some of these ", + "orig": "was about the features that revolutionized how people wrote and edited. Some of these ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 448.9919715519727, + "r_x1": 227.60155084395785, + "r_y1": 448.9919715519727, + "r_x2": 227.60155084395785, + "r_y2": 435.7079415060554, + "r_x3": 72.00000026697958, + "r_y3": 435.7079415060554, + "coord_origin": "TOPLEFT" + }, + "text": "transformative features include: ", + "orig": "transformative features include: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The evolution of word processors wasn't just about hardware or software improvements-it was about the features that revolutionized how people wrote and edited. Some of these transformative features include:" + }, + { + "label": "list_item", + "id": 8, + "page_no": 2, + "cluster": { + "id": 8, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 463.30795160145686, + "r": 509.2687418883938, + "b": 490.51196169548945, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9704653024673462, + "cells": [ + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 476.5919816473741, + "r_x1": 99.00000036709692, + "r_y1": 476.5919816473741, + "r_x2": 99.00000036709692, + "r_y2": 463.30795160145686, + "r_x3": 90.00000033372447, + "r_y3": 463.30795160145686, + "coord_origin": "TOPLEFT" + }, + "text": "1.", + "orig": "1.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 28, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 476.5919816473741, + "r_x1": 166.01521061559265, + "r_y1": 476.5919816473741, + "r_x2": 166.01521061559265, + "r_y2": 463.30795160145686, + "r_x3": 108.00000040046937, + "r_y3": 463.30795160145686, + "coord_origin": "TOPLEFT" + }, + "text": "Undo/Redo", + "orig": "Undo/Redo", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 29, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 166.0136606155869, + "r_y0": 476.5919816473741, + "r_x1": 509.2687418883938, + "r_y1": 476.5919816473741, + "r_x2": 509.2687418883938, + "r_y2": 463.30795160145686, + "r_x3": 166.0136606155869, + "r_y3": 463.30795160145686, + "coord_origin": "TOPLEFT" + }, + "text": ": Introduced in the 1980s, the ability to undo mistakes and redo actions ", + "orig": ": Introduced in the 1980s, the ability to undo mistakes and redo actions ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 30, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 490.51196169548945, + "r_x1": 379.87488140859494, + "r_y1": 490.51196169548945, + "r_x2": 379.87488140859494, + "r_y2": 477.2279316495723, + "r_x3": 108.00000040046937, + "r_y3": 477.2279316495723, + "coord_origin": "TOPLEFT" + }, + "text": "made experimentation and error correction much easier. ", + "orig": "made experimentation and error correction much easier. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "1. Undo/Redo : Introduced in the 1980s, the ability to undo mistakes and redo actions made experimentation and error correction much easier." + }, + { + "label": "list_item", + "id": 10, + "page_no": 2, + "cluster": { + "id": 10, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 490.90796169685825, + "r": 516.6022319155867, + "b": 518.1119717908908, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9631043672561646, + "cells": [ + { + "index": 31, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 504.1919517427753, + "r_x1": 99.00000036709692, + "r_y1": 504.1919517427753, + "r_x2": 99.00000036709692, + "r_y2": 490.90796169685825, + "r_x3": 90.00000033372447, + "r_y3": 490.90796169685825, + "coord_origin": "TOPLEFT" + }, + "text": "2.", + "orig": "2.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 32, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 504.1919517427753, + "r_x1": 281.9975910456611, + "r_y1": 504.1919517427753, + "r_x2": 281.9975910456611, + "r_y2": 490.90796169685825, + "r_x3": 108.00000040046937, + "r_y3": 490.90796169685825, + "coord_origin": "TOPLEFT" + }, + "text": "Spell Check and Grammar Check", + "orig": "Spell Check and Grammar Check", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 33, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 282.00000104567005, + "r_y0": 504.1919517427753, + "r_x1": 516.6022319155867, + "r_y1": 504.1919517427753, + "r_x2": 516.6022319155867, + "r_y2": 490.90796169685825, + "r_x3": 282.00000104567005, + "r_y3": 490.90796169685825, + "coord_origin": "TOPLEFT" + }, + "text": ": By the 1990s, these became standard, allowing ", + "orig": ": By the 1990s, these became standard, allowing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 34, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 518.1119717908908, + "r_x1": 273.2930310133841, + "r_y1": 518.1119717908908, + "r_x2": 273.2930310133841, + "r_y2": 504.82794174497366, + "r_x3": 108.00000040046937, + "r_y3": 504.82794174497366, + "coord_origin": "TOPLEFT" + }, + "text": "users to spot errors automatically. ", + "orig": "users to spot errors automatically. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "2. Spell Check and Grammar Check : By the 1990s, these became standard, allowing users to spot errors automatically." + }, + { + "label": "list_item", + "id": 9, + "page_no": 2, + "cluster": { + "id": 9, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 518.5079317922596, + "r": 486.90097180545297, + "b": 545.7119718862922, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9673018455505371, + "cells": [ + { + "index": 35, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 531.7919618381768, + "r_x1": 99.00000036709692, + "r_y1": 531.7919618381768, + "r_x2": 99.00000036709692, + "r_y2": 518.5079317922596, + "r_x3": 90.00000033372447, + "r_y3": 518.5079317922596, + "coord_origin": "TOPLEFT" + }, + "text": "3.", + "orig": "3.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 36, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 531.7919618381768, + "r_x1": 161.32320059819446, + "r_y1": 531.7919618381768, + "r_x2": 161.32320059819446, + "r_y2": 518.5079317922596, + "r_x3": 108.00000040046937, + "r_y3": 518.5079317922596, + "coord_origin": "TOPLEFT" + }, + "text": "Templates", + "orig": "Templates", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 37, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 161.32617059820544, + "r_y0": 531.7919618381768, + "r_x1": 486.90097180545297, + "r_y1": 531.7919618381768, + "r_x2": 486.90097180545297, + "r_y2": 518.5079317922596, + "r_x3": 161.32617059820544, + "r_y3": 518.5079317922596, + "coord_origin": "TOPLEFT" + }, + "text": ": Pre-designed formats for documents, such as resumes, letters, and ", + "orig": ": Pre-designed formats for documents, such as resumes, letters, and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 38, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 545.7119718862922, + "r_x1": 268.2890309948291, + "r_y1": 545.7119718862922, + "r_x2": 268.2890309948291, + "r_y2": 532.427951840375, + "r_x3": 108.00000040046937, + "r_y3": 532.427951840375, + "coord_origin": "TOPLEFT" + }, + "text": "invoices, helped users save time. ", + "orig": "invoices, helped users save time. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "3. Templates : Pre-designed formats for documents, such as resumes, letters, and invoices, helped users save time." + }, + { + "label": "list_item", + "id": 7, + "page_no": 2, + "cluster": { + "id": 7, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 546.1079418876609, + "r": 502.21259186222926, + "b": 573.3119819816936, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9727876782417297, + "cells": [ + { + "index": 39, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 559.391961933578, + "r_x1": 99.00000036709692, + "r_y1": 559.391961933578, + "r_x2": 99.00000036709692, + "r_y2": 546.1079418876609, + "r_x3": 90.00000033372447, + "r_y3": 546.1079418876609, + "coord_origin": "TOPLEFT" + }, + "text": "4.", + "orig": "4.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 40, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 559.391961933578, + "r_x1": 186.338390690952, + "r_y1": 559.391961933578, + "r_x2": 186.338390690952, + "r_y2": 546.1079418876609, + "r_x3": 108.00000040046937, + "r_y3": 546.1079418876609, + "coord_origin": "TOPLEFT" + }, + "text": "Track Changes", + "orig": "Track Changes", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 41, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 186.3398406909574, + "r_y0": 559.391961933578, + "r_x1": 502.21259186222926, + "r_y1": 559.391961933578, + "r_x2": 502.21259186222926, + "r_y2": 546.1079418876609, + "r_x3": 186.3398406909574, + "r_y3": 546.1079418876609, + "coord_origin": "TOPLEFT" + }, + "text": ": A game-changer for collaboration, this feature allowed multiple ", + "orig": ": A game-changer for collaboration, this feature allowed multiple ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 42, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 573.3119819816936, + "r_x1": 384.6211214261943, + "r_y1": 573.3119819816936, + "r_x2": 384.6211214261943, + "r_y2": 560.0279519357764, + "r_x3": 108.00000040046937, + "r_y3": 560.0279519357764, + "coord_origin": "TOPLEFT" + }, + "text": "users to suggest edits while maintaining the original text. ", + "orig": "users to suggest edits while maintaining the original text. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "4. Track Changes : A game-changer for collaboration, this feature allowed multiple users to suggest edits while maintaining the original text." + }, + { + "label": "list_item", + "id": 5, + "page_no": 2, + "cluster": { + "id": 5, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 573.7079419830623, + "r": 521.8798819351565, + "b": 614.8319721252104, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9798402190208435, + "cells": [ + { + "index": 43, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 586.9919720289795, + "r_x1": 99.00000036709692, + "r_y1": 586.9919720289795, + "r_x2": 99.00000036709692, + "r_y2": 573.7079419830623, + "r_x3": 90.00000033372447, + "r_y3": 573.7079419830623, + "coord_origin": "TOPLEFT" + }, + "text": "5.", + "orig": "5.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 44, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 586.9919720289795, + "r_x1": 236.3166508762739, + "r_y1": 586.9919720289795, + "r_x2": 236.3166508762739, + "r_y2": 573.7079419830623, + "r_x3": 108.00000040046937, + "r_y3": 573.7079419830623, + "coord_origin": "TOPLEFT" + }, + "text": "Real-Time Collaboration", + "orig": "Real-Time Collaboration", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 45, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 236.32033087628753, + "r_y0": 586.9919720289795, + "r_x1": 491.9297818241001, + "r_y1": 586.9919720289795, + "r_x2": 491.9297818241001, + "r_y2": 573.7079419830623, + "r_x3": 236.32033087628753, + "r_y3": 573.7079419830623, + "coord_origin": "TOPLEFT" + }, + "text": ": Tools like Google Docs and Microsoft 365 enabled ", + "orig": ": Tools like Google Docs and Microsoft 365 enabled ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 46, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 600.9119520770948, + "r_x1": 521.8798819351565, + "r_y1": 600.9119520770948, + "r_x2": 521.8798819351565, + "r_y2": 587.6279620311777, + "r_x3": 108.00000040046937, + "r_y3": 587.6279620311777, + "coord_origin": "TOPLEFT" + }, + "text": "multiple users to edit the same document simultaneously, forever changing teamwork ", + "orig": "multiple users to edit the same document simultaneously, forever changing teamwork ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 47, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 614.8319721252104, + "r_x1": 159.99023059325174, + "r_y1": 614.8319721252104, + "r_x2": 159.99023059325174, + "r_y2": 601.5479420792932, + "r_x3": 108.00000040046937, + "r_y3": 601.5479420792932, + "coord_origin": "TOPLEFT" + }, + "text": "dynamics. ", + "orig": "dynamics. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "5. Real-Time Collaboration : Tools like Google Docs and Microsoft 365 enabled multiple users to edit the same document simultaneously, forever changing teamwork dynamics." + }, + { + "label": "section_header", + "id": 13, + "page_no": 2, + "cluster": { + "id": 13, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 657.3849222722977, + "r": 311.9594411567611, + "b": 672.2629723237247, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9490435123443604, + "cells": [ + { + "index": 48, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 672.2629723237247, + "r_x1": 311.9594411567611, + "r_y1": 672.2629723237247, + "r_x2": 311.9594411567611, + "r_y2": 657.3849222722977, + "r_x3": 72.00000026697958, + "r_y3": 657.3849222722977, + "coord_origin": "TOPLEFT" + }, + "text": "The Cultural Impact of Word Processors ", + "orig": "The Cultural Impact of Word Processors ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The Cultural Impact of Word Processors" + }, + { + "label": "text", + "id": 2, + "page_no": 2, + "cluster": { + "id": 2, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 686.5079323729635, + "r": 518.9003919241085, + "b": 727.6319625151116, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9820713400840759, + "cells": [ + { + "index": 49, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 699.7919624188806, + "r_x1": 494.0065318318008, + "r_y1": 699.7919624188806, + "r_x2": 494.0065318318008, + "r_y2": 686.5079323729635, + "r_x3": 72.00000026697958, + "r_y3": 686.5079323729635, + "coord_origin": "TOPLEFT" + }, + "text": "The word processor didn't just change workplaces-it changed culture. It democratized ", + "orig": "The word processor didn't just change workplaces-it changed culture. It democratized ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 50, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 713.4719524661665, + "r_x1": 474.54910175965165, + "r_y1": 713.4719524661665, + "r_x2": 474.54910175965165, + "r_y2": 700.1879524202494, + "r_x3": 72.00000026697958, + "r_y3": 700.1879524202494, + "coord_origin": "TOPLEFT" + }, + "text": "writing, enabling anyone with access to a computer to produce professional-quality ", + "orig": "writing, enabling anyone with access to a computer to produce professional-quality ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 51, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 727.6319625151116, + "r_x1": 518.9003919241085, + "r_y1": 727.6319625151116, + "r_x2": 518.9003919241085, + "r_y2": 714.3479624691945, + "r_x3": 72.00000026697958, + "r_y3": 714.3479624691945, + "coord_origin": "TOPLEFT" + }, + "text": "documents. This shift had profound implications for education, business, and creative fields: ", + "orig": "documents. This shift had profound implications for education, business, and creative fields: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The word processor didn't just change workplaces-it changed culture. It democratized writing, enabling anyone with access to a computer to produce professional-quality documents. This shift had profound implications for education, business, and creative fields:" + } + ], + "body": [ + { + "label": "section_header", + "id": 11, + "page_no": 2, + "cluster": { + "id": 11, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 72.74493025144807, + "r": 276.7262310261146, + "b": 87.62298030287513, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9600434303283691, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 87.62298030287513, + "r_x1": 276.7262310261146, + "r_y1": 87.62298030287513, + "r_x2": 276.7262310261146, + "r_y2": 72.74493025144807, + "r_x3": 72.00000026697958, + "r_y3": 72.74493025144807, + "coord_origin": "TOPLEFT" + }, + "text": "Specialized Word Processing Tools ", + "orig": "Specialized Word Processing Tools ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "Specialized Word Processing Tools" + }, + { + "label": "text", + "id": 3, + "page_no": 2, + "cluster": { + "id": 3, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 101.86798035211382, + "r": 514.6727319084321, + "b": 142.99194049426183, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9812871813774109, + "cells": [ + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 115.15197039803093, + "r_x1": 507.8394518830939, + "r_y1": 115.15197039803093, + "r_x2": 507.8394518830939, + "r_y2": 101.86798035211382, + "r_x3": 72.00000026697958, + "r_y3": 101.86798035211382, + "coord_origin": "TOPLEFT" + }, + "text": "In addition to general-purpose word processors, specialized tools have emerged to cater to ", + "orig": "In addition to general-purpose word processors, specialized tools have emerged to cater to ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 129.07196044614636, + "r_x1": 514.6727319084321, + "r_y1": 129.07196044614636, + "r_x2": 514.6727319084321, + "r_y2": 115.78796040022928, + "r_x3": 72.00000026697958, + "r_y3": 115.78796040022928, + "coord_origin": "TOPLEFT" + }, + "text": "specific industries and needs. These tools incorporate unique features tailored to their users' ", + "orig": "specific industries and needs. These tools incorporate unique features tailored to their users' ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 142.99194049426183, + "r_x1": 129.66211048079356, + "r_y1": 142.99194049426183, + "r_x2": 129.66211048079356, + "r_y2": 129.70794044834474, + "r_x3": 72.00000026697958, + "r_y3": 129.70794044834474, + "coord_origin": "TOPLEFT" + }, + "text": "workflows: ", + "orig": "workflows: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "In addition to general-purpose word processors, specialized tools have emerged to cater to specific industries and needs. These tools incorporate unique features tailored to their users' workflows:" + }, + { + "label": "list_item", + "id": 1, + "page_no": 2, + "cluster": { + "id": 1, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 157.30798054374623, + "r": 519.5101919263695, + "b": 225.7919907804661, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9829118251800537, + "cells": [ + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 170.21759058836926, + "r_x1": 94.63680335091797, + "r_y1": 170.21759058836926, + "r_x2": 94.63680335091797, + "r_y2": 157.86956054568725, + "r_x3": 90.00000033372447, + "r_y3": 157.86956054568725, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 170.5919805896633, + "r_x1": 277.6560410295624, + "r_y1": 170.5919805896633, + "r_x2": 277.6560410295624, + "r_y2": 157.30798054374623, + "r_x3": 108.00000040046937, + "r_y3": 157.30798054374623, + "coord_origin": "TOPLEFT" + }, + "text": "Academic and Technical Writing", + "orig": "Academic and Technical Writing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 277.65817102957027, + "r_y0": 170.5919805896633, + "r_x1": 495.26132183645365, + "r_y1": 170.5919805896633, + "r_x2": 495.26132183645365, + "r_y2": 157.30798054374623, + "r_x3": 277.65817102957027, + "r_y3": 157.30798054374623, + "coord_origin": "TOPLEFT" + }, + "text": ": Tools like LaTeX gained popularity among ", + "orig": ": Tools like LaTeX gained popularity among ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 184.27197063694928, + "r_x1": 495.5327118374599, + "r_y1": 184.27197063694928, + "r_x2": 495.5327118374599, + "r_y2": 170.98797059103208, + "r_x3": 108.00000040046937, + "r_y3": 170.98797059103208, + "coord_origin": "TOPLEFT" + }, + "text": "academics, scientists, and engineers. Unlike traditional word processors, LaTeX ", + "orig": "academics, scientists, and engineers. Unlike traditional word processors, LaTeX ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 198.1919506850645, + "r_x1": 494.8486918349235, + "r_y1": 198.1919506850645, + "r_x2": 494.8486918349235, + "r_y2": 184.90796063914763, + "r_x3": 108.00000040046937, + "r_y3": 184.90796063914763, + "coord_origin": "TOPLEFT" + }, + "text": "focuses on precise formatting, particularly for complex mathematical equations, ", + "orig": "focuses on precise formatting, particularly for complex mathematical equations, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 211.87195073235046, + "r_x1": 519.5101919263695, + "r_y1": 211.87195073235046, + "r_x2": 519.5101919263695, + "r_y2": 198.58795068643337, + "r_x3": 108.00000040046937, + "r_y3": 198.58795068643337, + "coord_origin": "TOPLEFT" + }, + "text": "scientific papers, and technical documents. It relies on a markup language to produce ", + "orig": "scientific papers, and technical documents. It relies on a markup language to produce ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 225.7919907804661, + "r_x1": 320.6426411889588, + "r_y1": 225.7919907804661, + "r_x2": 320.6426411889588, + "r_y2": 212.50799073454903, + "r_x3": 108.00000040046937, + "r_y3": 212.50799073454903, + "coord_origin": "TOPLEFT" + }, + "text": "polished documents suitable for publishing. ", + "orig": "polished documents suitable for publishing. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Academic and Technical Writing : Tools like LaTeX gained popularity among academics, scientists, and engineers. Unlike traditional word processors, LaTeX focuses on precise formatting, particularly for complex mathematical equations, scientific papers, and technical documents. It relies on a markup language to produce polished documents suitable for publishing." + }, + { + "label": "list_item", + "id": 4, + "page_no": 2, + "cluster": { + "id": 4, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 226.18799078183486, + "r": 503.5271318671036, + "b": 280.9919409712686, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9800205230712891, + "cells": [ + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 239.0975908264578, + "r_x1": 94.63680335091797, + "r_y1": 239.0975908264578, + "r_x2": 94.63680335091797, + "r_y2": 226.7495707837761, + "r_x3": 90.00000033372447, + "r_y3": 226.7495707837761, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 239.47198082775196, + "r_x1": 228.9672108490218, + "r_y1": 239.47198082775196, + "r_x2": 228.9672108490218, + "r_y2": 226.18799078183486, + "r_x3": 108.00000040046937, + "r_y3": 226.18799078183486, + "coord_origin": "TOPLEFT" + }, + "text": "Screenwriting Software", + "orig": "Screenwriting Software", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 228.9668008490203, + "r_y0": 239.47198082775196, + "r_x1": 495.22037183630175, + "r_y1": 239.47198082775196, + "r_x2": 495.22037183630175, + "r_y2": 226.18799078183486, + "r_x3": 228.9668008490203, + "r_y3": 226.18799078183486, + "coord_origin": "TOPLEFT" + }, + "text": ": For screenwriters, tools like Final Draft and Celtx are ", + "orig": ": For screenwriters, tools like Final Draft and Celtx are ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 253.3919608758673, + "r_x1": 503.5271318671036, + "r_y1": 253.3919608758673, + "r_x2": 503.5271318671036, + "r_y2": 240.1079708299502, + "r_x3": 108.00000040046937, + "r_y3": 240.1079708299502, + "coord_origin": "TOPLEFT" + }, + "text": "specialized to handle scripts for film and television. These programs automate the ", + "orig": "specialized to handle scripts for film and television. These programs automate the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 267.07196092315326, + "r_x1": 457.223911695409, + "r_y1": 267.07196092315326, + "r_x2": 457.223911695409, + "r_y2": 253.78796087723617, + "r_x3": 108.00000040046937, + "r_y3": 253.78796087723617, + "coord_origin": "TOPLEFT" + }, + "text": "formatting of dialogue, scene descriptions, and other elements unique to ", + "orig": "formatting of dialogue, scene descriptions, and other elements unique to ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 280.9919409712686, + "r_x1": 179.30858066488514, + "r_y1": 280.9919409712686, + "r_x2": 179.30858066488514, + "r_y2": 267.7079409253515, + "r_x3": 108.00000040046937, + "r_y3": 267.7079409253515, + "coord_origin": "TOPLEFT" + }, + "text": "screenwriting. ", + "orig": "screenwriting. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Screenwriting Software : For screenwriters, tools like Final Draft and Celtx are specialized to handle scripts for film and television. These programs automate the formatting of dialogue, scene descriptions, and other elements unique to screenwriting." + }, + { + "label": "list_item", + "id": 0, + "page_no": 2, + "cluster": { + "id": 0, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 281.38800097263766, + "r": 524.4814519448033, + "b": 336.43194116290096, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9835862517356873, + "cells": [ + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 294.2975410172604, + "r_x1": 94.63680335091797, + "r_y1": 294.2975410172604, + "r_x2": 94.63680335091797, + "r_y2": 281.9495809745787, + "r_x3": 90.00000033372447, + "r_y3": 281.9495809745787, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 294.67193101855446, + "r_x1": 249.96240092687302, + "r_y1": 294.67193101855446, + "r_x2": 249.96240092687302, + "r_y2": 281.38800097263766, + "r_x3": 108.00000040046937, + "r_y3": 281.38800097263766, + "coord_origin": "TOPLEFT" + }, + "text": "Legal Document Processors", + "orig": "Legal Document Processors", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 249.966710926889, + "r_y0": 294.67193101855446, + "r_x1": 513.5488919042649, + "r_y1": 294.67193101855446, + "r_x2": 513.5488919042649, + "r_y2": 281.38800097263766, + "r_x3": 249.966710926889, + "r_y3": 281.38800097263766, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors tailored for legal professionals, like ", + "orig": ": Word processors tailored for legal professionals, like ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 308.5919810666702, + "r_x1": 524.4814519448033, + "r_y1": 308.5919810666702, + "r_x2": 524.4814519448033, + "r_y2": 295.3079810207531, + "r_x3": 108.00000040046937, + "r_y3": 295.3079810207531, + "coord_origin": "TOPLEFT" + }, + "text": "WordPerfect, offered features such as redlining (early version tracking) and document ", + "orig": "WordPerfect, offered features such as redlining (early version tracking) and document ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 322.27197111395594, + "r_x1": 489.909551816609, + "r_y1": 322.27197111395594, + "r_x2": 489.909551816609, + "r_y2": 308.98797106803886, + "r_x3": 108.00000040046937, + "r_y3": 308.98797106803886, + "coord_origin": "TOPLEFT" + }, + "text": "comparison. Even today, many law firms rely on these tools due to their robust ", + "orig": "comparison. Even today, many law firms rely on these tools due to their robust ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 336.43194116290096, + "r_x1": 343.2655012728455, + "r_y1": 336.43194116290096, + "r_x2": 343.2655012728455, + "r_y2": 323.1479511169839, + "r_x3": 108.00000040046937, + "r_y3": 323.1479511169839, + "coord_origin": "TOPLEFT" + }, + "text": "formatting options for contracts and legal briefs. ", + "orig": "formatting options for contracts and legal briefs. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Legal Document Processors : Word processors tailored for legal professionals, like WordPerfect, offered features such as redlining (early version tracking) and document comparison. Even today, many law firms rely on these tools due to their robust formatting options for contracts and legal briefs." + }, + { + "label": "section_header", + "id": 12, + "page_no": 2, + "cluster": { + "id": 12, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 378.7449313091588, + "r": 340.46878126247515, + "b": 393.62298136058575, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9593706130981445, + "cells": [ + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 393.62298136058575, + "r_x1": 340.46878126247515, + "r_y1": 393.62298136058575, + "r_x2": 340.46878126247515, + "r_y2": 378.7449313091588, + "r_x3": 72.00000026697958, + "r_y3": 378.7449313091588, + "coord_origin": "TOPLEFT" + }, + "text": "Key Features That Changed Word Processing ", + "orig": "Key Features That Changed Word Processing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "Key Features That Changed Word Processing" + }, + { + "label": "text", + "id": 6, + "page_no": 2, + "cluster": { + "id": 6, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 407.86798140982467, + "r": 514.7196019086059, + "b": 448.9919715519727, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9789240956306458, + "cells": [ + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 421.1519714557417, + "r_x1": 514.7196019086059, + "r_y1": 421.1519714557417, + "r_x2": 514.7196019086059, + "r_y2": 407.86798140982467, + "r_x3": 72.00000026697958, + "r_y3": 407.86798140982467, + "coord_origin": "TOPLEFT" + }, + "text": "The evolution of word processors wasn't just about hardware or software improvements-it ", + "orig": "The evolution of word processors wasn't just about hardware or software improvements-it ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 435.07196150385715, + "r_x1": 490.85507182011503, + "r_y1": 435.07196150385715, + "r_x2": 490.85507182011503, + "r_y2": 421.78796145794007, + "r_x3": 72.00000026697958, + "r_y3": 421.78796145794007, + "coord_origin": "TOPLEFT" + }, + "text": "was about the features that revolutionized how people wrote and edited. Some of these ", + "orig": "was about the features that revolutionized how people wrote and edited. Some of these ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 448.9919715519727, + "r_x1": 227.60155084395785, + "r_y1": 448.9919715519727, + "r_x2": 227.60155084395785, + "r_y2": 435.7079415060554, + "r_x3": 72.00000026697958, + "r_y3": 435.7079415060554, + "coord_origin": "TOPLEFT" + }, + "text": "transformative features include: ", + "orig": "transformative features include: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The evolution of word processors wasn't just about hardware or software improvements-it was about the features that revolutionized how people wrote and edited. Some of these transformative features include:" + }, + { + "label": "list_item", + "id": 8, + "page_no": 2, + "cluster": { + "id": 8, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 463.30795160145686, + "r": 509.2687418883938, + "b": 490.51196169548945, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9704653024673462, + "cells": [ + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 476.5919816473741, + "r_x1": 99.00000036709692, + "r_y1": 476.5919816473741, + "r_x2": 99.00000036709692, + "r_y2": 463.30795160145686, + "r_x3": 90.00000033372447, + "r_y3": 463.30795160145686, + "coord_origin": "TOPLEFT" + }, + "text": "1.", + "orig": "1.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 28, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 476.5919816473741, + "r_x1": 166.01521061559265, + "r_y1": 476.5919816473741, + "r_x2": 166.01521061559265, + "r_y2": 463.30795160145686, + "r_x3": 108.00000040046937, + "r_y3": 463.30795160145686, + "coord_origin": "TOPLEFT" + }, + "text": "Undo/Redo", + "orig": "Undo/Redo", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 29, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 166.0136606155869, + "r_y0": 476.5919816473741, + "r_x1": 509.2687418883938, + "r_y1": 476.5919816473741, + "r_x2": 509.2687418883938, + "r_y2": 463.30795160145686, + "r_x3": 166.0136606155869, + "r_y3": 463.30795160145686, + "coord_origin": "TOPLEFT" + }, + "text": ": Introduced in the 1980s, the ability to undo mistakes and redo actions ", + "orig": ": Introduced in the 1980s, the ability to undo mistakes and redo actions ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 30, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 490.51196169548945, + "r_x1": 379.87488140859494, + "r_y1": 490.51196169548945, + "r_x2": 379.87488140859494, + "r_y2": 477.2279316495723, + "r_x3": 108.00000040046937, + "r_y3": 477.2279316495723, + "coord_origin": "TOPLEFT" + }, + "text": "made experimentation and error correction much easier. ", + "orig": "made experimentation and error correction much easier. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "1. Undo/Redo : Introduced in the 1980s, the ability to undo mistakes and redo actions made experimentation and error correction much easier." + }, + { + "label": "list_item", + "id": 10, + "page_no": 2, + "cluster": { + "id": 10, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 490.90796169685825, + "r": 516.6022319155867, + "b": 518.1119717908908, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9631043672561646, + "cells": [ + { + "index": 31, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 504.1919517427753, + "r_x1": 99.00000036709692, + "r_y1": 504.1919517427753, + "r_x2": 99.00000036709692, + "r_y2": 490.90796169685825, + "r_x3": 90.00000033372447, + "r_y3": 490.90796169685825, + "coord_origin": "TOPLEFT" + }, + "text": "2.", + "orig": "2.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 32, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 504.1919517427753, + "r_x1": 281.9975910456611, + "r_y1": 504.1919517427753, + "r_x2": 281.9975910456611, + "r_y2": 490.90796169685825, + "r_x3": 108.00000040046937, + "r_y3": 490.90796169685825, + "coord_origin": "TOPLEFT" + }, + "text": "Spell Check and Grammar Check", + "orig": "Spell Check and Grammar Check", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 33, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 282.00000104567005, + "r_y0": 504.1919517427753, + "r_x1": 516.6022319155867, + "r_y1": 504.1919517427753, + "r_x2": 516.6022319155867, + "r_y2": 490.90796169685825, + "r_x3": 282.00000104567005, + "r_y3": 490.90796169685825, + "coord_origin": "TOPLEFT" + }, + "text": ": By the 1990s, these became standard, allowing ", + "orig": ": By the 1990s, these became standard, allowing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 34, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 518.1119717908908, + "r_x1": 273.2930310133841, + "r_y1": 518.1119717908908, + "r_x2": 273.2930310133841, + "r_y2": 504.82794174497366, + "r_x3": 108.00000040046937, + "r_y3": 504.82794174497366, + "coord_origin": "TOPLEFT" + }, + "text": "users to spot errors automatically. ", + "orig": "users to spot errors automatically. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "2. Spell Check and Grammar Check : By the 1990s, these became standard, allowing users to spot errors automatically." + }, + { + "label": "list_item", + "id": 9, + "page_no": 2, + "cluster": { + "id": 9, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 518.5079317922596, + "r": 486.90097180545297, + "b": 545.7119718862922, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9673018455505371, + "cells": [ + { + "index": 35, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 531.7919618381768, + "r_x1": 99.00000036709692, + "r_y1": 531.7919618381768, + "r_x2": 99.00000036709692, + "r_y2": 518.5079317922596, + "r_x3": 90.00000033372447, + "r_y3": 518.5079317922596, + "coord_origin": "TOPLEFT" + }, + "text": "3.", + "orig": "3.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 36, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 531.7919618381768, + "r_x1": 161.32320059819446, + "r_y1": 531.7919618381768, + "r_x2": 161.32320059819446, + "r_y2": 518.5079317922596, + "r_x3": 108.00000040046937, + "r_y3": 518.5079317922596, + "coord_origin": "TOPLEFT" + }, + "text": "Templates", + "orig": "Templates", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 37, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 161.32617059820544, + "r_y0": 531.7919618381768, + "r_x1": 486.90097180545297, + "r_y1": 531.7919618381768, + "r_x2": 486.90097180545297, + "r_y2": 518.5079317922596, + "r_x3": 161.32617059820544, + "r_y3": 518.5079317922596, + "coord_origin": "TOPLEFT" + }, + "text": ": Pre-designed formats for documents, such as resumes, letters, and ", + "orig": ": Pre-designed formats for documents, such as resumes, letters, and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 38, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 545.7119718862922, + "r_x1": 268.2890309948291, + "r_y1": 545.7119718862922, + "r_x2": 268.2890309948291, + "r_y2": 532.427951840375, + "r_x3": 108.00000040046937, + "r_y3": 532.427951840375, + "coord_origin": "TOPLEFT" + }, + "text": "invoices, helped users save time. ", + "orig": "invoices, helped users save time. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "3. Templates : Pre-designed formats for documents, such as resumes, letters, and invoices, helped users save time." + }, + { + "label": "list_item", + "id": 7, + "page_no": 2, + "cluster": { + "id": 7, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 546.1079418876609, + "r": 502.21259186222926, + "b": 573.3119819816936, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9727876782417297, + "cells": [ + { + "index": 39, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 559.391961933578, + "r_x1": 99.00000036709692, + "r_y1": 559.391961933578, + "r_x2": 99.00000036709692, + "r_y2": 546.1079418876609, + "r_x3": 90.00000033372447, + "r_y3": 546.1079418876609, + "coord_origin": "TOPLEFT" + }, + "text": "4.", + "orig": "4.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 40, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 559.391961933578, + "r_x1": 186.338390690952, + "r_y1": 559.391961933578, + "r_x2": 186.338390690952, + "r_y2": 546.1079418876609, + "r_x3": 108.00000040046937, + "r_y3": 546.1079418876609, + "coord_origin": "TOPLEFT" + }, + "text": "Track Changes", + "orig": "Track Changes", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 41, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 186.3398406909574, + "r_y0": 559.391961933578, + "r_x1": 502.21259186222926, + "r_y1": 559.391961933578, + "r_x2": 502.21259186222926, + "r_y2": 546.1079418876609, + "r_x3": 186.3398406909574, + "r_y3": 546.1079418876609, + "coord_origin": "TOPLEFT" + }, + "text": ": A game-changer for collaboration, this feature allowed multiple ", + "orig": ": A game-changer for collaboration, this feature allowed multiple ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 42, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 573.3119819816936, + "r_x1": 384.6211214261943, + "r_y1": 573.3119819816936, + "r_x2": 384.6211214261943, + "r_y2": 560.0279519357764, + "r_x3": 108.00000040046937, + "r_y3": 560.0279519357764, + "coord_origin": "TOPLEFT" + }, + "text": "users to suggest edits while maintaining the original text. ", + "orig": "users to suggest edits while maintaining the original text. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "4. Track Changes : A game-changer for collaboration, this feature allowed multiple users to suggest edits while maintaining the original text." + }, + { + "label": "list_item", + "id": 5, + "page_no": 2, + "cluster": { + "id": 5, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 573.7079419830623, + "r": 521.8798819351565, + "b": 614.8319721252104, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9798402190208435, + "cells": [ + { + "index": 43, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 586.9919720289795, + "r_x1": 99.00000036709692, + "r_y1": 586.9919720289795, + "r_x2": 99.00000036709692, + "r_y2": 573.7079419830623, + "r_x3": 90.00000033372447, + "r_y3": 573.7079419830623, + "coord_origin": "TOPLEFT" + }, + "text": "5.", + "orig": "5.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 44, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 586.9919720289795, + "r_x1": 236.3166508762739, + "r_y1": 586.9919720289795, + "r_x2": 236.3166508762739, + "r_y2": 573.7079419830623, + "r_x3": 108.00000040046937, + "r_y3": 573.7079419830623, + "coord_origin": "TOPLEFT" + }, + "text": "Real-Time Collaboration", + "orig": "Real-Time Collaboration", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 45, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 236.32033087628753, + "r_y0": 586.9919720289795, + "r_x1": 491.9297818241001, + "r_y1": 586.9919720289795, + "r_x2": 491.9297818241001, + "r_y2": 573.7079419830623, + "r_x3": 236.32033087628753, + "r_y3": 573.7079419830623, + "coord_origin": "TOPLEFT" + }, + "text": ": Tools like Google Docs and Microsoft 365 enabled ", + "orig": ": Tools like Google Docs and Microsoft 365 enabled ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 46, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 600.9119520770948, + "r_x1": 521.8798819351565, + "r_y1": 600.9119520770948, + "r_x2": 521.8798819351565, + "r_y2": 587.6279620311777, + "r_x3": 108.00000040046937, + "r_y3": 587.6279620311777, + "coord_origin": "TOPLEFT" + }, + "text": "multiple users to edit the same document simultaneously, forever changing teamwork ", + "orig": "multiple users to edit the same document simultaneously, forever changing teamwork ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 47, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 614.8319721252104, + "r_x1": 159.99023059325174, + "r_y1": 614.8319721252104, + "r_x2": 159.99023059325174, + "r_y2": 601.5479420792932, + "r_x3": 108.00000040046937, + "r_y3": 601.5479420792932, + "coord_origin": "TOPLEFT" + }, + "text": "dynamics. ", + "orig": "dynamics. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "5. Real-Time Collaboration : Tools like Google Docs and Microsoft 365 enabled multiple users to edit the same document simultaneously, forever changing teamwork dynamics." + }, + { + "label": "section_header", + "id": 13, + "page_no": 2, + "cluster": { + "id": 13, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 657.3849222722977, + "r": 311.9594411567611, + "b": 672.2629723237247, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9490435123443604, + "cells": [ + { + "index": 48, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 672.2629723237247, + "r_x1": 311.9594411567611, + "r_y1": 672.2629723237247, + "r_x2": 311.9594411567611, + "r_y2": 657.3849222722977, + "r_x3": 72.00000026697958, + "r_y3": 657.3849222722977, + "coord_origin": "TOPLEFT" + }, + "text": "The Cultural Impact of Word Processors ", + "orig": "The Cultural Impact of Word Processors ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The Cultural Impact of Word Processors" + }, + { + "label": "text", + "id": 2, + "page_no": 2, + "cluster": { + "id": 2, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 686.5079323729635, + "r": 518.9003919241085, + "b": 727.6319625151116, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9820713400840759, + "cells": [ + { + "index": 49, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 699.7919624188806, + "r_x1": 494.0065318318008, + "r_y1": 699.7919624188806, + "r_x2": 494.0065318318008, + "r_y2": 686.5079323729635, + "r_x3": 72.00000026697958, + "r_y3": 686.5079323729635, + "coord_origin": "TOPLEFT" + }, + "text": "The word processor didn't just change workplaces-it changed culture. It democratized ", + "orig": "The word processor didn't just change workplaces-it changed culture. It democratized ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 50, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 713.4719524661665, + "r_x1": 474.54910175965165, + "r_y1": 713.4719524661665, + "r_x2": 474.54910175965165, + "r_y2": 700.1879524202494, + "r_x3": 72.00000026697958, + "r_y3": 700.1879524202494, + "coord_origin": "TOPLEFT" + }, + "text": "writing, enabling anyone with access to a computer to produce professional-quality ", + "orig": "writing, enabling anyone with access to a computer to produce professional-quality ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 51, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 727.6319625151116, + "r_x1": 518.9003919241085, + "r_y1": 727.6319625151116, + "r_x2": 518.9003919241085, + "r_y2": 714.3479624691945, + "r_x3": 72.00000026697958, + "r_y3": 714.3479624691945, + "coord_origin": "TOPLEFT" + }, + "text": "documents. This shift had profound implications for education, business, and creative fields: ", + "orig": "documents. This shift had profound implications for education, business, and creative fields: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The word processor didn't just change workplaces-it changed culture. It democratized writing, enabling anyone with access to a computer to produce professional-quality documents. This shift had profound implications for education, business, and creative fields:" + } + ], + "headers": [] + } + }, + { + "page_no": 3, + "size": { + "width": 595.2000122070312, + "height": 841.9199829101562 + }, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 85.2575702946989, + "r_x1": 94.63680335091797, + "r_y1": 85.2575702946989, + "r_x2": 94.63680335091797, + "r_y2": 72.90954025201711, + "r_x3": 90.00000033372447, + "r_y3": 72.90954025201711, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 85.63196029599305, + "r_x1": 171.98883063774312, + "r_y1": 85.63196029599305, + "r_x2": 171.98883063774312, + "r_y2": 72.34796025007586, + "r_x3": 108.00000040046937, + "r_y3": 72.34796025007586, + "coord_origin": "TOPLEFT" + }, + "text": "Accessibility", + "orig": "Accessibility", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 171.99023063774834, + "r_y0": 85.63196029599305, + "r_x1": 514.5589619080102, + "r_y1": 85.63196029599305, + "r_x2": 514.5589619080102, + "r_y2": 72.34796025007586, + "r_x3": 171.99023063774834, + "r_y3": 72.34796025007586, + "coord_origin": "TOPLEFT" + }, + "text": ": Writers no longer needed expensive publishing equipment or training ", + "orig": ": Writers no longer needed expensive publishing equipment or training ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 99.31195034327891, + "r_x1": 491.5545718227088, + "r_y1": 99.31195034327891, + "r_x2": 491.5545718227088, + "r_y2": 86.02795029736171, + "r_x3": 108.00000040046937, + "r_y3": 86.02795029736171, + "coord_origin": "TOPLEFT" + }, + "text": "in typesetting to create polished work. This accessibility paved the way for self-", + "orig": "in typesetting to create polished work. This accessibility paved the way for self-", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 113.23199039139433, + "r_x1": 379.9569714088994, + "r_y1": 113.23199039139433, + "r_x2": 379.9569714088994, + "r_y2": 99.94793034547718, + "r_x3": 108.00000040046937, + "r_y3": 99.94793034547718, + "coord_origin": "TOPLEFT" + }, + "text": "publishing, blogging, and even fan fiction communities. ", + "orig": "publishing, blogging, and even fan fiction communities. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 126.53753043738607, + "r_x1": 94.63680335091797, + "r_y1": 126.53753043738607, + "r_x2": 94.63680335091797, + "r_y2": 114.18957039470433, + "r_x3": 90.00000033372447, + "r_y3": 114.18957039470433, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 126.9119804386803, + "r_x1": 160.6799905958094, + "r_y1": 126.9119804386803, + "r_x2": 160.6799905958094, + "r_y2": 113.6279903927632, + "r_x3": 108.00000040046937, + "r_y3": 113.6279903927632, + "coord_origin": "TOPLEFT" + }, + "text": "Education", + "orig": "Education", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 160.6816305958155, + "r_y0": 126.9119804386803, + "r_x1": 509.5430318894109, + "r_y1": 126.9119804386803, + "r_x2": 509.5430318894109, + "r_y2": 113.6279903927632, + "r_x3": 160.6816305958155, + "r_y3": 113.6279903927632, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors became a cornerstone of education, teaching students ", + "orig": ": Word processors became a cornerstone of education, teaching students ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 140.83197048679563, + "r_x1": 521.9014319352365, + "r_y1": 140.83197048679563, + "r_x2": 521.9014319352365, + "r_y2": 127.54797044087866, + "r_x3": 108.00000040046937, + "r_y3": 127.54797044087866, + "coord_origin": "TOPLEFT" + }, + "text": "not only how to write essays but also how to use technology effectively. Features like ", + "orig": "not only how to write essays but also how to use technology effectively. Features like ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 154.5119605340816, + "r_x1": 459.52728170395005, + "r_y1": 154.5119605340816, + "r_x2": 459.52728170395005, + "r_y2": 141.22796048816463, + "r_x3": 108.00000040046937, + "r_y3": 141.22796048816463, + "coord_origin": "TOPLEFT" + }, + "text": "bibliography generators and integrated research tools enhanced learning. ", + "orig": "bibliography generators and integrated research tools enhanced learning. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 168.0575505809029, + "r_x1": 94.63680335091797, + "r_y1": 168.0575505809029, + "r_x2": 94.63680335091797, + "r_y2": 155.70959053822128, + "r_x3": 90.00000033372447, + "r_y3": 155.70959053822128, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 168.43194058219706, + "r_x1": 195.63599072542797, + "r_y1": 168.43194058219706, + "r_x2": 195.63599072542797, + "r_y2": 155.14795053627995, + "r_x3": 108.00000040046937, + "r_y3": 155.14795053627995, + "coord_origin": "TOPLEFT" + }, + "text": "Creative Writing", + "orig": "Creative Writing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 195.63866072543786, + "r_y0": 168.43194058219706, + "r_x1": 509.872891890634, + "r_y1": 168.43194058219706, + "r_x2": 509.872891890634, + "r_y2": 155.14795053627995, + "r_x3": 195.63866072543786, + "r_y3": 155.14795053627995, + "coord_origin": "TOPLEFT" + }, + "text": ": Writers gained powerful tools to organize their ideas. Programs ", + "orig": ": Writers gained powerful tools to organize their ideas. Programs ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 182.1119406294829, + "r_x1": 515.8510119128011, + "r_y1": 182.1119406294829, + "r_x2": 515.8510119128011, + "r_y2": 168.8279405835658, + "r_x3": 108.00000040046937, + "r_y3": 168.8279405835658, + "coord_origin": "TOPLEFT" + }, + "text": "like Scrivener allowed authors to manage large projects, from novels to screenplays, ", + "orig": "like Scrivener allowed authors to manage large projects, from novels to screenplays, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 196.27197067842803, + "r_x1": 372.2227213802203, + "r_y1": 196.27197067842803, + "r_x2": 372.2227213802203, + "r_y2": 182.98797063251095, + "r_x3": 108.00000040046937, + "r_y3": 182.98797063251095, + "coord_origin": "TOPLEFT" + }, + "text": "with features like chapter outlines and character notes. ", + "orig": "with features like chapter outlines and character notes. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 253.463010876113, + "r_x1": 295.453431095556, + "r_y1": 253.463010876113, + "r_x2": 295.453431095556, + "r_y2": 238.58490082468575, + "r_x3": 72.00000026697958, + "r_y3": 238.58490082468575, + "coord_origin": "TOPLEFT" + }, + "text": "Word Processors in a Post-Digital Era ", + "orig": "Word Processors in a Post-Digital Era ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 281.4719809729279, + "r_x1": 521.214971932691, + "r_y1": 281.4719809729279, + "r_x2": 521.214971932691, + "r_y2": 268.1879909270109, + "r_x3": 72.00000026697958, + "r_y3": 268.1879909270109, + "coord_origin": "TOPLEFT" + }, + "text": "As we move further into the 21st century, the role of the word processor continues to evolve: ", + "orig": "As we move further into the 21st century, the role of the word processor continues to evolve: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 308.8319710674996, + "r_x1": 99.00000036709692, + "r_y1": 308.8319710674996, + "r_x2": 99.00000036709692, + "r_y2": 295.5479710215825, + "r_x3": 90.00000033372447, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": "1.", + "orig": "1.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 308.8319710674996, + "r_x1": 216.9648108045163, + "r_y1": 308.8319710674996, + "r_x2": 216.9648108045163, + "r_y2": 295.5479710215825, + "r_x3": 108.00000040046937, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": "Artificial Intelligence", + "orig": "Artificial Intelligence", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 216.9668008045237, + "r_y0": 308.8319710674996, + "r_x1": 522.210631936383, + "r_y1": 308.8319710674996, + "r_x2": 522.210631936383, + "r_y2": 295.5479710215825, + "r_x3": 216.9668008045237, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": ": Modern word processors are leveraging AI to suggest content ", + "orig": ": Modern word processors are leveraging AI to suggest content ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 322.75195111561504, + "r_x1": 504.8831218721317, + "r_y1": 322.75195111561504, + "r_x2": 504.8831218721317, + "r_y2": 309.46795106969796, + "r_x3": 108.00000040046937, + "r_y3": 309.46795106969796, + "coord_origin": "TOPLEFT" + }, + "text": "improvements. Tools like Grammarly, ProWritingAid, and even native features in ", + "orig": "improvements. Tools like Grammarly, ProWritingAid, and even native features in ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 336.43194116290096, + "r_x1": 523.8382019424181, + "r_y1": 336.43194116290096, + "r_x2": 523.8382019424181, + "r_y2": 323.1479511169839, + "r_x3": 108.00000040046937, + "r_y3": 323.1479511169839, + "coord_origin": "TOPLEFT" + }, + "text": "Word now analyze tone, conciseness, and clarity. Some AI systems can even generate ", + "orig": "Word now analyze tone, conciseness, and clarity. Some AI systems can even generate ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 350.3519612110165, + "r_x1": 295.9101610972496, + "r_y1": 350.3519612110165, + "r_x2": 295.9101610972496, + "r_y2": 337.0679611650994, + "r_x3": 108.00000040046937, + "r_y3": 337.0679611650994, + "coord_origin": "TOPLEFT" + }, + "text": "entire paragraphs or rewrite sentences. ", + "orig": "entire paragraphs or rewrite sentences. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 364.0319512583023, + "r_x1": 99.00000036709692, + "r_y1": 364.0319512583023, + "r_x2": 99.00000036709692, + "r_y2": 350.7479812123853, + "r_x3": 90.00000033372447, + "r_y3": 350.7479812123853, + "coord_origin": "TOPLEFT" + }, + "text": "2.", + "orig": "2.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 364.0319512583023, + "r_x1": 256.327210950474, + "r_y1": 364.0319512583023, + "r_x2": 256.327210950474, + "r_y2": 350.7479812123853, + "r_x3": 108.00000040046937, + "r_y3": 350.7479812123853, + "coord_origin": "TOPLEFT" + }, + "text": "Integration with Other Tools", + "orig": "Integration with Other Tools", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 256.33008095048467, + "r_y0": 364.0319512583023, + "r_x1": 497.9115018462806, + "r_y1": 364.0319512583023, + "r_x2": 497.9115018462806, + "r_y2": 350.7479812123853, + "r_x3": 256.33008095048467, + "r_y3": 350.7479812123853, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors are no longer standalone. They ", + "orig": ": Word processors are no longer standalone. They ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 377.95196130641784, + "r_x1": 514.5262519078889, + "r_y1": 377.95196130641784, + "r_x2": 514.5262519078889, + "r_y2": 364.6679712605008, + "r_x3": 108.00000040046937, + "r_y3": 364.6679712605008, + "coord_origin": "TOPLEFT" + }, + "text": "integrate with task managers, cloud storage, and project management platforms. For ", + "orig": "integrate with task managers, cloud storage, and project management platforms. For ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 391.6319613537037, + "r_x1": 504.89987187219384, + "r_y1": 391.6319613537037, + "r_x2": 504.89987187219384, + "r_y2": 378.3479613077866, + "r_x3": 108.00000040046937, + "r_y3": 378.3479613077866, + "coord_origin": "TOPLEFT" + }, + "text": "instance, Google Docs syncs with Google Drive, while Microsoft Word integrates ", + "orig": "instance, Google Docs syncs with Google Drive, while Microsoft Word integrates ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 28, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 405.55194140181914, + "r_x1": 295.95120109740174, + "r_y1": 405.55194140181914, + "r_x2": 295.95120109740174, + "r_y2": 392.26794135590205, + "r_x3": 108.00000040046937, + "r_y3": 392.26794135590205, + "coord_origin": "TOPLEFT" + }, + "text": "seamlessly with OneDrive and Teams. ", + "orig": "seamlessly with OneDrive and Teams. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 29, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 419.2319614491051, + "r_x1": 99.00000036709692, + "r_y1": 419.2319614491051, + "r_x2": 99.00000036709692, + "r_y2": 405.947961403188, + "r_x3": 90.00000033372447, + "r_y3": 405.947961403188, + "coord_origin": "TOPLEFT" + }, + "text": "3.", + "orig": "3.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 30, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 419.2319614491051, + "r_x1": 176.33762065386867, + "r_y1": 419.2319614491051, + "r_x2": 176.33762065386867, + "r_y2": 405.947961403188, + "r_x3": 108.00000040046937, + "r_y3": 405.947961403188, + "coord_origin": "TOPLEFT" + }, + "text": "Voice Typing", + "orig": "Voice Typing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 31, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 176.33789065386966, + "r_y0": 419.2319614491051, + "r_x1": 477.5590517708127, + "r_y1": 419.2319614491051, + "r_x2": 477.5590517708127, + "r_y2": 405.947961403188, + "r_x3": 176.33789065386966, + "r_y3": 405.947961403188, + "coord_origin": "TOPLEFT" + }, + "text": ": Speech-to-text capabilities have made word processing more ", + "orig": ": Speech-to-text capabilities have made word processing more ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 32, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 433.1519714972206, + "r_x1": 438.90237162747184, + "r_y1": 433.1519714972206, + "r_x2": 438.90237162747184, + "r_y2": 419.86798145130354, + "r_x3": 108.00000040046937, + "r_y3": 419.86798145130354, + "coord_origin": "TOPLEFT" + }, + "text": "accessible, particularly for those with disabilities. Tools like Dragon ", + "orig": "accessible, particularly for those with disabilities. Tools like Dragon ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 33, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 446.8319715445065, + "r_x1": 502.9175418648432, + "r_y1": 446.8319715445065, + "r_x2": 502.9175418648432, + "r_y2": 433.5479714985894, + "r_x3": 108.00000040046937, + "r_y3": 433.5479714985894, + "coord_origin": "TOPLEFT" + }, + "text": "NaturallySpeaking and built-in options in Google Docs and Microsoft Word have ", + "orig": "NaturallySpeaking and built-in options in Google Docs and Microsoft Word have ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 34, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 460.751981592622, + "r_x1": 243.9549609045971, + "r_y1": 460.751981592622, + "r_x2": 243.9549609045971, + "r_y2": 447.4679515467048, + "r_x3": 108.00000040046937, + "r_y3": 447.4679515467048, + "coord_origin": "TOPLEFT" + }, + "text": "made dictation mainstream. ", + "orig": "made dictation mainstream. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 35, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 474.43197163990783, + "r_x1": 99.00000036709692, + "r_y1": 474.43197163990783, + "r_x2": 99.00000036709692, + "r_y2": 461.1479515939907, + "r_x3": 90.00000033372447, + "r_y3": 461.1479515939907, + "coord_origin": "TOPLEFT" + }, + "text": "4.", + "orig": "4.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 36, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 474.43197163990783, + "r_x1": 228.31917084661885, + "r_y1": 474.43197163990783, + "r_x2": 228.31917084661885, + "r_y2": 461.1479515939907, + "r_x3": 108.00000040046937, + "r_y3": 461.1479515939907, + "coord_origin": "TOPLEFT" + }, + "text": "Multimedia Documents", + "orig": "Multimedia Documents", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 37, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 228.32227084663035, + "r_y0": 474.43197163990783, + "r_x1": 516.9196819167639, + "r_y1": 474.43197163990783, + "r_x2": 516.9196819167639, + "r_y2": 461.1479515939907, + "r_x3": 228.32227084663035, + "r_y3": 461.1479515939907, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processing has expanded beyond text. Modern tools ", + "orig": ": Word processing has expanded beyond text. Modern tools ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 38, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 488.35196168802327, + "r_x1": 512.2006218992653, + "r_y1": 488.35196168802327, + "r_x2": 512.2006218992653, + "r_y2": 475.0679616421062, + "r_x3": 108.00000040046937, + "r_y3": 475.0679616421062, + "coord_origin": "TOPLEFT" + }, + "text": "allow users to embed images, videos, charts, and interactive elements, transforming ", + "orig": "allow users to embed images, videos, charts, and interactive elements, transforming ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 39, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 502.0319817353093, + "r_x1": 361.5996113408293, + "r_y1": 502.0319817353093, + "r_x2": 361.5996113408293, + "r_y2": 488.74795168939204, + "r_x3": 108.00000040046937, + "r_y3": 488.74795168939204, + "coord_origin": "TOPLEFT" + }, + "text": "simple documents into rich multimedia experiences. ", + "orig": "simple documents into rich multimedia experiences. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 40, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 515.9519617834246, + "r_x1": 99.00000036709692, + "r_y1": 515.9519617834246, + "r_x2": 99.00000036709692, + "r_y2": 502.6679417375074, + "r_x3": 90.00000033372447, + "r_y3": 502.6679417375074, + "coord_origin": "TOPLEFT" + }, + "text": "5.", + "orig": "5.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 41, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 515.9519617834246, + "r_x1": 254.2937309429338, + "r_y1": 515.9519617834246, + "r_x2": 254.2937309429338, + "r_y2": 502.6679417375074, + "r_x3": 108.00000040046937, + "r_y3": 502.6679417375074, + "coord_origin": "TOPLEFT" + }, + "text": "Cross-Platform Accessibility", + "orig": "Cross-Platform Accessibility", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 42, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 254.2967809429451, + "r_y0": 515.9519617834246, + "r_x1": 510.9070718944688, + "r_y1": 515.9519617834246, + "r_x2": 510.9070718944688, + "r_y2": 502.6679417375074, + "r_x3": 254.2967809429451, + "r_y3": 502.6679417375074, + "coord_origin": "TOPLEFT" + }, + "text": ": Thanks to cloud computing, documents can now be ", + "orig": ": Thanks to cloud computing, documents can now be ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 43, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 529.6319618307105, + "r_x1": 469.6751117415787, + "r_y1": 529.6319618307105, + "r_x2": 469.6751117415787, + "r_y2": 516.3479617847934, + "r_x3": 108.00000040046937, + "r_y3": 516.3479617847934, + "coord_origin": "TOPLEFT" + }, + "text": "accessed and edited across devices. Whether you're on a desktop, tablet, or ", + "orig": "accessed and edited across devices. Whether you're on a desktop, tablet, or ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 44, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 543.7919618796556, + "r_x1": 355.9451913198625, + "r_y1": 543.7919618796556, + "r_x2": 355.9451913198625, + "r_y2": 530.5079318337384, + "r_x3": 108.00000040046937, + "r_y3": 530.5079318337384, + "coord_origin": "TOPLEFT" + }, + "text": "smartphone, you can continue working seamlessly. ", + "orig": "smartphone, you can continue working seamlessly. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 45, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 600.9829720773404, + "r_x1": 228.355610846754, + "r_y1": 600.9829720773404, + "r_x2": 228.355610846754, + "r_y2": 586.1049220259133, + "r_x3": 72.00000026697958, + "r_y3": 586.1049220259133, + "coord_origin": "TOPLEFT" + }, + "text": "A Glimpse Into the Future ", + "orig": "A Glimpse Into the Future ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 46, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 628.7519521733258, + "r_x1": 515.04700190982, + "r_y1": 628.7519521733258, + "r_x2": 515.04700190982, + "r_y2": 615.4679521274087, + "r_x3": 72.00000026697958, + "r_y3": 615.4679521274087, + "coord_origin": "TOPLEFT" + }, + "text": "The word processor's future lies in adaptability and intelligence. Some exciting possibilities ", + "orig": "The word processor's future lies in adaptability and intelligence. Some exciting possibilities ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 47, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 642.6719622214413, + "r_x1": 113.6543004214358, + "r_y1": 642.6719622214413, + "r_x2": 113.6543004214358, + "r_y2": 629.3879421755241, + "r_x3": 72.00000026697958, + "r_y3": 629.3879421755241, + "coord_origin": "TOPLEFT" + }, + "text": "include: ", + "orig": "include: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 48, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 669.8975523155485, + "r_x1": 94.63680335091797, + "r_y1": 669.8975523155485, + "r_x2": 94.63680335091797, + "r_y2": 657.5495622728668, + "r_x3": 90.00000033372447, + "r_y3": 657.5495622728668, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 49, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 670.2719723168427, + "r_x1": 240.67430089243229, + "r_y1": 670.2719723168427, + "r_x2": 240.67430089243229, + "r_y2": 656.9879422709255, + "r_x3": 108.00000040046937, + "r_y3": 656.9879422709255, + "coord_origin": "TOPLEFT" + }, + "text": "Fully AI-Assisted Writing", + "orig": "Fully AI-Assisted Writing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 50, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 240.67390089243082, + "r_y0": 670.2719723168427, + "r_x1": 518.2673319217611, + "r_y1": 670.2719723168427, + "r_x2": 518.2673319217611, + "r_y2": 656.9879422709255, + "r_x3": 240.67390089243082, + "r_y3": 656.9879422709255, + "coord_origin": "TOPLEFT" + }, + "text": ": Imagine a word processor that understands your writing ", + "orig": ": Imagine a word processor that understands your writing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 51, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 683.9519623641286, + "r_x1": 436.57608161884576, + "r_y1": 683.9519623641286, + "r_x2": 436.57608161884576, + "r_y2": 670.6679423182114, + "r_x3": 108.00000040046937, + "r_y3": 670.6679423182114, + "coord_origin": "TOPLEFT" + }, + "text": "style, drafts emails, or creates entire essays based on minimal input. ", + "orig": "style, drafts emails, or creates entire essays based on minimal input. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 52, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 697.49756241095, + "r_x1": 94.63680335091797, + "r_y1": 697.49756241095, + "r_x2": 94.63680335091797, + "r_y2": 685.1495623682681, + "r_x3": 90.00000033372447, + "r_y3": 685.1495623682681, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 53, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 697.871982412244, + "r_x1": 216.9503908044628, + "r_y1": 697.871982412244, + "r_x2": 216.9503908044628, + "r_y2": 684.5879523663269, + "r_x3": 108.00000040046937, + "r_y3": 684.5879523663269, + "coord_origin": "TOPLEFT" + }, + "text": "Immersive Interfaces", + "orig": "Immersive Interfaces", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 54, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 216.95508080448025, + "r_y0": 697.871982412244, + "r_x1": 472.53821175219514, + "r_y1": 697.871982412244, + "r_x2": 472.53821175219514, + "r_y2": 684.5879523663269, + "r_x3": 216.95508080448025, + "r_y3": 684.5879523663269, + "coord_origin": "TOPLEFT" + }, + "text": ": As augmented reality (AR) and virtual reality (VR) ", + "orig": ": As augmented reality (AR) and virtual reality (VR) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 55, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 711.5519724595299, + "r_x1": 525.5181319486474, + "r_y1": 711.5519724595299, + "r_x2": 525.5181319486474, + "r_y2": 698.2679424136128, + "r_x3": 108.00000040046937, + "r_y3": 698.2679424136128, + "coord_origin": "TOPLEFT" + }, + "text": "technology advance, users may be able to write and edit in 3D spaces, collaborating in ", + "orig": "technology advance, users may be able to write and edit in 3D spaces, collaborating in ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 56, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 725.4719825076454, + "r_x1": 213.6445207922045, + "r_y1": 725.4719825076454, + "r_x2": 213.6445207922045, + "r_y2": 712.1879524617283, + "r_x3": 108.00000040046937, + "r_y3": 712.1879524617283, + "coord_origin": "TOPLEFT" + }, + "text": "virtual environments. ", + "orig": "virtual environments. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 57, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 738.777522553637, + "r_x1": 94.63680335091797, + "r_y1": 738.777522553637, + "r_x2": 94.63680335091797, + "r_y2": 726.4295625109554, + "r_x3": 90.00000033372447, + "r_y3": 726.4295625109554, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 58, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 739.1519725549313, + "r_x1": 223.976240830515, + "r_y1": 739.1519725549313, + "r_x2": 223.976240830515, + "r_y2": 725.8679225090141, + "r_x3": 108.00000040046937, + "r_y3": 725.8679225090141, + "coord_origin": "TOPLEFT" + }, + "text": "Hyper-Personalization", + "orig": "Hyper-Personalization", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 59, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 223.98048083053075, + "r_y0": 739.1519725549313, + "r_x1": 518.906741924132, + "r_y1": 739.1519725549313, + "r_x2": 518.906741924132, + "r_y2": 725.8679225090141, + "r_x3": 223.98048083053075, + "r_y3": 725.8679225090141, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors could offer dynamic suggestions based on ", + "orig": ": Word processors could offer dynamic suggestions based on ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 60, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 753.3119506038763, + "r_x1": 463.21872171763806, + "r_y1": 753.3119506038763, + "r_x2": 463.21872171763806, + "r_y2": 740.0279525579592, + "r_x3": 108.00000040046937, + "r_y3": 740.0279525579592, + "coord_origin": "TOPLEFT" + }, + "text": "industry-specific needs, user habits, or even regional language variations. ", + "orig": "industry-specific needs, user habits, or even regional language variations. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "parsed_page": null, + "predictions": { + "layout": { + "clusters": [ + { + "id": 3, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 72.34796025007586, + "r": 514.5589619080102, + "b": 113.23199039139433, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9798315167427063, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 85.2575702946989, + "r_x1": 94.63680335091797, + "r_y1": 85.2575702946989, + "r_x2": 94.63680335091797, + "r_y2": 72.90954025201711, + "r_x3": 90.00000033372447, + "r_y3": 72.90954025201711, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 85.63196029599305, + "r_x1": 171.98883063774312, + "r_y1": 85.63196029599305, + "r_x2": 171.98883063774312, + "r_y2": 72.34796025007586, + "r_x3": 108.00000040046937, + "r_y3": 72.34796025007586, + "coord_origin": "TOPLEFT" + }, + "text": "Accessibility", + "orig": "Accessibility", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 171.99023063774834, + "r_y0": 85.63196029599305, + "r_x1": 514.5589619080102, + "r_y1": 85.63196029599305, + "r_x2": 514.5589619080102, + "r_y2": 72.34796025007586, + "r_x3": 171.99023063774834, + "r_y3": 72.34796025007586, + "coord_origin": "TOPLEFT" + }, + "text": ": Writers no longer needed expensive publishing equipment or training ", + "orig": ": Writers no longer needed expensive publishing equipment or training ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 99.31195034327891, + "r_x1": 491.5545718227088, + "r_y1": 99.31195034327891, + "r_x2": 491.5545718227088, + "r_y2": 86.02795029736171, + "r_x3": 108.00000040046937, + "r_y3": 86.02795029736171, + "coord_origin": "TOPLEFT" + }, + "text": "in typesetting to create polished work. This accessibility paved the way for self-", + "orig": "in typesetting to create polished work. This accessibility paved the way for self-", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 113.23199039139433, + "r_x1": 379.9569714088994, + "r_y1": 113.23199039139433, + "r_x2": 379.9569714088994, + "r_y2": 99.94793034547718, + "r_x3": 108.00000040046937, + "r_y3": 99.94793034547718, + "coord_origin": "TOPLEFT" + }, + "text": "publishing, blogging, and even fan fiction communities. ", + "orig": "publishing, blogging, and even fan fiction communities. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 7, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 113.6279903927632, + "r": 521.9014319352365, + "b": 154.5119605340816, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9790792465209961, + "cells": [ + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 126.53753043738607, + "r_x1": 94.63680335091797, + "r_y1": 126.53753043738607, + "r_x2": 94.63680335091797, + "r_y2": 114.18957039470433, + "r_x3": 90.00000033372447, + "r_y3": 114.18957039470433, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 126.9119804386803, + "r_x1": 160.6799905958094, + "r_y1": 126.9119804386803, + "r_x2": 160.6799905958094, + "r_y2": 113.6279903927632, + "r_x3": 108.00000040046937, + "r_y3": 113.6279903927632, + "coord_origin": "TOPLEFT" + }, + "text": "Education", + "orig": "Education", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 160.6816305958155, + "r_y0": 126.9119804386803, + "r_x1": 509.5430318894109, + "r_y1": 126.9119804386803, + "r_x2": 509.5430318894109, + "r_y2": 113.6279903927632, + "r_x3": 160.6816305958155, + "r_y3": 113.6279903927632, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors became a cornerstone of education, teaching students ", + "orig": ": Word processors became a cornerstone of education, teaching students ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 140.83197048679563, + "r_x1": 521.9014319352365, + "r_y1": 140.83197048679563, + "r_x2": 521.9014319352365, + "r_y2": 127.54797044087866, + "r_x3": 108.00000040046937, + "r_y3": 127.54797044087866, + "coord_origin": "TOPLEFT" + }, + "text": "not only how to write essays but also how to use technology effectively. Features like ", + "orig": "not only how to write essays but also how to use technology effectively. Features like ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 154.5119605340816, + "r_x1": 459.52728170395005, + "r_y1": 154.5119605340816, + "r_x2": 459.52728170395005, + "r_y2": 141.22796048816463, + "r_x3": 108.00000040046937, + "r_y3": 141.22796048816463, + "coord_origin": "TOPLEFT" + }, + "text": "bibliography generators and integrated research tools enhanced learning. ", + "orig": "bibliography generators and integrated research tools enhanced learning. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 6, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 155.14795053627995, + "r": 515.8510119128011, + "b": 196.27197067842803, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9792094230651855, + "cells": [ + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 168.0575505809029, + "r_x1": 94.63680335091797, + "r_y1": 168.0575505809029, + "r_x2": 94.63680335091797, + "r_y2": 155.70959053822128, + "r_x3": 90.00000033372447, + "r_y3": 155.70959053822128, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 168.43194058219706, + "r_x1": 195.63599072542797, + "r_y1": 168.43194058219706, + "r_x2": 195.63599072542797, + "r_y2": 155.14795053627995, + "r_x3": 108.00000040046937, + "r_y3": 155.14795053627995, + "coord_origin": "TOPLEFT" + }, + "text": "Creative Writing", + "orig": "Creative Writing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 195.63866072543786, + "r_y0": 168.43194058219706, + "r_x1": 509.872891890634, + "r_y1": 168.43194058219706, + "r_x2": 509.872891890634, + "r_y2": 155.14795053627995, + "r_x3": 195.63866072543786, + "r_y3": 155.14795053627995, + "coord_origin": "TOPLEFT" + }, + "text": ": Writers gained powerful tools to organize their ideas. Programs ", + "orig": ": Writers gained powerful tools to organize their ideas. Programs ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 182.1119406294829, + "r_x1": 515.8510119128011, + "r_y1": 182.1119406294829, + "r_x2": 515.8510119128011, + "r_y2": 168.8279405835658, + "r_x3": 108.00000040046937, + "r_y3": 168.8279405835658, + "coord_origin": "TOPLEFT" + }, + "text": "like Scrivener allowed authors to manage large projects, from novels to screenplays, ", + "orig": "like Scrivener allowed authors to manage large projects, from novels to screenplays, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 196.27197067842803, + "r_x1": 372.2227213802203, + "r_y1": 196.27197067842803, + "r_x2": 372.2227213802203, + "r_y2": 182.98797063251095, + "r_x3": 108.00000040046937, + "r_y3": 182.98797063251095, + "coord_origin": "TOPLEFT" + }, + "text": "with features like chapter outlines and character notes. ", + "orig": "with features like chapter outlines and character notes. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 12, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 238.58490082468575, + "r": 295.453431095556, + "b": 253.463010876113, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9634494781494141, + "cells": [ + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 253.463010876113, + "r_x1": 295.453431095556, + "r_y1": 253.463010876113, + "r_x2": 295.453431095556, + "r_y2": 238.58490082468575, + "r_x3": 72.00000026697958, + "r_y3": 238.58490082468575, + "coord_origin": "TOPLEFT" + }, + "text": "Word Processors in a Post-Digital Era ", + "orig": "Word Processors in a Post-Digital Era ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 14, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 268.1879909270109, + "r": 521.214971932691, + "b": 281.4719809729279, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9380115270614624, + "cells": [ + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 281.4719809729279, + "r_x1": 521.214971932691, + "r_y1": 281.4719809729279, + "r_x2": 521.214971932691, + "r_y2": 268.1879909270109, + "r_x3": 72.00000026697958, + "r_y3": 268.1879909270109, + "coord_origin": "TOPLEFT" + }, + "text": "As we move further into the 21st century, the role of the word processor continues to evolve: ", + "orig": "As we move further into the 21st century, the role of the word processor continues to evolve: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 1, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 295.5479710215825, + "r": 523.8382019424181, + "b": 350.3519612110165, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9815667867660522, + "cells": [ + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 308.8319710674996, + "r_x1": 99.00000036709692, + "r_y1": 308.8319710674996, + "r_x2": 99.00000036709692, + "r_y2": 295.5479710215825, + "r_x3": 90.00000033372447, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": "1.", + "orig": "1.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 308.8319710674996, + "r_x1": 216.9648108045163, + "r_y1": 308.8319710674996, + "r_x2": 216.9648108045163, + "r_y2": 295.5479710215825, + "r_x3": 108.00000040046937, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": "Artificial Intelligence", + "orig": "Artificial Intelligence", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 216.9668008045237, + "r_y0": 308.8319710674996, + "r_x1": 522.210631936383, + "r_y1": 308.8319710674996, + "r_x2": 522.210631936383, + "r_y2": 295.5479710215825, + "r_x3": 216.9668008045237, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": ": Modern word processors are leveraging AI to suggest content ", + "orig": ": Modern word processors are leveraging AI to suggest content ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 322.75195111561504, + "r_x1": 504.8831218721317, + "r_y1": 322.75195111561504, + "r_x2": 504.8831218721317, + "r_y2": 309.46795106969796, + "r_x3": 108.00000040046937, + "r_y3": 309.46795106969796, + "coord_origin": "TOPLEFT" + }, + "text": "improvements. Tools like Grammarly, ProWritingAid, and even native features in ", + "orig": "improvements. Tools like Grammarly, ProWritingAid, and even native features in ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 336.43194116290096, + "r_x1": 523.8382019424181, + "r_y1": 336.43194116290096, + "r_x2": 523.8382019424181, + "r_y2": 323.1479511169839, + "r_x3": 108.00000040046937, + "r_y3": 323.1479511169839, + "coord_origin": "TOPLEFT" + }, + "text": "Word now analyze tone, conciseness, and clarity. Some AI systems can even generate ", + "orig": "Word now analyze tone, conciseness, and clarity. Some AI systems can even generate ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 350.3519612110165, + "r_x1": 295.9101610972496, + "r_y1": 350.3519612110165, + "r_x2": 295.9101610972496, + "r_y2": 337.0679611650994, + "r_x3": 108.00000040046937, + "r_y3": 337.0679611650994, + "coord_origin": "TOPLEFT" + }, + "text": "entire paragraphs or rewrite sentences. ", + "orig": "entire paragraphs or rewrite sentences. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 0, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 350.7479812123853, + "r": 514.5262519078889, + "b": 405.55194140181914, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9819080233573914, + "cells": [ + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 364.0319512583023, + "r_x1": 99.00000036709692, + "r_y1": 364.0319512583023, + "r_x2": 99.00000036709692, + "r_y2": 350.7479812123853, + "r_x3": 90.00000033372447, + "r_y3": 350.7479812123853, + "coord_origin": "TOPLEFT" + }, + "text": "2.", + "orig": "2.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 364.0319512583023, + "r_x1": 256.327210950474, + "r_y1": 364.0319512583023, + "r_x2": 256.327210950474, + "r_y2": 350.7479812123853, + "r_x3": 108.00000040046937, + "r_y3": 350.7479812123853, + "coord_origin": "TOPLEFT" + }, + "text": "Integration with Other Tools", + "orig": "Integration with Other Tools", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 256.33008095048467, + "r_y0": 364.0319512583023, + "r_x1": 497.9115018462806, + "r_y1": 364.0319512583023, + "r_x2": 497.9115018462806, + "r_y2": 350.7479812123853, + "r_x3": 256.33008095048467, + "r_y3": 350.7479812123853, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors are no longer standalone. They ", + "orig": ": Word processors are no longer standalone. They ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 377.95196130641784, + "r_x1": 514.5262519078889, + "r_y1": 377.95196130641784, + "r_x2": 514.5262519078889, + "r_y2": 364.6679712605008, + "r_x3": 108.00000040046937, + "r_y3": 364.6679712605008, + "coord_origin": "TOPLEFT" + }, + "text": "integrate with task managers, cloud storage, and project management platforms. For ", + "orig": "integrate with task managers, cloud storage, and project management platforms. For ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 391.6319613537037, + "r_x1": 504.89987187219384, + "r_y1": 391.6319613537037, + "r_x2": 504.89987187219384, + "r_y2": 378.3479613077866, + "r_x3": 108.00000040046937, + "r_y3": 378.3479613077866, + "coord_origin": "TOPLEFT" + }, + "text": "instance, Google Docs syncs with Google Drive, while Microsoft Word integrates ", + "orig": "instance, Google Docs syncs with Google Drive, while Microsoft Word integrates ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 28, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 405.55194140181914, + "r_x1": 295.95120109740174, + "r_y1": 405.55194140181914, + "r_x2": 295.95120109740174, + "r_y2": 392.26794135590205, + "r_x3": 108.00000040046937, + "r_y3": 392.26794135590205, + "coord_origin": "TOPLEFT" + }, + "text": "seamlessly with OneDrive and Teams. ", + "orig": "seamlessly with OneDrive and Teams. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 5, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 405.947961403188, + "r": 502.9175418648432, + "b": 460.751981592622, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.979421854019165, + "cells": [ + { + "index": 29, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 419.2319614491051, + "r_x1": 99.00000036709692, + "r_y1": 419.2319614491051, + "r_x2": 99.00000036709692, + "r_y2": 405.947961403188, + "r_x3": 90.00000033372447, + "r_y3": 405.947961403188, + "coord_origin": "TOPLEFT" + }, + "text": "3.", + "orig": "3.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 30, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 419.2319614491051, + "r_x1": 176.33762065386867, + "r_y1": 419.2319614491051, + "r_x2": 176.33762065386867, + "r_y2": 405.947961403188, + "r_x3": 108.00000040046937, + "r_y3": 405.947961403188, + "coord_origin": "TOPLEFT" + }, + "text": "Voice Typing", + "orig": "Voice Typing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 31, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 176.33789065386966, + "r_y0": 419.2319614491051, + "r_x1": 477.5590517708127, + "r_y1": 419.2319614491051, + "r_x2": 477.5590517708127, + "r_y2": 405.947961403188, + "r_x3": 176.33789065386966, + "r_y3": 405.947961403188, + "coord_origin": "TOPLEFT" + }, + "text": ": Speech-to-text capabilities have made word processing more ", + "orig": ": Speech-to-text capabilities have made word processing more ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 32, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 433.1519714972206, + "r_x1": 438.90237162747184, + "r_y1": 433.1519714972206, + "r_x2": 438.90237162747184, + "r_y2": 419.86798145130354, + "r_x3": 108.00000040046937, + "r_y3": 419.86798145130354, + "coord_origin": "TOPLEFT" + }, + "text": "accessible, particularly for those with disabilities. Tools like Dragon ", + "orig": "accessible, particularly for those with disabilities. Tools like Dragon ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 33, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 446.8319715445065, + "r_x1": 502.9175418648432, + "r_y1": 446.8319715445065, + "r_x2": 502.9175418648432, + "r_y2": 433.5479714985894, + "r_x3": 108.00000040046937, + "r_y3": 433.5479714985894, + "coord_origin": "TOPLEFT" + }, + "text": "NaturallySpeaking and built-in options in Google Docs and Microsoft Word have ", + "orig": "NaturallySpeaking and built-in options in Google Docs and Microsoft Word have ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 34, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 460.751981592622, + "r_x1": 243.9549609045971, + "r_y1": 460.751981592622, + "r_x2": 243.9549609045971, + "r_y2": 447.4679515467048, + "r_x3": 108.00000040046937, + "r_y3": 447.4679515467048, + "coord_origin": "TOPLEFT" + }, + "text": "made dictation mainstream. ", + "orig": "made dictation mainstream. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 4, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 461.1479515939907, + "r": 516.9196819167639, + "b": 502.0319817353093, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9796164035797119, + "cells": [ + { + "index": 35, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 474.43197163990783, + "r_x1": 99.00000036709692, + "r_y1": 474.43197163990783, + "r_x2": 99.00000036709692, + "r_y2": 461.1479515939907, + "r_x3": 90.00000033372447, + "r_y3": 461.1479515939907, + "coord_origin": "TOPLEFT" + }, + "text": "4.", + "orig": "4.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 36, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 474.43197163990783, + "r_x1": 228.31917084661885, + "r_y1": 474.43197163990783, + "r_x2": 228.31917084661885, + "r_y2": 461.1479515939907, + "r_x3": 108.00000040046937, + "r_y3": 461.1479515939907, + "coord_origin": "TOPLEFT" + }, + "text": "Multimedia Documents", + "orig": "Multimedia Documents", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 37, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 228.32227084663035, + "r_y0": 474.43197163990783, + "r_x1": 516.9196819167639, + "r_y1": 474.43197163990783, + "r_x2": 516.9196819167639, + "r_y2": 461.1479515939907, + "r_x3": 228.32227084663035, + "r_y3": 461.1479515939907, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processing has expanded beyond text. Modern tools ", + "orig": ": Word processing has expanded beyond text. Modern tools ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 38, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 488.35196168802327, + "r_x1": 512.2006218992653, + "r_y1": 488.35196168802327, + "r_x2": 512.2006218992653, + "r_y2": 475.0679616421062, + "r_x3": 108.00000040046937, + "r_y3": 475.0679616421062, + "coord_origin": "TOPLEFT" + }, + "text": "allow users to embed images, videos, charts, and interactive elements, transforming ", + "orig": "allow users to embed images, videos, charts, and interactive elements, transforming ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 39, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 502.0319817353093, + "r_x1": 361.5996113408293, + "r_y1": 502.0319817353093, + "r_x2": 361.5996113408293, + "r_y2": 488.74795168939204, + "r_x3": 108.00000040046937, + "r_y3": 488.74795168939204, + "coord_origin": "TOPLEFT" + }, + "text": "simple documents into rich multimedia experiences. ", + "orig": "simple documents into rich multimedia experiences. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 2, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 502.6679417375074, + "r": 510.9070718944688, + "b": 543.7919618796556, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9810317158699036, + "cells": [ + { + "index": 40, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 515.9519617834246, + "r_x1": 99.00000036709692, + "r_y1": 515.9519617834246, + "r_x2": 99.00000036709692, + "r_y2": 502.6679417375074, + "r_x3": 90.00000033372447, + "r_y3": 502.6679417375074, + "coord_origin": "TOPLEFT" + }, + "text": "5.", + "orig": "5.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 41, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 515.9519617834246, + "r_x1": 254.2937309429338, + "r_y1": 515.9519617834246, + "r_x2": 254.2937309429338, + "r_y2": 502.6679417375074, + "r_x3": 108.00000040046937, + "r_y3": 502.6679417375074, + "coord_origin": "TOPLEFT" + }, + "text": "Cross-Platform Accessibility", + "orig": "Cross-Platform Accessibility", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 42, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 254.2967809429451, + "r_y0": 515.9519617834246, + "r_x1": 510.9070718944688, + "r_y1": 515.9519617834246, + "r_x2": 510.9070718944688, + "r_y2": 502.6679417375074, + "r_x3": 254.2967809429451, + "r_y3": 502.6679417375074, + "coord_origin": "TOPLEFT" + }, + "text": ": Thanks to cloud computing, documents can now be ", + "orig": ": Thanks to cloud computing, documents can now be ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 43, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 529.6319618307105, + "r_x1": 469.6751117415787, + "r_y1": 529.6319618307105, + "r_x2": 469.6751117415787, + "r_y2": 516.3479617847934, + "r_x3": 108.00000040046937, + "r_y3": 516.3479617847934, + "coord_origin": "TOPLEFT" + }, + "text": "accessed and edited across devices. Whether you're on a desktop, tablet, or ", + "orig": "accessed and edited across devices. Whether you're on a desktop, tablet, or ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 44, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 543.7919618796556, + "r_x1": 355.9451913198625, + "r_y1": 543.7919618796556, + "r_x2": 355.9451913198625, + "r_y2": 530.5079318337384, + "r_x3": 108.00000040046937, + "r_y3": 530.5079318337384, + "coord_origin": "TOPLEFT" + }, + "text": "smartphone, you can continue working seamlessly. ", + "orig": "smartphone, you can continue working seamlessly. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 13, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 586.1049220259133, + "r": 228.355610846754, + "b": 600.9829720773404, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9614330530166626, + "cells": [ + { + "index": 45, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 600.9829720773404, + "r_x1": 228.355610846754, + "r_y1": 600.9829720773404, + "r_x2": 228.355610846754, + "r_y2": 586.1049220259133, + "r_x3": 72.00000026697958, + "r_y3": 586.1049220259133, + "coord_origin": "TOPLEFT" + }, + "text": "A Glimpse Into the Future ", + "orig": "A Glimpse Into the Future ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 10, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 615.4679521274087, + "r": 515.04700190982, + "b": 642.6719622214413, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9675389528274536, + "cells": [ + { + "index": 46, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 628.7519521733258, + "r_x1": 515.04700190982, + "r_y1": 628.7519521733258, + "r_x2": 515.04700190982, + "r_y2": 615.4679521274087, + "r_x3": 72.00000026697958, + "r_y3": 615.4679521274087, + "coord_origin": "TOPLEFT" + }, + "text": "The word processor's future lies in adaptability and intelligence. Some exciting possibilities ", + "orig": "The word processor's future lies in adaptability and intelligence. Some exciting possibilities ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 47, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 642.6719622214413, + "r_x1": 113.6543004214358, + "r_y1": 642.6719622214413, + "r_x2": 113.6543004214358, + "r_y2": 629.3879421755241, + "r_x3": 72.00000026697958, + "r_y3": 629.3879421755241, + "coord_origin": "TOPLEFT" + }, + "text": "include: ", + "orig": "include: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 11, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 656.9879422709255, + "r": 518.2673319217611, + "b": 683.9519623641286, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9675005674362183, + "cells": [ + { + "index": 48, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 669.8975523155485, + "r_x1": 94.63680335091797, + "r_y1": 669.8975523155485, + "r_x2": 94.63680335091797, + "r_y2": 657.5495622728668, + "r_x3": 90.00000033372447, + "r_y3": 657.5495622728668, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 49, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 670.2719723168427, + "r_x1": 240.67430089243229, + "r_y1": 670.2719723168427, + "r_x2": 240.67430089243229, + "r_y2": 656.9879422709255, + "r_x3": 108.00000040046937, + "r_y3": 656.9879422709255, + "coord_origin": "TOPLEFT" + }, + "text": "Fully AI-Assisted Writing", + "orig": "Fully AI-Assisted Writing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 50, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 240.67390089243082, + "r_y0": 670.2719723168427, + "r_x1": 518.2673319217611, + "r_y1": 670.2719723168427, + "r_x2": 518.2673319217611, + "r_y2": 656.9879422709255, + "r_x3": 240.67390089243082, + "r_y3": 656.9879422709255, + "coord_origin": "TOPLEFT" + }, + "text": ": Imagine a word processor that understands your writing ", + "orig": ": Imagine a word processor that understands your writing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 51, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 683.9519623641286, + "r_x1": 436.57608161884576, + "r_y1": 683.9519623641286, + "r_x2": 436.57608161884576, + "r_y2": 670.6679423182114, + "r_x3": 108.00000040046937, + "r_y3": 670.6679423182114, + "coord_origin": "TOPLEFT" + }, + "text": "style, drafts emails, or creates entire essays based on minimal input. ", + "orig": "style, drafts emails, or creates entire essays based on minimal input. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 9, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 684.5879523663269, + "r": 525.5181319486474, + "b": 725.4719825076454, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9722561836242676, + "cells": [ + { + "index": 52, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 697.49756241095, + "r_x1": 94.63680335091797, + "r_y1": 697.49756241095, + "r_x2": 94.63680335091797, + "r_y2": 685.1495623682681, + "r_x3": 90.00000033372447, + "r_y3": 685.1495623682681, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 53, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 697.871982412244, + "r_x1": 216.9503908044628, + "r_y1": 697.871982412244, + "r_x2": 216.9503908044628, + "r_y2": 684.5879523663269, + "r_x3": 108.00000040046937, + "r_y3": 684.5879523663269, + "coord_origin": "TOPLEFT" + }, + "text": "Immersive Interfaces", + "orig": "Immersive Interfaces", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 54, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 216.95508080448025, + "r_y0": 697.871982412244, + "r_x1": 472.53821175219514, + "r_y1": 697.871982412244, + "r_x2": 472.53821175219514, + "r_y2": 684.5879523663269, + "r_x3": 216.95508080448025, + "r_y3": 684.5879523663269, + "coord_origin": "TOPLEFT" + }, + "text": ": As augmented reality (AR) and virtual reality (VR) ", + "orig": ": As augmented reality (AR) and virtual reality (VR) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 55, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 711.5519724595299, + "r_x1": 525.5181319486474, + "r_y1": 711.5519724595299, + "r_x2": 525.5181319486474, + "r_y2": 698.2679424136128, + "r_x3": 108.00000040046937, + "r_y3": 698.2679424136128, + "coord_origin": "TOPLEFT" + }, + "text": "technology advance, users may be able to write and edit in 3D spaces, collaborating in ", + "orig": "technology advance, users may be able to write and edit in 3D spaces, collaborating in ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 56, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 725.4719825076454, + "r_x1": 213.6445207922045, + "r_y1": 725.4719825076454, + "r_x2": 213.6445207922045, + "r_y2": 712.1879524617283, + "r_x3": 108.00000040046937, + "r_y3": 712.1879524617283, + "coord_origin": "TOPLEFT" + }, + "text": "virtual environments. ", + "orig": "virtual environments. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 8, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 725.8679225090141, + "r": 518.906741924132, + "b": 753.3119506038763, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9774264693260193, + "cells": [ + { + "index": 57, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 738.777522553637, + "r_x1": 94.63680335091797, + "r_y1": 738.777522553637, + "r_x2": 94.63680335091797, + "r_y2": 726.4295625109554, + "r_x3": 90.00000033372447, + "r_y3": 726.4295625109554, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 58, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 739.1519725549313, + "r_x1": 223.976240830515, + "r_y1": 739.1519725549313, + "r_x2": 223.976240830515, + "r_y2": 725.8679225090141, + "r_x3": 108.00000040046937, + "r_y3": 725.8679225090141, + "coord_origin": "TOPLEFT" + }, + "text": "Hyper-Personalization", + "orig": "Hyper-Personalization", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 59, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 223.98048083053075, + "r_y0": 739.1519725549313, + "r_x1": 518.906741924132, + "r_y1": 739.1519725549313, + "r_x2": 518.906741924132, + "r_y2": 725.8679225090141, + "r_x3": 223.98048083053075, + "r_y3": 725.8679225090141, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors could offer dynamic suggestions based on ", + "orig": ": Word processors could offer dynamic suggestions based on ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 60, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 753.3119506038763, + "r_x1": 463.21872171763806, + "r_y1": 753.3119506038763, + "r_x2": 463.21872171763806, + "r_y2": 740.0279525579592, + "r_x3": 108.00000040046937, + "r_y3": 740.0279525579592, + "coord_origin": "TOPLEFT" + }, + "text": "industry-specific needs, user habits, or even regional language variations. ", + "orig": "industry-specific needs, user habits, or even regional language variations. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + } + ] + }, + "tablestructure": { + "table_map": {} + }, + "figures_classification": null, + "equations_prediction": null, + "vlm_response": null + }, + "assembled": { + "elements": [ + { + "label": "list_item", + "id": 3, + "page_no": 3, + "cluster": { + "id": 3, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 72.34796025007586, + "r": 514.5589619080102, + "b": 113.23199039139433, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9798315167427063, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 85.2575702946989, + "r_x1": 94.63680335091797, + "r_y1": 85.2575702946989, + "r_x2": 94.63680335091797, + "r_y2": 72.90954025201711, + "r_x3": 90.00000033372447, + "r_y3": 72.90954025201711, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 85.63196029599305, + "r_x1": 171.98883063774312, + "r_y1": 85.63196029599305, + "r_x2": 171.98883063774312, + "r_y2": 72.34796025007586, + "r_x3": 108.00000040046937, + "r_y3": 72.34796025007586, + "coord_origin": "TOPLEFT" + }, + "text": "Accessibility", + "orig": "Accessibility", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 171.99023063774834, + "r_y0": 85.63196029599305, + "r_x1": 514.5589619080102, + "r_y1": 85.63196029599305, + "r_x2": 514.5589619080102, + "r_y2": 72.34796025007586, + "r_x3": 171.99023063774834, + "r_y3": 72.34796025007586, + "coord_origin": "TOPLEFT" + }, + "text": ": Writers no longer needed expensive publishing equipment or training ", + "orig": ": Writers no longer needed expensive publishing equipment or training ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 99.31195034327891, + "r_x1": 491.5545718227088, + "r_y1": 99.31195034327891, + "r_x2": 491.5545718227088, + "r_y2": 86.02795029736171, + "r_x3": 108.00000040046937, + "r_y3": 86.02795029736171, + "coord_origin": "TOPLEFT" + }, + "text": "in typesetting to create polished work. This accessibility paved the way for self-", + "orig": "in typesetting to create polished work. This accessibility paved the way for self-", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 113.23199039139433, + "r_x1": 379.9569714088994, + "r_y1": 113.23199039139433, + "r_x2": 379.9569714088994, + "r_y2": 99.94793034547718, + "r_x3": 108.00000040046937, + "r_y3": 99.94793034547718, + "coord_origin": "TOPLEFT" + }, + "text": "publishing, blogging, and even fan fiction communities. ", + "orig": "publishing, blogging, and even fan fiction communities. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Accessibility : Writers no longer needed expensive publishing equipment or training in typesetting to create polished work. This accessibility paved the way for selfpublishing, blogging, and even fan fiction communities." + }, + { + "label": "list_item", + "id": 7, + "page_no": 3, + "cluster": { + "id": 7, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 113.6279903927632, + "r": 521.9014319352365, + "b": 154.5119605340816, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9790792465209961, + "cells": [ + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 126.53753043738607, + "r_x1": 94.63680335091797, + "r_y1": 126.53753043738607, + "r_x2": 94.63680335091797, + "r_y2": 114.18957039470433, + "r_x3": 90.00000033372447, + "r_y3": 114.18957039470433, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 126.9119804386803, + "r_x1": 160.6799905958094, + "r_y1": 126.9119804386803, + "r_x2": 160.6799905958094, + "r_y2": 113.6279903927632, + "r_x3": 108.00000040046937, + "r_y3": 113.6279903927632, + "coord_origin": "TOPLEFT" + }, + "text": "Education", + "orig": "Education", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 160.6816305958155, + "r_y0": 126.9119804386803, + "r_x1": 509.5430318894109, + "r_y1": 126.9119804386803, + "r_x2": 509.5430318894109, + "r_y2": 113.6279903927632, + "r_x3": 160.6816305958155, + "r_y3": 113.6279903927632, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors became a cornerstone of education, teaching students ", + "orig": ": Word processors became a cornerstone of education, teaching students ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 140.83197048679563, + "r_x1": 521.9014319352365, + "r_y1": 140.83197048679563, + "r_x2": 521.9014319352365, + "r_y2": 127.54797044087866, + "r_x3": 108.00000040046937, + "r_y3": 127.54797044087866, + "coord_origin": "TOPLEFT" + }, + "text": "not only how to write essays but also how to use technology effectively. Features like ", + "orig": "not only how to write essays but also how to use technology effectively. Features like ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 154.5119605340816, + "r_x1": 459.52728170395005, + "r_y1": 154.5119605340816, + "r_x2": 459.52728170395005, + "r_y2": 141.22796048816463, + "r_x3": 108.00000040046937, + "r_y3": 141.22796048816463, + "coord_origin": "TOPLEFT" + }, + "text": "bibliography generators and integrated research tools enhanced learning. ", + "orig": "bibliography generators and integrated research tools enhanced learning. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Education : Word processors became a cornerstone of education, teaching students not only how to write essays but also how to use technology effectively. Features like bibliography generators and integrated research tools enhanced learning." + }, + { + "label": "list_item", + "id": 6, + "page_no": 3, + "cluster": { + "id": 6, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 155.14795053627995, + "r": 515.8510119128011, + "b": 196.27197067842803, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9792094230651855, + "cells": [ + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 168.0575505809029, + "r_x1": 94.63680335091797, + "r_y1": 168.0575505809029, + "r_x2": 94.63680335091797, + "r_y2": 155.70959053822128, + "r_x3": 90.00000033372447, + "r_y3": 155.70959053822128, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 168.43194058219706, + "r_x1": 195.63599072542797, + "r_y1": 168.43194058219706, + "r_x2": 195.63599072542797, + "r_y2": 155.14795053627995, + "r_x3": 108.00000040046937, + "r_y3": 155.14795053627995, + "coord_origin": "TOPLEFT" + }, + "text": "Creative Writing", + "orig": "Creative Writing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 195.63866072543786, + "r_y0": 168.43194058219706, + "r_x1": 509.872891890634, + "r_y1": 168.43194058219706, + "r_x2": 509.872891890634, + "r_y2": 155.14795053627995, + "r_x3": 195.63866072543786, + "r_y3": 155.14795053627995, + "coord_origin": "TOPLEFT" + }, + "text": ": Writers gained powerful tools to organize their ideas. Programs ", + "orig": ": Writers gained powerful tools to organize their ideas. Programs ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 182.1119406294829, + "r_x1": 515.8510119128011, + "r_y1": 182.1119406294829, + "r_x2": 515.8510119128011, + "r_y2": 168.8279405835658, + "r_x3": 108.00000040046937, + "r_y3": 168.8279405835658, + "coord_origin": "TOPLEFT" + }, + "text": "like Scrivener allowed authors to manage large projects, from novels to screenplays, ", + "orig": "like Scrivener allowed authors to manage large projects, from novels to screenplays, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 196.27197067842803, + "r_x1": 372.2227213802203, + "r_y1": 196.27197067842803, + "r_x2": 372.2227213802203, + "r_y2": 182.98797063251095, + "r_x3": 108.00000040046937, + "r_y3": 182.98797063251095, + "coord_origin": "TOPLEFT" + }, + "text": "with features like chapter outlines and character notes. ", + "orig": "with features like chapter outlines and character notes. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Creative Writing : Writers gained powerful tools to organize their ideas. Programs like Scrivener allowed authors to manage large projects, from novels to screenplays, with features like chapter outlines and character notes." + }, + { + "label": "section_header", + "id": 12, + "page_no": 3, + "cluster": { + "id": 12, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 238.58490082468575, + "r": 295.453431095556, + "b": 253.463010876113, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9634494781494141, + "cells": [ + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 253.463010876113, + "r_x1": 295.453431095556, + "r_y1": 253.463010876113, + "r_x2": 295.453431095556, + "r_y2": 238.58490082468575, + "r_x3": 72.00000026697958, + "r_y3": 238.58490082468575, + "coord_origin": "TOPLEFT" + }, + "text": "Word Processors in a Post-Digital Era ", + "orig": "Word Processors in a Post-Digital Era ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "Word Processors in a Post-Digital Era" + }, + { + "label": "text", + "id": 14, + "page_no": 3, + "cluster": { + "id": 14, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 268.1879909270109, + "r": 521.214971932691, + "b": 281.4719809729279, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9380115270614624, + "cells": [ + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 281.4719809729279, + "r_x1": 521.214971932691, + "r_y1": 281.4719809729279, + "r_x2": 521.214971932691, + "r_y2": 268.1879909270109, + "r_x3": 72.00000026697958, + "r_y3": 268.1879909270109, + "coord_origin": "TOPLEFT" + }, + "text": "As we move further into the 21st century, the role of the word processor continues to evolve: ", + "orig": "As we move further into the 21st century, the role of the word processor continues to evolve: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "As we move further into the 21st century, the role of the word processor continues to evolve:" + }, + { + "label": "list_item", + "id": 1, + "page_no": 3, + "cluster": { + "id": 1, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 295.5479710215825, + "r": 523.8382019424181, + "b": 350.3519612110165, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9815667867660522, + "cells": [ + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 308.8319710674996, + "r_x1": 99.00000036709692, + "r_y1": 308.8319710674996, + "r_x2": 99.00000036709692, + "r_y2": 295.5479710215825, + "r_x3": 90.00000033372447, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": "1.", + "orig": "1.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 308.8319710674996, + "r_x1": 216.9648108045163, + "r_y1": 308.8319710674996, + "r_x2": 216.9648108045163, + "r_y2": 295.5479710215825, + "r_x3": 108.00000040046937, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": "Artificial Intelligence", + "orig": "Artificial Intelligence", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 216.9668008045237, + "r_y0": 308.8319710674996, + "r_x1": 522.210631936383, + "r_y1": 308.8319710674996, + "r_x2": 522.210631936383, + "r_y2": 295.5479710215825, + "r_x3": 216.9668008045237, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": ": Modern word processors are leveraging AI to suggest content ", + "orig": ": Modern word processors are leveraging AI to suggest content ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 322.75195111561504, + "r_x1": 504.8831218721317, + "r_y1": 322.75195111561504, + "r_x2": 504.8831218721317, + "r_y2": 309.46795106969796, + "r_x3": 108.00000040046937, + "r_y3": 309.46795106969796, + "coord_origin": "TOPLEFT" + }, + "text": "improvements. Tools like Grammarly, ProWritingAid, and even native features in ", + "orig": "improvements. Tools like Grammarly, ProWritingAid, and even native features in ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 336.43194116290096, + "r_x1": 523.8382019424181, + "r_y1": 336.43194116290096, + "r_x2": 523.8382019424181, + "r_y2": 323.1479511169839, + "r_x3": 108.00000040046937, + "r_y3": 323.1479511169839, + "coord_origin": "TOPLEFT" + }, + "text": "Word now analyze tone, conciseness, and clarity. Some AI systems can even generate ", + "orig": "Word now analyze tone, conciseness, and clarity. Some AI systems can even generate ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 350.3519612110165, + "r_x1": 295.9101610972496, + "r_y1": 350.3519612110165, + "r_x2": 295.9101610972496, + "r_y2": 337.0679611650994, + "r_x3": 108.00000040046937, + "r_y3": 337.0679611650994, + "coord_origin": "TOPLEFT" + }, + "text": "entire paragraphs or rewrite sentences. ", + "orig": "entire paragraphs or rewrite sentences. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "1. Artificial Intelligence : Modern word processors are leveraging AI to suggest content improvements. Tools like Grammarly, ProWritingAid, and even native features in Word now analyze tone, conciseness, and clarity. Some AI systems can even generate entire paragraphs or rewrite sentences." + }, + { + "label": "list_item", + "id": 0, + "page_no": 3, + "cluster": { + "id": 0, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 350.7479812123853, + "r": 514.5262519078889, + "b": 405.55194140181914, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9819080233573914, + "cells": [ + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 364.0319512583023, + "r_x1": 99.00000036709692, + "r_y1": 364.0319512583023, + "r_x2": 99.00000036709692, + "r_y2": 350.7479812123853, + "r_x3": 90.00000033372447, + "r_y3": 350.7479812123853, + "coord_origin": "TOPLEFT" + }, + "text": "2.", + "orig": "2.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 364.0319512583023, + "r_x1": 256.327210950474, + "r_y1": 364.0319512583023, + "r_x2": 256.327210950474, + "r_y2": 350.7479812123853, + "r_x3": 108.00000040046937, + "r_y3": 350.7479812123853, + "coord_origin": "TOPLEFT" + }, + "text": "Integration with Other Tools", + "orig": "Integration with Other Tools", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 256.33008095048467, + "r_y0": 364.0319512583023, + "r_x1": 497.9115018462806, + "r_y1": 364.0319512583023, + "r_x2": 497.9115018462806, + "r_y2": 350.7479812123853, + "r_x3": 256.33008095048467, + "r_y3": 350.7479812123853, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors are no longer standalone. They ", + "orig": ": Word processors are no longer standalone. They ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 377.95196130641784, + "r_x1": 514.5262519078889, + "r_y1": 377.95196130641784, + "r_x2": 514.5262519078889, + "r_y2": 364.6679712605008, + "r_x3": 108.00000040046937, + "r_y3": 364.6679712605008, + "coord_origin": "TOPLEFT" + }, + "text": "integrate with task managers, cloud storage, and project management platforms. For ", + "orig": "integrate with task managers, cloud storage, and project management platforms. For ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 391.6319613537037, + "r_x1": 504.89987187219384, + "r_y1": 391.6319613537037, + "r_x2": 504.89987187219384, + "r_y2": 378.3479613077866, + "r_x3": 108.00000040046937, + "r_y3": 378.3479613077866, + "coord_origin": "TOPLEFT" + }, + "text": "instance, Google Docs syncs with Google Drive, while Microsoft Word integrates ", + "orig": "instance, Google Docs syncs with Google Drive, while Microsoft Word integrates ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 28, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 405.55194140181914, + "r_x1": 295.95120109740174, + "r_y1": 405.55194140181914, + "r_x2": 295.95120109740174, + "r_y2": 392.26794135590205, + "r_x3": 108.00000040046937, + "r_y3": 392.26794135590205, + "coord_origin": "TOPLEFT" + }, + "text": "seamlessly with OneDrive and Teams. ", + "orig": "seamlessly with OneDrive and Teams. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "2. Integration with Other Tools : Word processors are no longer standalone. They integrate with task managers, cloud storage, and project management platforms. For instance, Google Docs syncs with Google Drive, while Microsoft Word integrates seamlessly with OneDrive and Teams." + }, + { + "label": "list_item", + "id": 5, + "page_no": 3, + "cluster": { + "id": 5, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 405.947961403188, + "r": 502.9175418648432, + "b": 460.751981592622, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.979421854019165, + "cells": [ + { + "index": 29, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 419.2319614491051, + "r_x1": 99.00000036709692, + "r_y1": 419.2319614491051, + "r_x2": 99.00000036709692, + "r_y2": 405.947961403188, + "r_x3": 90.00000033372447, + "r_y3": 405.947961403188, + "coord_origin": "TOPLEFT" + }, + "text": "3.", + "orig": "3.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 30, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 419.2319614491051, + "r_x1": 176.33762065386867, + "r_y1": 419.2319614491051, + "r_x2": 176.33762065386867, + "r_y2": 405.947961403188, + "r_x3": 108.00000040046937, + "r_y3": 405.947961403188, + "coord_origin": "TOPLEFT" + }, + "text": "Voice Typing", + "orig": "Voice Typing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 31, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 176.33789065386966, + "r_y0": 419.2319614491051, + "r_x1": 477.5590517708127, + "r_y1": 419.2319614491051, + "r_x2": 477.5590517708127, + "r_y2": 405.947961403188, + "r_x3": 176.33789065386966, + "r_y3": 405.947961403188, + "coord_origin": "TOPLEFT" + }, + "text": ": Speech-to-text capabilities have made word processing more ", + "orig": ": Speech-to-text capabilities have made word processing more ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 32, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 433.1519714972206, + "r_x1": 438.90237162747184, + "r_y1": 433.1519714972206, + "r_x2": 438.90237162747184, + "r_y2": 419.86798145130354, + "r_x3": 108.00000040046937, + "r_y3": 419.86798145130354, + "coord_origin": "TOPLEFT" + }, + "text": "accessible, particularly for those with disabilities. Tools like Dragon ", + "orig": "accessible, particularly for those with disabilities. Tools like Dragon ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 33, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 446.8319715445065, + "r_x1": 502.9175418648432, + "r_y1": 446.8319715445065, + "r_x2": 502.9175418648432, + "r_y2": 433.5479714985894, + "r_x3": 108.00000040046937, + "r_y3": 433.5479714985894, + "coord_origin": "TOPLEFT" + }, + "text": "NaturallySpeaking and built-in options in Google Docs and Microsoft Word have ", + "orig": "NaturallySpeaking and built-in options in Google Docs and Microsoft Word have ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 34, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 460.751981592622, + "r_x1": 243.9549609045971, + "r_y1": 460.751981592622, + "r_x2": 243.9549609045971, + "r_y2": 447.4679515467048, + "r_x3": 108.00000040046937, + "r_y3": 447.4679515467048, + "coord_origin": "TOPLEFT" + }, + "text": "made dictation mainstream. ", + "orig": "made dictation mainstream. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "3. Voice Typing : Speech-to-text capabilities have made word processing more accessible, particularly for those with disabilities. Tools like Dragon NaturallySpeaking and built-in options in Google Docs and Microsoft Word have made dictation mainstream." + }, + { + "label": "list_item", + "id": 4, + "page_no": 3, + "cluster": { + "id": 4, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 461.1479515939907, + "r": 516.9196819167639, + "b": 502.0319817353093, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9796164035797119, + "cells": [ + { + "index": 35, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 474.43197163990783, + "r_x1": 99.00000036709692, + "r_y1": 474.43197163990783, + "r_x2": 99.00000036709692, + "r_y2": 461.1479515939907, + "r_x3": 90.00000033372447, + "r_y3": 461.1479515939907, + "coord_origin": "TOPLEFT" + }, + "text": "4.", + "orig": "4.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 36, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 474.43197163990783, + "r_x1": 228.31917084661885, + "r_y1": 474.43197163990783, + "r_x2": 228.31917084661885, + "r_y2": 461.1479515939907, + "r_x3": 108.00000040046937, + "r_y3": 461.1479515939907, + "coord_origin": "TOPLEFT" + }, + "text": "Multimedia Documents", + "orig": "Multimedia Documents", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 37, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 228.32227084663035, + "r_y0": 474.43197163990783, + "r_x1": 516.9196819167639, + "r_y1": 474.43197163990783, + "r_x2": 516.9196819167639, + "r_y2": 461.1479515939907, + "r_x3": 228.32227084663035, + "r_y3": 461.1479515939907, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processing has expanded beyond text. Modern tools ", + "orig": ": Word processing has expanded beyond text. Modern tools ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 38, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 488.35196168802327, + "r_x1": 512.2006218992653, + "r_y1": 488.35196168802327, + "r_x2": 512.2006218992653, + "r_y2": 475.0679616421062, + "r_x3": 108.00000040046937, + "r_y3": 475.0679616421062, + "coord_origin": "TOPLEFT" + }, + "text": "allow users to embed images, videos, charts, and interactive elements, transforming ", + "orig": "allow users to embed images, videos, charts, and interactive elements, transforming ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 39, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 502.0319817353093, + "r_x1": 361.5996113408293, + "r_y1": 502.0319817353093, + "r_x2": 361.5996113408293, + "r_y2": 488.74795168939204, + "r_x3": 108.00000040046937, + "r_y3": 488.74795168939204, + "coord_origin": "TOPLEFT" + }, + "text": "simple documents into rich multimedia experiences. ", + "orig": "simple documents into rich multimedia experiences. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "4. Multimedia Documents : Word processing has expanded beyond text. Modern tools allow users to embed images, videos, charts, and interactive elements, transforming simple documents into rich multimedia experiences." + }, + { + "label": "list_item", + "id": 2, + "page_no": 3, + "cluster": { + "id": 2, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 502.6679417375074, + "r": 510.9070718944688, + "b": 543.7919618796556, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9810317158699036, + "cells": [ + { + "index": 40, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 515.9519617834246, + "r_x1": 99.00000036709692, + "r_y1": 515.9519617834246, + "r_x2": 99.00000036709692, + "r_y2": 502.6679417375074, + "r_x3": 90.00000033372447, + "r_y3": 502.6679417375074, + "coord_origin": "TOPLEFT" + }, + "text": "5.", + "orig": "5.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 41, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 515.9519617834246, + "r_x1": 254.2937309429338, + "r_y1": 515.9519617834246, + "r_x2": 254.2937309429338, + "r_y2": 502.6679417375074, + "r_x3": 108.00000040046937, + "r_y3": 502.6679417375074, + "coord_origin": "TOPLEFT" + }, + "text": "Cross-Platform Accessibility", + "orig": "Cross-Platform Accessibility", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 42, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 254.2967809429451, + "r_y0": 515.9519617834246, + "r_x1": 510.9070718944688, + "r_y1": 515.9519617834246, + "r_x2": 510.9070718944688, + "r_y2": 502.6679417375074, + "r_x3": 254.2967809429451, + "r_y3": 502.6679417375074, + "coord_origin": "TOPLEFT" + }, + "text": ": Thanks to cloud computing, documents can now be ", + "orig": ": Thanks to cloud computing, documents can now be ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 43, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 529.6319618307105, + "r_x1": 469.6751117415787, + "r_y1": 529.6319618307105, + "r_x2": 469.6751117415787, + "r_y2": 516.3479617847934, + "r_x3": 108.00000040046937, + "r_y3": 516.3479617847934, + "coord_origin": "TOPLEFT" + }, + "text": "accessed and edited across devices. Whether you're on a desktop, tablet, or ", + "orig": "accessed and edited across devices. Whether you're on a desktop, tablet, or ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 44, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 543.7919618796556, + "r_x1": 355.9451913198625, + "r_y1": 543.7919618796556, + "r_x2": 355.9451913198625, + "r_y2": 530.5079318337384, + "r_x3": 108.00000040046937, + "r_y3": 530.5079318337384, + "coord_origin": "TOPLEFT" + }, + "text": "smartphone, you can continue working seamlessly. ", + "orig": "smartphone, you can continue working seamlessly. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "5. Cross-Platform Accessibility : Thanks to cloud computing, documents can now be accessed and edited across devices. Whether you're on a desktop, tablet, or smartphone, you can continue working seamlessly." + }, + { + "label": "section_header", + "id": 13, + "page_no": 3, + "cluster": { + "id": 13, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 586.1049220259133, + "r": 228.355610846754, + "b": 600.9829720773404, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9614330530166626, + "cells": [ + { + "index": 45, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 600.9829720773404, + "r_x1": 228.355610846754, + "r_y1": 600.9829720773404, + "r_x2": 228.355610846754, + "r_y2": 586.1049220259133, + "r_x3": 72.00000026697958, + "r_y3": 586.1049220259133, + "coord_origin": "TOPLEFT" + }, + "text": "A Glimpse Into the Future ", + "orig": "A Glimpse Into the Future ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "A Glimpse Into the Future" + }, + { + "label": "text", + "id": 10, + "page_no": 3, + "cluster": { + "id": 10, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 615.4679521274087, + "r": 515.04700190982, + "b": 642.6719622214413, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9675389528274536, + "cells": [ + { + "index": 46, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 628.7519521733258, + "r_x1": 515.04700190982, + "r_y1": 628.7519521733258, + "r_x2": 515.04700190982, + "r_y2": 615.4679521274087, + "r_x3": 72.00000026697958, + "r_y3": 615.4679521274087, + "coord_origin": "TOPLEFT" + }, + "text": "The word processor's future lies in adaptability and intelligence. Some exciting possibilities ", + "orig": "The word processor's future lies in adaptability and intelligence. Some exciting possibilities ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 47, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 642.6719622214413, + "r_x1": 113.6543004214358, + "r_y1": 642.6719622214413, + "r_x2": 113.6543004214358, + "r_y2": 629.3879421755241, + "r_x3": 72.00000026697958, + "r_y3": 629.3879421755241, + "coord_origin": "TOPLEFT" + }, + "text": "include: ", + "orig": "include: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The word processor's future lies in adaptability and intelligence. Some exciting possibilities include:" + }, + { + "label": "list_item", + "id": 11, + "page_no": 3, + "cluster": { + "id": 11, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 656.9879422709255, + "r": 518.2673319217611, + "b": 683.9519623641286, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9675005674362183, + "cells": [ + { + "index": 48, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 669.8975523155485, + "r_x1": 94.63680335091797, + "r_y1": 669.8975523155485, + "r_x2": 94.63680335091797, + "r_y2": 657.5495622728668, + "r_x3": 90.00000033372447, + "r_y3": 657.5495622728668, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 49, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 670.2719723168427, + "r_x1": 240.67430089243229, + "r_y1": 670.2719723168427, + "r_x2": 240.67430089243229, + "r_y2": 656.9879422709255, + "r_x3": 108.00000040046937, + "r_y3": 656.9879422709255, + "coord_origin": "TOPLEFT" + }, + "text": "Fully AI-Assisted Writing", + "orig": "Fully AI-Assisted Writing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 50, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 240.67390089243082, + "r_y0": 670.2719723168427, + "r_x1": 518.2673319217611, + "r_y1": 670.2719723168427, + "r_x2": 518.2673319217611, + "r_y2": 656.9879422709255, + "r_x3": 240.67390089243082, + "r_y3": 656.9879422709255, + "coord_origin": "TOPLEFT" + }, + "text": ": Imagine a word processor that understands your writing ", + "orig": ": Imagine a word processor that understands your writing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 51, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 683.9519623641286, + "r_x1": 436.57608161884576, + "r_y1": 683.9519623641286, + "r_x2": 436.57608161884576, + "r_y2": 670.6679423182114, + "r_x3": 108.00000040046937, + "r_y3": 670.6679423182114, + "coord_origin": "TOPLEFT" + }, + "text": "style, drafts emails, or creates entire essays based on minimal input. ", + "orig": "style, drafts emails, or creates entire essays based on minimal input. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Fully AI-Assisted Writing : Imagine a word processor that understands your writing style, drafts emails, or creates entire essays based on minimal input." + }, + { + "label": "list_item", + "id": 9, + "page_no": 3, + "cluster": { + "id": 9, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 684.5879523663269, + "r": 525.5181319486474, + "b": 725.4719825076454, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9722561836242676, + "cells": [ + { + "index": 52, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 697.49756241095, + "r_x1": 94.63680335091797, + "r_y1": 697.49756241095, + "r_x2": 94.63680335091797, + "r_y2": 685.1495623682681, + "r_x3": 90.00000033372447, + "r_y3": 685.1495623682681, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 53, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 697.871982412244, + "r_x1": 216.9503908044628, + "r_y1": 697.871982412244, + "r_x2": 216.9503908044628, + "r_y2": 684.5879523663269, + "r_x3": 108.00000040046937, + "r_y3": 684.5879523663269, + "coord_origin": "TOPLEFT" + }, + "text": "Immersive Interfaces", + "orig": "Immersive Interfaces", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 54, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 216.95508080448025, + "r_y0": 697.871982412244, + "r_x1": 472.53821175219514, + "r_y1": 697.871982412244, + "r_x2": 472.53821175219514, + "r_y2": 684.5879523663269, + "r_x3": 216.95508080448025, + "r_y3": 684.5879523663269, + "coord_origin": "TOPLEFT" + }, + "text": ": As augmented reality (AR) and virtual reality (VR) ", + "orig": ": As augmented reality (AR) and virtual reality (VR) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 55, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 711.5519724595299, + "r_x1": 525.5181319486474, + "r_y1": 711.5519724595299, + "r_x2": 525.5181319486474, + "r_y2": 698.2679424136128, + "r_x3": 108.00000040046937, + "r_y3": 698.2679424136128, + "coord_origin": "TOPLEFT" + }, + "text": "technology advance, users may be able to write and edit in 3D spaces, collaborating in ", + "orig": "technology advance, users may be able to write and edit in 3D spaces, collaborating in ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 56, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 725.4719825076454, + "r_x1": 213.6445207922045, + "r_y1": 725.4719825076454, + "r_x2": 213.6445207922045, + "r_y2": 712.1879524617283, + "r_x3": 108.00000040046937, + "r_y3": 712.1879524617283, + "coord_origin": "TOPLEFT" + }, + "text": "virtual environments. ", + "orig": "virtual environments. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Immersive Interfaces : As augmented reality (AR) and virtual reality (VR) technology advance, users may be able to write and edit in 3D spaces, collaborating in virtual environments." + }, + { + "label": "list_item", + "id": 8, + "page_no": 3, + "cluster": { + "id": 8, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 725.8679225090141, + "r": 518.906741924132, + "b": 753.3119506038763, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9774264693260193, + "cells": [ + { + "index": 57, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 738.777522553637, + "r_x1": 94.63680335091797, + "r_y1": 738.777522553637, + "r_x2": 94.63680335091797, + "r_y2": 726.4295625109554, + "r_x3": 90.00000033372447, + "r_y3": 726.4295625109554, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 58, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 739.1519725549313, + "r_x1": 223.976240830515, + "r_y1": 739.1519725549313, + "r_x2": 223.976240830515, + "r_y2": 725.8679225090141, + "r_x3": 108.00000040046937, + "r_y3": 725.8679225090141, + "coord_origin": "TOPLEFT" + }, + "text": "Hyper-Personalization", + "orig": "Hyper-Personalization", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 59, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 223.98048083053075, + "r_y0": 739.1519725549313, + "r_x1": 518.906741924132, + "r_y1": 739.1519725549313, + "r_x2": 518.906741924132, + "r_y2": 725.8679225090141, + "r_x3": 223.98048083053075, + "r_y3": 725.8679225090141, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors could offer dynamic suggestions based on ", + "orig": ": Word processors could offer dynamic suggestions based on ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 60, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 753.3119506038763, + "r_x1": 463.21872171763806, + "r_y1": 753.3119506038763, + "r_x2": 463.21872171763806, + "r_y2": 740.0279525579592, + "r_x3": 108.00000040046937, + "r_y3": 740.0279525579592, + "coord_origin": "TOPLEFT" + }, + "text": "industry-specific needs, user habits, or even regional language variations. ", + "orig": "industry-specific needs, user habits, or even regional language variations. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Hyper-Personalization : Word processors could offer dynamic suggestions based on industry-specific needs, user habits, or even regional language variations." + } + ], + "body": [ + { + "label": "list_item", + "id": 3, + "page_no": 3, + "cluster": { + "id": 3, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 72.34796025007586, + "r": 514.5589619080102, + "b": 113.23199039139433, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9798315167427063, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 85.2575702946989, + "r_x1": 94.63680335091797, + "r_y1": 85.2575702946989, + "r_x2": 94.63680335091797, + "r_y2": 72.90954025201711, + "r_x3": 90.00000033372447, + "r_y3": 72.90954025201711, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 85.63196029599305, + "r_x1": 171.98883063774312, + "r_y1": 85.63196029599305, + "r_x2": 171.98883063774312, + "r_y2": 72.34796025007586, + "r_x3": 108.00000040046937, + "r_y3": 72.34796025007586, + "coord_origin": "TOPLEFT" + }, + "text": "Accessibility", + "orig": "Accessibility", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 171.99023063774834, + "r_y0": 85.63196029599305, + "r_x1": 514.5589619080102, + "r_y1": 85.63196029599305, + "r_x2": 514.5589619080102, + "r_y2": 72.34796025007586, + "r_x3": 171.99023063774834, + "r_y3": 72.34796025007586, + "coord_origin": "TOPLEFT" + }, + "text": ": Writers no longer needed expensive publishing equipment or training ", + "orig": ": Writers no longer needed expensive publishing equipment or training ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 99.31195034327891, + "r_x1": 491.5545718227088, + "r_y1": 99.31195034327891, + "r_x2": 491.5545718227088, + "r_y2": 86.02795029736171, + "r_x3": 108.00000040046937, + "r_y3": 86.02795029736171, + "coord_origin": "TOPLEFT" + }, + "text": "in typesetting to create polished work. This accessibility paved the way for self-", + "orig": "in typesetting to create polished work. This accessibility paved the way for self-", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 113.23199039139433, + "r_x1": 379.9569714088994, + "r_y1": 113.23199039139433, + "r_x2": 379.9569714088994, + "r_y2": 99.94793034547718, + "r_x3": 108.00000040046937, + "r_y3": 99.94793034547718, + "coord_origin": "TOPLEFT" + }, + "text": "publishing, blogging, and even fan fiction communities. ", + "orig": "publishing, blogging, and even fan fiction communities. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Accessibility : Writers no longer needed expensive publishing equipment or training in typesetting to create polished work. This accessibility paved the way for selfpublishing, blogging, and even fan fiction communities." + }, + { + "label": "list_item", + "id": 7, + "page_no": 3, + "cluster": { + "id": 7, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 113.6279903927632, + "r": 521.9014319352365, + "b": 154.5119605340816, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9790792465209961, + "cells": [ + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 126.53753043738607, + "r_x1": 94.63680335091797, + "r_y1": 126.53753043738607, + "r_x2": 94.63680335091797, + "r_y2": 114.18957039470433, + "r_x3": 90.00000033372447, + "r_y3": 114.18957039470433, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 126.9119804386803, + "r_x1": 160.6799905958094, + "r_y1": 126.9119804386803, + "r_x2": 160.6799905958094, + "r_y2": 113.6279903927632, + "r_x3": 108.00000040046937, + "r_y3": 113.6279903927632, + "coord_origin": "TOPLEFT" + }, + "text": "Education", + "orig": "Education", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 160.6816305958155, + "r_y0": 126.9119804386803, + "r_x1": 509.5430318894109, + "r_y1": 126.9119804386803, + "r_x2": 509.5430318894109, + "r_y2": 113.6279903927632, + "r_x3": 160.6816305958155, + "r_y3": 113.6279903927632, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors became a cornerstone of education, teaching students ", + "orig": ": Word processors became a cornerstone of education, teaching students ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 140.83197048679563, + "r_x1": 521.9014319352365, + "r_y1": 140.83197048679563, + "r_x2": 521.9014319352365, + "r_y2": 127.54797044087866, + "r_x3": 108.00000040046937, + "r_y3": 127.54797044087866, + "coord_origin": "TOPLEFT" + }, + "text": "not only how to write essays but also how to use technology effectively. Features like ", + "orig": "not only how to write essays but also how to use technology effectively. Features like ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 154.5119605340816, + "r_x1": 459.52728170395005, + "r_y1": 154.5119605340816, + "r_x2": 459.52728170395005, + "r_y2": 141.22796048816463, + "r_x3": 108.00000040046937, + "r_y3": 141.22796048816463, + "coord_origin": "TOPLEFT" + }, + "text": "bibliography generators and integrated research tools enhanced learning. ", + "orig": "bibliography generators and integrated research tools enhanced learning. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Education : Word processors became a cornerstone of education, teaching students not only how to write essays but also how to use technology effectively. Features like bibliography generators and integrated research tools enhanced learning." + }, + { + "label": "list_item", + "id": 6, + "page_no": 3, + "cluster": { + "id": 6, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 155.14795053627995, + "r": 515.8510119128011, + "b": 196.27197067842803, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9792094230651855, + "cells": [ + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 168.0575505809029, + "r_x1": 94.63680335091797, + "r_y1": 168.0575505809029, + "r_x2": 94.63680335091797, + "r_y2": 155.70959053822128, + "r_x3": 90.00000033372447, + "r_y3": 155.70959053822128, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 168.43194058219706, + "r_x1": 195.63599072542797, + "r_y1": 168.43194058219706, + "r_x2": 195.63599072542797, + "r_y2": 155.14795053627995, + "r_x3": 108.00000040046937, + "r_y3": 155.14795053627995, + "coord_origin": "TOPLEFT" + }, + "text": "Creative Writing", + "orig": "Creative Writing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 195.63866072543786, + "r_y0": 168.43194058219706, + "r_x1": 509.872891890634, + "r_y1": 168.43194058219706, + "r_x2": 509.872891890634, + "r_y2": 155.14795053627995, + "r_x3": 195.63866072543786, + "r_y3": 155.14795053627995, + "coord_origin": "TOPLEFT" + }, + "text": ": Writers gained powerful tools to organize their ideas. Programs ", + "orig": ": Writers gained powerful tools to organize their ideas. Programs ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 182.1119406294829, + "r_x1": 515.8510119128011, + "r_y1": 182.1119406294829, + "r_x2": 515.8510119128011, + "r_y2": 168.8279405835658, + "r_x3": 108.00000040046937, + "r_y3": 168.8279405835658, + "coord_origin": "TOPLEFT" + }, + "text": "like Scrivener allowed authors to manage large projects, from novels to screenplays, ", + "orig": "like Scrivener allowed authors to manage large projects, from novels to screenplays, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 196.27197067842803, + "r_x1": 372.2227213802203, + "r_y1": 196.27197067842803, + "r_x2": 372.2227213802203, + "r_y2": 182.98797063251095, + "r_x3": 108.00000040046937, + "r_y3": 182.98797063251095, + "coord_origin": "TOPLEFT" + }, + "text": "with features like chapter outlines and character notes. ", + "orig": "with features like chapter outlines and character notes. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Creative Writing : Writers gained powerful tools to organize their ideas. Programs like Scrivener allowed authors to manage large projects, from novels to screenplays, with features like chapter outlines and character notes." + }, + { + "label": "section_header", + "id": 12, + "page_no": 3, + "cluster": { + "id": 12, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 238.58490082468575, + "r": 295.453431095556, + "b": 253.463010876113, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9634494781494141, + "cells": [ + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 253.463010876113, + "r_x1": 295.453431095556, + "r_y1": 253.463010876113, + "r_x2": 295.453431095556, + "r_y2": 238.58490082468575, + "r_x3": 72.00000026697958, + "r_y3": 238.58490082468575, + "coord_origin": "TOPLEFT" + }, + "text": "Word Processors in a Post-Digital Era ", + "orig": "Word Processors in a Post-Digital Era ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "Word Processors in a Post-Digital Era" + }, + { + "label": "text", + "id": 14, + "page_no": 3, + "cluster": { + "id": 14, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 268.1879909270109, + "r": 521.214971932691, + "b": 281.4719809729279, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9380115270614624, + "cells": [ + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 281.4719809729279, + "r_x1": 521.214971932691, + "r_y1": 281.4719809729279, + "r_x2": 521.214971932691, + "r_y2": 268.1879909270109, + "r_x3": 72.00000026697958, + "r_y3": 268.1879909270109, + "coord_origin": "TOPLEFT" + }, + "text": "As we move further into the 21st century, the role of the word processor continues to evolve: ", + "orig": "As we move further into the 21st century, the role of the word processor continues to evolve: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "As we move further into the 21st century, the role of the word processor continues to evolve:" + }, + { + "label": "list_item", + "id": 1, + "page_no": 3, + "cluster": { + "id": 1, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 295.5479710215825, + "r": 523.8382019424181, + "b": 350.3519612110165, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9815667867660522, + "cells": [ + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 308.8319710674996, + "r_x1": 99.00000036709692, + "r_y1": 308.8319710674996, + "r_x2": 99.00000036709692, + "r_y2": 295.5479710215825, + "r_x3": 90.00000033372447, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": "1.", + "orig": "1.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 308.8319710674996, + "r_x1": 216.9648108045163, + "r_y1": 308.8319710674996, + "r_x2": 216.9648108045163, + "r_y2": 295.5479710215825, + "r_x3": 108.00000040046937, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": "Artificial Intelligence", + "orig": "Artificial Intelligence", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 216.9668008045237, + "r_y0": 308.8319710674996, + "r_x1": 522.210631936383, + "r_y1": 308.8319710674996, + "r_x2": 522.210631936383, + "r_y2": 295.5479710215825, + "r_x3": 216.9668008045237, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": ": Modern word processors are leveraging AI to suggest content ", + "orig": ": Modern word processors are leveraging AI to suggest content ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 322.75195111561504, + "r_x1": 504.8831218721317, + "r_y1": 322.75195111561504, + "r_x2": 504.8831218721317, + "r_y2": 309.46795106969796, + "r_x3": 108.00000040046937, + "r_y3": 309.46795106969796, + "coord_origin": "TOPLEFT" + }, + "text": "improvements. Tools like Grammarly, ProWritingAid, and even native features in ", + "orig": "improvements. Tools like Grammarly, ProWritingAid, and even native features in ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 336.43194116290096, + "r_x1": 523.8382019424181, + "r_y1": 336.43194116290096, + "r_x2": 523.8382019424181, + "r_y2": 323.1479511169839, + "r_x3": 108.00000040046937, + "r_y3": 323.1479511169839, + "coord_origin": "TOPLEFT" + }, + "text": "Word now analyze tone, conciseness, and clarity. Some AI systems can even generate ", + "orig": "Word now analyze tone, conciseness, and clarity. Some AI systems can even generate ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 350.3519612110165, + "r_x1": 295.9101610972496, + "r_y1": 350.3519612110165, + "r_x2": 295.9101610972496, + "r_y2": 337.0679611650994, + "r_x3": 108.00000040046937, + "r_y3": 337.0679611650994, + "coord_origin": "TOPLEFT" + }, + "text": "entire paragraphs or rewrite sentences. ", + "orig": "entire paragraphs or rewrite sentences. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "1. Artificial Intelligence : Modern word processors are leveraging AI to suggest content improvements. Tools like Grammarly, ProWritingAid, and even native features in Word now analyze tone, conciseness, and clarity. Some AI systems can even generate entire paragraphs or rewrite sentences." + }, + { + "label": "list_item", + "id": 0, + "page_no": 3, + "cluster": { + "id": 0, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 350.7479812123853, + "r": 514.5262519078889, + "b": 405.55194140181914, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9819080233573914, + "cells": [ + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 364.0319512583023, + "r_x1": 99.00000036709692, + "r_y1": 364.0319512583023, + "r_x2": 99.00000036709692, + "r_y2": 350.7479812123853, + "r_x3": 90.00000033372447, + "r_y3": 350.7479812123853, + "coord_origin": "TOPLEFT" + }, + "text": "2.", + "orig": "2.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 364.0319512583023, + "r_x1": 256.327210950474, + "r_y1": 364.0319512583023, + "r_x2": 256.327210950474, + "r_y2": 350.7479812123853, + "r_x3": 108.00000040046937, + "r_y3": 350.7479812123853, + "coord_origin": "TOPLEFT" + }, + "text": "Integration with Other Tools", + "orig": "Integration with Other Tools", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 256.33008095048467, + "r_y0": 364.0319512583023, + "r_x1": 497.9115018462806, + "r_y1": 364.0319512583023, + "r_x2": 497.9115018462806, + "r_y2": 350.7479812123853, + "r_x3": 256.33008095048467, + "r_y3": 350.7479812123853, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors are no longer standalone. They ", + "orig": ": Word processors are no longer standalone. They ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 377.95196130641784, + "r_x1": 514.5262519078889, + "r_y1": 377.95196130641784, + "r_x2": 514.5262519078889, + "r_y2": 364.6679712605008, + "r_x3": 108.00000040046937, + "r_y3": 364.6679712605008, + "coord_origin": "TOPLEFT" + }, + "text": "integrate with task managers, cloud storage, and project management platforms. For ", + "orig": "integrate with task managers, cloud storage, and project management platforms. For ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 391.6319613537037, + "r_x1": 504.89987187219384, + "r_y1": 391.6319613537037, + "r_x2": 504.89987187219384, + "r_y2": 378.3479613077866, + "r_x3": 108.00000040046937, + "r_y3": 378.3479613077866, + "coord_origin": "TOPLEFT" + }, + "text": "instance, Google Docs syncs with Google Drive, while Microsoft Word integrates ", + "orig": "instance, Google Docs syncs with Google Drive, while Microsoft Word integrates ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 28, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 405.55194140181914, + "r_x1": 295.95120109740174, + "r_y1": 405.55194140181914, + "r_x2": 295.95120109740174, + "r_y2": 392.26794135590205, + "r_x3": 108.00000040046937, + "r_y3": 392.26794135590205, + "coord_origin": "TOPLEFT" + }, + "text": "seamlessly with OneDrive and Teams. ", + "orig": "seamlessly with OneDrive and Teams. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "2. Integration with Other Tools : Word processors are no longer standalone. They integrate with task managers, cloud storage, and project management platforms. For instance, Google Docs syncs with Google Drive, while Microsoft Word integrates seamlessly with OneDrive and Teams." + }, + { + "label": "list_item", + "id": 5, + "page_no": 3, + "cluster": { + "id": 5, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 405.947961403188, + "r": 502.9175418648432, + "b": 460.751981592622, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.979421854019165, + "cells": [ + { + "index": 29, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 419.2319614491051, + "r_x1": 99.00000036709692, + "r_y1": 419.2319614491051, + "r_x2": 99.00000036709692, + "r_y2": 405.947961403188, + "r_x3": 90.00000033372447, + "r_y3": 405.947961403188, + "coord_origin": "TOPLEFT" + }, + "text": "3.", + "orig": "3.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 30, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 419.2319614491051, + "r_x1": 176.33762065386867, + "r_y1": 419.2319614491051, + "r_x2": 176.33762065386867, + "r_y2": 405.947961403188, + "r_x3": 108.00000040046937, + "r_y3": 405.947961403188, + "coord_origin": "TOPLEFT" + }, + "text": "Voice Typing", + "orig": "Voice Typing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 31, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 176.33789065386966, + "r_y0": 419.2319614491051, + "r_x1": 477.5590517708127, + "r_y1": 419.2319614491051, + "r_x2": 477.5590517708127, + "r_y2": 405.947961403188, + "r_x3": 176.33789065386966, + "r_y3": 405.947961403188, + "coord_origin": "TOPLEFT" + }, + "text": ": Speech-to-text capabilities have made word processing more ", + "orig": ": Speech-to-text capabilities have made word processing more ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 32, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 433.1519714972206, + "r_x1": 438.90237162747184, + "r_y1": 433.1519714972206, + "r_x2": 438.90237162747184, + "r_y2": 419.86798145130354, + "r_x3": 108.00000040046937, + "r_y3": 419.86798145130354, + "coord_origin": "TOPLEFT" + }, + "text": "accessible, particularly for those with disabilities. Tools like Dragon ", + "orig": "accessible, particularly for those with disabilities. Tools like Dragon ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 33, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 446.8319715445065, + "r_x1": 502.9175418648432, + "r_y1": 446.8319715445065, + "r_x2": 502.9175418648432, + "r_y2": 433.5479714985894, + "r_x3": 108.00000040046937, + "r_y3": 433.5479714985894, + "coord_origin": "TOPLEFT" + }, + "text": "NaturallySpeaking and built-in options in Google Docs and Microsoft Word have ", + "orig": "NaturallySpeaking and built-in options in Google Docs and Microsoft Word have ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 34, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 460.751981592622, + "r_x1": 243.9549609045971, + "r_y1": 460.751981592622, + "r_x2": 243.9549609045971, + "r_y2": 447.4679515467048, + "r_x3": 108.00000040046937, + "r_y3": 447.4679515467048, + "coord_origin": "TOPLEFT" + }, + "text": "made dictation mainstream. ", + "orig": "made dictation mainstream. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "3. Voice Typing : Speech-to-text capabilities have made word processing more accessible, particularly for those with disabilities. Tools like Dragon NaturallySpeaking and built-in options in Google Docs and Microsoft Word have made dictation mainstream." + }, + { + "label": "list_item", + "id": 4, + "page_no": 3, + "cluster": { + "id": 4, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 461.1479515939907, + "r": 516.9196819167639, + "b": 502.0319817353093, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9796164035797119, + "cells": [ + { + "index": 35, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 474.43197163990783, + "r_x1": 99.00000036709692, + "r_y1": 474.43197163990783, + "r_x2": 99.00000036709692, + "r_y2": 461.1479515939907, + "r_x3": 90.00000033372447, + "r_y3": 461.1479515939907, + "coord_origin": "TOPLEFT" + }, + "text": "4.", + "orig": "4.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 36, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 474.43197163990783, + "r_x1": 228.31917084661885, + "r_y1": 474.43197163990783, + "r_x2": 228.31917084661885, + "r_y2": 461.1479515939907, + "r_x3": 108.00000040046937, + "r_y3": 461.1479515939907, + "coord_origin": "TOPLEFT" + }, + "text": "Multimedia Documents", + "orig": "Multimedia Documents", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 37, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 228.32227084663035, + "r_y0": 474.43197163990783, + "r_x1": 516.9196819167639, + "r_y1": 474.43197163990783, + "r_x2": 516.9196819167639, + "r_y2": 461.1479515939907, + "r_x3": 228.32227084663035, + "r_y3": 461.1479515939907, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processing has expanded beyond text. Modern tools ", + "orig": ": Word processing has expanded beyond text. Modern tools ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 38, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 488.35196168802327, + "r_x1": 512.2006218992653, + "r_y1": 488.35196168802327, + "r_x2": 512.2006218992653, + "r_y2": 475.0679616421062, + "r_x3": 108.00000040046937, + "r_y3": 475.0679616421062, + "coord_origin": "TOPLEFT" + }, + "text": "allow users to embed images, videos, charts, and interactive elements, transforming ", + "orig": "allow users to embed images, videos, charts, and interactive elements, transforming ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 39, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 502.0319817353093, + "r_x1": 361.5996113408293, + "r_y1": 502.0319817353093, + "r_x2": 361.5996113408293, + "r_y2": 488.74795168939204, + "r_x3": 108.00000040046937, + "r_y3": 488.74795168939204, + "coord_origin": "TOPLEFT" + }, + "text": "simple documents into rich multimedia experiences. ", + "orig": "simple documents into rich multimedia experiences. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "4. Multimedia Documents : Word processing has expanded beyond text. Modern tools allow users to embed images, videos, charts, and interactive elements, transforming simple documents into rich multimedia experiences." + }, + { + "label": "list_item", + "id": 2, + "page_no": 3, + "cluster": { + "id": 2, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 502.6679417375074, + "r": 510.9070718944688, + "b": 543.7919618796556, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9810317158699036, + "cells": [ + { + "index": 40, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 515.9519617834246, + "r_x1": 99.00000036709692, + "r_y1": 515.9519617834246, + "r_x2": 99.00000036709692, + "r_y2": 502.6679417375074, + "r_x3": 90.00000033372447, + "r_y3": 502.6679417375074, + "coord_origin": "TOPLEFT" + }, + "text": "5.", + "orig": "5.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 41, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 515.9519617834246, + "r_x1": 254.2937309429338, + "r_y1": 515.9519617834246, + "r_x2": 254.2937309429338, + "r_y2": 502.6679417375074, + "r_x3": 108.00000040046937, + "r_y3": 502.6679417375074, + "coord_origin": "TOPLEFT" + }, + "text": "Cross-Platform Accessibility", + "orig": "Cross-Platform Accessibility", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 42, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 254.2967809429451, + "r_y0": 515.9519617834246, + "r_x1": 510.9070718944688, + "r_y1": 515.9519617834246, + "r_x2": 510.9070718944688, + "r_y2": 502.6679417375074, + "r_x3": 254.2967809429451, + "r_y3": 502.6679417375074, + "coord_origin": "TOPLEFT" + }, + "text": ": Thanks to cloud computing, documents can now be ", + "orig": ": Thanks to cloud computing, documents can now be ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 43, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 529.6319618307105, + "r_x1": 469.6751117415787, + "r_y1": 529.6319618307105, + "r_x2": 469.6751117415787, + "r_y2": 516.3479617847934, + "r_x3": 108.00000040046937, + "r_y3": 516.3479617847934, + "coord_origin": "TOPLEFT" + }, + "text": "accessed and edited across devices. Whether you're on a desktop, tablet, or ", + "orig": "accessed and edited across devices. Whether you're on a desktop, tablet, or ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 44, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 543.7919618796556, + "r_x1": 355.9451913198625, + "r_y1": 543.7919618796556, + "r_x2": 355.9451913198625, + "r_y2": 530.5079318337384, + "r_x3": 108.00000040046937, + "r_y3": 530.5079318337384, + "coord_origin": "TOPLEFT" + }, + "text": "smartphone, you can continue working seamlessly. ", + "orig": "smartphone, you can continue working seamlessly. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "5. Cross-Platform Accessibility : Thanks to cloud computing, documents can now be accessed and edited across devices. Whether you're on a desktop, tablet, or smartphone, you can continue working seamlessly." + }, + { + "label": "section_header", + "id": 13, + "page_no": 3, + "cluster": { + "id": 13, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 586.1049220259133, + "r": 228.355610846754, + "b": 600.9829720773404, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9614330530166626, + "cells": [ + { + "index": 45, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 600.9829720773404, + "r_x1": 228.355610846754, + "r_y1": 600.9829720773404, + "r_x2": 228.355610846754, + "r_y2": 586.1049220259133, + "r_x3": 72.00000026697958, + "r_y3": 586.1049220259133, + "coord_origin": "TOPLEFT" + }, + "text": "A Glimpse Into the Future ", + "orig": "A Glimpse Into the Future ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "A Glimpse Into the Future" + }, + { + "label": "text", + "id": 10, + "page_no": 3, + "cluster": { + "id": 10, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 615.4679521274087, + "r": 515.04700190982, + "b": 642.6719622214413, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9675389528274536, + "cells": [ + { + "index": 46, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 628.7519521733258, + "r_x1": 515.04700190982, + "r_y1": 628.7519521733258, + "r_x2": 515.04700190982, + "r_y2": 615.4679521274087, + "r_x3": 72.00000026697958, + "r_y3": 615.4679521274087, + "coord_origin": "TOPLEFT" + }, + "text": "The word processor's future lies in adaptability and intelligence. Some exciting possibilities ", + "orig": "The word processor's future lies in adaptability and intelligence. Some exciting possibilities ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 47, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 642.6719622214413, + "r_x1": 113.6543004214358, + "r_y1": 642.6719622214413, + "r_x2": 113.6543004214358, + "r_y2": 629.3879421755241, + "r_x3": 72.00000026697958, + "r_y3": 629.3879421755241, + "coord_origin": "TOPLEFT" + }, + "text": "include: ", + "orig": "include: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The word processor's future lies in adaptability and intelligence. Some exciting possibilities include:" + }, + { + "label": "list_item", + "id": 11, + "page_no": 3, + "cluster": { + "id": 11, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 656.9879422709255, + "r": 518.2673319217611, + "b": 683.9519623641286, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9675005674362183, + "cells": [ + { + "index": 48, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 669.8975523155485, + "r_x1": 94.63680335091797, + "r_y1": 669.8975523155485, + "r_x2": 94.63680335091797, + "r_y2": 657.5495622728668, + "r_x3": 90.00000033372447, + "r_y3": 657.5495622728668, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 49, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 670.2719723168427, + "r_x1": 240.67430089243229, + "r_y1": 670.2719723168427, + "r_x2": 240.67430089243229, + "r_y2": 656.9879422709255, + "r_x3": 108.00000040046937, + "r_y3": 656.9879422709255, + "coord_origin": "TOPLEFT" + }, + "text": "Fully AI-Assisted Writing", + "orig": "Fully AI-Assisted Writing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 50, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 240.67390089243082, + "r_y0": 670.2719723168427, + "r_x1": 518.2673319217611, + "r_y1": 670.2719723168427, + "r_x2": 518.2673319217611, + "r_y2": 656.9879422709255, + "r_x3": 240.67390089243082, + "r_y3": 656.9879422709255, + "coord_origin": "TOPLEFT" + }, + "text": ": Imagine a word processor that understands your writing ", + "orig": ": Imagine a word processor that understands your writing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 51, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 683.9519623641286, + "r_x1": 436.57608161884576, + "r_y1": 683.9519623641286, + "r_x2": 436.57608161884576, + "r_y2": 670.6679423182114, + "r_x3": 108.00000040046937, + "r_y3": 670.6679423182114, + "coord_origin": "TOPLEFT" + }, + "text": "style, drafts emails, or creates entire essays based on minimal input. ", + "orig": "style, drafts emails, or creates entire essays based on minimal input. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Fully AI-Assisted Writing : Imagine a word processor that understands your writing style, drafts emails, or creates entire essays based on minimal input." + }, + { + "label": "list_item", + "id": 9, + "page_no": 3, + "cluster": { + "id": 9, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 684.5879523663269, + "r": 525.5181319486474, + "b": 725.4719825076454, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9722561836242676, + "cells": [ + { + "index": 52, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 697.49756241095, + "r_x1": 94.63680335091797, + "r_y1": 697.49756241095, + "r_x2": 94.63680335091797, + "r_y2": 685.1495623682681, + "r_x3": 90.00000033372447, + "r_y3": 685.1495623682681, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 53, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 697.871982412244, + "r_x1": 216.9503908044628, + "r_y1": 697.871982412244, + "r_x2": 216.9503908044628, + "r_y2": 684.5879523663269, + "r_x3": 108.00000040046937, + "r_y3": 684.5879523663269, + "coord_origin": "TOPLEFT" + }, + "text": "Immersive Interfaces", + "orig": "Immersive Interfaces", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 54, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 216.95508080448025, + "r_y0": 697.871982412244, + "r_x1": 472.53821175219514, + "r_y1": 697.871982412244, + "r_x2": 472.53821175219514, + "r_y2": 684.5879523663269, + "r_x3": 216.95508080448025, + "r_y3": 684.5879523663269, + "coord_origin": "TOPLEFT" + }, + "text": ": As augmented reality (AR) and virtual reality (VR) ", + "orig": ": As augmented reality (AR) and virtual reality (VR) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 55, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 711.5519724595299, + "r_x1": 525.5181319486474, + "r_y1": 711.5519724595299, + "r_x2": 525.5181319486474, + "r_y2": 698.2679424136128, + "r_x3": 108.00000040046937, + "r_y3": 698.2679424136128, + "coord_origin": "TOPLEFT" + }, + "text": "technology advance, users may be able to write and edit in 3D spaces, collaborating in ", + "orig": "technology advance, users may be able to write and edit in 3D spaces, collaborating in ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 56, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 725.4719825076454, + "r_x1": 213.6445207922045, + "r_y1": 725.4719825076454, + "r_x2": 213.6445207922045, + "r_y2": 712.1879524617283, + "r_x3": 108.00000040046937, + "r_y3": 712.1879524617283, + "coord_origin": "TOPLEFT" + }, + "text": "virtual environments. ", + "orig": "virtual environments. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Immersive Interfaces : As augmented reality (AR) and virtual reality (VR) technology advance, users may be able to write and edit in 3D spaces, collaborating in virtual environments." + }, + { + "label": "list_item", + "id": 8, + "page_no": 3, + "cluster": { + "id": 8, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 725.8679225090141, + "r": 518.906741924132, + "b": 753.3119506038763, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9774264693260193, + "cells": [ + { + "index": 57, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 738.777522553637, + "r_x1": 94.63680335091797, + "r_y1": 738.777522553637, + "r_x2": 94.63680335091797, + "r_y2": 726.4295625109554, + "r_x3": 90.00000033372447, + "r_y3": 726.4295625109554, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 58, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 739.1519725549313, + "r_x1": 223.976240830515, + "r_y1": 739.1519725549313, + "r_x2": 223.976240830515, + "r_y2": 725.8679225090141, + "r_x3": 108.00000040046937, + "r_y3": 725.8679225090141, + "coord_origin": "TOPLEFT" + }, + "text": "Hyper-Personalization", + "orig": "Hyper-Personalization", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 59, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 223.98048083053075, + "r_y0": 739.1519725549313, + "r_x1": 518.906741924132, + "r_y1": 739.1519725549313, + "r_x2": 518.906741924132, + "r_y2": 725.8679225090141, + "r_x3": 223.98048083053075, + "r_y3": 725.8679225090141, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors could offer dynamic suggestions based on ", + "orig": ": Word processors could offer dynamic suggestions based on ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 60, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 753.3119506038763, + "r_x1": 463.21872171763806, + "r_y1": 753.3119506038763, + "r_x2": 463.21872171763806, + "r_y2": 740.0279525579592, + "r_x3": 108.00000040046937, + "r_y3": 740.0279525579592, + "coord_origin": "TOPLEFT" + }, + "text": "industry-specific needs, user habits, or even regional language variations. ", + "orig": "industry-specific needs, user habits, or even regional language variations. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Hyper-Personalization : Word processors could offer dynamic suggestions based on industry-specific needs, user habits, or even regional language variations." + } + ], + "headers": [] + } + }, + { + "page_no": 4, + "size": { + "width": 595.2000122070312, + "height": 841.9199829101562 + }, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 113.47198039222405, + "r_x1": 499.88086185358304, + "r_y1": 113.47198039222405, + "r_x2": 499.88086185358304, + "r_y2": 100.18799034630695, + "r_x3": 72.00000026697958, + "r_y3": 100.18799034630695, + "coord_origin": "TOPLEFT" + }, + "text": "The journey of the word processor-from clunky typewriters to AI-powered platforms-", + "orig": "The journey of the word processor-from clunky typewriters to AI-powered platforms-", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 127.1519704395098, + "r_x1": 510.4989618929555, + "r_y1": 127.1519704395098, + "r_x2": 510.4989618929555, + "r_y2": 113.86798039359269, + "r_x3": 72.00000026697958, + "r_y3": 113.86798039359269, + "coord_origin": "TOPLEFT" + }, + "text": "reflects humanity\u2019s broader technological progress. What began as a tool to simply replace ", + "orig": "reflects humanity\u2019s broader technological progress. What began as a tool to simply replace ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 141.07196048762523, + "r_x1": 479.5488017781908, + "r_y1": 141.07196048762523, + "r_x2": 479.5488017781908, + "r_y2": 127.78796044170815, + "r_x3": 72.00000026697958, + "r_y3": 127.78796044170815, + "coord_origin": "TOPLEFT" + }, + "text": "handwriting has transformed into a powerful ally for creativity, communication, and ", + "orig": "handwriting has transformed into a powerful ally for creativity, communication, and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 154.7519505349111, + "r_x1": 499.5527318523664, + "r_y1": 154.7519505349111, + "r_x2": 499.5527318523664, + "r_y2": 141.467950488994, + "r_x3": 72.00000026697958, + "r_y3": 141.467950488994, + "coord_origin": "TOPLEFT" + }, + "text": "collaboration. As technology continues to advance, the word processor will undoubtedly ", + "orig": "collaboration. As technology continues to advance, the word processor will undoubtedly ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 168.91198058385635, + "r_x1": 432.1991916026161, + "r_y1": 168.91198058385635, + "r_x2": 432.1991916026161, + "r_y2": 155.62799053793924, + "r_x3": 72.00000026697958, + "r_y3": 155.62799053793924, + "coord_origin": "TOPLEFT" + }, + "text": "remain at the heart of how we express ideas and connect with one another. ", + "orig": "remain at the heart of how we express ideas and connect with one another. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "parsed_page": null, + "predictions": { + "layout": { + "clusters": [ + { + "id": 0, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 100.18799034630695, + "r": 510.4989618929555, + "b": 168.91198058385635, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9767608642578125, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 113.47198039222405, + "r_x1": 499.88086185358304, + "r_y1": 113.47198039222405, + "r_x2": 499.88086185358304, + "r_y2": 100.18799034630695, + "r_x3": 72.00000026697958, + "r_y3": 100.18799034630695, + "coord_origin": "TOPLEFT" + }, + "text": "The journey of the word processor-from clunky typewriters to AI-powered platforms-", + "orig": "The journey of the word processor-from clunky typewriters to AI-powered platforms-", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 127.1519704395098, + "r_x1": 510.4989618929555, + "r_y1": 127.1519704395098, + "r_x2": 510.4989618929555, + "r_y2": 113.86798039359269, + "r_x3": 72.00000026697958, + "r_y3": 113.86798039359269, + "coord_origin": "TOPLEFT" + }, + "text": "reflects humanity\u2019s broader technological progress. What began as a tool to simply replace ", + "orig": "reflects humanity\u2019s broader technological progress. What began as a tool to simply replace ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 141.07196048762523, + "r_x1": 479.5488017781908, + "r_y1": 141.07196048762523, + "r_x2": 479.5488017781908, + "r_y2": 127.78796044170815, + "r_x3": 72.00000026697958, + "r_y3": 127.78796044170815, + "coord_origin": "TOPLEFT" + }, + "text": "handwriting has transformed into a powerful ally for creativity, communication, and ", + "orig": "handwriting has transformed into a powerful ally for creativity, communication, and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 154.7519505349111, + "r_x1": 499.5527318523664, + "r_y1": 154.7519505349111, + "r_x2": 499.5527318523664, + "r_y2": 141.467950488994, + "r_x3": 72.00000026697958, + "r_y3": 141.467950488994, + "coord_origin": "TOPLEFT" + }, + "text": "collaboration. As technology continues to advance, the word processor will undoubtedly ", + "orig": "collaboration. As technology continues to advance, the word processor will undoubtedly ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 168.91198058385635, + "r_x1": 432.1991916026161, + "r_y1": 168.91198058385635, + "r_x2": 432.1991916026161, + "r_y2": 155.62799053793924, + "r_x3": 72.00000026697958, + "r_y3": 155.62799053793924, + "coord_origin": "TOPLEFT" + }, + "text": "remain at the heart of how we express ideas and connect with one another. ", + "orig": "remain at the heart of how we express ideas and connect with one another. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + } + ] + }, + "tablestructure": { + "table_map": {} + }, + "figures_classification": null, + "equations_prediction": null, + "vlm_response": null + }, + "assembled": { + "elements": [ + { + "label": "text", + "id": 0, + "page_no": 4, + "cluster": { + "id": 0, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 100.18799034630695, + "r": 510.4989618929555, + "b": 168.91198058385635, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9767608642578125, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 113.47198039222405, + "r_x1": 499.88086185358304, + "r_y1": 113.47198039222405, + "r_x2": 499.88086185358304, + "r_y2": 100.18799034630695, + "r_x3": 72.00000026697958, + "r_y3": 100.18799034630695, + "coord_origin": "TOPLEFT" + }, + "text": "The journey of the word processor-from clunky typewriters to AI-powered platforms-", + "orig": "The journey of the word processor-from clunky typewriters to AI-powered platforms-", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 127.1519704395098, + "r_x1": 510.4989618929555, + "r_y1": 127.1519704395098, + "r_x2": 510.4989618929555, + "r_y2": 113.86798039359269, + "r_x3": 72.00000026697958, + "r_y3": 113.86798039359269, + "coord_origin": "TOPLEFT" + }, + "text": "reflects humanity\u2019s broader technological progress. What began as a tool to simply replace ", + "orig": "reflects humanity\u2019s broader technological progress. What began as a tool to simply replace ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 141.07196048762523, + "r_x1": 479.5488017781908, + "r_y1": 141.07196048762523, + "r_x2": 479.5488017781908, + "r_y2": 127.78796044170815, + "r_x3": 72.00000026697958, + "r_y3": 127.78796044170815, + "coord_origin": "TOPLEFT" + }, + "text": "handwriting has transformed into a powerful ally for creativity, communication, and ", + "orig": "handwriting has transformed into a powerful ally for creativity, communication, and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 154.7519505349111, + "r_x1": 499.5527318523664, + "r_y1": 154.7519505349111, + "r_x2": 499.5527318523664, + "r_y2": 141.467950488994, + "r_x3": 72.00000026697958, + "r_y3": 141.467950488994, + "coord_origin": "TOPLEFT" + }, + "text": "collaboration. As technology continues to advance, the word processor will undoubtedly ", + "orig": "collaboration. As technology continues to advance, the word processor will undoubtedly ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 168.91198058385635, + "r_x1": 432.1991916026161, + "r_y1": 168.91198058385635, + "r_x2": 432.1991916026161, + "r_y2": 155.62799053793924, + "r_x3": 72.00000026697958, + "r_y3": 155.62799053793924, + "coord_origin": "TOPLEFT" + }, + "text": "remain at the heart of how we express ideas and connect with one another. ", + "orig": "remain at the heart of how we express ideas and connect with one another. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The journey of the word processor-from clunky typewriters to AI-powered platformsreflects humanity's broader technological progress. What began as a tool to simply replace handwriting has transformed into a powerful ally for creativity, communication, and collaboration. As technology continues to advance, the word processor will undoubtedly remain at the heart of how we express ideas and connect with one another." + } + ], + "body": [ + { + "label": "text", + "id": 0, + "page_no": 4, + "cluster": { + "id": 0, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 100.18799034630695, + "r": 510.4989618929555, + "b": 168.91198058385635, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9767608642578125, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 113.47198039222405, + "r_x1": 499.88086185358304, + "r_y1": 113.47198039222405, + "r_x2": 499.88086185358304, + "r_y2": 100.18799034630695, + "r_x3": 72.00000026697958, + "r_y3": 100.18799034630695, + "coord_origin": "TOPLEFT" + }, + "text": "The journey of the word processor-from clunky typewriters to AI-powered platforms-", + "orig": "The journey of the word processor-from clunky typewriters to AI-powered platforms-", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 127.1519704395098, + "r_x1": 510.4989618929555, + "r_y1": 127.1519704395098, + "r_x2": 510.4989618929555, + "r_y2": 113.86798039359269, + "r_x3": 72.00000026697958, + "r_y3": 113.86798039359269, + "coord_origin": "TOPLEFT" + }, + "text": "reflects humanity\u2019s broader technological progress. What began as a tool to simply replace ", + "orig": "reflects humanity\u2019s broader technological progress. What began as a tool to simply replace ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 141.07196048762523, + "r_x1": 479.5488017781908, + "r_y1": 141.07196048762523, + "r_x2": 479.5488017781908, + "r_y2": 127.78796044170815, + "r_x3": 72.00000026697958, + "r_y3": 127.78796044170815, + "coord_origin": "TOPLEFT" + }, + "text": "handwriting has transformed into a powerful ally for creativity, communication, and ", + "orig": "handwriting has transformed into a powerful ally for creativity, communication, and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 154.7519505349111, + "r_x1": 499.5527318523664, + "r_y1": 154.7519505349111, + "r_x2": 499.5527318523664, + "r_y2": 141.467950488994, + "r_x3": 72.00000026697958, + "r_y3": 141.467950488994, + "coord_origin": "TOPLEFT" + }, + "text": "collaboration. As technology continues to advance, the word processor will undoubtedly ", + "orig": "collaboration. As technology continues to advance, the word processor will undoubtedly ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 168.91198058385635, + "r_x1": 432.1991916026161, + "r_y1": 168.91198058385635, + "r_x2": 432.1991916026161, + "r_y2": 155.62799053793924, + "r_x3": 72.00000026697958, + "r_y3": 155.62799053793924, + "coord_origin": "TOPLEFT" + }, + "text": "remain at the heart of how we express ideas and connect with one another. ", + "orig": "remain at the heart of how we express ideas and connect with one another. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The journey of the word processor-from clunky typewriters to AI-powered platformsreflects humanity's broader technological progress. What began as a tool to simply replace handwriting has transformed into a powerful ally for creativity, communication, and collaboration. As technology continues to advance, the word processor will undoubtedly remain at the heart of how we express ideas and connect with one another." + } + ], + "headers": [] + } + } +] \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v1/picture_classification.json b/tests/data/groundtruth/docling_v1/picture_classification.json index 22fa8d2..b38681f 100644 --- a/tests/data/groundtruth/docling_v1/picture_classification.json +++ b/tests/data/groundtruth/docling_v1/picture_classification.json @@ -222,7 +222,7 @@ "prov": [ { "bbox": [ - 134.9200439453125, + 134.9199981689453, 281.78173828125, 475.6635437011719, 487.109375 @@ -244,7 +244,7 @@ "prov": [ { "bbox": [ - 218.8155517578125, + 218.81556701660156, 283.10589599609375, 391.96246337890625, 513.9846496582031 diff --git a/tests/data/groundtruth/docling_v1/picture_classification.pages.json b/tests/data/groundtruth/docling_v1/picture_classification.pages.json index 75fd63d..f6d510f 100644 --- a/tests/data/groundtruth/docling_v1/picture_classification.pages.json +++ b/tests/data/groundtruth/docling_v1/picture_classification.pages.json @@ -1390,7 +1390,7 @@ "id": 2, "label": "picture", "bbox": { - "l": 134.9200439453125, + "l": 134.9199981689453, "t": 304.890625, "r": 475.6635437011719, "b": 510.21826171875, @@ -2174,7 +2174,7 @@ "id": 2, "label": "picture", "bbox": { - "l": 134.9200439453125, + "l": 134.9199981689453, "t": 304.890625, "r": 475.6635437011719, "b": 510.21826171875, @@ -2909,7 +2909,7 @@ "id": 2, "label": "picture", "bbox": { - "l": 134.9200439453125, + "l": 134.9199981689453, "t": 304.890625, "r": 475.6635437011719, "b": 510.21826171875, @@ -3623,7 +3623,7 @@ "b": 268.20489999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9870928525924683, + "confidence": 0.987092912197113, "cells": [ { "index": 0, @@ -3938,7 +3938,7 @@ "b": 532.05774, "coord_origin": "TOPLEFT" }, - "confidence": 0.9494236707687378, + "confidence": 0.9494234323501587, "cells": [ { "index": 12, @@ -4302,7 +4302,7 @@ "id": 2, "label": "picture", "bbox": { - "l": 218.8155517578125, + "l": 218.81556701660156, "t": 278.0153503417969, "r": 391.96246337890625, "b": 508.89410400390625, @@ -4337,7 +4337,7 @@ "b": 268.20489999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9870928525924683, + "confidence": 0.987092912197113, "cells": [ { "index": 0, @@ -4658,7 +4658,7 @@ "b": 532.05774, "coord_origin": "TOPLEFT" }, - "confidence": 0.9494236707687378, + "confidence": 0.9494234323501587, "cells": [ { "index": 12, @@ -5040,7 +5040,7 @@ "id": 2, "label": "picture", "bbox": { - "l": 218.8155517578125, + "l": 218.81556701660156, "t": 278.0153503417969, "r": 391.96246337890625, "b": 508.89410400390625, @@ -5072,7 +5072,7 @@ "b": 268.20489999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9870928525924683, + "confidence": 0.987092912197113, "cells": [ { "index": 0, @@ -5393,7 +5393,7 @@ "b": 532.05774, "coord_origin": "TOPLEFT" }, - "confidence": 0.9494236707687378, + "confidence": 0.9494234323501587, "cells": [ { "index": 12, @@ -5729,7 +5729,7 @@ "id": 2, "label": "picture", "bbox": { - "l": 218.8155517578125, + "l": 218.81556701660156, "t": 278.0153503417969, "r": 391.96246337890625, "b": 508.89410400390625, diff --git a/tests/data/groundtruth/docling_v1/redp5110_sampled.json b/tests/data/groundtruth/docling_v1/redp5110_sampled.json index 36386c4..68ff30c 100644 --- a/tests/data/groundtruth/docling_v1/redp5110_sampled.json +++ b/tests/data/groundtruth/docling_v1/redp5110_sampled.json @@ -3989,7 +3989,7 @@ "prov": [ { "bbox": [ - 33.09040069580078, + 33.09052658081055, 89.5469970703125, 585.1502075195312, 498.9671630859375 @@ -4055,9 +4055,9 @@ "prov": [ { "bbox": [ - 64.1669921875, + 64.16704559326172, 103.87176513671875, - 258.7742919921875, + 258.77435302734375, 188.49365234375 ], "page": 3, @@ -4099,7 +4099,7 @@ "prov": [ { "bbox": [ - 145.4144744873047, + 145.41448974609375, 156.616943359375, 252.08840942382812, 264.7552490234375 @@ -4121,10 +4121,10 @@ "prov": [ { "bbox": [ - 32.075252532958984, - 554.0420684814453, + 32.075260162353516, + 554.0421142578125, 239.620361328125, - 721.4226226806641 + 721.4226608276367 ], "page": 5, "span": [ @@ -4168,7 +4168,7 @@ 135.97177124023438, 381.39068603515625, 545.4180908203125, - 684.5892486572266 + 684.5892562866211 ], "page": 10, "span": [ @@ -4187,10 +4187,10 @@ "prov": [ { "bbox": [ - 135.64837646484375, + 135.64834594726562, 197.24334716796875, - 301.2367248535156, - 407.8262939453125 + 301.23675537109375, + 407.8263244628906 ], "page": 11, "span": [ @@ -4209,10 +4209,10 @@ "prov": [ { "bbox": [ - 63.801902770996094, - 621.9678497314453, - 547.11474609375, - 696.6175842285156 + 63.80195617675781, + 621.9679107666016, + 547.1146850585938, + 696.6176071166992 ], "page": 14, "span": [ @@ -4231,7 +4231,7 @@ "prov": [ { "bbox": [ - 63.985130310058594, + 63.9850959777832, 145.8603515625, 530.0478515625, 364.09503173828125 @@ -4254,9 +4254,9 @@ { "bbox": [ 136.5016632080078, - 314.4587707519531, + 314.45880126953125, 545.4508666992188, - 672.7508773803711 + 672.7509078979492 ], "page": 15, "span": [ @@ -4343,10 +4343,10 @@ "prov": [ { "bbox": [ - 136.1496124267578, - 76.34844970703125, - 547.5267944335938, - 659.9669647216797 + 136.1495819091797, + 76.3485107421875, + 547.52685546875, + 659.9669189453125 ], "page": 2, "span": [ @@ -6705,9 +6705,9 @@ { "bbox": [ 135.52462768554688, - 349.949462890625, + 349.94940185546875, 545.8714599609375, - 502.2747802734375 + 502.2746887207031 ], "page": 8, "span": [ @@ -7164,7 +7164,7 @@ 64.41139221191406, 70.39208984375, 547.3950805664062, - 398.3863830566406 + 398.3863525390625 ], "page": 9, "span": [ @@ -9130,7 +9130,7 @@ "prov": [ { "bbox": [ - 63.55636978149414, + 63.55635070800781, 495.77532958984375, 548.5687255859375, 687.7661285400391 diff --git a/tests/data/groundtruth/docling_v1/redp5110_sampled.pages.json b/tests/data/groundtruth/docling_v1/redp5110_sampled.pages.json index ec7afc4..8ebe1a9 100644 --- a/tests/data/groundtruth/docling_v1/redp5110_sampled.pages.json +++ b/tests/data/groundtruth/docling_v1/redp5110_sampled.pages.json @@ -646,7 +646,7 @@ "b": 765.105, "coord_origin": "TOPLEFT" }, - "confidence": 0.7180292010307312, + "confidence": 0.7180286645889282, "cells": [ { "index": 0, @@ -711,7 +711,7 @@ "b": 774.4259033203125, "coord_origin": "TOPLEFT" }, - "confidence": 0.577752947807312, + "confidence": 0.5777521133422852, "cells": [ { "index": 2, @@ -891,13 +891,13 @@ "id": 10, "label": "picture", "bbox": { - "l": 33.09040069580078, + "l": 33.09052658081055, "t": 293.0328369140625, "r": 585.1502075195312, "b": 702.4530029296875, "coord_origin": "TOPLEFT" }, - "confidence": 0.5889471173286438, + "confidence": 0.5889488458633423, "cells": [ { "index": 6, @@ -1386,7 +1386,7 @@ "b": 698.411972, "coord_origin": "TOPLEFT" }, - "confidence": 0.762180745601654, + "confidence": 0.7621809840202332, "cells": [ { "index": 6, @@ -1626,7 +1626,7 @@ "b": 325.56058, "coord_origin": "TOPLEFT" }, - "confidence": 0.8502885103225708, + "confidence": 0.8502886891365051, "cells": [ { "index": 15, @@ -1806,7 +1806,7 @@ "b": 433.56167999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.842113196849823, + "confidence": 0.8421133756637573, "cells": [ { "index": 21, @@ -1923,7 +1923,7 @@ "b": 54.81915283203125, "coord_origin": "TOPLEFT" }, - "confidence": 0.9272358417510986, + "confidence": 0.9272356033325195, "cells": [], "children": [] } @@ -1952,7 +1952,7 @@ "b": 765.105, "coord_origin": "TOPLEFT" }, - "confidence": 0.7180292010307312, + "confidence": 0.7180286645889282, "cells": [ { "index": 0, @@ -2023,7 +2023,7 @@ "b": 774.4259033203125, "coord_origin": "TOPLEFT" }, - "confidence": 0.577752947807312, + "confidence": 0.5777521133422852, "cells": [ { "index": 2, @@ -2225,13 +2225,13 @@ "id": 10, "label": "picture", "bbox": { - "l": 33.09040069580078, + "l": 33.09052658081055, "t": 293.0328369140625, "r": 585.1502075195312, "b": 702.4530029296875, "coord_origin": "TOPLEFT" }, - "confidence": 0.5889471173286438, + "confidence": 0.5889488458633423, "cells": [ { "index": 6, @@ -2720,7 +2720,7 @@ "b": 698.411972, "coord_origin": "TOPLEFT" }, - "confidence": 0.762180745601654, + "confidence": 0.7621809840202332, "cells": [ { "index": 6, @@ -2960,7 +2960,7 @@ "b": 325.56058, "coord_origin": "TOPLEFT" }, - "confidence": 0.8502885103225708, + "confidence": 0.8502886891365051, "cells": [ { "index": 15, @@ -3140,7 +3140,7 @@ "b": 433.56167999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.842113196849823, + "confidence": 0.8421133756637573, "cells": [ { "index": 21, @@ -3267,7 +3267,7 @@ "b": 54.81915283203125, "coord_origin": "TOPLEFT" }, - "confidence": 0.9272358417510986, + "confidence": 0.9272356033325195, "cells": [], "children": [] }, @@ -3293,7 +3293,7 @@ "b": 774.4259033203125, "coord_origin": "TOPLEFT" }, - "confidence": 0.577752947807312, + "confidence": 0.5777521133422852, "cells": [ { "index": 2, @@ -3495,13 +3495,13 @@ "id": 10, "label": "picture", "bbox": { - "l": 33.09040069580078, + "l": 33.09052658081055, "t": 293.0328369140625, "r": 585.1502075195312, "b": 702.4530029296875, "coord_origin": "TOPLEFT" }, - "confidence": 0.5889471173286438, + "confidence": 0.5889488458633423, "cells": [ { "index": 6, @@ -3990,7 +3990,7 @@ "b": 698.411972, "coord_origin": "TOPLEFT" }, - "confidence": 0.762180745601654, + "confidence": 0.7621809840202332, "cells": [ { "index": 6, @@ -4230,7 +4230,7 @@ "b": 325.56058, "coord_origin": "TOPLEFT" }, - "confidence": 0.8502885103225708, + "confidence": 0.8502886891365051, "cells": [ { "index": 15, @@ -4410,7 +4410,7 @@ "b": 433.56167999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.842113196849823, + "confidence": 0.8421133756637573, "cells": [ { "index": 21, @@ -4537,7 +4537,7 @@ "b": 54.81915283203125, "coord_origin": "TOPLEFT" }, - "confidence": 0.9272358417510986, + "confidence": 0.9272356033325195, "cells": [], "children": [] }, @@ -4563,7 +4563,7 @@ "b": 765.105, "coord_origin": "TOPLEFT" }, - "confidence": 0.7180292010307312, + "confidence": 0.7180286645889282, "cells": [ { "index": 0, @@ -7845,7 +7845,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9473597407341003, + "confidence": 0.9473598599433899, "cells": [ { "index": 0, @@ -7925,7 +7925,7 @@ "b": 96.04803000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9509142637252808, + "confidence": 0.9509141445159912, "cells": [ { "index": 2, @@ -7959,10 +7959,10 @@ "id": 0, "label": "document_index", "bbox": { - "l": 136.1496124267578, - "t": 132.0330352783203, - "r": 547.5267944335938, - "b": 715.6515502929688, + "l": 136.1495819091797, + "t": 132.0330810546875, + "r": 547.52685546875, + "b": 715.6514892578125, "coord_origin": "TOPLEFT" }, "confidence": 0.9803681373596191, @@ -16108,10 +16108,10 @@ "id": 0, "label": "document_index", "bbox": { - "l": 136.1496124267578, - "t": 132.0330352783203, - "r": 547.5267944335938, - "b": 715.6515502929688, + "l": 136.1495819091797, + "t": 132.0330810546875, + "r": 547.52685546875, + "b": 715.6514892578125, "coord_origin": "TOPLEFT" }, "confidence": 0.9803681373596191, @@ -25886,7 +25886,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9473597407341003, + "confidence": 0.9473598599433899, "cells": [ { "index": 0, @@ -25978,7 +25978,7 @@ "b": 96.04803000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9509142637252808, + "confidence": 0.9509141445159912, "cells": [ { "index": 2, @@ -26018,10 +26018,10 @@ "id": 0, "label": "document_index", "bbox": { - "l": 136.1496124267578, - "t": 132.0330352783203, - "r": 547.5267944335938, - "b": 715.6515502929688, + "l": 136.1495819091797, + "t": 132.0330810546875, + "r": 547.52685546875, + "b": 715.6514892578125, "coord_origin": "TOPLEFT" }, "confidence": 0.9803681373596191, @@ -35790,7 +35790,7 @@ "b": 96.04803000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9509142637252808, + "confidence": 0.9509141445159912, "cells": [ { "index": 2, @@ -35830,10 +35830,10 @@ "id": 0, "label": "document_index", "bbox": { - "l": 136.1496124267578, - "t": 132.0330352783203, - "r": 547.5267944335938, - "b": 715.6515502929688, + "l": 136.1495819091797, + "t": 132.0330810546875, + "r": 547.52685546875, + "b": 715.6514892578125, "coord_origin": "TOPLEFT" }, "confidence": 0.9803681373596191, @@ -45602,7 +45602,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9473597407341003, + "confidence": 0.9473598599433899, "cells": [ { "index": 0, @@ -47770,7 +47770,7 @@ "b": 155.33642999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.7431555986404419, + "confidence": 0.7431555390357971, "cells": [ { "index": 1, @@ -47835,7 +47835,7 @@ "b": 145.42181000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.7798982858657837, + "confidence": 0.7798989415168762, "cells": [ { "index": 3, @@ -47875,7 +47875,7 @@ "b": 276.62054, "coord_origin": "TOPLEFT" }, - "confidence": 0.7587865591049194, + "confidence": 0.7587867975234985, "cells": [ { "index": 4, @@ -47940,7 +47940,7 @@ "b": 287.45959, "coord_origin": "TOPLEFT" }, - "confidence": 0.7965622544288635, + "confidence": 0.7965632677078247, "cells": [ { "index": 6, @@ -47980,7 +47980,7 @@ "b": 324.89566, "coord_origin": "TOPLEFT" }, - "confidence": 0.8913541436195374, + "confidence": 0.8913542628288269, "cells": [ { "index": 7, @@ -48020,7 +48020,7 @@ "b": 344.9595, "coord_origin": "TOPLEFT" }, - "confidence": 0.9560741782188416, + "confidence": 0.9560742378234863, "cells": [ { "index": 8, @@ -48085,7 +48085,7 @@ "b": 364.73001, "coord_origin": "TOPLEFT" }, - "confidence": 0.8260757923126221, + "confidence": 0.8260756134986877, "cells": [ { "index": 10, @@ -48125,7 +48125,7 @@ "b": 425.22027999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9764723181724548, + "confidence": 0.9764719605445862, "cells": [ { "index": 11, @@ -48265,7 +48265,7 @@ "b": 446.86807, "coord_origin": "TOPLEFT" }, - "confidence": 0.8492127060890198, + "confidence": 0.8492123484611511, "cells": [ { "index": 16, @@ -48305,7 +48305,7 @@ "b": 456.75223, "coord_origin": "TOPLEFT" }, - "confidence": 0.8440335392951965, + "confidence": 0.8440337181091309, "cells": [ { "index": 17, @@ -48345,7 +48345,7 @@ "b": 476.52225, "coord_origin": "TOPLEFT" }, - "confidence": 0.9239600896835327, + "confidence": 0.9239600300788879, "cells": [ { "index": 18, @@ -48410,7 +48410,7 @@ "b": 486.70496, "coord_origin": "TOPLEFT" }, - "confidence": 0.9239721298217773, + "confidence": 0.9239720106124878, "cells": [ { "index": 20, @@ -48670,7 +48670,7 @@ "b": 527.4355499999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9109312891960144, + "confidence": 0.9109312295913696, "cells": [ { "index": 28, @@ -48865,7 +48865,7 @@ "b": 557.98344, "coord_origin": "TOPLEFT" }, - "confidence": 0.9075438976287842, + "confidence": 0.9075440168380737, "cells": [ { "index": 34, @@ -48930,7 +48930,7 @@ "b": 336.81406, "coord_origin": "TOPLEFT" }, - "confidence": 0.9098502993583679, + "confidence": 0.9098502397537231, "cells": [ { "index": 36, @@ -48970,7 +48970,7 @@ "b": 358.68942, "coord_origin": "TOPLEFT" }, - "confidence": 0.957169771194458, + "confidence": 0.9571698904037476, "cells": [ { "index": 37, @@ -49815,7 +49815,7 @@ "b": 434.66763, "coord_origin": "TOPLEFT" }, - "confidence": 0.9440370798110962, + "confidence": 0.9440371990203857, "cells": [ { "index": 69, @@ -50130,7 +50130,7 @@ "b": 285.621337890625, "coord_origin": "TOPLEFT" }, - "confidence": 0.7491768598556519, + "confidence": 0.7491769194602966, "cells": [], "children": [] }, @@ -50138,13 +50138,13 @@ "id": 15, "label": "picture", "bbox": { - "l": 64.1669921875, + "l": 64.16704559326172, "t": 603.50634765625, - "r": 258.7742919921875, + "r": 258.77435302734375, "b": 688.1282348632812, "coord_origin": "TOPLEFT" }, - "confidence": 0.8925829529762268, + "confidence": 0.8925826549530029, "cells": [], "children": [] } @@ -50219,7 +50219,7 @@ "b": 155.33642999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.7431555986404419, + "confidence": 0.7431555390357971, "cells": [ { "index": 1, @@ -50290,7 +50290,7 @@ "b": 145.42181000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.7798982858657837, + "confidence": 0.7798989415168762, "cells": [ { "index": 3, @@ -50336,7 +50336,7 @@ "b": 276.62054, "coord_origin": "TOPLEFT" }, - "confidence": 0.7587865591049194, + "confidence": 0.7587867975234985, "cells": [ { "index": 4, @@ -50407,7 +50407,7 @@ "b": 287.45959, "coord_origin": "TOPLEFT" }, - "confidence": 0.7965622544288635, + "confidence": 0.7965632677078247, "cells": [ { "index": 6, @@ -50453,7 +50453,7 @@ "b": 324.89566, "coord_origin": "TOPLEFT" }, - "confidence": 0.8913541436195374, + "confidence": 0.8913542628288269, "cells": [ { "index": 7, @@ -50499,7 +50499,7 @@ "b": 344.9595, "coord_origin": "TOPLEFT" }, - "confidence": 0.9560741782188416, + "confidence": 0.9560742378234863, "cells": [ { "index": 8, @@ -50570,7 +50570,7 @@ "b": 364.73001, "coord_origin": "TOPLEFT" }, - "confidence": 0.8260757923126221, + "confidence": 0.8260756134986877, "cells": [ { "index": 10, @@ -50616,7 +50616,7 @@ "b": 425.22027999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9764723181724548, + "confidence": 0.9764719605445862, "cells": [ { "index": 11, @@ -50762,7 +50762,7 @@ "b": 446.86807, "coord_origin": "TOPLEFT" }, - "confidence": 0.8492127060890198, + "confidence": 0.8492123484611511, "cells": [ { "index": 16, @@ -50808,7 +50808,7 @@ "b": 456.75223, "coord_origin": "TOPLEFT" }, - "confidence": 0.8440335392951965, + "confidence": 0.8440337181091309, "cells": [ { "index": 17, @@ -50854,7 +50854,7 @@ "b": 476.52225, "coord_origin": "TOPLEFT" }, - "confidence": 0.9239600896835327, + "confidence": 0.9239600300788879, "cells": [ { "index": 18, @@ -50925,7 +50925,7 @@ "b": 486.70496, "coord_origin": "TOPLEFT" }, - "confidence": 0.9239721298217773, + "confidence": 0.9239720106124878, "cells": [ { "index": 20, @@ -51209,7 +51209,7 @@ "b": 527.4355499999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9109312891960144, + "confidence": 0.9109312295913696, "cells": [ { "index": 28, @@ -51422,7 +51422,7 @@ "b": 557.98344, "coord_origin": "TOPLEFT" }, - "confidence": 0.9075438976287842, + "confidence": 0.9075440168380737, "cells": [ { "index": 34, @@ -51493,7 +51493,7 @@ "b": 336.81406, "coord_origin": "TOPLEFT" }, - "confidence": 0.9098502993583679, + "confidence": 0.9098502397537231, "cells": [ { "index": 36, @@ -51539,7 +51539,7 @@ "b": 358.68942, "coord_origin": "TOPLEFT" }, - "confidence": 0.957169771194458, + "confidence": 0.9571698904037476, "cells": [ { "index": 37, @@ -52402,7 +52402,7 @@ "b": 434.66763, "coord_origin": "TOPLEFT" }, - "confidence": 0.9440370798110962, + "confidence": 0.9440371990203857, "cells": [ { "index": 69, @@ -52723,7 +52723,7 @@ "b": 285.621337890625, "coord_origin": "TOPLEFT" }, - "confidence": 0.7491768598556519, + "confidence": 0.7491769194602966, "cells": [], "children": [] }, @@ -52741,13 +52741,13 @@ "id": 15, "label": "picture", "bbox": { - "l": 64.1669921875, + "l": 64.16704559326172, "t": 603.50634765625, - "r": 258.7742919921875, + "r": 258.77435302734375, "b": 688.1282348632812, "coord_origin": "TOPLEFT" }, - "confidence": 0.8925829529762268, + "confidence": 0.8925826549530029, "cells": [], "children": [] }, @@ -52819,7 +52819,7 @@ "b": 155.33642999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.7431555986404419, + "confidence": 0.7431555390357971, "cells": [ { "index": 1, @@ -52890,7 +52890,7 @@ "b": 145.42181000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.7798982858657837, + "confidence": 0.7798989415168762, "cells": [ { "index": 3, @@ -52936,7 +52936,7 @@ "b": 276.62054, "coord_origin": "TOPLEFT" }, - "confidence": 0.7587865591049194, + "confidence": 0.7587867975234985, "cells": [ { "index": 4, @@ -53007,7 +53007,7 @@ "b": 287.45959, "coord_origin": "TOPLEFT" }, - "confidence": 0.7965622544288635, + "confidence": 0.7965632677078247, "cells": [ { "index": 6, @@ -53053,7 +53053,7 @@ "b": 324.89566, "coord_origin": "TOPLEFT" }, - "confidence": 0.8913541436195374, + "confidence": 0.8913542628288269, "cells": [ { "index": 7, @@ -53099,7 +53099,7 @@ "b": 344.9595, "coord_origin": "TOPLEFT" }, - "confidence": 0.9560741782188416, + "confidence": 0.9560742378234863, "cells": [ { "index": 8, @@ -53170,7 +53170,7 @@ "b": 364.73001, "coord_origin": "TOPLEFT" }, - "confidence": 0.8260757923126221, + "confidence": 0.8260756134986877, "cells": [ { "index": 10, @@ -53216,7 +53216,7 @@ "b": 425.22027999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9764723181724548, + "confidence": 0.9764719605445862, "cells": [ { "index": 11, @@ -53362,7 +53362,7 @@ "b": 446.86807, "coord_origin": "TOPLEFT" }, - "confidence": 0.8492127060890198, + "confidence": 0.8492123484611511, "cells": [ { "index": 16, @@ -53408,7 +53408,7 @@ "b": 456.75223, "coord_origin": "TOPLEFT" }, - "confidence": 0.8440335392951965, + "confidence": 0.8440337181091309, "cells": [ { "index": 17, @@ -53454,7 +53454,7 @@ "b": 476.52225, "coord_origin": "TOPLEFT" }, - "confidence": 0.9239600896835327, + "confidence": 0.9239600300788879, "cells": [ { "index": 18, @@ -53525,7 +53525,7 @@ "b": 486.70496, "coord_origin": "TOPLEFT" }, - "confidence": 0.9239721298217773, + "confidence": 0.9239720106124878, "cells": [ { "index": 20, @@ -53809,7 +53809,7 @@ "b": 527.4355499999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9109312891960144, + "confidence": 0.9109312295913696, "cells": [ { "index": 28, @@ -54022,7 +54022,7 @@ "b": 557.98344, "coord_origin": "TOPLEFT" }, - "confidence": 0.9075438976287842, + "confidence": 0.9075440168380737, "cells": [ { "index": 34, @@ -54093,7 +54093,7 @@ "b": 336.81406, "coord_origin": "TOPLEFT" }, - "confidence": 0.9098502993583679, + "confidence": 0.9098502397537231, "cells": [ { "index": 36, @@ -54139,7 +54139,7 @@ "b": 358.68942, "coord_origin": "TOPLEFT" }, - "confidence": 0.957169771194458, + "confidence": 0.9571698904037476, "cells": [ { "index": 37, @@ -55002,7 +55002,7 @@ "b": 434.66763, "coord_origin": "TOPLEFT" }, - "confidence": 0.9440370798110962, + "confidence": 0.9440371990203857, "cells": [ { "index": 69, @@ -55323,7 +55323,7 @@ "b": 285.621337890625, "coord_origin": "TOPLEFT" }, - "confidence": 0.7491768598556519, + "confidence": 0.7491769194602966, "cells": [], "children": [] }, @@ -55341,13 +55341,13 @@ "id": 15, "label": "picture", "bbox": { - "l": 64.1669921875, + "l": 64.16704559326172, "t": 603.50634765625, - "r": 258.7742919921875, + "r": 258.77435302734375, "b": 688.1282348632812, "coord_origin": "TOPLEFT" }, - "confidence": 0.8925829529762268, + "confidence": 0.8925826549530029, "cells": [], "children": [] }, @@ -56588,7 +56588,7 @@ "b": 96.04803000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9174711108207703, + "confidence": 0.9174708127975464, "cells": [ { "index": 2, @@ -56908,7 +56908,7 @@ "b": 303.0636, "coord_origin": "TOPLEFT" }, - "confidence": 0.9255507588386536, + "confidence": 0.9255504608154297, "cells": [ { "index": 13, @@ -56948,7 +56948,7 @@ "b": 341.84152, "coord_origin": "TOPLEFT" }, - "confidence": 0.9713318347930908, + "confidence": 0.9713318943977356, "cells": [ { "index": 14, @@ -57776,13 +57776,13 @@ "id": 1, "label": "picture", "bbox": { - "l": 145.4144744873047, + "l": 145.41448974609375, "t": 527.2447509765625, "r": 252.08840942382812, "b": 635.383056640625, "coord_origin": "TOPLEFT" }, - "confidence": 0.9871657490730286, + "confidence": 0.987165629863739, "cells": [], "children": [] } @@ -57903,7 +57903,7 @@ "b": 96.04803000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9174711108207703, + "confidence": 0.9174708127975464, "cells": [ { "index": 2, @@ -58241,7 +58241,7 @@ "b": 303.0636, "coord_origin": "TOPLEFT" }, - "confidence": 0.9255507588386536, + "confidence": 0.9255504608154297, "cells": [ { "index": 13, @@ -58287,7 +58287,7 @@ "b": 341.84152, "coord_origin": "TOPLEFT" }, - "confidence": 0.9713318347930908, + "confidence": 0.9713318943977356, "cells": [ { "index": 14, @@ -59143,13 +59143,13 @@ "id": 1, "label": "picture", "bbox": { - "l": 145.4144744873047, + "l": 145.41448974609375, "t": 527.2447509765625, "r": 252.08840942382812, "b": 635.383056640625, "coord_origin": "TOPLEFT" }, - "confidence": 0.9871657490730286, + "confidence": 0.987165629863739, "cells": [], "children": [] }, @@ -59175,7 +59175,7 @@ "b": 96.04803000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9174711108207703, + "confidence": 0.9174708127975464, "cells": [ { "index": 2, @@ -59513,7 +59513,7 @@ "b": 303.0636, "coord_origin": "TOPLEFT" }, - "confidence": 0.9255507588386536, + "confidence": 0.9255504608154297, "cells": [ { "index": 13, @@ -59559,7 +59559,7 @@ "b": 341.84152, "coord_origin": "TOPLEFT" }, - "confidence": 0.9713318347930908, + "confidence": 0.9713318943977356, "cells": [ { "index": 14, @@ -60415,13 +60415,13 @@ "id": 1, "label": "picture", "bbox": { - "l": 145.4144744873047, + "l": 145.41448974609375, "t": 527.2447509765625, "r": 252.08840942382812, "b": 635.383056640625, "coord_origin": "TOPLEFT" }, - "confidence": 0.9871657490730286, + "confidence": 0.987165629863739, "cells": [], "children": [] }, @@ -61250,7 +61250,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9364771246910095, + "confidence": 0.9364773035049438, "cells": [ { "index": 0, @@ -61290,7 +61290,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.8511815071105957, + "confidence": 0.8511810302734375, "cells": [ { "index": 1, @@ -61370,7 +61370,7 @@ "b": 309.8782, "coord_origin": "TOPLEFT" }, - "confidence": 0.9371159076690674, + "confidence": 0.9371162056922913, "cells": [ { "index": 3, @@ -61625,7 +61625,7 @@ "b": 487.94016, "coord_origin": "TOPLEFT" }, - "confidence": 0.9865838885307312, + "confidence": 0.9865840077400208, "cells": [ { "index": 12, @@ -61870,7 +61870,7 @@ "b": 550.93916, "coord_origin": "TOPLEFT" }, - "confidence": 0.9334256649017334, + "confidence": 0.933425784111023, "cells": [ { "index": 20, @@ -62000,7 +62000,7 @@ "b": 130.13171, "coord_origin": "TOPLEFT" }, - "confidence": 0.7085074782371521, + "confidence": 0.7085080742835999, "cells": [ { "index": 24, @@ -62040,7 +62040,7 @@ "b": 724.780441, "coord_origin": "TOPLEFT" }, - "confidence": 0.5138102173805237, + "confidence": 0.5138110518455505, "cells": [ { "index": 25, @@ -62080,7 +62080,7 @@ "b": 734.97176, "coord_origin": "TOPLEFT" }, - "confidence": 0.7965563535690308, + "confidence": 0.7965556979179382, "cells": [ { "index": 26, @@ -62139,13 +62139,13 @@ "id": 11, "label": "picture", "bbox": { - "l": 32.075252532958984, - "t": 70.57737731933594, + "l": 32.075260162353516, + "t": 70.57733917236328, "r": 239.620361328125, - "b": 237.9579315185547, + "b": 237.9578857421875, "coord_origin": "TOPLEFT" }, - "confidence": 0.7509335279464722, + "confidence": 0.750933051109314, "cells": [], "children": [] } @@ -62174,7 +62174,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9364771246910095, + "confidence": 0.9364773035049438, "cells": [ { "index": 0, @@ -62220,7 +62220,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.8511815071105957, + "confidence": 0.8511810302734375, "cells": [ { "index": 1, @@ -62312,7 +62312,7 @@ "b": 309.8782, "coord_origin": "TOPLEFT" }, - "confidence": 0.9371159076690674, + "confidence": 0.9371162056922913, "cells": [ { "index": 3, @@ -62579,7 +62579,7 @@ "b": 487.94016, "coord_origin": "TOPLEFT" }, - "confidence": 0.9865838885307312, + "confidence": 0.9865840077400208, "cells": [ { "index": 12, @@ -62842,7 +62842,7 @@ "b": 550.93916, "coord_origin": "TOPLEFT" }, - "confidence": 0.9334256649017334, + "confidence": 0.933425784111023, "cells": [ { "index": 20, @@ -62984,7 +62984,7 @@ "b": 130.13171, "coord_origin": "TOPLEFT" }, - "confidence": 0.7085074782371521, + "confidence": 0.7085080742835999, "cells": [ { "index": 24, @@ -63030,7 +63030,7 @@ "b": 724.780441, "coord_origin": "TOPLEFT" }, - "confidence": 0.5138102173805237, + "confidence": 0.5138110518455505, "cells": [ { "index": 25, @@ -63076,7 +63076,7 @@ "b": 734.97176, "coord_origin": "TOPLEFT" }, - "confidence": 0.7965563535690308, + "confidence": 0.7965556979179382, "cells": [ { "index": 26, @@ -63141,13 +63141,13 @@ "id": 11, "label": "picture", "bbox": { - "l": 32.075252532958984, - "t": 70.57737731933594, + "l": 32.075260162353516, + "t": 70.57733917236328, "r": 239.620361328125, - "b": 237.9579315185547, + "b": 237.9578857421875, "coord_origin": "TOPLEFT" }, - "confidence": 0.7509335279464722, + "confidence": 0.750933051109314, "cells": [], "children": [] }, @@ -63219,7 +63219,7 @@ "b": 309.8782, "coord_origin": "TOPLEFT" }, - "confidence": 0.9371159076690674, + "confidence": 0.9371162056922913, "cells": [ { "index": 3, @@ -63486,7 +63486,7 @@ "b": 487.94016, "coord_origin": "TOPLEFT" }, - "confidence": 0.9865838885307312, + "confidence": 0.9865840077400208, "cells": [ { "index": 12, @@ -63749,7 +63749,7 @@ "b": 550.93916, "coord_origin": "TOPLEFT" }, - "confidence": 0.9334256649017334, + "confidence": 0.933425784111023, "cells": [ { "index": 20, @@ -63891,7 +63891,7 @@ "b": 130.13171, "coord_origin": "TOPLEFT" }, - "confidence": 0.7085074782371521, + "confidence": 0.7085080742835999, "cells": [ { "index": 24, @@ -63937,7 +63937,7 @@ "b": 724.780441, "coord_origin": "TOPLEFT" }, - "confidence": 0.5138102173805237, + "confidence": 0.5138110518455505, "cells": [ { "index": 25, @@ -63983,7 +63983,7 @@ "b": 734.97176, "coord_origin": "TOPLEFT" }, - "confidence": 0.7965563535690308, + "confidence": 0.7965556979179382, "cells": [ { "index": 26, @@ -64048,13 +64048,13 @@ "id": 11, "label": "picture", "bbox": { - "l": 32.075252532958984, - "t": 70.57737731933594, + "l": 32.075260162353516, + "t": 70.57733917236328, "r": 239.620361328125, - "b": 237.9579315185547, + "b": 237.9578857421875, "coord_origin": "TOPLEFT" }, - "confidence": 0.7509335279464722, + "confidence": 0.750933051109314, "cells": [], "children": [] }, @@ -64080,7 +64080,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9364771246910095, + "confidence": 0.9364773035049438, "cells": [ { "index": 0, @@ -64126,7 +64126,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.8511815071105957, + "confidence": 0.8511810302734375, "cells": [ { "index": 1, @@ -65458,7 +65458,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.8889444470405579, + "confidence": 0.8889446258544922, "cells": [ { "index": 0, @@ -65498,7 +65498,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9476422667503357, + "confidence": 0.9476423859596252, "cells": [ { "index": 1, @@ -65538,7 +65538,7 @@ "b": 89.1037, "coord_origin": "TOPLEFT" }, - "confidence": 0.9651358723640442, + "confidence": 0.9651358127593994, "cells": [ { "index": 2, @@ -65858,7 +65858,7 @@ "b": 269.83978, "coord_origin": "TOPLEFT" }, - "confidence": 0.8077318072319031, + "confidence": 0.8077319264411926, "cells": [ { "index": 13, @@ -66048,7 +66048,7 @@ "b": 286.81958, "coord_origin": "TOPLEFT" }, - "confidence": 0.7967224717140198, + "confidence": 0.7967225909233093, "cells": [ { "index": 20, @@ -66088,7 +66088,7 @@ "b": 375.8606, "coord_origin": "TOPLEFT" }, - "confidence": 0.9837487936019897, + "confidence": 0.9837489128112793, "cells": [ { "index": 21, @@ -66353,7 +66353,7 @@ "b": 409.82022, "coord_origin": "TOPLEFT" }, - "confidence": 0.9621998071670532, + "confidence": 0.9621996879577637, "cells": [ { "index": 31, @@ -66418,7 +66418,7 @@ "b": 453.06372, "coord_origin": "TOPLEFT" }, - "confidence": 0.9650285243988037, + "confidence": 0.9650284051895142, "cells": [ { "index": 33, @@ -66598,7 +66598,7 @@ "b": 585.85994, "coord_origin": "TOPLEFT" }, - "confidence": 0.9848474860191345, + "confidence": 0.9848476052284241, "cells": [ { "index": 39, @@ -66943,7 +66943,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.8889444470405579, + "confidence": 0.8889446258544922, "cells": [ { "index": 0, @@ -66989,7 +66989,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9476422667503357, + "confidence": 0.9476423859596252, "cells": [ { "index": 1, @@ -67035,7 +67035,7 @@ "b": 89.1037, "coord_origin": "TOPLEFT" }, - "confidence": 0.9651358723640442, + "confidence": 0.9651358127593994, "cells": [ { "index": 2, @@ -67373,7 +67373,7 @@ "b": 269.83978, "coord_origin": "TOPLEFT" }, - "confidence": 0.8077318072319031, + "confidence": 0.8077319264411926, "cells": [ { "index": 13, @@ -67569,7 +67569,7 @@ "b": 286.81958, "coord_origin": "TOPLEFT" }, - "confidence": 0.7967224717140198, + "confidence": 0.7967225909233093, "cells": [ { "index": 20, @@ -67615,7 +67615,7 @@ "b": 375.8606, "coord_origin": "TOPLEFT" }, - "confidence": 0.9837487936019897, + "confidence": 0.9837489128112793, "cells": [ { "index": 21, @@ -67886,7 +67886,7 @@ "b": 409.82022, "coord_origin": "TOPLEFT" }, - "confidence": 0.9621998071670532, + "confidence": 0.9621996879577637, "cells": [ { "index": 31, @@ -67957,7 +67957,7 @@ "b": 453.06372, "coord_origin": "TOPLEFT" }, - "confidence": 0.9650285243988037, + "confidence": 0.9650284051895142, "cells": [ { "index": 33, @@ -68149,7 +68149,7 @@ "b": 585.85994, "coord_origin": "TOPLEFT" }, - "confidence": 0.9848474860191345, + "confidence": 0.9848476052284241, "cells": [ { "index": 39, @@ -68493,7 +68493,7 @@ "b": 89.1037, "coord_origin": "TOPLEFT" }, - "confidence": 0.9651358723640442, + "confidence": 0.9651358127593994, "cells": [ { "index": 2, @@ -68831,7 +68831,7 @@ "b": 269.83978, "coord_origin": "TOPLEFT" }, - "confidence": 0.8077318072319031, + "confidence": 0.8077319264411926, "cells": [ { "index": 13, @@ -69027,7 +69027,7 @@ "b": 286.81958, "coord_origin": "TOPLEFT" }, - "confidence": 0.7967224717140198, + "confidence": 0.7967225909233093, "cells": [ { "index": 20, @@ -69073,7 +69073,7 @@ "b": 375.8606, "coord_origin": "TOPLEFT" }, - "confidence": 0.9837487936019897, + "confidence": 0.9837489128112793, "cells": [ { "index": 21, @@ -69344,7 +69344,7 @@ "b": 409.82022, "coord_origin": "TOPLEFT" }, - "confidence": 0.9621998071670532, + "confidence": 0.9621996879577637, "cells": [ { "index": 31, @@ -69415,7 +69415,7 @@ "b": 453.06372, "coord_origin": "TOPLEFT" }, - "confidence": 0.9650285243988037, + "confidence": 0.9650284051895142, "cells": [ { "index": 33, @@ -69607,7 +69607,7 @@ "b": 585.85994, "coord_origin": "TOPLEFT" }, - "confidence": 0.9848474860191345, + "confidence": 0.9848476052284241, "cells": [ { "index": 39, @@ -69951,7 +69951,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.8889444470405579, + "confidence": 0.8889446258544922, "cells": [ { "index": 0, @@ -69997,7 +69997,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9476422667503357, + "confidence": 0.9476423859596252, "cells": [ { "index": 1, @@ -70704,7 +70704,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.8578535318374634, + "confidence": 0.8578536510467529, "cells": [ { "index": 0, @@ -70974,7 +70974,7 @@ "b": 185.32275000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9626136422157288, + "confidence": 0.9626137614250183, "cells": [ { "index": 9, @@ -71039,7 +71039,7 @@ "b": 256.70099000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9858147501945496, + "confidence": 0.9858148097991943, "cells": [ { "index": 11, @@ -71294,7 +71294,7 @@ "b": 360.73923, "coord_origin": "TOPLEFT" }, - "confidence": 0.975760281085968, + "confidence": 0.9757603406906128, "cells": [ { "index": 20, @@ -71585,7 +71585,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.8578535318374634, + "confidence": 0.8578536510467529, "cells": [ { "index": 0, @@ -71873,7 +71873,7 @@ "b": 185.32275000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9626136422157288, + "confidence": 0.9626137614250183, "cells": [ { "index": 9, @@ -71944,7 +71944,7 @@ "b": 256.70099000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9858147501945496, + "confidence": 0.9858148097991943, "cells": [ { "index": 11, @@ -72211,7 +72211,7 @@ "b": 360.73923, "coord_origin": "TOPLEFT" }, - "confidence": 0.975760281085968, + "confidence": 0.9757603406906128, "cells": [ { "index": 20, @@ -72707,7 +72707,7 @@ "b": 185.32275000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9626136422157288, + "confidence": 0.9626137614250183, "cells": [ { "index": 9, @@ -72778,7 +72778,7 @@ "b": 256.70099000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9858147501945496, + "confidence": 0.9858148097991943, "cells": [ { "index": 11, @@ -73045,7 +73045,7 @@ "b": 360.73923, "coord_origin": "TOPLEFT" }, - "confidence": 0.975760281085968, + "confidence": 0.9757603406906128, "cells": [ { "index": 20, @@ -73345,7 +73345,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.8578535318374634, + "confidence": 0.8578536510467529, "cells": [ { "index": 0, @@ -75248,7 +75248,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9166396856307983, + "confidence": 0.9166395664215088, "cells": [ { "index": 0, @@ -75393,7 +75393,7 @@ "b": 106.70172000000014, "coord_origin": "TOPLEFT" }, - "confidence": 0.9551582932472229, + "confidence": 0.9551581740379333, "cells": [ { "index": 4, @@ -75548,7 +75548,7 @@ "b": 135.74108999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9418092370033264, + "confidence": 0.9418092966079712, "cells": [ { "index": 9, @@ -75933,7 +75933,7 @@ "b": 231.34271, "coord_origin": "TOPLEFT" }, - "confidence": 0.9636710286140442, + "confidence": 0.9636709094047546, "cells": [ { "index": 22, @@ -76063,7 +76063,7 @@ "b": 287.88300000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9196999669075012, + "confidence": 0.9197001457214355, "cells": [ { "index": 26, @@ -76168,7 +76168,7 @@ "b": 494.883, "coord_origin": "TOPLEFT" }, - "confidence": 0.8159958720207214, + "confidence": 0.8159964680671692, "cells": [ { "index": 29, @@ -76208,7 +76208,7 @@ "b": 584.43163, "coord_origin": "TOPLEFT" }, - "confidence": 0.5808265805244446, + "confidence": 0.5808269381523132, "cells": [ { "index": 30, @@ -76497,7 +76497,7 @@ "b": 512.4328, "coord_origin": "TOPLEFT" }, - "confidence": 0.5631121397018433, + "confidence": 0.5631120204925537, "cells": [ { "index": 30, @@ -76657,7 +76657,7 @@ "b": 548.43222, "coord_origin": "TOPLEFT" }, - "confidence": 0.5346826314926147, + "confidence": 0.5346829891204834, "cells": [ { "index": 34, @@ -76697,7 +76697,7 @@ "b": 560.43202, "coord_origin": "TOPLEFT" }, - "confidence": 0.581838846206665, + "confidence": 0.5818390846252441, "cells": [ { "index": 35, @@ -76737,7 +76737,7 @@ "b": 560.43202, "coord_origin": "TOPLEFT" }, - "confidence": 0.5035740733146667, + "confidence": 0.503573477268219, "cells": [ { "index": 36, @@ -76777,7 +76777,7 @@ "b": 572.43182, "coord_origin": "TOPLEFT" }, - "confidence": 0.534027099609375, + "confidence": 0.5340273380279541, "cells": [ { "index": 37, @@ -76817,7 +76817,7 @@ "b": 572.43182, "coord_origin": "TOPLEFT" }, - "confidence": 0.5171723365783691, + "confidence": 0.5171729922294617, "cells": [ { "index": 38, @@ -76857,7 +76857,7 @@ "b": 584.43163, "coord_origin": "TOPLEFT" }, - "confidence": 0.5373470187187195, + "confidence": 0.5373476147651672, "cells": [ { "index": 39, @@ -76897,7 +76897,7 @@ "b": 584.43163, "coord_origin": "TOPLEFT" }, - "confidence": 0.5167025327682495, + "confidence": 0.51670241355896, "cells": [ { "index": 40, @@ -77004,7 +77004,7 @@ "b": 709.760956, "coord_origin": "TOPLEFT" }, - "confidence": 0.9853070974349976, + "confidence": 0.985306978225708, "cells": [ { "index": 43, @@ -77139,9 +77139,9 @@ "label": "table", "bbox": { "l": 135.52462768554688, - "t": 289.7252197265625, + "t": 289.7253112792969, "r": 545.8714599609375, - "b": 442.050537109375, + "b": 442.05059814453125, "coord_origin": "TOPLEFT" }, "confidence": 0.9851690530776978, @@ -78723,9 +78723,9 @@ "label": "table", "bbox": { "l": 135.52462768554688, - "t": 289.7252197265625, + "t": 289.7253112792969, "r": 545.8714599609375, - "b": 442.050537109375, + "b": 442.05059814453125, "coord_origin": "TOPLEFT" }, "confidence": 0.9851690530776978, @@ -80629,7 +80629,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9166396856307983, + "confidence": 0.9166395664215088, "cells": [ { "index": 0, @@ -80792,7 +80792,7 @@ "b": 106.70172000000014, "coord_origin": "TOPLEFT" }, - "confidence": 0.9551582932472229, + "confidence": 0.9551581740379333, "cells": [ { "index": 4, @@ -80959,7 +80959,7 @@ "b": 135.74108999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9418092370033264, + "confidence": 0.9418092966079712, "cells": [ { "index": 9, @@ -81368,7 +81368,7 @@ "b": 231.34271, "coord_origin": "TOPLEFT" }, - "confidence": 0.9636710286140442, + "confidence": 0.9636709094047546, "cells": [ { "index": 22, @@ -81510,7 +81510,7 @@ "b": 287.88300000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9196999669075012, + "confidence": 0.9197001457214355, "cells": [ { "index": 26, @@ -81627,7 +81627,7 @@ "b": 494.883, "coord_origin": "TOPLEFT" }, - "confidence": 0.8159958720207214, + "confidence": 0.8159964680671692, "cells": [ { "index": 29, @@ -81673,7 +81673,7 @@ "b": 584.43163, "coord_origin": "TOPLEFT" }, - "confidence": 0.5808265805244446, + "confidence": 0.5808269381523132, "cells": [ { "index": 30, @@ -81962,7 +81962,7 @@ "b": 512.4328, "coord_origin": "TOPLEFT" }, - "confidence": 0.5631121397018433, + "confidence": 0.5631120204925537, "cells": [ { "index": 30, @@ -82122,7 +82122,7 @@ "b": 548.43222, "coord_origin": "TOPLEFT" }, - "confidence": 0.5346826314926147, + "confidence": 0.5346829891204834, "cells": [ { "index": 34, @@ -82162,7 +82162,7 @@ "b": 560.43202, "coord_origin": "TOPLEFT" }, - "confidence": 0.581838846206665, + "confidence": 0.5818390846252441, "cells": [ { "index": 35, @@ -82202,7 +82202,7 @@ "b": 560.43202, "coord_origin": "TOPLEFT" }, - "confidence": 0.5035740733146667, + "confidence": 0.503573477268219, "cells": [ { "index": 36, @@ -82242,7 +82242,7 @@ "b": 572.43182, "coord_origin": "TOPLEFT" }, - "confidence": 0.534027099609375, + "confidence": 0.5340273380279541, "cells": [ { "index": 37, @@ -82282,7 +82282,7 @@ "b": 572.43182, "coord_origin": "TOPLEFT" }, - "confidence": 0.5171723365783691, + "confidence": 0.5171729922294617, "cells": [ { "index": 38, @@ -82322,7 +82322,7 @@ "b": 584.43163, "coord_origin": "TOPLEFT" }, - "confidence": 0.5373470187187195, + "confidence": 0.5373476147651672, "cells": [ { "index": 39, @@ -82362,7 +82362,7 @@ "b": 584.43163, "coord_origin": "TOPLEFT" }, - "confidence": 0.5167025327682495, + "confidence": 0.51670241355896, "cells": [ { "index": 40, @@ -82481,7 +82481,7 @@ "b": 709.760956, "coord_origin": "TOPLEFT" }, - "confidence": 0.9853070974349976, + "confidence": 0.985306978225708, "cells": [ { "index": 43, @@ -82622,9 +82622,9 @@ "label": "table", "bbox": { "l": 135.52462768554688, - "t": 289.7252197265625, + "t": 289.7253112792969, "r": 545.8714599609375, - "b": 442.050537109375, + "b": 442.05059814453125, "coord_origin": "TOPLEFT" }, "confidence": 0.9851690530776978, @@ -84593,7 +84593,7 @@ "b": 106.70172000000014, "coord_origin": "TOPLEFT" }, - "confidence": 0.9551582932472229, + "confidence": 0.9551581740379333, "cells": [ { "index": 4, @@ -84760,7 +84760,7 @@ "b": 135.74108999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9418092370033264, + "confidence": 0.9418092966079712, "cells": [ { "index": 9, @@ -85169,7 +85169,7 @@ "b": 231.34271, "coord_origin": "TOPLEFT" }, - "confidence": 0.9636710286140442, + "confidence": 0.9636709094047546, "cells": [ { "index": 22, @@ -85311,7 +85311,7 @@ "b": 287.88300000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9196999669075012, + "confidence": 0.9197001457214355, "cells": [ { "index": 26, @@ -85428,7 +85428,7 @@ "b": 494.883, "coord_origin": "TOPLEFT" }, - "confidence": 0.8159958720207214, + "confidence": 0.8159964680671692, "cells": [ { "index": 29, @@ -85474,7 +85474,7 @@ "b": 584.43163, "coord_origin": "TOPLEFT" }, - "confidence": 0.5808265805244446, + "confidence": 0.5808269381523132, "cells": [ { "index": 30, @@ -85763,7 +85763,7 @@ "b": 512.4328, "coord_origin": "TOPLEFT" }, - "confidence": 0.5631121397018433, + "confidence": 0.5631120204925537, "cells": [ { "index": 30, @@ -85923,7 +85923,7 @@ "b": 548.43222, "coord_origin": "TOPLEFT" }, - "confidence": 0.5346826314926147, + "confidence": 0.5346829891204834, "cells": [ { "index": 34, @@ -85963,7 +85963,7 @@ "b": 560.43202, "coord_origin": "TOPLEFT" }, - "confidence": 0.581838846206665, + "confidence": 0.5818390846252441, "cells": [ { "index": 35, @@ -86003,7 +86003,7 @@ "b": 560.43202, "coord_origin": "TOPLEFT" }, - "confidence": 0.5035740733146667, + "confidence": 0.503573477268219, "cells": [ { "index": 36, @@ -86043,7 +86043,7 @@ "b": 572.43182, "coord_origin": "TOPLEFT" }, - "confidence": 0.534027099609375, + "confidence": 0.5340273380279541, "cells": [ { "index": 37, @@ -86083,7 +86083,7 @@ "b": 572.43182, "coord_origin": "TOPLEFT" }, - "confidence": 0.5171723365783691, + "confidence": 0.5171729922294617, "cells": [ { "index": 38, @@ -86123,7 +86123,7 @@ "b": 584.43163, "coord_origin": "TOPLEFT" }, - "confidence": 0.5373470187187195, + "confidence": 0.5373476147651672, "cells": [ { "index": 39, @@ -86163,7 +86163,7 @@ "b": 584.43163, "coord_origin": "TOPLEFT" }, - "confidence": 0.5167025327682495, + "confidence": 0.51670241355896, "cells": [ { "index": 40, @@ -86282,7 +86282,7 @@ "b": 709.760956, "coord_origin": "TOPLEFT" }, - "confidence": 0.9853070974349976, + "confidence": 0.985306978225708, "cells": [ { "index": 43, @@ -86423,9 +86423,9 @@ "label": "table", "bbox": { "l": 135.52462768554688, - "t": 289.7252197265625, + "t": 289.7253112792969, "r": 545.8714599609375, - "b": 442.050537109375, + "b": 442.05059814453125, "coord_origin": "TOPLEFT" }, "confidence": 0.9851690530776978, @@ -88323,7 +88323,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9166396856307983, + "confidence": 0.9166395664215088, "cells": [ { "index": 0, @@ -90401,7 +90401,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9508126378059387, + "confidence": 0.9508126974105835, "cells": [ { "index": 0, @@ -90441,7 +90441,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.8987301588058472, + "confidence": 0.898730456829071, "cells": [ { "index": 1, @@ -90481,7 +90481,7 @@ "b": 140.72113000000002, "coord_origin": "TOPLEFT" }, - "confidence": 0.9789126515388489, + "confidence": 0.9789127707481384, "cells": [ { "index": 2, @@ -90646,7 +90646,7 @@ "b": 198.74017000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.9665538668632507, + "confidence": 0.9665539860725403, "cells": [ { "index": 8, @@ -90761,7 +90761,7 @@ "b": 232.69976999999994, "coord_origin": "TOPLEFT" }, - "confidence": 0.9691813588142395, + "confidence": 0.969181478023529, "cells": [ { "index": 12, @@ -90826,7 +90826,7 @@ "b": 278.71898999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9729602336883545, + "confidence": 0.9729602932929993, "cells": [ { "index": 14, @@ -91131,7 +91131,7 @@ "label": "table", "bbox": { "l": 64.41139221191406, - "t": 393.6136169433594, + "t": 393.6136474609375, "r": 547.3950805664062, "b": 721.60791015625, "coord_origin": "TOPLEFT" @@ -94730,7 +94730,7 @@ "label": "table", "bbox": { "l": 64.41139221191406, - "t": 393.6136169433594, + "t": 393.6136474609375, "r": 547.3950805664062, "b": 721.60791015625, "coord_origin": "TOPLEFT" @@ -99330,7 +99330,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9508126378059387, + "confidence": 0.9508126974105835, "cells": [ { "index": 0, @@ -99376,7 +99376,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.8987301588058472, + "confidence": 0.898730456829071, "cells": [ { "index": 1, @@ -99422,7 +99422,7 @@ "b": 140.72113000000002, "coord_origin": "TOPLEFT" }, - "confidence": 0.9789126515388489, + "confidence": 0.9789127707481384, "cells": [ { "index": 2, @@ -99593,7 +99593,7 @@ "b": 198.74017000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.9665538668632507, + "confidence": 0.9665539860725403, "cells": [ { "index": 8, @@ -99714,7 +99714,7 @@ "b": 232.69976999999994, "coord_origin": "TOPLEFT" }, - "confidence": 0.9691813588142395, + "confidence": 0.969181478023529, "cells": [ { "index": 12, @@ -99785,7 +99785,7 @@ "b": 278.71898999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9729602336883545, + "confidence": 0.9729602932929993, "cells": [ { "index": 14, @@ -100114,7 +100114,7 @@ "label": "table", "bbox": { "l": 64.41139221191406, - "t": 393.6136169433594, + "t": 393.6136474609375, "r": 547.3950805664062, "b": 721.60791015625, "coord_origin": "TOPLEFT" @@ -104708,7 +104708,7 @@ "b": 140.72113000000002, "coord_origin": "TOPLEFT" }, - "confidence": 0.9789126515388489, + "confidence": 0.9789127707481384, "cells": [ { "index": 2, @@ -104879,7 +104879,7 @@ "b": 198.74017000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.9665538668632507, + "confidence": 0.9665539860725403, "cells": [ { "index": 8, @@ -105000,7 +105000,7 @@ "b": 232.69976999999994, "coord_origin": "TOPLEFT" }, - "confidence": 0.9691813588142395, + "confidence": 0.969181478023529, "cells": [ { "index": 12, @@ -105071,7 +105071,7 @@ "b": 278.71898999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9729602336883545, + "confidence": 0.9729602932929993, "cells": [ { "index": 14, @@ -105400,7 +105400,7 @@ "label": "table", "bbox": { "l": 64.41139221191406, - "t": 393.6136169433594, + "t": 393.6136474609375, "r": 547.3950805664062, "b": 721.60791015625, "coord_origin": "TOPLEFT" @@ -109994,7 +109994,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9508126378059387, + "confidence": 0.9508126974105835, "cells": [ { "index": 0, @@ -110040,7 +110040,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.8987301588058472, + "confidence": 0.898730456829071, "cells": [ { "index": 1, @@ -111637,7 +111637,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9071078896522522, + "confidence": 0.907107949256897, "cells": [ { "index": 1, @@ -111677,7 +111677,7 @@ "b": 92.72185999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.872844398021698, + "confidence": 0.872843861579895, "cells": [ { "index": 2, @@ -111792,7 +111792,7 @@ "b": 422.46301, "coord_origin": "TOPLEFT" }, - "confidence": 0.938783586025238, + "confidence": 0.9387835264205933, "cells": [ { "index": 6, @@ -111832,7 +111832,7 @@ "b": 451.04401, "coord_origin": "TOPLEFT" }, - "confidence": 0.9477567076683044, + "confidence": 0.9477565884590149, "cells": [ { "index": 7, @@ -111872,7 +111872,7 @@ "b": 500.30115, "coord_origin": "TOPLEFT" }, - "confidence": 0.9843975901603699, + "confidence": 0.9843974709510803, "cells": [ { "index": 8, @@ -111982,12 +111982,12 @@ "label": "picture", "bbox": { "l": 135.97177124023438, - "t": 107.41075134277344, + "t": 107.4107437133789, "r": 545.4180908203125, "b": 410.60931396484375, "coord_origin": "TOPLEFT" }, - "confidence": 0.9788318872451782, + "confidence": 0.9788317680358887, "cells": [ { "index": 12, @@ -115184,7 +115184,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9071078896522522, + "confidence": 0.907107949256897, "cells": [ { "index": 1, @@ -115230,7 +115230,7 @@ "b": 92.72185999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.872844398021698, + "confidence": 0.872843861579895, "cells": [ { "index": 2, @@ -115351,7 +115351,7 @@ "b": 422.46301, "coord_origin": "TOPLEFT" }, - "confidence": 0.938783586025238, + "confidence": 0.9387835264205933, "cells": [ { "index": 6, @@ -115397,7 +115397,7 @@ "b": 451.04401, "coord_origin": "TOPLEFT" }, - "confidence": 0.9477567076683044, + "confidence": 0.9477565884590149, "cells": [ { "index": 7, @@ -115443,7 +115443,7 @@ "b": 500.30115, "coord_origin": "TOPLEFT" }, - "confidence": 0.9843975901603699, + "confidence": 0.9843974709510803, "cells": [ { "index": 8, @@ -115559,12 +115559,12 @@ "label": "picture", "bbox": { "l": 135.97177124023438, - "t": 107.41075134277344, + "t": 107.4107437133789, "r": 545.4180908203125, "b": 410.60931396484375, "coord_origin": "TOPLEFT" }, - "confidence": 0.9788318872451782, + "confidence": 0.9788317680358887, "cells": [ { "index": 12, @@ -118712,7 +118712,7 @@ "b": 92.72185999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.872844398021698, + "confidence": 0.872843861579895, "cells": [ { "index": 2, @@ -118833,7 +118833,7 @@ "b": 422.46301, "coord_origin": "TOPLEFT" }, - "confidence": 0.938783586025238, + "confidence": 0.9387835264205933, "cells": [ { "index": 6, @@ -118879,7 +118879,7 @@ "b": 451.04401, "coord_origin": "TOPLEFT" }, - "confidence": 0.9477567076683044, + "confidence": 0.9477565884590149, "cells": [ { "index": 7, @@ -118925,7 +118925,7 @@ "b": 500.30115, "coord_origin": "TOPLEFT" }, - "confidence": 0.9843975901603699, + "confidence": 0.9843974709510803, "cells": [ { "index": 8, @@ -119041,12 +119041,12 @@ "label": "picture", "bbox": { "l": 135.97177124023438, - "t": 107.41075134277344, + "t": 107.4107437133789, "r": 545.4180908203125, "b": 410.60931396484375, "coord_origin": "TOPLEFT" }, - "confidence": 0.9788318872451782, + "confidence": 0.9788317680358887, "cells": [ { "index": 12, @@ -122240,7 +122240,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9071078896522522, + "confidence": 0.907107949256897, "cells": [ { "index": 1, @@ -123652,7 +123652,7 @@ "b": 80.72204999999985, "coord_origin": "TOPLEFT" }, - "confidence": 0.7875156402587891, + "confidence": 0.7875155806541443, "cells": [ { "index": 2, @@ -123732,7 +123732,7 @@ "b": 235.70154000000002, "coord_origin": "TOPLEFT" }, - "confidence": 0.9466660022735596, + "confidence": 0.94666588306427, "cells": [ { "index": 4, @@ -123862,7 +123862,7 @@ "b": 269.72089000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9445974230766296, + "confidence": 0.9445973038673401, "cells": [ { "index": 8, @@ -124132,7 +124132,7 @@ "b": 368.71933000000007, "coord_origin": "TOPLEFT" }, - "confidence": 0.9748278260231018, + "confidence": 0.9748277068138123, "cells": [ { "index": 17, @@ -124222,7 +124222,7 @@ "b": 605.04291, "coord_origin": "TOPLEFT" }, - "confidence": 0.9274530410766602, + "confidence": 0.9274529814720154, "cells": [ { "index": 20, @@ -124482,7 +124482,7 @@ "b": 204.2716064453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.9731299877166748, + "confidence": 0.9731298685073853, "cells": [ { "index": 28, @@ -125142,13 +125142,13 @@ "id": 16, "label": "picture", "bbox": { - "l": 135.64837646484375, - "t": 384.1737060546875, - "r": 301.2367248535156, + "l": 135.64834594726562, + "t": 384.1736755371094, + "r": 301.23675537109375, "b": 594.7566528320312, "coord_origin": "TOPLEFT" }, - "confidence": 0.7221468687057495, + "confidence": 0.7221470475196838, "cells": [ { "index": 38, @@ -125487,7 +125487,7 @@ "b": 395.49527, "coord_origin": "TOPLEFT" }, - "confidence": 0.7616674304008484, + "confidence": 0.7616671323776245, "cells": [ { "index": 38, @@ -125592,7 +125592,7 @@ "b": 431.33008, "coord_origin": "TOPLEFT" }, - "confidence": 0.5213791728019714, + "confidence": 0.5213785767555237, "cells": [ { "index": 41, @@ -125672,7 +125672,7 @@ "b": 482.09598, "coord_origin": "TOPLEFT" }, - "confidence": 0.5759297609329224, + "confidence": 0.5759296417236328, "cells": [ { "index": 43, @@ -125897,7 +125897,7 @@ "b": 586.61409, "coord_origin": "TOPLEFT" }, - "confidence": 0.5024971961975098, + "confidence": 0.5024963617324829, "cells": [ { "index": 49, @@ -125972,7 +125972,7 @@ "b": 204.2716064453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.9731299877166748, + "confidence": 0.9731298685073853, "cells": [ { "index": 28, @@ -126914,7 +126914,7 @@ "b": 80.72204999999985, "coord_origin": "TOPLEFT" }, - "confidence": 0.7875156402587891, + "confidence": 0.7875155806541443, "cells": [ { "index": 2, @@ -127006,7 +127006,7 @@ "b": 235.70154000000002, "coord_origin": "TOPLEFT" }, - "confidence": 0.9466660022735596, + "confidence": 0.94666588306427, "cells": [ { "index": 4, @@ -127148,7 +127148,7 @@ "b": 269.72089000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9445974230766296, + "confidence": 0.9445973038673401, "cells": [ { "index": 8, @@ -127436,7 +127436,7 @@ "b": 368.71933000000007, "coord_origin": "TOPLEFT" }, - "confidence": 0.9748278260231018, + "confidence": 0.9748277068138123, "cells": [ { "index": 17, @@ -127532,7 +127532,7 @@ "b": 605.04291, "coord_origin": "TOPLEFT" }, - "confidence": 0.9274530410766602, + "confidence": 0.9274529814720154, "cells": [ { "index": 20, @@ -127816,7 +127816,7 @@ "b": 204.2716064453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.9731299877166748, + "confidence": 0.9731298685073853, "cells": [ { "index": 28, @@ -128652,13 +128652,13 @@ "id": 16, "label": "picture", "bbox": { - "l": 135.64837646484375, - "t": 384.1737060546875, - "r": 301.2367248535156, + "l": 135.64834594726562, + "t": 384.1736755371094, + "r": 301.23675537109375, "b": 594.7566528320312, "coord_origin": "TOPLEFT" }, - "confidence": 0.7221468687057495, + "confidence": 0.7221470475196838, "cells": [ { "index": 38, @@ -128997,7 +128997,7 @@ "b": 395.49527, "coord_origin": "TOPLEFT" }, - "confidence": 0.7616674304008484, + "confidence": 0.7616671323776245, "cells": [ { "index": 38, @@ -129102,7 +129102,7 @@ "b": 431.33008, "coord_origin": "TOPLEFT" }, - "confidence": 0.5213791728019714, + "confidence": 0.5213785767555237, "cells": [ { "index": 41, @@ -129182,7 +129182,7 @@ "b": 482.09598, "coord_origin": "TOPLEFT" }, - "confidence": 0.5759297609329224, + "confidence": 0.5759296417236328, "cells": [ { "index": 43, @@ -129407,7 +129407,7 @@ "b": 586.61409, "coord_origin": "TOPLEFT" }, - "confidence": 0.5024971961975098, + "confidence": 0.5024963617324829, "cells": [ { "index": 49, @@ -129486,7 +129486,7 @@ "b": 80.72204999999985, "coord_origin": "TOPLEFT" }, - "confidence": 0.7875156402587891, + "confidence": 0.7875155806541443, "cells": [ { "index": 2, @@ -129578,7 +129578,7 @@ "b": 235.70154000000002, "coord_origin": "TOPLEFT" }, - "confidence": 0.9466660022735596, + "confidence": 0.94666588306427, "cells": [ { "index": 4, @@ -129720,7 +129720,7 @@ "b": 269.72089000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9445974230766296, + "confidence": 0.9445973038673401, "cells": [ { "index": 8, @@ -130008,7 +130008,7 @@ "b": 368.71933000000007, "coord_origin": "TOPLEFT" }, - "confidence": 0.9748278260231018, + "confidence": 0.9748277068138123, "cells": [ { "index": 17, @@ -130104,7 +130104,7 @@ "b": 605.04291, "coord_origin": "TOPLEFT" }, - "confidence": 0.9274530410766602, + "confidence": 0.9274529814720154, "cells": [ { "index": 20, @@ -130388,7 +130388,7 @@ "b": 204.2716064453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.9731299877166748, + "confidence": 0.9731298685073853, "cells": [ { "index": 28, @@ -131224,13 +131224,13 @@ "id": 16, "label": "picture", "bbox": { - "l": 135.64837646484375, - "t": 384.1737060546875, - "r": 301.2367248535156, + "l": 135.64834594726562, + "t": 384.1736755371094, + "r": 301.23675537109375, "b": 594.7566528320312, "coord_origin": "TOPLEFT" }, - "confidence": 0.7221468687057495, + "confidence": 0.7221470475196838, "cells": [ { "index": 38, @@ -131569,7 +131569,7 @@ "b": 395.49527, "coord_origin": "TOPLEFT" }, - "confidence": 0.7616674304008484, + "confidence": 0.7616671323776245, "cells": [ { "index": 38, @@ -131674,7 +131674,7 @@ "b": 431.33008, "coord_origin": "TOPLEFT" }, - "confidence": 0.5213791728019714, + "confidence": 0.5213785767555237, "cells": [ { "index": 41, @@ -131754,7 +131754,7 @@ "b": 482.09598, "coord_origin": "TOPLEFT" }, - "confidence": 0.5759297609329224, + "confidence": 0.5759296417236328, "cells": [ { "index": 43, @@ -131979,7 +131979,7 @@ "b": 586.61409, "coord_origin": "TOPLEFT" }, - "confidence": 0.5024971961975098, + "confidence": 0.5024963617324829, "cells": [ { "index": 49, @@ -133676,7 +133676,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9505079388618469, + "confidence": 0.9505080580711365, "cells": [ { "index": 1, @@ -133716,7 +133716,7 @@ "b": 80.72167999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.8370978832244873, + "confidence": 0.8370987772941589, "cells": [ { "index": 2, @@ -133756,7 +133756,7 @@ "b": 101.82299999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.913235604763031, + "confidence": 0.9132358431816101, "cells": [ { "index": 3, @@ -133796,7 +133796,7 @@ "b": 336.96371000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9645338654518127, + "confidence": 0.9645339846611023, "cells": [ { "index": 4, @@ -134051,7 +134051,7 @@ "b": 481.70004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9807308912277222, + "confidence": 0.9807307720184326, "cells": [ { "index": 13, @@ -134141,7 +134141,7 @@ "b": 503.7196, "coord_origin": "TOPLEFT" }, - "confidence": 0.9237529635429382, + "confidence": 0.9237534403800964, "cells": [ { "index": 16, @@ -134246,7 +134246,7 @@ "b": 537.739, "coord_origin": "TOPLEFT" }, - "confidence": 0.9514460563659668, + "confidence": 0.9514461755752563, "cells": [ { "index": 19, @@ -134311,7 +134311,7 @@ "b": 566.71861, "coord_origin": "TOPLEFT" }, - "confidence": 0.951230525970459, + "confidence": 0.9512304067611694, "cells": [ { "index": 21, @@ -134401,7 +134401,7 @@ "b": 641.4285600000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.7066455483436584, + "confidence": 0.7066511511802673, "cells": [ { "index": 24, @@ -134535,7 +134535,7 @@ "id": 0, "label": "table", "bbox": { - "l": 63.55636978149414, + "l": 63.55635070800781, "t": 104.23387145996094, "r": 548.5687255859375, "b": 296.22467041015625, @@ -136509,7 +136509,7 @@ "id": 0, "label": "table", "bbox": { - "l": 63.55636978149414, + "l": 63.55635070800781, "t": 104.23387145996094, "r": 548.5687255859375, "b": 296.22467041015625, @@ -139157,7 +139157,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9505079388618469, + "confidence": 0.9505080580711365, "cells": [ { "index": 1, @@ -139203,7 +139203,7 @@ "b": 80.72167999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.8370978832244873, + "confidence": 0.8370987772941589, "cells": [ { "index": 2, @@ -139249,7 +139249,7 @@ "b": 101.82299999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.913235604763031, + "confidence": 0.9132358431816101, "cells": [ { "index": 3, @@ -139295,7 +139295,7 @@ "b": 336.96371000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9645338654518127, + "confidence": 0.9645339846611023, "cells": [ { "index": 4, @@ -139562,7 +139562,7 @@ "b": 481.70004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9807308912277222, + "confidence": 0.9807307720184326, "cells": [ { "index": 13, @@ -139658,7 +139658,7 @@ "b": 503.7196, "coord_origin": "TOPLEFT" }, - "confidence": 0.9237529635429382, + "confidence": 0.9237534403800964, "cells": [ { "index": 16, @@ -139775,7 +139775,7 @@ "b": 537.739, "coord_origin": "TOPLEFT" }, - "confidence": 0.9514460563659668, + "confidence": 0.9514461755752563, "cells": [ { "index": 19, @@ -139846,7 +139846,7 @@ "b": 566.71861, "coord_origin": "TOPLEFT" }, - "confidence": 0.951230525970459, + "confidence": 0.9512304067611694, "cells": [ { "index": 21, @@ -139942,7 +139942,7 @@ "b": 641.4285600000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.7066455483436584, + "confidence": 0.7066511511802673, "cells": [ { "index": 24, @@ -140082,7 +140082,7 @@ "id": 0, "label": "table", "bbox": { - "l": 63.55636978149414, + "l": 63.55635070800781, "t": 104.23387145996094, "r": 548.5687255859375, "b": 296.22467041015625, @@ -142678,7 +142678,7 @@ "b": 80.72167999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.8370978832244873, + "confidence": 0.8370987772941589, "cells": [ { "index": 2, @@ -142724,7 +142724,7 @@ "b": 101.82299999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.913235604763031, + "confidence": 0.9132358431816101, "cells": [ { "index": 3, @@ -142770,7 +142770,7 @@ "b": 336.96371000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9645338654518127, + "confidence": 0.9645339846611023, "cells": [ { "index": 4, @@ -143037,7 +143037,7 @@ "b": 481.70004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9807308912277222, + "confidence": 0.9807307720184326, "cells": [ { "index": 13, @@ -143133,7 +143133,7 @@ "b": 503.7196, "coord_origin": "TOPLEFT" }, - "confidence": 0.9237529635429382, + "confidence": 0.9237534403800964, "cells": [ { "index": 16, @@ -143250,7 +143250,7 @@ "b": 537.739, "coord_origin": "TOPLEFT" }, - "confidence": 0.9514460563659668, + "confidence": 0.9514461755752563, "cells": [ { "index": 19, @@ -143321,7 +143321,7 @@ "b": 566.71861, "coord_origin": "TOPLEFT" }, - "confidence": 0.951230525970459, + "confidence": 0.9512304067611694, "cells": [ { "index": 21, @@ -143417,7 +143417,7 @@ "b": 641.4285600000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.7066455483436584, + "confidence": 0.7066511511802673, "cells": [ { "index": 24, @@ -143557,7 +143557,7 @@ "id": 0, "label": "table", "bbox": { - "l": 63.55636978149414, + "l": 63.55635070800781, "t": 104.23387145996094, "r": 548.5687255859375, "b": 296.22467041015625, @@ -146199,7 +146199,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9505079388618469, + "confidence": 0.9505080580711365, "cells": [ { "index": 1, @@ -147621,7 +147621,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9105783104896545, + "confidence": 0.9105784296989441, "cells": [ { "index": 1, @@ -147661,7 +147661,7 @@ "b": 80.43322999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.5606335997581482, + "confidence": 0.5606338381767273, "cells": [ { "index": 2, @@ -147701,7 +147701,7 @@ "b": 92.43304, "coord_origin": "TOPLEFT" }, - "confidence": 0.589726984500885, + "confidence": 0.5897274613380432, "cells": [ { "index": 3, @@ -147741,7 +147741,7 @@ "b": 260.43048, "coord_origin": "TOPLEFT" }, - "confidence": 0.778521716594696, + "confidence": 0.7785214185714722, "cells": [ { "index": 4, @@ -148106,7 +148106,7 @@ "b": 296.71871999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.8678942918777466, + "confidence": 0.8678945899009705, "cells": [ { "index": 18, @@ -148326,7 +148326,7 @@ "b": 359.71771, "coord_origin": "TOPLEFT" }, - "confidence": 0.9705166220664978, + "confidence": 0.9705167412757874, "cells": [ { "index": 25, @@ -148416,7 +148416,7 @@ "b": 376.6975100000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9469642639160156, + "confidence": 0.9469640254974365, "cells": [ { "index": 28, @@ -148481,7 +148481,7 @@ "b": 393.73709, "coord_origin": "TOPLEFT" }, - "confidence": 0.7003502249717712, + "confidence": 0.7003504037857056, "cells": [ { "index": 30, @@ -148521,7 +148521,7 @@ "b": 414.84302, "coord_origin": "TOPLEFT" }, - "confidence": 0.8488203287124634, + "confidence": 0.8488209247589111, "cells": [ { "index": 31, @@ -148561,7 +148561,7 @@ "b": 684.44884, "coord_origin": "TOPLEFT" }, - "confidence": 0.8411229252815247, + "confidence": 0.8411226868629456, "cells": [ { "index": 32, @@ -149162,7 +149162,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9105783104896545, + "confidence": 0.9105784296989441, "cells": [ { "index": 1, @@ -149208,7 +149208,7 @@ "b": 80.43322999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.5606335997581482, + "confidence": 0.5606338381767273, "cells": [ { "index": 2, @@ -149254,7 +149254,7 @@ "b": 92.43304, "coord_origin": "TOPLEFT" }, - "confidence": 0.589726984500885, + "confidence": 0.5897274613380432, "cells": [ { "index": 3, @@ -149300,7 +149300,7 @@ "b": 260.43048, "coord_origin": "TOPLEFT" }, - "confidence": 0.778521716594696, + "confidence": 0.7785214185714722, "cells": [ { "index": 4, @@ -149671,7 +149671,7 @@ "b": 296.71871999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.8678942918777466, + "confidence": 0.8678945899009705, "cells": [ { "index": 18, @@ -149909,7 +149909,7 @@ "b": 359.71771, "coord_origin": "TOPLEFT" }, - "confidence": 0.9705166220664978, + "confidence": 0.9705167412757874, "cells": [ { "index": 25, @@ -150005,7 +150005,7 @@ "b": 376.6975100000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9469642639160156, + "confidence": 0.9469640254974365, "cells": [ { "index": 28, @@ -150076,7 +150076,7 @@ "b": 393.73709, "coord_origin": "TOPLEFT" }, - "confidence": 0.7003502249717712, + "confidence": 0.7003504037857056, "cells": [ { "index": 30, @@ -150122,7 +150122,7 @@ "b": 414.84302, "coord_origin": "TOPLEFT" }, - "confidence": 0.8488203287124634, + "confidence": 0.8488209247589111, "cells": [ { "index": 31, @@ -150168,7 +150168,7 @@ "b": 684.44884, "coord_origin": "TOPLEFT" }, - "confidence": 0.8411229252815247, + "confidence": 0.8411226868629456, "cells": [ { "index": 32, @@ -150716,7 +150716,7 @@ "b": 80.43322999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.5606335997581482, + "confidence": 0.5606338381767273, "cells": [ { "index": 2, @@ -150762,7 +150762,7 @@ "b": 92.43304, "coord_origin": "TOPLEFT" }, - "confidence": 0.589726984500885, + "confidence": 0.5897274613380432, "cells": [ { "index": 3, @@ -150808,7 +150808,7 @@ "b": 260.43048, "coord_origin": "TOPLEFT" }, - "confidence": 0.778521716594696, + "confidence": 0.7785214185714722, "cells": [ { "index": 4, @@ -151179,7 +151179,7 @@ "b": 296.71871999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.8678942918777466, + "confidence": 0.8678945899009705, "cells": [ { "index": 18, @@ -151417,7 +151417,7 @@ "b": 359.71771, "coord_origin": "TOPLEFT" }, - "confidence": 0.9705166220664978, + "confidence": 0.9705167412757874, "cells": [ { "index": 25, @@ -151513,7 +151513,7 @@ "b": 376.6975100000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9469642639160156, + "confidence": 0.9469640254974365, "cells": [ { "index": 28, @@ -151584,7 +151584,7 @@ "b": 393.73709, "coord_origin": "TOPLEFT" }, - "confidence": 0.7003502249717712, + "confidence": 0.7003504037857056, "cells": [ { "index": 30, @@ -151630,7 +151630,7 @@ "b": 414.84302, "coord_origin": "TOPLEFT" }, - "confidence": 0.8488203287124634, + "confidence": 0.8488209247589111, "cells": [ { "index": 31, @@ -151676,7 +151676,7 @@ "b": 684.44884, "coord_origin": "TOPLEFT" }, - "confidence": 0.8411229252815247, + "confidence": 0.8411226868629456, "cells": [ { "index": 32, @@ -152270,7 +152270,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9105783104896545, + "confidence": 0.9105784296989441, "cells": [ { "index": 1, @@ -153202,7 +153202,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9161998629570007, + "confidence": 0.9161999821662903, "cells": [ { "index": 0, @@ -153242,7 +153242,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9540064334869385, + "confidence": 0.9540063142776489, "cells": [ { "index": 1, @@ -153282,7 +153282,7 @@ "b": 80.72167999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.8751048445701599, + "confidence": 0.8751050233840942, "cells": [ { "index": 2, @@ -153387,7 +153387,7 @@ "b": 214.36273000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.9645015001296997, + "confidence": 0.9645013809204102, "cells": [ { "index": 5, @@ -153542,7 +153542,7 @@ "b": 278.72113, "coord_origin": "TOPLEFT" }, - "confidence": 0.9059441685676575, + "confidence": 0.9059439301490784, "cells": [ { "index": 10, @@ -153607,7 +153607,7 @@ "b": 299.88300000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.657009482383728, + "confidence": 0.657010018825531, "cells": [ { "index": 12, @@ -153712,7 +153712,7 @@ "b": 329.43271, "coord_origin": "TOPLEFT" }, - "confidence": 0.598584771156311, + "confidence": 0.5985845923423767, "cells": [ { "index": 15, @@ -153937,7 +153937,7 @@ "b": 413.72021, "coord_origin": "TOPLEFT" }, - "confidence": 0.9449257850646973, + "confidence": 0.9449256062507629, "cells": [ { "index": 21, @@ -154277,7 +154277,7 @@ "b": 657.3629, "coord_origin": "TOPLEFT" }, - "confidence": 0.9499983787536621, + "confidence": 0.9499982595443726, "cells": [ { "index": 34, @@ -154311,13 +154311,13 @@ "id": 3, "label": "picture", "bbox": { - "l": 63.801902770996094, - "t": 95.38241577148438, - "r": 547.11474609375, - "b": 170.0321502685547, + "l": 63.80195617675781, + "t": 95.38239288330078, + "r": 547.1146850585938, + "b": 170.03208923339844, "coord_origin": "TOPLEFT" }, - "confidence": 0.9635388851165771, + "confidence": 0.9635390043258667, "cells": [], "children": [] }, @@ -154325,7 +154325,7 @@ "id": 0, "label": "picture", "bbox": { - "l": 63.985130310058594, + "l": 63.9850959777832, "t": 427.90496826171875, "r": 530.0478515625, "b": 646.1396484375, @@ -154360,7 +154360,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9161998629570007, + "confidence": 0.9161999821662903, "cells": [ { "index": 0, @@ -154406,7 +154406,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9540064334869385, + "confidence": 0.9540063142776489, "cells": [ { "index": 1, @@ -154452,7 +154452,7 @@ "b": 80.72167999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.8751048445701599, + "confidence": 0.8751050233840942, "cells": [ { "index": 2, @@ -154569,7 +154569,7 @@ "b": 214.36273000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.9645015001296997, + "confidence": 0.9645013809204102, "cells": [ { "index": 5, @@ -154736,7 +154736,7 @@ "b": 278.72113, "coord_origin": "TOPLEFT" }, - "confidence": 0.9059441685676575, + "confidence": 0.9059439301490784, "cells": [ { "index": 10, @@ -154807,7 +154807,7 @@ "b": 299.88300000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.657009482383728, + "confidence": 0.657010018825531, "cells": [ { "index": 12, @@ -154924,7 +154924,7 @@ "b": 329.43271, "coord_origin": "TOPLEFT" }, - "confidence": 0.598584771156311, + "confidence": 0.5985845923423767, "cells": [ { "index": 15, @@ -155179,7 +155179,7 @@ "b": 413.72021, "coord_origin": "TOPLEFT" }, - "confidence": 0.9449257850646973, + "confidence": 0.9449256062507629, "cells": [ { "index": 21, @@ -155525,7 +155525,7 @@ "b": 657.3629, "coord_origin": "TOPLEFT" }, - "confidence": 0.9499983787536621, + "confidence": 0.9499982595443726, "cells": [ { "index": 34, @@ -155565,13 +155565,13 @@ "id": 3, "label": "picture", "bbox": { - "l": 63.801902770996094, - "t": 95.38241577148438, - "r": 547.11474609375, - "b": 170.0321502685547, + "l": 63.80195617675781, + "t": 95.38239288330078, + "r": 547.1146850585938, + "b": 170.03208923339844, "coord_origin": "TOPLEFT" }, - "confidence": 0.9635388851165771, + "confidence": 0.9635390043258667, "cells": [], "children": [] }, @@ -155589,7 +155589,7 @@ "id": 0, "label": "picture", "bbox": { - "l": 63.985130310058594, + "l": 63.9850959777832, "t": 427.90496826171875, "r": 530.0478515625, "b": 646.1396484375, @@ -155621,7 +155621,7 @@ "b": 80.72167999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.8751048445701599, + "confidence": 0.8751050233840942, "cells": [ { "index": 2, @@ -155738,7 +155738,7 @@ "b": 214.36273000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.9645015001296997, + "confidence": 0.9645013809204102, "cells": [ { "index": 5, @@ -155905,7 +155905,7 @@ "b": 278.72113, "coord_origin": "TOPLEFT" }, - "confidence": 0.9059441685676575, + "confidence": 0.9059439301490784, "cells": [ { "index": 10, @@ -155976,7 +155976,7 @@ "b": 299.88300000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.657009482383728, + "confidence": 0.657010018825531, "cells": [ { "index": 12, @@ -156093,7 +156093,7 @@ "b": 329.43271, "coord_origin": "TOPLEFT" }, - "confidence": 0.598584771156311, + "confidence": 0.5985845923423767, "cells": [ { "index": 15, @@ -156348,7 +156348,7 @@ "b": 413.72021, "coord_origin": "TOPLEFT" }, - "confidence": 0.9449257850646973, + "confidence": 0.9449256062507629, "cells": [ { "index": 21, @@ -156694,7 +156694,7 @@ "b": 657.3629, "coord_origin": "TOPLEFT" }, - "confidence": 0.9499983787536621, + "confidence": 0.9499982595443726, "cells": [ { "index": 34, @@ -156734,13 +156734,13 @@ "id": 3, "label": "picture", "bbox": { - "l": 63.801902770996094, - "t": 95.38241577148438, - "r": 547.11474609375, - "b": 170.0321502685547, + "l": 63.80195617675781, + "t": 95.38239288330078, + "r": 547.1146850585938, + "b": 170.03208923339844, "coord_origin": "TOPLEFT" }, - "confidence": 0.9635388851165771, + "confidence": 0.9635390043258667, "cells": [], "children": [] }, @@ -156758,7 +156758,7 @@ "id": 0, "label": "picture", "bbox": { - "l": 63.985130310058594, + "l": 63.9850959777832, "t": 427.90496826171875, "r": 530.0478515625, "b": 646.1396484375, @@ -156790,7 +156790,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9161998629570007, + "confidence": 0.9161999821662903, "cells": [ { "index": 0, @@ -156836,7 +156836,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9540064334869385, + "confidence": 0.9540063142776489, "cells": [ { "index": 1, @@ -157243,7 +157243,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.95576012134552, + "confidence": 0.9557602405548096, "cells": [ { "index": 0, @@ -157283,7 +157283,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9056528806686401, + "confidence": 0.9056527614593506, "cells": [ { "index": 1, @@ -157488,7 +157488,7 @@ "b": 488.883, "coord_origin": "TOPLEFT" }, - "confidence": 0.9529654383659363, + "confidence": 0.9529653191566467, "cells": [ { "index": 8, @@ -157528,7 +157528,7 @@ "b": 539.78125, "coord_origin": "TOPLEFT" }, - "confidence": 0.9766736626625061, + "confidence": 0.9766737818717957, "cells": [ { "index": 9, @@ -157643,7 +157643,7 @@ "b": 675.8429, "coord_origin": "TOPLEFT" }, - "confidence": 0.9514285922050476, + "confidence": 0.9514287114143372, "cells": [ { "index": 13, @@ -157678,9 +157678,9 @@ "label": "picture", "bbox": { "l": 136.5016632080078, - "t": 119.2491226196289, + "t": 119.24909210205078, "r": 545.4508666992188, - "b": 477.5412292480469, + "b": 477.54119873046875, "coord_origin": "TOPLEFT" }, "confidence": 0.9864527583122253, @@ -157726,7 +157726,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.95576012134552, + "confidence": 0.9557602405548096, "cells": [ { "index": 0, @@ -157772,7 +157772,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9056528806686401, + "confidence": 0.9056527614593506, "cells": [ { "index": 1, @@ -157989,7 +157989,7 @@ "b": 488.883, "coord_origin": "TOPLEFT" }, - "confidence": 0.9529654383659363, + "confidence": 0.9529653191566467, "cells": [ { "index": 8, @@ -158035,7 +158035,7 @@ "b": 539.78125, "coord_origin": "TOPLEFT" }, - "confidence": 0.9766736626625061, + "confidence": 0.9766737818717957, "cells": [ { "index": 9, @@ -158156,7 +158156,7 @@ "b": 675.8429, "coord_origin": "TOPLEFT" }, - "confidence": 0.9514285922050476, + "confidence": 0.9514287114143372, "cells": [ { "index": 13, @@ -158197,9 +158197,9 @@ "label": "picture", "bbox": { "l": 136.5016632080078, - "t": 119.2491226196289, + "t": 119.24909210205078, "r": 545.4508666992188, - "b": 477.5412292480469, + "b": 477.54119873046875, "coord_origin": "TOPLEFT" }, "confidence": 0.9864527583122253, @@ -158423,7 +158423,7 @@ "b": 488.883, "coord_origin": "TOPLEFT" }, - "confidence": 0.9529654383659363, + "confidence": 0.9529653191566467, "cells": [ { "index": 8, @@ -158469,7 +158469,7 @@ "b": 539.78125, "coord_origin": "TOPLEFT" }, - "confidence": 0.9766736626625061, + "confidence": 0.9766737818717957, "cells": [ { "index": 9, @@ -158590,7 +158590,7 @@ "b": 675.8429, "coord_origin": "TOPLEFT" }, - "confidence": 0.9514285922050476, + "confidence": 0.9514287114143372, "cells": [ { "index": 13, @@ -158631,9 +158631,9 @@ "label": "picture", "bbox": { "l": 136.5016632080078, - "t": 119.2491226196289, + "t": 119.24909210205078, "r": 545.4508666992188, - "b": 477.5412292480469, + "b": 477.54119873046875, "coord_origin": "TOPLEFT" }, "confidence": 0.9864527583122253, @@ -158686,7 +158686,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.95576012134552, + "confidence": 0.9557602405548096, "cells": [ { "index": 0, @@ -158732,7 +158732,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9056528806686401, + "confidence": 0.9056527614593506, "cells": [ { "index": 1, @@ -160244,7 +160244,7 @@ "b": 706.60762, "coord_origin": "TOPLEFT" }, - "confidence": 0.7632161378860474, + "confidence": 0.7632176280021667, "cells": [ { "index": 2, @@ -161691,7 +161691,7 @@ "b": 706.60762, "coord_origin": "TOPLEFT" }, - "confidence": 0.7632161378860474, + "confidence": 0.7632176280021667, "cells": [ { "index": 2, @@ -163039,7 +163039,7 @@ "b": 706.60762, "coord_origin": "TOPLEFT" }, - "confidence": 0.7632161378860474, + "confidence": 0.7632176280021667, "cells": [ { "index": 2, @@ -164486,10 +164486,10 @@ "l": 0.4932013750076294, "t": 0.0, "r": 610.2305297851562, - "b": 791.654541015625, + "b": 791.6546020507812, "coord_origin": "TOPLEFT" }, - "confidence": 0.6497200131416321, + "confidence": 0.6497246026992798, "cells": [], "children": [] } @@ -164515,10 +164515,10 @@ "l": 0.4932013750076294, "t": 0.0, "r": 610.2305297851562, - "b": 791.654541015625, + "b": 791.6546020507812, "coord_origin": "TOPLEFT" }, - "confidence": 0.6497200131416321, + "confidence": 0.6497246026992798, "cells": [], "children": [] }, @@ -164537,10 +164537,10 @@ "l": 0.4932013750076294, "t": 0.0, "r": 610.2305297851562, - "b": 791.654541015625, + "b": 791.6546020507812, "coord_origin": "TOPLEFT" }, - "confidence": 0.6497200131416321, + "confidence": 0.6497246026992798, "cells": [], "children": [] }, @@ -165822,7 +165822,7 @@ "b": 54.191585540771484, "coord_origin": "TOPLEFT" }, - "confidence": 0.9404253363609314, + "confidence": 0.940425455570221, "cells": [ { "index": 0, @@ -165903,7 +165903,7 @@ "b": 639.66301, "coord_origin": "TOPLEFT" }, - "confidence": 0.7700252532958984, + "confidence": 0.7700253129005432, "cells": [ { "index": 1, @@ -165943,7 +165943,7 @@ "b": 302.16061, "coord_origin": "TOPLEFT" }, - "confidence": 0.8532665967941284, + "confidence": 0.8532664775848389, "cells": [ { "index": 2, @@ -166058,7 +166058,7 @@ "b": 386.47198, "coord_origin": "TOPLEFT" }, - "confidence": 0.7157140374183655, + "confidence": 0.7157137989997864, "cells": [ { "index": 6, @@ -166148,7 +166148,7 @@ "b": 541.63406, "coord_origin": "TOPLEFT" }, - "confidence": 0.9518947005271912, + "confidence": 0.9518944621086121, "cells": [ { "index": 9, @@ -166488,7 +166488,7 @@ "b": 601.5119, "coord_origin": "TOPLEFT" }, - "confidence": 0.8230002522468567, + "confidence": 0.8230006694793701, "cells": [ { "index": 22, @@ -166724,7 +166724,7 @@ "b": 140.46002, "coord_origin": "TOPLEFT" }, - "confidence": 0.7128154635429382, + "confidence": 0.7128158211708069, "cells": [ { "index": 27, @@ -166789,7 +166789,7 @@ "b": 266.83196999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.8400377631187439, + "confidence": 0.8400377035140991, "cells": [ { "index": 29, @@ -166944,7 +166944,7 @@ "b": 378.85199, "coord_origin": "TOPLEFT" }, - "confidence": 0.9064874053001404, + "confidence": 0.9064872860908508, "cells": [ { "index": 34, @@ -167224,7 +167224,7 @@ "b": 388.57095, "coord_origin": "TOPLEFT" }, - "confidence": 0.9799742698669434, + "confidence": 0.9799743890762329, "cells": [ { "index": 44, @@ -167419,7 +167419,7 @@ "b": 54.191585540771484, "coord_origin": "TOPLEFT" }, - "confidence": 0.9404253363609314, + "confidence": 0.940425455570221, "cells": [ { "index": 0, @@ -167510,7 +167510,7 @@ "b": 639.66301, "coord_origin": "TOPLEFT" }, - "confidence": 0.7700252532958984, + "confidence": 0.7700253129005432, "cells": [ { "index": 1, @@ -167556,7 +167556,7 @@ "b": 302.16061, "coord_origin": "TOPLEFT" }, - "confidence": 0.8532665967941284, + "confidence": 0.8532664775848389, "cells": [ { "index": 2, @@ -167677,7 +167677,7 @@ "b": 386.47198, "coord_origin": "TOPLEFT" }, - "confidence": 0.7157140374183655, + "confidence": 0.7157137989997864, "cells": [ { "index": 6, @@ -167773,7 +167773,7 @@ "b": 541.63406, "coord_origin": "TOPLEFT" }, - "confidence": 0.9518947005271912, + "confidence": 0.9518944621086121, "cells": [ { "index": 9, @@ -168119,7 +168119,7 @@ "b": 601.5119, "coord_origin": "TOPLEFT" }, - "confidence": 0.8230002522468567, + "confidence": 0.8230006694793701, "cells": [ { "index": 22, @@ -168371,7 +168371,7 @@ "b": 140.46002, "coord_origin": "TOPLEFT" }, - "confidence": 0.7128154635429382, + "confidence": 0.7128158211708069, "cells": [ { "index": 27, @@ -168442,7 +168442,7 @@ "b": 266.83196999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.8400377631187439, + "confidence": 0.8400377035140991, "cells": [ { "index": 29, @@ -168609,7 +168609,7 @@ "b": 378.85199, "coord_origin": "TOPLEFT" }, - "confidence": 0.9064874053001404, + "confidence": 0.9064872860908508, "cells": [ { "index": 34, @@ -168901,7 +168901,7 @@ "b": 388.57095, "coord_origin": "TOPLEFT" }, - "confidence": 0.9799742698669434, + "confidence": 0.9799743890762329, "cells": [ { "index": 44, @@ -169095,7 +169095,7 @@ "b": 54.191585540771484, "coord_origin": "TOPLEFT" }, - "confidence": 0.9404253363609314, + "confidence": 0.940425455570221, "cells": [ { "index": 0, @@ -169186,7 +169186,7 @@ "b": 302.16061, "coord_origin": "TOPLEFT" }, - "confidence": 0.8532665967941284, + "confidence": 0.8532664775848389, "cells": [ { "index": 2, @@ -169307,7 +169307,7 @@ "b": 386.47198, "coord_origin": "TOPLEFT" }, - "confidence": 0.7157140374183655, + "confidence": 0.7157137989997864, "cells": [ { "index": 6, @@ -169403,7 +169403,7 @@ "b": 541.63406, "coord_origin": "TOPLEFT" }, - "confidence": 0.9518947005271912, + "confidence": 0.9518944621086121, "cells": [ { "index": 9, @@ -169749,7 +169749,7 @@ "b": 601.5119, "coord_origin": "TOPLEFT" }, - "confidence": 0.8230002522468567, + "confidence": 0.8230006694793701, "cells": [ { "index": 22, @@ -170001,7 +170001,7 @@ "b": 140.46002, "coord_origin": "TOPLEFT" }, - "confidence": 0.7128154635429382, + "confidence": 0.7128158211708069, "cells": [ { "index": 27, @@ -170072,7 +170072,7 @@ "b": 266.83196999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.8400377631187439, + "confidence": 0.8400377035140991, "cells": [ { "index": 29, @@ -170239,7 +170239,7 @@ "b": 378.85199, "coord_origin": "TOPLEFT" }, - "confidence": 0.9064874053001404, + "confidence": 0.9064872860908508, "cells": [ { "index": 34, @@ -170531,7 +170531,7 @@ "b": 388.57095, "coord_origin": "TOPLEFT" }, - "confidence": 0.9799742698669434, + "confidence": 0.9799743890762329, "cells": [ { "index": 44, @@ -170725,7 +170725,7 @@ "b": 639.66301, "coord_origin": "TOPLEFT" }, - "confidence": 0.7700252532958984, + "confidence": 0.7700253129005432, "cells": [ { "index": 1, diff --git a/tests/data/groundtruth/docling_v1/right_to_left_01.pages.json b/tests/data/groundtruth/docling_v1/right_to_left_01.pages.json index dc5e215..c86f095 100644 --- a/tests/data/groundtruth/docling_v1/right_to_left_01.pages.json +++ b/tests/data/groundtruth/docling_v1/right_to_left_01.pages.json @@ -1171,7 +1171,7 @@ "b": 295.08200000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9547483325004578, + "confidence": 0.9547481536865234, "cells": [ { "index": 17, @@ -1311,7 +1311,7 @@ "b": 350.522, "coord_origin": "TOPLEFT" }, - "confidence": 0.9672117233276367, + "confidence": 0.9672118425369263, "cells": [ { "index": 22, @@ -1971,7 +1971,7 @@ "b": 295.08200000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9547483325004578, + "confidence": 0.9547481536865234, "cells": [ { "index": 17, @@ -2117,7 +2117,7 @@ "b": 350.522, "coord_origin": "TOPLEFT" }, - "confidence": 0.9672117233276367, + "confidence": 0.9672118425369263, "cells": [ { "index": 22, @@ -2770,7 +2770,7 @@ "b": 295.08200000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9547483325004578, + "confidence": 0.9547481536865234, "cells": [ { "index": 17, @@ -2916,7 +2916,7 @@ "b": 350.522, "coord_origin": "TOPLEFT" }, - "confidence": 0.9672117233276367, + "confidence": 0.9672118425369263, "cells": [ { "index": 22, diff --git a/tests/data/groundtruth/docling_v1/right_to_left_02.pages.json b/tests/data/groundtruth/docling_v1/right_to_left_02.pages.json index 6ebc101..f1bb5a6 100644 --- a/tests/data/groundtruth/docling_v1/right_to_left_02.pages.json +++ b/tests/data/groundtruth/docling_v1/right_to_left_02.pages.json @@ -5951,7 +5951,7 @@ "b": 465.596681609368, "coord_origin": "TOPLEFT" }, - "confidence": 0.9393879771232605, + "confidence": 0.93938809633255, "cells": [ { "index": 77, @@ -7406,7 +7406,7 @@ "b": 534.1167018462124, "coord_origin": "TOPLEFT" }, - "confidence": 0.5769620537757874, + "confidence": 0.5769621729850769, "cells": [ { "index": 134, @@ -8046,7 +8046,7 @@ "b": 650.6431884765625, "coord_origin": "TOPLEFT" }, - "confidence": 0.6444889903068542, + "confidence": 0.6444893479347229, "cells": [], "children": [] } @@ -10042,7 +10042,7 @@ "b": 465.596681609368, "coord_origin": "TOPLEFT" }, - "confidence": 0.9393879771232605, + "confidence": 0.93938809633255, "cells": [ { "index": 77, @@ -11509,7 +11509,7 @@ "b": 534.1167018462124, "coord_origin": "TOPLEFT" }, - "confidence": 0.5769620537757874, + "confidence": 0.5769621729850769, "cells": [ { "index": 134, @@ -12155,7 +12155,7 @@ "b": 650.6431884765625, "coord_origin": "TOPLEFT" }, - "confidence": 0.6444889903068542, + "confidence": 0.6444893479347229, "cells": [], "children": [] }, @@ -14148,7 +14148,7 @@ "b": 465.596681609368, "coord_origin": "TOPLEFT" }, - "confidence": 0.9393879771232605, + "confidence": 0.93938809633255, "cells": [ { "index": 77, @@ -15615,7 +15615,7 @@ "b": 534.1167018462124, "coord_origin": "TOPLEFT" }, - "confidence": 0.5769620537757874, + "confidence": 0.5769621729850769, "cells": [ { "index": 134, @@ -16261,7 +16261,7 @@ "b": 650.6431884765625, "coord_origin": "TOPLEFT" }, - "confidence": 0.6444889903068542, + "confidence": 0.6444893479347229, "cells": [], "children": [] }, diff --git a/tests/data/groundtruth/docling_v1/right_to_left_03.json b/tests/data/groundtruth/docling_v1/right_to_left_03.json index a104352..9ee9f81 100644 --- a/tests/data/groundtruth/docling_v1/right_to_left_03.json +++ b/tests/data/groundtruth/docling_v1/right_to_left_03.json @@ -744,7 +744,7 @@ 388.5767822265625, 739.034423828125, 482.4759216308594, - 806.0041046142578 + 806.0040969848633 ], "page": 1, "span": [ diff --git a/tests/data/groundtruth/docling_v1/right_to_left_03.pages.json b/tests/data/groundtruth/docling_v1/right_to_left_03.pages.json index 614437c..85f3e29 100644 --- a/tests/data/groundtruth/docling_v1/right_to_left_03.pages.json +++ b/tests/data/groundtruth/docling_v1/right_to_left_03.pages.json @@ -1391,7 +1391,7 @@ "label": "picture", "bbox": { "l": 388.5767822265625, - "t": 36.03587341308594, + "t": 36.03588104248047, "r": 482.4759216308594, "b": 103.00555419921875, "coord_origin": "TOPLEFT" @@ -1477,7 +1477,7 @@ "b": 81.03008981017001, "coord_origin": "TOPLEFT" }, - "confidence": 0.6917961239814758, + "confidence": 0.6917959451675415, "cells": [ { "index": 2, @@ -1517,7 +1517,7 @@ "b": 790.0379791491694, "coord_origin": "TOPLEFT" }, - "confidence": 0.899228036403656, + "confidence": 0.8992282152175903, "cells": [ { "index": 3, @@ -1597,7 +1597,7 @@ "b": 323.44982924225053, "coord_origin": "TOPLEFT" }, - "confidence": 0.6362584233283997, + "confidence": 0.6362582445144653, "cells": [ { "index": 5, @@ -2361,7 +2361,7 @@ "b": 179.2998695799522, "coord_origin": "TOPLEFT" }, - "confidence": 0.7258325815200806, + "confidence": 0.7258322834968567, "cells": [ { "index": 5, @@ -2891,7 +2891,7 @@ "b": 233.17986945372706, "coord_origin": "TOPLEFT" }, - "confidence": 0.8121814727783203, + "confidence": 0.8121819496154785, "cells": [ { "index": 25, @@ -2931,7 +2931,7 @@ "b": 228.73998946412837, "coord_origin": "TOPLEFT" }, - "confidence": 0.7672220468521118, + "confidence": 0.7672221660614014, "cells": [ { "index": 26, @@ -2971,7 +2971,7 @@ "b": 255.88982940052404, "coord_origin": "TOPLEFT" }, - "confidence": 0.8320456743240356, + "confidence": 0.8320454955101013, "cells": [ { "index": 27, @@ -3011,7 +3011,7 @@ "b": 251.44994941092557, "coord_origin": "TOPLEFT" }, - "confidence": 0.5538824796676636, + "confidence": 0.5538817644119263, "cells": [ { "index": 28, @@ -3051,7 +3051,7 @@ "b": 278.5698293473914, "coord_origin": "TOPLEFT" }, - "confidence": 0.7909000515937805, + "confidence": 0.7908995151519775, "cells": [ { "index": 29, @@ -3131,7 +3131,7 @@ "b": 323.44982924225053, "coord_origin": "TOPLEFT" }, - "confidence": 0.6534578204154968, + "confidence": 0.6534579396247864, "cells": [ { "index": 31, @@ -3236,7 +3236,7 @@ "b": 296.80999930466, "coord_origin": "TOPLEFT" }, - "confidence": 0.5417144298553467, + "confidence": 0.5417138934135437, "cells": [ { "index": 35, @@ -3318,7 +3318,7 @@ "b": 596.0198686036978, "coord_origin": "TOPLEFT" }, - "confidence": 0.719137966632843, + "confidence": 0.7191378474235535, "cells": [ { "index": 37, @@ -3822,7 +3822,7 @@ "b": 386.56997909437825, "coord_origin": "TOPLEFT" }, - "confidence": 0.8262879252433777, + "confidence": 0.8262876868247986, "cells": [ { "index": 38, @@ -3862,7 +3862,7 @@ "b": 413.70983903079747, "coord_origin": "TOPLEFT" }, - "confidence": 0.7766718864440918, + "confidence": 0.7766715884208679, "cells": [ { "index": 39, @@ -3902,7 +3902,7 @@ "b": 409.26995904119883, "coord_origin": "TOPLEFT" }, - "confidence": 0.8204737901687622, + "confidence": 0.8204739093780518, "cells": [ { "index": 40, @@ -3942,7 +3942,7 @@ "b": 436.3898589776647, "coord_origin": "TOPLEFT" }, - "confidence": 0.7670677900314331, + "confidence": 0.7670676708221436, "cells": [ { "index": 41, @@ -3982,7 +3982,7 @@ "b": 432.0699789877849, "coord_origin": "TOPLEFT" }, - "confidence": 0.8048340082168579, + "confidence": 0.8048339486122131, "cells": [ { "index": 42, @@ -4062,7 +4062,7 @@ "b": 454.7499689346523, "coord_origin": "TOPLEFT" }, - "confidence": 0.827337384223938, + "confidence": 0.8273372054100037, "cells": [ { "index": 44, @@ -4102,7 +4102,7 @@ "b": 481.8698388711183, "coord_origin": "TOPLEFT" }, - "confidence": 0.7342236638069153, + "confidence": 0.7342240214347839, "cells": [ { "index": 45, @@ -4142,7 +4142,7 @@ "b": 477.42995888151955, "coord_origin": "TOPLEFT" }, - "confidence": 0.8411222696304321, + "confidence": 0.8411223888397217, "cells": [ { "index": 46, @@ -4182,7 +4182,7 @@ "b": 528.3098487623228, "coord_origin": "TOPLEFT" }, - "confidence": 0.7251589894294739, + "confidence": 0.7251590490341187, "cells": [ { "index": 47, @@ -4247,7 +4247,7 @@ "b": 501.78997882445117, "coord_origin": "TOPLEFT" }, - "confidence": 0.7848678827285767, + "confidence": 0.7848676443099976, "cells": [ { "index": 49, @@ -4287,7 +4287,7 @@ "b": 573.2198486571116, "coord_origin": "TOPLEFT" }, - "confidence": 0.7586438059806824, + "confidence": 0.758643627166748, "cells": [ { "index": 50, @@ -4352,7 +4352,7 @@ "b": 546.69997871924, "coord_origin": "TOPLEFT" }, - "confidence": 0.7897851467132568, + "confidence": 0.7897858619689941, "cells": [ { "index": 52, @@ -4432,7 +4432,7 @@ "b": 591.5799886140991, "coord_origin": "TOPLEFT" }, - "confidence": 0.8144810795783997, + "confidence": 0.8144806027412415, "cells": [ { "index": 54, @@ -4484,7 +4484,7 @@ "label": "picture", "bbox": { "l": 388.5767822265625, - "t": 36.03587341308594, + "t": 36.03588104248047, "r": 482.4759216308594, "b": 103.00555419921875, "coord_origin": "TOPLEFT" @@ -4580,7 +4580,7 @@ "b": 81.03008981017001, "coord_origin": "TOPLEFT" }, - "confidence": 0.6917961239814758, + "confidence": 0.6917959451675415, "cells": [ { "index": 2, @@ -4626,7 +4626,7 @@ "b": 790.0379791491694, "coord_origin": "TOPLEFT" }, - "confidence": 0.899228036403656, + "confidence": 0.8992282152175903, "cells": [ { "index": 3, @@ -4718,7 +4718,7 @@ "b": 323.44982924225053, "coord_origin": "TOPLEFT" }, - "confidence": 0.6362584233283997, + "confidence": 0.6362582445144653, "cells": [ { "index": 5, @@ -5482,7 +5482,7 @@ "b": 179.2998695799522, "coord_origin": "TOPLEFT" }, - "confidence": 0.7258325815200806, + "confidence": 0.7258322834968567, "cells": [ { "index": 5, @@ -6012,7 +6012,7 @@ "b": 233.17986945372706, "coord_origin": "TOPLEFT" }, - "confidence": 0.8121814727783203, + "confidence": 0.8121819496154785, "cells": [ { "index": 25, @@ -6052,7 +6052,7 @@ "b": 228.73998946412837, "coord_origin": "TOPLEFT" }, - "confidence": 0.7672220468521118, + "confidence": 0.7672221660614014, "cells": [ { "index": 26, @@ -6092,7 +6092,7 @@ "b": 255.88982940052404, "coord_origin": "TOPLEFT" }, - "confidence": 0.8320456743240356, + "confidence": 0.8320454955101013, "cells": [ { "index": 27, @@ -6132,7 +6132,7 @@ "b": 251.44994941092557, "coord_origin": "TOPLEFT" }, - "confidence": 0.5538824796676636, + "confidence": 0.5538817644119263, "cells": [ { "index": 28, @@ -6172,7 +6172,7 @@ "b": 278.5698293473914, "coord_origin": "TOPLEFT" }, - "confidence": 0.7909000515937805, + "confidence": 0.7908995151519775, "cells": [ { "index": 29, @@ -6252,7 +6252,7 @@ "b": 323.44982924225053, "coord_origin": "TOPLEFT" }, - "confidence": 0.6534578204154968, + "confidence": 0.6534579396247864, "cells": [ { "index": 31, @@ -6357,7 +6357,7 @@ "b": 296.80999930466, "coord_origin": "TOPLEFT" }, - "confidence": 0.5417144298553467, + "confidence": 0.5417138934135437, "cells": [ { "index": 35, @@ -6451,7 +6451,7 @@ "b": 596.0198686036978, "coord_origin": "TOPLEFT" }, - "confidence": 0.719137966632843, + "confidence": 0.7191378474235535, "cells": [ { "index": 37, @@ -6955,7 +6955,7 @@ "b": 386.56997909437825, "coord_origin": "TOPLEFT" }, - "confidence": 0.8262879252433777, + "confidence": 0.8262876868247986, "cells": [ { "index": 38, @@ -6995,7 +6995,7 @@ "b": 413.70983903079747, "coord_origin": "TOPLEFT" }, - "confidence": 0.7766718864440918, + "confidence": 0.7766715884208679, "cells": [ { "index": 39, @@ -7035,7 +7035,7 @@ "b": 409.26995904119883, "coord_origin": "TOPLEFT" }, - "confidence": 0.8204737901687622, + "confidence": 0.8204739093780518, "cells": [ { "index": 40, @@ -7075,7 +7075,7 @@ "b": 436.3898589776647, "coord_origin": "TOPLEFT" }, - "confidence": 0.7670677900314331, + "confidence": 0.7670676708221436, "cells": [ { "index": 41, @@ -7115,7 +7115,7 @@ "b": 432.0699789877849, "coord_origin": "TOPLEFT" }, - "confidence": 0.8048340082168579, + "confidence": 0.8048339486122131, "cells": [ { "index": 42, @@ -7195,7 +7195,7 @@ "b": 454.7499689346523, "coord_origin": "TOPLEFT" }, - "confidence": 0.827337384223938, + "confidence": 0.8273372054100037, "cells": [ { "index": 44, @@ -7235,7 +7235,7 @@ "b": 481.8698388711183, "coord_origin": "TOPLEFT" }, - "confidence": 0.7342236638069153, + "confidence": 0.7342240214347839, "cells": [ { "index": 45, @@ -7275,7 +7275,7 @@ "b": 477.42995888151955, "coord_origin": "TOPLEFT" }, - "confidence": 0.8411222696304321, + "confidence": 0.8411223888397217, "cells": [ { "index": 46, @@ -7315,7 +7315,7 @@ "b": 528.3098487623228, "coord_origin": "TOPLEFT" }, - "confidence": 0.7251589894294739, + "confidence": 0.7251590490341187, "cells": [ { "index": 47, @@ -7380,7 +7380,7 @@ "b": 501.78997882445117, "coord_origin": "TOPLEFT" }, - "confidence": 0.7848678827285767, + "confidence": 0.7848676443099976, "cells": [ { "index": 49, @@ -7420,7 +7420,7 @@ "b": 573.2198486571116, "coord_origin": "TOPLEFT" }, - "confidence": 0.7586438059806824, + "confidence": 0.758643627166748, "cells": [ { "index": 50, @@ -7485,7 +7485,7 @@ "b": 546.69997871924, "coord_origin": "TOPLEFT" }, - "confidence": 0.7897851467132568, + "confidence": 0.7897858619689941, "cells": [ { "index": 52, @@ -7565,7 +7565,7 @@ "b": 591.5799886140991, "coord_origin": "TOPLEFT" }, - "confidence": 0.8144810795783997, + "confidence": 0.8144806027412415, "cells": [ { "index": 54, @@ -7610,7 +7610,7 @@ "label": "picture", "bbox": { "l": 388.5767822265625, - "t": 36.03587341308594, + "t": 36.03588104248047, "r": 482.4759216308594, "b": 103.00555419921875, "coord_origin": "TOPLEFT" @@ -7706,7 +7706,7 @@ "b": 81.03008981017001, "coord_origin": "TOPLEFT" }, - "confidence": 0.6917961239814758, + "confidence": 0.6917959451675415, "cells": [ { "index": 2, @@ -7798,7 +7798,7 @@ "b": 323.44982924225053, "coord_origin": "TOPLEFT" }, - "confidence": 0.6362584233283997, + "confidence": 0.6362582445144653, "cells": [ { "index": 5, @@ -8562,7 +8562,7 @@ "b": 179.2998695799522, "coord_origin": "TOPLEFT" }, - "confidence": 0.7258325815200806, + "confidence": 0.7258322834968567, "cells": [ { "index": 5, @@ -9092,7 +9092,7 @@ "b": 233.17986945372706, "coord_origin": "TOPLEFT" }, - "confidence": 0.8121814727783203, + "confidence": 0.8121819496154785, "cells": [ { "index": 25, @@ -9132,7 +9132,7 @@ "b": 228.73998946412837, "coord_origin": "TOPLEFT" }, - "confidence": 0.7672220468521118, + "confidence": 0.7672221660614014, "cells": [ { "index": 26, @@ -9172,7 +9172,7 @@ "b": 255.88982940052404, "coord_origin": "TOPLEFT" }, - "confidence": 0.8320456743240356, + "confidence": 0.8320454955101013, "cells": [ { "index": 27, @@ -9212,7 +9212,7 @@ "b": 251.44994941092557, "coord_origin": "TOPLEFT" }, - "confidence": 0.5538824796676636, + "confidence": 0.5538817644119263, "cells": [ { "index": 28, @@ -9252,7 +9252,7 @@ "b": 278.5698293473914, "coord_origin": "TOPLEFT" }, - "confidence": 0.7909000515937805, + "confidence": 0.7908995151519775, "cells": [ { "index": 29, @@ -9332,7 +9332,7 @@ "b": 323.44982924225053, "coord_origin": "TOPLEFT" }, - "confidence": 0.6534578204154968, + "confidence": 0.6534579396247864, "cells": [ { "index": 31, @@ -9437,7 +9437,7 @@ "b": 296.80999930466, "coord_origin": "TOPLEFT" }, - "confidence": 0.5417144298553467, + "confidence": 0.5417138934135437, "cells": [ { "index": 35, @@ -9531,7 +9531,7 @@ "b": 596.0198686036978, "coord_origin": "TOPLEFT" }, - "confidence": 0.719137966632843, + "confidence": 0.7191378474235535, "cells": [ { "index": 37, @@ -10035,7 +10035,7 @@ "b": 386.56997909437825, "coord_origin": "TOPLEFT" }, - "confidence": 0.8262879252433777, + "confidence": 0.8262876868247986, "cells": [ { "index": 38, @@ -10075,7 +10075,7 @@ "b": 413.70983903079747, "coord_origin": "TOPLEFT" }, - "confidence": 0.7766718864440918, + "confidence": 0.7766715884208679, "cells": [ { "index": 39, @@ -10115,7 +10115,7 @@ "b": 409.26995904119883, "coord_origin": "TOPLEFT" }, - "confidence": 0.8204737901687622, + "confidence": 0.8204739093780518, "cells": [ { "index": 40, @@ -10155,7 +10155,7 @@ "b": 436.3898589776647, "coord_origin": "TOPLEFT" }, - "confidence": 0.7670677900314331, + "confidence": 0.7670676708221436, "cells": [ { "index": 41, @@ -10195,7 +10195,7 @@ "b": 432.0699789877849, "coord_origin": "TOPLEFT" }, - "confidence": 0.8048340082168579, + "confidence": 0.8048339486122131, "cells": [ { "index": 42, @@ -10275,7 +10275,7 @@ "b": 454.7499689346523, "coord_origin": "TOPLEFT" }, - "confidence": 0.827337384223938, + "confidence": 0.8273372054100037, "cells": [ { "index": 44, @@ -10315,7 +10315,7 @@ "b": 481.8698388711183, "coord_origin": "TOPLEFT" }, - "confidence": 0.7342236638069153, + "confidence": 0.7342240214347839, "cells": [ { "index": 45, @@ -10355,7 +10355,7 @@ "b": 477.42995888151955, "coord_origin": "TOPLEFT" }, - "confidence": 0.8411222696304321, + "confidence": 0.8411223888397217, "cells": [ { "index": 46, @@ -10395,7 +10395,7 @@ "b": 528.3098487623228, "coord_origin": "TOPLEFT" }, - "confidence": 0.7251589894294739, + "confidence": 0.7251590490341187, "cells": [ { "index": 47, @@ -10460,7 +10460,7 @@ "b": 501.78997882445117, "coord_origin": "TOPLEFT" }, - "confidence": 0.7848678827285767, + "confidence": 0.7848676443099976, "cells": [ { "index": 49, @@ -10500,7 +10500,7 @@ "b": 573.2198486571116, "coord_origin": "TOPLEFT" }, - "confidence": 0.7586438059806824, + "confidence": 0.758643627166748, "cells": [ { "index": 50, @@ -10565,7 +10565,7 @@ "b": 546.69997871924, "coord_origin": "TOPLEFT" }, - "confidence": 0.7897851467132568, + "confidence": 0.7897858619689941, "cells": [ { "index": 52, @@ -10645,7 +10645,7 @@ "b": 591.5799886140991, "coord_origin": "TOPLEFT" }, - "confidence": 0.8144810795783997, + "confidence": 0.8144806027412415, "cells": [ { "index": 54, @@ -10695,7 +10695,7 @@ "b": 790.0379791491694, "coord_origin": "TOPLEFT" }, - "confidence": 0.899228036403656, + "confidence": 0.8992282152175903, "cells": [ { "index": 3, diff --git a/tests/data/groundtruth/docling_v2/2203.01017v2.json b/tests/data/groundtruth/docling_v2/2203.01017v2.json index e926e6a..98508a6 100644 --- a/tests/data/groundtruth/docling_v2/2203.01017v2.json +++ b/tests/data/groundtruth/docling_v2/2203.01017v2.json @@ -16094,9 +16094,9 @@ "page_no": 1, "bbox": { "l": 315.65362548828125, - "t": 563.276611328125, + "t": 563.2765655517578, "r": 537.1475219726562, - "b": 489.1985778808594, + "b": 489.19854736328125, "coord_origin": "BOTTOMLEFT" }, "charspan": [ @@ -16443,9 +16443,9 @@ "page_no": 3, "bbox": { "l": 312.10369873046875, - "t": 713.5591354370117, + "t": 713.5591125488281, "r": 550.38916015625, - "b": 541.3901519775391, + "b": 541.3901214599609, "coord_origin": "BOTTOMLEFT" }, "charspan": [ @@ -16658,7 +16658,7 @@ "page_no": 5, "bbox": { "l": 74.30525970458984, - "t": 714.0887985229492, + "t": 714.0887908935547, "r": 519.9801025390625, "b": 608.2984924316406, "coord_origin": "BOTTOMLEFT" @@ -16829,7 +16829,7 @@ "bbox": { "l": 53.03328323364258, "t": 534.3346557617188, - "r": 285.3731689453125, + "r": 285.3731384277344, "b": 284.3311462402344, "coord_origin": "BOTTOMLEFT" }, @@ -16862,7 +16862,7 @@ "page_no": 8, "bbox": { "l": 49.97503662109375, - "t": 688.2873382568359, + "t": 688.2873153686523, "r": 301.6335754394531, "b": 604.4210662841797, "coord_origin": "BOTTOMLEFT" @@ -16895,7 +16895,7 @@ { "page_no": 8, "bbox": { - "l": 305.5836486816406, + "l": 305.58367919921875, "t": 693.3458404541016, "r": 554.8258666992188, "b": 611.3732452392578, @@ -16978,9 +16978,9 @@ "page_no": 8, "bbox": { "l": 216.76925659179688, - "t": 411.5093688964844, + "t": 411.5093994140625, "r": 375.7829284667969, - "b": 348.65301513671875, + "b": 348.6529541015625, "coord_origin": "BOTTOMLEFT" }, "charspan": [ @@ -17177,9 +17177,9 @@ { "page_no": 8, "bbox": { - "l": 383.1364440917969, - "t": 410.7686767578125, - "r": 542.1132202148438, + "l": 383.1363830566406, + "t": 410.7687072753906, + "r": 542.1131591796875, "b": 349.2250671386719, "coord_origin": "BOTTOMLEFT" }, @@ -17482,7 +17482,7 @@ { "page_no": 14, "bbox": { - "l": 51.15378952026367, + "l": 51.153778076171875, "t": 687.6914825439453, "r": 282.8598937988281, "b": 447.09332275390625, @@ -17580,10 +17580,10 @@ { "page_no": 15, "bbox": { - "l": 55.116363525390625, + "l": 55.11635208129883, "t": 655.7449951171875, "r": 279.370849609375, - "b": 542.6654510498047, + "b": 542.6654968261719, "coord_origin": "BOTTOMLEFT" }, "charspan": [ @@ -17701,9 +17701,9 @@ "page_no": 15, "bbox": { "l": 323.46868896484375, - "t": 429.5491638183594, + "t": 429.5492248535156, "r": 525.9569091796875, - "b": 327.739501953125, + "b": 327.73956298828125, "coord_origin": "BOTTOMLEFT" }, "charspan": [ @@ -17765,7 +17765,7 @@ "page_no": 16, "bbox": { "l": 66.79948425292969, - "t": 538.3836822509766, + "t": 538.3837127685547, "r": 528.5565795898438, "b": 293.8616027832031, "coord_origin": "BOTTOMLEFT" @@ -17801,9 +17801,9 @@ "page_no": 1, "bbox": { "l": 315.65362548828125, - "t": 563.276611328125, + "t": 563.2765655517578, "r": 537.1475219726562, - "b": 489.1985778808594, + "b": 489.19854736328125, "coord_origin": "BOTTOMLEFT" }, "charspan": [ @@ -18771,9 +18771,9 @@ { "page_no": 4, "bbox": { - "l": 310.67584228515625, - "t": 718.8061141967773, - "r": 542.9547119140625, + "l": 310.6757507324219, + "t": 718.8061218261719, + "r": 542.9546508789062, "b": 636.7794799804688, "coord_origin": "BOTTOMLEFT" }, @@ -22946,7 +22946,7 @@ "page_no": 7, "bbox": { "l": 332.9688720703125, - "t": 251.7164306640625, + "t": 251.71649169921875, "r": 520.942138671875, "b": 148.73028564453125, "coord_origin": "BOTTOMLEFT" @@ -24069,9 +24069,9 @@ "page_no": 8, "bbox": { "l": 53.62853240966797, - "t": 573.0514221191406, + "t": 573.0514526367188, "r": 298.5574951171875, - "b": 499.60003662109375, + "b": 499.6000061035156, "coord_origin": "BOTTOMLEFT" }, "charspan": [ @@ -27719,7 +27719,7 @@ { "page_no": 13, "bbox": { - "l": 83.31756591796875, + "l": 83.31759643554688, "t": 395.9864501953125, "r": 248.873046875, "b": 304.7430114746094, @@ -27759,9 +27759,9 @@ "page_no": 13, "bbox": { "l": 310.3294372558594, - "t": 690.8223266601562, + "t": 690.8223342895508, "r": 555.8338623046875, - "b": 655.8524780273438, + "b": 655.8524932861328, "coord_origin": "BOTTOMLEFT" }, "charspan": [ @@ -27798,9 +27798,9 @@ "page_no": 13, "bbox": { "l": 309.9566345214844, - "t": 637.3855133056641, + "t": 637.3854827880859, "r": 555.7466430664062, - "b": 607.2774658203125, + "b": 607.2774353027344, "coord_origin": "BOTTOMLEFT" }, "charspan": [ @@ -27832,10 +27832,10 @@ { "page_no": 13, "bbox": { - "l": 309.9635314941406, - "t": 596.2945861816406, - "r": 555.7054443359375, - "b": 558.4485473632812, + "l": 309.96356201171875, + "t": 596.2945098876953, + "r": 555.7053833007812, + "b": 558.4485168457031, "coord_origin": "BOTTOMLEFT" }, "charspan": [ @@ -28050,10 +28050,10 @@ { "page_no": 14, "bbox": { - "l": 51.72642135620117, - "t": 518.3907165527344, - "r": 283.114013671875, - "b": 447.7554931640625, + "l": 51.726383209228516, + "t": 518.3907470703125, + "r": 283.1140441894531, + "b": 447.7555236816406, "coord_origin": "BOTTOMLEFT" }, "charspan": [ @@ -28085,7 +28085,7 @@ { "page_no": 14, "bbox": { - "l": 51.434879302978516, + "l": 51.43488693237305, "t": 338.51251220703125, "r": 310.7267150878906, "b": 300.17974853515625, @@ -28155,7 +28155,7 @@ { "page_no": 14, "bbox": { - "l": 51.27280807495117, + "l": 51.2728271484375, "t": 238.271484375, "r": 311.0897216796875, "b": 200.086669921875, @@ -28408,9 +28408,9 @@ { "page_no": 14, "bbox": { - "l": 319.06494140625, - "t": 182.1591796875, - "r": 533.77392578125, + "l": 319.0649719238281, + "t": 182.1590576171875, + "r": 533.7738647460938, "b": 122.80792236328125, "coord_origin": "BOTTOMLEFT" }, @@ -28443,10 +28443,10 @@ { "page_no": 15, "bbox": { - "l": 55.116363525390625, + "l": 55.11635208129883, "t": 655.7449951171875, "r": 279.370849609375, - "b": 542.6654510498047, + "b": 542.6654968261719, "coord_origin": "BOTTOMLEFT" }, "charspan": [ @@ -28517,10 +28517,10 @@ { "page_no": 15, "bbox": { - "l": 323.0059509277344, - "t": 670.4528503417969, - "r": 525.95166015625, - "b": 569.0885925292969, + "l": 323.0059814453125, + "t": 670.4528656005859, + "r": 525.9517211914062, + "b": 569.0885772705078, "coord_origin": "BOTTOMLEFT" }, "charspan": [ @@ -28557,9 +28557,9 @@ "page_no": 15, "bbox": { "l": 323.384765625, - "t": 550.0270538330078, + "t": 550.0270690917969, "r": 526.1268920898438, - "b": 447.90789794921875, + "b": 447.9078674316406, "coord_origin": "BOTTOMLEFT" }, "charspan": [ @@ -28592,9 +28592,9 @@ "page_no": 15, "bbox": { "l": 323.46868896484375, - "t": 429.5491638183594, + "t": 429.5492248535156, "r": 525.9569091796875, - "b": 327.739501953125, + "b": 327.73956298828125, "coord_origin": "BOTTOMLEFT" }, "charspan": [ diff --git a/tests/data/groundtruth/docling_v2/2203.01017v2.pages.json b/tests/data/groundtruth/docling_v2/2203.01017v2.pages.json index 6b07b6f..9acf05b 100644 --- a/tests/data/groundtruth/docling_v2/2203.01017v2.pages.json +++ b/tests/data/groundtruth/docling_v2/2203.01017v2.pages.json @@ -3171,7 +3171,7 @@ "b": 119.93133999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.8868067860603333, + "confidence": 0.8868065476417542, "cells": [ { "index": 0, @@ -3211,7 +3211,7 @@ "b": 171.32037000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.7586215734481812, + "confidence": 0.758621335029602, "cells": [ { "index": 1, @@ -3276,7 +3276,7 @@ "b": 184.42553999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.4854728579521179, + "confidence": 0.48547330498695374, "cells": [ { "index": 3, @@ -3390,7 +3390,7 @@ "b": 184.42553999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9096331596374512, + "confidence": 0.9096331000328064, "cells": [ { "index": 3, @@ -3507,7 +3507,7 @@ "b": 226.23071000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9258671402931213, + "confidence": 0.9258671998977661, "cells": [ { "index": 7, @@ -4227,7 +4227,7 @@ "b": 713.151779, "coord_origin": "TOPLEFT" }, - "confidence": 0.9841895699501038, + "confidence": 0.9841894507408142, "cells": [ { "index": 34, @@ -4567,7 +4567,7 @@ "b": 226.75482, "coord_origin": "TOPLEFT" }, - "confidence": 0.6724023818969727, + "confidence": 0.6724020838737488, "cells": [ { "index": 47, @@ -4632,7 +4632,7 @@ "b": 333.2428, "coord_origin": "TOPLEFT" }, - "confidence": 0.5549328923225403, + "confidence": 0.5549331307411194, "cells": [ { "index": 49, @@ -4722,7 +4722,7 @@ "b": 428.93082, "coord_origin": "TOPLEFT" }, - "confidence": 0.5501358509063721, + "confidence": 0.550135612487793, "cells": [ { "index": 52, @@ -4787,7 +4787,7 @@ "b": 410.0494384765625, "coord_origin": "TOPLEFT" }, - "confidence": 0.8742761611938477, + "confidence": 0.8742762207984924, "cells": [ { "index": 54, @@ -6428,7 +6428,7 @@ "b": 496.0290222167969, "coord_origin": "TOPLEFT" }, - "confidence": 0.5088632702827454, + "confidence": 0.5088635683059692, "cells": [ { "index": 76, @@ -8004,7 +8004,7 @@ "b": 496.0290222167969, "coord_origin": "TOPLEFT" }, - "confidence": 0.8056110739707947, + "confidence": 0.8056108951568604, "cells": [ { "index": 76, @@ -9575,12 +9575,12 @@ "label": "picture", "bbox": { "l": 315.65362548828125, - "t": 228.723388671875, + "t": 228.7234344482422, "r": 537.1475219726562, - "b": 302.8014221191406, + "b": 302.80145263671875, "coord_origin": "TOPLEFT" }, - "confidence": 0.608779788017273, + "confidence": 0.6087799668312073, "cells": [ { "index": 97, @@ -9786,12 +9786,12 @@ "label": "table", "bbox": { "l": 315.65362548828125, - "t": 228.723388671875, + "t": 228.7234344482422, "r": 537.1475219726562, - "b": 302.8014221191406, + "b": 302.80145263671875, "coord_origin": "TOPLEFT" }, - "confidence": 0.6515864729881287, + "confidence": 0.6515868902206421, "cells": [ { "index": 97, @@ -10002,7 +10002,7 @@ "b": 559.2729, "coord_origin": "TOPLEFT" }, - "confidence": 0.9214619398117065, + "confidence": 0.921461820602417, "cells": [ { "index": 106, @@ -10497,7 +10497,7 @@ "b": 743.039928, "coord_origin": "TOPLEFT" }, - "confidence": 0.8045893311500549, + "confidence": 0.8045890927314758, "cells": [ { "index": 124, @@ -10537,7 +10537,7 @@ "b": 560.00003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8773143887519836, + "confidence": 0.8773139119148254, "cells": [ { "index": 125, @@ -10585,7 +10585,7 @@ "b": 496.0290222167969, "coord_origin": "TOPLEFT" }, - "confidence": 0.8056110739707947, + "confidence": 0.8056108951568604, "cells": [ { "index": 76, @@ -12578,12 +12578,12 @@ "label": "table", "bbox": { "l": 315.65362548828125, - "t": 228.723388671875, + "t": 228.7234344482422, "r": 537.1475219726562, - "b": 302.8014221191406, + "b": 302.80145263671875, "coord_origin": "TOPLEFT" }, - "confidence": 0.6515864729881287, + "confidence": 0.6515868902206421, "cells": [ { "index": 97, @@ -12857,7 +12857,7 @@ "b": 119.93133999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.8868067860603333, + "confidence": 0.8868065476417542, "cells": [ { "index": 0, @@ -12903,7 +12903,7 @@ "b": 171.32037000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.7586215734481812, + "confidence": 0.758621335029602, "cells": [ { "index": 1, @@ -12974,7 +12974,7 @@ "b": 184.42553999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.4854728579521179, + "confidence": 0.48547330498695374, "cells": [ { "index": 3, @@ -13088,7 +13088,7 @@ "b": 184.42553999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9096331596374512, + "confidence": 0.9096331000328064, "cells": [ { "index": 3, @@ -13211,7 +13211,7 @@ "b": 226.23071000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9258671402931213, + "confidence": 0.9258671998977661, "cells": [ { "index": 7, @@ -13949,7 +13949,7 @@ "b": 713.151779, "coord_origin": "TOPLEFT" }, - "confidence": 0.9841895699501038, + "confidence": 0.9841894507408142, "cells": [ { "index": 34, @@ -14295,7 +14295,7 @@ "b": 226.75482, "coord_origin": "TOPLEFT" }, - "confidence": 0.6724023818969727, + "confidence": 0.6724020838737488, "cells": [ { "index": 47, @@ -14366,7 +14366,7 @@ "b": 333.2428, "coord_origin": "TOPLEFT" }, - "confidence": 0.5549328923225403, + "confidence": 0.5549331307411194, "cells": [ { "index": 49, @@ -14462,7 +14462,7 @@ "b": 428.93082, "coord_origin": "TOPLEFT" }, - "confidence": 0.5501358509063721, + "confidence": 0.550135612487793, "cells": [ { "index": 52, @@ -14533,7 +14533,7 @@ "b": 410.0494384765625, "coord_origin": "TOPLEFT" }, - "confidence": 0.8742761611938477, + "confidence": 0.8742762207984924, "cells": [ { "index": 54, @@ -16184,7 +16184,7 @@ "b": 496.0290222167969, "coord_origin": "TOPLEFT" }, - "confidence": 0.5088632702827454, + "confidence": 0.5088635683059692, "cells": [ { "index": 76, @@ -17770,7 +17770,7 @@ "b": 496.0290222167969, "coord_origin": "TOPLEFT" }, - "confidence": 0.8056110739707947, + "confidence": 0.8056108951568604, "cells": [ { "index": 76, @@ -19763,12 +19763,12 @@ "label": "picture", "bbox": { "l": 315.65362548828125, - "t": 228.723388671875, + "t": 228.7234344482422, "r": 537.1475219726562, - "b": 302.8014221191406, + "b": 302.80145263671875, "coord_origin": "TOPLEFT" }, - "confidence": 0.608779788017273, + "confidence": 0.6087799668312073, "cells": [ { "index": 97, @@ -19984,12 +19984,12 @@ "label": "table", "bbox": { "l": 315.65362548828125, - "t": 228.723388671875, + "t": 228.7234344482422, "r": 537.1475219726562, - "b": 302.8014221191406, + "b": 302.80145263671875, "coord_origin": "TOPLEFT" }, - "confidence": 0.6515864729881287, + "confidence": 0.6515868902206421, "cells": [ { "index": 97, @@ -20255,7 +20255,7 @@ "b": 559.2729, "coord_origin": "TOPLEFT" }, - "confidence": 0.9214619398117065, + "confidence": 0.921461820602417, "cells": [ { "index": 106, @@ -20768,7 +20768,7 @@ "b": 743.039928, "coord_origin": "TOPLEFT" }, - "confidence": 0.8045893311500549, + "confidence": 0.8045890927314758, "cells": [ { "index": 124, @@ -20814,7 +20814,7 @@ "b": 560.00003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8773143887519836, + "confidence": 0.8773139119148254, "cells": [ { "index": 125, @@ -20862,7 +20862,7 @@ "b": 119.93133999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.8868067860603333, + "confidence": 0.8868065476417542, "cells": [ { "index": 0, @@ -20908,7 +20908,7 @@ "b": 171.32037000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.7586215734481812, + "confidence": 0.758621335029602, "cells": [ { "index": 1, @@ -20979,7 +20979,7 @@ "b": 184.42553999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.4854728579521179, + "confidence": 0.48547330498695374, "cells": [ { "index": 3, @@ -21093,7 +21093,7 @@ "b": 184.42553999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9096331596374512, + "confidence": 0.9096331000328064, "cells": [ { "index": 3, @@ -21216,7 +21216,7 @@ "b": 226.23071000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9258671402931213, + "confidence": 0.9258671998977661, "cells": [ { "index": 7, @@ -21954,7 +21954,7 @@ "b": 713.151779, "coord_origin": "TOPLEFT" }, - "confidence": 0.9841895699501038, + "confidence": 0.9841894507408142, "cells": [ { "index": 34, @@ -22300,7 +22300,7 @@ "b": 226.75482, "coord_origin": "TOPLEFT" }, - "confidence": 0.6724023818969727, + "confidence": 0.6724020838737488, "cells": [ { "index": 47, @@ -22371,7 +22371,7 @@ "b": 333.2428, "coord_origin": "TOPLEFT" }, - "confidence": 0.5549328923225403, + "confidence": 0.5549331307411194, "cells": [ { "index": 49, @@ -22467,7 +22467,7 @@ "b": 428.93082, "coord_origin": "TOPLEFT" }, - "confidence": 0.5501358509063721, + "confidence": 0.550135612487793, "cells": [ { "index": 52, @@ -22538,7 +22538,7 @@ "b": 410.0494384765625, "coord_origin": "TOPLEFT" }, - "confidence": 0.8742761611938477, + "confidence": 0.8742762207984924, "cells": [ { "index": 54, @@ -24189,7 +24189,7 @@ "b": 496.0290222167969, "coord_origin": "TOPLEFT" }, - "confidence": 0.5088632702827454, + "confidence": 0.5088635683059692, "cells": [ { "index": 76, @@ -25775,7 +25775,7 @@ "b": 496.0290222167969, "coord_origin": "TOPLEFT" }, - "confidence": 0.8056110739707947, + "confidence": 0.8056108951568604, "cells": [ { "index": 76, @@ -27768,12 +27768,12 @@ "label": "picture", "bbox": { "l": 315.65362548828125, - "t": 228.723388671875, + "t": 228.7234344482422, "r": 537.1475219726562, - "b": 302.8014221191406, + "b": 302.80145263671875, "coord_origin": "TOPLEFT" }, - "confidence": 0.608779788017273, + "confidence": 0.6087799668312073, "cells": [ { "index": 97, @@ -27989,12 +27989,12 @@ "label": "table", "bbox": { "l": 315.65362548828125, - "t": 228.723388671875, + "t": 228.7234344482422, "r": 537.1475219726562, - "b": 302.8014221191406, + "b": 302.80145263671875, "coord_origin": "TOPLEFT" }, - "confidence": 0.6515864729881287, + "confidence": 0.6515868902206421, "cells": [ { "index": 97, @@ -28260,7 +28260,7 @@ "b": 559.2729, "coord_origin": "TOPLEFT" }, - "confidence": 0.9214619398117065, + "confidence": 0.921461820602417, "cells": [ { "index": 106, @@ -28775,7 +28775,7 @@ "b": 743.039928, "coord_origin": "TOPLEFT" }, - "confidence": 0.8045893311500549, + "confidence": 0.8045890927314758, "cells": [ { "index": 124, @@ -28821,7 +28821,7 @@ "b": 560.00003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8773143887519836, + "confidence": 0.8773139119148254, "cells": [ { "index": 125, @@ -33593,7 +33593,7 @@ "b": 592.57295, "coord_origin": "TOPLEFT" }, - "confidence": 0.9802963733673096, + "confidence": 0.98029625415802, "cells": [ { "index": 50, @@ -33873,7 +33873,7 @@ "b": 695.369957, "coord_origin": "TOPLEFT" }, - "confidence": 0.9742533564567566, + "confidence": 0.974253237247467, "cells": [ { "index": 60, @@ -33988,7 +33988,7 @@ "b": 712.721542, "coord_origin": "TOPLEFT" }, - "confidence": 0.895367443561554, + "confidence": 0.8953677415847778, "cells": [ { "index": 64, @@ -34118,7 +34118,7 @@ "b": 132.47968000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.9428724646568298, + "confidence": 0.942872166633606, "cells": [ { "index": 68, @@ -37259,7 +37259,7 @@ "b": 592.57295, "coord_origin": "TOPLEFT" }, - "confidence": 0.9802963733673096, + "confidence": 0.98029625415802, "cells": [ { "index": 50, @@ -37551,7 +37551,7 @@ "b": 695.369957, "coord_origin": "TOPLEFT" }, - "confidence": 0.9742533564567566, + "confidence": 0.974253237247467, "cells": [ { "index": 60, @@ -37672,7 +37672,7 @@ "b": 712.721542, "coord_origin": "TOPLEFT" }, - "confidence": 0.895367443561554, + "confidence": 0.8953677415847778, "cells": [ { "index": 64, @@ -37814,7 +37814,7 @@ "b": 132.47968000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.9428724646568298, + "confidence": 0.942872166633606, "cells": [ { "index": 68, @@ -40972,7 +40972,7 @@ "b": 592.57295, "coord_origin": "TOPLEFT" }, - "confidence": 0.9802963733673096, + "confidence": 0.98029625415802, "cells": [ { "index": 50, @@ -41264,7 +41264,7 @@ "b": 695.369957, "coord_origin": "TOPLEFT" }, - "confidence": 0.9742533564567566, + "confidence": 0.974253237247467, "cells": [ { "index": 60, @@ -41385,7 +41385,7 @@ "b": 712.721542, "coord_origin": "TOPLEFT" }, - "confidence": 0.895367443561554, + "confidence": 0.8953677415847778, "cells": [ { "index": 64, @@ -41527,7 +41527,7 @@ "b": 132.47968000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.9428724646568298, + "confidence": 0.942872166633606, "cells": [ { "index": 68, @@ -46695,7 +46695,7 @@ "b": 84.11492999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.8767216801643372, + "confidence": 0.8767215609550476, "cells": [ { "index": 0, @@ -48405,9 +48405,9 @@ "label": "picture", "bbox": { "l": 312.10369873046875, - "t": 78.44086456298828, + "t": 78.44088745117188, "r": 550.38916015625, - "b": 250.60984802246094, + "b": 250.60987854003906, "coord_origin": "TOPLEFT" }, "confidence": 0.9746918082237244, @@ -49249,7 +49249,7 @@ "b": 88.55975000000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.5687217116355896, + "confidence": 0.5687220692634583, "cells": [ { "index": 65, @@ -50571,7 +50571,7 @@ "b": 288.6979099999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9667505025863647, + "confidence": 0.9667506217956543, "cells": [ { "index": 98, @@ -50661,7 +50661,7 @@ "b": 326.37991, "coord_origin": "TOPLEFT" }, - "confidence": 0.8879811763763428, + "confidence": 0.8879812359809875, "cells": [ { "index": 101, @@ -51341,7 +51341,7 @@ "b": 713.151764, "coord_origin": "TOPLEFT" }, - "confidence": 0.9840091466903687, + "confidence": 0.9840090274810791, "cells": [ { "index": 127, @@ -51531,7 +51531,7 @@ "b": 743.039761, "coord_origin": "TOPLEFT" }, - "confidence": 0.8715606927871704, + "confidence": 0.87156081199646, "cells": [ { "index": 134, @@ -51586,7 +51586,7 @@ "b": 84.11492999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.8767216801643372, + "confidence": 0.8767215609550476, "cells": [ { "index": 0, @@ -53332,9 +53332,9 @@ "label": "picture", "bbox": { "l": 312.10369873046875, - "t": 78.44086456298828, + "t": 78.44088745117188, "r": 550.38916015625, - "b": 250.60984802246094, + "b": 250.60987854003906, "coord_origin": "TOPLEFT" }, "confidence": 0.9746918082237244, @@ -54176,7 +54176,7 @@ "b": 88.55975000000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.5687217116355896, + "confidence": 0.5687220692634583, "cells": [ { "index": 65, @@ -55508,7 +55508,7 @@ "b": 288.6979099999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9667505025863647, + "confidence": 0.9667506217956543, "cells": [ { "index": 98, @@ -55604,7 +55604,7 @@ "b": 326.37991, "coord_origin": "TOPLEFT" }, - "confidence": 0.8879811763763428, + "confidence": 0.8879812359809875, "cells": [ { "index": 101, @@ -56296,7 +56296,7 @@ "b": 713.151764, "coord_origin": "TOPLEFT" }, - "confidence": 0.9840091466903687, + "confidence": 0.9840090274810791, "cells": [ { "index": 127, @@ -56492,7 +56492,7 @@ "b": 743.039761, "coord_origin": "TOPLEFT" }, - "confidence": 0.8715606927871704, + "confidence": 0.87156081199646, "cells": [ { "index": 134, @@ -56540,7 +56540,7 @@ "b": 84.11492999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.8767216801643372, + "confidence": 0.8767215609550476, "cells": [ { "index": 0, @@ -58286,9 +58286,9 @@ "label": "picture", "bbox": { "l": 312.10369873046875, - "t": 78.44086456298828, + "t": 78.44088745117188, "r": 550.38916015625, - "b": 250.60984802246094, + "b": 250.60987854003906, "coord_origin": "TOPLEFT" }, "confidence": 0.9746918082237244, @@ -59130,7 +59130,7 @@ "b": 88.55975000000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.5687217116355896, + "confidence": 0.5687220692634583, "cells": [ { "index": 65, @@ -60462,7 +60462,7 @@ "b": 288.6979099999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9667505025863647, + "confidence": 0.9667506217956543, "cells": [ { "index": 98, @@ -60558,7 +60558,7 @@ "b": 326.37991, "coord_origin": "TOPLEFT" }, - "confidence": 0.8879811763763428, + "confidence": 0.8879812359809875, "cells": [ { "index": 101, @@ -61250,7 +61250,7 @@ "b": 713.151764, "coord_origin": "TOPLEFT" }, - "confidence": 0.9840091466903687, + "confidence": 0.9840090274810791, "cells": [ { "index": 127, @@ -61448,7 +61448,7 @@ "b": 743.039761, "coord_origin": "TOPLEFT" }, - "confidence": 0.8715606927871704, + "confidence": 0.87156081199646, "cells": [ { "index": 134, @@ -66765,7 +66765,7 @@ "b": 713.151894, "coord_origin": "TOPLEFT" }, - "confidence": 0.9871614575386047, + "confidence": 0.9871613383293152, "cells": [ { "index": 50, @@ -66949,13 +66949,13 @@ "id": 8, "label": "table", "bbox": { - "l": 310.67584228515625, - "t": 73.19388580322266, - "r": 542.9547119140625, + "l": 310.6757507324219, + "t": 73.19387817382812, + "r": 542.9546508789062, "b": 155.22052001953125, "coord_origin": "TOPLEFT" }, - "confidence": 0.9777463674545288, + "confidence": 0.9777464866638184, "cells": [ { "index": 57, @@ -69181,7 +69181,7 @@ "b": 224.38897999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9667726755142212, + "confidence": 0.9667725563049316, "cells": [ { "index": 91, @@ -69446,7 +69446,7 @@ "b": 294.39197, "coord_origin": "TOPLEFT" }, - "confidence": 0.978954017162323, + "confidence": 0.9789542555809021, "cells": [ { "index": 101, @@ -69561,7 +69561,7 @@ "b": 306.67896, "coord_origin": "TOPLEFT" }, - "confidence": 0.9043695330619812, + "confidence": 0.9043692350387573, "cells": [ { "index": 105, @@ -69666,7 +69666,7 @@ "b": 446.48685000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.9884450435638428, + "confidence": 0.9884451627731323, "cells": [ { "index": 108, @@ -69906,7 +69906,7 @@ "b": 467.54633, "coord_origin": "TOPLEFT" }, - "confidence": 0.937696099281311, + "confidence": 0.9376963376998901, "cells": [ { "index": 117, @@ -70811,7 +70811,7 @@ "b": 713.1518169999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.978580117225647, + "confidence": 0.9785799980163574, "cells": [ { "index": 152, @@ -70951,7 +70951,7 @@ "b": 743.039814, "coord_origin": "TOPLEFT" }, - "confidence": 0.8565718531608582, + "confidence": 0.856571614742279, "cells": [ { "index": 157, @@ -70993,13 +70993,13 @@ "id": 8, "label": "table", "bbox": { - "l": 310.67584228515625, - "t": 73.19388580322266, - "r": 542.9547119140625, + "l": 310.6757507324219, + "t": 73.19387817382812, + "r": 542.9546508789062, "b": 155.22052001953125, "coord_origin": "TOPLEFT" }, - "confidence": 0.9777463674545288, + "confidence": 0.9777464866638184, "cells": [ { "index": 57, @@ -75267,7 +75267,7 @@ "b": 713.151894, "coord_origin": "TOPLEFT" }, - "confidence": 0.9871614575386047, + "confidence": 0.9871613383293152, "cells": [ { "index": 50, @@ -75457,13 +75457,13 @@ "id": 8, "label": "table", "bbox": { - "l": 310.67584228515625, - "t": 73.19388580322266, - "r": 542.9547119140625, + "l": 310.6757507324219, + "t": 73.19387817382812, + "r": 542.9546508789062, "b": 155.22052001953125, "coord_origin": "TOPLEFT" }, - "confidence": 0.9777463674545288, + "confidence": 0.9777464866638184, "cells": [ { "index": 57, @@ -78389,7 +78389,7 @@ "b": 224.38897999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9667726755142212, + "confidence": 0.9667725563049316, "cells": [ { "index": 91, @@ -78660,7 +78660,7 @@ "b": 294.39197, "coord_origin": "TOPLEFT" }, - "confidence": 0.978954017162323, + "confidence": 0.9789542555809021, "cells": [ { "index": 101, @@ -78781,7 +78781,7 @@ "b": 306.67896, "coord_origin": "TOPLEFT" }, - "confidence": 0.9043695330619812, + "confidence": 0.9043692350387573, "cells": [ { "index": 105, @@ -78898,7 +78898,7 @@ "b": 446.48685000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.9884450435638428, + "confidence": 0.9884451627731323, "cells": [ { "index": 108, @@ -79144,7 +79144,7 @@ "b": 467.54633, "coord_origin": "TOPLEFT" }, - "confidence": 0.937696099281311, + "confidence": 0.9376963376998901, "cells": [ { "index": 117, @@ -80061,7 +80061,7 @@ "b": 713.1518169999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.978580117225647, + "confidence": 0.9785799980163574, "cells": [ { "index": 152, @@ -80207,7 +80207,7 @@ "b": 743.039814, "coord_origin": "TOPLEFT" }, - "confidence": 0.8565718531608582, + "confidence": 0.856571614742279, "cells": [ { "index": 157, @@ -81589,7 +81589,7 @@ "b": 713.151894, "coord_origin": "TOPLEFT" }, - "confidence": 0.9871614575386047, + "confidence": 0.9871613383293152, "cells": [ { "index": 50, @@ -81779,13 +81779,13 @@ "id": 8, "label": "table", "bbox": { - "l": 310.67584228515625, - "t": 73.19388580322266, - "r": 542.9547119140625, + "l": 310.6757507324219, + "t": 73.19387817382812, + "r": 542.9546508789062, "b": 155.22052001953125, "coord_origin": "TOPLEFT" }, - "confidence": 0.9777463674545288, + "confidence": 0.9777464866638184, "cells": [ { "index": 57, @@ -84711,7 +84711,7 @@ "b": 224.38897999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9667726755142212, + "confidence": 0.9667725563049316, "cells": [ { "index": 91, @@ -84982,7 +84982,7 @@ "b": 294.39197, "coord_origin": "TOPLEFT" }, - "confidence": 0.978954017162323, + "confidence": 0.9789542555809021, "cells": [ { "index": 101, @@ -85103,7 +85103,7 @@ "b": 306.67896, "coord_origin": "TOPLEFT" }, - "confidence": 0.9043695330619812, + "confidence": 0.9043692350387573, "cells": [ { "index": 105, @@ -85220,7 +85220,7 @@ "b": 446.48685000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.9884450435638428, + "confidence": 0.9884451627731323, "cells": [ { "index": 108, @@ -85466,7 +85466,7 @@ "b": 467.54633, "coord_origin": "TOPLEFT" }, - "confidence": 0.937696099281311, + "confidence": 0.9376963376998901, "cells": [ { "index": 117, @@ -86383,7 +86383,7 @@ "b": 713.1518169999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.978580117225647, + "confidence": 0.9785799980163574, "cells": [ { "index": 152, @@ -86531,7 +86531,7 @@ "b": 743.039814, "coord_origin": "TOPLEFT" }, - "confidence": 0.8565718531608582, + "confidence": 0.856571614742279, "cells": [ { "index": 157, @@ -91958,12 +91958,12 @@ "label": "picture", "bbox": { "l": 74.30525970458984, - "t": 77.91120147705078, + "t": 77.91120910644531, "r": 519.9801025390625, "b": 183.70150756835938, "coord_origin": "TOPLEFT" }, - "confidence": 0.9296807646751404, + "confidence": 0.9296805262565613, "cells": [ { "index": 0, @@ -95814,7 +95814,7 @@ "b": 224.96691999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9677652716636658, + "confidence": 0.967765212059021, "cells": [ { "index": 59, @@ -95925,11 +95925,11 @@ "bbox": { "l": 53.03328323364258, "t": 257.66534423828125, - "r": 285.3731689453125, + "r": 285.3731384277344, "b": 507.6688537597656, "coord_origin": "TOPLEFT" }, - "confidence": 0.9724942445755005, + "confidence": 0.9724941253662109, "cells": [ { "index": 63, @@ -98805,7 +98805,7 @@ "b": 680.27094, "coord_origin": "TOPLEFT" }, - "confidence": 0.8913407325744629, + "confidence": 0.8913412690162659, "cells": [ { "index": 107, @@ -99520,7 +99520,7 @@ "b": 294.3069499999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9831458330154419, + "confidence": 0.9831457138061523, "cells": [ { "index": 135, @@ -101570,7 +101570,7 @@ "b": 743.039722, "coord_origin": "TOPLEFT" }, - "confidence": 0.8719564080238342, + "confidence": 0.8719562292098999, "cells": [ { "index": 214, @@ -101620,12 +101620,12 @@ "label": "picture", "bbox": { "l": 74.30525970458984, - "t": 77.91120147705078, + "t": 77.91120910644531, "r": 519.9801025390625, "b": 183.70150756835938, "coord_origin": "TOPLEFT" }, - "confidence": 0.9296807646751404, + "confidence": 0.9296805262565613, "cells": [ { "index": 0, @@ -105486,7 +105486,7 @@ "b": 224.96691999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9677652716636658, + "confidence": 0.967765212059021, "cells": [ { "index": 59, @@ -105603,11 +105603,11 @@ "bbox": { "l": 53.03328323364258, "t": 257.66534423828125, - "r": 285.3731689453125, + "r": 285.3731384277344, "b": 507.6688537597656, "coord_origin": "TOPLEFT" }, - "confidence": 0.9724942445755005, + "confidence": 0.9724941253662109, "cells": [ { "index": 63, @@ -108493,7 +108493,7 @@ "b": 680.27094, "coord_origin": "TOPLEFT" }, - "confidence": 0.8913407325744629, + "confidence": 0.8913412690162659, "cells": [ { "index": 107, @@ -109214,7 +109214,7 @@ "b": 294.3069499999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9831458330154419, + "confidence": 0.9831457138061523, "cells": [ { "index": 135, @@ -111294,7 +111294,7 @@ "b": 743.039722, "coord_origin": "TOPLEFT" }, - "confidence": 0.8719564080238342, + "confidence": 0.8719562292098999, "cells": [ { "index": 214, @@ -111337,12 +111337,12 @@ "label": "picture", "bbox": { "l": 74.30525970458984, - "t": 77.91120147705078, + "t": 77.91120910644531, "r": 519.9801025390625, "b": 183.70150756835938, "coord_origin": "TOPLEFT" }, - "confidence": 0.9296807646751404, + "confidence": 0.9296805262565613, "cells": [ { "index": 0, @@ -115203,7 +115203,7 @@ "b": 224.96691999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9677652716636658, + "confidence": 0.967765212059021, "cells": [ { "index": 59, @@ -115320,11 +115320,11 @@ "bbox": { "l": 53.03328323364258, "t": 257.66534423828125, - "r": 285.3731689453125, + "r": 285.3731384277344, "b": 507.6688537597656, "coord_origin": "TOPLEFT" }, - "confidence": 0.9724942445755005, + "confidence": 0.9724941253662109, "cells": [ { "index": 63, @@ -118210,7 +118210,7 @@ "b": 680.27094, "coord_origin": "TOPLEFT" }, - "confidence": 0.8913407325744629, + "confidence": 0.8913412690162659, "cells": [ { "index": 107, @@ -118931,7 +118931,7 @@ "b": 294.3069499999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9831458330154419, + "confidence": 0.9831457138061523, "cells": [ { "index": 135, @@ -121013,7 +121013,7 @@ "b": 743.039722, "coord_origin": "TOPLEFT" }, - "confidence": 0.8719564080238342, + "confidence": 0.8719562292098999, "cells": [ { "index": 214, @@ -124995,7 +124995,7 @@ "b": 155.84600999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.9868090152740479, + "confidence": 0.9868088960647583, "cells": [ { "index": 0, @@ -126265,7 +126265,7 @@ "b": 468.87189, "coord_origin": "TOPLEFT" }, - "confidence": 0.9724196195602417, + "confidence": 0.9724195003509521, "cells": [ { "index": 49, @@ -126330,7 +126330,7 @@ "b": 517.07172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9423348307609558, + "confidence": 0.9423347115516663, "cells": [ { "index": 51, @@ -126695,7 +126695,7 @@ "b": 540.21588, "coord_origin": "TOPLEFT" }, - "confidence": 0.9363929629325867, + "confidence": 0.9363928437232971, "cells": [ { "index": 65, @@ -126885,7 +126885,7 @@ "b": 566.66461, "coord_origin": "TOPLEFT" }, - "confidence": 0.9554555416107178, + "confidence": 0.9554554224014282, "cells": [ { "index": 72, @@ -127180,7 +127180,7 @@ "b": 678.39588, "coord_origin": "TOPLEFT" }, - "confidence": 0.844183623790741, + "confidence": 0.8441833853721619, "cells": [ { "index": 82, @@ -129165,7 +129165,7 @@ "b": 743.03989, "coord_origin": "TOPLEFT" }, - "confidence": 0.8820409178733826, + "confidence": 0.8820405602455139, "cells": [ { "index": 156, @@ -129220,7 +129220,7 @@ "b": 155.84600999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.9868090152740479, + "confidence": 0.9868088960647583, "cells": [ { "index": 0, @@ -130508,7 +130508,7 @@ "b": 468.87189, "coord_origin": "TOPLEFT" }, - "confidence": 0.9724196195602417, + "confidence": 0.9724195003509521, "cells": [ { "index": 49, @@ -130579,7 +130579,7 @@ "b": 517.07172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9423348307609558, + "confidence": 0.9423347115516663, "cells": [ { "index": 51, @@ -130950,7 +130950,7 @@ "b": 540.21588, "coord_origin": "TOPLEFT" }, - "confidence": 0.9363929629325867, + "confidence": 0.9363928437232971, "cells": [ { "index": 65, @@ -131146,7 +131146,7 @@ "b": 566.66461, "coord_origin": "TOPLEFT" }, - "confidence": 0.9554555416107178, + "confidence": 0.9554554224014282, "cells": [ { "index": 72, @@ -131459,7 +131459,7 @@ "b": 678.39588, "coord_origin": "TOPLEFT" }, - "confidence": 0.844183623790741, + "confidence": 0.8441833853721619, "cells": [ { "index": 82, @@ -133498,7 +133498,7 @@ "b": 743.03989, "coord_origin": "TOPLEFT" }, - "confidence": 0.8820409178733826, + "confidence": 0.8820405602455139, "cells": [ { "index": 156, @@ -133546,7 +133546,7 @@ "b": 155.84600999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.9868090152740479, + "confidence": 0.9868088960647583, "cells": [ { "index": 0, @@ -134834,7 +134834,7 @@ "b": 468.87189, "coord_origin": "TOPLEFT" }, - "confidence": 0.9724196195602417, + "confidence": 0.9724195003509521, "cells": [ { "index": 49, @@ -134905,7 +134905,7 @@ "b": 517.07172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9423348307609558, + "confidence": 0.9423347115516663, "cells": [ { "index": 51, @@ -135276,7 +135276,7 @@ "b": 540.21588, "coord_origin": "TOPLEFT" }, - "confidence": 0.9363929629325867, + "confidence": 0.9363928437232971, "cells": [ { "index": 65, @@ -135472,7 +135472,7 @@ "b": 566.66461, "coord_origin": "TOPLEFT" }, - "confidence": 0.9554555416107178, + "confidence": 0.9554554224014282, "cells": [ { "index": 72, @@ -135785,7 +135785,7 @@ "b": 678.39588, "coord_origin": "TOPLEFT" }, - "confidence": 0.844183623790741, + "confidence": 0.8441833853721619, "cells": [ { "index": 82, @@ -137826,7 +137826,7 @@ "b": 743.03989, "coord_origin": "TOPLEFT" }, - "confidence": 0.8820409178733826, + "confidence": 0.8820405602455139, "cells": [ { "index": 156, @@ -143308,7 +143308,7 @@ "b": 84.25342, "coord_origin": "TOPLEFT" }, - "confidence": 0.9554274082183838, + "confidence": 0.955427348613739, "cells": [ { "index": 0, @@ -148379,7 +148379,7 @@ "b": 613.29492, "coord_origin": "TOPLEFT" }, - "confidence": 0.7209173440933228, + "confidence": 0.7209175229072571, "cells": [ { "index": 109, @@ -148444,7 +148444,7 @@ "b": 625.24992, "coord_origin": "TOPLEFT" }, - "confidence": 0.6433312892913818, + "confidence": 0.6433306932449341, "cells": [ { "index": 111, @@ -148484,7 +148484,7 @@ "b": 713.151932, "coord_origin": "TOPLEFT" }, - "confidence": 0.9854635000228882, + "confidence": 0.9854633808135986, "cells": [ { "index": 112, @@ -148724,7 +148724,7 @@ "b": 227.57709, "coord_origin": "TOPLEFT" }, - "confidence": 0.9713197946548462, + "confidence": 0.9713196754455566, "cells": [ { "index": 121, @@ -149364,7 +149364,7 @@ "b": 303.8056640625, "coord_origin": "TOPLEFT" }, - "confidence": 0.9691730737686157, + "confidence": 0.969173014163971, "cells": [ { "index": 146, @@ -150420,7 +150420,7 @@ "b": 337.3108500000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9519917964935303, + "confidence": 0.9519916772842407, "cells": [ { "index": 162, @@ -150970,7 +150970,7 @@ "label": "table", "bbox": { "l": 332.9688720703125, - "t": 540.2835693359375, + "t": 540.2835083007812, "r": 520.942138671875, "b": 643.2697143554688, "coord_origin": "TOPLEFT" @@ -152876,7 +152876,7 @@ "b": 689.6779300000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9541404247283936, + "confidence": 0.9541401863098145, "cells": [ { "index": 212, @@ -152991,7 +152991,7 @@ "b": 743.039921, "coord_origin": "TOPLEFT" }, - "confidence": 0.8787972331047058, + "confidence": 0.8787970542907715, "cells": [ { "index": 216, @@ -157818,7 +157818,7 @@ "b": 303.8056640625, "coord_origin": "TOPLEFT" }, - "confidence": 0.9691730737686157, + "confidence": 0.969173014163971, "cells": [ { "index": 146, @@ -159205,7 +159205,7 @@ "label": "table", "bbox": { "l": 332.9688720703125, - "t": 540.2835693359375, + "t": 540.2835083007812, "r": 520.942138671875, "b": 643.2697143554688, "coord_origin": "TOPLEFT" @@ -161698,7 +161698,7 @@ "b": 84.25342, "coord_origin": "TOPLEFT" }, - "confidence": 0.9554274082183838, + "confidence": 0.955427348613739, "cells": [ { "index": 0, @@ -167928,7 +167928,7 @@ "b": 613.29492, "coord_origin": "TOPLEFT" }, - "confidence": 0.7209173440933228, + "confidence": 0.7209175229072571, "cells": [ { "index": 109, @@ -167999,7 +167999,7 @@ "b": 625.24992, "coord_origin": "TOPLEFT" }, - "confidence": 0.6433312892913818, + "confidence": 0.6433306932449341, "cells": [ { "index": 111, @@ -168045,7 +168045,7 @@ "b": 713.151932, "coord_origin": "TOPLEFT" }, - "confidence": 0.9854635000228882, + "confidence": 0.9854633808135986, "cells": [ { "index": 112, @@ -168291,7 +168291,7 @@ "b": 227.57709, "coord_origin": "TOPLEFT" }, - "confidence": 0.9713197946548462, + "confidence": 0.9713196754455566, "cells": [ { "index": 121, @@ -168937,7 +168937,7 @@ "b": 303.8056640625, "coord_origin": "TOPLEFT" }, - "confidence": 0.9691730737686157, + "confidence": 0.969173014163971, "cells": [ { "index": 146, @@ -170329,7 +170329,7 @@ "b": 337.3108500000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9519917964935303, + "confidence": 0.9519916772842407, "cells": [ { "index": 162, @@ -170891,7 +170891,7 @@ "label": "table", "bbox": { "l": 332.9688720703125, - "t": 540.2835693359375, + "t": 540.2835083007812, "r": 520.942138671875, "b": 643.2697143554688, "coord_origin": "TOPLEFT" @@ -173376,7 +173376,7 @@ "b": 689.6779300000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9541404247283936, + "confidence": 0.9541401863098145, "cells": [ { "index": 212, @@ -173497,7 +173497,7 @@ "b": 743.039921, "coord_origin": "TOPLEFT" }, - "confidence": 0.8787972331047058, + "confidence": 0.8787970542907715, "cells": [ { "index": 216, @@ -173545,7 +173545,7 @@ "b": 84.25342, "coord_origin": "TOPLEFT" }, - "confidence": 0.9554274082183838, + "confidence": 0.955427348613739, "cells": [ { "index": 0, @@ -179775,7 +179775,7 @@ "b": 613.29492, "coord_origin": "TOPLEFT" }, - "confidence": 0.7209173440933228, + "confidence": 0.7209175229072571, "cells": [ { "index": 109, @@ -179846,7 +179846,7 @@ "b": 625.24992, "coord_origin": "TOPLEFT" }, - "confidence": 0.6433312892913818, + "confidence": 0.6433306932449341, "cells": [ { "index": 111, @@ -179892,7 +179892,7 @@ "b": 713.151932, "coord_origin": "TOPLEFT" }, - "confidence": 0.9854635000228882, + "confidence": 0.9854633808135986, "cells": [ { "index": 112, @@ -180138,7 +180138,7 @@ "b": 227.57709, "coord_origin": "TOPLEFT" }, - "confidence": 0.9713197946548462, + "confidence": 0.9713196754455566, "cells": [ { "index": 121, @@ -180784,7 +180784,7 @@ "b": 303.8056640625, "coord_origin": "TOPLEFT" }, - "confidence": 0.9691730737686157, + "confidence": 0.969173014163971, "cells": [ { "index": 146, @@ -182176,7 +182176,7 @@ "b": 337.3108500000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9519917964935303, + "confidence": 0.9519916772842407, "cells": [ { "index": 162, @@ -182738,7 +182738,7 @@ "label": "table", "bbox": { "l": 332.9688720703125, - "t": 540.2835693359375, + "t": 540.2835083007812, "r": 520.942138671875, "b": 643.2697143554688, "coord_origin": "TOPLEFT" @@ -185223,7 +185223,7 @@ "b": 689.6779300000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9541404247283936, + "confidence": 0.9541401863098145, "cells": [ { "index": 212, @@ -185346,7 +185346,7 @@ "b": 743.039921, "coord_origin": "TOPLEFT" }, - "confidence": 0.8787972331047058, + "confidence": 0.8787970542907715, "cells": [ { "index": 216, @@ -190928,7 +190928,7 @@ "b": 216.10645, "coord_origin": "TOPLEFT" }, - "confidence": 0.5986505746841431, + "confidence": 0.5986502170562744, "cells": [ { "index": 0, @@ -190993,7 +190993,7 @@ "b": 102.15430000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.46452972292900085, + "confidence": 0.4645298421382904, "cells": [ { "index": 2, @@ -191033,7 +191033,7 @@ "b": 102.15430000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.4629225730895996, + "confidence": 0.462923139333725, "cells": [ { "index": 3, @@ -191073,7 +191073,7 @@ "b": 86.56073000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.5820134282112122, + "confidence": 0.5820130705833435, "cells": [ { "index": 4, @@ -191113,7 +191113,7 @@ "b": 86.56073000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.541211724281311, + "confidence": 0.5412119626998901, "cells": [ { "index": 5, @@ -191148,12 +191148,12 @@ "label": "table", "bbox": { "l": 53.62853240966797, - "t": 218.94857788085938, + "t": 218.94854736328125, "r": 298.5574951171875, - "b": 292.39996337890625, + "b": 292.3999938964844, "coord_origin": "TOPLEFT" }, - "confidence": 0.8824009299278259, + "confidence": 0.8824007511138916, "cells": [ { "index": 6, @@ -195719,7 +195719,7 @@ "b": 298.60284, "coord_origin": "TOPLEFT" }, - "confidence": 0.7499915957450867, + "confidence": 0.7499913573265076, "cells": [ { "index": 76, @@ -195759,7 +195759,7 @@ "b": 287.90069580078125, "coord_origin": "TOPLEFT" }, - "confidence": 0.8899767994880676, + "confidence": 0.8899765014648438, "cells": [ { "index": 77, @@ -198505,7 +198505,7 @@ "b": 365.64987, "coord_origin": "TOPLEFT" }, - "confidence": 0.9140303134918213, + "confidence": 0.9140309691429138, "cells": [ { "index": 119, @@ -198640,12 +198640,12 @@ "label": "picture", "bbox": { "l": 216.76925659179688, - "t": 380.4906311035156, + "t": 380.4906005859375, "r": 375.7829284667969, - "b": 443.34698486328125, + "b": 443.3470458984375, "coord_origin": "TOPLEFT" }, - "confidence": 0.805853009223938, + "confidence": 0.8058520555496216, "cells": [ { "index": 124, @@ -198726,7 +198726,7 @@ "b": 443.6580810546875, "coord_origin": "TOPLEFT" }, - "confidence": 0.8308426737785339, + "confidence": 0.8308423161506653, "cells": [ { "index": 125, @@ -198801,13 +198801,13 @@ "id": 13, "label": "picture", "bbox": { - "l": 383.1364440917969, - "t": 381.2313232421875, - "r": 542.1132202148438, + "l": 383.1363830566406, + "t": 381.2312927246094, + "r": 542.1131591796875, "b": 442.7749328613281, "coord_origin": "TOPLEFT" }, - "confidence": 0.7881615161895752, + "confidence": 0.7881602644920349, "cells": [ { "index": 126, @@ -202398,7 +202398,7 @@ "b": 467.63492, "coord_origin": "TOPLEFT" }, - "confidence": 0.9153602719306946, + "confidence": 0.9153599143028259, "cells": [ { "index": 181, @@ -202438,7 +202438,7 @@ "b": 501.24741, "coord_origin": "TOPLEFT" }, - "confidence": 0.9561247229576111, + "confidence": 0.9561248421669006, "cells": [ { "index": 182, @@ -203348,7 +203348,7 @@ "b": 682.84664, "coord_origin": "TOPLEFT" }, - "confidence": 0.9442470073699951, + "confidence": 0.9442470669746399, "cells": [ { "index": 216, @@ -203388,7 +203388,7 @@ "b": 712.936752, "coord_origin": "TOPLEFT" }, - "confidence": 0.8318753838539124, + "confidence": 0.8318751454353333, "cells": [ { "index": 217, @@ -203478,7 +203478,7 @@ "b": 743.039928, "coord_origin": "TOPLEFT" }, - "confidence": 0.8709858059883118, + "confidence": 0.8709856867790222, "cells": [ { "index": 220, @@ -203512,13 +203512,13 @@ "id": 15, "label": "picture", "bbox": { - "l": 305.5836486816406, + "l": 305.58367919921875, "t": 98.65415954589844, "r": 554.8258666992188, "b": 180.6267547607422, "coord_origin": "TOPLEFT" }, - "confidence": 0.7699173092842102, + "confidence": 0.7699161171913147, "cells": [], "children": [] }, @@ -203527,12 +203527,12 @@ "label": "picture", "bbox": { "l": 49.97503662109375, - "t": 103.71266174316406, + "t": 103.71268463134766, "r": 301.6335754394531, "b": 187.5789337158203, "coord_origin": "TOPLEFT" }, - "confidence": 0.7873926162719727, + "confidence": 0.7873924374580383, "cells": [], "children": [] } @@ -203549,12 +203549,12 @@ "label": "table", "bbox": { "l": 53.62853240966797, - "t": 218.94857788085938, + "t": 218.94854736328125, "r": 298.5574951171875, - "b": 292.39996337890625, + "b": 292.3999938964844, "coord_origin": "TOPLEFT" }, - "confidence": 0.8824009299278259, + "confidence": 0.8824007511138916, "cells": [ { "index": 6, @@ -209266,7 +209266,7 @@ "b": 287.90069580078125, "coord_origin": "TOPLEFT" }, - "confidence": 0.8899767994880676, + "confidence": 0.8899765014648438, "cells": [ { "index": 77, @@ -212663,7 +212663,7 @@ "b": 216.10645, "coord_origin": "TOPLEFT" }, - "confidence": 0.5986505746841431, + "confidence": 0.5986502170562744, "cells": [ { "index": 0, @@ -212734,7 +212734,7 @@ "b": 102.15430000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.46452972292900085, + "confidence": 0.4645298421382904, "cells": [ { "index": 2, @@ -212780,7 +212780,7 @@ "b": 102.15430000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.4629225730895996, + "confidence": 0.462923139333725, "cells": [ { "index": 3, @@ -212826,7 +212826,7 @@ "b": 86.56073000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.5820134282112122, + "confidence": 0.5820130705833435, "cells": [ { "index": 4, @@ -212872,7 +212872,7 @@ "b": 86.56073000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.541211724281311, + "confidence": 0.5412119626998901, "cells": [ { "index": 5, @@ -212913,12 +212913,12 @@ "label": "table", "bbox": { "l": 53.62853240966797, - "t": 218.94857788085938, + "t": 218.94854736328125, "r": 298.5574951171875, - "b": 292.39996337890625, + "b": 292.3999938964844, "coord_origin": "TOPLEFT" }, - "confidence": 0.8824009299278259, + "confidence": 0.8824007511138916, "cells": [ { "index": 6, @@ -218630,7 +218630,7 @@ "b": 298.60284, "coord_origin": "TOPLEFT" }, - "confidence": 0.7499915957450867, + "confidence": 0.7499913573265076, "cells": [ { "index": 76, @@ -218676,7 +218676,7 @@ "b": 287.90069580078125, "coord_origin": "TOPLEFT" }, - "confidence": 0.8899767994880676, + "confidence": 0.8899765014648438, "cells": [ { "index": 77, @@ -222065,7 +222065,7 @@ "b": 365.64987, "coord_origin": "TOPLEFT" }, - "confidence": 0.9140303134918213, + "confidence": 0.9140309691429138, "cells": [ { "index": 119, @@ -222206,12 +222206,12 @@ "label": "picture", "bbox": { "l": 216.76925659179688, - "t": 380.4906311035156, + "t": 380.4906005859375, "r": 375.7829284667969, - "b": 443.34698486328125, + "b": 443.3470458984375, "coord_origin": "TOPLEFT" }, - "confidence": 0.805853009223938, + "confidence": 0.8058520555496216, "cells": [ { "index": 124, @@ -222302,7 +222302,7 @@ "b": 443.6580810546875, "coord_origin": "TOPLEFT" }, - "confidence": 0.8308426737785339, + "confidence": 0.8308423161506653, "cells": [ { "index": 125, @@ -222387,13 +222387,13 @@ "id": 13, "label": "picture", "bbox": { - "l": 383.1364440917969, - "t": 381.2313232421875, - "r": 542.1132202148438, + "l": 383.1363830566406, + "t": 381.2312927246094, + "r": 542.1131591796875, "b": 442.7749328613281, "coord_origin": "TOPLEFT" }, - "confidence": 0.7881615161895752, + "confidence": 0.7881602644920349, "cells": [ { "index": 126, @@ -225994,7 +225994,7 @@ "b": 467.63492, "coord_origin": "TOPLEFT" }, - "confidence": 0.9153602719306946, + "confidence": 0.9153599143028259, "cells": [ { "index": 181, @@ -226040,7 +226040,7 @@ "b": 501.24741, "coord_origin": "TOPLEFT" }, - "confidence": 0.9561247229576111, + "confidence": 0.9561248421669006, "cells": [ { "index": 182, @@ -226974,7 +226974,7 @@ "b": 682.84664, "coord_origin": "TOPLEFT" }, - "confidence": 0.9442470073699951, + "confidence": 0.9442470669746399, "cells": [ { "index": 216, @@ -227020,7 +227020,7 @@ "b": 712.936752, "coord_origin": "TOPLEFT" }, - "confidence": 0.8318753838539124, + "confidence": 0.8318751454353333, "cells": [ { "index": 217, @@ -227116,7 +227116,7 @@ "b": 743.039928, "coord_origin": "TOPLEFT" }, - "confidence": 0.8709858059883118, + "confidence": 0.8709856867790222, "cells": [ { "index": 220, @@ -227156,13 +227156,13 @@ "id": 15, "label": "picture", "bbox": { - "l": 305.5836486816406, + "l": 305.58367919921875, "t": 98.65415954589844, "r": 554.8258666992188, "b": 180.6267547607422, "coord_origin": "TOPLEFT" }, - "confidence": 0.7699173092842102, + "confidence": 0.7699161171913147, "cells": [], "children": [] }, @@ -227181,12 +227181,12 @@ "label": "picture", "bbox": { "l": 49.97503662109375, - "t": 103.71266174316406, + "t": 103.71268463134766, "r": 301.6335754394531, "b": 187.5789337158203, "coord_origin": "TOPLEFT" }, - "confidence": 0.7873926162719727, + "confidence": 0.7873924374580383, "cells": [], "children": [] }, @@ -227212,7 +227212,7 @@ "b": 216.10645, "coord_origin": "TOPLEFT" }, - "confidence": 0.5986505746841431, + "confidence": 0.5986502170562744, "cells": [ { "index": 0, @@ -227283,7 +227283,7 @@ "b": 102.15430000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.46452972292900085, + "confidence": 0.4645298421382904, "cells": [ { "index": 2, @@ -227329,7 +227329,7 @@ "b": 102.15430000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.4629225730895996, + "confidence": 0.462923139333725, "cells": [ { "index": 3, @@ -227375,7 +227375,7 @@ "b": 86.56073000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.5820134282112122, + "confidence": 0.5820130705833435, "cells": [ { "index": 4, @@ -227421,7 +227421,7 @@ "b": 86.56073000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.541211724281311, + "confidence": 0.5412119626998901, "cells": [ { "index": 5, @@ -227462,12 +227462,12 @@ "label": "table", "bbox": { "l": 53.62853240966797, - "t": 218.94857788085938, + "t": 218.94854736328125, "r": 298.5574951171875, - "b": 292.39996337890625, + "b": 292.3999938964844, "coord_origin": "TOPLEFT" }, - "confidence": 0.8824009299278259, + "confidence": 0.8824007511138916, "cells": [ { "index": 6, @@ -233179,7 +233179,7 @@ "b": 298.60284, "coord_origin": "TOPLEFT" }, - "confidence": 0.7499915957450867, + "confidence": 0.7499913573265076, "cells": [ { "index": 76, @@ -233225,7 +233225,7 @@ "b": 287.90069580078125, "coord_origin": "TOPLEFT" }, - "confidence": 0.8899767994880676, + "confidence": 0.8899765014648438, "cells": [ { "index": 77, @@ -236614,7 +236614,7 @@ "b": 365.64987, "coord_origin": "TOPLEFT" }, - "confidence": 0.9140303134918213, + "confidence": 0.9140309691429138, "cells": [ { "index": 119, @@ -236755,12 +236755,12 @@ "label": "picture", "bbox": { "l": 216.76925659179688, - "t": 380.4906311035156, + "t": 380.4906005859375, "r": 375.7829284667969, - "b": 443.34698486328125, + "b": 443.3470458984375, "coord_origin": "TOPLEFT" }, - "confidence": 0.805853009223938, + "confidence": 0.8058520555496216, "cells": [ { "index": 124, @@ -236851,7 +236851,7 @@ "b": 443.6580810546875, "coord_origin": "TOPLEFT" }, - "confidence": 0.8308426737785339, + "confidence": 0.8308423161506653, "cells": [ { "index": 125, @@ -236936,13 +236936,13 @@ "id": 13, "label": "picture", "bbox": { - "l": 383.1364440917969, - "t": 381.2313232421875, - "r": 542.1132202148438, + "l": 383.1363830566406, + "t": 381.2312927246094, + "r": 542.1131591796875, "b": 442.7749328613281, "coord_origin": "TOPLEFT" }, - "confidence": 0.7881615161895752, + "confidence": 0.7881602644920349, "cells": [ { "index": 126, @@ -240543,7 +240543,7 @@ "b": 467.63492, "coord_origin": "TOPLEFT" }, - "confidence": 0.9153602719306946, + "confidence": 0.9153599143028259, "cells": [ { "index": 181, @@ -240589,7 +240589,7 @@ "b": 501.24741, "coord_origin": "TOPLEFT" }, - "confidence": 0.9561247229576111, + "confidence": 0.9561248421669006, "cells": [ { "index": 182, @@ -241523,7 +241523,7 @@ "b": 682.84664, "coord_origin": "TOPLEFT" }, - "confidence": 0.9442470073699951, + "confidence": 0.9442470669746399, "cells": [ { "index": 216, @@ -241569,7 +241569,7 @@ "b": 712.936752, "coord_origin": "TOPLEFT" }, - "confidence": 0.8318753838539124, + "confidence": 0.8318751454353333, "cells": [ { "index": 217, @@ -241659,13 +241659,13 @@ "id": 15, "label": "picture", "bbox": { - "l": 305.5836486816406, + "l": 305.58367919921875, "t": 98.65415954589844, "r": 554.8258666992188, "b": 180.6267547607422, "coord_origin": "TOPLEFT" }, - "confidence": 0.7699173092842102, + "confidence": 0.7699161171913147, "cells": [], "children": [] }, @@ -241684,12 +241684,12 @@ "label": "picture", "bbox": { "l": 49.97503662109375, - "t": 103.71266174316406, + "t": 103.71268463134766, "r": 301.6335754394531, "b": 187.5789337158203, "coord_origin": "TOPLEFT" }, - "confidence": 0.7873926162719727, + "confidence": 0.7873924374580383, "cells": [], "children": [] }, @@ -241715,7 +241715,7 @@ "b": 743.039928, "coord_origin": "TOPLEFT" }, - "confidence": 0.8709858059883118, + "confidence": 0.8709856867790222, "cells": [ { "index": 220, @@ -246797,7 +246797,7 @@ "b": 116.77575999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.7310384511947632, + "confidence": 0.7310386300086975, "cells": [ { "index": 0, @@ -246962,7 +246962,7 @@ "b": 149.96569999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9372755885124207, + "confidence": 0.9372758865356445, "cells": [ { "index": 6, @@ -247152,7 +247152,7 @@ "b": 183.15466000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9378374218940735, + "confidence": 0.9378378391265869, "cells": [ { "index": 13, @@ -247317,7 +247317,7 @@ "b": 227.30358999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9648825526237488, + "confidence": 0.9648826718330383, "cells": [ { "index": 19, @@ -247457,7 +247457,7 @@ "b": 271.45154, "coord_origin": "TOPLEFT" }, - "confidence": 0.9620943069458008, + "confidence": 0.9620945453643799, "cells": [ { "index": 24, @@ -247647,7 +247647,7 @@ "b": 315.6004899999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9555517435073853, + "confidence": 0.9555518627166748, "cells": [ { "index": 31, @@ -247862,7 +247862,7 @@ "b": 348.78952, "coord_origin": "TOPLEFT" }, - "confidence": 0.9479843378067017, + "confidence": 0.9479843974113464, "cells": [ { "index": 39, @@ -248077,7 +248077,7 @@ "b": 403.89749, "coord_origin": "TOPLEFT" }, - "confidence": 0.9484425187110901, + "confidence": 0.9484427571296692, "cells": [ { "index": 47, @@ -248317,7 +248317,7 @@ "b": 437.08646000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9330756664276123, + "confidence": 0.9330760836601257, "cells": [ { "index": 56, @@ -248482,7 +248482,7 @@ "b": 481.23544, "coord_origin": "TOPLEFT" }, - "confidence": 0.9274735450744629, + "confidence": 0.927473783493042, "cells": [ { "index": 62, @@ -248697,7 +248697,7 @@ "b": 536.34238, "coord_origin": "TOPLEFT" }, - "confidence": 0.9299950003623962, + "confidence": 0.9299951195716858, "cells": [ { "index": 70, @@ -249102,7 +249102,7 @@ "b": 646.55737, "coord_origin": "TOPLEFT" }, - "confidence": 0.9298838973045349, + "confidence": 0.9298841953277588, "cells": [ { "index": 85, @@ -249317,7 +249317,7 @@ "b": 679.74638, "coord_origin": "TOPLEFT" }, - "confidence": 0.9115257263183594, + "confidence": 0.9115263819694519, "cells": [ { "index": 93, @@ -249457,7 +249457,7 @@ "b": 712.936386, "coord_origin": "TOPLEFT" }, - "confidence": 0.912230372428894, + "confidence": 0.9122310876846313, "cells": [ { "index": 98, @@ -249912,7 +249912,7 @@ "b": 172.05633999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.9253129959106445, + "confidence": 0.9253132939338684, "cells": [ { "index": 115, @@ -250052,7 +250052,7 @@ "b": 260.21423000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9299732446670532, + "confidence": 0.9299730658531189, "cells": [ { "index": 120, @@ -250342,7 +250342,7 @@ "b": 326.45413, "coord_origin": "TOPLEFT" }, - "confidence": 0.937321662902832, + "confidence": 0.9373218417167664, "cells": [ { "index": 131, @@ -250582,7 +250582,7 @@ "b": 370.77713, "coord_origin": "TOPLEFT" }, - "confidence": 0.9027292728424072, + "confidence": 0.9027294516563416, "cells": [ { "index": 140, @@ -250772,7 +250772,7 @@ "b": 437.01706, "coord_origin": "TOPLEFT" }, - "confidence": 0.882714569568634, + "confidence": 0.8827158212661743, "cells": [ { "index": 147, @@ -251187,7 +251187,7 @@ "b": 558.05096, "coord_origin": "TOPLEFT" }, - "confidence": 0.8896440863609314, + "confidence": 0.889644205570221, "cells": [ { "index": 163, @@ -251552,7 +251552,7 @@ "b": 624.29097, "coord_origin": "TOPLEFT" }, - "confidence": 0.9025435447692871, + "confidence": 0.9025442600250244, "cells": [ { "index": 177, @@ -251792,7 +251792,7 @@ "b": 668.61398, "coord_origin": "TOPLEFT" }, - "confidence": 0.8777532577514648, + "confidence": 0.8777535557746887, "cells": [ { "index": 186, @@ -251982,7 +251982,7 @@ "b": 712.935974, "coord_origin": "TOPLEFT" }, - "confidence": 0.8654531240463257, + "confidence": 0.8654532432556152, "cells": [ { "index": 193, @@ -252227,7 +252227,7 @@ "b": 116.77575999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.7310384511947632, + "confidence": 0.7310386300086975, "cells": [ { "index": 0, @@ -252398,7 +252398,7 @@ "b": 149.96569999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9372755885124207, + "confidence": 0.9372758865356445, "cells": [ { "index": 6, @@ -252594,7 +252594,7 @@ "b": 183.15466000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9378374218940735, + "confidence": 0.9378378391265869, "cells": [ { "index": 13, @@ -252765,7 +252765,7 @@ "b": 227.30358999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9648825526237488, + "confidence": 0.9648826718330383, "cells": [ { "index": 19, @@ -252911,7 +252911,7 @@ "b": 271.45154, "coord_origin": "TOPLEFT" }, - "confidence": 0.9620943069458008, + "confidence": 0.9620945453643799, "cells": [ { "index": 24, @@ -253107,7 +253107,7 @@ "b": 315.6004899999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9555517435073853, + "confidence": 0.9555518627166748, "cells": [ { "index": 31, @@ -253328,7 +253328,7 @@ "b": 348.78952, "coord_origin": "TOPLEFT" }, - "confidence": 0.9479843378067017, + "confidence": 0.9479843974113464, "cells": [ { "index": 39, @@ -253549,7 +253549,7 @@ "b": 403.89749, "coord_origin": "TOPLEFT" }, - "confidence": 0.9484425187110901, + "confidence": 0.9484427571296692, "cells": [ { "index": 47, @@ -253795,7 +253795,7 @@ "b": 437.08646000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9330756664276123, + "confidence": 0.9330760836601257, "cells": [ { "index": 56, @@ -253966,7 +253966,7 @@ "b": 481.23544, "coord_origin": "TOPLEFT" }, - "confidence": 0.9274735450744629, + "confidence": 0.927473783493042, "cells": [ { "index": 62, @@ -254187,7 +254187,7 @@ "b": 536.34238, "coord_origin": "TOPLEFT" }, - "confidence": 0.9299950003623962, + "confidence": 0.9299951195716858, "cells": [ { "index": 70, @@ -254604,7 +254604,7 @@ "b": 646.55737, "coord_origin": "TOPLEFT" }, - "confidence": 0.9298838973045349, + "confidence": 0.9298841953277588, "cells": [ { "index": 85, @@ -254825,7 +254825,7 @@ "b": 679.74638, "coord_origin": "TOPLEFT" }, - "confidence": 0.9115257263183594, + "confidence": 0.9115263819694519, "cells": [ { "index": 93, @@ -254971,7 +254971,7 @@ "b": 712.936386, "coord_origin": "TOPLEFT" }, - "confidence": 0.912230372428894, + "confidence": 0.9122310876846313, "cells": [ { "index": 98, @@ -255438,7 +255438,7 @@ "b": 172.05633999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.9253129959106445, + "confidence": 0.9253132939338684, "cells": [ { "index": 115, @@ -255584,7 +255584,7 @@ "b": 260.21423000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9299732446670532, + "confidence": 0.9299730658531189, "cells": [ { "index": 120, @@ -255880,7 +255880,7 @@ "b": 326.45413, "coord_origin": "TOPLEFT" }, - "confidence": 0.937321662902832, + "confidence": 0.9373218417167664, "cells": [ { "index": 131, @@ -256126,7 +256126,7 @@ "b": 370.77713, "coord_origin": "TOPLEFT" }, - "confidence": 0.9027292728424072, + "confidence": 0.9027294516563416, "cells": [ { "index": 140, @@ -256322,7 +256322,7 @@ "b": 437.01706, "coord_origin": "TOPLEFT" }, - "confidence": 0.882714569568634, + "confidence": 0.8827158212661743, "cells": [ { "index": 147, @@ -256743,7 +256743,7 @@ "b": 558.05096, "coord_origin": "TOPLEFT" }, - "confidence": 0.8896440863609314, + "confidence": 0.889644205570221, "cells": [ { "index": 163, @@ -257114,7 +257114,7 @@ "b": 624.29097, "coord_origin": "TOPLEFT" }, - "confidence": 0.9025435447692871, + "confidence": 0.9025442600250244, "cells": [ { "index": 177, @@ -257360,7 +257360,7 @@ "b": 668.61398, "coord_origin": "TOPLEFT" }, - "confidence": 0.8777532577514648, + "confidence": 0.8777535557746887, "cells": [ { "index": 186, @@ -257556,7 +257556,7 @@ "b": 712.935974, "coord_origin": "TOPLEFT" }, - "confidence": 0.8654531240463257, + "confidence": 0.8654532432556152, "cells": [ { "index": 193, @@ -257800,7 +257800,7 @@ "b": 116.77575999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.7310384511947632, + "confidence": 0.7310386300086975, "cells": [ { "index": 0, @@ -257971,7 +257971,7 @@ "b": 149.96569999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9372755885124207, + "confidence": 0.9372758865356445, "cells": [ { "index": 6, @@ -258167,7 +258167,7 @@ "b": 183.15466000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9378374218940735, + "confidence": 0.9378378391265869, "cells": [ { "index": 13, @@ -258338,7 +258338,7 @@ "b": 227.30358999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9648825526237488, + "confidence": 0.9648826718330383, "cells": [ { "index": 19, @@ -258484,7 +258484,7 @@ "b": 271.45154, "coord_origin": "TOPLEFT" }, - "confidence": 0.9620943069458008, + "confidence": 0.9620945453643799, "cells": [ { "index": 24, @@ -258680,7 +258680,7 @@ "b": 315.6004899999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9555517435073853, + "confidence": 0.9555518627166748, "cells": [ { "index": 31, @@ -258901,7 +258901,7 @@ "b": 348.78952, "coord_origin": "TOPLEFT" }, - "confidence": 0.9479843378067017, + "confidence": 0.9479843974113464, "cells": [ { "index": 39, @@ -259122,7 +259122,7 @@ "b": 403.89749, "coord_origin": "TOPLEFT" }, - "confidence": 0.9484425187110901, + "confidence": 0.9484427571296692, "cells": [ { "index": 47, @@ -259368,7 +259368,7 @@ "b": 437.08646000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9330756664276123, + "confidence": 0.9330760836601257, "cells": [ { "index": 56, @@ -259539,7 +259539,7 @@ "b": 481.23544, "coord_origin": "TOPLEFT" }, - "confidence": 0.9274735450744629, + "confidence": 0.927473783493042, "cells": [ { "index": 62, @@ -259760,7 +259760,7 @@ "b": 536.34238, "coord_origin": "TOPLEFT" }, - "confidence": 0.9299950003623962, + "confidence": 0.9299951195716858, "cells": [ { "index": 70, @@ -260177,7 +260177,7 @@ "b": 646.55737, "coord_origin": "TOPLEFT" }, - "confidence": 0.9298838973045349, + "confidence": 0.9298841953277588, "cells": [ { "index": 85, @@ -260398,7 +260398,7 @@ "b": 679.74638, "coord_origin": "TOPLEFT" }, - "confidence": 0.9115257263183594, + "confidence": 0.9115263819694519, "cells": [ { "index": 93, @@ -260544,7 +260544,7 @@ "b": 712.936386, "coord_origin": "TOPLEFT" }, - "confidence": 0.912230372428894, + "confidence": 0.9122310876846313, "cells": [ { "index": 98, @@ -261011,7 +261011,7 @@ "b": 172.05633999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.9253129959106445, + "confidence": 0.9253132939338684, "cells": [ { "index": 115, @@ -261157,7 +261157,7 @@ "b": 260.21423000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9299732446670532, + "confidence": 0.9299730658531189, "cells": [ { "index": 120, @@ -261453,7 +261453,7 @@ "b": 326.45413, "coord_origin": "TOPLEFT" }, - "confidence": 0.937321662902832, + "confidence": 0.9373218417167664, "cells": [ { "index": 131, @@ -261699,7 +261699,7 @@ "b": 370.77713, "coord_origin": "TOPLEFT" }, - "confidence": 0.9027292728424072, + "confidence": 0.9027294516563416, "cells": [ { "index": 140, @@ -261895,7 +261895,7 @@ "b": 437.01706, "coord_origin": "TOPLEFT" }, - "confidence": 0.882714569568634, + "confidence": 0.8827158212661743, "cells": [ { "index": 147, @@ -262316,7 +262316,7 @@ "b": 558.05096, "coord_origin": "TOPLEFT" }, - "confidence": 0.8896440863609314, + "confidence": 0.889644205570221, "cells": [ { "index": 163, @@ -262687,7 +262687,7 @@ "b": 624.29097, "coord_origin": "TOPLEFT" }, - "confidence": 0.9025435447692871, + "confidence": 0.9025442600250244, "cells": [ { "index": 177, @@ -262933,7 +262933,7 @@ "b": 668.61398, "coord_origin": "TOPLEFT" }, - "confidence": 0.8777532577514648, + "confidence": 0.8777535557746887, "cells": [ { "index": 186, @@ -263129,7 +263129,7 @@ "b": 712.935974, "coord_origin": "TOPLEFT" }, - "confidence": 0.8654531240463257, + "confidence": 0.8654532432556152, "cells": [ { "index": 193, @@ -266584,7 +266584,7 @@ "b": 94.85875999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.6886764168739319, + "confidence": 0.6886764764785767, "cells": [ { "index": 0, @@ -266674,7 +266674,7 @@ "b": 160.97668, "coord_origin": "TOPLEFT" }, - "confidence": 0.7723011374473572, + "confidence": 0.7723009586334229, "cells": [ { "index": 3, @@ -266914,7 +266914,7 @@ "b": 227.0946, "coord_origin": "TOPLEFT" }, - "confidence": 0.8580600619316101, + "confidence": 0.858059823513031, "cells": [ { "index": 12, @@ -267154,7 +267154,7 @@ "b": 271.29553, "coord_origin": "TOPLEFT" }, - "confidence": 0.8512731194496155, + "confidence": 0.8512733578681946, "cells": [ { "index": 21, @@ -267344,7 +267344,7 @@ "b": 326.4545, "coord_origin": "TOPLEFT" }, - "confidence": 0.8494512438774109, + "confidence": 0.8494508862495422, "cells": [ { "index": 28, @@ -267734,7 +267734,7 @@ "b": 381.61447, "coord_origin": "TOPLEFT" }, - "confidence": 0.8567671179771423, + "confidence": 0.8567669987678528, "cells": [ { "index": 43, @@ -267974,7 +267974,7 @@ "b": 458.69144, "coord_origin": "TOPLEFT" }, - "confidence": 0.8832162618637085, + "confidence": 0.883216381072998, "cells": [ { "index": 52, @@ -268314,7 +268314,7 @@ "b": 502.89243, "coord_origin": "TOPLEFT" }, - "confidence": 0.8431925177574158, + "confidence": 0.8431923389434814, "cells": [ { "index": 65, @@ -268529,7 +268529,7 @@ "b": 547.09244, "coord_origin": "TOPLEFT" }, - "confidence": 0.8405635952949524, + "confidence": 0.8405640125274658, "cells": [ { "index": 73, @@ -268984,7 +268984,7 @@ "b": 635.49445, "coord_origin": "TOPLEFT" }, - "confidence": 0.8360886573791504, + "confidence": 0.8360887765884399, "cells": [ { "index": 90, @@ -269199,7 +269199,7 @@ "b": 690.65347, "coord_origin": "TOPLEFT" }, - "confidence": 0.8079474568367004, + "confidence": 0.8079472780227661, "cells": [ { "index": 98, @@ -269414,7 +269414,7 @@ "b": 712.936462, "coord_origin": "TOPLEFT" }, - "confidence": 0.8385783433914185, + "confidence": 0.8385782837867737, "cells": [ { "index": 106, @@ -269654,7 +269654,7 @@ "b": 116.77544999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.7556979060173035, + "confidence": 0.7556983232498169, "cells": [ { "index": 115, @@ -269819,7 +269819,7 @@ "b": 161.60742000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.8375797271728516, + "confidence": 0.8375802040100098, "cells": [ { "index": 121, @@ -269984,7 +269984,7 @@ "b": 743.039555, "coord_origin": "TOPLEFT" }, - "confidence": 0.9069584012031555, + "confidence": 0.9069585800170898, "cells": [ { "index": 127, @@ -270039,7 +270039,7 @@ "b": 94.85875999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.6886764168739319, + "confidence": 0.6886764764785767, "cells": [ { "index": 0, @@ -270135,7 +270135,7 @@ "b": 160.97668, "coord_origin": "TOPLEFT" }, - "confidence": 0.7723011374473572, + "confidence": 0.7723009586334229, "cells": [ { "index": 3, @@ -270381,7 +270381,7 @@ "b": 227.0946, "coord_origin": "TOPLEFT" }, - "confidence": 0.8580600619316101, + "confidence": 0.858059823513031, "cells": [ { "index": 12, @@ -270627,7 +270627,7 @@ "b": 271.29553, "coord_origin": "TOPLEFT" }, - "confidence": 0.8512731194496155, + "confidence": 0.8512733578681946, "cells": [ { "index": 21, @@ -270823,7 +270823,7 @@ "b": 326.4545, "coord_origin": "TOPLEFT" }, - "confidence": 0.8494512438774109, + "confidence": 0.8494508862495422, "cells": [ { "index": 28, @@ -271219,7 +271219,7 @@ "b": 381.61447, "coord_origin": "TOPLEFT" }, - "confidence": 0.8567671179771423, + "confidence": 0.8567669987678528, "cells": [ { "index": 43, @@ -271465,7 +271465,7 @@ "b": 458.69144, "coord_origin": "TOPLEFT" }, - "confidence": 0.8832162618637085, + "confidence": 0.883216381072998, "cells": [ { "index": 52, @@ -271811,7 +271811,7 @@ "b": 502.89243, "coord_origin": "TOPLEFT" }, - "confidence": 0.8431925177574158, + "confidence": 0.8431923389434814, "cells": [ { "index": 65, @@ -272032,7 +272032,7 @@ "b": 547.09244, "coord_origin": "TOPLEFT" }, - "confidence": 0.8405635952949524, + "confidence": 0.8405640125274658, "cells": [ { "index": 73, @@ -272499,7 +272499,7 @@ "b": 635.49445, "coord_origin": "TOPLEFT" }, - "confidence": 0.8360886573791504, + "confidence": 0.8360887765884399, "cells": [ { "index": 90, @@ -272720,7 +272720,7 @@ "b": 690.65347, "coord_origin": "TOPLEFT" }, - "confidence": 0.8079474568367004, + "confidence": 0.8079472780227661, "cells": [ { "index": 98, @@ -272941,7 +272941,7 @@ "b": 712.936462, "coord_origin": "TOPLEFT" }, - "confidence": 0.8385783433914185, + "confidence": 0.8385782837867737, "cells": [ { "index": 106, @@ -273187,7 +273187,7 @@ "b": 116.77544999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.7556979060173035, + "confidence": 0.7556983232498169, "cells": [ { "index": 115, @@ -273358,7 +273358,7 @@ "b": 161.60742000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.8375797271728516, + "confidence": 0.8375802040100098, "cells": [ { "index": 121, @@ -273529,7 +273529,7 @@ "b": 743.039555, "coord_origin": "TOPLEFT" }, - "confidence": 0.9069584012031555, + "confidence": 0.9069585800170898, "cells": [ { "index": 127, @@ -273577,7 +273577,7 @@ "b": 94.85875999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.6886764168739319, + "confidence": 0.6886764764785767, "cells": [ { "index": 0, @@ -273673,7 +273673,7 @@ "b": 160.97668, "coord_origin": "TOPLEFT" }, - "confidence": 0.7723011374473572, + "confidence": 0.7723009586334229, "cells": [ { "index": 3, @@ -273919,7 +273919,7 @@ "b": 227.0946, "coord_origin": "TOPLEFT" }, - "confidence": 0.8580600619316101, + "confidence": 0.858059823513031, "cells": [ { "index": 12, @@ -274165,7 +274165,7 @@ "b": 271.29553, "coord_origin": "TOPLEFT" }, - "confidence": 0.8512731194496155, + "confidence": 0.8512733578681946, "cells": [ { "index": 21, @@ -274361,7 +274361,7 @@ "b": 326.4545, "coord_origin": "TOPLEFT" }, - "confidence": 0.8494512438774109, + "confidence": 0.8494508862495422, "cells": [ { "index": 28, @@ -274757,7 +274757,7 @@ "b": 381.61447, "coord_origin": "TOPLEFT" }, - "confidence": 0.8567671179771423, + "confidence": 0.8567669987678528, "cells": [ { "index": 43, @@ -275003,7 +275003,7 @@ "b": 458.69144, "coord_origin": "TOPLEFT" }, - "confidence": 0.8832162618637085, + "confidence": 0.883216381072998, "cells": [ { "index": 52, @@ -275349,7 +275349,7 @@ "b": 502.89243, "coord_origin": "TOPLEFT" }, - "confidence": 0.8431925177574158, + "confidence": 0.8431923389434814, "cells": [ { "index": 65, @@ -275570,7 +275570,7 @@ "b": 547.09244, "coord_origin": "TOPLEFT" }, - "confidence": 0.8405635952949524, + "confidence": 0.8405640125274658, "cells": [ { "index": 73, @@ -276037,7 +276037,7 @@ "b": 635.49445, "coord_origin": "TOPLEFT" }, - "confidence": 0.8360886573791504, + "confidence": 0.8360887765884399, "cells": [ { "index": 90, @@ -276258,7 +276258,7 @@ "b": 690.65347, "coord_origin": "TOPLEFT" }, - "confidence": 0.8079474568367004, + "confidence": 0.8079472780227661, "cells": [ { "index": 98, @@ -276479,7 +276479,7 @@ "b": 712.936462, "coord_origin": "TOPLEFT" }, - "confidence": 0.8385783433914185, + "confidence": 0.8385782837867737, "cells": [ { "index": 106, @@ -276725,7 +276725,7 @@ "b": 116.77544999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.7556979060173035, + "confidence": 0.7556983232498169, "cells": [ { "index": 115, @@ -276896,7 +276896,7 @@ "b": 161.60742000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.8375797271728516, + "confidence": 0.8375802040100098, "cells": [ { "index": 121, @@ -277069,7 +277069,7 @@ "b": 743.039555, "coord_origin": "TOPLEFT" }, - "confidence": 0.9069584012031555, + "confidence": 0.9069585800170898, "cells": [ { "index": 127, @@ -279776,7 +279776,7 @@ "b": 135.53008999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.6497084498405457, + "confidence": 0.6497083306312561, "cells": [ { "index": 0, @@ -280386,7 +280386,7 @@ "b": 627.4597, "coord_origin": "TOPLEFT" }, - "confidence": 0.9826022386550903, + "confidence": 0.9826023578643799, "cells": [ { "index": 22, @@ -280926,7 +280926,7 @@ "b": 651.57269, "coord_origin": "TOPLEFT" }, - "confidence": 0.9335853457450867, + "confidence": 0.9335852265357971, "cells": [ { "index": 43, @@ -280991,7 +280991,7 @@ "b": 672.24219, "coord_origin": "TOPLEFT" }, - "confidence": 0.9515743255615234, + "confidence": 0.9515743851661682, "cells": [ { "index": 45, @@ -281171,7 +281171,7 @@ "b": 207.42773, "coord_origin": "TOPLEFT" }, - "confidence": 0.9596064686775208, + "confidence": 0.9596062302589417, "cells": [ { "index": 51, @@ -281906,7 +281906,7 @@ "b": 497.38861, "coord_origin": "TOPLEFT" }, - "confidence": 0.9568928480148315, + "confidence": 0.9568929672241211, "cells": [ { "index": 78, @@ -282426,7 +282426,7 @@ "b": 646.98631, "coord_origin": "TOPLEFT" }, - "confidence": 0.954940915107727, + "confidence": 0.9549408555030823, "cells": [ { "index": 97, @@ -282711,7 +282711,7 @@ "b": 135.53008999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.6497084498405457, + "confidence": 0.6497083306312561, "cells": [ { "index": 0, @@ -283345,7 +283345,7 @@ "b": 627.4597, "coord_origin": "TOPLEFT" }, - "confidence": 0.9826022386550903, + "confidence": 0.9826023578643799, "cells": [ { "index": 22, @@ -283891,7 +283891,7 @@ "b": 651.57269, "coord_origin": "TOPLEFT" }, - "confidence": 0.9335853457450867, + "confidence": 0.9335852265357971, "cells": [ { "index": 43, @@ -283962,7 +283962,7 @@ "b": 672.24219, "coord_origin": "TOPLEFT" }, - "confidence": 0.9515743255615234, + "confidence": 0.9515743851661682, "cells": [ { "index": 45, @@ -284154,7 +284154,7 @@ "b": 207.42773, "coord_origin": "TOPLEFT" }, - "confidence": 0.9596064686775208, + "confidence": 0.9596062302589417, "cells": [ { "index": 51, @@ -284913,7 +284913,7 @@ "b": 497.38861, "coord_origin": "TOPLEFT" }, - "confidence": 0.9568928480148315, + "confidence": 0.9568929672241211, "cells": [ { "index": 78, @@ -285451,7 +285451,7 @@ "b": 646.98631, "coord_origin": "TOPLEFT" }, - "confidence": 0.954940915107727, + "confidence": 0.9549408555030823, "cells": [ { "index": 97, @@ -285741,7 +285741,7 @@ "b": 135.53008999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.6497084498405457, + "confidence": 0.6497083306312561, "cells": [ { "index": 0, @@ -286375,7 +286375,7 @@ "b": 627.4597, "coord_origin": "TOPLEFT" }, - "confidence": 0.9826022386550903, + "confidence": 0.9826023578643799, "cells": [ { "index": 22, @@ -286921,7 +286921,7 @@ "b": 651.57269, "coord_origin": "TOPLEFT" }, - "confidence": 0.9335853457450867, + "confidence": 0.9335852265357971, "cells": [ { "index": 43, @@ -286992,7 +286992,7 @@ "b": 672.24219, "coord_origin": "TOPLEFT" }, - "confidence": 0.9515743255615234, + "confidence": 0.9515743851661682, "cells": [ { "index": 45, @@ -287184,7 +287184,7 @@ "b": 207.42773, "coord_origin": "TOPLEFT" }, - "confidence": 0.9596064686775208, + "confidence": 0.9596062302589417, "cells": [ { "index": 51, @@ -287943,7 +287943,7 @@ "b": 497.38861, "coord_origin": "TOPLEFT" }, - "confidence": 0.9568928480148315, + "confidence": 0.9568929672241211, "cells": [ { "index": 78, @@ -288481,7 +288481,7 @@ "b": 646.98631, "coord_origin": "TOPLEFT" }, - "confidence": 0.954940915107727, + "confidence": 0.9549408555030823, "cells": [ { "index": 97, @@ -293432,7 +293432,7 @@ "b": 147.59091186523438, "coord_origin": "TOPLEFT" }, - "confidence": 0.6033818125724792, + "confidence": 0.6033809185028076, "cells": [ { "index": 0, @@ -297348,7 +297348,7 @@ "b": 231.79296999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9621952772140503, + "confidence": 0.9621953964233398, "cells": [ { "index": 61, @@ -297438,7 +297438,7 @@ "b": 264.93298000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9629555344581604, + "confidence": 0.96295565366745, "cells": [ { "index": 64, @@ -297528,7 +297528,7 @@ "b": 395.70688, "coord_origin": "TOPLEFT" }, - "confidence": 0.9767085909843445, + "confidence": 0.9767084717750549, "cells": [ { "index": 67, @@ -297793,7 +297793,7 @@ "b": 419.93188, "coord_origin": "TOPLEFT" }, - "confidence": 0.934766411781311, + "confidence": 0.9347663521766663, "cells": [ { "index": 77, @@ -297858,7 +297858,7 @@ "b": 456.11185000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.8280702233314514, + "confidence": 0.8280696272850037, "cells": [ { "index": 79, @@ -297973,7 +297973,7 @@ "b": 504.2468, "coord_origin": "TOPLEFT" }, - "confidence": 0.9646760821342468, + "confidence": 0.9646762013435364, "cells": [ { "index": 83, @@ -298113,7 +298113,7 @@ "b": 528.4727800000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9391399025917053, + "confidence": 0.9391400218009949, "cells": [ { "index": 88, @@ -298203,7 +298203,7 @@ "b": 564.65277, "coord_origin": "TOPLEFT" }, - "confidence": 0.9491708874702454, + "confidence": 0.9491710066795349, "cells": [ { "index": 91, @@ -298293,7 +298293,7 @@ "b": 600.83278, "coord_origin": "TOPLEFT" }, - "confidence": 0.9587163329124451, + "confidence": 0.9587164521217346, "cells": [ { "index": 94, @@ -298408,7 +298408,7 @@ "b": 654.1056100000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9298412799835205, + "confidence": 0.9298411011695862, "cells": [ { "index": 98, @@ -298848,7 +298848,7 @@ "b": 688.92679, "coord_origin": "TOPLEFT" }, - "confidence": 0.9545555114746094, + "confidence": 0.9545556306838989, "cells": [ { "index": 115, @@ -299113,7 +299113,7 @@ "b": 713.151787, "coord_origin": "TOPLEFT" }, - "confidence": 0.9260510206222534, + "confidence": 0.9260509014129639, "cells": [ { "index": 125, @@ -299253,7 +299253,7 @@ "b": 255.7038, "coord_origin": "TOPLEFT" }, - "confidence": 0.8942298889160156, + "confidence": 0.8942293524742126, "cells": [ { "index": 130, @@ -299368,7 +299368,7 @@ "b": 279.96380999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9423392415046692, + "confidence": 0.9423390626907349, "cells": [ { "index": 134, @@ -299508,7 +299508,7 @@ "b": 387.91071, "coord_origin": "TOPLEFT" }, - "confidence": 0.9562004804611206, + "confidence": 0.9562005996704102, "cells": [ { "index": 139, @@ -299798,7 +299798,7 @@ "b": 459.99164, "coord_origin": "TOPLEFT" }, - "confidence": 0.8719939589500427, + "confidence": 0.8719941973686218, "cells": [ { "index": 150, @@ -299988,7 +299988,7 @@ "b": 567.93858, "coord_origin": "TOPLEFT" }, - "confidence": 0.9126082062721252, + "confidence": 0.9126085042953491, "cells": [ { "index": 157, @@ -300278,7 +300278,7 @@ "b": 604.15459, "coord_origin": "TOPLEFT" }, - "confidence": 0.8459473848342896, + "confidence": 0.8459469676017761, "cells": [ { "index": 168, @@ -300418,7 +300418,7 @@ "b": 628.4155900000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.7716891169548035, + "confidence": 0.771689236164093, "cells": [ { "index": 173, @@ -300648,7 +300648,7 @@ "b": 688.89159, "coord_origin": "TOPLEFT" }, - "confidence": 0.7590745091438293, + "confidence": 0.7590745687484741, "cells": [ { "index": 181, @@ -300713,7 +300713,7 @@ "b": 713.151596, "coord_origin": "TOPLEFT" }, - "confidence": 0.6971189975738525, + "confidence": 0.6971189379692078, "cells": [ { "index": 183, @@ -300833,7 +300833,7 @@ "b": 147.59091186523438, "coord_origin": "TOPLEFT" }, - "confidence": 0.6033818125724792, + "confidence": 0.6033809185028076, "cells": [ { "index": 0, @@ -304765,7 +304765,7 @@ "b": 231.79296999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9621952772140503, + "confidence": 0.9621953964233398, "cells": [ { "index": 61, @@ -304861,7 +304861,7 @@ "b": 264.93298000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9629555344581604, + "confidence": 0.96295565366745, "cells": [ { "index": 64, @@ -304957,7 +304957,7 @@ "b": 395.70688, "coord_origin": "TOPLEFT" }, - "confidence": 0.9767085909843445, + "confidence": 0.9767084717750549, "cells": [ { "index": 67, @@ -305228,7 +305228,7 @@ "b": 419.93188, "coord_origin": "TOPLEFT" }, - "confidence": 0.934766411781311, + "confidence": 0.9347663521766663, "cells": [ { "index": 77, @@ -305299,7 +305299,7 @@ "b": 456.11185000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.8280702233314514, + "confidence": 0.8280696272850037, "cells": [ { "index": 79, @@ -305420,7 +305420,7 @@ "b": 504.2468, "coord_origin": "TOPLEFT" }, - "confidence": 0.9646760821342468, + "confidence": 0.9646762013435364, "cells": [ { "index": 83, @@ -305566,7 +305566,7 @@ "b": 528.4727800000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9391399025917053, + "confidence": 0.9391400218009949, "cells": [ { "index": 88, @@ -305662,7 +305662,7 @@ "b": 564.65277, "coord_origin": "TOPLEFT" }, - "confidence": 0.9491708874702454, + "confidence": 0.9491710066795349, "cells": [ { "index": 91, @@ -305758,7 +305758,7 @@ "b": 600.83278, "coord_origin": "TOPLEFT" }, - "confidence": 0.9587163329124451, + "confidence": 0.9587164521217346, "cells": [ { "index": 94, @@ -305879,7 +305879,7 @@ "b": 654.1056100000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9298412799835205, + "confidence": 0.9298411011695862, "cells": [ { "index": 98, @@ -306325,7 +306325,7 @@ "b": 688.92679, "coord_origin": "TOPLEFT" }, - "confidence": 0.9545555114746094, + "confidence": 0.9545556306838989, "cells": [ { "index": 115, @@ -306596,7 +306596,7 @@ "b": 713.151787, "coord_origin": "TOPLEFT" }, - "confidence": 0.9260510206222534, + "confidence": 0.9260509014129639, "cells": [ { "index": 125, @@ -306742,7 +306742,7 @@ "b": 255.7038, "coord_origin": "TOPLEFT" }, - "confidence": 0.8942298889160156, + "confidence": 0.8942293524742126, "cells": [ { "index": 130, @@ -306863,7 +306863,7 @@ "b": 279.96380999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9423392415046692, + "confidence": 0.9423390626907349, "cells": [ { "index": 134, @@ -307009,7 +307009,7 @@ "b": 387.91071, "coord_origin": "TOPLEFT" }, - "confidence": 0.9562004804611206, + "confidence": 0.9562005996704102, "cells": [ { "index": 139, @@ -307305,7 +307305,7 @@ "b": 459.99164, "coord_origin": "TOPLEFT" }, - "confidence": 0.8719939589500427, + "confidence": 0.8719941973686218, "cells": [ { "index": 150, @@ -307501,7 +307501,7 @@ "b": 567.93858, "coord_origin": "TOPLEFT" }, - "confidence": 0.9126082062721252, + "confidence": 0.9126085042953491, "cells": [ { "index": 157, @@ -307797,7 +307797,7 @@ "b": 604.15459, "coord_origin": "TOPLEFT" }, - "confidence": 0.8459473848342896, + "confidence": 0.8459469676017761, "cells": [ { "index": 168, @@ -307943,7 +307943,7 @@ "b": 628.4155900000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.7716891169548035, + "confidence": 0.771689236164093, "cells": [ { "index": 173, @@ -308185,7 +308185,7 @@ "b": 688.89159, "coord_origin": "TOPLEFT" }, - "confidence": 0.7590745091438293, + "confidence": 0.7590745687484741, "cells": [ { "index": 181, @@ -308256,7 +308256,7 @@ "b": 713.151596, "coord_origin": "TOPLEFT" }, - "confidence": 0.6971189975738525, + "confidence": 0.6971189379692078, "cells": [ { "index": 183, @@ -308375,7 +308375,7 @@ "b": 147.59091186523438, "coord_origin": "TOPLEFT" }, - "confidence": 0.6033818125724792, + "confidence": 0.6033809185028076, "cells": [ { "index": 0, @@ -312307,7 +312307,7 @@ "b": 231.79296999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9621952772140503, + "confidence": 0.9621953964233398, "cells": [ { "index": 61, @@ -312403,7 +312403,7 @@ "b": 264.93298000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9629555344581604, + "confidence": 0.96295565366745, "cells": [ { "index": 64, @@ -312499,7 +312499,7 @@ "b": 395.70688, "coord_origin": "TOPLEFT" }, - "confidence": 0.9767085909843445, + "confidence": 0.9767084717750549, "cells": [ { "index": 67, @@ -312770,7 +312770,7 @@ "b": 419.93188, "coord_origin": "TOPLEFT" }, - "confidence": 0.934766411781311, + "confidence": 0.9347663521766663, "cells": [ { "index": 77, @@ -312841,7 +312841,7 @@ "b": 456.11185000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.8280702233314514, + "confidence": 0.8280696272850037, "cells": [ { "index": 79, @@ -312962,7 +312962,7 @@ "b": 504.2468, "coord_origin": "TOPLEFT" }, - "confidence": 0.9646760821342468, + "confidence": 0.9646762013435364, "cells": [ { "index": 83, @@ -313108,7 +313108,7 @@ "b": 528.4727800000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9391399025917053, + "confidence": 0.9391400218009949, "cells": [ { "index": 88, @@ -313204,7 +313204,7 @@ "b": 564.65277, "coord_origin": "TOPLEFT" }, - "confidence": 0.9491708874702454, + "confidence": 0.9491710066795349, "cells": [ { "index": 91, @@ -313300,7 +313300,7 @@ "b": 600.83278, "coord_origin": "TOPLEFT" }, - "confidence": 0.9587163329124451, + "confidence": 0.9587164521217346, "cells": [ { "index": 94, @@ -313421,7 +313421,7 @@ "b": 654.1056100000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9298412799835205, + "confidence": 0.9298411011695862, "cells": [ { "index": 98, @@ -313867,7 +313867,7 @@ "b": 688.92679, "coord_origin": "TOPLEFT" }, - "confidence": 0.9545555114746094, + "confidence": 0.9545556306838989, "cells": [ { "index": 115, @@ -314138,7 +314138,7 @@ "b": 713.151787, "coord_origin": "TOPLEFT" }, - "confidence": 0.9260510206222534, + "confidence": 0.9260509014129639, "cells": [ { "index": 125, @@ -314284,7 +314284,7 @@ "b": 255.7038, "coord_origin": "TOPLEFT" }, - "confidence": 0.8942298889160156, + "confidence": 0.8942293524742126, "cells": [ { "index": 130, @@ -314405,7 +314405,7 @@ "b": 279.96380999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9423392415046692, + "confidence": 0.9423390626907349, "cells": [ { "index": 134, @@ -314551,7 +314551,7 @@ "b": 387.91071, "coord_origin": "TOPLEFT" }, - "confidence": 0.9562004804611206, + "confidence": 0.9562005996704102, "cells": [ { "index": 139, @@ -314847,7 +314847,7 @@ "b": 459.99164, "coord_origin": "TOPLEFT" }, - "confidence": 0.8719939589500427, + "confidence": 0.8719941973686218, "cells": [ { "index": 150, @@ -315043,7 +315043,7 @@ "b": 567.93858, "coord_origin": "TOPLEFT" }, - "confidence": 0.9126082062721252, + "confidence": 0.9126085042953491, "cells": [ { "index": 157, @@ -315339,7 +315339,7 @@ "b": 604.15459, "coord_origin": "TOPLEFT" }, - "confidence": 0.8459473848342896, + "confidence": 0.8459469676017761, "cells": [ { "index": 168, @@ -315485,7 +315485,7 @@ "b": 628.4155900000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.7716891169548035, + "confidence": 0.771689236164093, "cells": [ { "index": 173, @@ -315727,7 +315727,7 @@ "b": 688.89159, "coord_origin": "TOPLEFT" }, - "confidence": 0.7590745091438293, + "confidence": 0.7590745687484741, "cells": [ { "index": 181, @@ -315798,7 +315798,7 @@ "b": 713.151596, "coord_origin": "TOPLEFT" }, - "confidence": 0.6971189975738525, + "confidence": 0.6971189379692078, "cells": [ { "index": 183, @@ -316203,7 +316203,7 @@ "b": 84.11492999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.7545598149299622, + "confidence": 0.7545598745346069, "cells": [ { "index": 0, @@ -316243,7 +316243,7 @@ "b": 108.02495999999985, "coord_origin": "TOPLEFT" }, - "confidence": 0.9170762300491333, + "confidence": 0.9170765280723572, "cells": [ { "index": 1, @@ -316308,7 +316308,7 @@ "b": 131.70587, "coord_origin": "TOPLEFT" }, - "confidence": 0.9454683065414429, + "confidence": 0.9454688429832458, "cells": [ { "index": 3, @@ -316373,7 +316373,7 @@ "b": 510.96292, "coord_origin": "TOPLEFT" }, - "confidence": 0.8971090316772461, + "confidence": 0.8971090912818909, "cells": [ { "index": 5, @@ -316413,7 +316413,7 @@ "b": 327.45990000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.8773345351219177, + "confidence": 0.8773341774940491, "cells": [ { "index": 6, @@ -316543,7 +316543,7 @@ "b": 743.039921, "coord_origin": "TOPLEFT" }, - "confidence": 0.9020507335662842, + "confidence": 0.9020510315895081, "cells": [ { "index": 10, @@ -316578,12 +316578,12 @@ "label": "table", "bbox": { "l": 310.3294372558594, - "t": 101.17767333984375, + "t": 101.17766571044922, "r": 555.8338623046875, - "b": 136.14752197265625, + "b": 136.1475067138672, "coord_origin": "TOPLEFT" }, - "confidence": 0.70481276512146, + "confidence": 0.7048152089118958, "cells": [], "children": [] }, @@ -316592,12 +316592,12 @@ "label": "table", "bbox": { "l": 309.9566345214844, - "t": 154.61448669433594, + "t": 154.61451721191406, "r": 555.7466430664062, - "b": 184.7225341796875, + "b": 184.72256469726562, "coord_origin": "TOPLEFT" }, - "confidence": 0.564289927482605, + "confidence": 0.5642902851104736, "cells": [], "children": [] }, @@ -316611,7 +316611,7 @@ "b": 214.39334106445312, "coord_origin": "TOPLEFT" }, - "confidence": 0.8857279419898987, + "confidence": 0.8857280611991882, "cells": [], "children": [] }, @@ -316619,13 +316619,13 @@ "id": 21, "label": "table", "bbox": { - "l": 309.9635314941406, - "t": 195.70541381835938, - "r": 555.7054443359375, - "b": 233.55145263671875, + "l": 309.96356201171875, + "t": 195.7054901123047, + "r": 555.7053833007812, + "b": 233.55148315429688, "coord_origin": "TOPLEFT" }, - "confidence": 0.6602518558502197, + "confidence": 0.6602524518966675, "cells": [], "children": [] }, @@ -316653,7 +316653,7 @@ "b": 292.39398193359375, "coord_origin": "TOPLEFT" }, - "confidence": 0.6956620812416077, + "confidence": 0.6956619620323181, "cells": [], "children": [] }, @@ -316667,7 +316667,7 @@ "b": 292.39398193359375, "coord_origin": "TOPLEFT" }, - "confidence": 0.52826988697052, + "confidence": 0.5282703042030334, "cells": [], "children": [] }, @@ -316681,7 +316681,7 @@ "b": 367.9095764160156, "coord_origin": "TOPLEFT" }, - "confidence": 0.9085132479667664, + "confidence": 0.908513069152832, "cells": [], "children": [] }, @@ -316695,7 +316695,7 @@ "b": 437.02239990234375, "coord_origin": "TOPLEFT" }, - "confidence": 0.8486077189445496, + "confidence": 0.8486080765724182, "cells": [], "children": [] }, @@ -316703,13 +316703,13 @@ "id": 0, "label": "table", "bbox": { - "l": 83.31756591796875, + "l": 83.31759643554688, "t": 396.0135498046875, "r": 248.873046875, "b": 487.2569885253906, "coord_origin": "TOPLEFT" }, - "confidence": 0.9613965749740601, + "confidence": 0.9613964557647705, "cells": [], "children": [] }, @@ -316723,7 +316723,7 @@ "b": 502.7210998535156, "coord_origin": "TOPLEFT" }, - "confidence": 0.8815538287162781, + "confidence": 0.8815536499023438, "cells": [], "children": [] }, @@ -316737,7 +316737,7 @@ "b": 567.6879272460938, "coord_origin": "TOPLEFT" }, - "confidence": 0.9096733927726746, + "confidence": 0.9096732139587402, "cells": [], "children": [] }, @@ -316751,7 +316751,7 @@ "b": 665.4903564453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.8023569583892822, + "confidence": 0.8023567795753479, "cells": [], "children": [] }, @@ -316765,7 +316765,7 @@ "b": 665.4903564453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.5930293798446655, + "confidence": 0.5930299758911133, "cells": [], "children": [] } @@ -316782,12 +316782,12 @@ "label": "table", "bbox": { "l": 310.3294372558594, - "t": 101.17767333984375, + "t": 101.17766571044922, "r": 555.8338623046875, - "b": 136.14752197265625, + "b": 136.1475067138672, "coord_origin": "TOPLEFT" }, - "confidence": 0.70481276512146, + "confidence": 0.7048152089118958, "cells": [], "children": [] }, @@ -316819,12 +316819,12 @@ "label": "table", "bbox": { "l": 309.9566345214844, - "t": 154.61448669433594, + "t": 154.61451721191406, "r": 555.7466430664062, - "b": 184.7225341796875, + "b": 184.72256469726562, "coord_origin": "TOPLEFT" }, - "confidence": 0.564289927482605, + "confidence": 0.5642902851104736, "cells": [], "children": [] }, @@ -316861,7 +316861,7 @@ "b": 214.39334106445312, "coord_origin": "TOPLEFT" }, - "confidence": 0.8857279419898987, + "confidence": 0.8857280611991882, "cells": [], "children": [] }, @@ -316905,13 +316905,13 @@ "id": 21, "label": "table", "bbox": { - "l": 309.9635314941406, - "t": 195.70541381835938, - "r": 555.7054443359375, - "b": 233.55145263671875, + "l": 309.96356201171875, + "t": 195.7054901123047, + "r": 555.7053833007812, + "b": 233.55148315429688, "coord_origin": "TOPLEFT" }, - "confidence": 0.6602518558502197, + "confidence": 0.6602524518966675, "cells": [], "children": [] }, @@ -316998,7 +316998,7 @@ "b": 292.39398193359375, "coord_origin": "TOPLEFT" }, - "confidence": 0.52826988697052, + "confidence": 0.5282703042030334, "cells": [], "children": [] }, @@ -317035,7 +317035,7 @@ "b": 367.9095764160156, "coord_origin": "TOPLEFT" }, - "confidence": 0.9085132479667664, + "confidence": 0.908513069152832, "cells": [], "children": [] }, @@ -317085,7 +317085,7 @@ "b": 437.02239990234375, "coord_origin": "TOPLEFT" }, - "confidence": 0.8486077189445496, + "confidence": 0.8486080765724182, "cells": [], "children": [] }, @@ -317140,13 +317140,13 @@ "id": 0, "label": "table", "bbox": { - "l": 83.31756591796875, + "l": 83.31759643554688, "t": 396.0135498046875, "r": 248.873046875, "b": 487.2569885253906, "coord_origin": "TOPLEFT" }, - "confidence": 0.9613965749740601, + "confidence": 0.9613964557647705, "cells": [], "children": [] }, @@ -317201,7 +317201,7 @@ "b": 502.7210998535156, "coord_origin": "TOPLEFT" }, - "confidence": 0.8815538287162781, + "confidence": 0.8815536499023438, "cells": [], "children": [] }, @@ -317262,7 +317262,7 @@ "b": 567.6879272460938, "coord_origin": "TOPLEFT" }, - "confidence": 0.9096733927726746, + "confidence": 0.9096732139587402, "cells": [], "children": [] }, @@ -317323,7 +317323,7 @@ "b": 665.4903564453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.5930293798446655, + "confidence": 0.5930299758911133, "cells": [], "children": [] }, @@ -317410,7 +317410,7 @@ "b": 84.11492999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.7545598149299622, + "confidence": 0.7545598745346069, "cells": [ { "index": 0, @@ -317456,7 +317456,7 @@ "b": 108.02495999999985, "coord_origin": "TOPLEFT" }, - "confidence": 0.9170762300491333, + "confidence": 0.9170765280723572, "cells": [ { "index": 1, @@ -317527,7 +317527,7 @@ "b": 131.70587, "coord_origin": "TOPLEFT" }, - "confidence": 0.9454683065414429, + "confidence": 0.9454688429832458, "cells": [ { "index": 3, @@ -317598,7 +317598,7 @@ "b": 510.96292, "coord_origin": "TOPLEFT" }, - "confidence": 0.8971090316772461, + "confidence": 0.8971090912818909, "cells": [ { "index": 5, @@ -317644,7 +317644,7 @@ "b": 327.45990000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.8773345351219177, + "confidence": 0.8773341774940491, "cells": [ { "index": 6, @@ -317786,7 +317786,7 @@ "b": 743.039921, "coord_origin": "TOPLEFT" }, - "confidence": 0.9020507335662842, + "confidence": 0.9020510315895081, "cells": [ { "index": 10, @@ -317827,12 +317827,12 @@ "label": "table", "bbox": { "l": 310.3294372558594, - "t": 101.17767333984375, + "t": 101.17766571044922, "r": 555.8338623046875, - "b": 136.14752197265625, + "b": 136.1475067138672, "coord_origin": "TOPLEFT" }, - "confidence": 0.70481276512146, + "confidence": 0.7048152089118958, "cells": [], "children": [] }, @@ -317864,12 +317864,12 @@ "label": "table", "bbox": { "l": 309.9566345214844, - "t": 154.61448669433594, + "t": 154.61451721191406, "r": 555.7466430664062, - "b": 184.7225341796875, + "b": 184.72256469726562, "coord_origin": "TOPLEFT" }, - "confidence": 0.564289927482605, + "confidence": 0.5642902851104736, "cells": [], "children": [] }, @@ -317906,7 +317906,7 @@ "b": 214.39334106445312, "coord_origin": "TOPLEFT" }, - "confidence": 0.8857279419898987, + "confidence": 0.8857280611991882, "cells": [], "children": [] }, @@ -317950,13 +317950,13 @@ "id": 21, "label": "table", "bbox": { - "l": 309.9635314941406, - "t": 195.70541381835938, - "r": 555.7054443359375, - "b": 233.55145263671875, + "l": 309.96356201171875, + "t": 195.7054901123047, + "r": 555.7053833007812, + "b": 233.55148315429688, "coord_origin": "TOPLEFT" }, - "confidence": 0.6602518558502197, + "confidence": 0.6602524518966675, "cells": [], "children": [] }, @@ -318043,7 +318043,7 @@ "b": 292.39398193359375, "coord_origin": "TOPLEFT" }, - "confidence": 0.6956620812416077, + "confidence": 0.6956619620323181, "cells": [], "children": [] }, @@ -318067,7 +318067,7 @@ "b": 292.39398193359375, "coord_origin": "TOPLEFT" }, - "confidence": 0.52826988697052, + "confidence": 0.5282703042030334, "cells": [], "children": [] }, @@ -318104,7 +318104,7 @@ "b": 367.9095764160156, "coord_origin": "TOPLEFT" }, - "confidence": 0.9085132479667664, + "confidence": 0.908513069152832, "cells": [], "children": [] }, @@ -318154,7 +318154,7 @@ "b": 437.02239990234375, "coord_origin": "TOPLEFT" }, - "confidence": 0.8486077189445496, + "confidence": 0.8486080765724182, "cells": [], "children": [] }, @@ -318209,13 +318209,13 @@ "id": 0, "label": "table", "bbox": { - "l": 83.31756591796875, + "l": 83.31759643554688, "t": 396.0135498046875, "r": 248.873046875, "b": 487.2569885253906, "coord_origin": "TOPLEFT" }, - "confidence": 0.9613965749740601, + "confidence": 0.9613964557647705, "cells": [], "children": [] }, @@ -318270,7 +318270,7 @@ "b": 502.7210998535156, "coord_origin": "TOPLEFT" }, - "confidence": 0.8815538287162781, + "confidence": 0.8815536499023438, "cells": [], "children": [] }, @@ -318331,7 +318331,7 @@ "b": 567.6879272460938, "coord_origin": "TOPLEFT" }, - "confidence": 0.9096733927726746, + "confidence": 0.9096732139587402, "cells": [], "children": [] }, @@ -318392,7 +318392,7 @@ "b": 665.4903564453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.8023569583892822, + "confidence": 0.8023567795753479, "cells": [], "children": [] }, @@ -318416,7 +318416,7 @@ "b": 665.4903564453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.5930293798446655, + "confidence": 0.5930299758911133, "cells": [], "children": [] }, @@ -318497,7 +318497,7 @@ "b": 84.11492999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.7545598149299622, + "confidence": 0.7545598745346069, "cells": [ { "index": 0, @@ -318543,7 +318543,7 @@ "b": 108.02495999999985, "coord_origin": "TOPLEFT" }, - "confidence": 0.9170762300491333, + "confidence": 0.9170765280723572, "cells": [ { "index": 1, @@ -318614,7 +318614,7 @@ "b": 131.70587, "coord_origin": "TOPLEFT" }, - "confidence": 0.9454683065414429, + "confidence": 0.9454688429832458, "cells": [ { "index": 3, @@ -318685,7 +318685,7 @@ "b": 510.96292, "coord_origin": "TOPLEFT" }, - "confidence": 0.8971090316772461, + "confidence": 0.8971090912818909, "cells": [ { "index": 5, @@ -318731,7 +318731,7 @@ "b": 327.45990000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.8773345351219177, + "confidence": 0.8773341774940491, "cells": [ { "index": 6, @@ -318868,12 +318868,12 @@ "label": "table", "bbox": { "l": 310.3294372558594, - "t": 101.17767333984375, + "t": 101.17766571044922, "r": 555.8338623046875, - "b": 136.14752197265625, + "b": 136.1475067138672, "coord_origin": "TOPLEFT" }, - "confidence": 0.70481276512146, + "confidence": 0.7048152089118958, "cells": [], "children": [] }, @@ -318905,12 +318905,12 @@ "label": "table", "bbox": { "l": 309.9566345214844, - "t": 154.61448669433594, + "t": 154.61451721191406, "r": 555.7466430664062, - "b": 184.7225341796875, + "b": 184.72256469726562, "coord_origin": "TOPLEFT" }, - "confidence": 0.564289927482605, + "confidence": 0.5642902851104736, "cells": [], "children": [] }, @@ -318947,7 +318947,7 @@ "b": 214.39334106445312, "coord_origin": "TOPLEFT" }, - "confidence": 0.8857279419898987, + "confidence": 0.8857280611991882, "cells": [], "children": [] }, @@ -318991,13 +318991,13 @@ "id": 21, "label": "table", "bbox": { - "l": 309.9635314941406, - "t": 195.70541381835938, - "r": 555.7054443359375, - "b": 233.55145263671875, + "l": 309.96356201171875, + "t": 195.7054901123047, + "r": 555.7053833007812, + "b": 233.55148315429688, "coord_origin": "TOPLEFT" }, - "confidence": 0.6602518558502197, + "confidence": 0.6602524518966675, "cells": [], "children": [] }, @@ -319084,7 +319084,7 @@ "b": 292.39398193359375, "coord_origin": "TOPLEFT" }, - "confidence": 0.6956620812416077, + "confidence": 0.6956619620323181, "cells": [], "children": [] }, @@ -319108,7 +319108,7 @@ "b": 292.39398193359375, "coord_origin": "TOPLEFT" }, - "confidence": 0.52826988697052, + "confidence": 0.5282703042030334, "cells": [], "children": [] }, @@ -319145,7 +319145,7 @@ "b": 367.9095764160156, "coord_origin": "TOPLEFT" }, - "confidence": 0.9085132479667664, + "confidence": 0.908513069152832, "cells": [], "children": [] }, @@ -319195,7 +319195,7 @@ "b": 437.02239990234375, "coord_origin": "TOPLEFT" }, - "confidence": 0.8486077189445496, + "confidence": 0.8486080765724182, "cells": [], "children": [] }, @@ -319250,13 +319250,13 @@ "id": 0, "label": "table", "bbox": { - "l": 83.31756591796875, + "l": 83.31759643554688, "t": 396.0135498046875, "r": 248.873046875, "b": 487.2569885253906, "coord_origin": "TOPLEFT" }, - "confidence": 0.9613965749740601, + "confidence": 0.9613964557647705, "cells": [], "children": [] }, @@ -319311,7 +319311,7 @@ "b": 502.7210998535156, "coord_origin": "TOPLEFT" }, - "confidence": 0.8815538287162781, + "confidence": 0.8815536499023438, "cells": [], "children": [] }, @@ -319372,7 +319372,7 @@ "b": 567.6879272460938, "coord_origin": "TOPLEFT" }, - "confidence": 0.9096733927726746, + "confidence": 0.9096732139587402, "cells": [], "children": [] }, @@ -319433,7 +319433,7 @@ "b": 665.4903564453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.8023569583892822, + "confidence": 0.8023567795753479, "cells": [], "children": [] }, @@ -319457,7 +319457,7 @@ "b": 665.4903564453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.5930293798446655, + "confidence": 0.5930299758911133, "cells": [], "children": [] }, @@ -319538,7 +319538,7 @@ "b": 743.039921, "coord_origin": "TOPLEFT" }, - "confidence": 0.9020507335662842, + "confidence": 0.9020510315895081, "cells": [ { "index": 10, @@ -319770,7 +319770,7 @@ "b": 377.6319, "coord_origin": "TOPLEFT" }, - "confidence": 0.951069176197052, + "confidence": 0.9510690569877625, "cells": [ { "index": 0, @@ -319860,7 +319860,7 @@ "b": 680.72492, "coord_origin": "TOPLEFT" }, - "confidence": 0.926384687423706, + "confidence": 0.9263845086097717, "cells": [ { "index": 3, @@ -319900,7 +319900,7 @@ "b": 380.59091, "coord_origin": "TOPLEFT" }, - "confidence": 0.9178510904312134, + "confidence": 0.9178509712219238, "cells": [ { "index": 4, @@ -319940,7 +319940,7 @@ "b": 692.452927, "coord_origin": "TOPLEFT" }, - "confidence": 0.9191023111343384, + "confidence": 0.919101893901825, "cells": [ { "index": 5, @@ -319980,7 +319980,7 @@ "b": 743.039925, "coord_origin": "TOPLEFT" }, - "confidence": 0.887715220451355, + "confidence": 0.8877150416374207, "cells": [ { "index": 6, @@ -320020,7 +320020,7 @@ "b": 359.0575866699219, "coord_origin": "TOPLEFT" }, - "confidence": 0.5003598928451538, + "confidence": 0.5003602504730225, "cells": [], "children": [] }, @@ -320028,13 +320028,13 @@ "id": 30, "label": "picture", "bbox": { - "l": 51.15378952026367, + "l": 51.153778076171875, "t": 104.30851745605469, "r": 282.8598937988281, "b": 344.90667724609375, "coord_origin": "TOPLEFT" }, - "confidence": 0.5613773465156555, + "confidence": 0.5613781213760376, "cells": [], "children": [] }, @@ -320048,7 +320048,7 @@ "b": 214.6260528564453, "coord_origin": "TOPLEFT" }, - "confidence": 0.6235634684562683, + "confidence": 0.6235637068748474, "cells": [], "children": [] }, @@ -320062,7 +320062,7 @@ "b": 279.8576965332031, "coord_origin": "TOPLEFT" }, - "confidence": 0.5502500534057617, + "confidence": 0.5502495765686035, "cells": [], "children": [] }, @@ -320070,13 +320070,13 @@ "id": 27, "label": "table", "bbox": { - "l": 51.72642135620117, - "t": 273.6092834472656, - "r": 283.114013671875, - "b": 344.2445068359375, + "l": 51.726383209228516, + "t": 273.6092529296875, + "r": 283.1140441894531, + "b": 344.2444763183594, "coord_origin": "TOPLEFT" }, - "confidence": 0.5696635246276855, + "confidence": 0.5696631669998169, "cells": [], "children": [] }, @@ -320090,7 +320090,7 @@ "b": 358.2724304199219, "coord_origin": "TOPLEFT" }, - "confidence": 0.5227423310279846, + "confidence": 0.522743284702301, "cells": [], "children": [] }, @@ -320104,7 +320104,7 @@ "b": 477.94354248046875, "coord_origin": "TOPLEFT" }, - "confidence": 0.8384715914726257, + "confidence": 0.8384720087051392, "cells": [], "children": [] }, @@ -320112,13 +320112,13 @@ "id": 9, "label": "table", "bbox": { - "l": 51.434879302978516, + "l": 51.43488693237305, "t": 453.48748779296875, "r": 310.7267150878906, "b": 491.82025146484375, "coord_origin": "TOPLEFT" }, - "confidence": 0.8418155908584595, + "confidence": 0.8418160080909729, "cells": [], "children": [] }, @@ -320132,7 +320132,7 @@ "b": 535.69580078125, "coord_origin": "TOPLEFT" }, - "confidence": 0.8502867221832275, + "confidence": 0.8502869606018066, "cells": [], "children": [] }, @@ -320146,7 +320146,7 @@ "b": 542.4459838867188, "coord_origin": "TOPLEFT" }, - "confidence": 0.8922696709632874, + "confidence": 0.8922702074050903, "cells": [], "children": [] }, @@ -320160,7 +320160,7 @@ "b": 593.1064453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.6817973256111145, + "confidence": 0.681797444820404, "cells": [], "children": [] }, @@ -320168,13 +320168,13 @@ "id": 6, "label": "table", "bbox": { - "l": 51.27280807495117, + "l": 51.2728271484375, "t": 553.728515625, "r": 311.0897216796875, "b": 591.913330078125, "coord_origin": "TOPLEFT" }, - "confidence": 0.88722163438797, + "confidence": 0.8872225880622864, "cells": [], "children": [] }, @@ -320182,13 +320182,13 @@ "id": 7, "label": "table", "bbox": { - "l": 319.06494140625, - "t": 609.8408203125, - "r": 533.77392578125, + "l": 319.0649719238281, + "t": 609.8409423828125, + "r": 533.7738647460938, "b": 669.1920776367188, "coord_origin": "TOPLEFT" }, - "confidence": 0.8717735409736633, + "confidence": 0.8717731237411499, "cells": [], "children": [] }, @@ -320224,7 +320224,7 @@ "b": 214.6260528564453, "coord_origin": "TOPLEFT" }, - "confidence": 0.6235634684562683, + "confidence": 0.6235637068748474, "cells": [], "children": [] }, @@ -320291,7 +320291,7 @@ "b": 279.8576965332031, "coord_origin": "TOPLEFT" }, - "confidence": 0.5502500534057617, + "confidence": 0.5502495765686035, "cells": [], "children": [] }, @@ -320352,13 +320352,13 @@ "id": 27, "label": "table", "bbox": { - "l": 51.72642135620117, - "t": 273.6092834472656, - "r": 283.114013671875, - "b": 344.2445068359375, + "l": 51.726383209228516, + "t": 273.6092529296875, + "r": 283.1140441894531, + "b": 344.2444763183594, "coord_origin": "TOPLEFT" }, - "confidence": 0.5696635246276855, + "confidence": 0.5696631669998169, "cells": [], "children": [] }, @@ -320432,7 +320432,7 @@ "b": 358.2724304199219, "coord_origin": "TOPLEFT" }, - "confidence": 0.5227423310279846, + "confidence": 0.522743284702301, "cells": [], "children": [] }, @@ -320478,7 +320478,7 @@ "b": 477.94354248046875, "coord_origin": "TOPLEFT" }, - "confidence": 0.8384715914726257, + "confidence": 0.8384720087051392, "cells": [], "children": [] }, @@ -320521,13 +320521,13 @@ "id": 9, "label": "table", "bbox": { - "l": 51.434879302978516, + "l": 51.43488693237305, "t": 453.48748779296875, "r": 310.7267150878906, "b": 491.82025146484375, "coord_origin": "TOPLEFT" }, - "confidence": 0.8418155908584595, + "confidence": 0.8418160080909729, "cells": [], "children": [] }, @@ -320572,7 +320572,7 @@ "b": 535.69580078125, "coord_origin": "TOPLEFT" }, - "confidence": 0.8502867221832275, + "confidence": 0.8502869606018066, "cells": [], "children": [] }, @@ -320621,7 +320621,7 @@ "b": 542.4459838867188, "coord_origin": "TOPLEFT" }, - "confidence": 0.8922696709632874, + "confidence": 0.8922702074050903, "cells": [], "children": [] }, @@ -320666,7 +320666,7 @@ "b": 593.1064453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.6817973256111145, + "confidence": 0.681797444820404, "cells": [], "children": [] }, @@ -320709,13 +320709,13 @@ "id": 6, "label": "table", "bbox": { - "l": 51.27280807495117, + "l": 51.2728271484375, "t": 553.728515625, "r": 311.0897216796875, "b": 591.913330078125, "coord_origin": "TOPLEFT" }, - "confidence": 0.88722163438797, + "confidence": 0.8872225880622864, "cells": [], "children": [] }, @@ -320754,13 +320754,13 @@ "id": 7, "label": "table", "bbox": { - "l": 319.06494140625, - "t": 609.8408203125, - "r": 533.77392578125, + "l": 319.0649719238281, + "t": 609.8409423828125, + "r": 533.7738647460938, "b": 669.1920776367188, "coord_origin": "TOPLEFT" }, - "confidence": 0.8717735409736633, + "confidence": 0.8717731237411499, "cells": [], "children": [] }, @@ -320821,7 +320821,7 @@ "b": 377.6319, "coord_origin": "TOPLEFT" }, - "confidence": 0.951069176197052, + "confidence": 0.9510690569877625, "cells": [ { "index": 0, @@ -320917,7 +320917,7 @@ "b": 680.72492, "coord_origin": "TOPLEFT" }, - "confidence": 0.926384687423706, + "confidence": 0.9263845086097717, "cells": [ { "index": 3, @@ -320963,7 +320963,7 @@ "b": 380.59091, "coord_origin": "TOPLEFT" }, - "confidence": 0.9178510904312134, + "confidence": 0.9178509712219238, "cells": [ { "index": 4, @@ -321009,7 +321009,7 @@ "b": 692.452927, "coord_origin": "TOPLEFT" }, - "confidence": 0.9191023111343384, + "confidence": 0.919101893901825, "cells": [ { "index": 5, @@ -321055,7 +321055,7 @@ "b": 743.039925, "coord_origin": "TOPLEFT" }, - "confidence": 0.887715220451355, + "confidence": 0.8877150416374207, "cells": [ { "index": 6, @@ -321101,7 +321101,7 @@ "b": 359.0575866699219, "coord_origin": "TOPLEFT" }, - "confidence": 0.5003598928451538, + "confidence": 0.5003602504730225, "cells": [], "children": [] }, @@ -321119,13 +321119,13 @@ "id": 30, "label": "picture", "bbox": { - "l": 51.15378952026367, + "l": 51.153778076171875, "t": 104.30851745605469, "r": 282.8598937988281, "b": 344.90667724609375, "coord_origin": "TOPLEFT" }, - "confidence": 0.5613773465156555, + "confidence": 0.5613781213760376, "cells": [], "children": [] }, @@ -321149,7 +321149,7 @@ "b": 214.6260528564453, "coord_origin": "TOPLEFT" }, - "confidence": 0.6235634684562683, + "confidence": 0.6235637068748474, "cells": [], "children": [] }, @@ -321216,7 +321216,7 @@ "b": 279.8576965332031, "coord_origin": "TOPLEFT" }, - "confidence": 0.5502500534057617, + "confidence": 0.5502495765686035, "cells": [], "children": [] }, @@ -321277,13 +321277,13 @@ "id": 27, "label": "table", "bbox": { - "l": 51.72642135620117, - "t": 273.6092834472656, - "r": 283.114013671875, - "b": 344.2445068359375, + "l": 51.726383209228516, + "t": 273.6092529296875, + "r": 283.1140441894531, + "b": 344.2444763183594, "coord_origin": "TOPLEFT" }, - "confidence": 0.5696635246276855, + "confidence": 0.5696631669998169, "cells": [], "children": [] }, @@ -321357,7 +321357,7 @@ "b": 358.2724304199219, "coord_origin": "TOPLEFT" }, - "confidence": 0.5227423310279846, + "confidence": 0.522743284702301, "cells": [], "children": [] }, @@ -321403,7 +321403,7 @@ "b": 477.94354248046875, "coord_origin": "TOPLEFT" }, - "confidence": 0.8384715914726257, + "confidence": 0.8384720087051392, "cells": [], "children": [] }, @@ -321446,13 +321446,13 @@ "id": 9, "label": "table", "bbox": { - "l": 51.434879302978516, + "l": 51.43488693237305, "t": 453.48748779296875, "r": 310.7267150878906, "b": 491.82025146484375, "coord_origin": "TOPLEFT" }, - "confidence": 0.8418155908584595, + "confidence": 0.8418160080909729, "cells": [], "children": [] }, @@ -321497,7 +321497,7 @@ "b": 535.69580078125, "coord_origin": "TOPLEFT" }, - "confidence": 0.8502867221832275, + "confidence": 0.8502869606018066, "cells": [], "children": [] }, @@ -321546,7 +321546,7 @@ "b": 542.4459838867188, "coord_origin": "TOPLEFT" }, - "confidence": 0.8922696709632874, + "confidence": 0.8922702074050903, "cells": [], "children": [] }, @@ -321591,7 +321591,7 @@ "b": 593.1064453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.6817973256111145, + "confidence": 0.681797444820404, "cells": [], "children": [] }, @@ -321634,13 +321634,13 @@ "id": 6, "label": "table", "bbox": { - "l": 51.27280807495117, + "l": 51.2728271484375, "t": 553.728515625, "r": 311.0897216796875, "b": 591.913330078125, "coord_origin": "TOPLEFT" }, - "confidence": 0.88722163438797, + "confidence": 0.8872225880622864, "cells": [], "children": [] }, @@ -321679,13 +321679,13 @@ "id": 7, "label": "table", "bbox": { - "l": 319.06494140625, - "t": 609.8408203125, - "r": 533.77392578125, + "l": 319.0649719238281, + "t": 609.8409423828125, + "r": 533.7738647460938, "b": 669.1920776367188, "coord_origin": "TOPLEFT" }, - "confidence": 0.8717735409736633, + "confidence": 0.8717731237411499, "cells": [], "children": [] }, @@ -321764,7 +321764,7 @@ "b": 377.6319, "coord_origin": "TOPLEFT" }, - "confidence": 0.951069176197052, + "confidence": 0.9510690569877625, "cells": [ { "index": 0, @@ -321860,7 +321860,7 @@ "b": 680.72492, "coord_origin": "TOPLEFT" }, - "confidence": 0.926384687423706, + "confidence": 0.9263845086097717, "cells": [ { "index": 3, @@ -321906,7 +321906,7 @@ "b": 380.59091, "coord_origin": "TOPLEFT" }, - "confidence": 0.9178510904312134, + "confidence": 0.9178509712219238, "cells": [ { "index": 4, @@ -321952,7 +321952,7 @@ "b": 692.452927, "coord_origin": "TOPLEFT" }, - "confidence": 0.9191023111343384, + "confidence": 0.919101893901825, "cells": [ { "index": 5, @@ -321998,7 +321998,7 @@ "b": 359.0575866699219, "coord_origin": "TOPLEFT" }, - "confidence": 0.5003598928451538, + "confidence": 0.5003602504730225, "cells": [], "children": [] }, @@ -322016,13 +322016,13 @@ "id": 30, "label": "picture", "bbox": { - "l": 51.15378952026367, + "l": 51.153778076171875, "t": 104.30851745605469, "r": 282.8598937988281, "b": 344.90667724609375, "coord_origin": "TOPLEFT" }, - "confidence": 0.5613773465156555, + "confidence": 0.5613781213760376, "cells": [], "children": [] }, @@ -322046,7 +322046,7 @@ "b": 214.6260528564453, "coord_origin": "TOPLEFT" }, - "confidence": 0.6235634684562683, + "confidence": 0.6235637068748474, "cells": [], "children": [] }, @@ -322113,7 +322113,7 @@ "b": 279.8576965332031, "coord_origin": "TOPLEFT" }, - "confidence": 0.5502500534057617, + "confidence": 0.5502495765686035, "cells": [], "children": [] }, @@ -322174,13 +322174,13 @@ "id": 27, "label": "table", "bbox": { - "l": 51.72642135620117, - "t": 273.6092834472656, - "r": 283.114013671875, - "b": 344.2445068359375, + "l": 51.726383209228516, + "t": 273.6092529296875, + "r": 283.1140441894531, + "b": 344.2444763183594, "coord_origin": "TOPLEFT" }, - "confidence": 0.5696635246276855, + "confidence": 0.5696631669998169, "cells": [], "children": [] }, @@ -322254,7 +322254,7 @@ "b": 358.2724304199219, "coord_origin": "TOPLEFT" }, - "confidence": 0.5227423310279846, + "confidence": 0.522743284702301, "cells": [], "children": [] }, @@ -322300,7 +322300,7 @@ "b": 477.94354248046875, "coord_origin": "TOPLEFT" }, - "confidence": 0.8384715914726257, + "confidence": 0.8384720087051392, "cells": [], "children": [] }, @@ -322343,13 +322343,13 @@ "id": 9, "label": "table", "bbox": { - "l": 51.434879302978516, + "l": 51.43488693237305, "t": 453.48748779296875, "r": 310.7267150878906, "b": 491.82025146484375, "coord_origin": "TOPLEFT" }, - "confidence": 0.8418155908584595, + "confidence": 0.8418160080909729, "cells": [], "children": [] }, @@ -322394,7 +322394,7 @@ "b": 535.69580078125, "coord_origin": "TOPLEFT" }, - "confidence": 0.8502867221832275, + "confidence": 0.8502869606018066, "cells": [], "children": [] }, @@ -322443,7 +322443,7 @@ "b": 542.4459838867188, "coord_origin": "TOPLEFT" }, - "confidence": 0.8922696709632874, + "confidence": 0.8922702074050903, "cells": [], "children": [] }, @@ -322488,7 +322488,7 @@ "b": 593.1064453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.6817973256111145, + "confidence": 0.681797444820404, "cells": [], "children": [] }, @@ -322531,13 +322531,13 @@ "id": 6, "label": "table", "bbox": { - "l": 51.27280807495117, + "l": 51.2728271484375, "t": 553.728515625, "r": 311.0897216796875, "b": 591.913330078125, "coord_origin": "TOPLEFT" }, - "confidence": 0.88722163438797, + "confidence": 0.8872225880622864, "cells": [], "children": [] }, @@ -322576,13 +322576,13 @@ "id": 7, "label": "table", "bbox": { - "l": 319.06494140625, - "t": 609.8408203125, - "r": 533.77392578125, + "l": 319.0649719238281, + "t": 609.8409423828125, + "r": 533.7738647460938, "b": 669.1920776367188, "coord_origin": "TOPLEFT" }, - "confidence": 0.8717735409736633, + "confidence": 0.8717731237411499, "cells": [], "children": [] }, @@ -322661,7 +322661,7 @@ "b": 743.039925, "coord_origin": "TOPLEFT" }, - "confidence": 0.887715220451355, + "confidence": 0.8877150416374207, "cells": [ { "index": 6, @@ -322818,7 +322818,7 @@ "b": 653.25793, "coord_origin": "TOPLEFT" }, - "confidence": 0.9257225394248962, + "confidence": 0.9257223606109619, "cells": [ { "index": 0, @@ -322858,7 +322858,7 @@ "b": 673.79691, "coord_origin": "TOPLEFT" }, - "confidence": 0.9134758710861206, + "confidence": 0.9134756922721863, "cells": [ { "index": 1, @@ -322923,7 +322923,7 @@ "b": 743.039906, "coord_origin": "TOPLEFT" }, - "confidence": 0.9037020802497864, + "confidence": 0.9037018418312073, "cells": [ { "index": 3, @@ -322957,13 +322957,13 @@ "id": 4, "label": "table", "bbox": { - "l": 323.0059509277344, - "t": 121.54714965820312, - "r": 525.95166015625, - "b": 222.91140747070312, + "l": 323.0059814453125, + "t": 121.54713439941406, + "r": 525.9517211914062, + "b": 222.9114227294922, "coord_origin": "TOPLEFT" }, - "confidence": 0.8569068908691406, + "confidence": 0.856907069683075, "cells": [], "children": [] }, @@ -322971,13 +322971,13 @@ "id": 6, "label": "picture", "bbox": { - "l": 55.116363525390625, + "l": 55.11635208129883, "t": 136.2550048828125, "r": 279.370849609375, - "b": 249.3345489501953, + "b": 249.33450317382812, "coord_origin": "TOPLEFT" }, - "confidence": 0.8099280595779419, + "confidence": 0.809927225112915, "cells": [], "children": [] }, @@ -322985,13 +322985,13 @@ "id": 19, "label": "table", "bbox": { - "l": 55.116363525390625, + "l": 55.11635208129883, "t": 136.2550048828125, "r": 279.370849609375, - "b": 249.3345489501953, + "b": 249.33450317382812, "coord_origin": "TOPLEFT" }, - "confidence": 0.5584819912910461, + "confidence": 0.5584838390350342, "cells": [], "children": [] }, @@ -323000,12 +323000,12 @@ "label": "table", "bbox": { "l": 323.384765625, - "t": 241.9729461669922, + "t": 241.97293090820312, "r": 526.1268920898438, - "b": 344.09210205078125, + "b": 344.0921325683594, "coord_origin": "TOPLEFT" }, - "confidence": 0.9060239195823669, + "confidence": 0.9060238003730774, "cells": [], "children": [] }, @@ -323033,7 +323033,7 @@ "b": 373.5270690917969, "coord_origin": "TOPLEFT" }, - "confidence": 0.7748245000839233, + "confidence": 0.7748245596885681, "cells": [], "children": [] }, @@ -323042,12 +323042,12 @@ "label": "picture", "bbox": { "l": 323.46868896484375, - "t": 362.4508361816406, + "t": 362.4507751464844, "r": 525.9569091796875, - "b": 464.260498046875, + "b": 464.26043701171875, "coord_origin": "TOPLEFT" }, - "confidence": 0.5515198707580566, + "confidence": 0.5515192747116089, "cells": [], "children": [] }, @@ -323056,12 +323056,12 @@ "label": "table", "bbox": { "l": 323.46868896484375, - "t": 362.4508361816406, + "t": 362.4507751464844, "r": 525.9569091796875, - "b": 464.260498046875, + "b": 464.26043701171875, "coord_origin": "TOPLEFT" }, - "confidence": 0.7755160927772522, + "confidence": 0.7755167484283447, "cells": [], "children": [] }, @@ -323075,7 +323075,7 @@ "b": 497.563720703125, "coord_origin": "TOPLEFT" }, - "confidence": 0.8410326838493347, + "confidence": 0.8410324454307556, "cells": [], "children": [] }, @@ -323089,7 +323089,7 @@ "b": 635.7732543945312, "coord_origin": "TOPLEFT" }, - "confidence": 0.5478786826133728, + "confidence": 0.5478792786598206, "cells": [], "children": [] }, @@ -323103,7 +323103,7 @@ "b": 635.7732543945312, "coord_origin": "TOPLEFT" }, - "confidence": 0.7805566787719727, + "confidence": 0.7805564999580383, "cells": [], "children": [] }, @@ -323117,7 +323117,7 @@ "b": 631.263671875, "coord_origin": "TOPLEFT" }, - "confidence": 0.8057592511177063, + "confidence": 0.8057589530944824, "cells": [], "children": [] }, @@ -323131,7 +323131,7 @@ "b": 631.263671875, "coord_origin": "TOPLEFT" }, - "confidence": 0.6835257411003113, + "confidence": 0.6835256218910217, "cells": [], "children": [] } @@ -323147,13 +323147,13 @@ "id": 4, "label": "table", "bbox": { - "l": 323.0059509277344, - "t": 121.54714965820312, - "r": 525.95166015625, - "b": 222.91140747070312, + "l": 323.0059814453125, + "t": 121.54713439941406, + "r": 525.9517211914062, + "b": 222.9114227294922, "coord_origin": "TOPLEFT" }, - "confidence": 0.8569068908691406, + "confidence": 0.856907069683075, "cells": [], "children": [] }, @@ -323199,13 +323199,13 @@ "id": 19, "label": "table", "bbox": { - "l": 55.116363525390625, + "l": 55.11635208129883, "t": 136.2550048828125, "r": 279.370849609375, - "b": 249.3345489501953, + "b": 249.33450317382812, "coord_origin": "TOPLEFT" }, - "confidence": 0.5584819912910461, + "confidence": 0.5584838390350342, "cells": [], "children": [] }, @@ -323309,12 +323309,12 @@ "label": "table", "bbox": { "l": 323.384765625, - "t": 241.9729461669922, + "t": 241.97293090820312, "r": 526.1268920898438, - "b": 344.09210205078125, + "b": 344.0921325683594, "coord_origin": "TOPLEFT" }, - "confidence": 0.9060239195823669, + "confidence": 0.9060238003730774, "cells": [], "children": [] }, @@ -323366,7 +323366,7 @@ "b": 373.5270690917969, "coord_origin": "TOPLEFT" }, - "confidence": 0.7748245000839233, + "confidence": 0.7748245596885681, "cells": [], "children": [] }, @@ -323518,12 +323518,12 @@ "label": "table", "bbox": { "l": 323.46868896484375, - "t": 362.4508361816406, + "t": 362.4507751464844, "r": 525.9569091796875, - "b": 464.260498046875, + "b": 464.26043701171875, "coord_origin": "TOPLEFT" }, - "confidence": 0.7755160927772522, + "confidence": 0.7755167484283447, "cells": [], "children": [] }, @@ -323575,7 +323575,7 @@ "b": 635.7732543945312, "coord_origin": "TOPLEFT" }, - "confidence": 0.7805566787719727, + "confidence": 0.7805564999580383, "cells": [], "children": [] }, @@ -323627,7 +323627,7 @@ "b": 631.263671875, "coord_origin": "TOPLEFT" }, - "confidence": 0.6835257411003113, + "confidence": 0.6835256218910217, "cells": [], "children": [] }, @@ -323828,7 +323828,7 @@ "b": 653.25793, "coord_origin": "TOPLEFT" }, - "confidence": 0.9257225394248962, + "confidence": 0.9257223606109619, "cells": [ { "index": 0, @@ -323874,7 +323874,7 @@ "b": 673.79691, "coord_origin": "TOPLEFT" }, - "confidence": 0.9134758710861206, + "confidence": 0.9134756922721863, "cells": [ { "index": 1, @@ -323945,7 +323945,7 @@ "b": 743.039906, "coord_origin": "TOPLEFT" }, - "confidence": 0.9037020802497864, + "confidence": 0.9037018418312073, "cells": [ { "index": 3, @@ -323985,13 +323985,13 @@ "id": 4, "label": "table", "bbox": { - "l": 323.0059509277344, - "t": 121.54714965820312, - "r": 525.95166015625, - "b": 222.91140747070312, + "l": 323.0059814453125, + "t": 121.54713439941406, + "r": 525.9517211914062, + "b": 222.9114227294922, "coord_origin": "TOPLEFT" }, - "confidence": 0.8569068908691406, + "confidence": 0.856907069683075, "cells": [], "children": [] }, @@ -324037,13 +324037,13 @@ "id": 6, "label": "picture", "bbox": { - "l": 55.116363525390625, + "l": 55.11635208129883, "t": 136.2550048828125, "r": 279.370849609375, - "b": 249.3345489501953, + "b": 249.33450317382812, "coord_origin": "TOPLEFT" }, - "confidence": 0.8099280595779419, + "confidence": 0.809927225112915, "cells": [], "children": [] }, @@ -324061,13 +324061,13 @@ "id": 19, "label": "table", "bbox": { - "l": 55.116363525390625, + "l": 55.11635208129883, "t": 136.2550048828125, "r": 279.370849609375, - "b": 249.3345489501953, + "b": 249.33450317382812, "coord_origin": "TOPLEFT" }, - "confidence": 0.5584819912910461, + "confidence": 0.5584838390350342, "cells": [], "children": [] }, @@ -324171,12 +324171,12 @@ "label": "table", "bbox": { "l": 323.384765625, - "t": 241.9729461669922, + "t": 241.97293090820312, "r": 526.1268920898438, - "b": 344.09210205078125, + "b": 344.0921325683594, "coord_origin": "TOPLEFT" }, - "confidence": 0.9060239195823669, + "confidence": 0.9060238003730774, "cells": [], "children": [] }, @@ -324252,7 +324252,7 @@ "b": 373.5270690917969, "coord_origin": "TOPLEFT" }, - "confidence": 0.7748245000839233, + "confidence": 0.7748245596885681, "cells": [], "children": [] }, @@ -324404,12 +324404,12 @@ "label": "picture", "bbox": { "l": 323.46868896484375, - "t": 362.4508361816406, + "t": 362.4507751464844, "r": 525.9569091796875, - "b": 464.260498046875, + "b": 464.26043701171875, "coord_origin": "TOPLEFT" }, - "confidence": 0.5515198707580566, + "confidence": 0.5515192747116089, "cells": [], "children": [] }, @@ -324428,12 +324428,12 @@ "label": "table", "bbox": { "l": 323.46868896484375, - "t": 362.4508361816406, + "t": 362.4507751464844, "r": 525.9569091796875, - "b": 464.260498046875, + "b": 464.26043701171875, "coord_origin": "TOPLEFT" }, - "confidence": 0.7755160927772522, + "confidence": 0.7755167484283447, "cells": [], "children": [] }, @@ -324485,7 +324485,7 @@ "b": 497.563720703125, "coord_origin": "TOPLEFT" }, - "confidence": 0.8410326838493347, + "confidence": 0.8410324454307556, "cells": [], "children": [] }, @@ -324509,7 +324509,7 @@ "b": 635.7732543945312, "coord_origin": "TOPLEFT" }, - "confidence": 0.5478786826133728, + "confidence": 0.5478792786598206, "cells": [], "children": [] }, @@ -324533,7 +324533,7 @@ "b": 635.7732543945312, "coord_origin": "TOPLEFT" }, - "confidence": 0.7805566787719727, + "confidence": 0.7805564999580383, "cells": [], "children": [] }, @@ -324585,7 +324585,7 @@ "b": 631.263671875, "coord_origin": "TOPLEFT" }, - "confidence": 0.8057592511177063, + "confidence": 0.8057589530944824, "cells": [], "children": [] }, @@ -324609,7 +324609,7 @@ "b": 631.263671875, "coord_origin": "TOPLEFT" }, - "confidence": 0.6835257411003113, + "confidence": 0.6835256218910217, "cells": [], "children": [] }, @@ -324804,7 +324804,7 @@ "b": 653.25793, "coord_origin": "TOPLEFT" }, - "confidence": 0.9257225394248962, + "confidence": 0.9257223606109619, "cells": [ { "index": 0, @@ -324850,7 +324850,7 @@ "b": 673.79691, "coord_origin": "TOPLEFT" }, - "confidence": 0.9134758710861206, + "confidence": 0.9134756922721863, "cells": [ { "index": 1, @@ -324915,13 +324915,13 @@ "id": 4, "label": "table", "bbox": { - "l": 323.0059509277344, - "t": 121.54714965820312, - "r": 525.95166015625, - "b": 222.91140747070312, + "l": 323.0059814453125, + "t": 121.54713439941406, + "r": 525.9517211914062, + "b": 222.9114227294922, "coord_origin": "TOPLEFT" }, - "confidence": 0.8569068908691406, + "confidence": 0.856907069683075, "cells": [], "children": [] }, @@ -324967,13 +324967,13 @@ "id": 6, "label": "picture", "bbox": { - "l": 55.116363525390625, + "l": 55.11635208129883, "t": 136.2550048828125, "r": 279.370849609375, - "b": 249.3345489501953, + "b": 249.33450317382812, "coord_origin": "TOPLEFT" }, - "confidence": 0.8099280595779419, + "confidence": 0.809927225112915, "cells": [], "children": [] }, @@ -324991,13 +324991,13 @@ "id": 19, "label": "table", "bbox": { - "l": 55.116363525390625, + "l": 55.11635208129883, "t": 136.2550048828125, "r": 279.370849609375, - "b": 249.3345489501953, + "b": 249.33450317382812, "coord_origin": "TOPLEFT" }, - "confidence": 0.5584819912910461, + "confidence": 0.5584838390350342, "cells": [], "children": [] }, @@ -325101,12 +325101,12 @@ "label": "table", "bbox": { "l": 323.384765625, - "t": 241.9729461669922, + "t": 241.97293090820312, "r": 526.1268920898438, - "b": 344.09210205078125, + "b": 344.0921325683594, "coord_origin": "TOPLEFT" }, - "confidence": 0.9060239195823669, + "confidence": 0.9060238003730774, "cells": [], "children": [] }, @@ -325182,7 +325182,7 @@ "b": 373.5270690917969, "coord_origin": "TOPLEFT" }, - "confidence": 0.7748245000839233, + "confidence": 0.7748245596885681, "cells": [], "children": [] }, @@ -325334,12 +325334,12 @@ "label": "picture", "bbox": { "l": 323.46868896484375, - "t": 362.4508361816406, + "t": 362.4507751464844, "r": 525.9569091796875, - "b": 464.260498046875, + "b": 464.26043701171875, "coord_origin": "TOPLEFT" }, - "confidence": 0.5515198707580566, + "confidence": 0.5515192747116089, "cells": [], "children": [] }, @@ -325358,12 +325358,12 @@ "label": "table", "bbox": { "l": 323.46868896484375, - "t": 362.4508361816406, + "t": 362.4507751464844, "r": 525.9569091796875, - "b": 464.260498046875, + "b": 464.26043701171875, "coord_origin": "TOPLEFT" }, - "confidence": 0.7755160927772522, + "confidence": 0.7755167484283447, "cells": [], "children": [] }, @@ -325415,7 +325415,7 @@ "b": 497.563720703125, "coord_origin": "TOPLEFT" }, - "confidence": 0.8410326838493347, + "confidence": 0.8410324454307556, "cells": [], "children": [] }, @@ -325439,7 +325439,7 @@ "b": 635.7732543945312, "coord_origin": "TOPLEFT" }, - "confidence": 0.5478786826133728, + "confidence": 0.5478792786598206, "cells": [], "children": [] }, @@ -325463,7 +325463,7 @@ "b": 635.7732543945312, "coord_origin": "TOPLEFT" }, - "confidence": 0.7805566787719727, + "confidence": 0.7805564999580383, "cells": [], "children": [] }, @@ -325515,7 +325515,7 @@ "b": 631.263671875, "coord_origin": "TOPLEFT" }, - "confidence": 0.8057592511177063, + "confidence": 0.8057589530944824, "cells": [], "children": [] }, @@ -325539,7 +325539,7 @@ "b": 631.263671875, "coord_origin": "TOPLEFT" }, - "confidence": 0.6835257411003113, + "confidence": 0.6835256218910217, "cells": [], "children": [] }, @@ -325734,7 +325734,7 @@ "b": 743.039906, "coord_origin": "TOPLEFT" }, - "confidence": 0.9037020802497864, + "confidence": 0.9037018418312073, "cells": [ { "index": 3, @@ -325866,7 +325866,7 @@ "b": 529.1989100000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9624594449996948, + "confidence": 0.9624595642089844, "cells": [ { "index": 0, @@ -325966,12 +325966,12 @@ "label": "picture", "bbox": { "l": 66.79948425292969, - "t": 253.61631774902344, + "t": 253.6162872314453, "r": 528.5565795898438, "b": 498.1383972167969, "coord_origin": "TOPLEFT" }, - "confidence": 0.6913455724716187, + "confidence": 0.6913463473320007, "cells": [], "children": [] } @@ -326000,7 +326000,7 @@ "b": 529.1989100000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9624594449996948, + "confidence": 0.9624595642089844, "cells": [ { "index": 0, @@ -326112,12 +326112,12 @@ "label": "picture", "bbox": { "l": 66.79948425292969, - "t": 253.61631774902344, + "t": 253.6162872314453, "r": 528.5565795898438, "b": 498.1383972167969, "coord_origin": "TOPLEFT" }, - "confidence": 0.6913455724716187, + "confidence": 0.6913463473320007, "cells": [], "children": [] }, @@ -326143,7 +326143,7 @@ "b": 529.1989100000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9624594449996948, + "confidence": 0.9624595642089844, "cells": [ { "index": 0, @@ -326209,12 +326209,12 @@ "label": "picture", "bbox": { "l": 66.79948425292969, - "t": 253.61631774902344, + "t": 253.6162872314453, "r": 528.5565795898438, "b": 498.1383972167969, "coord_origin": "TOPLEFT" }, - "confidence": 0.6913455724716187, + "confidence": 0.6913463473320007, "cells": [], "children": [] }, diff --git a/tests/data/groundtruth/docling_v2/2206.01062.json b/tests/data/groundtruth/docling_v2/2206.01062.json index 27079e5..9216360 100644 --- a/tests/data/groundtruth/docling_v2/2206.01062.json +++ b/tests/data/groundtruth/docling_v2/2206.01062.json @@ -16866,10 +16866,10 @@ { "page_no": 1, "bbox": { - "l": 323.408203125, + "l": 323.4081115722656, "t": 541.6512603759766, - "r": 553.2952270507812, - "b": 266.1492919921875, + "r": 553.295166015625, + "b": 266.14935302734375, "coord_origin": "BOTTOMLEFT" }, "charspan": [ @@ -16941,9 +16941,9 @@ "page_no": 3, "bbox": { "l": 88.33030700683594, - "t": 699.1134796142578, + "t": 699.1134490966797, "r": 263.7049560546875, - "b": 571.4317321777344, + "b": 571.4317626953125, "coord_origin": "BOTTOMLEFT" }, "charspan": [ @@ -16979,9 +16979,9 @@ "page_no": 4, "bbox": { "l": 53.05912780761719, - "t": 481.2087097167969, + "t": 481.20867919921875, "r": 295.8506164550781, - "b": 251.135986328125, + "b": 251.1358642578125, "coord_origin": "BOTTOMLEFT" }, "charspan": [ @@ -17255,9 +17255,9 @@ "page_no": 4, "bbox": { "l": 98.93103790283203, - "t": 654.5245208740234, + "t": 654.5244903564453, "r": 512.579833984375, - "b": 497.91851806640625, + "b": 497.91845703125, "coord_origin": "BOTTOMLEFT" }, "charspan": [ @@ -23506,7 +23506,7 @@ "page_no": 6, "bbox": { "l": 62.02753829956055, - "t": 596.3199310302734, + "t": 596.3199462890625, "r": 285.78955078125, "b": 440.3381042480469, "coord_origin": "BOTTOMLEFT" @@ -26668,9 +26668,9 @@ { "page_no": 7, "bbox": { - "l": 80.35525512695312, + "l": 80.35527038574219, "t": 641.0637054443359, - "r": 267.0082092285156, + "r": 267.00823974609375, "b": 496.5545349121094, "coord_origin": "BOTTOMLEFT" }, @@ -31588,10 +31588,10 @@ { "page_no": 8, "bbox": { - "l": 72.6590347290039, - "t": 619.5191955566406, - "r": 274.83465576171875, - "b": 452.1459655761719, + "l": 72.65901947021484, + "t": 619.5191650390625, + "r": 274.8346862792969, + "b": 452.14599609375, "coord_origin": "BOTTOMLEFT" }, "charspan": [ diff --git a/tests/data/groundtruth/docling_v2/2206.01062.pages.json b/tests/data/groundtruth/docling_v2/2206.01062.pages.json index b2c3758..1f59e4d 100644 --- a/tests/data/groundtruth/docling_v2/2206.01062.pages.json +++ b/tests/data/groundtruth/docling_v2/2206.01062.pages.json @@ -10621,7 +10621,7 @@ "b": 119.59558000000015, "coord_origin": "TOPLEFT" }, - "confidence": 0.8416302800178528, + "confidence": 0.8416303396224976, "cells": [ { "index": 0, @@ -10686,7 +10686,7 @@ "b": 180.24030000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.8637151718139648, + "confidence": 0.8637148141860962, "cells": [ { "index": 2, @@ -10801,7 +10801,7 @@ "b": 180.24030000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.8612664937973022, + "confidence": 0.8612663745880127, "cells": [ { "index": 6, @@ -10916,7 +10916,7 @@ "b": 180.24030000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.8760607242584229, + "confidence": 0.8760605454444885, "cells": [ { "index": 10, @@ -11031,7 +11031,7 @@ "b": 238.62531, "coord_origin": "TOPLEFT" }, - "confidence": 0.8319916129112244, + "confidence": 0.8319913148880005, "cells": [ { "index": 14, @@ -11146,7 +11146,7 @@ "b": 238.62531, "coord_origin": "TOPLEFT" }, - "confidence": 0.8027974367141724, + "confidence": 0.8027966022491455, "cells": [ { "index": 18, @@ -11261,7 +11261,7 @@ "b": 258.01202, "coord_origin": "TOPLEFT" }, - "confidence": 0.8876155018806458, + "confidence": 0.8876153826713562, "cells": [ { "index": 22, @@ -11301,7 +11301,7 @@ "b": 534.29318, "coord_origin": "TOPLEFT" }, - "confidence": 0.9823057055473328, + "confidence": 0.9823058247566223, "cells": [ { "index": 23, @@ -12471,7 +12471,7 @@ "b": 672.79189, "coord_origin": "TOPLEFT" }, - "confidence": 0.7107349038124084, + "confidence": 0.7107346653938293, "cells": [ { "index": 68, @@ -12731,7 +12731,7 @@ "b": 706.266891, "coord_origin": "TOPLEFT" }, - "confidence": 0.509588360786438, + "confidence": 0.5095885992050171, "cells": [ { "index": 76, @@ -12765,13 +12765,13 @@ "id": 20, "label": "picture", "bbox": { - "l": 323.408203125, + "l": 323.4081115722656, "t": 250.34873962402344, - "r": 553.2952270507812, - "b": 525.8507080078125, + "r": 553.295166015625, + "b": 525.8506469726562, "coord_origin": "TOPLEFT" }, - "confidence": 0.5910208821296692, + "confidence": 0.5910214781761169, "cells": [ { "index": 77, @@ -34322,7 +34322,7 @@ "b": 559.51524, "coord_origin": "TOPLEFT" }, - "confidence": 0.7793365120887756, + "confidence": 0.7793370485305786, "cells": [ { "index": 409, @@ -34427,7 +34427,7 @@ "b": 627.00117, "coord_origin": "TOPLEFT" }, - "confidence": 0.9509093761444092, + "confidence": 0.9509091973304749, "cells": [ { "index": 412, @@ -34492,7 +34492,7 @@ "b": 647.58609, "coord_origin": "TOPLEFT" }, - "confidence": 0.8721988797187805, + "confidence": 0.8721989393234253, "cells": [ { "index": 414, @@ -34532,7 +34532,7 @@ "b": 707.377029, "coord_origin": "TOPLEFT" }, - "confidence": 0.9455165863037109, + "confidence": 0.9455164670944214, "cells": [ { "index": 415, @@ -34747,7 +34747,7 @@ "b": 555.00003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8537883758544922, + "confidence": 0.8537886738777161, "cells": [ { "index": 423, @@ -34802,7 +34802,7 @@ "b": 119.59558000000015, "coord_origin": "TOPLEFT" }, - "confidence": 0.8416302800178528, + "confidence": 0.8416303396224976, "cells": [ { "index": 0, @@ -34873,7 +34873,7 @@ "b": 180.24030000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.8637151718139648, + "confidence": 0.8637148141860962, "cells": [ { "index": 2, @@ -34994,7 +34994,7 @@ "b": 180.24030000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.8612664937973022, + "confidence": 0.8612663745880127, "cells": [ { "index": 6, @@ -35115,7 +35115,7 @@ "b": 180.24030000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.8760607242584229, + "confidence": 0.8760605454444885, "cells": [ { "index": 10, @@ -35236,7 +35236,7 @@ "b": 238.62531, "coord_origin": "TOPLEFT" }, - "confidence": 0.8319916129112244, + "confidence": 0.8319913148880005, "cells": [ { "index": 14, @@ -35357,7 +35357,7 @@ "b": 238.62531, "coord_origin": "TOPLEFT" }, - "confidence": 0.8027974367141724, + "confidence": 0.8027966022491455, "cells": [ { "index": 18, @@ -35478,7 +35478,7 @@ "b": 258.01202, "coord_origin": "TOPLEFT" }, - "confidence": 0.8876155018806458, + "confidence": 0.8876153826713562, "cells": [ { "index": 22, @@ -35524,7 +35524,7 @@ "b": 534.29318, "coord_origin": "TOPLEFT" }, - "confidence": 0.9823057055473328, + "confidence": 0.9823058247566223, "cells": [ { "index": 23, @@ -36712,7 +36712,7 @@ "b": 672.79189, "coord_origin": "TOPLEFT" }, - "confidence": 0.7107349038124084, + "confidence": 0.7107346653938293, "cells": [ { "index": 68, @@ -36996,7 +36996,7 @@ "b": 706.266891, "coord_origin": "TOPLEFT" }, - "confidence": 0.509588360786438, + "confidence": 0.5095885992050171, "cells": [ { "index": 76, @@ -37036,13 +37036,13 @@ "id": 20, "label": "picture", "bbox": { - "l": 323.408203125, + "l": 323.4081115722656, "t": 250.34873962402344, - "r": 553.2952270507812, - "b": 525.8507080078125, + "r": 553.295166015625, + "b": 525.8506469726562, "coord_origin": "TOPLEFT" }, - "confidence": 0.5910208821296692, + "confidence": 0.5910214781761169, "cells": [ { "index": 77, @@ -58603,7 +58603,7 @@ "b": 559.51524, "coord_origin": "TOPLEFT" }, - "confidence": 0.7793365120887756, + "confidence": 0.7793370485305786, "cells": [ { "index": 409, @@ -58720,7 +58720,7 @@ "b": 627.00117, "coord_origin": "TOPLEFT" }, - "confidence": 0.9509093761444092, + "confidence": 0.9509091973304749, "cells": [ { "index": 412, @@ -58791,7 +58791,7 @@ "b": 647.58609, "coord_origin": "TOPLEFT" }, - "confidence": 0.8721988797187805, + "confidence": 0.8721989393234253, "cells": [ { "index": 414, @@ -58837,7 +58837,7 @@ "b": 707.377029, "coord_origin": "TOPLEFT" }, - "confidence": 0.9455165863037109, + "confidence": 0.9455164670944214, "cells": [ { "index": 415, @@ -59058,7 +59058,7 @@ "b": 555.00003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8537883758544922, + "confidence": 0.8537886738777161, "cells": [ { "index": 423, @@ -59106,7 +59106,7 @@ "b": 119.59558000000015, "coord_origin": "TOPLEFT" }, - "confidence": 0.8416302800178528, + "confidence": 0.8416303396224976, "cells": [ { "index": 0, @@ -59177,7 +59177,7 @@ "b": 180.24030000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.8637151718139648, + "confidence": 0.8637148141860962, "cells": [ { "index": 2, @@ -59298,7 +59298,7 @@ "b": 180.24030000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.8612664937973022, + "confidence": 0.8612663745880127, "cells": [ { "index": 6, @@ -59419,7 +59419,7 @@ "b": 180.24030000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.8760607242584229, + "confidence": 0.8760605454444885, "cells": [ { "index": 10, @@ -59540,7 +59540,7 @@ "b": 238.62531, "coord_origin": "TOPLEFT" }, - "confidence": 0.8319916129112244, + "confidence": 0.8319913148880005, "cells": [ { "index": 14, @@ -59661,7 +59661,7 @@ "b": 238.62531, "coord_origin": "TOPLEFT" }, - "confidence": 0.8027974367141724, + "confidence": 0.8027966022491455, "cells": [ { "index": 18, @@ -59782,7 +59782,7 @@ "b": 258.01202, "coord_origin": "TOPLEFT" }, - "confidence": 0.8876155018806458, + "confidence": 0.8876153826713562, "cells": [ { "index": 22, @@ -59828,7 +59828,7 @@ "b": 534.29318, "coord_origin": "TOPLEFT" }, - "confidence": 0.9823057055473328, + "confidence": 0.9823058247566223, "cells": [ { "index": 23, @@ -61016,7 +61016,7 @@ "b": 672.79189, "coord_origin": "TOPLEFT" }, - "confidence": 0.7107349038124084, + "confidence": 0.7107346653938293, "cells": [ { "index": 68, @@ -61300,7 +61300,7 @@ "b": 706.266891, "coord_origin": "TOPLEFT" }, - "confidence": 0.509588360786438, + "confidence": 0.5095885992050171, "cells": [ { "index": 76, @@ -61340,13 +61340,13 @@ "id": 20, "label": "picture", "bbox": { - "l": 323.408203125, + "l": 323.4081115722656, "t": 250.34873962402344, - "r": 553.2952270507812, - "b": 525.8507080078125, + "r": 553.295166015625, + "b": 525.8506469726562, "coord_origin": "TOPLEFT" }, - "confidence": 0.5910208821296692, + "confidence": 0.5910214781761169, "cells": [ { "index": 77, @@ -82907,7 +82907,7 @@ "b": 559.51524, "coord_origin": "TOPLEFT" }, - "confidence": 0.7793365120887756, + "confidence": 0.7793370485305786, "cells": [ { "index": 409, @@ -83024,7 +83024,7 @@ "b": 627.00117, "coord_origin": "TOPLEFT" }, - "confidence": 0.9509093761444092, + "confidence": 0.9509091973304749, "cells": [ { "index": 412, @@ -83095,7 +83095,7 @@ "b": 647.58609, "coord_origin": "TOPLEFT" }, - "confidence": 0.8721988797187805, + "confidence": 0.8721989393234253, "cells": [ { "index": 414, @@ -83141,7 +83141,7 @@ "b": 707.377029, "coord_origin": "TOPLEFT" }, - "confidence": 0.9455165863037109, + "confidence": 0.9455164670944214, "cells": [ { "index": 415, @@ -83364,7 +83364,7 @@ "b": 555.00003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8537883758544922, + "confidence": 0.8537886738777161, "cells": [ { "index": 423, @@ -87296,7 +87296,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.7682238221168518, + "confidence": 0.7682234048843384, "cells": [ { "index": 0, @@ -88581,7 +88581,7 @@ "b": 579.63217, "coord_origin": "TOPLEFT" }, - "confidence": 0.9795253276824951, + "confidence": 0.9795252084732056, "cells": [ { "index": 49, @@ -88846,7 +88846,7 @@ "b": 614.87418, "coord_origin": "TOPLEFT" }, - "confidence": 0.9687220454216003, + "confidence": 0.9687221646308899, "cells": [ { "index": 59, @@ -89241,7 +89241,7 @@ "b": 691.58617, "coord_origin": "TOPLEFT" }, - "confidence": 0.9447500109672546, + "confidence": 0.9447500705718994, "cells": [ { "index": 73, @@ -89356,7 +89356,7 @@ "b": 708.739891, "coord_origin": "TOPLEFT" }, - "confidence": 0.8584771752357483, + "confidence": 0.8584773540496826, "cells": [ { "index": 77, @@ -89396,7 +89396,7 @@ "b": 106.69713999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.7997146844863892, + "confidence": 0.7997149229049683, "cells": [ { "index": 78, @@ -89461,7 +89461,7 @@ "b": 161.49114999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9563499093055725, + "confidence": 0.9563500285148621, "cells": [ { "index": 80, @@ -89651,7 +89651,7 @@ "b": 220.18615999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9813903570175171, + "confidence": 0.9813902974128723, "cells": [ { "index": 87, @@ -89791,7 +89791,7 @@ "b": 307.85718, "coord_origin": "TOPLEFT" }, - "confidence": 0.9844217300415039, + "confidence": 0.9844218492507935, "cells": [ { "index": 92, @@ -90006,7 +90006,7 @@ "b": 331.51797, "coord_origin": "TOPLEFT" }, - "confidence": 0.9347459077835083, + "confidence": 0.9347460269927979, "cells": [ { "index": 100, @@ -90576,7 +90576,7 @@ "b": 575.629, "coord_origin": "TOPLEFT" }, - "confidence": 0.9331073760986328, + "confidence": 0.9331074357032776, "cells": [ { "index": 121, @@ -91486,7 +91486,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.7682238221168518, + "confidence": 0.7682234048843384, "cells": [ { "index": 0, @@ -92795,7 +92795,7 @@ "b": 579.63217, "coord_origin": "TOPLEFT" }, - "confidence": 0.9795253276824951, + "confidence": 0.9795252084732056, "cells": [ { "index": 49, @@ -93066,7 +93066,7 @@ "b": 614.87418, "coord_origin": "TOPLEFT" }, - "confidence": 0.9687220454216003, + "confidence": 0.9687221646308899, "cells": [ { "index": 59, @@ -93479,7 +93479,7 @@ "b": 691.58617, "coord_origin": "TOPLEFT" }, - "confidence": 0.9447500109672546, + "confidence": 0.9447500705718994, "cells": [ { "index": 73, @@ -93600,7 +93600,7 @@ "b": 708.739891, "coord_origin": "TOPLEFT" }, - "confidence": 0.8584771752357483, + "confidence": 0.8584773540496826, "cells": [ { "index": 77, @@ -93646,7 +93646,7 @@ "b": 106.69713999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.7997146844863892, + "confidence": 0.7997149229049683, "cells": [ { "index": 78, @@ -93717,7 +93717,7 @@ "b": 161.49114999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9563499093055725, + "confidence": 0.9563500285148621, "cells": [ { "index": 80, @@ -93913,7 +93913,7 @@ "b": 220.18615999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9813903570175171, + "confidence": 0.9813902974128723, "cells": [ { "index": 87, @@ -94059,7 +94059,7 @@ "b": 307.85718, "coord_origin": "TOPLEFT" }, - "confidence": 0.9844217300415039, + "confidence": 0.9844218492507935, "cells": [ { "index": 92, @@ -94280,7 +94280,7 @@ "b": 331.51797, "coord_origin": "TOPLEFT" }, - "confidence": 0.9347459077835083, + "confidence": 0.9347460269927979, "cells": [ { "index": 100, @@ -94868,7 +94868,7 @@ "b": 575.629, "coord_origin": "TOPLEFT" }, - "confidence": 0.9331073760986328, + "confidence": 0.9331074357032776, "cells": [ { "index": 121, @@ -97021,7 +97021,7 @@ "b": 579.63217, "coord_origin": "TOPLEFT" }, - "confidence": 0.9795253276824951, + "confidence": 0.9795252084732056, "cells": [ { "index": 49, @@ -97292,7 +97292,7 @@ "b": 614.87418, "coord_origin": "TOPLEFT" }, - "confidence": 0.9687220454216003, + "confidence": 0.9687221646308899, "cells": [ { "index": 59, @@ -97705,7 +97705,7 @@ "b": 691.58617, "coord_origin": "TOPLEFT" }, - "confidence": 0.9447500109672546, + "confidence": 0.9447500705718994, "cells": [ { "index": 73, @@ -97826,7 +97826,7 @@ "b": 708.739891, "coord_origin": "TOPLEFT" }, - "confidence": 0.8584771752357483, + "confidence": 0.8584773540496826, "cells": [ { "index": 77, @@ -97872,7 +97872,7 @@ "b": 106.69713999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.7997146844863892, + "confidence": 0.7997149229049683, "cells": [ { "index": 78, @@ -97943,7 +97943,7 @@ "b": 161.49114999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9563499093055725, + "confidence": 0.9563500285148621, "cells": [ { "index": 80, @@ -98139,7 +98139,7 @@ "b": 220.18615999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9813903570175171, + "confidence": 0.9813902974128723, "cells": [ { "index": 87, @@ -98285,7 +98285,7 @@ "b": 307.85718, "coord_origin": "TOPLEFT" }, - "confidence": 0.9844217300415039, + "confidence": 0.9844218492507935, "cells": [ { "index": 92, @@ -98506,7 +98506,7 @@ "b": 331.51797, "coord_origin": "TOPLEFT" }, - "confidence": 0.9347459077835083, + "confidence": 0.9347460269927979, "cells": [ { "index": 100, @@ -99094,7 +99094,7 @@ "b": 575.629, "coord_origin": "TOPLEFT" }, - "confidence": 0.9331073760986328, + "confidence": 0.9331074357032776, "cells": [ { "index": 121, @@ -100009,7 +100009,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.7682238221168518, + "confidence": 0.7682234048843384, "cells": [ { "index": 0, @@ -103516,7 +103516,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8919971585273743, + "confidence": 0.8919970393180847, "cells": [ { "index": 0, @@ -103556,7 +103556,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.9104517102241516, + "confidence": 0.910452127456665, "cells": [ { "index": 1, @@ -103591,12 +103591,12 @@ "label": "picture", "bbox": { "l": 88.33030700683594, - "t": 92.88652038574219, + "t": 92.88655090332031, "r": 263.7049560546875, - "b": 220.56826782226562, + "b": 220.5682373046875, "coord_origin": "TOPLEFT" }, - "confidence": 0.9698190689086914, + "confidence": 0.9698189496994019, "cells": [ { "index": 2, @@ -104392,7 +104392,7 @@ "b": 255.54724, "coord_origin": "TOPLEFT" }, - "confidence": 0.9425410628318787, + "confidence": 0.9425409436225891, "cells": [ { "index": 14, @@ -106017,7 +106017,7 @@ "b": 708.169891, "coord_origin": "TOPLEFT" }, - "confidence": 0.9048352241516113, + "confidence": 0.9048354029655457, "cells": [ { "index": 76, @@ -107647,7 +107647,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8919971585273743, + "confidence": 0.8919970393180847, "cells": [ { "index": 0, @@ -107693,7 +107693,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.9104517102241516, + "confidence": 0.910452127456665, "cells": [ { "index": 1, @@ -107734,12 +107734,12 @@ "label": "picture", "bbox": { "l": 88.33030700683594, - "t": 92.88652038574219, + "t": 92.88655090332031, "r": 263.7049560546875, - "b": 220.56826782226562, + "b": 220.5682373046875, "coord_origin": "TOPLEFT" }, - "confidence": 0.9698190689086914, + "confidence": 0.9698189496994019, "cells": [ { "index": 2, @@ -108545,7 +108545,7 @@ "b": 255.54724, "coord_origin": "TOPLEFT" }, - "confidence": 0.9425410628318787, + "confidence": 0.9425409436225891, "cells": [ { "index": 14, @@ -110200,7 +110200,7 @@ "b": 708.169891, "coord_origin": "TOPLEFT" }, - "confidence": 0.9048352241516113, + "confidence": 0.9048354029655457, "cells": [ { "index": 76, @@ -111848,12 +111848,12 @@ "label": "picture", "bbox": { "l": 88.33030700683594, - "t": 92.88652038574219, + "t": 92.88655090332031, "r": 263.7049560546875, - "b": 220.56826782226562, + "b": 220.5682373046875, "coord_origin": "TOPLEFT" }, - "confidence": 0.9698190689086914, + "confidence": 0.9698189496994019, "cells": [ { "index": 2, @@ -112659,7 +112659,7 @@ "b": 255.54724, "coord_origin": "TOPLEFT" }, - "confidence": 0.9425410628318787, + "confidence": 0.9425409436225891, "cells": [ { "index": 14, @@ -114314,7 +114314,7 @@ "b": 708.169891, "coord_origin": "TOPLEFT" }, - "confidence": 0.9048352241516113, + "confidence": 0.9048354029655457, "cells": [ { "index": 76, @@ -115967,7 +115967,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8919971585273743, + "confidence": 0.8919970393180847, "cells": [ { "index": 0, @@ -116013,7 +116013,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.9104517102241516, + "confidence": 0.910452127456665, "cells": [ { "index": 1, @@ -122120,7 +122120,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.7625049948692322, + "confidence": 0.7625044584274292, "cells": [ { "index": 0, @@ -122185,7 +122185,7 @@ "b": 115.34618999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.8906616568565369, + "confidence": 0.8906612396240234, "cells": [ { "index": 2, @@ -122270,12 +122270,12 @@ "label": "table", "bbox": { "l": 98.93103790283203, - "t": 137.47547912597656, + "t": 137.4755096435547, "r": 512.579833984375, - "b": 294.08148193359375, + "b": 294.08154296875, "coord_origin": "TOPLEFT" }, - "confidence": 0.9860090613365173, + "confidence": 0.9860089421272278, "cells": [ { "index": 5, @@ -132561,7 +132561,7 @@ "b": 606.31924, "coord_origin": "TOPLEFT" }, - "confidence": 0.810490071773529, + "confidence": 0.8104899525642395, "cells": [ { "index": 163, @@ -134601,7 +134601,7 @@ "b": 708.86689, "coord_origin": "TOPLEFT" }, - "confidence": 0.9080352783203125, + "confidence": 0.9080352187156677, "cells": [ { "index": 241, @@ -134636,9 +134636,9 @@ "label": "picture", "bbox": { "l": 53.05912780761719, - "t": 310.7912902832031, + "t": 310.79132080078125, "r": 295.8506164550781, - "b": 540.864013671875, + "b": 540.8641357421875, "coord_origin": "TOPLEFT" }, "confidence": 0.9847871661186218, @@ -134658,12 +134658,12 @@ "label": "table", "bbox": { "l": 98.93103790283203, - "t": 137.47547912597656, + "t": 137.4755096435547, "r": 512.579833984375, - "b": 294.08148193359375, + "b": 294.08154296875, "coord_origin": "TOPLEFT" }, - "confidence": 0.9860090613365173, + "confidence": 0.9860089421272278, "cells": [ { "index": 5, @@ -148153,7 +148153,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.7625049948692322, + "confidence": 0.7625044584274292, "cells": [ { "index": 0, @@ -148224,7 +148224,7 @@ "b": 115.34618999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.8906616568565369, + "confidence": 0.8906612396240234, "cells": [ { "index": 2, @@ -148315,12 +148315,12 @@ "label": "table", "bbox": { "l": 98.93103790283203, - "t": 137.47547912597656, + "t": 137.4755096435547, "r": 512.579833984375, - "b": 294.08148193359375, + "b": 294.08154296875, "coord_origin": "TOPLEFT" }, - "confidence": 0.9860090613365173, + "confidence": 0.9860089421272278, "cells": [ { "index": 5, @@ -161802,7 +161802,7 @@ "b": 606.31924, "coord_origin": "TOPLEFT" }, - "confidence": 0.810490071773529, + "confidence": 0.8104899525642395, "cells": [ { "index": 163, @@ -163878,7 +163878,7 @@ "b": 708.86689, "coord_origin": "TOPLEFT" }, - "confidence": 0.9080352783203125, + "confidence": 0.9080352187156677, "cells": [ { "index": 241, @@ -163919,9 +163919,9 @@ "label": "picture", "bbox": { "l": 53.05912780761719, - "t": 310.7912902832031, + "t": 310.79132080078125, "r": 295.8506164550781, - "b": 540.864013671875, + "b": 540.8641357421875, "coord_origin": "TOPLEFT" }, "confidence": 0.9847871661186218, @@ -163950,7 +163950,7 @@ "b": 115.34618999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.8906616568565369, + "confidence": 0.8906612396240234, "cells": [ { "index": 2, @@ -164041,12 +164041,12 @@ "label": "table", "bbox": { "l": 98.93103790283203, - "t": 137.47547912597656, + "t": 137.4755096435547, "r": 512.579833984375, - "b": 294.08148193359375, + "b": 294.08154296875, "coord_origin": "TOPLEFT" }, - "confidence": 0.9860090613365173, + "confidence": 0.9860089421272278, "cells": [ { "index": 5, @@ -177528,7 +177528,7 @@ "b": 606.31924, "coord_origin": "TOPLEFT" }, - "confidence": 0.810490071773529, + "confidence": 0.8104899525642395, "cells": [ { "index": 163, @@ -179604,7 +179604,7 @@ "b": 708.86689, "coord_origin": "TOPLEFT" }, - "confidence": 0.9080352783203125, + "confidence": 0.9080352187156677, "cells": [ { "index": 241, @@ -179645,9 +179645,9 @@ "label": "picture", "bbox": { "l": 53.05912780761719, - "t": 310.7912902832031, + "t": 310.79132080078125, "r": 295.8506164550781, - "b": 540.864013671875, + "b": 540.8641357421875, "coord_origin": "TOPLEFT" }, "confidence": 0.9847871661186218, @@ -179676,7 +179676,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.7625049948692322, + "confidence": 0.7625044584274292, "cells": [ { "index": 0, @@ -182683,7 +182683,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8877827525138855, + "confidence": 0.8877830505371094, "cells": [ { "index": 0, @@ -182723,7 +182723,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8534670472145081, + "confidence": 0.8534676432609558, "cells": [ { "index": 1, @@ -182763,7 +182763,7 @@ "b": 106.70612000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.9022762179374695, + "confidence": 0.9022756218910217, "cells": [ { "index": 2, @@ -182878,7 +182878,7 @@ "b": 249.16216999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9711344838142395, + "confidence": 0.97113436460495, "cells": [ { "index": 6, @@ -183433,7 +183433,7 @@ "b": 389.77313, "coord_origin": "TOPLEFT" }, - "confidence": 0.9691526293754578, + "confidence": 0.9691525101661682, "cells": [ { "index": 27, @@ -183673,7 +183673,7 @@ "b": 433.60016, "coord_origin": "TOPLEFT" }, - "confidence": 0.9591284990310669, + "confidence": 0.9591283798217773, "cells": [ { "index": 36, @@ -183913,7 +183913,7 @@ "b": 455.52713, "coord_origin": "TOPLEFT" }, - "confidence": 0.9413429498672485, + "confidence": 0.9413430094718933, "cells": [ { "index": 45, @@ -184128,7 +184128,7 @@ "b": 477.43518, "coord_origin": "TOPLEFT" }, - "confidence": 0.9426738023757935, + "confidence": 0.9426739811897278, "cells": [ { "index": 53, @@ -184358,7 +184358,7 @@ "b": 521.27118, "coord_origin": "TOPLEFT" }, - "confidence": 0.9544308185577393, + "confidence": 0.9544306993484497, "cells": [ { "index": 61, @@ -184978,7 +184978,7 @@ "b": 459.68084716796875, "coord_origin": "TOPLEFT" }, - "confidence": 0.7264115214347839, + "confidence": 0.7264108061790466, "cells": [ { "index": 84, @@ -185684,7 +185684,7 @@ "b": 503.88519, "coord_origin": "TOPLEFT" }, - "confidence": 0.8873711824417114, + "confidence": 0.887371838092804, "cells": [ { "index": 95, @@ -185774,7 +185774,7 @@ "b": 544.83118, "coord_origin": "TOPLEFT" }, - "confidence": 0.9611718654632568, + "confidence": 0.9611716270446777, "cells": [ { "index": 98, @@ -186294,7 +186294,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8877827525138855, + "confidence": 0.8877830505371094, "cells": [ { "index": 0, @@ -186340,7 +186340,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8534670472145081, + "confidence": 0.8534676432609558, "cells": [ { "index": 1, @@ -186386,7 +186386,7 @@ "b": 106.70612000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.9022762179374695, + "confidence": 0.9022756218910217, "cells": [ { "index": 2, @@ -186507,7 +186507,7 @@ "b": 249.16216999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9711344838142395, + "confidence": 0.97113436460495, "cells": [ { "index": 6, @@ -187074,7 +187074,7 @@ "b": 389.77313, "coord_origin": "TOPLEFT" }, - "confidence": 0.9691526293754578, + "confidence": 0.9691525101661682, "cells": [ { "index": 27, @@ -187320,7 +187320,7 @@ "b": 433.60016, "coord_origin": "TOPLEFT" }, - "confidence": 0.9591284990310669, + "confidence": 0.9591283798217773, "cells": [ { "index": 36, @@ -187566,7 +187566,7 @@ "b": 455.52713, "coord_origin": "TOPLEFT" }, - "confidence": 0.9413429498672485, + "confidence": 0.9413430094718933, "cells": [ { "index": 45, @@ -187787,7 +187787,7 @@ "b": 477.43518, "coord_origin": "TOPLEFT" }, - "confidence": 0.9426738023757935, + "confidence": 0.9426739811897278, "cells": [ { "index": 53, @@ -188029,7 +188029,7 @@ "b": 521.27118, "coord_origin": "TOPLEFT" }, - "confidence": 0.9544308185577393, + "confidence": 0.9544306993484497, "cells": [ { "index": 61, @@ -188667,7 +188667,7 @@ "b": 459.68084716796875, "coord_origin": "TOPLEFT" }, - "confidence": 0.7264115214347839, + "confidence": 0.7264108061790466, "cells": [ { "index": 84, @@ -189389,7 +189389,7 @@ "b": 503.88519, "coord_origin": "TOPLEFT" }, - "confidence": 0.8873711824417114, + "confidence": 0.887371838092804, "cells": [ { "index": 95, @@ -189485,7 +189485,7 @@ "b": 544.83118, "coord_origin": "TOPLEFT" }, - "confidence": 0.9611718654632568, + "confidence": 0.9611716270446777, "cells": [ { "index": 98, @@ -190004,7 +190004,7 @@ "b": 106.70612000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.9022762179374695, + "confidence": 0.9022756218910217, "cells": [ { "index": 2, @@ -190125,7 +190125,7 @@ "b": 249.16216999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9711344838142395, + "confidence": 0.97113436460495, "cells": [ { "index": 6, @@ -190692,7 +190692,7 @@ "b": 389.77313, "coord_origin": "TOPLEFT" }, - "confidence": 0.9691526293754578, + "confidence": 0.9691525101661682, "cells": [ { "index": 27, @@ -190938,7 +190938,7 @@ "b": 433.60016, "coord_origin": "TOPLEFT" }, - "confidence": 0.9591284990310669, + "confidence": 0.9591283798217773, "cells": [ { "index": 36, @@ -191184,7 +191184,7 @@ "b": 455.52713, "coord_origin": "TOPLEFT" }, - "confidence": 0.9413429498672485, + "confidence": 0.9413430094718933, "cells": [ { "index": 45, @@ -191405,7 +191405,7 @@ "b": 477.43518, "coord_origin": "TOPLEFT" }, - "confidence": 0.9426738023757935, + "confidence": 0.9426739811897278, "cells": [ { "index": 53, @@ -191647,7 +191647,7 @@ "b": 521.27118, "coord_origin": "TOPLEFT" }, - "confidence": 0.9544308185577393, + "confidence": 0.9544306993484497, "cells": [ { "index": 61, @@ -192285,7 +192285,7 @@ "b": 459.68084716796875, "coord_origin": "TOPLEFT" }, - "confidence": 0.7264115214347839, + "confidence": 0.7264108061790466, "cells": [ { "index": 84, @@ -193007,7 +193007,7 @@ "b": 503.88519, "coord_origin": "TOPLEFT" }, - "confidence": 0.8873711824417114, + "confidence": 0.887371838092804, "cells": [ { "index": 95, @@ -193103,7 +193103,7 @@ "b": 544.83118, "coord_origin": "TOPLEFT" }, - "confidence": 0.9611718654632568, + "confidence": 0.9611716270446777, "cells": [ { "index": 98, @@ -193622,7 +193622,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8877827525138855, + "confidence": 0.8877830505371094, "cells": [ { "index": 0, @@ -193668,7 +193668,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8534670472145081, + "confidence": 0.8534676432609558, "cells": [ { "index": 1, @@ -198750,7 +198750,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8662876486778259, + "confidence": 0.8662878274917603, "cells": [ { "index": 0, @@ -199100,7 +199100,7 @@ "label": "table", "bbox": { "l": 62.02753829956055, - "t": 195.68006896972656, + "t": 195.6800537109375, "r": 285.78955078125, "b": 351.6618957519531, "coord_origin": "TOPLEFT" @@ -205316,7 +205316,7 @@ "b": 260.0107727050781, "coord_origin": "TOPLEFT" }, - "confidence": 0.9782691597938538, + "confidence": 0.9782690405845642, "cells": [ { "index": 131, @@ -208040,7 +208040,7 @@ "label": "table", "bbox": { "l": 62.02753829956055, - "t": 195.68006896972656, + "t": 195.6800537109375, "r": 285.78955078125, "b": 351.6618957519531, "coord_origin": "TOPLEFT" @@ -214899,7 +214899,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8662876486778259, + "confidence": 0.8662878274917603, "cells": [ { "index": 0, @@ -215261,7 +215261,7 @@ "label": "table", "bbox": { "l": 62.02753829956055, - "t": 195.68006896972656, + "t": 195.6800537109375, "r": 285.78955078125, "b": 351.6618957519531, "coord_origin": "TOPLEFT" @@ -223125,7 +223125,7 @@ "b": 260.0107727050781, "coord_origin": "TOPLEFT" }, - "confidence": 0.9782691597938538, + "confidence": 0.9782690405845642, "cells": [ { "index": 131, @@ -226179,7 +226179,7 @@ "label": "table", "bbox": { "l": 62.02753829956055, - "t": 195.68006896972656, + "t": 195.6800537109375, "r": 285.78955078125, "b": 351.6618957519531, "coord_origin": "TOPLEFT" @@ -234043,7 +234043,7 @@ "b": 260.0107727050781, "coord_origin": "TOPLEFT" }, - "confidence": 0.9782691597938538, + "confidence": 0.9782690405845642, "cells": [ { "index": 131, @@ -236806,7 +236806,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8662876486778259, + "confidence": 0.8662878274917603, "cells": [ { "index": 0, @@ -242263,7 +242263,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.9316118955612183, + "confidence": 0.9316116571426392, "cells": [ { "index": 0, @@ -242343,7 +242343,7 @@ "b": 128.22313999999994, "coord_origin": "TOPLEFT" }, - "confidence": 0.8296934366226196, + "confidence": 0.8296923041343689, "cells": [ { "index": 2, @@ -242452,9 +242452,9 @@ "id": 4, "label": "table", "bbox": { - "l": 80.35525512695312, + "l": 80.35527038574219, "t": 150.93629455566406, - "r": 267.0082092285156, + "r": 267.00823974609375, "b": 295.4454650878906, "coord_origin": "TOPLEFT" }, @@ -246699,7 +246699,7 @@ "b": 329.879, "coord_origin": "TOPLEFT" }, - "confidence": 0.9555686116218567, + "confidence": 0.9555687308311462, "cells": [ { "index": 71, @@ -247709,7 +247709,7 @@ "b": 128.22321, "coord_origin": "TOPLEFT" }, - "confidence": 0.8736215829849243, + "confidence": 0.8736217617988586, "cells": [ { "index": 109, @@ -251530,7 +251530,7 @@ "b": 416.49017, "coord_origin": "TOPLEFT" }, - "confidence": 0.9740146994590759, + "confidence": 0.9740145802497864, "cells": [ { "index": 171, @@ -251945,7 +251945,7 @@ "b": 439.70398, "coord_origin": "TOPLEFT" }, - "confidence": 0.9562516808509827, + "confidence": 0.9562518000602722, "cells": [ { "index": 187, @@ -252440,7 +252440,7 @@ "b": 708.640137, "coord_origin": "TOPLEFT" }, - "confidence": 0.9872549772262573, + "confidence": 0.9872550964355469, "cells": [ { "index": 205, @@ -252707,9 +252707,9 @@ "id": 4, "label": "table", "bbox": { - "l": 80.35525512695312, + "l": 80.35527038574219, "t": 150.93629455566406, - "r": 267.0082092285156, + "r": 267.00823974609375, "b": 295.4454650878906, "coord_origin": "TOPLEFT" }, @@ -263103,7 +263103,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.9316118955612183, + "confidence": 0.9316116571426392, "cells": [ { "index": 0, @@ -263195,7 +263195,7 @@ "b": 128.22313999999994, "coord_origin": "TOPLEFT" }, - "confidence": 0.8296934366226196, + "confidence": 0.8296923041343689, "cells": [ { "index": 2, @@ -263310,9 +263310,9 @@ "id": 4, "label": "table", "bbox": { - "l": 80.35525512695312, + "l": 80.35527038574219, "t": 150.93629455566406, - "r": 267.0082092285156, + "r": 267.00823974609375, "b": 295.4454650878906, "coord_origin": "TOPLEFT" }, @@ -268882,7 +268882,7 @@ "b": 329.879, "coord_origin": "TOPLEFT" }, - "confidence": 0.9555686116218567, + "confidence": 0.9555687308311462, "cells": [ { "index": 71, @@ -269916,7 +269916,7 @@ "b": 128.22321, "coord_origin": "TOPLEFT" }, - "confidence": 0.8736215829849243, + "confidence": 0.8736217617988586, "cells": [ { "index": 109, @@ -274903,7 +274903,7 @@ "b": 416.49017, "coord_origin": "TOPLEFT" }, - "confidence": 0.9740146994590759, + "confidence": 0.9740145802497864, "cells": [ { "index": 171, @@ -275324,7 +275324,7 @@ "b": 439.70398, "coord_origin": "TOPLEFT" }, - "confidence": 0.9562516808509827, + "confidence": 0.9562518000602722, "cells": [ { "index": 187, @@ -275837,7 +275837,7 @@ "b": 708.640137, "coord_origin": "TOPLEFT" }, - "confidence": 0.9872549772262573, + "confidence": 0.9872550964355469, "cells": [ { "index": 205, @@ -276110,7 +276110,7 @@ "b": 128.22313999999994, "coord_origin": "TOPLEFT" }, - "confidence": 0.8296934366226196, + "confidence": 0.8296923041343689, "cells": [ { "index": 2, @@ -276225,9 +276225,9 @@ "id": 4, "label": "table", "bbox": { - "l": 80.35525512695312, + "l": 80.35527038574219, "t": 150.93629455566406, - "r": 267.0082092285156, + "r": 267.00823974609375, "b": 295.4454650878906, "coord_origin": "TOPLEFT" }, @@ -281797,7 +281797,7 @@ "b": 329.879, "coord_origin": "TOPLEFT" }, - "confidence": 0.9555686116218567, + "confidence": 0.9555687308311462, "cells": [ { "index": 71, @@ -282831,7 +282831,7 @@ "b": 128.22321, "coord_origin": "TOPLEFT" }, - "confidence": 0.8736215829849243, + "confidence": 0.8736217617988586, "cells": [ { "index": 109, @@ -287818,7 +287818,7 @@ "b": 416.49017, "coord_origin": "TOPLEFT" }, - "confidence": 0.9740146994590759, + "confidence": 0.9740145802497864, "cells": [ { "index": 171, @@ -288239,7 +288239,7 @@ "b": 439.70398, "coord_origin": "TOPLEFT" }, - "confidence": 0.9562516808509827, + "confidence": 0.9562518000602722, "cells": [ { "index": 187, @@ -288752,7 +288752,7 @@ "b": 708.640137, "coord_origin": "TOPLEFT" }, - "confidence": 0.9872549772262573, + "confidence": 0.9872550964355469, "cells": [ { "index": 205, @@ -289025,7 +289025,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.9316118955612183, + "confidence": 0.9316116571426392, "cells": [ { "index": 0, @@ -294478,7 +294478,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.7984216809272766, + "confidence": 0.7984210848808289, "cells": [ { "index": 0, @@ -294702,10 +294702,10 @@ "id": 0, "label": "table", "bbox": { - "l": 72.6590347290039, - "t": 172.48080444335938, - "r": 274.83465576171875, - "b": 339.8540344238281, + "l": 72.65901947021484, + "t": 172.4808349609375, + "r": 274.8346862792969, + "b": 339.85400390625, "coord_origin": "TOPLEFT" }, "confidence": 0.9892616271972656, @@ -299569,7 +299569,7 @@ "b": 615.37001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9574698805809021, + "confidence": 0.9574697613716125, "cells": [ { "index": 103, @@ -299609,7 +299609,7 @@ "b": 705.350174, "coord_origin": "TOPLEFT" }, - "confidence": 0.9859886169433594, + "confidence": 0.9859885573387146, "cells": [ { "index": 104, @@ -299889,7 +299889,7 @@ "b": 186.14917000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.985493004322052, + "confidence": 0.9854928851127625, "cells": [ { "index": 114, @@ -300344,7 +300344,7 @@ "b": 317.65616000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.9676101207733154, + "confidence": 0.9676100015640259, "cells": [ { "index": 131, @@ -300434,7 +300434,7 @@ "b": 345.40097, "coord_origin": "TOPLEFT" }, - "confidence": 0.9378752708435059, + "confidence": 0.9378753900527954, "cells": [ { "index": 134, @@ -300639,7 +300639,7 @@ "b": 403.04287999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9480945467948914, + "confidence": 0.9480944871902466, "cells": [ { "index": 141, @@ -300829,7 +300829,7 @@ "b": 426.94689999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9257517457008362, + "confidence": 0.9257519841194153, "cells": [ { "index": 148, @@ -300944,7 +300944,7 @@ "b": 458.8269, "coord_origin": "TOPLEFT" }, - "confidence": 0.9270977973937988, + "confidence": 0.9270976781845093, "cells": [ { "index": 152, @@ -301134,7 +301134,7 @@ "b": 490.70792, "coord_origin": "TOPLEFT" }, - "confidence": 0.9290012121200562, + "confidence": 0.9290013313293457, "cells": [ { "index": 159, @@ -301324,7 +301324,7 @@ "b": 514.6248800000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.927480161190033, + "confidence": 0.9274798035621643, "cells": [ { "index": 166, @@ -301489,7 +301489,7 @@ "b": 554.46889, "coord_origin": "TOPLEFT" }, - "confidence": 0.9426893591880798, + "confidence": 0.9426894783973694, "cells": [ { "index": 172, @@ -301679,7 +301679,7 @@ "b": 578.38586, "coord_origin": "TOPLEFT" }, - "confidence": 0.9139686226844788, + "confidence": 0.9139688611030579, "cells": [ { "index": 179, @@ -302174,7 +302174,7 @@ "b": 650.1168700000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9127691984176636, + "confidence": 0.9127686023712158, "cells": [ { "index": 197, @@ -302339,7 +302339,7 @@ "b": 674.01989, "coord_origin": "TOPLEFT" }, - "confidence": 0.9142459630966187, + "confidence": 0.914246141910553, "cells": [ { "index": 203, @@ -302504,7 +302504,7 @@ "b": 705.900894, "coord_origin": "TOPLEFT" }, - "confidence": 0.889543354511261, + "confidence": 0.8895430564880371, "cells": [ { "index": 209, @@ -302646,10 +302646,10 @@ "id": 0, "label": "table", "bbox": { - "l": 72.6590347290039, - "t": 172.48080444335938, - "r": 274.83465576171875, - "b": 339.8540344238281, + "l": 72.65901947021484, + "t": 172.4808349609375, + "r": 274.8346862792969, + "b": 339.85400390625, "coord_origin": "TOPLEFT" }, "confidence": 0.9892616271972656, @@ -307902,7 +307902,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.7984216809272766, + "confidence": 0.7984210848808289, "cells": [ { "index": 0, @@ -308138,10 +308138,10 @@ "id": 0, "label": "table", "bbox": { - "l": 72.6590347290039, - "t": 172.48080444335938, - "r": 274.83465576171875, - "b": 339.8540344238281, + "l": 72.65901947021484, + "t": 172.4808349609375, + "r": 274.8346862792969, + "b": 339.85400390625, "coord_origin": "TOPLEFT" }, "confidence": 0.9892616271972656, @@ -314278,7 +314278,7 @@ "b": 615.37001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9574698805809021, + "confidence": 0.9574697613716125, "cells": [ { "index": 103, @@ -314324,7 +314324,7 @@ "b": 705.350174, "coord_origin": "TOPLEFT" }, - "confidence": 0.9859886169433594, + "confidence": 0.9859885573387146, "cells": [ { "index": 104, @@ -314616,7 +314616,7 @@ "b": 186.14917000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.985493004322052, + "confidence": 0.9854928851127625, "cells": [ { "index": 114, @@ -315083,7 +315083,7 @@ "b": 317.65616000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.9676101207733154, + "confidence": 0.9676100015640259, "cells": [ { "index": 131, @@ -315179,7 +315179,7 @@ "b": 345.40097, "coord_origin": "TOPLEFT" }, - "confidence": 0.9378752708435059, + "confidence": 0.9378753900527954, "cells": [ { "index": 134, @@ -315396,7 +315396,7 @@ "b": 403.04287999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9480945467948914, + "confidence": 0.9480944871902466, "cells": [ { "index": 141, @@ -315592,7 +315592,7 @@ "b": 426.94689999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9257517457008362, + "confidence": 0.9257519841194153, "cells": [ { "index": 148, @@ -315713,7 +315713,7 @@ "b": 458.8269, "coord_origin": "TOPLEFT" }, - "confidence": 0.9270977973937988, + "confidence": 0.9270976781845093, "cells": [ { "index": 152, @@ -315909,7 +315909,7 @@ "b": 490.70792, "coord_origin": "TOPLEFT" }, - "confidence": 0.9290012121200562, + "confidence": 0.9290013313293457, "cells": [ { "index": 159, @@ -316105,7 +316105,7 @@ "b": 514.6248800000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.927480161190033, + "confidence": 0.9274798035621643, "cells": [ { "index": 166, @@ -316276,7 +316276,7 @@ "b": 554.46889, "coord_origin": "TOPLEFT" }, - "confidence": 0.9426893591880798, + "confidence": 0.9426894783973694, "cells": [ { "index": 172, @@ -316472,7 +316472,7 @@ "b": 578.38586, "coord_origin": "TOPLEFT" }, - "confidence": 0.9139686226844788, + "confidence": 0.9139688611030579, "cells": [ { "index": 179, @@ -316985,7 +316985,7 @@ "b": 650.1168700000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9127691984176636, + "confidence": 0.9127686023712158, "cells": [ { "index": 197, @@ -317156,7 +317156,7 @@ "b": 674.01989, "coord_origin": "TOPLEFT" }, - "confidence": 0.9142459630966187, + "confidence": 0.914246141910553, "cells": [ { "index": 203, @@ -317327,7 +317327,7 @@ "b": 705.900894, "coord_origin": "TOPLEFT" }, - "confidence": 0.889543354511261, + "confidence": 0.8895430564880371, "cells": [ { "index": 209, @@ -317640,10 +317640,10 @@ "id": 0, "label": "table", "bbox": { - "l": 72.6590347290039, - "t": 172.48080444335938, - "r": 274.83465576171875, - "b": 339.8540344238281, + "l": 72.65901947021484, + "t": 172.4808349609375, + "r": 274.8346862792969, + "b": 339.85400390625, "coord_origin": "TOPLEFT" }, "confidence": 0.9892616271972656, @@ -323780,7 +323780,7 @@ "b": 615.37001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9574698805809021, + "confidence": 0.9574697613716125, "cells": [ { "index": 103, @@ -323826,7 +323826,7 @@ "b": 705.350174, "coord_origin": "TOPLEFT" }, - "confidence": 0.9859886169433594, + "confidence": 0.9859885573387146, "cells": [ { "index": 104, @@ -324118,7 +324118,7 @@ "b": 186.14917000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.985493004322052, + "confidence": 0.9854928851127625, "cells": [ { "index": 114, @@ -324585,7 +324585,7 @@ "b": 317.65616000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.9676101207733154, + "confidence": 0.9676100015640259, "cells": [ { "index": 131, @@ -324681,7 +324681,7 @@ "b": 345.40097, "coord_origin": "TOPLEFT" }, - "confidence": 0.9378752708435059, + "confidence": 0.9378753900527954, "cells": [ { "index": 134, @@ -324898,7 +324898,7 @@ "b": 403.04287999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9480945467948914, + "confidence": 0.9480944871902466, "cells": [ { "index": 141, @@ -325094,7 +325094,7 @@ "b": 426.94689999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9257517457008362, + "confidence": 0.9257519841194153, "cells": [ { "index": 148, @@ -325215,7 +325215,7 @@ "b": 458.8269, "coord_origin": "TOPLEFT" }, - "confidence": 0.9270977973937988, + "confidence": 0.9270976781845093, "cells": [ { "index": 152, @@ -325411,7 +325411,7 @@ "b": 490.70792, "coord_origin": "TOPLEFT" }, - "confidence": 0.9290012121200562, + "confidence": 0.9290013313293457, "cells": [ { "index": 159, @@ -325607,7 +325607,7 @@ "b": 514.6248800000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.927480161190033, + "confidence": 0.9274798035621643, "cells": [ { "index": 166, @@ -325778,7 +325778,7 @@ "b": 554.46889, "coord_origin": "TOPLEFT" }, - "confidence": 0.9426893591880798, + "confidence": 0.9426894783973694, "cells": [ { "index": 172, @@ -325974,7 +325974,7 @@ "b": 578.38586, "coord_origin": "TOPLEFT" }, - "confidence": 0.9139686226844788, + "confidence": 0.9139688611030579, "cells": [ { "index": 179, @@ -326487,7 +326487,7 @@ "b": 650.1168700000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9127691984176636, + "confidence": 0.9127686023712158, "cells": [ { "index": 197, @@ -326658,7 +326658,7 @@ "b": 674.01989, "coord_origin": "TOPLEFT" }, - "confidence": 0.9142459630966187, + "confidence": 0.914246141910553, "cells": [ { "index": 203, @@ -326829,7 +326829,7 @@ "b": 705.900894, "coord_origin": "TOPLEFT" }, - "confidence": 0.889543354511261, + "confidence": 0.8895430564880371, "cells": [ { "index": 209, @@ -326977,7 +326977,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.7984216809272766, + "confidence": 0.7984210848808289, "cells": [ { "index": 0, @@ -329134,7 +329134,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8021690249443054, + "confidence": 0.8021690845489502, "cells": [ { "index": 0, @@ -329174,7 +329174,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8429245352745056, + "confidence": 0.8429243564605713, "cells": [ { "index": 1, @@ -329214,7 +329214,7 @@ "b": 442.1351318359375, "coord_origin": "TOPLEFT" }, - "confidence": 0.8352116942405701, + "confidence": 0.8352119326591492, "cells": [ { "index": 2, @@ -329945,7 +329945,7 @@ "b": 448.26483, "coord_origin": "TOPLEFT" }, - "confidence": 0.6248989701271057, + "confidence": 0.6248990893363953, "cells": [ { "index": 13, @@ -330210,7 +330210,7 @@ "b": 505.83124, "coord_origin": "TOPLEFT" }, - "confidence": 0.8651240468025208, + "confidence": 0.8651238679885864, "cells": [ { "index": 23, @@ -330325,7 +330325,7 @@ "b": 549.5199, "coord_origin": "TOPLEFT" }, - "confidence": 0.8445900082588196, + "confidence": 0.8445895910263062, "cells": [ { "index": 27, @@ -330415,7 +330415,7 @@ "b": 573.43686, "coord_origin": "TOPLEFT" }, - "confidence": 0.8561117053031921, + "confidence": 0.8561118245124817, "cells": [ { "index": 30, @@ -330555,7 +330555,7 @@ "b": 589.37787, "coord_origin": "TOPLEFT" }, - "confidence": 0.8615185618400574, + "confidence": 0.861518383026123, "cells": [ { "index": 35, @@ -330695,7 +330695,7 @@ "b": 613.2809, "coord_origin": "TOPLEFT" }, - "confidence": 0.859420895576477, + "confidence": 0.8594212532043457, "cells": [ { "index": 40, @@ -330810,7 +330810,7 @@ "b": 629.22089, "coord_origin": "TOPLEFT" }, - "confidence": 0.8385182023048401, + "confidence": 0.8385178446769714, "cells": [ { "index": 44, @@ -331115,7 +331115,7 @@ "b": 708.92189, "coord_origin": "TOPLEFT" }, - "confidence": 0.7421631217002869, + "confidence": 0.7421633005142212, "cells": [ { "index": 55, @@ -331330,7 +331330,7 @@ "b": 541.5499, "coord_origin": "TOPLEFT" }, - "confidence": 0.9088895320892334, + "confidence": 0.9088893532752991, "cells": [ { "index": 63, @@ -331420,7 +331420,7 @@ "b": 565.4599000000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9247174859046936, + "confidence": 0.9247176647186279, "cells": [ { "index": 66, @@ -331535,7 +331535,7 @@ "b": 597.3478700000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.8956930637359619, + "confidence": 0.8956933617591858, "cells": [ { "index": 70, @@ -331750,7 +331750,7 @@ "b": 613.28787, "coord_origin": "TOPLEFT" }, - "confidence": 0.8972970843315125, + "confidence": 0.8972972631454468, "cells": [ { "index": 78, @@ -331905,7 +331905,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8021690249443054, + "confidence": 0.8021690845489502, "cells": [ { "index": 0, @@ -331951,7 +331951,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8429245352745056, + "confidence": 0.8429243564605713, "cells": [ { "index": 1, @@ -331997,7 +331997,7 @@ "b": 442.1351318359375, "coord_origin": "TOPLEFT" }, - "confidence": 0.8352116942405701, + "confidence": 0.8352119326591492, "cells": [ { "index": 2, @@ -332738,7 +332738,7 @@ "b": 448.26483, "coord_origin": "TOPLEFT" }, - "confidence": 0.6248989701271057, + "confidence": 0.6248990893363953, "cells": [ { "index": 13, @@ -333009,7 +333009,7 @@ "b": 505.83124, "coord_origin": "TOPLEFT" }, - "confidence": 0.8651240468025208, + "confidence": 0.8651238679885864, "cells": [ { "index": 23, @@ -333130,7 +333130,7 @@ "b": 549.5199, "coord_origin": "TOPLEFT" }, - "confidence": 0.8445900082588196, + "confidence": 0.8445895910263062, "cells": [ { "index": 27, @@ -333226,7 +333226,7 @@ "b": 573.43686, "coord_origin": "TOPLEFT" }, - "confidence": 0.8561117053031921, + "confidence": 0.8561118245124817, "cells": [ { "index": 30, @@ -333372,7 +333372,7 @@ "b": 589.37787, "coord_origin": "TOPLEFT" }, - "confidence": 0.8615185618400574, + "confidence": 0.861518383026123, "cells": [ { "index": 35, @@ -333518,7 +333518,7 @@ "b": 613.2809, "coord_origin": "TOPLEFT" }, - "confidence": 0.859420895576477, + "confidence": 0.8594212532043457, "cells": [ { "index": 40, @@ -333639,7 +333639,7 @@ "b": 629.22089, "coord_origin": "TOPLEFT" }, - "confidence": 0.8385182023048401, + "confidence": 0.8385178446769714, "cells": [ { "index": 44, @@ -333956,7 +333956,7 @@ "b": 708.92189, "coord_origin": "TOPLEFT" }, - "confidence": 0.7421631217002869, + "confidence": 0.7421633005142212, "cells": [ { "index": 55, @@ -334177,7 +334177,7 @@ "b": 541.5499, "coord_origin": "TOPLEFT" }, - "confidence": 0.9088895320892334, + "confidence": 0.9088893532752991, "cells": [ { "index": 63, @@ -334273,7 +334273,7 @@ "b": 565.4599000000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9247174859046936, + "confidence": 0.9247176647186279, "cells": [ { "index": 66, @@ -334394,7 +334394,7 @@ "b": 597.3478700000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.8956930637359619, + "confidence": 0.8956933617591858, "cells": [ { "index": 70, @@ -334615,7 +334615,7 @@ "b": 613.28787, "coord_origin": "TOPLEFT" }, - "confidence": 0.8972970843315125, + "confidence": 0.8972972631454468, "cells": [ { "index": 78, @@ -334763,7 +334763,7 @@ "b": 442.1351318359375, "coord_origin": "TOPLEFT" }, - "confidence": 0.8352116942405701, + "confidence": 0.8352119326591492, "cells": [ { "index": 2, @@ -335504,7 +335504,7 @@ "b": 448.26483, "coord_origin": "TOPLEFT" }, - "confidence": 0.6248989701271057, + "confidence": 0.6248990893363953, "cells": [ { "index": 13, @@ -335775,7 +335775,7 @@ "b": 505.83124, "coord_origin": "TOPLEFT" }, - "confidence": 0.8651240468025208, + "confidence": 0.8651238679885864, "cells": [ { "index": 23, @@ -335896,7 +335896,7 @@ "b": 549.5199, "coord_origin": "TOPLEFT" }, - "confidence": 0.8445900082588196, + "confidence": 0.8445895910263062, "cells": [ { "index": 27, @@ -335992,7 +335992,7 @@ "b": 573.43686, "coord_origin": "TOPLEFT" }, - "confidence": 0.8561117053031921, + "confidence": 0.8561118245124817, "cells": [ { "index": 30, @@ -336138,7 +336138,7 @@ "b": 589.37787, "coord_origin": "TOPLEFT" }, - "confidence": 0.8615185618400574, + "confidence": 0.861518383026123, "cells": [ { "index": 35, @@ -336284,7 +336284,7 @@ "b": 613.2809, "coord_origin": "TOPLEFT" }, - "confidence": 0.859420895576477, + "confidence": 0.8594212532043457, "cells": [ { "index": 40, @@ -336405,7 +336405,7 @@ "b": 629.22089, "coord_origin": "TOPLEFT" }, - "confidence": 0.8385182023048401, + "confidence": 0.8385178446769714, "cells": [ { "index": 44, @@ -336722,7 +336722,7 @@ "b": 708.92189, "coord_origin": "TOPLEFT" }, - "confidence": 0.7421631217002869, + "confidence": 0.7421633005142212, "cells": [ { "index": 55, @@ -336943,7 +336943,7 @@ "b": 541.5499, "coord_origin": "TOPLEFT" }, - "confidence": 0.9088895320892334, + "confidence": 0.9088893532752991, "cells": [ { "index": 63, @@ -337039,7 +337039,7 @@ "b": 565.4599000000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9247174859046936, + "confidence": 0.9247176647186279, "cells": [ { "index": 66, @@ -337160,7 +337160,7 @@ "b": 597.3478700000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.8956930637359619, + "confidence": 0.8956933617591858, "cells": [ { "index": 70, @@ -337381,7 +337381,7 @@ "b": 613.28787, "coord_origin": "TOPLEFT" }, - "confidence": 0.8972970843315125, + "confidence": 0.8972972631454468, "cells": [ { "index": 78, @@ -337529,7 +337529,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8021690249443054, + "confidence": 0.8021690845489502, "cells": [ { "index": 0, @@ -337575,7 +337575,7 @@ "b": 68.57605000000012, "coord_origin": "TOPLEFT" }, - "confidence": 0.8429245352745056, + "confidence": 0.8429243564605713, "cells": [ { "index": 1, diff --git a/tests/data/groundtruth/docling_v2/2305.03393v1-pg9.pages.json b/tests/data/groundtruth/docling_v2/2305.03393v1-pg9.pages.json index 3bca0d5..fefe130 100644 --- a/tests/data/groundtruth/docling_v2/2305.03393v1-pg9.pages.json +++ b/tests/data/groundtruth/docling_v2/2305.03393v1-pg9.pages.json @@ -2686,7 +2686,7 @@ "b": 102.78223000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8858679533004761, + "confidence": 0.8858681321144104, "cells": [ { "index": 1, @@ -2816,7 +2816,7 @@ "b": 179.20818999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9577404260635376, + "confidence": 0.957740306854248, "cells": [ { "index": 5, @@ -13628,7 +13628,7 @@ "b": 102.78223000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8858679533004761, + "confidence": 0.8858681321144104, "cells": [ { "index": 1, @@ -13770,7 +13770,7 @@ "b": 179.20818999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9577404260635376, + "confidence": 0.957740306854248, "cells": [ { "index": 5, @@ -20153,7 +20153,7 @@ "b": 179.20818999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9577404260635376, + "confidence": 0.957740306854248, "cells": [ { "index": 5, @@ -26486,7 +26486,7 @@ "b": 102.78223000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8858679533004761, + "confidence": 0.8858681321144104, "cells": [ { "index": 1, diff --git a/tests/data/groundtruth/docling_v2/2305.03393v1.json b/tests/data/groundtruth/docling_v2/2305.03393v1.json index 720f7ee..1d98b46 100644 --- a/tests/data/groundtruth/docling_v2/2305.03393v1.json +++ b/tests/data/groundtruth/docling_v2/2305.03393v1.json @@ -14942,9 +14942,9 @@ "page_no": 2, "bbox": { "l": 148.45364379882812, - "t": 583.6257629394531, + "t": 583.6257476806641, "r": 464.3608093261719, - "b": 366.1537780761719, + "b": 366.1538391113281, "coord_origin": "BOTTOMLEFT" }, "charspan": [ @@ -15221,9 +15221,9 @@ { "page_no": 7, "bbox": { - "l": 164.65028381347656, + "l": 164.6503143310547, "t": 628.2029113769531, - "r": 449.5505676269531, + "r": 449.550537109375, "b": 511.6590576171875, "coord_origin": "BOTTOMLEFT" }, @@ -15475,7 +15475,7 @@ { "page_no": 8, "bbox": { - "l": 140.70968627929688, + "l": 140.70960998535156, "t": 283.9361572265625, "r": 472.73382568359375, "b": 198.32281494140625, @@ -15804,10 +15804,10 @@ { "page_no": 10, "bbox": { - "l": 162.67430114746094, - "t": 347.37744140625, - "r": 451.70062255859375, - "b": 128.78643798828125, + "l": 162.67434692382812, + "t": 347.3774719238281, + "r": 451.70068359375, + "b": 128.786376953125, "coord_origin": "BOTTOMLEFT" }, "charspan": [ @@ -15875,9 +15875,9 @@ { "page_no": 11, "bbox": { - "l": 168.39285278320312, + "l": 168.3928985595703, "t": 610.0334930419922, - "r": 447.35137939453125, + "r": 447.3513488769531, "b": 157.99432373046875, "coord_origin": "BOTTOMLEFT" }, @@ -17702,7 +17702,7 @@ "page_no": 10, "bbox": { "l": 143.6376495361328, - "t": 635.6522979736328, + "t": 635.6522827148438, "r": 470.8485412597656, "b": 528.7375183105469, "coord_origin": "BOTTOMLEFT" diff --git a/tests/data/groundtruth/docling_v2/2305.03393v1.pages.json b/tests/data/groundtruth/docling_v2/2305.03393v1.pages.json index 3bb80df..6e589f6 100644 --- a/tests/data/groundtruth/docling_v2/2305.03393v1.pages.json +++ b/tests/data/groundtruth/docling_v2/2305.03393v1.pages.json @@ -1896,7 +1896,7 @@ "b": 146.51409999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.8918349742889404, + "confidence": 0.8918347954750061, "cells": [ { "index": 0, @@ -1961,7 +1961,7 @@ "b": 236.27752999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.48445820808410645, + "confidence": 0.4844588339328766, "cells": [ { "index": 2, @@ -2925,7 +2925,7 @@ "b": 200.18591000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.7918068766593933, + "confidence": 0.7918062210083008, "cells": [ { "index": 2, @@ -3815,7 +3815,7 @@ "b": 204.38073999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.5015263557434082, + "confidence": 0.5015257596969604, "cells": [ { "index": 30, @@ -3855,7 +3855,7 @@ "b": 225.27368, "coord_origin": "TOPLEFT" }, - "confidence": 0.6310867667198181, + "confidence": 0.631085991859436, "cells": [ { "index": 38, @@ -3895,7 +3895,7 @@ "b": 236.27752999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.6924149990081787, + "confidence": 0.6924147605895996, "cells": [ { "index": 39, @@ -4517,7 +4517,7 @@ "b": 532.68808, "coord_origin": "TOPLEFT" }, - "confidence": 0.9392016530036926, + "confidence": 0.9392015337944031, "cells": [ { "index": 62, @@ -4772,7 +4772,7 @@ "b": 664.85453, "coord_origin": "TOPLEFT" }, - "confidence": 0.9696458578109741, + "confidence": 0.9696459770202637, "cells": [ { "index": 71, @@ -4862,7 +4862,7 @@ "b": 555.00003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8899643421173096, + "confidence": 0.8899640440940857, "cells": [ { "index": 74, @@ -4917,7 +4917,7 @@ "b": 146.51409999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.8918349742889404, + "confidence": 0.8918347954750061, "cells": [ { "index": 0, @@ -4988,7 +4988,7 @@ "b": 236.27752999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.48445820808410645, + "confidence": 0.4844588339328766, "cells": [ { "index": 2, @@ -5952,7 +5952,7 @@ "b": 200.18591000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.7918068766593933, + "confidence": 0.7918062210083008, "cells": [ { "index": 2, @@ -6842,7 +6842,7 @@ "b": 204.38073999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.5015263557434082, + "confidence": 0.5015257596969604, "cells": [ { "index": 30, @@ -6882,7 +6882,7 @@ "b": 225.27368, "coord_origin": "TOPLEFT" }, - "confidence": 0.6310867667198181, + "confidence": 0.631085991859436, "cells": [ { "index": 38, @@ -6922,7 +6922,7 @@ "b": 236.27752999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.6924149990081787, + "confidence": 0.6924147605895996, "cells": [ { "index": 39, @@ -7562,7 +7562,7 @@ "b": 532.68808, "coord_origin": "TOPLEFT" }, - "confidence": 0.9392016530036926, + "confidence": 0.9392015337944031, "cells": [ { "index": 62, @@ -7829,7 +7829,7 @@ "b": 664.85453, "coord_origin": "TOPLEFT" }, - "confidence": 0.9696458578109741, + "confidence": 0.9696459770202637, "cells": [ { "index": 71, @@ -7925,7 +7925,7 @@ "b": 555.00003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8899643421173096, + "confidence": 0.8899640440940857, "cells": [ { "index": 74, @@ -7973,7 +7973,7 @@ "b": 146.51409999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.8918349742889404, + "confidence": 0.8918347954750061, "cells": [ { "index": 0, @@ -8044,7 +8044,7 @@ "b": 236.27752999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.48445820808410645, + "confidence": 0.4844588339328766, "cells": [ { "index": 2, @@ -9008,7 +9008,7 @@ "b": 200.18591000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.7918068766593933, + "confidence": 0.7918062210083008, "cells": [ { "index": 2, @@ -9898,7 +9898,7 @@ "b": 204.38073999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.5015263557434082, + "confidence": 0.5015257596969604, "cells": [ { "index": 30, @@ -9938,7 +9938,7 @@ "b": 225.27368, "coord_origin": "TOPLEFT" }, - "confidence": 0.6310867667198181, + "confidence": 0.631085991859436, "cells": [ { "index": 38, @@ -9978,7 +9978,7 @@ "b": 236.27752999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.6924149990081787, + "confidence": 0.6924147605895996, "cells": [ { "index": 39, @@ -10618,7 +10618,7 @@ "b": 532.68808, "coord_origin": "TOPLEFT" }, - "confidence": 0.9392016530036926, + "confidence": 0.9392015337944031, "cells": [ { "index": 62, @@ -10885,7 +10885,7 @@ "b": 664.85453, "coord_origin": "TOPLEFT" }, - "confidence": 0.9696458578109741, + "confidence": 0.9696459770202637, "cells": [ { "index": 71, @@ -10983,7 +10983,7 @@ "b": 555.00003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8899643421173096, + "confidence": 0.8899640440940857, "cells": [ { "index": 74, @@ -14490,7 +14490,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8580349683761597, + "confidence": 0.8580352067947388, "cells": [ { "index": 0, @@ -14530,7 +14530,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9076642990112305, + "confidence": 0.9076644778251648, "cells": [ { "index": 1, @@ -14595,7 +14595,7 @@ "b": 200.22058000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.8939083218574524, + "confidence": 0.8939085006713867, "cells": [ { "index": 3, @@ -14830,9 +14830,9 @@ "label": "picture", "bbox": { "l": 148.45364379882812, - "t": 208.37423706054688, + "t": 208.37425231933594, "r": 464.3608093261719, - "b": 425.8462219238281, + "b": 425.8461608886719, "coord_origin": "TOPLEFT" }, "confidence": 0.9688959121704102, @@ -21741,7 +21741,7 @@ "b": 520.88669, "coord_origin": "TOPLEFT" }, - "confidence": 0.950499951839447, + "confidence": 0.9504998326301575, "cells": [ { "index": 118, @@ -22286,7 +22286,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8580349683761597, + "confidence": 0.8580352067947388, "cells": [ { "index": 0, @@ -22332,7 +22332,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9076642990112305, + "confidence": 0.9076644778251648, "cells": [ { "index": 1, @@ -22403,7 +22403,7 @@ "b": 200.22058000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.8939083218574524, + "confidence": 0.8939085006713867, "cells": [ { "index": 3, @@ -22644,9 +22644,9 @@ "label": "picture", "bbox": { "l": 148.45364379882812, - "t": 208.37423706054688, + "t": 208.37425231933594, "r": 464.3608093261719, - "b": 425.8462219238281, + "b": 425.8461608886719, "coord_origin": "TOPLEFT" }, "confidence": 0.9688959121704102, @@ -29565,7 +29565,7 @@ "b": 520.88669, "coord_origin": "TOPLEFT" }, - "confidence": 0.950499951839447, + "confidence": 0.9504998326301575, "cells": [ { "index": 118, @@ -30109,7 +30109,7 @@ "b": 200.22058000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.8939083218574524, + "confidence": 0.8939085006713867, "cells": [ { "index": 3, @@ -30350,9 +30350,9 @@ "label": "picture", "bbox": { "l": 148.45364379882812, - "t": 208.37423706054688, + "t": 208.37425231933594, "r": 464.3608093261719, - "b": 425.8462219238281, + "b": 425.8461608886719, "coord_origin": "TOPLEFT" }, "confidence": 0.9688959121704102, @@ -37271,7 +37271,7 @@ "b": 520.88669, "coord_origin": "TOPLEFT" }, - "confidence": 0.950499951839447, + "confidence": 0.9504998326301575, "cells": [ { "index": 118, @@ -37815,7 +37815,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8580349683761597, + "confidence": 0.8580352067947388, "cells": [ { "index": 0, @@ -37861,7 +37861,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9076642990112305, + "confidence": 0.9076644778251648, "cells": [ { "index": 1, @@ -39183,7 +39183,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8773486614227295, + "confidence": 0.8773490786552429, "cells": [ { "index": 1, @@ -39993,7 +39993,7 @@ "b": 472.65634, "coord_origin": "TOPLEFT" }, - "confidence": 0.9439423680305481, + "confidence": 0.9439422488212585, "cells": [ { "index": 31, @@ -40509,7 +40509,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8773486614227295, + "confidence": 0.8773490786552429, "cells": [ { "index": 1, @@ -41343,7 +41343,7 @@ "b": 472.65634, "coord_origin": "TOPLEFT" }, - "confidence": 0.9439423680305481, + "confidence": 0.9439422488212585, "cells": [ { "index": 31, @@ -42600,7 +42600,7 @@ "b": 472.65634, "coord_origin": "TOPLEFT" }, - "confidence": 0.9439423680305481, + "confidence": 0.9439422488212585, "cells": [ { "index": 31, @@ -43115,7 +43115,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8773486614227295, + "confidence": 0.8773490786552429, "cells": [ { "index": 1, @@ -44677,7 +44677,7 @@ "b": 259.23792000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.9467443823814392, + "confidence": 0.9467443227767944, "cells": [ { "index": 3, @@ -44992,7 +44992,7 @@ "b": 486.6467, "coord_origin": "TOPLEFT" }, - "confidence": 0.929087221622467, + "confidence": 0.9290876388549805, "cells": [ { "index": 15, @@ -45922,7 +45922,7 @@ "b": 616.11823, "coord_origin": "TOPLEFT" }, - "confidence": 0.9393903017044067, + "confidence": 0.9393905401229858, "cells": [ { "index": 51, @@ -45987,7 +45987,7 @@ "b": 664.85566, "coord_origin": "TOPLEFT" }, - "confidence": 0.9692807197570801, + "confidence": 0.9692806005477905, "cells": [ { "index": 53, @@ -46209,7 +46209,7 @@ "b": 259.23792000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.9467443823814392, + "confidence": 0.9467443227767944, "cells": [ { "index": 3, @@ -46530,7 +46530,7 @@ "b": 486.6467, "coord_origin": "TOPLEFT" }, - "confidence": 0.929087221622467, + "confidence": 0.9290876388549805, "cells": [ { "index": 15, @@ -47472,7 +47472,7 @@ "b": 616.11823, "coord_origin": "TOPLEFT" }, - "confidence": 0.9393903017044067, + "confidence": 0.9393905401229858, "cells": [ { "index": 51, @@ -47543,7 +47543,7 @@ "b": 664.85566, "coord_origin": "TOPLEFT" }, - "confidence": 0.9692807197570801, + "confidence": 0.9692806005477905, "cells": [ { "index": 53, @@ -47641,7 +47641,7 @@ "b": 259.23792000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.9467443823814392, + "confidence": 0.9467443227767944, "cells": [ { "index": 3, @@ -47962,7 +47962,7 @@ "b": 486.6467, "coord_origin": "TOPLEFT" }, - "confidence": 0.929087221622467, + "confidence": 0.9290876388549805, "cells": [ { "index": 15, @@ -48904,7 +48904,7 @@ "b": 616.11823, "coord_origin": "TOPLEFT" }, - "confidence": 0.9393903017044067, + "confidence": 0.9393905401229858, "cells": [ { "index": 51, @@ -48975,7 +48975,7 @@ "b": 664.85566, "coord_origin": "TOPLEFT" }, - "confidence": 0.9692807197570801, + "confidence": 0.9692806005477905, "cells": [ { "index": 53, @@ -50516,7 +50516,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8696112036705017, + "confidence": 0.8696111440658569, "cells": [ { "index": 1, @@ -51021,7 +51021,7 @@ "b": 229.21178999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.8472551703453064, + "confidence": 0.8472548127174377, "cells": [ { "index": 20, @@ -51086,7 +51086,7 @@ "b": 532.42059, "coord_origin": "TOPLEFT" }, - "confidence": 0.9844799637794495, + "confidence": 0.9844798445701599, "cells": [ { "index": 22, @@ -51551,7 +51551,7 @@ "b": 580.7056, "coord_origin": "TOPLEFT" }, - "confidence": 0.978394627571106, + "confidence": 0.9783945083618164, "cells": [ { "index": 40, @@ -51856,7 +51856,7 @@ "b": 340.2304992675781, "coord_origin": "TOPLEFT" }, - "confidence": 0.9387977123260498, + "confidence": 0.9387975931167603, "cells": [], "children": [] } @@ -51931,7 +51931,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8696112036705017, + "confidence": 0.8696111440658569, "cells": [ { "index": 1, @@ -52448,7 +52448,7 @@ "b": 229.21178999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.8472551703453064, + "confidence": 0.8472548127174377, "cells": [ { "index": 20, @@ -52519,7 +52519,7 @@ "b": 532.42059, "coord_origin": "TOPLEFT" }, - "confidence": 0.9844799637794495, + "confidence": 0.9844798445701599, "cells": [ { "index": 22, @@ -52990,7 +52990,7 @@ "b": 580.7056, "coord_origin": "TOPLEFT" }, - "confidence": 0.978394627571106, + "confidence": 0.9783945083618164, "cells": [ { "index": 40, @@ -53307,7 +53307,7 @@ "b": 340.2304992675781, "coord_origin": "TOPLEFT" }, - "confidence": 0.9387977123260498, + "confidence": 0.9387975931167603, "cells": [], "children": [] }, @@ -53804,7 +53804,7 @@ "b": 229.21178999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.8472551703453064, + "confidence": 0.8472548127174377, "cells": [ { "index": 20, @@ -53875,7 +53875,7 @@ "b": 532.42059, "coord_origin": "TOPLEFT" }, - "confidence": 0.9844799637794495, + "confidence": 0.9844798445701599, "cells": [ { "index": 22, @@ -54346,7 +54346,7 @@ "b": 580.7056, "coord_origin": "TOPLEFT" }, - "confidence": 0.978394627571106, + "confidence": 0.9783945083618164, "cells": [ { "index": 40, @@ -54663,7 +54663,7 @@ "b": 340.2304992675781, "coord_origin": "TOPLEFT" }, - "confidence": 0.9387977123260498, + "confidence": 0.9387975931167603, "cells": [], "children": [] }, @@ -54735,7 +54735,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8696112036705017, + "confidence": 0.8696111440658569, "cells": [ { "index": 1, @@ -56292,7 +56292,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8378868699073792, + "confidence": 0.8378866910934448, "cells": [ { "index": 0, @@ -56332,7 +56332,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8919177651405334, + "confidence": 0.891918420791626, "cells": [ { "index": 1, @@ -56462,7 +56462,7 @@ "b": 295.74191, "coord_origin": "TOPLEFT" }, - "confidence": 0.9856827855110168, + "confidence": 0.9856826663017273, "cells": [ { "index": 5, @@ -56852,7 +56852,7 @@ "b": 331.19949, "coord_origin": "TOPLEFT" }, - "confidence": 0.957028865814209, + "confidence": 0.9570288062095642, "cells": [ { "index": 20, @@ -56917,7 +56917,7 @@ "b": 441.59985, "coord_origin": "TOPLEFT" }, - "confidence": 0.9879323840141296, + "confidence": 0.9879322648048401, "cells": [ { "index": 22, @@ -57197,7 +57197,7 @@ "b": 521.7058400000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9671263098716736, + "confidence": 0.967126190662384, "cells": [ { "index": 32, @@ -57287,7 +57287,7 @@ "b": 534.29883, "coord_origin": "TOPLEFT" }, - "confidence": 0.8555866479873657, + "confidence": 0.8555870056152344, "cells": [ { "index": 35, @@ -57442,7 +57442,7 @@ "b": 581.32483, "coord_origin": "TOPLEFT" }, - "confidence": 0.9319931268692017, + "confidence": 0.9319930076599121, "cells": [ { "index": 40, @@ -57582,7 +57582,7 @@ "b": 605.87383, "coord_origin": "TOPLEFT" }, - "confidence": 0.9438967704772949, + "confidence": 0.9438966512680054, "cells": [ { "index": 45, @@ -57722,7 +57722,7 @@ "b": 618.46683, "coord_origin": "TOPLEFT" }, - "confidence": 0.9036387801170349, + "confidence": 0.9036386609077454, "cells": [ { "index": 50, @@ -57837,7 +57837,7 @@ "b": 631.06082, "coord_origin": "TOPLEFT" }, - "confidence": 0.8636871576309204, + "confidence": 0.8636865019798279, "cells": [ { "index": 54, @@ -57952,7 +57952,7 @@ "b": 664.85484, "coord_origin": "TOPLEFT" }, - "confidence": 0.9443338513374329, + "confidence": 0.9443334937095642, "cells": [ { "index": 58, @@ -58032,7 +58032,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8378868699073792, + "confidence": 0.8378866910934448, "cells": [ { "index": 0, @@ -58078,7 +58078,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8919177651405334, + "confidence": 0.891918420791626, "cells": [ { "index": 1, @@ -58220,7 +58220,7 @@ "b": 295.74191, "coord_origin": "TOPLEFT" }, - "confidence": 0.9856827855110168, + "confidence": 0.9856826663017273, "cells": [ { "index": 5, @@ -58616,7 +58616,7 @@ "b": 331.19949, "coord_origin": "TOPLEFT" }, - "confidence": 0.957028865814209, + "confidence": 0.9570288062095642, "cells": [ { "index": 20, @@ -58687,7 +58687,7 @@ "b": 441.59985, "coord_origin": "TOPLEFT" }, - "confidence": 0.9879323840141296, + "confidence": 0.9879322648048401, "cells": [ { "index": 22, @@ -58979,7 +58979,7 @@ "b": 521.7058400000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9671263098716736, + "confidence": 0.967126190662384, "cells": [ { "index": 32, @@ -59075,7 +59075,7 @@ "b": 534.29883, "coord_origin": "TOPLEFT" }, - "confidence": 0.8555866479873657, + "confidence": 0.8555870056152344, "cells": [ { "index": 35, @@ -59242,7 +59242,7 @@ "b": 581.32483, "coord_origin": "TOPLEFT" }, - "confidence": 0.9319931268692017, + "confidence": 0.9319930076599121, "cells": [ { "index": 40, @@ -59388,7 +59388,7 @@ "b": 605.87383, "coord_origin": "TOPLEFT" }, - "confidence": 0.9438967704772949, + "confidence": 0.9438966512680054, "cells": [ { "index": 45, @@ -59534,7 +59534,7 @@ "b": 618.46683, "coord_origin": "TOPLEFT" }, - "confidence": 0.9036387801170349, + "confidence": 0.9036386609077454, "cells": [ { "index": 50, @@ -59655,7 +59655,7 @@ "b": 631.06082, "coord_origin": "TOPLEFT" }, - "confidence": 0.8636871576309204, + "confidence": 0.8636865019798279, "cells": [ { "index": 54, @@ -59776,7 +59776,7 @@ "b": 664.85484, "coord_origin": "TOPLEFT" }, - "confidence": 0.9443338513374329, + "confidence": 0.9443334937095642, "cells": [ { "index": 58, @@ -59920,7 +59920,7 @@ "b": 295.74191, "coord_origin": "TOPLEFT" }, - "confidence": 0.9856827855110168, + "confidence": 0.9856826663017273, "cells": [ { "index": 5, @@ -60316,7 +60316,7 @@ "b": 331.19949, "coord_origin": "TOPLEFT" }, - "confidence": 0.957028865814209, + "confidence": 0.9570288062095642, "cells": [ { "index": 20, @@ -60387,7 +60387,7 @@ "b": 441.59985, "coord_origin": "TOPLEFT" }, - "confidence": 0.9879323840141296, + "confidence": 0.9879322648048401, "cells": [ { "index": 22, @@ -60679,7 +60679,7 @@ "b": 521.7058400000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9671263098716736, + "confidence": 0.967126190662384, "cells": [ { "index": 32, @@ -60775,7 +60775,7 @@ "b": 534.29883, "coord_origin": "TOPLEFT" }, - "confidence": 0.8555866479873657, + "confidence": 0.8555870056152344, "cells": [ { "index": 35, @@ -60942,7 +60942,7 @@ "b": 581.32483, "coord_origin": "TOPLEFT" }, - "confidence": 0.9319931268692017, + "confidence": 0.9319930076599121, "cells": [ { "index": 40, @@ -61088,7 +61088,7 @@ "b": 605.87383, "coord_origin": "TOPLEFT" }, - "confidence": 0.9438967704772949, + "confidence": 0.9438966512680054, "cells": [ { "index": 45, @@ -61234,7 +61234,7 @@ "b": 618.46683, "coord_origin": "TOPLEFT" }, - "confidence": 0.9036387801170349, + "confidence": 0.9036386609077454, "cells": [ { "index": 50, @@ -61355,7 +61355,7 @@ "b": 631.06082, "coord_origin": "TOPLEFT" }, - "confidence": 0.8636871576309204, + "confidence": 0.8636865019798279, "cells": [ { "index": 54, @@ -61476,7 +61476,7 @@ "b": 664.85484, "coord_origin": "TOPLEFT" }, - "confidence": 0.9443338513374329, + "confidence": 0.9443334937095642, "cells": [ { "index": 58, @@ -61549,7 +61549,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8378868699073792, + "confidence": 0.8378866910934448, "cells": [ { "index": 0, @@ -61595,7 +61595,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8919177651405334, + "confidence": 0.891918420791626, "cells": [ { "index": 1, @@ -64577,7 +64577,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.932651162147522, + "confidence": 0.9326512813568115, "cells": [ { "index": 0, @@ -64617,7 +64617,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8749732375144958, + "confidence": 0.8749731183052063, "cells": [ { "index": 1, @@ -64657,7 +64657,7 @@ "b": 155.84966999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9333080053329468, + "confidence": 0.9333084225654602, "cells": [ { "index": 2, @@ -64766,13 +64766,13 @@ "id": 12, "label": "picture", "bbox": { - "l": 164.65028381347656, + "l": 164.6503143310547, "t": 163.79708862304688, - "r": 449.5505676269531, + "r": 449.550537109375, "b": 280.3409423828125, "coord_origin": "TOPLEFT" }, - "confidence": 0.7868534922599792, + "confidence": 0.786853551864624, "cells": [ { "index": 6, @@ -68671,7 +68671,7 @@ "b": 279.02288999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.5250625610351562, + "confidence": 0.5250615477561951, "cells": [ { "index": 60, @@ -69258,7 +69258,7 @@ "b": 314.10275, "coord_origin": "TOPLEFT" }, - "confidence": 0.9233023524284363, + "confidence": 0.9233025312423706, "cells": [ { "index": 75, @@ -69323,7 +69323,7 @@ "b": 334.04474, "coord_origin": "TOPLEFT" }, - "confidence": 0.9169168472290039, + "confidence": 0.9169170260429382, "cells": [ { "index": 77, @@ -69363,7 +69363,7 @@ "b": 367.93375, "coord_origin": "TOPLEFT" }, - "confidence": 0.9588112235069275, + "confidence": 0.958811342716217, "cells": [ { "index": 78, @@ -69593,7 +69593,7 @@ "b": 403.80475, "coord_origin": "TOPLEFT" }, - "confidence": 0.6506174206733704, + "confidence": 0.6506175994873047, "cells": [ { "index": 86, @@ -69683,7 +69683,7 @@ "b": 439.67371, "coord_origin": "TOPLEFT" }, - "confidence": 0.7247239947319031, + "confidence": 0.7247226238250732, "cells": [ { "index": 89, @@ -69773,7 +69773,7 @@ "b": 451.63269, "coord_origin": "TOPLEFT" }, - "confidence": 0.9259927272796631, + "confidence": 0.9259928464889526, "cells": [ { "index": 92, @@ -69978,7 +69978,7 @@ "b": 499.45969, "coord_origin": "TOPLEFT" }, - "confidence": 0.9617829918861389, + "confidence": 0.961783230304718, "cells": [ { "index": 99, @@ -70093,7 +70093,7 @@ "b": 640.9416699999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9785562753677368, + "confidence": 0.9785561561584473, "cells": [ { "index": 103, @@ -70383,7 +70383,7 @@ "b": 664.8546699999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9590610861778259, + "confidence": 0.9590608477592468, "cells": [ { "index": 114, @@ -70463,7 +70463,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.932651162147522, + "confidence": 0.9326512813568115, "cells": [ { "index": 0, @@ -70509,7 +70509,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8749732375144958, + "confidence": 0.8749731183052063, "cells": [ { "index": 1, @@ -70555,7 +70555,7 @@ "b": 155.84966999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9333080053329468, + "confidence": 0.9333084225654602, "cells": [ { "index": 2, @@ -70670,13 +70670,13 @@ "id": 12, "label": "picture", "bbox": { - "l": 164.65028381347656, + "l": 164.6503143310547, "t": 163.79708862304688, - "r": 449.5505676269531, + "r": 449.550537109375, "b": 280.3409423828125, "coord_origin": "TOPLEFT" }, - "confidence": 0.7868534922599792, + "confidence": 0.786853551864624, "cells": [ { "index": 6, @@ -74575,7 +74575,7 @@ "b": 279.02288999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.5250625610351562, + "confidence": 0.5250615477561951, "cells": [ { "index": 60, @@ -75172,7 +75172,7 @@ "b": 314.10275, "coord_origin": "TOPLEFT" }, - "confidence": 0.9233023524284363, + "confidence": 0.9233025312423706, "cells": [ { "index": 75, @@ -75243,7 +75243,7 @@ "b": 334.04474, "coord_origin": "TOPLEFT" }, - "confidence": 0.9169168472290039, + "confidence": 0.9169170260429382, "cells": [ { "index": 77, @@ -75289,7 +75289,7 @@ "b": 367.93375, "coord_origin": "TOPLEFT" }, - "confidence": 0.9588112235069275, + "confidence": 0.958811342716217, "cells": [ { "index": 78, @@ -75531,7 +75531,7 @@ "b": 403.80475, "coord_origin": "TOPLEFT" }, - "confidence": 0.6506174206733704, + "confidence": 0.6506175994873047, "cells": [ { "index": 86, @@ -75627,7 +75627,7 @@ "b": 439.67371, "coord_origin": "TOPLEFT" }, - "confidence": 0.7247239947319031, + "confidence": 0.7247226238250732, "cells": [ { "index": 89, @@ -75723,7 +75723,7 @@ "b": 451.63269, "coord_origin": "TOPLEFT" }, - "confidence": 0.9259927272796631, + "confidence": 0.9259928464889526, "cells": [ { "index": 92, @@ -75940,7 +75940,7 @@ "b": 499.45969, "coord_origin": "TOPLEFT" }, - "confidence": 0.9617829918861389, + "confidence": 0.961783230304718, "cells": [ { "index": 99, @@ -76061,7 +76061,7 @@ "b": 640.9416699999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9785562753677368, + "confidence": 0.9785561561584473, "cells": [ { "index": 103, @@ -76357,7 +76357,7 @@ "b": 664.8546699999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9590610861778259, + "confidence": 0.9590608477592468, "cells": [ { "index": 114, @@ -76430,7 +76430,7 @@ "b": 155.84966999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9333080053329468, + "confidence": 0.9333084225654602, "cells": [ { "index": 2, @@ -76545,13 +76545,13 @@ "id": 12, "label": "picture", "bbox": { - "l": 164.65028381347656, + "l": 164.6503143310547, "t": 163.79708862304688, - "r": 449.5505676269531, + "r": 449.550537109375, "b": 280.3409423828125, "coord_origin": "TOPLEFT" }, - "confidence": 0.7868534922599792, + "confidence": 0.786853551864624, "cells": [ { "index": 6, @@ -80450,7 +80450,7 @@ "b": 279.02288999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.5250625610351562, + "confidence": 0.5250615477561951, "cells": [ { "index": 60, @@ -81047,7 +81047,7 @@ "b": 314.10275, "coord_origin": "TOPLEFT" }, - "confidence": 0.9233023524284363, + "confidence": 0.9233025312423706, "cells": [ { "index": 75, @@ -81118,7 +81118,7 @@ "b": 334.04474, "coord_origin": "TOPLEFT" }, - "confidence": 0.9169168472290039, + "confidence": 0.9169170260429382, "cells": [ { "index": 77, @@ -81164,7 +81164,7 @@ "b": 367.93375, "coord_origin": "TOPLEFT" }, - "confidence": 0.9588112235069275, + "confidence": 0.958811342716217, "cells": [ { "index": 78, @@ -81406,7 +81406,7 @@ "b": 403.80475, "coord_origin": "TOPLEFT" }, - "confidence": 0.6506174206733704, + "confidence": 0.6506175994873047, "cells": [ { "index": 86, @@ -81502,7 +81502,7 @@ "b": 439.67371, "coord_origin": "TOPLEFT" }, - "confidence": 0.7247239947319031, + "confidence": 0.7247226238250732, "cells": [ { "index": 89, @@ -81598,7 +81598,7 @@ "b": 451.63269, "coord_origin": "TOPLEFT" }, - "confidence": 0.9259927272796631, + "confidence": 0.9259928464889526, "cells": [ { "index": 92, @@ -81815,7 +81815,7 @@ "b": 499.45969, "coord_origin": "TOPLEFT" }, - "confidence": 0.9617829918861389, + "confidence": 0.961783230304718, "cells": [ { "index": 99, @@ -81936,7 +81936,7 @@ "b": 640.9416699999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9785562753677368, + "confidence": 0.9785561561584473, "cells": [ { "index": 103, @@ -82232,7 +82232,7 @@ "b": 664.8546699999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9590610861778259, + "confidence": 0.9590608477592468, "cells": [ { "index": 114, @@ -82305,7 +82305,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.932651162147522, + "confidence": 0.9326512813568115, "cells": [ { "index": 0, @@ -82351,7 +82351,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8749732375144958, + "confidence": 0.8749731183052063, "cells": [ { "index": 1, @@ -85133,7 +85133,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8301323056221008, + "confidence": 0.8301324844360352, "cells": [ { "index": 0, @@ -85238,7 +85238,7 @@ "b": 139.68579, "coord_origin": "TOPLEFT" }, - "confidence": 0.9464744925498962, + "confidence": 0.9464746713638306, "cells": [ { "index": 3, @@ -85633,7 +85633,7 @@ "b": 331.73239000000007, "coord_origin": "TOPLEFT" }, - "confidence": 0.95152747631073, + "confidence": 0.9515273571014404, "cells": [ { "index": 17, @@ -86072,7 +86072,7 @@ "id": 6, "label": "picture", "bbox": { - "l": 140.70968627929688, + "l": 140.70960998535156, "t": 508.0638427734375, "r": 472.73382568359375, "b": 593.6771850585938, @@ -90774,7 +90774,7 @@ "b": 664.8547599999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.951270341873169, + "confidence": 0.9512702226638794, "cells": [ { "index": 105, @@ -90904,7 +90904,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8301323056221008, + "confidence": 0.8301324844360352, "cells": [ { "index": 0, @@ -91021,7 +91021,7 @@ "b": 139.68579, "coord_origin": "TOPLEFT" }, - "confidence": 0.9464744925498962, + "confidence": 0.9464746713638306, "cells": [ { "index": 3, @@ -91434,7 +91434,7 @@ "b": 331.73239000000007, "coord_origin": "TOPLEFT" }, - "confidence": 0.95152747631073, + "confidence": 0.9515273571014404, "cells": [ { "index": 17, @@ -91891,7 +91891,7 @@ "id": 6, "label": "picture", "bbox": { - "l": 140.70968627929688, + "l": 140.70960998535156, "t": 508.0638427734375, "r": 472.73382568359375, "b": 593.6771850585938, @@ -96603,7 +96603,7 @@ "b": 664.8547599999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.951270341873169, + "confidence": 0.9512702226638794, "cells": [ { "index": 105, @@ -96726,7 +96726,7 @@ "b": 139.68579, "coord_origin": "TOPLEFT" }, - "confidence": 0.9464744925498962, + "confidence": 0.9464746713638306, "cells": [ { "index": 3, @@ -97139,7 +97139,7 @@ "b": 331.73239000000007, "coord_origin": "TOPLEFT" }, - "confidence": 0.95152747631073, + "confidence": 0.9515273571014404, "cells": [ { "index": 17, @@ -97596,7 +97596,7 @@ "id": 6, "label": "picture", "bbox": { - "l": 140.70968627929688, + "l": 140.70960998535156, "t": 508.0638427734375, "r": 472.73382568359375, "b": 593.6771850585938, @@ -102308,7 +102308,7 @@ "b": 664.8547599999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.951270341873169, + "confidence": 0.9512702226638794, "cells": [ { "index": 105, @@ -102431,7 +102431,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8301323056221008, + "confidence": 0.8301324844360352, "cells": [ { "index": 0, @@ -105184,7 +105184,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9373378753662109, + "confidence": 0.9373378157615662, "cells": [ { "index": 0, @@ -105224,7 +105224,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8857625722885132, + "confidence": 0.8857624530792236, "cells": [ { "index": 1, @@ -105634,7 +105634,7 @@ "b": 327.0408, "coord_origin": "TOPLEFT" }, - "confidence": 0.9570781588554382, + "confidence": 0.9570783376693726, "cells": [ { "index": 15, @@ -116120,7 +116120,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9373378753662109, + "confidence": 0.9373378157615662, "cells": [ { "index": 0, @@ -116166,7 +116166,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8857625722885132, + "confidence": 0.8857624530792236, "cells": [ { "index": 1, @@ -116600,7 +116600,7 @@ "b": 327.0408, "coord_origin": "TOPLEFT" }, - "confidence": 0.9570781588554382, + "confidence": 0.9570783376693726, "cells": [ { "index": 15, @@ -122983,7 +122983,7 @@ "b": 327.0408, "coord_origin": "TOPLEFT" }, - "confidence": 0.9570781588554382, + "confidence": 0.9570783376693726, "cells": [ { "index": 15, @@ -128978,7 +128978,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9373378753662109, + "confidence": 0.9373378157615662, "cells": [ { "index": 0, @@ -129024,7 +129024,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8857625722885132, + "confidence": 0.8857624530792236, "cells": [ { "index": 1, @@ -133256,7 +133256,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8309906721115112, + "confidence": 0.830990731716156, "cells": [ { "index": 0, @@ -133296,7 +133296,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8367075324058533, + "confidence": 0.8367077112197876, "cells": [ { "index": 1, @@ -133361,7 +133361,7 @@ "b": 145.88666, "coord_origin": "TOPLEFT" }, - "confidence": 0.9512290954589844, + "confidence": 0.9512290358543396, "cells": [ { "index": 3, @@ -133471,7 +133471,7 @@ "label": "table", "bbox": { "l": 143.6376495361328, - "t": 156.3477020263672, + "t": 156.34771728515625, "r": 470.8485412597656, "b": 263.2624816894531, "coord_origin": "TOPLEFT" @@ -136817,7 +136817,7 @@ "b": 439.71716, "coord_origin": "TOPLEFT" }, - "confidence": 0.9482728838920593, + "confidence": 0.948272705078125, "cells": [ { "index": 62, @@ -136976,10 +136976,10 @@ "id": 2, "label": "picture", "bbox": { - "l": 162.67430114746094, - "t": 444.62255859375, - "r": 451.70062255859375, - "b": 663.2135620117188, + "l": 162.67434692382812, + "t": 444.6225280761719, + "r": 451.70068359375, + "b": 663.213623046875, "coord_origin": "TOPLEFT" }, "confidence": 0.9742383360862732, @@ -143386,7 +143386,7 @@ "label": "table", "bbox": { "l": 143.6376495361328, - "t": 156.3477020263672, + "t": 156.34771728515625, "r": 470.8485412597656, "b": 263.2624816894531, "coord_origin": "TOPLEFT" @@ -147138,7 +147138,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8309906721115112, + "confidence": 0.830990731716156, "cells": [ { "index": 0, @@ -147184,7 +147184,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8367075324058533, + "confidence": 0.8367077112197876, "cells": [ { "index": 1, @@ -147255,7 +147255,7 @@ "b": 145.88666, "coord_origin": "TOPLEFT" }, - "confidence": 0.9512290954589844, + "confidence": 0.9512290358543396, "cells": [ { "index": 3, @@ -147371,7 +147371,7 @@ "label": "table", "bbox": { "l": 143.6376495361328, - "t": 156.3477020263672, + "t": 156.34771728515625, "r": 470.8485412597656, "b": 263.2624816894531, "coord_origin": "TOPLEFT" @@ -151332,7 +151332,7 @@ "b": 439.71716, "coord_origin": "TOPLEFT" }, - "confidence": 0.9482728838920593, + "confidence": 0.948272705078125, "cells": [ { "index": 62, @@ -151497,10 +151497,10 @@ "id": 2, "label": "picture", "bbox": { - "l": 162.67430114746094, - "t": 444.62255859375, - "r": 451.70062255859375, - "b": 663.2135620117188, + "l": 162.67434692382812, + "t": 444.6225280761719, + "r": 451.70068359375, + "b": 663.213623046875, "coord_origin": "TOPLEFT" }, "confidence": 0.9742383360862732, @@ -157928,7 +157928,7 @@ "b": 145.88666, "coord_origin": "TOPLEFT" }, - "confidence": 0.9512290954589844, + "confidence": 0.9512290358543396, "cells": [ { "index": 3, @@ -158044,7 +158044,7 @@ "label": "table", "bbox": { "l": 143.6376495361328, - "t": 156.3477020263672, + "t": 156.34771728515625, "r": 470.8485412597656, "b": 263.2624816894531, "coord_origin": "TOPLEFT" @@ -162005,7 +162005,7 @@ "b": 439.71716, "coord_origin": "TOPLEFT" }, - "confidence": 0.9482728838920593, + "confidence": 0.948272705078125, "cells": [ { "index": 62, @@ -162170,10 +162170,10 @@ "id": 2, "label": "picture", "bbox": { - "l": 162.67430114746094, - "t": 444.62255859375, - "r": 451.70062255859375, - "b": 663.2135620117188, + "l": 162.67434692382812, + "t": 444.6225280761719, + "r": 451.70068359375, + "b": 663.213623046875, "coord_origin": "TOPLEFT" }, "confidence": 0.9742383360862732, @@ -168601,7 +168601,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8309906721115112, + "confidence": 0.830990731716156, "cells": [ { "index": 0, @@ -168647,7 +168647,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8367075324058533, + "confidence": 0.8367077112197876, "cells": [ { "index": 1, @@ -169204,7 +169204,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9301655888557434, + "confidence": 0.9301658868789673, "cells": [ { "index": 0, @@ -169284,7 +169284,7 @@ "b": 177.76764000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8657060861587524, + "confidence": 0.8657063245773315, "cells": [ { "index": 2, @@ -169443,13 +169443,13 @@ "id": 3, "label": "picture", "bbox": { - "l": 168.39285278320312, + "l": 168.3928985595703, "t": 181.9665069580078, - "r": 447.35137939453125, + "r": 447.3513488769531, "b": 634.0056762695312, "coord_origin": "TOPLEFT" }, - "confidence": 0.7612658739089966, + "confidence": 0.7612641453742981, "cells": [ { "index": 8, @@ -170195,7 +170195,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9301655888557434, + "confidence": 0.9301658868789673, "cells": [ { "index": 0, @@ -170287,7 +170287,7 @@ "b": 177.76764000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8657060861587524, + "confidence": 0.8657063245773315, "cells": [ { "index": 2, @@ -170452,13 +170452,13 @@ "id": 3, "label": "picture", "bbox": { - "l": 168.39285278320312, + "l": 168.3928985595703, "t": 181.9665069580078, - "r": 447.35137939453125, + "r": 447.3513488769531, "b": 634.0056762695312, "coord_origin": "TOPLEFT" }, - "confidence": 0.7612658739089966, + "confidence": 0.7612641453742981, "cells": [ { "index": 8, @@ -171201,7 +171201,7 @@ "b": 177.76764000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.8657060861587524, + "confidence": 0.8657063245773315, "cells": [ { "index": 2, @@ -171366,13 +171366,13 @@ "id": 3, "label": "picture", "bbox": { - "l": 168.39285278320312, + "l": 168.3928985595703, "t": 181.9665069580078, - "r": 447.35137939453125, + "r": 447.3513488769531, "b": 634.0056762695312, "coord_origin": "TOPLEFT" }, - "confidence": 0.7612658739089966, + "confidence": 0.7612641453742981, "cells": [ { "index": 8, @@ -172115,7 +172115,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9301655888557434, + "confidence": 0.9301658868789673, "cells": [ { "index": 0, @@ -173568,7 +173568,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8610832691192627, + "confidence": 0.8610830903053284, "cells": [ { "index": 0, @@ -173608,7 +173608,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8927664756774902, + "confidence": 0.8927665948867798, "cells": [ { "index": 1, @@ -173673,7 +173673,7 @@ "b": 128.11737000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.915635347366333, + "confidence": 0.9156351685523987, "cells": [ { "index": 3, @@ -173738,7 +173738,7 @@ "b": 203.48181, "coord_origin": "TOPLEFT" }, - "confidence": 0.9806171655654907, + "confidence": 0.9806170463562012, "cells": [ { "index": 5, @@ -173878,7 +173878,7 @@ "b": 323.83679, "coord_origin": "TOPLEFT" }, - "confidence": 0.9873476028442383, + "confidence": 0.9873477220535278, "cells": [ { "index": 10, @@ -174458,7 +174458,7 @@ "b": 504.38922, "coord_origin": "TOPLEFT" }, - "confidence": 0.9403266310691833, + "confidence": 0.9403267502784729, "cells": [ { "index": 32, @@ -174878,7 +174878,7 @@ "b": 631.18761, "coord_origin": "TOPLEFT" }, - "confidence": 0.9617196321487427, + "confidence": 0.9617195129394531, "cells": [ { "index": 47, @@ -175098,7 +175098,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8610832691192627, + "confidence": 0.8610830903053284, "cells": [ { "index": 0, @@ -175144,7 +175144,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8927664756774902, + "confidence": 0.8927665948867798, "cells": [ { "index": 1, @@ -175215,7 +175215,7 @@ "b": 128.11737000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.915635347366333, + "confidence": 0.9156351685523987, "cells": [ { "index": 3, @@ -175286,7 +175286,7 @@ "b": 203.48181, "coord_origin": "TOPLEFT" }, - "confidence": 0.9806171655654907, + "confidence": 0.9806170463562012, "cells": [ { "index": 5, @@ -175432,7 +175432,7 @@ "b": 323.83679, "coord_origin": "TOPLEFT" }, - "confidence": 0.9873476028442383, + "confidence": 0.9873477220535278, "cells": [ { "index": 10, @@ -176024,7 +176024,7 @@ "b": 504.38922, "coord_origin": "TOPLEFT" }, - "confidence": 0.9403266310691833, + "confidence": 0.9403267502784729, "cells": [ { "index": 32, @@ -176462,7 +176462,7 @@ "b": 631.18761, "coord_origin": "TOPLEFT" }, - "confidence": 0.9617196321487427, + "confidence": 0.9617195129394531, "cells": [ { "index": 47, @@ -176681,7 +176681,7 @@ "b": 128.11737000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.915635347366333, + "confidence": 0.9156351685523987, "cells": [ { "index": 3, @@ -176752,7 +176752,7 @@ "b": 203.48181, "coord_origin": "TOPLEFT" }, - "confidence": 0.9806171655654907, + "confidence": 0.9806170463562012, "cells": [ { "index": 5, @@ -176898,7 +176898,7 @@ "b": 323.83679, "coord_origin": "TOPLEFT" }, - "confidence": 0.9873476028442383, + "confidence": 0.9873477220535278, "cells": [ { "index": 10, @@ -177490,7 +177490,7 @@ "b": 504.38922, "coord_origin": "TOPLEFT" }, - "confidence": 0.9403266310691833, + "confidence": 0.9403267502784729, "cells": [ { "index": 32, @@ -177928,7 +177928,7 @@ "b": 631.18761, "coord_origin": "TOPLEFT" }, - "confidence": 0.9617196321487427, + "confidence": 0.9617195129394531, "cells": [ { "index": 47, @@ -178147,7 +178147,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8610832691192627, + "confidence": 0.8610830903053284, "cells": [ { "index": 0, @@ -178193,7 +178193,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.8927664756774902, + "confidence": 0.8927665948867798, "cells": [ { "index": 1, @@ -180150,7 +180150,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9163166880607605, + "confidence": 0.91631680727005, "cells": [ { "index": 0, @@ -180190,7 +180190,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9061064720153809, + "confidence": 0.9061065912246704, "cells": [ { "index": 1, @@ -180230,7 +180230,7 @@ "b": 149.66168000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9677112698554993, + "confidence": 0.9677113890647888, "cells": [ { "index": 2, @@ -180345,7 +180345,7 @@ "b": 193.50860999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.973045289516449, + "confidence": 0.9730451703071594, "cells": [ { "index": 6, @@ -180575,7 +180575,7 @@ "b": 270.28839000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.967814564704895, + "confidence": 0.9678146243095398, "cells": [ { "index": 14, @@ -180930,7 +180930,7 @@ "b": 368.94232, "coord_origin": "TOPLEFT" }, - "confidence": 0.9639304876327515, + "confidence": 0.9639303684234619, "cells": [ { "index": 27, @@ -181335,7 +181335,7 @@ "b": 456.59146, "coord_origin": "TOPLEFT" }, - "confidence": 0.9707236886024475, + "confidence": 0.9707236289978027, "cells": [ { "index": 42, @@ -181780,7 +181780,7 @@ "b": 610.09528, "coord_origin": "TOPLEFT" }, - "confidence": 0.9674034714698792, + "confidence": 0.9674035906791687, "cells": [ { "index": 58, @@ -182265,7 +182265,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9163166880607605, + "confidence": 0.91631680727005, "cells": [ { "index": 0, @@ -182311,7 +182311,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9061064720153809, + "confidence": 0.9061065912246704, "cells": [ { "index": 1, @@ -182357,7 +182357,7 @@ "b": 149.66168000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9677112698554993, + "confidence": 0.9677113890647888, "cells": [ { "index": 2, @@ -182478,7 +182478,7 @@ "b": 193.50860999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.973045289516449, + "confidence": 0.9730451703071594, "cells": [ { "index": 6, @@ -182720,7 +182720,7 @@ "b": 270.28839000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.967814564704895, + "confidence": 0.9678146243095398, "cells": [ { "index": 14, @@ -183087,7 +183087,7 @@ "b": 368.94232, "coord_origin": "TOPLEFT" }, - "confidence": 0.9639304876327515, + "confidence": 0.9639303684234619, "cells": [ { "index": 27, @@ -183504,7 +183504,7 @@ "b": 456.59146, "coord_origin": "TOPLEFT" }, - "confidence": 0.9707236886024475, + "confidence": 0.9707236289978027, "cells": [ { "index": 42, @@ -183967,7 +183967,7 @@ "b": 610.09528, "coord_origin": "TOPLEFT" }, - "confidence": 0.9674034714698792, + "confidence": 0.9674035906791687, "cells": [ { "index": 58, @@ -184457,7 +184457,7 @@ "b": 149.66168000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9677112698554993, + "confidence": 0.9677113890647888, "cells": [ { "index": 2, @@ -184578,7 +184578,7 @@ "b": 193.50860999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.973045289516449, + "confidence": 0.9730451703071594, "cells": [ { "index": 6, @@ -184820,7 +184820,7 @@ "b": 270.28839000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.967814564704895, + "confidence": 0.9678146243095398, "cells": [ { "index": 14, @@ -185187,7 +185187,7 @@ "b": 368.94232, "coord_origin": "TOPLEFT" }, - "confidence": 0.9639304876327515, + "confidence": 0.9639303684234619, "cells": [ { "index": 27, @@ -185604,7 +185604,7 @@ "b": 456.59146, "coord_origin": "TOPLEFT" }, - "confidence": 0.9707236886024475, + "confidence": 0.9707236289978027, "cells": [ { "index": 42, @@ -186067,7 +186067,7 @@ "b": 610.09528, "coord_origin": "TOPLEFT" }, - "confidence": 0.9674034714698792, + "confidence": 0.9674035906791687, "cells": [ { "index": 58, @@ -186557,7 +186557,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9163166880607605, + "confidence": 0.91631680727005, "cells": [ { "index": 0, @@ -186603,7 +186603,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.9061064720153809, + "confidence": 0.9061065912246704, "cells": [ { "index": 1, @@ -187575,7 +187575,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.7889755964279175, + "confidence": 0.7889754772186279, "cells": [ { "index": 1, @@ -187640,7 +187640,7 @@ "b": 149.66168000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9444757699966431, + "confidence": 0.9444759488105774, "cells": [ { "index": 3, @@ -188085,7 +188085,7 @@ "b": 270.25438999999994, "coord_origin": "TOPLEFT" }, - "confidence": 0.972027063369751, + "confidence": 0.9720271825790405, "cells": [ { "index": 19, @@ -188275,7 +188275,7 @@ "b": 314.0455, "coord_origin": "TOPLEFT" }, - "confidence": 0.9685125946998596, + "confidence": 0.9685124754905701, "cells": [ { "index": 26, @@ -188591,7 +188591,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.7889755964279175, + "confidence": 0.7889754772186279, "cells": [ { "index": 1, @@ -188662,7 +188662,7 @@ "b": 149.66168000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9444757699966431, + "confidence": 0.9444759488105774, "cells": [ { "index": 3, @@ -189125,7 +189125,7 @@ "b": 270.25438999999994, "coord_origin": "TOPLEFT" }, - "confidence": 0.972027063369751, + "confidence": 0.9720271825790405, "cells": [ { "index": 19, @@ -189321,7 +189321,7 @@ "b": 314.0455, "coord_origin": "TOPLEFT" }, - "confidence": 0.9685125946998596, + "confidence": 0.9685124754905701, "cells": [ { "index": 26, @@ -189590,7 +189590,7 @@ "b": 149.66168000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9444757699966431, + "confidence": 0.9444759488105774, "cells": [ { "index": 3, @@ -190053,7 +190053,7 @@ "b": 270.25438999999994, "coord_origin": "TOPLEFT" }, - "confidence": 0.972027063369751, + "confidence": 0.9720271825790405, "cells": [ { "index": 19, @@ -190249,7 +190249,7 @@ "b": 314.0455, "coord_origin": "TOPLEFT" }, - "confidence": 0.9685125946998596, + "confidence": 0.9685124754905701, "cells": [ { "index": 26, @@ -190564,7 +190564,7 @@ "b": 101.84069999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.7889755964279175, + "confidence": 0.7889754772186279, "cells": [ { "index": 1, diff --git a/tests/data/groundtruth/docling_v2/amt_handbook_sample.json b/tests/data/groundtruth/docling_v2/amt_handbook_sample.json index 0d0e6d6..69d132b 100644 --- a/tests/data/groundtruth/docling_v2/amt_handbook_sample.json +++ b/tests/data/groundtruth/docling_v2/amt_handbook_sample.json @@ -951,7 +951,7 @@ "page_no": 1, "bbox": { "l": 320.4467468261719, - "t": 352.359375, + "t": 352.3592834472656, "r": 558.8576049804688, "b": 81.689208984375, "coord_origin": "BOTTOMLEFT" diff --git a/tests/data/groundtruth/docling_v2/amt_handbook_sample.pages.json b/tests/data/groundtruth/docling_v2/amt_handbook_sample.pages.json index c36b312..0972e85 100644 --- a/tests/data/groundtruth/docling_v2/amt_handbook_sample.pages.json +++ b/tests/data/groundtruth/docling_v2/amt_handbook_sample.pages.json @@ -3411,7 +3411,7 @@ "b": 519.65363, "coord_origin": "TOPLEFT" }, - "confidence": 0.9695363640785217, + "confidence": 0.9695364832878113, "cells": [ { "index": 34, @@ -4081,7 +4081,7 @@ "b": 142.65363000000002, "coord_origin": "TOPLEFT" }, - "confidence": 0.9263731241226196, + "confidence": 0.9263732433319092, "cells": [ { "index": 59, @@ -4611,7 +4611,7 @@ "b": 382.15362999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9253152012825012, + "confidence": 0.9253151416778564, "cells": [ { "index": 79, @@ -4651,7 +4651,7 @@ "b": 409.15362999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9676451683044434, + "confidence": 0.9676452875137329, "cells": [ { "index": 80, @@ -4711,12 +4711,12 @@ "label": "picture", "bbox": { "l": 320.4467468261719, - "t": 421.640625, + "t": 421.6407165527344, "r": 558.8576049804688, "b": 692.310791015625, "coord_origin": "TOPLEFT" }, - "confidence": 0.9881086945533752, + "confidence": 0.9881085753440857, "cells": [ { "index": 82, @@ -5463,7 +5463,7 @@ "b": 713.009598, "coord_origin": "TOPLEFT" }, - "confidence": 0.9449448585510254, + "confidence": 0.9449449777603149, "cells": [ { "index": 93, @@ -5528,7 +5528,7 @@ "b": 710.989597, "coord_origin": "TOPLEFT" }, - "confidence": 0.9497622847557068, + "confidence": 0.9497623443603516, "cells": [ { "index": 95, @@ -5593,7 +5593,7 @@ "b": 740.290298, "coord_origin": "TOPLEFT" }, - "confidence": 0.9368568658828735, + "confidence": 0.9368569850921631, "cells": [ { "index": 97, @@ -6624,7 +6624,7 @@ "b": 519.65363, "coord_origin": "TOPLEFT" }, - "confidence": 0.9695363640785217, + "confidence": 0.9695364832878113, "cells": [ { "index": 34, @@ -7312,7 +7312,7 @@ "b": 142.65363000000002, "coord_origin": "TOPLEFT" }, - "confidence": 0.9263731241226196, + "confidence": 0.9263732433319092, "cells": [ { "index": 59, @@ -7854,7 +7854,7 @@ "b": 382.15362999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9253152012825012, + "confidence": 0.9253151416778564, "cells": [ { "index": 79, @@ -7900,7 +7900,7 @@ "b": 409.15362999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9676451683044434, + "confidence": 0.9676452875137329, "cells": [ { "index": 80, @@ -7966,12 +7966,12 @@ "label": "picture", "bbox": { "l": 320.4467468261719, - "t": 421.640625, + "t": 421.6407165527344, "r": 558.8576049804688, "b": 692.310791015625, "coord_origin": "TOPLEFT" }, - "confidence": 0.9881086945533752, + "confidence": 0.9881085753440857, "cells": [ { "index": 82, @@ -8738,7 +8738,7 @@ "b": 713.009598, "coord_origin": "TOPLEFT" }, - "confidence": 0.9449448585510254, + "confidence": 0.9449449777603149, "cells": [ { "index": 93, @@ -8809,7 +8809,7 @@ "b": 710.989597, "coord_origin": "TOPLEFT" }, - "confidence": 0.9497622847557068, + "confidence": 0.9497623443603516, "cells": [ { "index": 95, @@ -8880,7 +8880,7 @@ "b": 740.290298, "coord_origin": "TOPLEFT" }, - "confidence": 0.9368568658828735, + "confidence": 0.9368569850921631, "cells": [ { "index": 97, @@ -9904,7 +9904,7 @@ "b": 519.65363, "coord_origin": "TOPLEFT" }, - "confidence": 0.9695363640785217, + "confidence": 0.9695364832878113, "cells": [ { "index": 34, @@ -10592,7 +10592,7 @@ "b": 142.65363000000002, "coord_origin": "TOPLEFT" }, - "confidence": 0.9263731241226196, + "confidence": 0.9263732433319092, "cells": [ { "index": 59, @@ -11134,7 +11134,7 @@ "b": 382.15362999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9253152012825012, + "confidence": 0.9253151416778564, "cells": [ { "index": 79, @@ -11180,7 +11180,7 @@ "b": 409.15362999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9676451683044434, + "confidence": 0.9676452875137329, "cells": [ { "index": 80, @@ -11246,12 +11246,12 @@ "label": "picture", "bbox": { "l": 320.4467468261719, - "t": 421.640625, + "t": 421.6407165527344, "r": 558.8576049804688, "b": 692.310791015625, "coord_origin": "TOPLEFT" }, - "confidence": 0.9881086945533752, + "confidence": 0.9881085753440857, "cells": [ { "index": 82, @@ -12018,7 +12018,7 @@ "b": 713.009598, "coord_origin": "TOPLEFT" }, - "confidence": 0.9449448585510254, + "confidence": 0.9449449777603149, "cells": [ { "index": 93, @@ -12089,7 +12089,7 @@ "b": 710.989597, "coord_origin": "TOPLEFT" }, - "confidence": 0.9497622847557068, + "confidence": 0.9497623443603516, "cells": [ { "index": 95, @@ -12162,7 +12162,7 @@ "b": 740.290298, "coord_origin": "TOPLEFT" }, - "confidence": 0.9368568658828735, + "confidence": 0.9368569850921631, "cells": [ { "index": 97, diff --git a/tests/data/groundtruth/docling_v2/code_and_formula.pages.json b/tests/data/groundtruth/docling_v2/code_and_formula.pages.json index 1831571..3ba8a3e 100644 --- a/tests/data/groundtruth/docling_v2/code_and_formula.pages.json +++ b/tests/data/groundtruth/docling_v2/code_and_formula.pages.json @@ -1541,7 +1541,7 @@ "b": 358.76782, "coord_origin": "TOPLEFT" }, - "confidence": 0.5588350296020508, + "confidence": 0.5588339567184448, "cells": [ { "index": 18, @@ -1581,7 +1581,7 @@ "b": 406.74554, "coord_origin": "TOPLEFT" }, - "confidence": 0.6312209963798523, + "confidence": 0.6312211155891418, "cells": [ { "index": 19, @@ -2036,7 +2036,7 @@ "b": 607.23564, "coord_origin": "TOPLEFT" }, - "confidence": 0.9843751788139343, + "confidence": 0.9843752980232239, "cells": [ { "index": 36, @@ -2719,7 +2719,7 @@ "b": 358.76782, "coord_origin": "TOPLEFT" }, - "confidence": 0.5588350296020508, + "confidence": 0.5588339567184448, "cells": [ { "index": 18, @@ -2765,7 +2765,7 @@ "b": 406.74554, "coord_origin": "TOPLEFT" }, - "confidence": 0.6312209963798523, + "confidence": 0.6312211155891418, "cells": [ { "index": 19, @@ -3232,7 +3232,7 @@ "b": 607.23564, "coord_origin": "TOPLEFT" }, - "confidence": 0.9843751788139343, + "confidence": 0.9843752980232239, "cells": [ { "index": 36, @@ -3914,7 +3914,7 @@ "b": 358.76782, "coord_origin": "TOPLEFT" }, - "confidence": 0.5588350296020508, + "confidence": 0.5588339567184448, "cells": [ { "index": 18, @@ -3960,7 +3960,7 @@ "b": 406.74554, "coord_origin": "TOPLEFT" }, - "confidence": 0.6312209963798523, + "confidence": 0.6312211155891418, "cells": [ { "index": 19, @@ -4427,7 +4427,7 @@ "b": 607.23564, "coord_origin": "TOPLEFT" }, - "confidence": 0.9843751788139343, + "confidence": 0.9843752980232239, "cells": [ { "index": 36, @@ -5782,7 +5782,7 @@ "b": 137.5481507594625, "coord_origin": "TOPLEFT" }, - "confidence": 0.950506865978241, + "confidence": 0.9505067467689514, "cells": [ { "index": 0, @@ -6302,7 +6302,7 @@ "b": 373.7119120634245, "coord_origin": "TOPLEFT" }, - "confidence": 0.8727474808692932, + "confidence": 0.8727476000785828, "cells": [ { "index": 19, @@ -7037,7 +7037,7 @@ "b": 704.5687238902275, "coord_origin": "TOPLEFT" }, - "confidence": 0.8504500389099121, + "confidence": 0.8504503965377808, "cells": [ { "index": 46, @@ -7092,7 +7092,7 @@ "b": 137.5481507594625, "coord_origin": "TOPLEFT" }, - "confidence": 0.950506865978241, + "confidence": 0.9505067467689514, "cells": [ { "index": 0, @@ -7630,7 +7630,7 @@ "b": 373.7119120634245, "coord_origin": "TOPLEFT" }, - "confidence": 0.8727474808692932, + "confidence": 0.8727476000785828, "cells": [ { "index": 19, @@ -8389,7 +8389,7 @@ "b": 704.5687238902275, "coord_origin": "TOPLEFT" }, - "confidence": 0.8504500389099121, + "confidence": 0.8504503965377808, "cells": [ { "index": 46, @@ -8437,7 +8437,7 @@ "b": 137.5481507594625, "coord_origin": "TOPLEFT" }, - "confidence": 0.950506865978241, + "confidence": 0.9505067467689514, "cells": [ { "index": 0, @@ -8975,7 +8975,7 @@ "b": 373.7119120634245, "coord_origin": "TOPLEFT" }, - "confidence": 0.8727474808692932, + "confidence": 0.8727476000785828, "cells": [ { "index": 19, @@ -9736,7 +9736,7 @@ "b": 704.5687238902275, "coord_origin": "TOPLEFT" }, - "confidence": 0.8504500389099121, + "confidence": 0.8504503965377808, "cells": [ { "index": 46, diff --git a/tests/data/groundtruth/docling_v2/multi_page.doctags.txt b/tests/data/groundtruth/docling_v2/multi_page.doctags.txt new file mode 100644 index 0000000..8098d8e --- /dev/null +++ b/tests/data/groundtruth/docling_v2/multi_page.doctags.txt @@ -0,0 +1,66 @@ +The Evolution of the Word Processor +The concept of the word processor predates modern computers and has evolved through several technological milestones. +Pre-Digital Era (19th - Early 20th Century) +The origins of word processing can be traced back to the invention of the typewriter in the mid-19th century. Patented in 1868 by Christopher Latham Sholes, the typewriter revolutionized written communication by enabling people to produce legible, professional documents more efficiently than handwriting. +During this period, the term "word processing" didn't exist, but the typewriter laid the groundwork for future developments. Over time, advancements such as carbon paper (for copies) and the electric typewriter (introduced by IBM in 1935) improved the speed and convenience of document creation. +The Birth of Word Processing (1960s - 1970s) +The term "word processor" first emerged in the 1960s and referred to any system designed to streamline written communication and document production. Early word processors were not software programs but rather standalone machines. +· IBM MT/ST (Magnetic Tape/Selectric Typewriter) : Introduced in 1964, this machine combined IBM's Selectric typewriter with magnetic tape storage. It allowed users to record, edit, and replay typed content-an early example of digital text storage. +· Wang Laboratories : In the 1970s, Wang introduced dedicated word processing machines. These devices, like the Wang 1200, featured small screens and floppy disks, making them revolutionary for their time. + +These machines were primarily used in offices, where secretarial pools benefited from their ability to make revisions without retyping entire documents. +The Rise of Personal Computers (1980s) +The advent of personal computers in the late 1970s and early 1980s transformed word processing from a niche tool to an essential technology for businesses and individuals alike. +· WordStar (1978) : Developed for the CP/M operating system, WordStar was one of the first widely used word processing programs. It featured early examples of modern features like cut, copy, and paste. +· Microsoft Word (1983) : Microsoft launched Word for MS-DOS in 1983, introducing a graphical user interface (GUI) and mouse support. Over the years, Microsoft Word became the industry standard for word processing. + + +Other notable software from this era included WordPerfect, which was popular among legal professionals, and Apple's MacWrite, which leveraged the Macintosh's graphical capabilities. +The Modern Era (1990s - Present) +By the 1990s, word processing software had become more sophisticated, with features like spell check, grammar check, templates, and collaborative tools. +· Microsoft Office Suite : Microsoft continued to dominate with its Office Suite, integrating Word with other productivity tools like Excel and PowerPoint. +· OpenOffice and LibreOffice : Open-source alternatives emerged in the early 2000s, offering free and flexible word processing options. +· Google Docs (2006) : The introduction of cloud-based word processing revolutionized collaboration. Google Docs enabled real-time editing and sharing, making it a staple for teams and remote work. + +Future of Word Processing +Today, word processors are more than just tools for typing. They integrate artificial intelligence for grammar and style suggestions (e.g., Grammarly), voice-to-text features, and advanced layout options. As AI continues to advance, word processors may evolve into even more intuitive tools that predict user needs, automate repetitive tasks, and support richer multimedia integration. +From the clunky typewriters of the 19th century to the AI-powered cloud tools of today, the word processor has come a long way. It remains an essential tool for communication and creativity, shaping how we write and share ideas. + +Specialized Word Processing Tools +In addition to general-purpose word processors, specialized tools have emerged to cater to specific industries and needs. These tools incorporate unique features tailored to their users' workflows: +· Academic and Technical Writing : Tools like LaTeX gained popularity among academics, scientists, and engineers. Unlike traditional word processors, LaTeX focuses on precise formatting, particularly for complex mathematical equations, scientific papers, and technical documents. It relies on a markup language to produce polished documents suitable for publishing. +· Screenwriting Software : For screenwriters, tools like Final Draft and Celtx are specialized to handle scripts for film and television. These programs automate the formatting of dialogue, scene descriptions, and other elements unique to screenwriting. +· Legal Document Processors : Word processors tailored for legal professionals, like WordPerfect, offered features such as redlining (early version tracking) and document comparison. Even today, many law firms rely on these tools due to their robust formatting options for contracts and legal briefs. + +Key Features That Changed Word Processing +The evolution of word processors wasn't just about hardware or software improvements-it was about the features that revolutionized how people wrote and edited. Some of these transformative features include: +1. Undo/Redo : Introduced in the 1980s, the ability to undo mistakes and redo actions made experimentation and error correction much easier. +2. Spell Check and Grammar Check : By the 1990s, these became standard, allowing users to spot errors automatically. +3. Templates : Pre-designed formats for documents, such as resumes, letters, and invoices, helped users save time. +4. Track Changes : A game-changer for collaboration, this feature allowed multiple users to suggest edits while maintaining the original text. +5. Real-Time Collaboration : Tools like Google Docs and Microsoft 365 enabled multiple users to edit the same document simultaneously, forever changing teamwork dynamics. + +The Cultural Impact of Word Processors +The word processor didn't just change workplaces-it changed culture. It democratized writing, enabling anyone with access to a computer to produce professional-quality documents. This shift had profound implications for education, business, and creative fields: + +· Accessibility : Writers no longer needed expensive publishing equipment or training in typesetting to create polished work. This accessibility paved the way for selfpublishing, blogging, and even fan fiction communities. +· Education : Word processors became a cornerstone of education, teaching students not only how to write essays but also how to use technology effectively. Features like bibliography generators and integrated research tools enhanced learning. +· Creative Writing : Writers gained powerful tools to organize their ideas. Programs like Scrivener allowed authors to manage large projects, from novels to screenplays, with features like chapter outlines and character notes. + +Word Processors in a Post-Digital Era +As we move further into the 21st century, the role of the word processor continues to evolve: +1. Artificial Intelligence : Modern word processors are leveraging AI to suggest content improvements. Tools like Grammarly, ProWritingAid, and even native features in Word now analyze tone, conciseness, and clarity. Some AI systems can even generate entire paragraphs or rewrite sentences. +2. Integration with Other Tools : Word processors are no longer standalone. They integrate with task managers, cloud storage, and project management platforms. For instance, Google Docs syncs with Google Drive, while Microsoft Word integrates seamlessly with OneDrive and Teams. +3. Voice Typing : Speech-to-text capabilities have made word processing more accessible, particularly for those with disabilities. Tools like Dragon NaturallySpeaking and built-in options in Google Docs and Microsoft Word have made dictation mainstream. +4. Multimedia Documents : Word processing has expanded beyond text. Modern tools allow users to embed images, videos, charts, and interactive elements, transforming simple documents into rich multimedia experiences. +5. Cross-Platform Accessibility : Thanks to cloud computing, documents can now be accessed and edited across devices. Whether you're on a desktop, tablet, or smartphone, you can continue working seamlessly. + +A Glimpse Into the Future +The word processor's future lies in adaptability and intelligence. Some exciting possibilities include: +· Fully AI-Assisted Writing : Imagine a word processor that understands your writing style, drafts emails, or creates entire essays based on minimal input. +· Immersive Interfaces : As augmented reality (AR) and virtual reality (VR) technology advance, users may be able to write and edit in 3D spaces, collaborating in virtual environments. +· Hyper-Personalization : Word processors could offer dynamic suggestions based on industry-specific needs, user habits, or even regional language variations. + + +The journey of the word processor-from clunky typewriters to AI-powered platformsreflects humanity's broader technological progress. What began as a tool to simply replace handwriting has transformed into a powerful ally for creativity, communication, and collaboration. As technology continues to advance, the word processor will undoubtedly remain at the heart of how we express ideas and connect with one another. + \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/multi_page.json b/tests/data/groundtruth/docling_v2/multi_page.json new file mode 100644 index 0000000..727005f --- /dev/null +++ b/tests/data/groundtruth/docling_v2/multi_page.json @@ -0,0 +1,1949 @@ +{ + "schema_name": "DoclingDocument", + "version": "1.3.0", + "name": "multi_page", + "origin": { + "mimetype": "application/pdf", + "binary_hash": 11164038604600048225, + "filename": "multi_page.pdf", + "uri": null + }, + "furniture": { + "self_ref": "#/furniture", + "parent": null, + "children": [], + "content_layer": "furniture", + "name": "_root_", + "label": "unspecified" + }, + "body": { + "self_ref": "#/body", + "parent": null, + "children": [ + { + "cref": "#/texts/0" + }, + { + "cref": "#/texts/1" + }, + { + "cref": "#/texts/2" + }, + { + "cref": "#/texts/3" + }, + { + "cref": "#/texts/4" + }, + { + "cref": "#/texts/5" + }, + { + "cref": "#/texts/6" + }, + { + "cref": "#/groups/0" + }, + { + "cref": "#/texts/9" + }, + { + "cref": "#/texts/10" + }, + { + "cref": "#/texts/11" + }, + { + "cref": "#/groups/1" + }, + { + "cref": "#/texts/14" + }, + { + "cref": "#/texts/15" + }, + { + "cref": "#/texts/16" + }, + { + "cref": "#/groups/2" + }, + { + "cref": "#/texts/20" + }, + { + "cref": "#/texts/21" + }, + { + "cref": "#/texts/22" + }, + { + "cref": "#/texts/23" + }, + { + "cref": "#/texts/24" + }, + { + "cref": "#/groups/3" + }, + { + "cref": "#/texts/28" + }, + { + "cref": "#/texts/29" + }, + { + "cref": "#/groups/4" + }, + { + "cref": "#/texts/35" + }, + { + "cref": "#/texts/36" + }, + { + "cref": "#/groups/5" + }, + { + "cref": "#/texts/40" + }, + { + "cref": "#/texts/41" + }, + { + "cref": "#/groups/6" + }, + { + "cref": "#/texts/47" + }, + { + "cref": "#/texts/48" + }, + { + "cref": "#/groups/7" + }, + { + "cref": "#/texts/52" + } + ], + "content_layer": "body", + "name": "_root_", + "label": "unspecified" + }, + "groups": [ + { + "self_ref": "#/groups/0", + "parent": { + "cref": "#/body" + }, + "children": [ + { + "cref": "#/texts/7" + }, + { + "cref": "#/texts/8" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/1", + "parent": { + "cref": "#/body" + }, + "children": [ + { + "cref": "#/texts/12" + }, + { + "cref": "#/texts/13" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/2", + "parent": { + "cref": "#/body" + }, + "children": [ + { + "cref": "#/texts/17" + }, + { + "cref": "#/texts/18" + }, + { + "cref": "#/texts/19" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/3", + "parent": { + "cref": "#/body" + }, + "children": [ + { + "cref": "#/texts/25" + }, + { + "cref": "#/texts/26" + }, + { + "cref": "#/texts/27" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/4", + "parent": { + "cref": "#/body" + }, + "children": [ + { + "cref": "#/texts/30" + }, + { + "cref": "#/texts/31" + }, + { + "cref": "#/texts/32" + }, + { + "cref": "#/texts/33" + }, + { + "cref": "#/texts/34" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/5", + "parent": { + "cref": "#/body" + }, + "children": [ + { + "cref": "#/texts/37" + }, + { + "cref": "#/texts/38" + }, + { + "cref": "#/texts/39" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/6", + "parent": { + "cref": "#/body" + }, + "children": [ + { + "cref": "#/texts/42" + }, + { + "cref": "#/texts/43" + }, + { + "cref": "#/texts/44" + }, + { + "cref": "#/texts/45" + }, + { + "cref": "#/texts/46" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/7", + "parent": { + "cref": "#/body" + }, + "children": [ + { + "cref": "#/texts/49" + }, + { + "cref": "#/texts/50" + }, + { + "cref": "#/texts/51" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + } + ], + "texts": [ + { + "self_ref": "#/texts/0", + "parent": { + "cref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 72.00000026697958, + "t": 769.3320326592508, + "r": 262.98718097516957, + "b": 756.0480326133338, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 35 + ] + } + ], + "orig": "The Evolution of the Word Processor", + "text": "The Evolution of the Word Processor", + "formatting": null, + "hyperlink": null, + "level": 1 + }, + { + "self_ref": "#/texts/1", + "parent": { + "cref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 72.00000026697958, + "t": 741.7319925638493, + "r": 497.51987184482846, + "b": 714.528022469817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 117 + ] + } + ], + "orig": "The concept of the word processor predates modern computers and has evolved through several technological milestones.", + "text": "The concept of the word processor predates modern computers and has evolved through several technological milestones.", + "formatting": null, + "hyperlink": null + }, + { + "self_ref": "#/texts/2", + "parent": { + "cref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 72.00000026697958, + "t": 699.8150624189605, + "r": 325.8153412081395, + "b": 684.9369523675332, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 43 + ] + } + ], + "orig": "Pre-Digital Era (19th - Early 20th Century)", + "text": "Pre-Digital Era (19th - Early 20th Century)", + "formatting": null, + "hyperlink": null, + "level": 1 + }, + { + "self_ref": "#/texts/3", + "parent": { + "cref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 72.00000026697958, + "t": 670.6920223182946, + "r": 508.1806618843591, + "b": 615.6480121280312, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 305 + ] + } + ], + "orig": "The origins of word processing can be traced back to the invention of the typewriter in the mid-19th century. Patented in 1868 by Christopher Latham Sholes, the typewriter revolutionized written communication by enabling people to produce legible, professional documents more efficiently than handwriting.", + "text": "The origins of word processing can be traced back to the invention of the typewriter in the mid-19th century. Patented in 1868 by Christopher Latham Sholes, the typewriter revolutionized written communication by enabling people to produce legible, professional documents more efficiently than handwriting.", + "formatting": null, + "hyperlink": null + }, + { + "self_ref": "#/texts/4", + "parent": { + "cref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 72.00000026697958, + "t": 601.5720220793764, + "r": 504.5038518707254, + "b": 546.5280218891129, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 295 + ] + } + ], + "orig": "During this period, the term \"word processing\" didn't exist, but the typewriter laid the groundwork for future developments. Over time, advancements such as carbon paper (for copies) and the electric typewriter (introduced by IBM in 1935) improved the speed and convenience of document creation.", + "text": "During this period, the term \"word processing\" didn't exist, but the typewriter laid the groundwork for future developments. Over time, advancements such as carbon paper (for copies) and the electric typewriter (introduced by IBM in 1935) improved the speed and convenience of document creation.", + "formatting": null, + "hyperlink": null + }, + { + "self_ref": "#/texts/5", + "parent": { + "cref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 72.00000026697958, + "t": 504.21506174285514, + "r": 336.7180512485673, + "b": 489.33698169142804, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 44 + ] + } + ], + "orig": "The Birth of Word Processing (1960s - 1970s)", + "text": "The Birth of Word Processing (1960s - 1970s)", + "formatting": null, + "hyperlink": null, + "level": 1 + }, + { + "self_ref": "#/texts/6", + "parent": { + "cref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 72.00000026697958, + "t": 474.8520216413597, + "r": 523.1927519400248, + "b": 433.7280314992118, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 230 + ] + } + ], + "orig": "The term \"word processor\" first emerged in the 1960s and referred to any system designed to streamline written communication and document production. Early word processors were not software programs but rather standalone machines.", + "text": "The term \"word processor\" first emerged in the 1960s and referred to any system designed to streamline written communication and document production. Early word processors were not software programs but rather standalone machines.", + "formatting": null, + "hyperlink": null + }, + { + "self_ref": "#/texts/7", + "parent": { + "cref": "#/groups/0" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 90.00000033372447, + "t": 419.6520414505571, + "r": 518.011111920811, + "b": 364.8480212611231, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 248 + ] + } + ], + "orig": "\u00b7 IBM MT/ST (Magnetic Tape/Selectric Typewriter) : Introduced in 1964, this machine combined IBM's Selectric typewriter with magnetic tape storage. It allowed users to record, edit, and replay typed content-an early example of digital text storage.", + "text": "\u00b7 IBM MT/ST (Magnetic Tape/Selectric Typewriter) : Introduced in 1964, this machine combined IBM's Selectric typewriter with magnetic tape storage. It allowed users to record, edit, and replay typed content-an early example of digital text storage.", + "formatting": null, + "hyperlink": null, + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/8", + "parent": { + "cref": "#/groups/0" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 90.00000033372447, + "t": 364.45203125975434, + "r": 497.51746184481954, + "b": 323.32800111760616, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 205 + ] + } + ], + "orig": "\u00b7 Wang Laboratories : In the 1970s, Wang introduced dedicated word processing machines. These devices, like the Wang 1200, featured small screens and floppy disks, making them revolutionary for their time.", + "text": "\u00b7 Wang Laboratories : In the 1970s, Wang introduced dedicated word processing machines. These devices, like the Wang 1200, featured small screens and floppy disks, making them revolutionary for their time.", + "formatting": null, + "hyperlink": null, + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/9", + "parent": { + "cref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 72.00000026697958, + "t": 309.01202106812207, + "r": 514.4709519076839, + "b": 281.5680209732599, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 152 + ] + } + ], + "orig": "These machines were primarily used in offices, where secretarial pools benefited from their ability to make revisions without retyping entire documents.", + "text": "These machines were primarily used in offices, where secretarial pools benefited from their ability to make revisions without retyping entire documents.", + "formatting": null, + "hyperlink": null + }, + { + "self_ref": "#/texts/10", + "parent": { + "cref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 72.00000026697958, + "t": 239.2550708270021, + "r": 306.7123111373045, + "b": 224.37701077557506, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 38 + ] + } + ], + "orig": "The Rise of Personal Computers (1980s)", + "text": "The Rise of Personal Computers (1980s)", + "formatting": null, + "hyperlink": null, + "level": 1 + }, + { + "self_ref": "#/texts/11", + "parent": { + "cref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 72.00000026697958, + "t": 210.1320507263364, + "r": 515.5663519117458, + "b": 182.68802063147405, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 177 + ] + } + ], + "orig": "The advent of personal computers in the late 1970s and early 1980s transformed word processing from a niche tool to an essential technology for businesses and individuals alike.", + "text": "The advent of personal computers in the late 1970s and early 1980s transformed word processing from a niche tool to an essential technology for businesses and individuals alike.", + "formatting": null, + "hyperlink": null + }, + { + "self_ref": "#/texts/12", + "parent": { + "cref": "#/groups/1" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 90.00000033372447, + "t": 168.37204058198995, + "r": 522.527771937559, + "b": 127.48804044067151, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 201 + ] + } + ], + "orig": "\u00b7 WordStar (1978) : Developed for the CP/M operating system, WordStar was one of the first widely used word processing programs. It featured early examples of modern features like cut, copy, and paste.", + "text": "\u00b7 WordStar (1978) : Developed for the CP/M operating system, WordStar was one of the first widely used word processing programs. It featured early examples of modern features like cut, copy, and paste.", + "formatting": null, + "hyperlink": null, + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/13", + "parent": { + "cref": "#/groups/1" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 90.00000033372447, + "t": 127.09204043930265, + "r": 525.2570219476792, + "b": 85.96801829715457, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 214 + ] + } + ], + "orig": "\u00b7 Microsoft Word (1983) : Microsoft launched Word for MS-DOS in 1983, introducing a graphical user interface (GUI) and mouse support. Over the years, Microsoft Word became the industry standard for word processing.", + "text": "\u00b7 Microsoft Word (1983) : Microsoft launched Word for MS-DOS in 1983, introducing a graphical user interface (GUI) and mouse support. Over the years, Microsoft Word became the industry standard for word processing.", + "formatting": null, + "hyperlink": null, + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/14", + "parent": { + "cref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 2, + "bbox": { + "l": 72.00000026697958, + "t": 769.5720226600804, + "r": 516.5014019152128, + "b": 728.4480025179322, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 181 + ] + } + ], + "orig": "Other notable software from this era included WordPerfect, which was popular among legal professionals, and Apple's MacWrite, which leveraged the Macintosh's graphical capabilities.", + "text": "Other notable software from this era included WordPerfect, which was popular among legal professionals, and Apple's MacWrite, which leveraged the Macintosh's graphical capabilities.", + "formatting": null, + "hyperlink": null + }, + { + "self_ref": "#/texts/15", + "parent": { + "cref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 2, + "bbox": { + "l": 72.00000026697958, + "t": 686.1350723716746, + "r": 272.1976610093225, + "b": 671.2569623202475, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 32 + ] + } + ], + "orig": "The Modern Era (1990s - Present)", + "text": "The Modern Era (1990s - Present)", + "formatting": null, + "hyperlink": null, + "level": 1 + }, + { + "self_ref": "#/texts/16", + "parent": { + "cref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 2, + "bbox": { + "l": 72.00000026697958, + "t": 656.7720322701791, + "r": 510.8733818943439, + "b": 629.5679921761465, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 152 + ] + } + ], + "orig": "By the 1990s, word processing software had become more sophisticated, with features like spell check, grammar check, templates, and collaborative tools.", + "text": "By the 1990s, word processing software had become more sophisticated, with features like spell check, grammar check, templates, and collaborative tools.", + "formatting": null, + "hyperlink": null + }, + { + "self_ref": "#/texts/17", + "parent": { + "cref": "#/groups/2" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 2, + "bbox": { + "l": 90.00000033372447, + "t": 615.2520121266623, + "r": 491.2357518215266, + "b": 588.2880220334594, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 155 + ] + } + ], + "orig": "\u00b7 Microsoft Office Suite : Microsoft continued to dominate with its Office Suite, integrating Word with other productivity tools like Excel and PowerPoint.", + "text": "\u00b7 Microsoft Office Suite : Microsoft continued to dominate with its Office Suite, integrating Word with other productivity tools like Excel and PowerPoint.", + "formatting": null, + "hyperlink": null, + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/18", + "parent": { + "cref": "#/groups/2" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 2, + "bbox": { + "l": 90.00000033372447, + "t": 587.6520420312611, + "r": 517.5377819190559, + "b": 560.6879919380578, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 135 + ] + } + ], + "orig": "\u00b7 OpenOffice and LibreOffice : Open-source alternatives emerged in the early 2000s, offering free and flexible word processing options.", + "text": "\u00b7 OpenOffice and LibreOffice : Open-source alternatives emerged in the early 2000s, offering free and flexible word processing options.", + "formatting": null, + "hyperlink": null, + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/19", + "parent": { + "cref": "#/groups/2" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 2, + "bbox": { + "l": 90.00000033372447, + "t": 560.0520019358595, + "r": 524.5618919451015, + "b": 518.9280417937117, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 197 + ] + } + ], + "orig": "\u00b7 Google Docs (2006) : The introduction of cloud-based word processing revolutionized collaboration. Google Docs enabled real-time editing and sharing, making it a staple for teams and remote work.", + "text": "\u00b7 Google Docs (2006) : The introduction of cloud-based word processing revolutionized collaboration. Google Docs enabled real-time editing and sharing, making it a staple for teams and remote work.", + "formatting": null, + "hyperlink": null, + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/20", + "parent": { + "cref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 2, + "bbox": { + "l": 72.00000026697958, + "t": 476.6150516474538, + "r": 231.71083085919528, + "b": 461.7370015960268, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 25 + ] + } + ], + "orig": "Future of Word Processing", + "text": "Future of Word Processing", + "formatting": null, + "hyperlink": null, + "level": 1 + }, + { + "self_ref": "#/texts/21", + "parent": { + "cref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 2, + "bbox": { + "l": 72.00000026697958, + "t": 447.25201154595834, + "r": 520.5438819302025, + "b": 378.52802130840905, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 385 + ] + } + ], + "orig": "Today, word processors are more than just tools for typing. They integrate artificial intelligence for grammar and style suggestions (e.g., Grammarly), voice-to-text features, and advanced layout options. As AI continues to advance, word processors may evolve into even more intuitive tools that predict user needs, automate repetitive tasks, and support richer multimedia integration.", + "text": "Today, word processors are more than just tools for typing. They integrate artificial intelligence for grammar and style suggestions (e.g., Grammarly), voice-to-text features, and advanced layout options. As AI continues to advance, word processors may evolve into even more intuitive tools that predict user needs, automate repetitive tasks, and support richer multimedia integration.", + "formatting": null, + "hyperlink": null + }, + { + "self_ref": "#/texts/22", + "parent": { + "cref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 2, + "bbox": { + "l": 72.00000026697958, + "t": 336.3720411626939, + "r": 515.5564019117089, + "b": 295.4880110213753, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 228 + ] + } + ], + "orig": "From the clunky typewriters of the 19th century to the AI-powered cloud tools of today, the word processor has come a long way. It remains an essential tool for communication and creativity, shaping how we write and share ideas.", + "text": "From the clunky typewriters of the 19th century to the AI-powered cloud tools of today, the word processor has come a long way. It remains an essential tool for communication and creativity, shaping how we write and share ideas.", + "formatting": null, + "hyperlink": null + }, + { + "self_ref": "#/texts/23", + "parent": { + "cref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 72.00000026697958, + "t": 769.1750526587082, + "r": 276.7262310261146, + "b": 754.2970026072811, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 33 + ] + } + ], + "orig": "Specialized Word Processing Tools", + "text": "Specialized Word Processing Tools", + "formatting": null, + "hyperlink": null, + "level": 1 + }, + { + "self_ref": "#/texts/24", + "parent": { + "cref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 72.00000026697958, + "t": 740.0520025580424, + "r": 514.6727319084321, + "b": 698.9280424158944, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 197 + ] + } + ], + "orig": "In addition to general-purpose word processors, specialized tools have emerged to cater to specific industries and needs. These tools incorporate unique features tailored to their users' workflows:", + "text": "In addition to general-purpose word processors, specialized tools have emerged to cater to specific industries and needs. These tools incorporate unique features tailored to their users' workflows:", + "formatting": null, + "hyperlink": null + }, + { + "self_ref": "#/texts/25", + "parent": { + "cref": "#/groups/3" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 90.00000033372447, + "t": 684.61200236641, + "r": 519.5101919263695, + "b": 616.1279921296901, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 365 + ] + } + ], + "orig": "\u00b7 Academic and Technical Writing : Tools like LaTeX gained popularity among academics, scientists, and engineers. Unlike traditional word processors, LaTeX focuses on precise formatting, particularly for complex mathematical equations, scientific papers, and technical documents. It relies on a markup language to produce polished documents suitable for publishing.", + "text": "\u00b7 Academic and Technical Writing : Tools like LaTeX gained popularity among academics, scientists, and engineers. Unlike traditional word processors, LaTeX focuses on precise formatting, particularly for complex mathematical equations, scientific papers, and technical documents. It relies on a markup language to produce polished documents suitable for publishing.", + "formatting": null, + "hyperlink": null, + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/26", + "parent": { + "cref": "#/groups/3" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 90.00000033372447, + "t": 615.7319921283214, + "r": 503.5271318671036, + "b": 560.9280419388876, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 253 + ] + } + ], + "orig": "\u00b7 Screenwriting Software : For screenwriters, tools like Final Draft and Celtx are specialized to handle scripts for film and television. These programs automate the formatting of dialogue, scene descriptions, and other elements unique to screenwriting.", + "text": "\u00b7 Screenwriting Software : For screenwriters, tools like Final Draft and Celtx are specialized to handle scripts for film and television. These programs automate the formatting of dialogue, scene descriptions, and other elements unique to screenwriting.", + "formatting": null, + "hyperlink": null, + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/27", + "parent": { + "cref": "#/groups/3" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 90.00000033372447, + "t": 560.5319819375186, + "r": 524.4814519448033, + "b": 505.4880417472553, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 300 + ] + } + ], + "orig": "\u00b7 Legal Document Processors : Word processors tailored for legal professionals, like WordPerfect, offered features such as redlining (early version tracking) and document comparison. Even today, many law firms rely on these tools due to their robust formatting options for contracts and legal briefs.", + "text": "\u00b7 Legal Document Processors : Word processors tailored for legal professionals, like WordPerfect, offered features such as redlining (early version tracking) and document comparison. Even today, many law firms rely on these tools due to their robust formatting options for contracts and legal briefs.", + "formatting": null, + "hyperlink": null, + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/28", + "parent": { + "cref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 72.00000026697958, + "t": 463.17505160099745, + "r": 340.46878126247515, + "b": 448.2970015495705, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 41 + ] + } + ], + "orig": "Key Features That Changed Word Processing", + "text": "Key Features That Changed Word Processing", + "formatting": null, + "hyperlink": null, + "level": 1 + }, + { + "self_ref": "#/texts/29", + "parent": { + "cref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 72.00000026697958, + "t": 434.0520015003316, + "r": 514.7196019086059, + "b": 392.92801135818354, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 206 + ] + } + ], + "orig": "The evolution of word processors wasn't just about hardware or software improvements-it was about the features that revolutionized how people wrote and edited. Some of these transformative features include:", + "text": "The evolution of word processors wasn't just about hardware or software improvements-it was about the features that revolutionized how people wrote and edited. Some of these transformative features include:", + "formatting": null, + "hyperlink": null + }, + { + "self_ref": "#/texts/30", + "parent": { + "cref": "#/groups/4" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 90.00000033372447, + "t": 378.6120313086994, + "r": 509.2687418883938, + "b": 351.4080212146668, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 140 + ] + } + ], + "orig": "1. Undo/Redo : Introduced in the 1980s, the ability to undo mistakes and redo actions made experimentation and error correction much easier.", + "text": "1. Undo/Redo : Introduced in the 1980s, the ability to undo mistakes and redo actions made experimentation and error correction much easier.", + "formatting": null, + "hyperlink": null, + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/31", + "parent": { + "cref": "#/groups/4" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 90.00000033372447, + "t": 351.012021213298, + "r": 516.6022319155867, + "b": 323.8080111192654, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 116 + ] + } + ], + "orig": "2. Spell Check and Grammar Check : By the 1990s, these became standard, allowing users to spot errors automatically.", + "text": "2. Spell Check and Grammar Check : By the 1990s, these became standard, allowing users to spot errors automatically.", + "formatting": null, + "hyperlink": null, + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/32", + "parent": { + "cref": "#/groups/4" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 90.00000033372447, + "t": 323.4120511178967, + "r": 486.90097180545297, + "b": 296.20801102386406, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 114 + ] + } + ], + "orig": "3. Templates : Pre-designed formats for documents, such as resumes, letters, and invoices, helped users save time.", + "text": "3. Templates : Pre-designed formats for documents, such as resumes, letters, and invoices, helped users save time.", + "formatting": null, + "hyperlink": null, + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/33", + "parent": { + "cref": "#/groups/4" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 90.00000033372447, + "t": 295.81204102249535, + "r": 502.21259186222926, + "b": 268.6080009284626, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 142 + ] + } + ], + "orig": "4. Track Changes : A game-changer for collaboration, this feature allowed multiple users to suggest edits while maintaining the original text.", + "text": "4. Track Changes : A game-changer for collaboration, this feature allowed multiple users to suggest edits while maintaining the original text.", + "formatting": null, + "hyperlink": null, + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/34", + "parent": { + "cref": "#/groups/4" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 90.00000033372447, + "t": 268.212040927094, + "r": 521.8798819351565, + "b": 227.08801078494582, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 170 + ] + } + ], + "orig": "5. Real-Time Collaboration : Tools like Google Docs and Microsoft 365 enabled multiple users to edit the same document simultaneously, forever changing teamwork dynamics.", + "text": "5. Real-Time Collaboration : Tools like Google Docs and Microsoft 365 enabled multiple users to edit the same document simultaneously, forever changing teamwork dynamics.", + "formatting": null, + "hyperlink": null, + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/35", + "parent": { + "cref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 72.00000026697958, + "t": 184.53506063785858, + "r": 311.9594411567611, + "b": 169.6570105864315, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 38 + ] + } + ], + "orig": "The Cultural Impact of Word Processors", + "text": "The Cultural Impact of Word Processors", + "formatting": null, + "hyperlink": null, + "level": 1 + }, + { + "self_ref": "#/texts/36", + "parent": { + "cref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 72.00000026697958, + "t": 155.41205053719273, + "r": 518.9003919241085, + "b": 114.28802039504467, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 261 + ] + } + ], + "orig": "The word processor didn't just change workplaces-it changed culture. It democratized writing, enabling anyone with access to a computer to produce professional-quality documents. This shift had profound implications for education, business, and creative fields:", + "text": "The word processor didn't just change workplaces-it changed culture. It democratized writing, enabling anyone with access to a computer to produce professional-quality documents. This shift had profound implications for education, business, and creative fields:", + "formatting": null, + "hyperlink": null + }, + { + "self_ref": "#/texts/37", + "parent": { + "cref": "#/groups/5" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 90.00000033372447, + "t": 769.5720226600804, + "r": 514.5589619080102, + "b": 728.6879925187619, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 222 + ] + } + ], + "orig": "\u00b7 Accessibility : Writers no longer needed expensive publishing equipment or training in typesetting to create polished work. This accessibility paved the way for selfpublishing, blogging, and even fan fiction communities.", + "text": "\u00b7 Accessibility : Writers no longer needed expensive publishing equipment or training in typesetting to create polished work. This accessibility paved the way for selfpublishing, blogging, and even fan fiction communities.", + "formatting": null, + "hyperlink": null, + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/38", + "parent": { + "cref": "#/groups/5" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 90.00000033372447, + "t": 728.291992517393, + "r": 521.9014319352365, + "b": 687.4080223760747, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 242 + ] + } + ], + "orig": "\u00b7 Education : Word processors became a cornerstone of education, teaching students not only how to write essays but also how to use technology effectively. Features like bibliography generators and integrated research tools enhanced learning.", + "text": "\u00b7 Education : Word processors became a cornerstone of education, teaching students not only how to write essays but also how to use technology effectively. Features like bibliography generators and integrated research tools enhanced learning.", + "formatting": null, + "hyperlink": null, + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/39", + "parent": { + "cref": "#/groups/5" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 90.00000033372447, + "t": 686.7720323738763, + "r": 515.8510119128011, + "b": 645.6480122317282, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 226 + ] + } + ], + "orig": "\u00b7 Creative Writing : Writers gained powerful tools to organize their ideas. Programs like Scrivener allowed authors to manage large projects, from novels to screenplays, with features like chapter outlines and character notes.", + "text": "\u00b7 Creative Writing : Writers gained powerful tools to organize their ideas. Programs like Scrivener allowed authors to manage large projects, from novels to screenplays, with features like chapter outlines and character notes.", + "formatting": null, + "hyperlink": null, + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/40", + "parent": { + "cref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 72.00000026697958, + "t": 603.3350820854705, + "r": 295.453431095556, + "b": 588.4569720340432, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 37 + ] + } + ], + "orig": "Word Processors in a Post-Digital Era", + "text": "Word Processors in a Post-Digital Era", + "formatting": null, + "hyperlink": null, + "level": 1 + }, + { + "self_ref": "#/texts/41", + "parent": { + "cref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 72.00000026697958, + "t": 573.7319919831453, + "r": 521.214971932691, + "b": 560.4480019372284, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 93 + ] + } + ], + "orig": "As we move further into the 21st century, the role of the word processor continues to evolve:", + "text": "As we move further into the 21st century, the role of the word processor continues to evolve:", + "formatting": null, + "hyperlink": null + }, + { + "self_ref": "#/texts/42", + "parent": { + "cref": "#/groups/6" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 90.00000033372447, + "t": 546.3720118885738, + "r": 523.8382019424181, + "b": 491.56802169913976, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 290 + ] + } + ], + "orig": "1. Artificial Intelligence : Modern word processors are leveraging AI to suggest content improvements. Tools like Grammarly, ProWritingAid, and even native features in Word now analyze tone, conciseness, and clarity. Some AI systems can even generate entire paragraphs or rewrite sentences.", + "text": "1. Artificial Intelligence : Modern word processors are leveraging AI to suggest content improvements. Tools like Grammarly, ProWritingAid, and even native features in Word now analyze tone, conciseness, and clarity. Some AI systems can even generate entire paragraphs or rewrite sentences.", + "formatting": null, + "hyperlink": null, + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/43", + "parent": { + "cref": "#/groups/6" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 90.00000033372447, + "t": 491.17200169777095, + "r": 514.5262519078889, + "b": 436.3680415083371, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 278 + ] + } + ], + "orig": "2. Integration with Other Tools : Word processors are no longer standalone. They integrate with task managers, cloud storage, and project management platforms. For instance, Google Docs syncs with Google Drive, while Microsoft Word integrates seamlessly with OneDrive and Teams.", + "text": "2. Integration with Other Tools : Word processors are no longer standalone. They integrate with task managers, cloud storage, and project management platforms. For instance, Google Docs syncs with Google Drive, while Microsoft Word integrates seamlessly with OneDrive and Teams.", + "formatting": null, + "hyperlink": null, + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/44", + "parent": { + "cref": "#/groups/6" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 90.00000033372447, + "t": 435.97202150696825, + "r": 502.9175418648432, + "b": 381.1680013175343, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 253 + ] + } + ], + "orig": "3. Voice Typing : Speech-to-text capabilities have made word processing more accessible, particularly for those with disabilities. Tools like Dragon NaturallySpeaking and built-in options in Google Docs and Microsoft Word have made dictation mainstream.", + "text": "3. Voice Typing : Speech-to-text capabilities have made word processing more accessible, particularly for those with disabilities. Tools like Dragon NaturallySpeaking and built-in options in Google Docs and Microsoft Word have made dictation mainstream.", + "formatting": null, + "hyperlink": null, + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/45", + "parent": { + "cref": "#/groups/6" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 90.00000033372447, + "t": 380.77203131616557, + "r": 516.9196819167639, + "b": 339.888001174847, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 215 + ] + } + ], + "orig": "4. Multimedia Documents : Word processing has expanded beyond text. Modern tools allow users to embed images, videos, charts, and interactive elements, transforming simple documents into rich multimedia experiences.", + "text": "4. Multimedia Documents : Word processing has expanded beyond text. Modern tools allow users to embed images, videos, charts, and interactive elements, transforming simple documents into rich multimedia experiences.", + "formatting": null, + "hyperlink": null, + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/46", + "parent": { + "cref": "#/groups/6" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 90.00000033372447, + "t": 339.25204117264883, + "r": 510.9070718944688, + "b": 298.1280210305007, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 206 + ] + } + ], + "orig": "5. Cross-Platform Accessibility : Thanks to cloud computing, documents can now be accessed and edited across devices. Whether you're on a desktop, tablet, or smartphone, you can continue working seamlessly.", + "text": "5. Cross-Platform Accessibility : Thanks to cloud computing, documents can now be accessed and edited across devices. Whether you're on a desktop, tablet, or smartphone, you can continue working seamlessly.", + "formatting": null, + "hyperlink": null, + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/47", + "parent": { + "cref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 72.00000026697958, + "t": 255.81506088424294, + "r": 228.355610846754, + "b": 240.93701083281587, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 25 + ] + } + ], + "orig": "A Glimpse Into the Future", + "text": "A Glimpse Into the Future", + "formatting": null, + "hyperlink": null, + "level": 1 + }, + { + "self_ref": "#/texts/48", + "parent": { + "cref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 72.00000026697958, + "t": 226.45203078274756, + "r": 515.04700190982, + "b": 199.24802068871497, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 103 + ] + } + ], + "orig": "The word processor's future lies in adaptability and intelligence. Some exciting possibilities include:", + "text": "The word processor's future lies in adaptability and intelligence. Some exciting possibilities include:", + "formatting": null, + "hyperlink": null + }, + { + "self_ref": "#/texts/49", + "parent": { + "cref": "#/groups/7" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 90.00000033372447, + "t": 184.93204063923076, + "r": 518.2673319217611, + "b": 157.96802054602767, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 155 + ] + } + ], + "orig": "\u00b7 Fully AI-Assisted Writing : Imagine a word processor that understands your writing style, drafts emails, or creates entire essays based on minimal input.", + "text": "\u00b7 Fully AI-Assisted Writing : Imagine a word processor that understands your writing style, drafts emails, or creates entire essays based on minimal input.", + "formatting": null, + "hyperlink": null, + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/50", + "parent": { + "cref": "#/groups/7" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 90.00000033372447, + "t": 157.33203054382932, + "r": 525.5181319486474, + "b": 116.44800040251084, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 184 + ] + } + ], + "orig": "\u00b7 Immersive Interfaces : As augmented reality (AR) and virtual reality (VR) technology advance, users may be able to write and edit in 3D spaces, collaborating in virtual environments.", + "text": "\u00b7 Immersive Interfaces : As augmented reality (AR) and virtual reality (VR) technology advance, users may be able to write and edit in 3D spaces, collaborating in virtual environments.", + "formatting": null, + "hyperlink": null, + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/51", + "parent": { + "cref": "#/groups/7" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 90.00000033372447, + "t": 116.05206040114217, + "r": 518.906741924132, + "b": 88.60803230627994, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 158 + ] + } + ], + "orig": "\u00b7 Hyper-Personalization : Word processors could offer dynamic suggestions based on industry-specific needs, user habits, or even regional language variations.", + "text": "\u00b7 Hyper-Personalization : Word processors could offer dynamic suggestions based on industry-specific needs, user habits, or even regional language variations.", + "formatting": null, + "hyperlink": null, + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/52", + "parent": { + "cref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 72.00000026697958, + "t": 741.7319925638493, + "r": 510.4989618929555, + "b": 673.0080023262999, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 416 + ] + } + ], + "orig": "The journey of the word processor-from clunky typewriters to AI-powered platformsreflects humanity's broader technological progress. What began as a tool to simply replace handwriting has transformed into a powerful ally for creativity, communication, and collaboration. As technology continues to advance, the word processor will undoubtedly remain at the heart of how we express ideas and connect with one another.", + "text": "The journey of the word processor-from clunky typewriters to AI-powered platformsreflects humanity's broader technological progress. What began as a tool to simply replace handwriting has transformed into a powerful ally for creativity, communication, and collaboration. As technology continues to advance, the word processor will undoubtedly remain at the heart of how we express ideas and connect with one another.", + "formatting": null, + "hyperlink": null + } + ], + "pictures": [], + "tables": [], + "key_value_items": [], + "form_items": [], + "pages": { + "1": { + "size": { + "width": 595.2000122070312, + "height": 841.9199829101562 + }, + "image": null, + "page_no": 1 + }, + "2": { + "size": { + "width": 595.2000122070312, + "height": 841.9199829101562 + }, + "image": null, + "page_no": 2 + }, + "3": { + "size": { + "width": 595.2000122070312, + "height": 841.9199829101562 + }, + "image": null, + "page_no": 3 + }, + "4": { + "size": { + "width": 595.2000122070312, + "height": 841.9199829101562 + }, + "image": null, + "page_no": 4 + }, + "5": { + "size": { + "width": 595.2000122070312, + "height": 841.9199829101562 + }, + "image": null, + "page_no": 5 + } + } +} \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/multi_page.md b/tests/data/groundtruth/docling_v2/multi_page.md new file mode 100644 index 0000000..ecbfebe --- /dev/null +++ b/tests/data/groundtruth/docling_v2/multi_page.md @@ -0,0 +1,87 @@ +## The Evolution of the Word Processor + +The concept of the word processor predates modern computers and has evolved through several technological milestones. + +## Pre-Digital Era (19th - Early 20th Century) + +The origins of word processing can be traced back to the invention of the typewriter in the mid-19th century. Patented in 1868 by Christopher Latham Sholes, the typewriter revolutionized written communication by enabling people to produce legible, professional documents more efficiently than handwriting. + +During this period, the term "word processing" didn't exist, but the typewriter laid the groundwork for future developments. Over time, advancements such as carbon paper (for copies) and the electric typewriter (introduced by IBM in 1935) improved the speed and convenience of document creation. + +## The Birth of Word Processing (1960s - 1970s) + +The term "word processor" first emerged in the 1960s and referred to any system designed to streamline written communication and document production. Early word processors were not software programs but rather standalone machines. + +- · IBM MT/ST (Magnetic Tape/Selectric Typewriter) : Introduced in 1964, this machine combined IBM's Selectric typewriter with magnetic tape storage. It allowed users to record, edit, and replay typed content-an early example of digital text storage. +- · Wang Laboratories : In the 1970s, Wang introduced dedicated word processing machines. These devices, like the Wang 1200, featured small screens and floppy disks, making them revolutionary for their time. + +These machines were primarily used in offices, where secretarial pools benefited from their ability to make revisions without retyping entire documents. + +## The Rise of Personal Computers (1980s) + +The advent of personal computers in the late 1970s and early 1980s transformed word processing from a niche tool to an essential technology for businesses and individuals alike. + +- · WordStar (1978) : Developed for the CP/M operating system, WordStar was one of the first widely used word processing programs. It featured early examples of modern features like cut, copy, and paste. +- · Microsoft Word (1983) : Microsoft launched Word for MS-DOS in 1983, introducing a graphical user interface (GUI) and mouse support. Over the years, Microsoft Word became the industry standard for word processing. + +Other notable software from this era included WordPerfect, which was popular among legal professionals, and Apple's MacWrite, which leveraged the Macintosh's graphical capabilities. + +## The Modern Era (1990s - Present) + +By the 1990s, word processing software had become more sophisticated, with features like spell check, grammar check, templates, and collaborative tools. + +- · Microsoft Office Suite : Microsoft continued to dominate with its Office Suite, integrating Word with other productivity tools like Excel and PowerPoint. +- · OpenOffice and LibreOffice : Open-source alternatives emerged in the early 2000s, offering free and flexible word processing options. +- · Google Docs (2006) : The introduction of cloud-based word processing revolutionized collaboration. Google Docs enabled real-time editing and sharing, making it a staple for teams and remote work. + +## Future of Word Processing + +Today, word processors are more than just tools for typing. They integrate artificial intelligence for grammar and style suggestions (e.g., Grammarly), voice-to-text features, and advanced layout options. As AI continues to advance, word processors may evolve into even more intuitive tools that predict user needs, automate repetitive tasks, and support richer multimedia integration. + +From the clunky typewriters of the 19th century to the AI-powered cloud tools of today, the word processor has come a long way. It remains an essential tool for communication and creativity, shaping how we write and share ideas. + +## Specialized Word Processing Tools + +In addition to general-purpose word processors, specialized tools have emerged to cater to specific industries and needs. These tools incorporate unique features tailored to their users' workflows: + +- · Academic and Technical Writing : Tools like LaTeX gained popularity among academics, scientists, and engineers. Unlike traditional word processors, LaTeX focuses on precise formatting, particularly for complex mathematical equations, scientific papers, and technical documents. It relies on a markup language to produce polished documents suitable for publishing. +- · Screenwriting Software : For screenwriters, tools like Final Draft and Celtx are specialized to handle scripts for film and television. These programs automate the formatting of dialogue, scene descriptions, and other elements unique to screenwriting. +- · Legal Document Processors : Word processors tailored for legal professionals, like WordPerfect, offered features such as redlining (early version tracking) and document comparison. Even today, many law firms rely on these tools due to their robust formatting options for contracts and legal briefs. + +## Key Features That Changed Word Processing + +The evolution of word processors wasn't just about hardware or software improvements-it was about the features that revolutionized how people wrote and edited. Some of these transformative features include: + +- 1. Undo/Redo : Introduced in the 1980s, the ability to undo mistakes and redo actions made experimentation and error correction much easier. +- 2. Spell Check and Grammar Check : By the 1990s, these became standard, allowing users to spot errors automatically. +- 3. Templates : Pre-designed formats for documents, such as resumes, letters, and invoices, helped users save time. +- 4. Track Changes : A game-changer for collaboration, this feature allowed multiple users to suggest edits while maintaining the original text. +- 5. Real-Time Collaboration : Tools like Google Docs and Microsoft 365 enabled multiple users to edit the same document simultaneously, forever changing teamwork dynamics. + +## The Cultural Impact of Word Processors + +The word processor didn't just change workplaces-it changed culture. It democratized writing, enabling anyone with access to a computer to produce professional-quality documents. This shift had profound implications for education, business, and creative fields: + +- · Accessibility : Writers no longer needed expensive publishing equipment or training in typesetting to create polished work. This accessibility paved the way for selfpublishing, blogging, and even fan fiction communities. +- · Education : Word processors became a cornerstone of education, teaching students not only how to write essays but also how to use technology effectively. Features like bibliography generators and integrated research tools enhanced learning. +- · Creative Writing : Writers gained powerful tools to organize their ideas. Programs like Scrivener allowed authors to manage large projects, from novels to screenplays, with features like chapter outlines and character notes. + +## Word Processors in a Post-Digital Era + +As we move further into the 21st century, the role of the word processor continues to evolve: + +- 1. Artificial Intelligence : Modern word processors are leveraging AI to suggest content improvements. Tools like Grammarly, ProWritingAid, and even native features in Word now analyze tone, conciseness, and clarity. Some AI systems can even generate entire paragraphs or rewrite sentences. +- 2. Integration with Other Tools : Word processors are no longer standalone. They integrate with task managers, cloud storage, and project management platforms. For instance, Google Docs syncs with Google Drive, while Microsoft Word integrates seamlessly with OneDrive and Teams. +- 3. Voice Typing : Speech-to-text capabilities have made word processing more accessible, particularly for those with disabilities. Tools like Dragon NaturallySpeaking and built-in options in Google Docs and Microsoft Word have made dictation mainstream. +- 4. Multimedia Documents : Word processing has expanded beyond text. Modern tools allow users to embed images, videos, charts, and interactive elements, transforming simple documents into rich multimedia experiences. +- 5. Cross-Platform Accessibility : Thanks to cloud computing, documents can now be accessed and edited across devices. Whether you're on a desktop, tablet, or smartphone, you can continue working seamlessly. + +## A Glimpse Into the Future + +The word processor's future lies in adaptability and intelligence. Some exciting possibilities include: + +- · Fully AI-Assisted Writing : Imagine a word processor that understands your writing style, drafts emails, or creates entire essays based on minimal input. +- · Immersive Interfaces : As augmented reality (AR) and virtual reality (VR) technology advance, users may be able to write and edit in 3D spaces, collaborating in virtual environments. +- · Hyper-Personalization : Word processors could offer dynamic suggestions based on industry-specific needs, user habits, or even regional language variations. + +The journey of the word processor-from clunky typewriters to AI-powered platformsreflects humanity's broader technological progress. What began as a tool to simply replace handwriting has transformed into a powerful ally for creativity, communication, and collaboration. As technology continues to advance, the word processor will undoubtedly remain at the heart of how we express ideas and connect with one another. \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/multi_page.pages.json b/tests/data/groundtruth/docling_v2/multi_page.pages.json new file mode 100644 index 0000000..b3c3a02 --- /dev/null +++ b/tests/data/groundtruth/docling_v2/multi_page.pages.json @@ -0,0 +1,21968 @@ +[ + { + "page_no": 0, + "size": { + "width": 595.2000122070312, + "height": 841.9199829101562 + }, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 85.87195029682243, + "r_x1": 262.98718097516957, + "r_y1": 85.87195029682243, + "r_x2": 262.98718097516957, + "r_y2": 72.58795025090546, + "r_x3": 72.00000026697958, + "r_y3": 72.58795025090546, + "coord_origin": "TOPLEFT" + }, + "text": "The Evolution of the Word Processor", + "orig": "The Evolution of the Word Processor", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 113.47198039222405, + "r_x1": 497.51987184482846, + "r_y1": 113.47198039222405, + "r_x2": 497.51987184482846, + "r_y2": 100.18799034630695, + "r_x3": 72.00000026697958, + "r_y3": 100.18799034630695, + "coord_origin": "TOPLEFT" + }, + "text": "The concept of the word processor predates modern computers and has evolved through ", + "orig": "The concept of the word processor predates modern computers and has evolved through ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 127.39196044033929, + "r_x1": 233.94727086748813, + "r_y1": 127.39196044033929, + "r_x2": 233.94727086748813, + "r_y2": 114.10797039442241, + "r_x3": 72.00000026697958, + "r_y3": 114.10797039442241, + "coord_origin": "TOPLEFT" + }, + "text": "several technological milestones. ", + "orig": "several technological milestones. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 156.98303054262306, + "r_x1": 325.8153412081395, + "r_y1": 156.98303054262306, + "r_x2": 325.8153412081395, + "r_y2": 142.1049204911958, + "r_x3": 72.00000026697958, + "r_y3": 142.1049204911958, + "coord_origin": "TOPLEFT" + }, + "text": "Pre-Digital Era (19th - Early 20th Century) ", + "orig": "Pre-Digital Era (19th - Early 20th Century) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 184.51196063777877, + "r_x1": 508.1806618843591, + "r_y1": 184.51196063777877, + "r_x2": 508.1806618843591, + "r_y2": 171.2279605918617, + "r_x3": 72.00000026697958, + "r_y3": 171.2279605918617, + "coord_origin": "TOPLEFT" + }, + "text": "The origins of word processing can be traced back to the invention of the typewriter in the ", + "orig": "The origins of word processing can be traced back to the invention of the typewriter in the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 198.43194068589423, + "r_x1": 466.9111617313298, + "r_y1": 198.43194068589423, + "r_x2": 466.9111617313298, + "r_y2": 185.14795063997713, + "r_x3": 72.00000026697958, + "r_y3": 185.14795063997713, + "coord_origin": "TOPLEFT" + }, + "text": "mid-19th century. Patented in 1868 by Christopher Latham Sholes, the typewriter ", + "orig": "mid-19th century. Patented in 1868 by Christopher Latham Sholes, the typewriter ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 212.11194073318006, + "r_x1": 507.5440418819985, + "r_y1": 212.11194073318006, + "r_x2": 507.5440418819985, + "r_y2": 198.82794068726287, + "r_x3": 72.00000026697958, + "r_y3": 198.82794068726287, + "coord_origin": "TOPLEFT" + }, + "text": "revolutionized written communication by enabling people to produce legible, professional ", + "orig": "revolutionized written communication by enabling people to produce legible, professional ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 226.2719707821251, + "r_x1": 294.60361109240483, + "r_y1": 226.2719707821251, + "r_x2": 294.60361109240483, + "r_y2": 212.987970736208, + "r_x3": 72.00000026697958, + "r_y3": 212.987970736208, + "coord_origin": "TOPLEFT" + }, + "text": "documents more efficiently than handwriting. ", + "orig": "documents more efficiently than handwriting. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 253.6319608766969, + "r_x1": 485.8655118016134, + "r_y1": 253.6319608766969, + "r_x2": 485.8655118016134, + "r_y2": 240.3479608307798, + "r_x3": 72.00000026697958, + "r_y3": 240.3479608307798, + "coord_origin": "TOPLEFT" + }, + "text": "During this period, the term \"word processing\" didn't exist, but the typewriter laid the ", + "orig": "During this period, the term \"word processing\" didn't exist, but the typewriter laid the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 267.55194092481236, + "r_x1": 504.5038518707254, + "r_y1": 267.55194092481236, + "r_x2": 504.5038518707254, + "r_y2": 254.26794087889516, + "r_x3": 72.00000026697958, + "r_y3": 254.26794087889516, + "coord_origin": "TOPLEFT" + }, + "text": "groundwork for future developments. Over time, advancements such as carbon paper (for ", + "orig": "groundwork for future developments. Over time, advancements such as carbon paper (for ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 281.2319909720984, + "r_x1": 497.86462184610673, + "r_y1": 281.2319909720984, + "r_x2": 497.86462184610673, + "r_y2": 267.94793092618113, + "r_x3": 72.00000026697958, + "r_y3": 267.94793092618113, + "coord_origin": "TOPLEFT" + }, + "text": "copies) and the electric typewriter (introduced by IBM in 1935) improved the speed and ", + "orig": "copies) and the electric typewriter (introduced by IBM in 1935) improved the speed and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 295.39196102104336, + "r_x1": 242.92383090077365, + "r_y1": 295.39196102104336, + "r_x2": 242.92383090077365, + "r_y2": 282.10797097512625, + "r_x3": 72.00000026697958, + "r_y3": 282.10797097512625, + "coord_origin": "TOPLEFT" + }, + "text": "convenience of document creation. ", + "orig": "convenience of document creation. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 352.5830012187282, + "r_x1": 336.7180512485673, + "r_y1": 352.5830012187282, + "r_x2": 336.7180512485673, + "r_y2": 337.7049211673011, + "r_x3": 72.00000026697958, + "r_y3": 337.7049211673011, + "coord_origin": "TOPLEFT" + }, + "text": "The Birth of Word Processing (1960s - 1970s) ", + "orig": "The Birth of Word Processing (1960s - 1970s) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 380.3519613147136, + "r_x1": 521.6542419343198, + "r_y1": 380.3519613147136, + "r_x2": 521.6542419343198, + "r_y2": 367.0679612687965, + "r_x3": 72.00000026697958, + "r_y3": 367.0679612687965, + "coord_origin": "TOPLEFT" + }, + "text": "The term \"word processor\" first emerged in the 1960s and referred to any system designed to ", + "orig": "The term \"word processor\" first emerged in the 1960s and referred to any system designed to ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 394.0319513619994, + "r_x1": 523.1927519400248, + "r_y1": 394.0319513619994, + "r_x2": 523.1927519400248, + "r_y2": 380.7479813160824, + "r_x3": 72.00000026697958, + "r_y3": 380.7479813160824, + "coord_origin": "TOPLEFT" + }, + "text": "streamline written communication and document production. Early word processors were not ", + "orig": "streamline written communication and document production. Early word processors were not ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 408.19195141094445, + "r_x1": 319.5820911850263, + "r_y1": 408.19195141094445, + "r_x2": 319.5820911850263, + "r_y2": 394.9079613650274, + "r_x3": 72.00000026697958, + "r_y3": 394.9079613650274, + "coord_origin": "TOPLEFT" + }, + "text": "software programs but rather standalone machines. ", + "orig": "software programs but rather standalone machines. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 435.1775515042221, + "r_x1": 94.63680335091797, + "r_y1": 435.1775515042221, + "r_x2": 94.63680335091797, + "r_y2": 422.8295614615404, + "r_x3": 90.00000033372447, + "r_y3": 422.8295614615404, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 435.55194150551625, + "r_x1": 368.59430136676593, + "r_y1": 435.55194150551625, + "r_x2": 368.59430136676593, + "r_y2": 422.2679414595992, + "r_x3": 108.00000040046937, + "r_y3": 422.2679414595992, + "coord_origin": "TOPLEFT" + }, + "text": "IBM MT/ST (Magnetic Tape/Selectric Typewriter)", + "orig": "IBM MT/ST (Magnetic Tape/Selectric Typewriter)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 368.601591366793, + "r_y0": 435.55194150551625, + "r_x1": 492.58316182652294, + "r_y1": 435.55194150551625, + "r_x2": 492.58316182652294, + "r_y2": 422.2679414595992, + "r_x3": 368.601591366793, + "r_y3": 422.2679414595992, + "coord_origin": "TOPLEFT" + }, + "text": ": Introduced in 1964, this ", + "orig": ": Introduced in 1964, this ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 449.47198155363185, + "r_x1": 518.011111920811, + "r_y1": 449.47198155363185, + "r_x2": 518.011111920811, + "r_y2": 436.1879515077147, + "r_x3": 108.00000040046937, + "r_y3": 436.1879515077147, + "coord_origin": "TOPLEFT" + }, + "text": "machine combined IBM's Selectric typewriter with magnetic tape storage. It allowed ", + "orig": "machine combined IBM's Selectric typewriter with magnetic tape storage. It allowed ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 463.1519716009177, + "r_x1": 491.5230418225918, + "r_y1": 463.1519716009177, + "r_x2": 491.5230418225918, + "r_y2": 449.86795155500056, + "r_x3": 108.00000040046937, + "r_y3": 449.86795155500056, + "coord_origin": "TOPLEFT" + }, + "text": "users to record, edit, and replay typed content-an early example of digital text ", + "orig": "users to record, edit, and replay typed content-an early example of digital text ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 477.07196164903314, + "r_x1": 148.65236055121034, + "r_y1": 477.07196164903314, + "r_x2": 148.65236055121034, + "r_y2": 463.78793160311596, + "r_x3": 108.00000040046937, + "r_y3": 463.78793160311596, + "coord_origin": "TOPLEFT" + }, + "text": "storage. ", + "orig": "storage. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 490.37756169502495, + "r_x1": 94.63680335091797, + "r_y1": 490.37756169502495, + "r_x2": 94.63680335091797, + "r_y2": 478.02957165234324, + "r_x3": 90.00000033372447, + "r_y3": 478.02957165234324, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 490.7519816963191, + "r_x1": 208.32721077248766, + "r_y1": 490.7519816963191, + "r_x2": 208.32721077248766, + "r_y2": 477.4679516504019, + "r_x3": 108.00000040046937, + "r_y3": 477.4679516504019, + "coord_origin": "TOPLEFT" + }, + "text": "Wang Laboratories", + "orig": "Wang Laboratories", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 208.3300807724983, + "r_y0": 490.7519816963191, + "r_x1": 496.9083318425608, + "r_y1": 490.7519816963191, + "r_x2": 496.9083318425608, + "r_y2": 477.4679516504019, + "r_x3": 208.3300807724983, + "r_y3": 477.4679516504019, + "coord_origin": "TOPLEFT" + }, + "text": ": In the 1970s, Wang introduced dedicated word processing ", + "orig": ": In the 1970s, Wang introduced dedicated word processing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 504.6719617444345, + "r_x1": 497.51746184481954, + "r_y1": 504.6719617444345, + "r_x2": 497.51746184481954, + "r_y2": 491.38794169851735, + "r_x3": 108.00000040046937, + "r_y3": 491.38794169851735, + "coord_origin": "TOPLEFT" + }, + "text": "machines. These devices, like the Wang 1200, featured small screens and floppy ", + "orig": "machines. These devices, like the Wang 1200, featured small screens and floppy ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 518.5919817925501, + "r_x1": 341.6191112667406, + "r_y1": 518.5919817925501, + "r_x2": 341.6191112667406, + "r_y2": 505.30795174663285, + "r_x3": 108.00000040046937, + "r_y3": 505.30795174663285, + "coord_origin": "TOPLEFT" + }, + "text": "disks, making them revolutionary for their time. ", + "orig": "disks, making them revolutionary for their time. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 546.1919518879513, + "r_x1": 514.4709519076839, + "r_y1": 546.1919518879513, + "r_x2": 514.4709519076839, + "r_y2": 532.9079618420342, + "r_x3": 72.00000026697958, + "r_y3": 532.9079618420342, + "coord_origin": "TOPLEFT" + }, + "text": "These machines were primarily used in offices, where secretarial pools benefited from their ", + "orig": "These machines were primarily used in offices, where secretarial pools benefited from their ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 28, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 560.3519619368964, + "r_x1": 364.2772813507583, + "r_y1": 560.3519619368964, + "r_x2": 364.2772813507583, + "r_y2": 547.0679318909793, + "r_x3": 72.00000026697958, + "r_y3": 547.0679318909793, + "coord_origin": "TOPLEFT" + }, + "text": "ability to make revisions without retyping entire documents. ", + "orig": "ability to make revisions without retyping entire documents. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 29, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 617.5429721345812, + "r_x1": 306.7123111373045, + "r_y1": 617.5429721345812, + "r_x2": 306.7123111373045, + "r_y2": 602.6649120831541, + "r_x3": 72.00000026697958, + "r_y3": 602.6649120831541, + "coord_origin": "TOPLEFT" + }, + "text": "The Rise of Personal Computers (1980s) ", + "orig": "The Rise of Personal Computers (1980s) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 30, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 645.0719622297371, + "r_x1": 487.8694518090441, + "r_y1": 645.0719622297371, + "r_x2": 487.8694518090441, + "r_y2": 631.7879321838199, + "r_x3": 72.00000026697958, + "r_y3": 631.7879321838199, + "coord_origin": "TOPLEFT" + }, + "text": "The advent of personal computers in the late 1970s and early 1980s transformed word ", + "orig": "The advent of personal computers in the late 1970s and early 1980s transformed word ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 31, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 659.2319622786822, + "r_x1": 515.5663519117458, + "r_y1": 659.2319622786822, + "r_x2": 515.5663519117458, + "r_y2": 645.947932232765, + "r_x3": 72.00000026697958, + "r_y3": 645.947932232765, + "coord_origin": "TOPLEFT" + }, + "text": "processing from a niche tool to an essential technology for businesses and individuals alike. ", + "orig": "processing from a niche tool to an essential technology for businesses and individuals alike. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 32, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 686.4575523727893, + "r_x1": 94.63680335091797, + "r_y1": 686.4575523727893, + "r_x2": 94.63680335091797, + "r_y2": 674.1095623301076, + "r_x3": 90.00000033372447, + "r_y3": 674.1095623301076, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 33, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 686.8319723740835, + "r_x1": 194.98799072302515, + "r_y1": 686.8319723740835, + "r_x2": 194.98799072302515, + "r_y2": 673.5479423281663, + "r_x3": 108.00000040046937, + "r_y3": 673.5479423281663, + "coord_origin": "TOPLEFT" + }, + "text": "WordStar (1978)", + "orig": "WordStar (1978)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 34, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 194.98828072302624, + "r_y0": 686.8319723740835, + "r_x1": 514.9152819093315, + "r_y1": 686.8319723740835, + "r_x2": 514.9152819093315, + "r_y2": 673.5479423281663, + "r_x3": 194.98828072302624, + "r_y3": 673.5479423281663, + "coord_origin": "TOPLEFT" + }, + "text": ": Developed for the CP/M operating system, WordStar was one of ", + "orig": ": Developed for the CP/M operating system, WordStar was one of ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 35, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 700.5119624213694, + "r_x1": 522.527771937559, + "r_y1": 700.5119624213694, + "r_x2": 522.527771937559, + "r_y2": 687.2279323754522, + "r_x3": 108.00000040046937, + "r_y3": 687.2279323754522, + "coord_origin": "TOPLEFT" + }, + "text": "the first widely used word processing programs. It featured early examples of modern ", + "orig": "the first widely used word processing programs. It featured early examples of modern ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 36, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 714.4319424694847, + "r_x1": 270.9374410046495, + "r_y1": 714.4319424694847, + "r_x2": 270.9374410046495, + "r_y2": 701.1479524235677, + "r_x3": 108.00000040046937, + "r_y3": 701.1479524235677, + "coord_origin": "TOPLEFT" + }, + "text": "features like cut, copy, and paste. ", + "orig": "features like cut, copy, and paste. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 37, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 727.7375525154766, + "r_x1": 94.63680335091797, + "r_y1": 727.7375525154766, + "r_x2": 94.63680335091797, + "r_y2": 715.3895824727949, + "r_x3": 90.00000033372447, + "r_y3": 715.3895824727949, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 38, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 728.1119425167707, + "r_x1": 225.9647808378886, + "r_y1": 728.1119425167707, + "r_x2": 225.9647808378886, + "r_y2": 714.8279424708536, + "r_x3": 108.00000040046937, + "r_y3": 714.8279424708536, + "coord_origin": "TOPLEFT" + }, + "text": "Microsoft Word (1983)", + "orig": "Microsoft Word (1983)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 39, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 225.96680083789616, + "r_y0": 728.1119425167707, + "r_x1": 525.2570219476792, + "r_y1": 728.1119425167707, + "r_x2": 525.2570219476792, + "r_y2": 714.8279424708536, + "r_x3": 225.96680083789616, + "r_y3": 714.8279424708536, + "coord_origin": "TOPLEFT" + }, + "text": ": Microsoft launched Word for MS-DOS in 1983, introducing ", + "orig": ": Microsoft launched Word for MS-DOS in 1983, introducing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 40, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 742.0319825648862, + "r_x1": 517.5070819189419, + "r_y1": 742.0319825648862, + "r_x2": 517.5070819189419, + "r_y2": 728.747922518969, + "r_x3": 108.00000040046937, + "r_y3": 728.747922518969, + "coord_origin": "TOPLEFT" + }, + "text": "a graphical user interface (GUI) and mouse support. Over the years, Microsoft Word ", + "orig": "a graphical user interface (GUI) and mouse support. Over the years, Microsoft Word ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 41, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 755.9519646130017, + "r_x1": 353.26175130991214, + "r_y1": 755.9519646130017, + "r_x2": 353.26175130991214, + "r_y2": 742.6679685670846, + "r_x3": 108.00000040046937, + "r_y3": 742.6679685670846, + "coord_origin": "TOPLEFT" + }, + "text": "became the industry standard for word processing. ", + "orig": "became the industry standard for word processing. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "parsed_page": null, + "predictions": { + "layout": { + "clusters": [ + { + "id": 13, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 72.58795025090546, + "r": 262.98718097516957, + "b": 85.87195029682243, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9216852784156799, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 85.87195029682243, + "r_x1": 262.98718097516957, + "r_y1": 85.87195029682243, + "r_x2": 262.98718097516957, + "r_y2": 72.58795025090546, + "r_x3": 72.00000026697958, + "r_y3": 72.58795025090546, + "coord_origin": "TOPLEFT" + }, + "text": "The Evolution of the Word Processor", + "orig": "The Evolution of the Word Processor", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 6, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 100.18799034630695, + "r": 497.51987184482846, + "b": 127.39196044033929, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9795150756835938, + "cells": [ + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 113.47198039222405, + "r_x1": 497.51987184482846, + "r_y1": 113.47198039222405, + "r_x2": 497.51987184482846, + "r_y2": 100.18799034630695, + "r_x3": 72.00000026697958, + "r_y3": 100.18799034630695, + "coord_origin": "TOPLEFT" + }, + "text": "The concept of the word processor predates modern computers and has evolved through ", + "orig": "The concept of the word processor predates modern computers and has evolved through ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 127.39196044033929, + "r_x1": 233.94727086748813, + "r_y1": 127.39196044033929, + "r_x2": 233.94727086748813, + "r_y2": 114.10797039442241, + "r_x3": 72.00000026697958, + "r_y3": 114.10797039442241, + "coord_origin": "TOPLEFT" + }, + "text": "several technological milestones. ", + "orig": "several technological milestones. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 11, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 142.1049204911958, + "r": 325.8153412081395, + "b": 156.98303054262306, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9472767114639282, + "cells": [ + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 156.98303054262306, + "r_x1": 325.8153412081395, + "r_y1": 156.98303054262306, + "r_x2": 325.8153412081395, + "r_y2": 142.1049204911958, + "r_x3": 72.00000026697958, + "r_y3": 142.1049204911958, + "coord_origin": "TOPLEFT" + }, + "text": "Pre-Digital Era (19th - Early 20th Century) ", + "orig": "Pre-Digital Era (19th - Early 20th Century) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 0, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 171.2279605918617, + "r": 508.1806618843591, + "b": 226.2719707821251, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.986640989780426, + "cells": [ + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 184.51196063777877, + "r_x1": 508.1806618843591, + "r_y1": 184.51196063777877, + "r_x2": 508.1806618843591, + "r_y2": 171.2279605918617, + "r_x3": 72.00000026697958, + "r_y3": 171.2279605918617, + "coord_origin": "TOPLEFT" + }, + "text": "The origins of word processing can be traced back to the invention of the typewriter in the ", + "orig": "The origins of word processing can be traced back to the invention of the typewriter in the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 198.43194068589423, + "r_x1": 466.9111617313298, + "r_y1": 198.43194068589423, + "r_x2": 466.9111617313298, + "r_y2": 185.14795063997713, + "r_x3": 72.00000026697958, + "r_y3": 185.14795063997713, + "coord_origin": "TOPLEFT" + }, + "text": "mid-19th century. Patented in 1868 by Christopher Latham Sholes, the typewriter ", + "orig": "mid-19th century. Patented in 1868 by Christopher Latham Sholes, the typewriter ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 212.11194073318006, + "r_x1": 507.5440418819985, + "r_y1": 212.11194073318006, + "r_x2": 507.5440418819985, + "r_y2": 198.82794068726287, + "r_x3": 72.00000026697958, + "r_y3": 198.82794068726287, + "coord_origin": "TOPLEFT" + }, + "text": "revolutionized written communication by enabling people to produce legible, professional ", + "orig": "revolutionized written communication by enabling people to produce legible, professional ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 226.2719707821251, + "r_x1": 294.60361109240483, + "r_y1": 226.2719707821251, + "r_x2": 294.60361109240483, + "r_y2": 212.987970736208, + "r_x3": 72.00000026697958, + "r_y3": 212.987970736208, + "coord_origin": "TOPLEFT" + }, + "text": "documents more efficiently than handwriting. ", + "orig": "documents more efficiently than handwriting. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 2, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 240.3479608307798, + "r": 504.5038518707254, + "b": 295.39196102104336, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9847150444984436, + "cells": [ + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 253.6319608766969, + "r_x1": 485.8655118016134, + "r_y1": 253.6319608766969, + "r_x2": 485.8655118016134, + "r_y2": 240.3479608307798, + "r_x3": 72.00000026697958, + "r_y3": 240.3479608307798, + "coord_origin": "TOPLEFT" + }, + "text": "During this period, the term \"word processing\" didn't exist, but the typewriter laid the ", + "orig": "During this period, the term \"word processing\" didn't exist, but the typewriter laid the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 267.55194092481236, + "r_x1": 504.5038518707254, + "r_y1": 267.55194092481236, + "r_x2": 504.5038518707254, + "r_y2": 254.26794087889516, + "r_x3": 72.00000026697958, + "r_y3": 254.26794087889516, + "coord_origin": "TOPLEFT" + }, + "text": "groundwork for future developments. Over time, advancements such as carbon paper (for ", + "orig": "groundwork for future developments. Over time, advancements such as carbon paper (for ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 281.2319909720984, + "r_x1": 497.86462184610673, + "r_y1": 281.2319909720984, + "r_x2": 497.86462184610673, + "r_y2": 267.94793092618113, + "r_x3": 72.00000026697958, + "r_y3": 267.94793092618113, + "coord_origin": "TOPLEFT" + }, + "text": "copies) and the electric typewriter (introduced by IBM in 1935) improved the speed and ", + "orig": "copies) and the electric typewriter (introduced by IBM in 1935) improved the speed and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 295.39196102104336, + "r_x1": 242.92383090077365, + "r_y1": 295.39196102104336, + "r_x2": 242.92383090077365, + "r_y2": 282.10797097512625, + "r_x3": 72.00000026697958, + "r_y3": 282.10797097512625, + "coord_origin": "TOPLEFT" + }, + "text": "convenience of document creation. ", + "orig": "convenience of document creation. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 12, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 337.7049211673011, + "r": 336.7180512485673, + "b": 352.5830012187282, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9312856793403625, + "cells": [ + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 352.5830012187282, + "r_x1": 336.7180512485673, + "r_y1": 352.5830012187282, + "r_x2": 336.7180512485673, + "r_y2": 337.7049211673011, + "r_x3": 72.00000026697958, + "r_y3": 337.7049211673011, + "coord_origin": "TOPLEFT" + }, + "text": "The Birth of Word Processing (1960s - 1970s) ", + "orig": "The Birth of Word Processing (1960s - 1970s) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 1, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 367.0679612687965, + "r": 523.1927519400248, + "b": 408.19195141094445, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9855563044548035, + "cells": [ + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 380.3519613147136, + "r_x1": 521.6542419343198, + "r_y1": 380.3519613147136, + "r_x2": 521.6542419343198, + "r_y2": 367.0679612687965, + "r_x3": 72.00000026697958, + "r_y3": 367.0679612687965, + "coord_origin": "TOPLEFT" + }, + "text": "The term \"word processor\" first emerged in the 1960s and referred to any system designed to ", + "orig": "The term \"word processor\" first emerged in the 1960s and referred to any system designed to ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 394.0319513619994, + "r_x1": 523.1927519400248, + "r_y1": 394.0319513619994, + "r_x2": 523.1927519400248, + "r_y2": 380.7479813160824, + "r_x3": 72.00000026697958, + "r_y3": 380.7479813160824, + "coord_origin": "TOPLEFT" + }, + "text": "streamline written communication and document production. Early word processors were not ", + "orig": "streamline written communication and document production. Early word processors were not ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 408.19195141094445, + "r_x1": 319.5820911850263, + "r_y1": 408.19195141094445, + "r_x2": 319.5820911850263, + "r_y2": 394.9079613650274, + "r_x3": 72.00000026697958, + "r_y3": 394.9079613650274, + "coord_origin": "TOPLEFT" + }, + "text": "software programs but rather standalone machines. ", + "orig": "software programs but rather standalone machines. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 4, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 422.2679414595992, + "r": 518.011111920811, + "b": 477.07196164903314, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9806972742080688, + "cells": [ + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 435.1775515042221, + "r_x1": 94.63680335091797, + "r_y1": 435.1775515042221, + "r_x2": 94.63680335091797, + "r_y2": 422.8295614615404, + "r_x3": 90.00000033372447, + "r_y3": 422.8295614615404, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 435.55194150551625, + "r_x1": 368.59430136676593, + "r_y1": 435.55194150551625, + "r_x2": 368.59430136676593, + "r_y2": 422.2679414595992, + "r_x3": 108.00000040046937, + "r_y3": 422.2679414595992, + "coord_origin": "TOPLEFT" + }, + "text": "IBM MT/ST (Magnetic Tape/Selectric Typewriter)", + "orig": "IBM MT/ST (Magnetic Tape/Selectric Typewriter)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 368.601591366793, + "r_y0": 435.55194150551625, + "r_x1": 492.58316182652294, + "r_y1": 435.55194150551625, + "r_x2": 492.58316182652294, + "r_y2": 422.2679414595992, + "r_x3": 368.601591366793, + "r_y3": 422.2679414595992, + "coord_origin": "TOPLEFT" + }, + "text": ": Introduced in 1964, this ", + "orig": ": Introduced in 1964, this ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 449.47198155363185, + "r_x1": 518.011111920811, + "r_y1": 449.47198155363185, + "r_x2": 518.011111920811, + "r_y2": 436.1879515077147, + "r_x3": 108.00000040046937, + "r_y3": 436.1879515077147, + "coord_origin": "TOPLEFT" + }, + "text": "machine combined IBM's Selectric typewriter with magnetic tape storage. It allowed ", + "orig": "machine combined IBM's Selectric typewriter with magnetic tape storage. It allowed ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 463.1519716009177, + "r_x1": 491.5230418225918, + "r_y1": 463.1519716009177, + "r_x2": 491.5230418225918, + "r_y2": 449.86795155500056, + "r_x3": 108.00000040046937, + "r_y3": 449.86795155500056, + "coord_origin": "TOPLEFT" + }, + "text": "users to record, edit, and replay typed content-an early example of digital text ", + "orig": "users to record, edit, and replay typed content-an early example of digital text ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 477.07196164903314, + "r_x1": 148.65236055121034, + "r_y1": 477.07196164903314, + "r_x2": 148.65236055121034, + "r_y2": 463.78793160311596, + "r_x3": 108.00000040046937, + "r_y3": 463.78793160311596, + "coord_origin": "TOPLEFT" + }, + "text": "storage. ", + "orig": "storage. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 3, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 477.4679516504019, + "r": 497.51746184481954, + "b": 518.5919817925501, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9817657470703125, + "cells": [ + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 490.37756169502495, + "r_x1": 94.63680335091797, + "r_y1": 490.37756169502495, + "r_x2": 94.63680335091797, + "r_y2": 478.02957165234324, + "r_x3": 90.00000033372447, + "r_y3": 478.02957165234324, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 490.7519816963191, + "r_x1": 208.32721077248766, + "r_y1": 490.7519816963191, + "r_x2": 208.32721077248766, + "r_y2": 477.4679516504019, + "r_x3": 108.00000040046937, + "r_y3": 477.4679516504019, + "coord_origin": "TOPLEFT" + }, + "text": "Wang Laboratories", + "orig": "Wang Laboratories", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 208.3300807724983, + "r_y0": 490.7519816963191, + "r_x1": 496.9083318425608, + "r_y1": 490.7519816963191, + "r_x2": 496.9083318425608, + "r_y2": 477.4679516504019, + "r_x3": 208.3300807724983, + "r_y3": 477.4679516504019, + "coord_origin": "TOPLEFT" + }, + "text": ": In the 1970s, Wang introduced dedicated word processing ", + "orig": ": In the 1970s, Wang introduced dedicated word processing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 504.6719617444345, + "r_x1": 497.51746184481954, + "r_y1": 504.6719617444345, + "r_x2": 497.51746184481954, + "r_y2": 491.38794169851735, + "r_x3": 108.00000040046937, + "r_y3": 491.38794169851735, + "coord_origin": "TOPLEFT" + }, + "text": "machines. These devices, like the Wang 1200, featured small screens and floppy ", + "orig": "machines. These devices, like the Wang 1200, featured small screens and floppy ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 518.5919817925501, + "r_x1": 341.6191112667406, + "r_y1": 518.5919817925501, + "r_x2": 341.6191112667406, + "r_y2": 505.30795174663285, + "r_x3": 108.00000040046937, + "r_y3": 505.30795174663285, + "coord_origin": "TOPLEFT" + }, + "text": "disks, making them revolutionary for their time. ", + "orig": "disks, making them revolutionary for their time. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 7, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 532.9079618420342, + "r": 514.4709519076839, + "b": 560.3519619368964, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9792535305023193, + "cells": [ + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 546.1919518879513, + "r_x1": 514.4709519076839, + "r_y1": 546.1919518879513, + "r_x2": 514.4709519076839, + "r_y2": 532.9079618420342, + "r_x3": 72.00000026697958, + "r_y3": 532.9079618420342, + "coord_origin": "TOPLEFT" + }, + "text": "These machines were primarily used in offices, where secretarial pools benefited from their ", + "orig": "These machines were primarily used in offices, where secretarial pools benefited from their ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 28, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 560.3519619368964, + "r_x1": 364.2772813507583, + "r_y1": 560.3519619368964, + "r_x2": 364.2772813507583, + "r_y2": 547.0679318909793, + "r_x3": 72.00000026697958, + "r_y3": 547.0679318909793, + "coord_origin": "TOPLEFT" + }, + "text": "ability to make revisions without retyping entire documents. ", + "orig": "ability to make revisions without retyping entire documents. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 10, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 602.6649120831541, + "r": 306.7123111373045, + "b": 617.5429721345812, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.950114905834198, + "cells": [ + { + "index": 29, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 617.5429721345812, + "r_x1": 306.7123111373045, + "r_y1": 617.5429721345812, + "r_x2": 306.7123111373045, + "r_y2": 602.6649120831541, + "r_x3": 72.00000026697958, + "r_y3": 602.6649120831541, + "coord_origin": "TOPLEFT" + }, + "text": "The Rise of Personal Computers (1980s) ", + "orig": "The Rise of Personal Computers (1980s) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 9, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 631.7879321838199, + "r": 515.5663519117458, + "b": 659.2319622786822, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9778240919113159, + "cells": [ + { + "index": 30, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 645.0719622297371, + "r_x1": 487.8694518090441, + "r_y1": 645.0719622297371, + "r_x2": 487.8694518090441, + "r_y2": 631.7879321838199, + "r_x3": 72.00000026697958, + "r_y3": 631.7879321838199, + "coord_origin": "TOPLEFT" + }, + "text": "The advent of personal computers in the late 1970s and early 1980s transformed word ", + "orig": "The advent of personal computers in the late 1970s and early 1980s transformed word ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 31, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 659.2319622786822, + "r_x1": 515.5663519117458, + "r_y1": 659.2319622786822, + "r_x2": 515.5663519117458, + "r_y2": 645.947932232765, + "r_x3": 72.00000026697958, + "r_y3": 645.947932232765, + "coord_origin": "TOPLEFT" + }, + "text": "processing from a niche tool to an essential technology for businesses and individuals alike. ", + "orig": "processing from a niche tool to an essential technology for businesses and individuals alike. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 8, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 673.5479423281663, + "r": 522.527771937559, + "b": 714.4319424694847, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9782076478004456, + "cells": [ + { + "index": 32, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 686.4575523727893, + "r_x1": 94.63680335091797, + "r_y1": 686.4575523727893, + "r_x2": 94.63680335091797, + "r_y2": 674.1095623301076, + "r_x3": 90.00000033372447, + "r_y3": 674.1095623301076, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 33, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 686.8319723740835, + "r_x1": 194.98799072302515, + "r_y1": 686.8319723740835, + "r_x2": 194.98799072302515, + "r_y2": 673.5479423281663, + "r_x3": 108.00000040046937, + "r_y3": 673.5479423281663, + "coord_origin": "TOPLEFT" + }, + "text": "WordStar (1978)", + "orig": "WordStar (1978)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 34, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 194.98828072302624, + "r_y0": 686.8319723740835, + "r_x1": 514.9152819093315, + "r_y1": 686.8319723740835, + "r_x2": 514.9152819093315, + "r_y2": 673.5479423281663, + "r_x3": 194.98828072302624, + "r_y3": 673.5479423281663, + "coord_origin": "TOPLEFT" + }, + "text": ": Developed for the CP/M operating system, WordStar was one of ", + "orig": ": Developed for the CP/M operating system, WordStar was one of ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 35, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 700.5119624213694, + "r_x1": 522.527771937559, + "r_y1": 700.5119624213694, + "r_x2": 522.527771937559, + "r_y2": 687.2279323754522, + "r_x3": 108.00000040046937, + "r_y3": 687.2279323754522, + "coord_origin": "TOPLEFT" + }, + "text": "the first widely used word processing programs. It featured early examples of modern ", + "orig": "the first widely used word processing programs. It featured early examples of modern ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 36, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 714.4319424694847, + "r_x1": 270.9374410046495, + "r_y1": 714.4319424694847, + "r_x2": 270.9374410046495, + "r_y2": 701.1479524235677, + "r_x3": 108.00000040046937, + "r_y3": 701.1479524235677, + "coord_origin": "TOPLEFT" + }, + "text": "features like cut, copy, and paste. ", + "orig": "features like cut, copy, and paste. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 5, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 714.8279424708536, + "r": 525.2570219476792, + "b": 755.9519646130017, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9797734618186951, + "cells": [ + { + "index": 37, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 727.7375525154766, + "r_x1": 94.63680335091797, + "r_y1": 727.7375525154766, + "r_x2": 94.63680335091797, + "r_y2": 715.3895824727949, + "r_x3": 90.00000033372447, + "r_y3": 715.3895824727949, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 38, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 728.1119425167707, + "r_x1": 225.9647808378886, + "r_y1": 728.1119425167707, + "r_x2": 225.9647808378886, + "r_y2": 714.8279424708536, + "r_x3": 108.00000040046937, + "r_y3": 714.8279424708536, + "coord_origin": "TOPLEFT" + }, + "text": "Microsoft Word (1983)", + "orig": "Microsoft Word (1983)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 39, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 225.96680083789616, + "r_y0": 728.1119425167707, + "r_x1": 525.2570219476792, + "r_y1": 728.1119425167707, + "r_x2": 525.2570219476792, + "r_y2": 714.8279424708536, + "r_x3": 225.96680083789616, + "r_y3": 714.8279424708536, + "coord_origin": "TOPLEFT" + }, + "text": ": Microsoft launched Word for MS-DOS in 1983, introducing ", + "orig": ": Microsoft launched Word for MS-DOS in 1983, introducing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 40, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 742.0319825648862, + "r_x1": 517.5070819189419, + "r_y1": 742.0319825648862, + "r_x2": 517.5070819189419, + "r_y2": 728.747922518969, + "r_x3": 108.00000040046937, + "r_y3": 728.747922518969, + "coord_origin": "TOPLEFT" + }, + "text": "a graphical user interface (GUI) and mouse support. Over the years, Microsoft Word ", + "orig": "a graphical user interface (GUI) and mouse support. Over the years, Microsoft Word ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 41, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 755.9519646130017, + "r_x1": 353.26175130991214, + "r_y1": 755.9519646130017, + "r_x2": 353.26175130991214, + "r_y2": 742.6679685670846, + "r_x3": 108.00000040046937, + "r_y3": 742.6679685670846, + "coord_origin": "TOPLEFT" + }, + "text": "became the industry standard for word processing. ", + "orig": "became the industry standard for word processing. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + } + ] + }, + "tablestructure": { + "table_map": {} + }, + "figures_classification": null, + "equations_prediction": null, + "vlm_response": null + }, + "assembled": { + "elements": [ + { + "label": "section_header", + "id": 13, + "page_no": 0, + "cluster": { + "id": 13, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 72.58795025090546, + "r": 262.98718097516957, + "b": 85.87195029682243, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9216852784156799, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 85.87195029682243, + "r_x1": 262.98718097516957, + "r_y1": 85.87195029682243, + "r_x2": 262.98718097516957, + "r_y2": 72.58795025090546, + "r_x3": 72.00000026697958, + "r_y3": 72.58795025090546, + "coord_origin": "TOPLEFT" + }, + "text": "The Evolution of the Word Processor", + "orig": "The Evolution of the Word Processor", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The Evolution of the Word Processor" + }, + { + "label": "text", + "id": 6, + "page_no": 0, + "cluster": { + "id": 6, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 100.18799034630695, + "r": 497.51987184482846, + "b": 127.39196044033929, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9795150756835938, + "cells": [ + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 113.47198039222405, + "r_x1": 497.51987184482846, + "r_y1": 113.47198039222405, + "r_x2": 497.51987184482846, + "r_y2": 100.18799034630695, + "r_x3": 72.00000026697958, + "r_y3": 100.18799034630695, + "coord_origin": "TOPLEFT" + }, + "text": "The concept of the word processor predates modern computers and has evolved through ", + "orig": "The concept of the word processor predates modern computers and has evolved through ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 127.39196044033929, + "r_x1": 233.94727086748813, + "r_y1": 127.39196044033929, + "r_x2": 233.94727086748813, + "r_y2": 114.10797039442241, + "r_x3": 72.00000026697958, + "r_y3": 114.10797039442241, + "coord_origin": "TOPLEFT" + }, + "text": "several technological milestones. ", + "orig": "several technological milestones. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The concept of the word processor predates modern computers and has evolved through several technological milestones." + }, + { + "label": "section_header", + "id": 11, + "page_no": 0, + "cluster": { + "id": 11, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 142.1049204911958, + "r": 325.8153412081395, + "b": 156.98303054262306, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9472767114639282, + "cells": [ + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 156.98303054262306, + "r_x1": 325.8153412081395, + "r_y1": 156.98303054262306, + "r_x2": 325.8153412081395, + "r_y2": 142.1049204911958, + "r_x3": 72.00000026697958, + "r_y3": 142.1049204911958, + "coord_origin": "TOPLEFT" + }, + "text": "Pre-Digital Era (19th - Early 20th Century) ", + "orig": "Pre-Digital Era (19th - Early 20th Century) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "Pre-Digital Era (19th - Early 20th Century)" + }, + { + "label": "text", + "id": 0, + "page_no": 0, + "cluster": { + "id": 0, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 171.2279605918617, + "r": 508.1806618843591, + "b": 226.2719707821251, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.986640989780426, + "cells": [ + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 184.51196063777877, + "r_x1": 508.1806618843591, + "r_y1": 184.51196063777877, + "r_x2": 508.1806618843591, + "r_y2": 171.2279605918617, + "r_x3": 72.00000026697958, + "r_y3": 171.2279605918617, + "coord_origin": "TOPLEFT" + }, + "text": "The origins of word processing can be traced back to the invention of the typewriter in the ", + "orig": "The origins of word processing can be traced back to the invention of the typewriter in the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 198.43194068589423, + "r_x1": 466.9111617313298, + "r_y1": 198.43194068589423, + "r_x2": 466.9111617313298, + "r_y2": 185.14795063997713, + "r_x3": 72.00000026697958, + "r_y3": 185.14795063997713, + "coord_origin": "TOPLEFT" + }, + "text": "mid-19th century. Patented in 1868 by Christopher Latham Sholes, the typewriter ", + "orig": "mid-19th century. Patented in 1868 by Christopher Latham Sholes, the typewriter ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 212.11194073318006, + "r_x1": 507.5440418819985, + "r_y1": 212.11194073318006, + "r_x2": 507.5440418819985, + "r_y2": 198.82794068726287, + "r_x3": 72.00000026697958, + "r_y3": 198.82794068726287, + "coord_origin": "TOPLEFT" + }, + "text": "revolutionized written communication by enabling people to produce legible, professional ", + "orig": "revolutionized written communication by enabling people to produce legible, professional ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 226.2719707821251, + "r_x1": 294.60361109240483, + "r_y1": 226.2719707821251, + "r_x2": 294.60361109240483, + "r_y2": 212.987970736208, + "r_x3": 72.00000026697958, + "r_y3": 212.987970736208, + "coord_origin": "TOPLEFT" + }, + "text": "documents more efficiently than handwriting. ", + "orig": "documents more efficiently than handwriting. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The origins of word processing can be traced back to the invention of the typewriter in the mid-19th century. Patented in 1868 by Christopher Latham Sholes, the typewriter revolutionized written communication by enabling people to produce legible, professional documents more efficiently than handwriting." + }, + { + "label": "text", + "id": 2, + "page_no": 0, + "cluster": { + "id": 2, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 240.3479608307798, + "r": 504.5038518707254, + "b": 295.39196102104336, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9847150444984436, + "cells": [ + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 253.6319608766969, + "r_x1": 485.8655118016134, + "r_y1": 253.6319608766969, + "r_x2": 485.8655118016134, + "r_y2": 240.3479608307798, + "r_x3": 72.00000026697958, + "r_y3": 240.3479608307798, + "coord_origin": "TOPLEFT" + }, + "text": "During this period, the term \"word processing\" didn't exist, but the typewriter laid the ", + "orig": "During this period, the term \"word processing\" didn't exist, but the typewriter laid the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 267.55194092481236, + "r_x1": 504.5038518707254, + "r_y1": 267.55194092481236, + "r_x2": 504.5038518707254, + "r_y2": 254.26794087889516, + "r_x3": 72.00000026697958, + "r_y3": 254.26794087889516, + "coord_origin": "TOPLEFT" + }, + "text": "groundwork for future developments. Over time, advancements such as carbon paper (for ", + "orig": "groundwork for future developments. Over time, advancements such as carbon paper (for ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 281.2319909720984, + "r_x1": 497.86462184610673, + "r_y1": 281.2319909720984, + "r_x2": 497.86462184610673, + "r_y2": 267.94793092618113, + "r_x3": 72.00000026697958, + "r_y3": 267.94793092618113, + "coord_origin": "TOPLEFT" + }, + "text": "copies) and the electric typewriter (introduced by IBM in 1935) improved the speed and ", + "orig": "copies) and the electric typewriter (introduced by IBM in 1935) improved the speed and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 295.39196102104336, + "r_x1": 242.92383090077365, + "r_y1": 295.39196102104336, + "r_x2": 242.92383090077365, + "r_y2": 282.10797097512625, + "r_x3": 72.00000026697958, + "r_y3": 282.10797097512625, + "coord_origin": "TOPLEFT" + }, + "text": "convenience of document creation. ", + "orig": "convenience of document creation. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "During this period, the term \"word processing\" didn't exist, but the typewriter laid the groundwork for future developments. Over time, advancements such as carbon paper (for copies) and the electric typewriter (introduced by IBM in 1935) improved the speed and convenience of document creation." + }, + { + "label": "section_header", + "id": 12, + "page_no": 0, + "cluster": { + "id": 12, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 337.7049211673011, + "r": 336.7180512485673, + "b": 352.5830012187282, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9312856793403625, + "cells": [ + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 352.5830012187282, + "r_x1": 336.7180512485673, + "r_y1": 352.5830012187282, + "r_x2": 336.7180512485673, + "r_y2": 337.7049211673011, + "r_x3": 72.00000026697958, + "r_y3": 337.7049211673011, + "coord_origin": "TOPLEFT" + }, + "text": "The Birth of Word Processing (1960s - 1970s) ", + "orig": "The Birth of Word Processing (1960s - 1970s) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The Birth of Word Processing (1960s - 1970s)" + }, + { + "label": "text", + "id": 1, + "page_no": 0, + "cluster": { + "id": 1, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 367.0679612687965, + "r": 523.1927519400248, + "b": 408.19195141094445, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9855563044548035, + "cells": [ + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 380.3519613147136, + "r_x1": 521.6542419343198, + "r_y1": 380.3519613147136, + "r_x2": 521.6542419343198, + "r_y2": 367.0679612687965, + "r_x3": 72.00000026697958, + "r_y3": 367.0679612687965, + "coord_origin": "TOPLEFT" + }, + "text": "The term \"word processor\" first emerged in the 1960s and referred to any system designed to ", + "orig": "The term \"word processor\" first emerged in the 1960s and referred to any system designed to ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 394.0319513619994, + "r_x1": 523.1927519400248, + "r_y1": 394.0319513619994, + "r_x2": 523.1927519400248, + "r_y2": 380.7479813160824, + "r_x3": 72.00000026697958, + "r_y3": 380.7479813160824, + "coord_origin": "TOPLEFT" + }, + "text": "streamline written communication and document production. Early word processors were not ", + "orig": "streamline written communication and document production. Early word processors were not ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 408.19195141094445, + "r_x1": 319.5820911850263, + "r_y1": 408.19195141094445, + "r_x2": 319.5820911850263, + "r_y2": 394.9079613650274, + "r_x3": 72.00000026697958, + "r_y3": 394.9079613650274, + "coord_origin": "TOPLEFT" + }, + "text": "software programs but rather standalone machines. ", + "orig": "software programs but rather standalone machines. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The term \"word processor\" first emerged in the 1960s and referred to any system designed to streamline written communication and document production. Early word processors were not software programs but rather standalone machines." + }, + { + "label": "list_item", + "id": 4, + "page_no": 0, + "cluster": { + "id": 4, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 422.2679414595992, + "r": 518.011111920811, + "b": 477.07196164903314, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9806972742080688, + "cells": [ + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 435.1775515042221, + "r_x1": 94.63680335091797, + "r_y1": 435.1775515042221, + "r_x2": 94.63680335091797, + "r_y2": 422.8295614615404, + "r_x3": 90.00000033372447, + "r_y3": 422.8295614615404, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 435.55194150551625, + "r_x1": 368.59430136676593, + "r_y1": 435.55194150551625, + "r_x2": 368.59430136676593, + "r_y2": 422.2679414595992, + "r_x3": 108.00000040046937, + "r_y3": 422.2679414595992, + "coord_origin": "TOPLEFT" + }, + "text": "IBM MT/ST (Magnetic Tape/Selectric Typewriter)", + "orig": "IBM MT/ST (Magnetic Tape/Selectric Typewriter)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 368.601591366793, + "r_y0": 435.55194150551625, + "r_x1": 492.58316182652294, + "r_y1": 435.55194150551625, + "r_x2": 492.58316182652294, + "r_y2": 422.2679414595992, + "r_x3": 368.601591366793, + "r_y3": 422.2679414595992, + "coord_origin": "TOPLEFT" + }, + "text": ": Introduced in 1964, this ", + "orig": ": Introduced in 1964, this ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 449.47198155363185, + "r_x1": 518.011111920811, + "r_y1": 449.47198155363185, + "r_x2": 518.011111920811, + "r_y2": 436.1879515077147, + "r_x3": 108.00000040046937, + "r_y3": 436.1879515077147, + "coord_origin": "TOPLEFT" + }, + "text": "machine combined IBM's Selectric typewriter with magnetic tape storage. It allowed ", + "orig": "machine combined IBM's Selectric typewriter with magnetic tape storage. It allowed ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 463.1519716009177, + "r_x1": 491.5230418225918, + "r_y1": 463.1519716009177, + "r_x2": 491.5230418225918, + "r_y2": 449.86795155500056, + "r_x3": 108.00000040046937, + "r_y3": 449.86795155500056, + "coord_origin": "TOPLEFT" + }, + "text": "users to record, edit, and replay typed content-an early example of digital text ", + "orig": "users to record, edit, and replay typed content-an early example of digital text ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 477.07196164903314, + "r_x1": 148.65236055121034, + "r_y1": 477.07196164903314, + "r_x2": 148.65236055121034, + "r_y2": 463.78793160311596, + "r_x3": 108.00000040046937, + "r_y3": 463.78793160311596, + "coord_origin": "TOPLEFT" + }, + "text": "storage. ", + "orig": "storage. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 IBM MT/ST (Magnetic Tape/Selectric Typewriter) : Introduced in 1964, this machine combined IBM's Selectric typewriter with magnetic tape storage. It allowed users to record, edit, and replay typed content-an early example of digital text storage." + }, + { + "label": "list_item", + "id": 3, + "page_no": 0, + "cluster": { + "id": 3, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 477.4679516504019, + "r": 497.51746184481954, + "b": 518.5919817925501, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9817657470703125, + "cells": [ + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 490.37756169502495, + "r_x1": 94.63680335091797, + "r_y1": 490.37756169502495, + "r_x2": 94.63680335091797, + "r_y2": 478.02957165234324, + "r_x3": 90.00000033372447, + "r_y3": 478.02957165234324, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 490.7519816963191, + "r_x1": 208.32721077248766, + "r_y1": 490.7519816963191, + "r_x2": 208.32721077248766, + "r_y2": 477.4679516504019, + "r_x3": 108.00000040046937, + "r_y3": 477.4679516504019, + "coord_origin": "TOPLEFT" + }, + "text": "Wang Laboratories", + "orig": "Wang Laboratories", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 208.3300807724983, + "r_y0": 490.7519816963191, + "r_x1": 496.9083318425608, + "r_y1": 490.7519816963191, + "r_x2": 496.9083318425608, + "r_y2": 477.4679516504019, + "r_x3": 208.3300807724983, + "r_y3": 477.4679516504019, + "coord_origin": "TOPLEFT" + }, + "text": ": In the 1970s, Wang introduced dedicated word processing ", + "orig": ": In the 1970s, Wang introduced dedicated word processing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 504.6719617444345, + "r_x1": 497.51746184481954, + "r_y1": 504.6719617444345, + "r_x2": 497.51746184481954, + "r_y2": 491.38794169851735, + "r_x3": 108.00000040046937, + "r_y3": 491.38794169851735, + "coord_origin": "TOPLEFT" + }, + "text": "machines. These devices, like the Wang 1200, featured small screens and floppy ", + "orig": "machines. These devices, like the Wang 1200, featured small screens and floppy ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 518.5919817925501, + "r_x1": 341.6191112667406, + "r_y1": 518.5919817925501, + "r_x2": 341.6191112667406, + "r_y2": 505.30795174663285, + "r_x3": 108.00000040046937, + "r_y3": 505.30795174663285, + "coord_origin": "TOPLEFT" + }, + "text": "disks, making them revolutionary for their time. ", + "orig": "disks, making them revolutionary for their time. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Wang Laboratories : In the 1970s, Wang introduced dedicated word processing machines. These devices, like the Wang 1200, featured small screens and floppy disks, making them revolutionary for their time." + }, + { + "label": "text", + "id": 7, + "page_no": 0, + "cluster": { + "id": 7, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 532.9079618420342, + "r": 514.4709519076839, + "b": 560.3519619368964, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9792535305023193, + "cells": [ + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 546.1919518879513, + "r_x1": 514.4709519076839, + "r_y1": 546.1919518879513, + "r_x2": 514.4709519076839, + "r_y2": 532.9079618420342, + "r_x3": 72.00000026697958, + "r_y3": 532.9079618420342, + "coord_origin": "TOPLEFT" + }, + "text": "These machines were primarily used in offices, where secretarial pools benefited from their ", + "orig": "These machines were primarily used in offices, where secretarial pools benefited from their ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 28, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 560.3519619368964, + "r_x1": 364.2772813507583, + "r_y1": 560.3519619368964, + "r_x2": 364.2772813507583, + "r_y2": 547.0679318909793, + "r_x3": 72.00000026697958, + "r_y3": 547.0679318909793, + "coord_origin": "TOPLEFT" + }, + "text": "ability to make revisions without retyping entire documents. ", + "orig": "ability to make revisions without retyping entire documents. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "These machines were primarily used in offices, where secretarial pools benefited from their ability to make revisions without retyping entire documents." + }, + { + "label": "section_header", + "id": 10, + "page_no": 0, + "cluster": { + "id": 10, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 602.6649120831541, + "r": 306.7123111373045, + "b": 617.5429721345812, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.950114905834198, + "cells": [ + { + "index": 29, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 617.5429721345812, + "r_x1": 306.7123111373045, + "r_y1": 617.5429721345812, + "r_x2": 306.7123111373045, + "r_y2": 602.6649120831541, + "r_x3": 72.00000026697958, + "r_y3": 602.6649120831541, + "coord_origin": "TOPLEFT" + }, + "text": "The Rise of Personal Computers (1980s) ", + "orig": "The Rise of Personal Computers (1980s) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The Rise of Personal Computers (1980s)" + }, + { + "label": "text", + "id": 9, + "page_no": 0, + "cluster": { + "id": 9, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 631.7879321838199, + "r": 515.5663519117458, + "b": 659.2319622786822, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9778240919113159, + "cells": [ + { + "index": 30, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 645.0719622297371, + "r_x1": 487.8694518090441, + "r_y1": 645.0719622297371, + "r_x2": 487.8694518090441, + "r_y2": 631.7879321838199, + "r_x3": 72.00000026697958, + "r_y3": 631.7879321838199, + "coord_origin": "TOPLEFT" + }, + "text": "The advent of personal computers in the late 1970s and early 1980s transformed word ", + "orig": "The advent of personal computers in the late 1970s and early 1980s transformed word ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 31, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 659.2319622786822, + "r_x1": 515.5663519117458, + "r_y1": 659.2319622786822, + "r_x2": 515.5663519117458, + "r_y2": 645.947932232765, + "r_x3": 72.00000026697958, + "r_y3": 645.947932232765, + "coord_origin": "TOPLEFT" + }, + "text": "processing from a niche tool to an essential technology for businesses and individuals alike. ", + "orig": "processing from a niche tool to an essential technology for businesses and individuals alike. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The advent of personal computers in the late 1970s and early 1980s transformed word processing from a niche tool to an essential technology for businesses and individuals alike." + }, + { + "label": "list_item", + "id": 8, + "page_no": 0, + "cluster": { + "id": 8, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 673.5479423281663, + "r": 522.527771937559, + "b": 714.4319424694847, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9782076478004456, + "cells": [ + { + "index": 32, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 686.4575523727893, + "r_x1": 94.63680335091797, + "r_y1": 686.4575523727893, + "r_x2": 94.63680335091797, + "r_y2": 674.1095623301076, + "r_x3": 90.00000033372447, + "r_y3": 674.1095623301076, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 33, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 686.8319723740835, + "r_x1": 194.98799072302515, + "r_y1": 686.8319723740835, + "r_x2": 194.98799072302515, + "r_y2": 673.5479423281663, + "r_x3": 108.00000040046937, + "r_y3": 673.5479423281663, + "coord_origin": "TOPLEFT" + }, + "text": "WordStar (1978)", + "orig": "WordStar (1978)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 34, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 194.98828072302624, + "r_y0": 686.8319723740835, + "r_x1": 514.9152819093315, + "r_y1": 686.8319723740835, + "r_x2": 514.9152819093315, + "r_y2": 673.5479423281663, + "r_x3": 194.98828072302624, + "r_y3": 673.5479423281663, + "coord_origin": "TOPLEFT" + }, + "text": ": Developed for the CP/M operating system, WordStar was one of ", + "orig": ": Developed for the CP/M operating system, WordStar was one of ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 35, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 700.5119624213694, + "r_x1": 522.527771937559, + "r_y1": 700.5119624213694, + "r_x2": 522.527771937559, + "r_y2": 687.2279323754522, + "r_x3": 108.00000040046937, + "r_y3": 687.2279323754522, + "coord_origin": "TOPLEFT" + }, + "text": "the first widely used word processing programs. It featured early examples of modern ", + "orig": "the first widely used word processing programs. It featured early examples of modern ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 36, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 714.4319424694847, + "r_x1": 270.9374410046495, + "r_y1": 714.4319424694847, + "r_x2": 270.9374410046495, + "r_y2": 701.1479524235677, + "r_x3": 108.00000040046937, + "r_y3": 701.1479524235677, + "coord_origin": "TOPLEFT" + }, + "text": "features like cut, copy, and paste. ", + "orig": "features like cut, copy, and paste. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 WordStar (1978) : Developed for the CP/M operating system, WordStar was one of the first widely used word processing programs. It featured early examples of modern features like cut, copy, and paste." + }, + { + "label": "list_item", + "id": 5, + "page_no": 0, + "cluster": { + "id": 5, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 714.8279424708536, + "r": 525.2570219476792, + "b": 755.9519646130017, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9797734618186951, + "cells": [ + { + "index": 37, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 727.7375525154766, + "r_x1": 94.63680335091797, + "r_y1": 727.7375525154766, + "r_x2": 94.63680335091797, + "r_y2": 715.3895824727949, + "r_x3": 90.00000033372447, + "r_y3": 715.3895824727949, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 38, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 728.1119425167707, + "r_x1": 225.9647808378886, + "r_y1": 728.1119425167707, + "r_x2": 225.9647808378886, + "r_y2": 714.8279424708536, + "r_x3": 108.00000040046937, + "r_y3": 714.8279424708536, + "coord_origin": "TOPLEFT" + }, + "text": "Microsoft Word (1983)", + "orig": "Microsoft Word (1983)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 39, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 225.96680083789616, + "r_y0": 728.1119425167707, + "r_x1": 525.2570219476792, + "r_y1": 728.1119425167707, + "r_x2": 525.2570219476792, + "r_y2": 714.8279424708536, + "r_x3": 225.96680083789616, + "r_y3": 714.8279424708536, + "coord_origin": "TOPLEFT" + }, + "text": ": Microsoft launched Word for MS-DOS in 1983, introducing ", + "orig": ": Microsoft launched Word for MS-DOS in 1983, introducing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 40, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 742.0319825648862, + "r_x1": 517.5070819189419, + "r_y1": 742.0319825648862, + "r_x2": 517.5070819189419, + "r_y2": 728.747922518969, + "r_x3": 108.00000040046937, + "r_y3": 728.747922518969, + "coord_origin": "TOPLEFT" + }, + "text": "a graphical user interface (GUI) and mouse support. Over the years, Microsoft Word ", + "orig": "a graphical user interface (GUI) and mouse support. Over the years, Microsoft Word ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 41, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 755.9519646130017, + "r_x1": 353.26175130991214, + "r_y1": 755.9519646130017, + "r_x2": 353.26175130991214, + "r_y2": 742.6679685670846, + "r_x3": 108.00000040046937, + "r_y3": 742.6679685670846, + "coord_origin": "TOPLEFT" + }, + "text": "became the industry standard for word processing. ", + "orig": "became the industry standard for word processing. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Microsoft Word (1983) : Microsoft launched Word for MS-DOS in 1983, introducing a graphical user interface (GUI) and mouse support. Over the years, Microsoft Word became the industry standard for word processing." + } + ], + "body": [ + { + "label": "section_header", + "id": 13, + "page_no": 0, + "cluster": { + "id": 13, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 72.58795025090546, + "r": 262.98718097516957, + "b": 85.87195029682243, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9216852784156799, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 85.87195029682243, + "r_x1": 262.98718097516957, + "r_y1": 85.87195029682243, + "r_x2": 262.98718097516957, + "r_y2": 72.58795025090546, + "r_x3": 72.00000026697958, + "r_y3": 72.58795025090546, + "coord_origin": "TOPLEFT" + }, + "text": "The Evolution of the Word Processor", + "orig": "The Evolution of the Word Processor", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The Evolution of the Word Processor" + }, + { + "label": "text", + "id": 6, + "page_no": 0, + "cluster": { + "id": 6, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 100.18799034630695, + "r": 497.51987184482846, + "b": 127.39196044033929, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9795150756835938, + "cells": [ + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 113.47198039222405, + "r_x1": 497.51987184482846, + "r_y1": 113.47198039222405, + "r_x2": 497.51987184482846, + "r_y2": 100.18799034630695, + "r_x3": 72.00000026697958, + "r_y3": 100.18799034630695, + "coord_origin": "TOPLEFT" + }, + "text": "The concept of the word processor predates modern computers and has evolved through ", + "orig": "The concept of the word processor predates modern computers and has evolved through ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 127.39196044033929, + "r_x1": 233.94727086748813, + "r_y1": 127.39196044033929, + "r_x2": 233.94727086748813, + "r_y2": 114.10797039442241, + "r_x3": 72.00000026697958, + "r_y3": 114.10797039442241, + "coord_origin": "TOPLEFT" + }, + "text": "several technological milestones. ", + "orig": "several technological milestones. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The concept of the word processor predates modern computers and has evolved through several technological milestones." + }, + { + "label": "section_header", + "id": 11, + "page_no": 0, + "cluster": { + "id": 11, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 142.1049204911958, + "r": 325.8153412081395, + "b": 156.98303054262306, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9472767114639282, + "cells": [ + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 156.98303054262306, + "r_x1": 325.8153412081395, + "r_y1": 156.98303054262306, + "r_x2": 325.8153412081395, + "r_y2": 142.1049204911958, + "r_x3": 72.00000026697958, + "r_y3": 142.1049204911958, + "coord_origin": "TOPLEFT" + }, + "text": "Pre-Digital Era (19th - Early 20th Century) ", + "orig": "Pre-Digital Era (19th - Early 20th Century) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "Pre-Digital Era (19th - Early 20th Century)" + }, + { + "label": "text", + "id": 0, + "page_no": 0, + "cluster": { + "id": 0, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 171.2279605918617, + "r": 508.1806618843591, + "b": 226.2719707821251, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.986640989780426, + "cells": [ + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 184.51196063777877, + "r_x1": 508.1806618843591, + "r_y1": 184.51196063777877, + "r_x2": 508.1806618843591, + "r_y2": 171.2279605918617, + "r_x3": 72.00000026697958, + "r_y3": 171.2279605918617, + "coord_origin": "TOPLEFT" + }, + "text": "The origins of word processing can be traced back to the invention of the typewriter in the ", + "orig": "The origins of word processing can be traced back to the invention of the typewriter in the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 198.43194068589423, + "r_x1": 466.9111617313298, + "r_y1": 198.43194068589423, + "r_x2": 466.9111617313298, + "r_y2": 185.14795063997713, + "r_x3": 72.00000026697958, + "r_y3": 185.14795063997713, + "coord_origin": "TOPLEFT" + }, + "text": "mid-19th century. Patented in 1868 by Christopher Latham Sholes, the typewriter ", + "orig": "mid-19th century. Patented in 1868 by Christopher Latham Sholes, the typewriter ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 212.11194073318006, + "r_x1": 507.5440418819985, + "r_y1": 212.11194073318006, + "r_x2": 507.5440418819985, + "r_y2": 198.82794068726287, + "r_x3": 72.00000026697958, + "r_y3": 198.82794068726287, + "coord_origin": "TOPLEFT" + }, + "text": "revolutionized written communication by enabling people to produce legible, professional ", + "orig": "revolutionized written communication by enabling people to produce legible, professional ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 226.2719707821251, + "r_x1": 294.60361109240483, + "r_y1": 226.2719707821251, + "r_x2": 294.60361109240483, + "r_y2": 212.987970736208, + "r_x3": 72.00000026697958, + "r_y3": 212.987970736208, + "coord_origin": "TOPLEFT" + }, + "text": "documents more efficiently than handwriting. ", + "orig": "documents more efficiently than handwriting. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The origins of word processing can be traced back to the invention of the typewriter in the mid-19th century. Patented in 1868 by Christopher Latham Sholes, the typewriter revolutionized written communication by enabling people to produce legible, professional documents more efficiently than handwriting." + }, + { + "label": "text", + "id": 2, + "page_no": 0, + "cluster": { + "id": 2, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 240.3479608307798, + "r": 504.5038518707254, + "b": 295.39196102104336, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9847150444984436, + "cells": [ + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 253.6319608766969, + "r_x1": 485.8655118016134, + "r_y1": 253.6319608766969, + "r_x2": 485.8655118016134, + "r_y2": 240.3479608307798, + "r_x3": 72.00000026697958, + "r_y3": 240.3479608307798, + "coord_origin": "TOPLEFT" + }, + "text": "During this period, the term \"word processing\" didn't exist, but the typewriter laid the ", + "orig": "During this period, the term \"word processing\" didn't exist, but the typewriter laid the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 267.55194092481236, + "r_x1": 504.5038518707254, + "r_y1": 267.55194092481236, + "r_x2": 504.5038518707254, + "r_y2": 254.26794087889516, + "r_x3": 72.00000026697958, + "r_y3": 254.26794087889516, + "coord_origin": "TOPLEFT" + }, + "text": "groundwork for future developments. Over time, advancements such as carbon paper (for ", + "orig": "groundwork for future developments. Over time, advancements such as carbon paper (for ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 281.2319909720984, + "r_x1": 497.86462184610673, + "r_y1": 281.2319909720984, + "r_x2": 497.86462184610673, + "r_y2": 267.94793092618113, + "r_x3": 72.00000026697958, + "r_y3": 267.94793092618113, + "coord_origin": "TOPLEFT" + }, + "text": "copies) and the electric typewriter (introduced by IBM in 1935) improved the speed and ", + "orig": "copies) and the electric typewriter (introduced by IBM in 1935) improved the speed and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 295.39196102104336, + "r_x1": 242.92383090077365, + "r_y1": 295.39196102104336, + "r_x2": 242.92383090077365, + "r_y2": 282.10797097512625, + "r_x3": 72.00000026697958, + "r_y3": 282.10797097512625, + "coord_origin": "TOPLEFT" + }, + "text": "convenience of document creation. ", + "orig": "convenience of document creation. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "During this period, the term \"word processing\" didn't exist, but the typewriter laid the groundwork for future developments. Over time, advancements such as carbon paper (for copies) and the electric typewriter (introduced by IBM in 1935) improved the speed and convenience of document creation." + }, + { + "label": "section_header", + "id": 12, + "page_no": 0, + "cluster": { + "id": 12, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 337.7049211673011, + "r": 336.7180512485673, + "b": 352.5830012187282, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9312856793403625, + "cells": [ + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 352.5830012187282, + "r_x1": 336.7180512485673, + "r_y1": 352.5830012187282, + "r_x2": 336.7180512485673, + "r_y2": 337.7049211673011, + "r_x3": 72.00000026697958, + "r_y3": 337.7049211673011, + "coord_origin": "TOPLEFT" + }, + "text": "The Birth of Word Processing (1960s - 1970s) ", + "orig": "The Birth of Word Processing (1960s - 1970s) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The Birth of Word Processing (1960s - 1970s)" + }, + { + "label": "text", + "id": 1, + "page_no": 0, + "cluster": { + "id": 1, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 367.0679612687965, + "r": 523.1927519400248, + "b": 408.19195141094445, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9855563044548035, + "cells": [ + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 380.3519613147136, + "r_x1": 521.6542419343198, + "r_y1": 380.3519613147136, + "r_x2": 521.6542419343198, + "r_y2": 367.0679612687965, + "r_x3": 72.00000026697958, + "r_y3": 367.0679612687965, + "coord_origin": "TOPLEFT" + }, + "text": "The term \"word processor\" first emerged in the 1960s and referred to any system designed to ", + "orig": "The term \"word processor\" first emerged in the 1960s and referred to any system designed to ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 394.0319513619994, + "r_x1": 523.1927519400248, + "r_y1": 394.0319513619994, + "r_x2": 523.1927519400248, + "r_y2": 380.7479813160824, + "r_x3": 72.00000026697958, + "r_y3": 380.7479813160824, + "coord_origin": "TOPLEFT" + }, + "text": "streamline written communication and document production. Early word processors were not ", + "orig": "streamline written communication and document production. Early word processors were not ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 408.19195141094445, + "r_x1": 319.5820911850263, + "r_y1": 408.19195141094445, + "r_x2": 319.5820911850263, + "r_y2": 394.9079613650274, + "r_x3": 72.00000026697958, + "r_y3": 394.9079613650274, + "coord_origin": "TOPLEFT" + }, + "text": "software programs but rather standalone machines. ", + "orig": "software programs but rather standalone machines. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The term \"word processor\" first emerged in the 1960s and referred to any system designed to streamline written communication and document production. Early word processors were not software programs but rather standalone machines." + }, + { + "label": "list_item", + "id": 4, + "page_no": 0, + "cluster": { + "id": 4, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 422.2679414595992, + "r": 518.011111920811, + "b": 477.07196164903314, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9806972742080688, + "cells": [ + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 435.1775515042221, + "r_x1": 94.63680335091797, + "r_y1": 435.1775515042221, + "r_x2": 94.63680335091797, + "r_y2": 422.8295614615404, + "r_x3": 90.00000033372447, + "r_y3": 422.8295614615404, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 435.55194150551625, + "r_x1": 368.59430136676593, + "r_y1": 435.55194150551625, + "r_x2": 368.59430136676593, + "r_y2": 422.2679414595992, + "r_x3": 108.00000040046937, + "r_y3": 422.2679414595992, + "coord_origin": "TOPLEFT" + }, + "text": "IBM MT/ST (Magnetic Tape/Selectric Typewriter)", + "orig": "IBM MT/ST (Magnetic Tape/Selectric Typewriter)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 368.601591366793, + "r_y0": 435.55194150551625, + "r_x1": 492.58316182652294, + "r_y1": 435.55194150551625, + "r_x2": 492.58316182652294, + "r_y2": 422.2679414595992, + "r_x3": 368.601591366793, + "r_y3": 422.2679414595992, + "coord_origin": "TOPLEFT" + }, + "text": ": Introduced in 1964, this ", + "orig": ": Introduced in 1964, this ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 449.47198155363185, + "r_x1": 518.011111920811, + "r_y1": 449.47198155363185, + "r_x2": 518.011111920811, + "r_y2": 436.1879515077147, + "r_x3": 108.00000040046937, + "r_y3": 436.1879515077147, + "coord_origin": "TOPLEFT" + }, + "text": "machine combined IBM's Selectric typewriter with magnetic tape storage. It allowed ", + "orig": "machine combined IBM's Selectric typewriter with magnetic tape storage. It allowed ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 463.1519716009177, + "r_x1": 491.5230418225918, + "r_y1": 463.1519716009177, + "r_x2": 491.5230418225918, + "r_y2": 449.86795155500056, + "r_x3": 108.00000040046937, + "r_y3": 449.86795155500056, + "coord_origin": "TOPLEFT" + }, + "text": "users to record, edit, and replay typed content-an early example of digital text ", + "orig": "users to record, edit, and replay typed content-an early example of digital text ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 477.07196164903314, + "r_x1": 148.65236055121034, + "r_y1": 477.07196164903314, + "r_x2": 148.65236055121034, + "r_y2": 463.78793160311596, + "r_x3": 108.00000040046937, + "r_y3": 463.78793160311596, + "coord_origin": "TOPLEFT" + }, + "text": "storage. ", + "orig": "storage. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 IBM MT/ST (Magnetic Tape/Selectric Typewriter) : Introduced in 1964, this machine combined IBM's Selectric typewriter with magnetic tape storage. It allowed users to record, edit, and replay typed content-an early example of digital text storage." + }, + { + "label": "list_item", + "id": 3, + "page_no": 0, + "cluster": { + "id": 3, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 477.4679516504019, + "r": 497.51746184481954, + "b": 518.5919817925501, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9817657470703125, + "cells": [ + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 490.37756169502495, + "r_x1": 94.63680335091797, + "r_y1": 490.37756169502495, + "r_x2": 94.63680335091797, + "r_y2": 478.02957165234324, + "r_x3": 90.00000033372447, + "r_y3": 478.02957165234324, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 490.7519816963191, + "r_x1": 208.32721077248766, + "r_y1": 490.7519816963191, + "r_x2": 208.32721077248766, + "r_y2": 477.4679516504019, + "r_x3": 108.00000040046937, + "r_y3": 477.4679516504019, + "coord_origin": "TOPLEFT" + }, + "text": "Wang Laboratories", + "orig": "Wang Laboratories", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 208.3300807724983, + "r_y0": 490.7519816963191, + "r_x1": 496.9083318425608, + "r_y1": 490.7519816963191, + "r_x2": 496.9083318425608, + "r_y2": 477.4679516504019, + "r_x3": 208.3300807724983, + "r_y3": 477.4679516504019, + "coord_origin": "TOPLEFT" + }, + "text": ": In the 1970s, Wang introduced dedicated word processing ", + "orig": ": In the 1970s, Wang introduced dedicated word processing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 504.6719617444345, + "r_x1": 497.51746184481954, + "r_y1": 504.6719617444345, + "r_x2": 497.51746184481954, + "r_y2": 491.38794169851735, + "r_x3": 108.00000040046937, + "r_y3": 491.38794169851735, + "coord_origin": "TOPLEFT" + }, + "text": "machines. These devices, like the Wang 1200, featured small screens and floppy ", + "orig": "machines. These devices, like the Wang 1200, featured small screens and floppy ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 518.5919817925501, + "r_x1": 341.6191112667406, + "r_y1": 518.5919817925501, + "r_x2": 341.6191112667406, + "r_y2": 505.30795174663285, + "r_x3": 108.00000040046937, + "r_y3": 505.30795174663285, + "coord_origin": "TOPLEFT" + }, + "text": "disks, making them revolutionary for their time. ", + "orig": "disks, making them revolutionary for their time. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Wang Laboratories : In the 1970s, Wang introduced dedicated word processing machines. These devices, like the Wang 1200, featured small screens and floppy disks, making them revolutionary for their time." + }, + { + "label": "text", + "id": 7, + "page_no": 0, + "cluster": { + "id": 7, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 532.9079618420342, + "r": 514.4709519076839, + "b": 560.3519619368964, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9792535305023193, + "cells": [ + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 546.1919518879513, + "r_x1": 514.4709519076839, + "r_y1": 546.1919518879513, + "r_x2": 514.4709519076839, + "r_y2": 532.9079618420342, + "r_x3": 72.00000026697958, + "r_y3": 532.9079618420342, + "coord_origin": "TOPLEFT" + }, + "text": "These machines were primarily used in offices, where secretarial pools benefited from their ", + "orig": "These machines were primarily used in offices, where secretarial pools benefited from their ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 28, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 560.3519619368964, + "r_x1": 364.2772813507583, + "r_y1": 560.3519619368964, + "r_x2": 364.2772813507583, + "r_y2": 547.0679318909793, + "r_x3": 72.00000026697958, + "r_y3": 547.0679318909793, + "coord_origin": "TOPLEFT" + }, + "text": "ability to make revisions without retyping entire documents. ", + "orig": "ability to make revisions without retyping entire documents. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "These machines were primarily used in offices, where secretarial pools benefited from their ability to make revisions without retyping entire documents." + }, + { + "label": "section_header", + "id": 10, + "page_no": 0, + "cluster": { + "id": 10, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 602.6649120831541, + "r": 306.7123111373045, + "b": 617.5429721345812, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.950114905834198, + "cells": [ + { + "index": 29, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 617.5429721345812, + "r_x1": 306.7123111373045, + "r_y1": 617.5429721345812, + "r_x2": 306.7123111373045, + "r_y2": 602.6649120831541, + "r_x3": 72.00000026697958, + "r_y3": 602.6649120831541, + "coord_origin": "TOPLEFT" + }, + "text": "The Rise of Personal Computers (1980s) ", + "orig": "The Rise of Personal Computers (1980s) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The Rise of Personal Computers (1980s)" + }, + { + "label": "text", + "id": 9, + "page_no": 0, + "cluster": { + "id": 9, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 631.7879321838199, + "r": 515.5663519117458, + "b": 659.2319622786822, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9778240919113159, + "cells": [ + { + "index": 30, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 645.0719622297371, + "r_x1": 487.8694518090441, + "r_y1": 645.0719622297371, + "r_x2": 487.8694518090441, + "r_y2": 631.7879321838199, + "r_x3": 72.00000026697958, + "r_y3": 631.7879321838199, + "coord_origin": "TOPLEFT" + }, + "text": "The advent of personal computers in the late 1970s and early 1980s transformed word ", + "orig": "The advent of personal computers in the late 1970s and early 1980s transformed word ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 31, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 659.2319622786822, + "r_x1": 515.5663519117458, + "r_y1": 659.2319622786822, + "r_x2": 515.5663519117458, + "r_y2": 645.947932232765, + "r_x3": 72.00000026697958, + "r_y3": 645.947932232765, + "coord_origin": "TOPLEFT" + }, + "text": "processing from a niche tool to an essential technology for businesses and individuals alike. ", + "orig": "processing from a niche tool to an essential technology for businesses and individuals alike. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The advent of personal computers in the late 1970s and early 1980s transformed word processing from a niche tool to an essential technology for businesses and individuals alike." + }, + { + "label": "list_item", + "id": 8, + "page_no": 0, + "cluster": { + "id": 8, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 673.5479423281663, + "r": 522.527771937559, + "b": 714.4319424694847, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9782076478004456, + "cells": [ + { + "index": 32, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 686.4575523727893, + "r_x1": 94.63680335091797, + "r_y1": 686.4575523727893, + "r_x2": 94.63680335091797, + "r_y2": 674.1095623301076, + "r_x3": 90.00000033372447, + "r_y3": 674.1095623301076, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 33, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 686.8319723740835, + "r_x1": 194.98799072302515, + "r_y1": 686.8319723740835, + "r_x2": 194.98799072302515, + "r_y2": 673.5479423281663, + "r_x3": 108.00000040046937, + "r_y3": 673.5479423281663, + "coord_origin": "TOPLEFT" + }, + "text": "WordStar (1978)", + "orig": "WordStar (1978)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 34, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 194.98828072302624, + "r_y0": 686.8319723740835, + "r_x1": 514.9152819093315, + "r_y1": 686.8319723740835, + "r_x2": 514.9152819093315, + "r_y2": 673.5479423281663, + "r_x3": 194.98828072302624, + "r_y3": 673.5479423281663, + "coord_origin": "TOPLEFT" + }, + "text": ": Developed for the CP/M operating system, WordStar was one of ", + "orig": ": Developed for the CP/M operating system, WordStar was one of ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 35, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 700.5119624213694, + "r_x1": 522.527771937559, + "r_y1": 700.5119624213694, + "r_x2": 522.527771937559, + "r_y2": 687.2279323754522, + "r_x3": 108.00000040046937, + "r_y3": 687.2279323754522, + "coord_origin": "TOPLEFT" + }, + "text": "the first widely used word processing programs. It featured early examples of modern ", + "orig": "the first widely used word processing programs. It featured early examples of modern ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 36, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 714.4319424694847, + "r_x1": 270.9374410046495, + "r_y1": 714.4319424694847, + "r_x2": 270.9374410046495, + "r_y2": 701.1479524235677, + "r_x3": 108.00000040046937, + "r_y3": 701.1479524235677, + "coord_origin": "TOPLEFT" + }, + "text": "features like cut, copy, and paste. ", + "orig": "features like cut, copy, and paste. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 WordStar (1978) : Developed for the CP/M operating system, WordStar was one of the first widely used word processing programs. It featured early examples of modern features like cut, copy, and paste." + }, + { + "label": "list_item", + "id": 5, + "page_no": 0, + "cluster": { + "id": 5, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 714.8279424708536, + "r": 525.2570219476792, + "b": 755.9519646130017, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9797734618186951, + "cells": [ + { + "index": 37, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 727.7375525154766, + "r_x1": 94.63680335091797, + "r_y1": 727.7375525154766, + "r_x2": 94.63680335091797, + "r_y2": 715.3895824727949, + "r_x3": 90.00000033372447, + "r_y3": 715.3895824727949, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 38, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 728.1119425167707, + "r_x1": 225.9647808378886, + "r_y1": 728.1119425167707, + "r_x2": 225.9647808378886, + "r_y2": 714.8279424708536, + "r_x3": 108.00000040046937, + "r_y3": 714.8279424708536, + "coord_origin": "TOPLEFT" + }, + "text": "Microsoft Word (1983)", + "orig": "Microsoft Word (1983)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 39, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 225.96680083789616, + "r_y0": 728.1119425167707, + "r_x1": 525.2570219476792, + "r_y1": 728.1119425167707, + "r_x2": 525.2570219476792, + "r_y2": 714.8279424708536, + "r_x3": 225.96680083789616, + "r_y3": 714.8279424708536, + "coord_origin": "TOPLEFT" + }, + "text": ": Microsoft launched Word for MS-DOS in 1983, introducing ", + "orig": ": Microsoft launched Word for MS-DOS in 1983, introducing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 40, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 742.0319825648862, + "r_x1": 517.5070819189419, + "r_y1": 742.0319825648862, + "r_x2": 517.5070819189419, + "r_y2": 728.747922518969, + "r_x3": 108.00000040046937, + "r_y3": 728.747922518969, + "coord_origin": "TOPLEFT" + }, + "text": "a graphical user interface (GUI) and mouse support. Over the years, Microsoft Word ", + "orig": "a graphical user interface (GUI) and mouse support. Over the years, Microsoft Word ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 41, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 755.9519646130017, + "r_x1": 353.26175130991214, + "r_y1": 755.9519646130017, + "r_x2": 353.26175130991214, + "r_y2": 742.6679685670846, + "r_x3": 108.00000040046937, + "r_y3": 742.6679685670846, + "coord_origin": "TOPLEFT" + }, + "text": "became the industry standard for word processing. ", + "orig": "became the industry standard for word processing. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Microsoft Word (1983) : Microsoft launched Word for MS-DOS in 1983, introducing a graphical user interface (GUI) and mouse support. Over the years, Microsoft Word became the industry standard for word processing." + } + ], + "headers": [] + } + }, + { + "page_no": 1, + "size": { + "width": 595.2000122070312, + "height": 841.9199829101562 + }, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 85.63196029599305, + "r_x1": 516.5014019152128, + "r_y1": 85.63196029599305, + "r_x2": 516.5014019152128, + "r_y2": 72.34796025007586, + "r_x3": 72.00000026697958, + "r_y3": 72.34796025007586, + "coord_origin": "TOPLEFT" + }, + "text": "Other notable software from this era included WordPerfect, which was popular among legal ", + "orig": "Other notable software from this era included WordPerfect, which was popular among legal ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 99.31195034327891, + "r_x1": 466.85745173113065, + "r_y1": 99.31195034327891, + "r_x2": 466.85745173113065, + "r_y2": 86.02795029736171, + "r_x3": 72.00000026697958, + "r_y3": 86.02795029736171, + "coord_origin": "TOPLEFT" + }, + "text": "professionals, and Apple\u2019s MacWrite, which leveraged the Macintosh\u2019s graphical ", + "orig": "professionals, and Apple\u2019s MacWrite, which leveraged the Macintosh\u2019s graphical ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 113.47198039222405, + "r_x1": 132.64452049185246, + "r_y1": 113.47198039222405, + "r_x2": 132.64452049185246, + "r_y2": 100.18799034630695, + "r_x3": 72.00000026697958, + "r_y3": 100.18799034630695, + "coord_origin": "TOPLEFT" + }, + "text": "capabilities. ", + "orig": "capabilities. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 170.6630205899088, + "r_x1": 272.1976610093225, + "r_y1": 170.6630205899088, + "r_x2": 272.1976610093225, + "r_y2": 155.78491053848165, + "r_x3": 72.00000026697958, + "r_y3": 155.78491053848165, + "coord_origin": "TOPLEFT" + }, + "text": "The Modern Era (1990s - Present) ", + "orig": "The Modern Era (1990s - Present) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 198.43194068589423, + "r_x1": 510.8733818943439, + "r_y1": 198.43194068589423, + "r_x2": 510.8733818943439, + "r_y2": 185.14795063997713, + "r_x3": 72.00000026697958, + "r_y3": 185.14795063997713, + "coord_origin": "TOPLEFT" + }, + "text": "By the 1990s, word processing software had become more sophisticated, with features like ", + "orig": "By the 1990s, word processing software had become more sophisticated, with features like ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 212.35199073400975, + "r_x1": 379.21872140616193, + "r_y1": 212.35199073400975, + "r_x2": 379.21872140616193, + "r_y2": 199.06799068809255, + "r_x3": 72.00000026697958, + "r_y3": 199.06799068809255, + "coord_origin": "TOPLEFT" + }, + "text": "spell check, grammar check, templates, and collaborative tools. ", + "orig": "spell check, grammar check, templates, and collaborative tools. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 239.5775708281169, + "r_x1": 94.63680335091797, + "r_y1": 239.5775708281169, + "r_x2": 94.63680335091797, + "r_y2": 227.2295507854351, + "r_x3": 90.00000033372447, + "r_y3": 227.2295507854351, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 239.95196082941106, + "r_x1": 221.28960082055283, + "r_y1": 239.95196082941106, + "r_x2": 221.28960082055283, + "r_y2": 226.66797078349396, + "r_x3": 108.00000040046937, + "r_y3": 226.66797078349396, + "coord_origin": "TOPLEFT" + }, + "text": "Microsoft Office Suite", + "orig": "Microsoft Office Suite", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 221.29102082055812, + "r_y0": 239.95196082941106, + "r_x1": 491.2357518215266, + "r_y1": 239.95196082941106, + "r_x2": 491.2357518215266, + "r_y2": 226.66797078349396, + "r_x3": 221.29102082055812, + "r_y3": 226.66797078349396, + "coord_origin": "TOPLEFT" + }, + "text": ": Microsoft continued to dominate with its Office Suite, ", + "orig": ": Microsoft continued to dominate with its Office Suite, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 253.6319608766969, + "r_x1": 466.9336917314133, + "r_y1": 253.6319608766969, + "r_x2": 466.9336917314133, + "r_y2": 240.3479608307798, + "r_x3": 108.00000040046937, + "r_y3": 240.3479608307798, + "coord_origin": "TOPLEFT" + }, + "text": "integrating Word with other productivity tools like Excel and PowerPoint. ", + "orig": "integrating Word with other productivity tools like Excel and PowerPoint. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 267.1775509235182, + "r_x1": 94.63680335091797, + "r_y1": 267.1775509235182, + "r_x2": 94.63680335091797, + "r_y2": 254.82959088083658, + "r_x3": 90.00000033372447, + "r_y3": 254.82959088083658, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 267.55194092481236, + "r_x1": 252.64317093681342, + "r_y1": 267.55194092481236, + "r_x2": 252.64317093681342, + "r_y2": 254.26794087889516, + "r_x3": 108.00000040046937, + "r_y3": 254.26794087889516, + "coord_origin": "TOPLEFT" + }, + "text": "OpenOffice and LibreOffice", + "orig": "OpenOffice and LibreOffice", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 252.6446409368189, + "r_y0": 267.55194092481236, + "r_x1": 517.5377819190559, + "r_y1": 267.55194092481236, + "r_x2": 517.5377819190559, + "r_y2": 254.26794087889516, + "r_x3": 252.6446409368189, + "r_y3": 254.26794087889516, + "coord_origin": "TOPLEFT" + }, + "text": ": Open-source alternatives emerged in the early 2000s, ", + "orig": ": Open-source alternatives emerged in the early 2000s, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 281.2319909720984, + "r_x1": 354.59183131484417, + "r_y1": 281.2319909720984, + "r_x2": 354.59183131484417, + "r_y2": 267.94793092618113, + "r_x3": 108.00000040046937, + "r_y3": 267.94793092618113, + "coord_origin": "TOPLEFT" + }, + "text": "offering free and flexible word processing options. ", + "orig": "offering free and flexible word processing options. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 294.7775810189197, + "r_x1": 94.63680335091797, + "r_y1": 294.7775810189197, + "r_x2": 94.63680335091797, + "r_y2": 282.4295609762379, + "r_x3": 90.00000033372447, + "r_y3": 282.4295609762379, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 295.15197102021375, + "r_x1": 206.64719076625803, + "r_y1": 295.15197102021375, + "r_x2": 206.64719076625803, + "r_y2": 281.86798097429676, + "r_x3": 108.00000040046937, + "r_y3": 281.86798097429676, + "coord_origin": "TOPLEFT" + }, + "text": "Google Docs (2006)", + "orig": "Google Docs (2006)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 206.64845076626273, + "r_y0": 295.15197102021375, + "r_x1": 524.5618919451015, + "r_y1": 295.15197102021375, + "r_x2": 524.5618919451015, + "r_y2": 281.86798097429676, + "r_x3": 206.64845076626273, + "r_y3": 281.86798097429676, + "coord_origin": "TOPLEFT" + }, + "text": ": The introduction of cloud-based word processing revolutionized ", + "orig": ": The introduction of cloud-based word processing revolutionized ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 308.8319710674996, + "r_x1": 515.8681019128646, + "r_y1": 308.8319710674996, + "r_x2": 515.8681019128646, + "r_y2": 295.5479710215825, + "r_x3": 108.00000040046937, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": "collaboration. Google Docs enabled real-time editing and sharing, making it a staple ", + "orig": "collaboration. Google Docs enabled real-time editing and sharing, making it a staple ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 322.99194111644454, + "r_x1": 243.2870309021204, + "r_y1": 322.99194111644454, + "r_x2": 243.2870309021204, + "r_y2": 309.70794107052745, + "r_x3": 108.00000040046937, + "r_y3": 309.70794107052745, + "coord_origin": "TOPLEFT" + }, + "text": "for teams and remote work. ", + "orig": "for teams and remote work. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 380.18298131412945, + "r_x1": 231.71083085919528, + "r_y1": 380.18298131412945, + "r_x2": 231.71083085919528, + "r_y2": 365.30493126270244, + "r_x3": 72.00000026697958, + "r_y3": 365.30493126270244, + "coord_origin": "TOPLEFT" + }, + "text": "Future of Word Processing ", + "orig": "Future of Word Processing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 407.95196141011496, + "r_x1": 475.5335117633018, + "r_y1": 407.95196141011496, + "r_x2": 475.5335117633018, + "r_y2": 394.6679713641979, + "r_x3": 72.00000026697958, + "r_y3": 394.6679713641979, + "coord_origin": "TOPLEFT" + }, + "text": "Today, word processors are more than just tools for typing. They integrate artificial ", + "orig": "Today, word processors are more than just tools for typing. They integrate artificial ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 421.6319614574008, + "r_x1": 520.5078119300688, + "r_y1": 421.6319614574008, + "r_x2": 520.5078119300688, + "r_y2": 408.3479614114837, + "r_x3": 72.00000026697958, + "r_y3": 408.3479614114837, + "coord_origin": "TOPLEFT" + }, + "text": "intelligence for grammar and style suggestions (e.g., Grammarly), voice-to-text features, and ", + "orig": "intelligence for grammar and style suggestions (e.g., Grammarly), voice-to-text features, and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 435.55194150551625, + "r_x1": 520.5438819302025, + "r_y1": 435.55194150551625, + "r_x2": 520.5438819302025, + "r_y2": 422.2679414595992, + "r_x3": 72.00000026697958, + "r_y3": 422.2679414595992, + "coord_origin": "TOPLEFT" + }, + "text": "advanced layout options. As AI continues to advance, word processors may evolve into even ", + "orig": "advanced layout options. As AI continues to advance, word processors may evolve into even ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 449.2319915528023, + "r_x1": 498.19421184732886, + "r_y1": 449.2319915528023, + "r_x2": 498.19421184732886, + "r_y2": 435.9479615068851, + "r_x3": 72.00000026697958, + "r_y3": 435.9479615068851, + "coord_origin": "TOPLEFT" + }, + "text": "more intuitive tools that predict user needs, automate repetitive tasks, and support richer ", + "orig": "more intuitive tools that predict user needs, automate repetitive tasks, and support richer ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 463.3919616017472, + "r_x1": 187.64061069578074, + "r_y1": 463.3919616017472, + "r_x2": 187.64061069578074, + "r_y2": 450.1079715558302, + "r_x3": 72.00000026697958, + "r_y3": 450.1079715558302, + "coord_origin": "TOPLEFT" + }, + "text": "multimedia integration. ", + "orig": "multimedia integration. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 518.8319717933796, + "r_x1": 515.5564019117089, + "r_y1": 518.8319717933796, + "r_x2": 515.5564019117089, + "r_y2": 505.54794174746235, + "r_x3": 72.00000026697958, + "r_y3": 505.54794174746235, + "coord_origin": "TOPLEFT" + }, + "text": "From the clunky typewriters of the 19th century to the AI-powered cloud tools of today, the ", + "orig": "From the clunky typewriters of the 19th century to the AI-powered cloud tools of today, the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 532.5119618406654, + "r_x1": 501.86630186094516, + "r_y1": 532.5119618406654, + "r_x2": 501.86630186094516, + "r_y2": 519.2279317947482, + "r_x3": 72.00000026697958, + "r_y3": 519.2279317947482, + "coord_origin": "TOPLEFT" + }, + "text": "word processor has come a long way. It remains an essential tool for communication and ", + "orig": "word processor has come a long way. It remains an essential tool for communication and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 546.4319718887809, + "r_x1": 311.25577115415183, + "r_y1": 546.4319718887809, + "r_x2": 311.25577115415183, + "r_y2": 533.1479518428639, + "r_x3": 72.00000026697958, + "r_y3": 533.1479518428639, + "coord_origin": "TOPLEFT" + }, + "text": "creativity, shaping how we write and share ideas. ", + "orig": "creativity, shaping how we write and share ideas. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "parsed_page": null, + "predictions": { + "layout": { + "clusters": [ + { + "id": 2, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 72.34796025007586, + "r": 516.5014019152128, + "b": 113.47198039222405, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9813448190689087, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 85.63196029599305, + "r_x1": 516.5014019152128, + "r_y1": 85.63196029599305, + "r_x2": 516.5014019152128, + "r_y2": 72.34796025007586, + "r_x3": 72.00000026697958, + "r_y3": 72.34796025007586, + "coord_origin": "TOPLEFT" + }, + "text": "Other notable software from this era included WordPerfect, which was popular among legal ", + "orig": "Other notable software from this era included WordPerfect, which was popular among legal ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 99.31195034327891, + "r_x1": 466.85745173113065, + "r_y1": 99.31195034327891, + "r_x2": 466.85745173113065, + "r_y2": 86.02795029736171, + "r_x3": 72.00000026697958, + "r_y3": 86.02795029736171, + "coord_origin": "TOPLEFT" + }, + "text": "professionals, and Apple\u2019s MacWrite, which leveraged the Macintosh\u2019s graphical ", + "orig": "professionals, and Apple\u2019s MacWrite, which leveraged the Macintosh\u2019s graphical ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 113.47198039222405, + "r_x1": 132.64452049185246, + "r_y1": 113.47198039222405, + "r_x2": 132.64452049185246, + "r_y2": 100.18799034630695, + "r_x3": 72.00000026697958, + "r_y3": 100.18799034630695, + "coord_origin": "TOPLEFT" + }, + "text": "capabilities. ", + "orig": "capabilities. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 8, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 155.78491053848165, + "r": 272.1976610093225, + "b": 170.6630205899088, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9389315843582153, + "cells": [ + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 170.6630205899088, + "r_x1": 272.1976610093225, + "r_y1": 170.6630205899088, + "r_x2": 272.1976610093225, + "r_y2": 155.78491053848165, + "r_x3": 72.00000026697958, + "r_y3": 155.78491053848165, + "coord_origin": "TOPLEFT" + }, + "text": "The Modern Era (1990s - Present) ", + "orig": "The Modern Era (1990s - Present) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 3, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 185.14795063997713, + "r": 510.8733818943439, + "b": 212.35199073400975, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9798638820648193, + "cells": [ + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 198.43194068589423, + "r_x1": 510.8733818943439, + "r_y1": 198.43194068589423, + "r_x2": 510.8733818943439, + "r_y2": 185.14795063997713, + "r_x3": 72.00000026697958, + "r_y3": 185.14795063997713, + "coord_origin": "TOPLEFT" + }, + "text": "By the 1990s, word processing software had become more sophisticated, with features like ", + "orig": "By the 1990s, word processing software had become more sophisticated, with features like ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 212.35199073400975, + "r_x1": 379.21872140616193, + "r_y1": 212.35199073400975, + "r_x2": 379.21872140616193, + "r_y2": 199.06799068809255, + "r_x3": 72.00000026697958, + "r_y3": 199.06799068809255, + "coord_origin": "TOPLEFT" + }, + "text": "spell check, grammar check, templates, and collaborative tools. ", + "orig": "spell check, grammar check, templates, and collaborative tools. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 6, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 226.66797078349396, + "r": 491.2357518215266, + "b": 253.6319608766969, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.968998372554779, + "cells": [ + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 239.5775708281169, + "r_x1": 94.63680335091797, + "r_y1": 239.5775708281169, + "r_x2": 94.63680335091797, + "r_y2": 227.2295507854351, + "r_x3": 90.00000033372447, + "r_y3": 227.2295507854351, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 239.95196082941106, + "r_x1": 221.28960082055283, + "r_y1": 239.95196082941106, + "r_x2": 221.28960082055283, + "r_y2": 226.66797078349396, + "r_x3": 108.00000040046937, + "r_y3": 226.66797078349396, + "coord_origin": "TOPLEFT" + }, + "text": "Microsoft Office Suite", + "orig": "Microsoft Office Suite", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 221.29102082055812, + "r_y0": 239.95196082941106, + "r_x1": 491.2357518215266, + "r_y1": 239.95196082941106, + "r_x2": 491.2357518215266, + "r_y2": 226.66797078349396, + "r_x3": 221.29102082055812, + "r_y3": 226.66797078349396, + "coord_origin": "TOPLEFT" + }, + "text": ": Microsoft continued to dominate with its Office Suite, ", + "orig": ": Microsoft continued to dominate with its Office Suite, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 253.6319608766969, + "r_x1": 466.9336917314133, + "r_y1": 253.6319608766969, + "r_x2": 466.9336917314133, + "r_y2": 240.3479608307798, + "r_x3": 108.00000040046937, + "r_y3": 240.3479608307798, + "coord_origin": "TOPLEFT" + }, + "text": "integrating Word with other productivity tools like Excel and PowerPoint. ", + "orig": "integrating Word with other productivity tools like Excel and PowerPoint. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 5, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 254.26794087889516, + "r": 517.5377819190559, + "b": 281.2319909720984, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9696746468544006, + "cells": [ + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 267.1775509235182, + "r_x1": 94.63680335091797, + "r_y1": 267.1775509235182, + "r_x2": 94.63680335091797, + "r_y2": 254.82959088083658, + "r_x3": 90.00000033372447, + "r_y3": 254.82959088083658, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 267.55194092481236, + "r_x1": 252.64317093681342, + "r_y1": 267.55194092481236, + "r_x2": 252.64317093681342, + "r_y2": 254.26794087889516, + "r_x3": 108.00000040046937, + "r_y3": 254.26794087889516, + "coord_origin": "TOPLEFT" + }, + "text": "OpenOffice and LibreOffice", + "orig": "OpenOffice and LibreOffice", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 252.6446409368189, + "r_y0": 267.55194092481236, + "r_x1": 517.5377819190559, + "r_y1": 267.55194092481236, + "r_x2": 517.5377819190559, + "r_y2": 254.26794087889516, + "r_x3": 252.6446409368189, + "r_y3": 254.26794087889516, + "coord_origin": "TOPLEFT" + }, + "text": ": Open-source alternatives emerged in the early 2000s, ", + "orig": ": Open-source alternatives emerged in the early 2000s, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 281.2319909720984, + "r_x1": 354.59183131484417, + "r_y1": 281.2319909720984, + "r_x2": 354.59183131484417, + "r_y2": 267.94793092618113, + "r_x3": 108.00000040046937, + "r_y3": 267.94793092618113, + "coord_origin": "TOPLEFT" + }, + "text": "offering free and flexible word processing options. ", + "orig": "offering free and flexible word processing options. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 4, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 281.86798097429676, + "r": 524.5618919451015, + "b": 322.99194111644454, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9762884378433228, + "cells": [ + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 294.7775810189197, + "r_x1": 94.63680335091797, + "r_y1": 294.7775810189197, + "r_x2": 94.63680335091797, + "r_y2": 282.4295609762379, + "r_x3": 90.00000033372447, + "r_y3": 282.4295609762379, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 295.15197102021375, + "r_x1": 206.64719076625803, + "r_y1": 295.15197102021375, + "r_x2": 206.64719076625803, + "r_y2": 281.86798097429676, + "r_x3": 108.00000040046937, + "r_y3": 281.86798097429676, + "coord_origin": "TOPLEFT" + }, + "text": "Google Docs (2006)", + "orig": "Google Docs (2006)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 206.64845076626273, + "r_y0": 295.15197102021375, + "r_x1": 524.5618919451015, + "r_y1": 295.15197102021375, + "r_x2": 524.5618919451015, + "r_y2": 281.86798097429676, + "r_x3": 206.64845076626273, + "r_y3": 281.86798097429676, + "coord_origin": "TOPLEFT" + }, + "text": ": The introduction of cloud-based word processing revolutionized ", + "orig": ": The introduction of cloud-based word processing revolutionized ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 308.8319710674996, + "r_x1": 515.8681019128646, + "r_y1": 308.8319710674996, + "r_x2": 515.8681019128646, + "r_y2": 295.5479710215825, + "r_x3": 108.00000040046937, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": "collaboration. Google Docs enabled real-time editing and sharing, making it a staple ", + "orig": "collaboration. Google Docs enabled real-time editing and sharing, making it a staple ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 322.99194111644454, + "r_x1": 243.2870309021204, + "r_y1": 322.99194111644454, + "r_x2": 243.2870309021204, + "r_y2": 309.70794107052745, + "r_x3": 108.00000040046937, + "r_y3": 309.70794107052745, + "coord_origin": "TOPLEFT" + }, + "text": "for teams and remote work. ", + "orig": "for teams and remote work. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 7, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 365.30493126270244, + "r": 231.71083085919528, + "b": 380.18298131412945, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9581918120384216, + "cells": [ + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 380.18298131412945, + "r_x1": 231.71083085919528, + "r_y1": 380.18298131412945, + "r_x2": 231.71083085919528, + "r_y2": 365.30493126270244, + "r_x3": 72.00000026697958, + "r_y3": 365.30493126270244, + "coord_origin": "TOPLEFT" + }, + "text": "Future of Word Processing ", + "orig": "Future of Word Processing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 0, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 394.6679713641979, + "r": 520.5438819302025, + "b": 463.3919616017472, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9876114726066589, + "cells": [ + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 407.95196141011496, + "r_x1": 475.5335117633018, + "r_y1": 407.95196141011496, + "r_x2": 475.5335117633018, + "r_y2": 394.6679713641979, + "r_x3": 72.00000026697958, + "r_y3": 394.6679713641979, + "coord_origin": "TOPLEFT" + }, + "text": "Today, word processors are more than just tools for typing. They integrate artificial ", + "orig": "Today, word processors are more than just tools for typing. They integrate artificial ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 421.6319614574008, + "r_x1": 520.5078119300688, + "r_y1": 421.6319614574008, + "r_x2": 520.5078119300688, + "r_y2": 408.3479614114837, + "r_x3": 72.00000026697958, + "r_y3": 408.3479614114837, + "coord_origin": "TOPLEFT" + }, + "text": "intelligence for grammar and style suggestions (e.g., Grammarly), voice-to-text features, and ", + "orig": "intelligence for grammar and style suggestions (e.g., Grammarly), voice-to-text features, and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 435.55194150551625, + "r_x1": 520.5438819302025, + "r_y1": 435.55194150551625, + "r_x2": 520.5438819302025, + "r_y2": 422.2679414595992, + "r_x3": 72.00000026697958, + "r_y3": 422.2679414595992, + "coord_origin": "TOPLEFT" + }, + "text": "advanced layout options. As AI continues to advance, word processors may evolve into even ", + "orig": "advanced layout options. As AI continues to advance, word processors may evolve into even ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 449.2319915528023, + "r_x1": 498.19421184732886, + "r_y1": 449.2319915528023, + "r_x2": 498.19421184732886, + "r_y2": 435.9479615068851, + "r_x3": 72.00000026697958, + "r_y3": 435.9479615068851, + "coord_origin": "TOPLEFT" + }, + "text": "more intuitive tools that predict user needs, automate repetitive tasks, and support richer ", + "orig": "more intuitive tools that predict user needs, automate repetitive tasks, and support richer ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 463.3919616017472, + "r_x1": 187.64061069578074, + "r_y1": 463.3919616017472, + "r_x2": 187.64061069578074, + "r_y2": 450.1079715558302, + "r_x3": 72.00000026697958, + "r_y3": 450.1079715558302, + "coord_origin": "TOPLEFT" + }, + "text": "multimedia integration. ", + "orig": "multimedia integration. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 1, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 505.54794174746235, + "r": 515.5564019117089, + "b": 546.4319718887809, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9841670393943787, + "cells": [ + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 518.8319717933796, + "r_x1": 515.5564019117089, + "r_y1": 518.8319717933796, + "r_x2": 515.5564019117089, + "r_y2": 505.54794174746235, + "r_x3": 72.00000026697958, + "r_y3": 505.54794174746235, + "coord_origin": "TOPLEFT" + }, + "text": "From the clunky typewriters of the 19th century to the AI-powered cloud tools of today, the ", + "orig": "From the clunky typewriters of the 19th century to the AI-powered cloud tools of today, the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 532.5119618406654, + "r_x1": 501.86630186094516, + "r_y1": 532.5119618406654, + "r_x2": 501.86630186094516, + "r_y2": 519.2279317947482, + "r_x3": 72.00000026697958, + "r_y3": 519.2279317947482, + "coord_origin": "TOPLEFT" + }, + "text": "word processor has come a long way. It remains an essential tool for communication and ", + "orig": "word processor has come a long way. It remains an essential tool for communication and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 546.4319718887809, + "r_x1": 311.25577115415183, + "r_y1": 546.4319718887809, + "r_x2": 311.25577115415183, + "r_y2": 533.1479518428639, + "r_x3": 72.00000026697958, + "r_y3": 533.1479518428639, + "coord_origin": "TOPLEFT" + }, + "text": "creativity, shaping how we write and share ideas. ", + "orig": "creativity, shaping how we write and share ideas. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + } + ] + }, + "tablestructure": { + "table_map": {} + }, + "figures_classification": null, + "equations_prediction": null, + "vlm_response": null + }, + "assembled": { + "elements": [ + { + "label": "text", + "id": 2, + "page_no": 1, + "cluster": { + "id": 2, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 72.34796025007586, + "r": 516.5014019152128, + "b": 113.47198039222405, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9813448190689087, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 85.63196029599305, + "r_x1": 516.5014019152128, + "r_y1": 85.63196029599305, + "r_x2": 516.5014019152128, + "r_y2": 72.34796025007586, + "r_x3": 72.00000026697958, + "r_y3": 72.34796025007586, + "coord_origin": "TOPLEFT" + }, + "text": "Other notable software from this era included WordPerfect, which was popular among legal ", + "orig": "Other notable software from this era included WordPerfect, which was popular among legal ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 99.31195034327891, + "r_x1": 466.85745173113065, + "r_y1": 99.31195034327891, + "r_x2": 466.85745173113065, + "r_y2": 86.02795029736171, + "r_x3": 72.00000026697958, + "r_y3": 86.02795029736171, + "coord_origin": "TOPLEFT" + }, + "text": "professionals, and Apple\u2019s MacWrite, which leveraged the Macintosh\u2019s graphical ", + "orig": "professionals, and Apple\u2019s MacWrite, which leveraged the Macintosh\u2019s graphical ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 113.47198039222405, + "r_x1": 132.64452049185246, + "r_y1": 113.47198039222405, + "r_x2": 132.64452049185246, + "r_y2": 100.18799034630695, + "r_x3": 72.00000026697958, + "r_y3": 100.18799034630695, + "coord_origin": "TOPLEFT" + }, + "text": "capabilities. ", + "orig": "capabilities. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "Other notable software from this era included WordPerfect, which was popular among legal professionals, and Apple's MacWrite, which leveraged the Macintosh's graphical capabilities." + }, + { + "label": "section_header", + "id": 8, + "page_no": 1, + "cluster": { + "id": 8, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 155.78491053848165, + "r": 272.1976610093225, + "b": 170.6630205899088, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9389315843582153, + "cells": [ + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 170.6630205899088, + "r_x1": 272.1976610093225, + "r_y1": 170.6630205899088, + "r_x2": 272.1976610093225, + "r_y2": 155.78491053848165, + "r_x3": 72.00000026697958, + "r_y3": 155.78491053848165, + "coord_origin": "TOPLEFT" + }, + "text": "The Modern Era (1990s - Present) ", + "orig": "The Modern Era (1990s - Present) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The Modern Era (1990s - Present)" + }, + { + "label": "text", + "id": 3, + "page_no": 1, + "cluster": { + "id": 3, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 185.14795063997713, + "r": 510.8733818943439, + "b": 212.35199073400975, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9798638820648193, + "cells": [ + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 198.43194068589423, + "r_x1": 510.8733818943439, + "r_y1": 198.43194068589423, + "r_x2": 510.8733818943439, + "r_y2": 185.14795063997713, + "r_x3": 72.00000026697958, + "r_y3": 185.14795063997713, + "coord_origin": "TOPLEFT" + }, + "text": "By the 1990s, word processing software had become more sophisticated, with features like ", + "orig": "By the 1990s, word processing software had become more sophisticated, with features like ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 212.35199073400975, + "r_x1": 379.21872140616193, + "r_y1": 212.35199073400975, + "r_x2": 379.21872140616193, + "r_y2": 199.06799068809255, + "r_x3": 72.00000026697958, + "r_y3": 199.06799068809255, + "coord_origin": "TOPLEFT" + }, + "text": "spell check, grammar check, templates, and collaborative tools. ", + "orig": "spell check, grammar check, templates, and collaborative tools. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "By the 1990s, word processing software had become more sophisticated, with features like spell check, grammar check, templates, and collaborative tools." + }, + { + "label": "list_item", + "id": 6, + "page_no": 1, + "cluster": { + "id": 6, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 226.66797078349396, + "r": 491.2357518215266, + "b": 253.6319608766969, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.968998372554779, + "cells": [ + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 239.5775708281169, + "r_x1": 94.63680335091797, + "r_y1": 239.5775708281169, + "r_x2": 94.63680335091797, + "r_y2": 227.2295507854351, + "r_x3": 90.00000033372447, + "r_y3": 227.2295507854351, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 239.95196082941106, + "r_x1": 221.28960082055283, + "r_y1": 239.95196082941106, + "r_x2": 221.28960082055283, + "r_y2": 226.66797078349396, + "r_x3": 108.00000040046937, + "r_y3": 226.66797078349396, + "coord_origin": "TOPLEFT" + }, + "text": "Microsoft Office Suite", + "orig": "Microsoft Office Suite", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 221.29102082055812, + "r_y0": 239.95196082941106, + "r_x1": 491.2357518215266, + "r_y1": 239.95196082941106, + "r_x2": 491.2357518215266, + "r_y2": 226.66797078349396, + "r_x3": 221.29102082055812, + "r_y3": 226.66797078349396, + "coord_origin": "TOPLEFT" + }, + "text": ": Microsoft continued to dominate with its Office Suite, ", + "orig": ": Microsoft continued to dominate with its Office Suite, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 253.6319608766969, + "r_x1": 466.9336917314133, + "r_y1": 253.6319608766969, + "r_x2": 466.9336917314133, + "r_y2": 240.3479608307798, + "r_x3": 108.00000040046937, + "r_y3": 240.3479608307798, + "coord_origin": "TOPLEFT" + }, + "text": "integrating Word with other productivity tools like Excel and PowerPoint. ", + "orig": "integrating Word with other productivity tools like Excel and PowerPoint. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Microsoft Office Suite : Microsoft continued to dominate with its Office Suite, integrating Word with other productivity tools like Excel and PowerPoint." + }, + { + "label": "list_item", + "id": 5, + "page_no": 1, + "cluster": { + "id": 5, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 254.26794087889516, + "r": 517.5377819190559, + "b": 281.2319909720984, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9696746468544006, + "cells": [ + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 267.1775509235182, + "r_x1": 94.63680335091797, + "r_y1": 267.1775509235182, + "r_x2": 94.63680335091797, + "r_y2": 254.82959088083658, + "r_x3": 90.00000033372447, + "r_y3": 254.82959088083658, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 267.55194092481236, + "r_x1": 252.64317093681342, + "r_y1": 267.55194092481236, + "r_x2": 252.64317093681342, + "r_y2": 254.26794087889516, + "r_x3": 108.00000040046937, + "r_y3": 254.26794087889516, + "coord_origin": "TOPLEFT" + }, + "text": "OpenOffice and LibreOffice", + "orig": "OpenOffice and LibreOffice", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 252.6446409368189, + "r_y0": 267.55194092481236, + "r_x1": 517.5377819190559, + "r_y1": 267.55194092481236, + "r_x2": 517.5377819190559, + "r_y2": 254.26794087889516, + "r_x3": 252.6446409368189, + "r_y3": 254.26794087889516, + "coord_origin": "TOPLEFT" + }, + "text": ": Open-source alternatives emerged in the early 2000s, ", + "orig": ": Open-source alternatives emerged in the early 2000s, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 281.2319909720984, + "r_x1": 354.59183131484417, + "r_y1": 281.2319909720984, + "r_x2": 354.59183131484417, + "r_y2": 267.94793092618113, + "r_x3": 108.00000040046937, + "r_y3": 267.94793092618113, + "coord_origin": "TOPLEFT" + }, + "text": "offering free and flexible word processing options. ", + "orig": "offering free and flexible word processing options. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 OpenOffice and LibreOffice : Open-source alternatives emerged in the early 2000s, offering free and flexible word processing options." + }, + { + "label": "list_item", + "id": 4, + "page_no": 1, + "cluster": { + "id": 4, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 281.86798097429676, + "r": 524.5618919451015, + "b": 322.99194111644454, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9762884378433228, + "cells": [ + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 294.7775810189197, + "r_x1": 94.63680335091797, + "r_y1": 294.7775810189197, + "r_x2": 94.63680335091797, + "r_y2": 282.4295609762379, + "r_x3": 90.00000033372447, + "r_y3": 282.4295609762379, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 295.15197102021375, + "r_x1": 206.64719076625803, + "r_y1": 295.15197102021375, + "r_x2": 206.64719076625803, + "r_y2": 281.86798097429676, + "r_x3": 108.00000040046937, + "r_y3": 281.86798097429676, + "coord_origin": "TOPLEFT" + }, + "text": "Google Docs (2006)", + "orig": "Google Docs (2006)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 206.64845076626273, + "r_y0": 295.15197102021375, + "r_x1": 524.5618919451015, + "r_y1": 295.15197102021375, + "r_x2": 524.5618919451015, + "r_y2": 281.86798097429676, + "r_x3": 206.64845076626273, + "r_y3": 281.86798097429676, + "coord_origin": "TOPLEFT" + }, + "text": ": The introduction of cloud-based word processing revolutionized ", + "orig": ": The introduction of cloud-based word processing revolutionized ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 308.8319710674996, + "r_x1": 515.8681019128646, + "r_y1": 308.8319710674996, + "r_x2": 515.8681019128646, + "r_y2": 295.5479710215825, + "r_x3": 108.00000040046937, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": "collaboration. Google Docs enabled real-time editing and sharing, making it a staple ", + "orig": "collaboration. Google Docs enabled real-time editing and sharing, making it a staple ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 322.99194111644454, + "r_x1": 243.2870309021204, + "r_y1": 322.99194111644454, + "r_x2": 243.2870309021204, + "r_y2": 309.70794107052745, + "r_x3": 108.00000040046937, + "r_y3": 309.70794107052745, + "coord_origin": "TOPLEFT" + }, + "text": "for teams and remote work. ", + "orig": "for teams and remote work. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Google Docs (2006) : The introduction of cloud-based word processing revolutionized collaboration. Google Docs enabled real-time editing and sharing, making it a staple for teams and remote work." + }, + { + "label": "section_header", + "id": 7, + "page_no": 1, + "cluster": { + "id": 7, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 365.30493126270244, + "r": 231.71083085919528, + "b": 380.18298131412945, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9581918120384216, + "cells": [ + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 380.18298131412945, + "r_x1": 231.71083085919528, + "r_y1": 380.18298131412945, + "r_x2": 231.71083085919528, + "r_y2": 365.30493126270244, + "r_x3": 72.00000026697958, + "r_y3": 365.30493126270244, + "coord_origin": "TOPLEFT" + }, + "text": "Future of Word Processing ", + "orig": "Future of Word Processing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "Future of Word Processing" + }, + { + "label": "text", + "id": 0, + "page_no": 1, + "cluster": { + "id": 0, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 394.6679713641979, + "r": 520.5438819302025, + "b": 463.3919616017472, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9876114726066589, + "cells": [ + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 407.95196141011496, + "r_x1": 475.5335117633018, + "r_y1": 407.95196141011496, + "r_x2": 475.5335117633018, + "r_y2": 394.6679713641979, + "r_x3": 72.00000026697958, + "r_y3": 394.6679713641979, + "coord_origin": "TOPLEFT" + }, + "text": "Today, word processors are more than just tools for typing. They integrate artificial ", + "orig": "Today, word processors are more than just tools for typing. They integrate artificial ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 421.6319614574008, + "r_x1": 520.5078119300688, + "r_y1": 421.6319614574008, + "r_x2": 520.5078119300688, + "r_y2": 408.3479614114837, + "r_x3": 72.00000026697958, + "r_y3": 408.3479614114837, + "coord_origin": "TOPLEFT" + }, + "text": "intelligence for grammar and style suggestions (e.g., Grammarly), voice-to-text features, and ", + "orig": "intelligence for grammar and style suggestions (e.g., Grammarly), voice-to-text features, and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 435.55194150551625, + "r_x1": 520.5438819302025, + "r_y1": 435.55194150551625, + "r_x2": 520.5438819302025, + "r_y2": 422.2679414595992, + "r_x3": 72.00000026697958, + "r_y3": 422.2679414595992, + "coord_origin": "TOPLEFT" + }, + "text": "advanced layout options. As AI continues to advance, word processors may evolve into even ", + "orig": "advanced layout options. As AI continues to advance, word processors may evolve into even ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 449.2319915528023, + "r_x1": 498.19421184732886, + "r_y1": 449.2319915528023, + "r_x2": 498.19421184732886, + "r_y2": 435.9479615068851, + "r_x3": 72.00000026697958, + "r_y3": 435.9479615068851, + "coord_origin": "TOPLEFT" + }, + "text": "more intuitive tools that predict user needs, automate repetitive tasks, and support richer ", + "orig": "more intuitive tools that predict user needs, automate repetitive tasks, and support richer ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 463.3919616017472, + "r_x1": 187.64061069578074, + "r_y1": 463.3919616017472, + "r_x2": 187.64061069578074, + "r_y2": 450.1079715558302, + "r_x3": 72.00000026697958, + "r_y3": 450.1079715558302, + "coord_origin": "TOPLEFT" + }, + "text": "multimedia integration. ", + "orig": "multimedia integration. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "Today, word processors are more than just tools for typing. They integrate artificial intelligence for grammar and style suggestions (e.g., Grammarly), voice-to-text features, and advanced layout options. As AI continues to advance, word processors may evolve into even more intuitive tools that predict user needs, automate repetitive tasks, and support richer multimedia integration." + }, + { + "label": "text", + "id": 1, + "page_no": 1, + "cluster": { + "id": 1, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 505.54794174746235, + "r": 515.5564019117089, + "b": 546.4319718887809, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9841670393943787, + "cells": [ + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 518.8319717933796, + "r_x1": 515.5564019117089, + "r_y1": 518.8319717933796, + "r_x2": 515.5564019117089, + "r_y2": 505.54794174746235, + "r_x3": 72.00000026697958, + "r_y3": 505.54794174746235, + "coord_origin": "TOPLEFT" + }, + "text": "From the clunky typewriters of the 19th century to the AI-powered cloud tools of today, the ", + "orig": "From the clunky typewriters of the 19th century to the AI-powered cloud tools of today, the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 532.5119618406654, + "r_x1": 501.86630186094516, + "r_y1": 532.5119618406654, + "r_x2": 501.86630186094516, + "r_y2": 519.2279317947482, + "r_x3": 72.00000026697958, + "r_y3": 519.2279317947482, + "coord_origin": "TOPLEFT" + }, + "text": "word processor has come a long way. It remains an essential tool for communication and ", + "orig": "word processor has come a long way. It remains an essential tool for communication and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 546.4319718887809, + "r_x1": 311.25577115415183, + "r_y1": 546.4319718887809, + "r_x2": 311.25577115415183, + "r_y2": 533.1479518428639, + "r_x3": 72.00000026697958, + "r_y3": 533.1479518428639, + "coord_origin": "TOPLEFT" + }, + "text": "creativity, shaping how we write and share ideas. ", + "orig": "creativity, shaping how we write and share ideas. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "From the clunky typewriters of the 19th century to the AI-powered cloud tools of today, the word processor has come a long way. It remains an essential tool for communication and creativity, shaping how we write and share ideas." + } + ], + "body": [ + { + "label": "text", + "id": 2, + "page_no": 1, + "cluster": { + "id": 2, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 72.34796025007586, + "r": 516.5014019152128, + "b": 113.47198039222405, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9813448190689087, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 85.63196029599305, + "r_x1": 516.5014019152128, + "r_y1": 85.63196029599305, + "r_x2": 516.5014019152128, + "r_y2": 72.34796025007586, + "r_x3": 72.00000026697958, + "r_y3": 72.34796025007586, + "coord_origin": "TOPLEFT" + }, + "text": "Other notable software from this era included WordPerfect, which was popular among legal ", + "orig": "Other notable software from this era included WordPerfect, which was popular among legal ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 99.31195034327891, + "r_x1": 466.85745173113065, + "r_y1": 99.31195034327891, + "r_x2": 466.85745173113065, + "r_y2": 86.02795029736171, + "r_x3": 72.00000026697958, + "r_y3": 86.02795029736171, + "coord_origin": "TOPLEFT" + }, + "text": "professionals, and Apple\u2019s MacWrite, which leveraged the Macintosh\u2019s graphical ", + "orig": "professionals, and Apple\u2019s MacWrite, which leveraged the Macintosh\u2019s graphical ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 113.47198039222405, + "r_x1": 132.64452049185246, + "r_y1": 113.47198039222405, + "r_x2": 132.64452049185246, + "r_y2": 100.18799034630695, + "r_x3": 72.00000026697958, + "r_y3": 100.18799034630695, + "coord_origin": "TOPLEFT" + }, + "text": "capabilities. ", + "orig": "capabilities. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "Other notable software from this era included WordPerfect, which was popular among legal professionals, and Apple's MacWrite, which leveraged the Macintosh's graphical capabilities." + }, + { + "label": "section_header", + "id": 8, + "page_no": 1, + "cluster": { + "id": 8, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 155.78491053848165, + "r": 272.1976610093225, + "b": 170.6630205899088, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9389315843582153, + "cells": [ + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 170.6630205899088, + "r_x1": 272.1976610093225, + "r_y1": 170.6630205899088, + "r_x2": 272.1976610093225, + "r_y2": 155.78491053848165, + "r_x3": 72.00000026697958, + "r_y3": 155.78491053848165, + "coord_origin": "TOPLEFT" + }, + "text": "The Modern Era (1990s - Present) ", + "orig": "The Modern Era (1990s - Present) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The Modern Era (1990s - Present)" + }, + { + "label": "text", + "id": 3, + "page_no": 1, + "cluster": { + "id": 3, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 185.14795063997713, + "r": 510.8733818943439, + "b": 212.35199073400975, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9798638820648193, + "cells": [ + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 198.43194068589423, + "r_x1": 510.8733818943439, + "r_y1": 198.43194068589423, + "r_x2": 510.8733818943439, + "r_y2": 185.14795063997713, + "r_x3": 72.00000026697958, + "r_y3": 185.14795063997713, + "coord_origin": "TOPLEFT" + }, + "text": "By the 1990s, word processing software had become more sophisticated, with features like ", + "orig": "By the 1990s, word processing software had become more sophisticated, with features like ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 212.35199073400975, + "r_x1": 379.21872140616193, + "r_y1": 212.35199073400975, + "r_x2": 379.21872140616193, + "r_y2": 199.06799068809255, + "r_x3": 72.00000026697958, + "r_y3": 199.06799068809255, + "coord_origin": "TOPLEFT" + }, + "text": "spell check, grammar check, templates, and collaborative tools. ", + "orig": "spell check, grammar check, templates, and collaborative tools. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "By the 1990s, word processing software had become more sophisticated, with features like spell check, grammar check, templates, and collaborative tools." + }, + { + "label": "list_item", + "id": 6, + "page_no": 1, + "cluster": { + "id": 6, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 226.66797078349396, + "r": 491.2357518215266, + "b": 253.6319608766969, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.968998372554779, + "cells": [ + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 239.5775708281169, + "r_x1": 94.63680335091797, + "r_y1": 239.5775708281169, + "r_x2": 94.63680335091797, + "r_y2": 227.2295507854351, + "r_x3": 90.00000033372447, + "r_y3": 227.2295507854351, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 239.95196082941106, + "r_x1": 221.28960082055283, + "r_y1": 239.95196082941106, + "r_x2": 221.28960082055283, + "r_y2": 226.66797078349396, + "r_x3": 108.00000040046937, + "r_y3": 226.66797078349396, + "coord_origin": "TOPLEFT" + }, + "text": "Microsoft Office Suite", + "orig": "Microsoft Office Suite", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 221.29102082055812, + "r_y0": 239.95196082941106, + "r_x1": 491.2357518215266, + "r_y1": 239.95196082941106, + "r_x2": 491.2357518215266, + "r_y2": 226.66797078349396, + "r_x3": 221.29102082055812, + "r_y3": 226.66797078349396, + "coord_origin": "TOPLEFT" + }, + "text": ": Microsoft continued to dominate with its Office Suite, ", + "orig": ": Microsoft continued to dominate with its Office Suite, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 253.6319608766969, + "r_x1": 466.9336917314133, + "r_y1": 253.6319608766969, + "r_x2": 466.9336917314133, + "r_y2": 240.3479608307798, + "r_x3": 108.00000040046937, + "r_y3": 240.3479608307798, + "coord_origin": "TOPLEFT" + }, + "text": "integrating Word with other productivity tools like Excel and PowerPoint. ", + "orig": "integrating Word with other productivity tools like Excel and PowerPoint. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Microsoft Office Suite : Microsoft continued to dominate with its Office Suite, integrating Word with other productivity tools like Excel and PowerPoint." + }, + { + "label": "list_item", + "id": 5, + "page_no": 1, + "cluster": { + "id": 5, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 254.26794087889516, + "r": 517.5377819190559, + "b": 281.2319909720984, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9696746468544006, + "cells": [ + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 267.1775509235182, + "r_x1": 94.63680335091797, + "r_y1": 267.1775509235182, + "r_x2": 94.63680335091797, + "r_y2": 254.82959088083658, + "r_x3": 90.00000033372447, + "r_y3": 254.82959088083658, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 267.55194092481236, + "r_x1": 252.64317093681342, + "r_y1": 267.55194092481236, + "r_x2": 252.64317093681342, + "r_y2": 254.26794087889516, + "r_x3": 108.00000040046937, + "r_y3": 254.26794087889516, + "coord_origin": "TOPLEFT" + }, + "text": "OpenOffice and LibreOffice", + "orig": "OpenOffice and LibreOffice", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 252.6446409368189, + "r_y0": 267.55194092481236, + "r_x1": 517.5377819190559, + "r_y1": 267.55194092481236, + "r_x2": 517.5377819190559, + "r_y2": 254.26794087889516, + "r_x3": 252.6446409368189, + "r_y3": 254.26794087889516, + "coord_origin": "TOPLEFT" + }, + "text": ": Open-source alternatives emerged in the early 2000s, ", + "orig": ": Open-source alternatives emerged in the early 2000s, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 281.2319909720984, + "r_x1": 354.59183131484417, + "r_y1": 281.2319909720984, + "r_x2": 354.59183131484417, + "r_y2": 267.94793092618113, + "r_x3": 108.00000040046937, + "r_y3": 267.94793092618113, + "coord_origin": "TOPLEFT" + }, + "text": "offering free and flexible word processing options. ", + "orig": "offering free and flexible word processing options. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 OpenOffice and LibreOffice : Open-source alternatives emerged in the early 2000s, offering free and flexible word processing options." + }, + { + "label": "list_item", + "id": 4, + "page_no": 1, + "cluster": { + "id": 4, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 281.86798097429676, + "r": 524.5618919451015, + "b": 322.99194111644454, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9762884378433228, + "cells": [ + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 294.7775810189197, + "r_x1": 94.63680335091797, + "r_y1": 294.7775810189197, + "r_x2": 94.63680335091797, + "r_y2": 282.4295609762379, + "r_x3": 90.00000033372447, + "r_y3": 282.4295609762379, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 295.15197102021375, + "r_x1": 206.64719076625803, + "r_y1": 295.15197102021375, + "r_x2": 206.64719076625803, + "r_y2": 281.86798097429676, + "r_x3": 108.00000040046937, + "r_y3": 281.86798097429676, + "coord_origin": "TOPLEFT" + }, + "text": "Google Docs (2006)", + "orig": "Google Docs (2006)", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 206.64845076626273, + "r_y0": 295.15197102021375, + "r_x1": 524.5618919451015, + "r_y1": 295.15197102021375, + "r_x2": 524.5618919451015, + "r_y2": 281.86798097429676, + "r_x3": 206.64845076626273, + "r_y3": 281.86798097429676, + "coord_origin": "TOPLEFT" + }, + "text": ": The introduction of cloud-based word processing revolutionized ", + "orig": ": The introduction of cloud-based word processing revolutionized ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 308.8319710674996, + "r_x1": 515.8681019128646, + "r_y1": 308.8319710674996, + "r_x2": 515.8681019128646, + "r_y2": 295.5479710215825, + "r_x3": 108.00000040046937, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": "collaboration. Google Docs enabled real-time editing and sharing, making it a staple ", + "orig": "collaboration. Google Docs enabled real-time editing and sharing, making it a staple ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 322.99194111644454, + "r_x1": 243.2870309021204, + "r_y1": 322.99194111644454, + "r_x2": 243.2870309021204, + "r_y2": 309.70794107052745, + "r_x3": 108.00000040046937, + "r_y3": 309.70794107052745, + "coord_origin": "TOPLEFT" + }, + "text": "for teams and remote work. ", + "orig": "for teams and remote work. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Google Docs (2006) : The introduction of cloud-based word processing revolutionized collaboration. Google Docs enabled real-time editing and sharing, making it a staple for teams and remote work." + }, + { + "label": "section_header", + "id": 7, + "page_no": 1, + "cluster": { + "id": 7, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 365.30493126270244, + "r": 231.71083085919528, + "b": 380.18298131412945, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9581918120384216, + "cells": [ + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 380.18298131412945, + "r_x1": 231.71083085919528, + "r_y1": 380.18298131412945, + "r_x2": 231.71083085919528, + "r_y2": 365.30493126270244, + "r_x3": 72.00000026697958, + "r_y3": 365.30493126270244, + "coord_origin": "TOPLEFT" + }, + "text": "Future of Word Processing ", + "orig": "Future of Word Processing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "Future of Word Processing" + }, + { + "label": "text", + "id": 0, + "page_no": 1, + "cluster": { + "id": 0, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 394.6679713641979, + "r": 520.5438819302025, + "b": 463.3919616017472, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9876114726066589, + "cells": [ + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 407.95196141011496, + "r_x1": 475.5335117633018, + "r_y1": 407.95196141011496, + "r_x2": 475.5335117633018, + "r_y2": 394.6679713641979, + "r_x3": 72.00000026697958, + "r_y3": 394.6679713641979, + "coord_origin": "TOPLEFT" + }, + "text": "Today, word processors are more than just tools for typing. They integrate artificial ", + "orig": "Today, word processors are more than just tools for typing. They integrate artificial ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 421.6319614574008, + "r_x1": 520.5078119300688, + "r_y1": 421.6319614574008, + "r_x2": 520.5078119300688, + "r_y2": 408.3479614114837, + "r_x3": 72.00000026697958, + "r_y3": 408.3479614114837, + "coord_origin": "TOPLEFT" + }, + "text": "intelligence for grammar and style suggestions (e.g., Grammarly), voice-to-text features, and ", + "orig": "intelligence for grammar and style suggestions (e.g., Grammarly), voice-to-text features, and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 435.55194150551625, + "r_x1": 520.5438819302025, + "r_y1": 435.55194150551625, + "r_x2": 520.5438819302025, + "r_y2": 422.2679414595992, + "r_x3": 72.00000026697958, + "r_y3": 422.2679414595992, + "coord_origin": "TOPLEFT" + }, + "text": "advanced layout options. As AI continues to advance, word processors may evolve into even ", + "orig": "advanced layout options. As AI continues to advance, word processors may evolve into even ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 449.2319915528023, + "r_x1": 498.19421184732886, + "r_y1": 449.2319915528023, + "r_x2": 498.19421184732886, + "r_y2": 435.9479615068851, + "r_x3": 72.00000026697958, + "r_y3": 435.9479615068851, + "coord_origin": "TOPLEFT" + }, + "text": "more intuitive tools that predict user needs, automate repetitive tasks, and support richer ", + "orig": "more intuitive tools that predict user needs, automate repetitive tasks, and support richer ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 463.3919616017472, + "r_x1": 187.64061069578074, + "r_y1": 463.3919616017472, + "r_x2": 187.64061069578074, + "r_y2": 450.1079715558302, + "r_x3": 72.00000026697958, + "r_y3": 450.1079715558302, + "coord_origin": "TOPLEFT" + }, + "text": "multimedia integration. ", + "orig": "multimedia integration. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "Today, word processors are more than just tools for typing. They integrate artificial intelligence for grammar and style suggestions (e.g., Grammarly), voice-to-text features, and advanced layout options. As AI continues to advance, word processors may evolve into even more intuitive tools that predict user needs, automate repetitive tasks, and support richer multimedia integration." + }, + { + "label": "text", + "id": 1, + "page_no": 1, + "cluster": { + "id": 1, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 505.54794174746235, + "r": 515.5564019117089, + "b": 546.4319718887809, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9841670393943787, + "cells": [ + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 518.8319717933796, + "r_x1": 515.5564019117089, + "r_y1": 518.8319717933796, + "r_x2": 515.5564019117089, + "r_y2": 505.54794174746235, + "r_x3": 72.00000026697958, + "r_y3": 505.54794174746235, + "coord_origin": "TOPLEFT" + }, + "text": "From the clunky typewriters of the 19th century to the AI-powered cloud tools of today, the ", + "orig": "From the clunky typewriters of the 19th century to the AI-powered cloud tools of today, the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 532.5119618406654, + "r_x1": 501.86630186094516, + "r_y1": 532.5119618406654, + "r_x2": 501.86630186094516, + "r_y2": 519.2279317947482, + "r_x3": 72.00000026697958, + "r_y3": 519.2279317947482, + "coord_origin": "TOPLEFT" + }, + "text": "word processor has come a long way. It remains an essential tool for communication and ", + "orig": "word processor has come a long way. It remains an essential tool for communication and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 546.4319718887809, + "r_x1": 311.25577115415183, + "r_y1": 546.4319718887809, + "r_x2": 311.25577115415183, + "r_y2": 533.1479518428639, + "r_x3": 72.00000026697958, + "r_y3": 533.1479518428639, + "coord_origin": "TOPLEFT" + }, + "text": "creativity, shaping how we write and share ideas. ", + "orig": "creativity, shaping how we write and share ideas. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "From the clunky typewriters of the 19th century to the AI-powered cloud tools of today, the word processor has come a long way. It remains an essential tool for communication and creativity, shaping how we write and share ideas." + } + ], + "headers": [] + } + }, + { + "page_no": 2, + "size": { + "width": 595.2000122070312, + "height": 841.9199829101562 + }, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 87.62298030287513, + "r_x1": 276.7262310261146, + "r_y1": 87.62298030287513, + "r_x2": 276.7262310261146, + "r_y2": 72.74493025144807, + "r_x3": 72.00000026697958, + "r_y3": 72.74493025144807, + "coord_origin": "TOPLEFT" + }, + "text": "Specialized Word Processing Tools ", + "orig": "Specialized Word Processing Tools ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 115.15197039803093, + "r_x1": 507.8394518830939, + "r_y1": 115.15197039803093, + "r_x2": 507.8394518830939, + "r_y2": 101.86798035211382, + "r_x3": 72.00000026697958, + "r_y3": 101.86798035211382, + "coord_origin": "TOPLEFT" + }, + "text": "In addition to general-purpose word processors, specialized tools have emerged to cater to ", + "orig": "In addition to general-purpose word processors, specialized tools have emerged to cater to ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 129.07196044614636, + "r_x1": 514.6727319084321, + "r_y1": 129.07196044614636, + "r_x2": 514.6727319084321, + "r_y2": 115.78796040022928, + "r_x3": 72.00000026697958, + "r_y3": 115.78796040022928, + "coord_origin": "TOPLEFT" + }, + "text": "specific industries and needs. These tools incorporate unique features tailored to their users' ", + "orig": "specific industries and needs. These tools incorporate unique features tailored to their users' ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 142.99194049426183, + "r_x1": 129.66211048079356, + "r_y1": 142.99194049426183, + "r_x2": 129.66211048079356, + "r_y2": 129.70794044834474, + "r_x3": 72.00000026697958, + "r_y3": 129.70794044834474, + "coord_origin": "TOPLEFT" + }, + "text": "workflows: ", + "orig": "workflows: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 170.21759058836926, + "r_x1": 94.63680335091797, + "r_y1": 170.21759058836926, + "r_x2": 94.63680335091797, + "r_y2": 157.86956054568725, + "r_x3": 90.00000033372447, + "r_y3": 157.86956054568725, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 170.5919805896633, + "r_x1": 277.6560410295624, + "r_y1": 170.5919805896633, + "r_x2": 277.6560410295624, + "r_y2": 157.30798054374623, + "r_x3": 108.00000040046937, + "r_y3": 157.30798054374623, + "coord_origin": "TOPLEFT" + }, + "text": "Academic and Technical Writing", + "orig": "Academic and Technical Writing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 277.65817102957027, + "r_y0": 170.5919805896633, + "r_x1": 495.26132183645365, + "r_y1": 170.5919805896633, + "r_x2": 495.26132183645365, + "r_y2": 157.30798054374623, + "r_x3": 277.65817102957027, + "r_y3": 157.30798054374623, + "coord_origin": "TOPLEFT" + }, + "text": ": Tools like LaTeX gained popularity among ", + "orig": ": Tools like LaTeX gained popularity among ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 184.27197063694928, + "r_x1": 495.5327118374599, + "r_y1": 184.27197063694928, + "r_x2": 495.5327118374599, + "r_y2": 170.98797059103208, + "r_x3": 108.00000040046937, + "r_y3": 170.98797059103208, + "coord_origin": "TOPLEFT" + }, + "text": "academics, scientists, and engineers. Unlike traditional word processors, LaTeX ", + "orig": "academics, scientists, and engineers. Unlike traditional word processors, LaTeX ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 198.1919506850645, + "r_x1": 494.8486918349235, + "r_y1": 198.1919506850645, + "r_x2": 494.8486918349235, + "r_y2": 184.90796063914763, + "r_x3": 108.00000040046937, + "r_y3": 184.90796063914763, + "coord_origin": "TOPLEFT" + }, + "text": "focuses on precise formatting, particularly for complex mathematical equations, ", + "orig": "focuses on precise formatting, particularly for complex mathematical equations, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 211.87195073235046, + "r_x1": 519.5101919263695, + "r_y1": 211.87195073235046, + "r_x2": 519.5101919263695, + "r_y2": 198.58795068643337, + "r_x3": 108.00000040046937, + "r_y3": 198.58795068643337, + "coord_origin": "TOPLEFT" + }, + "text": "scientific papers, and technical documents. It relies on a markup language to produce ", + "orig": "scientific papers, and technical documents. It relies on a markup language to produce ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 225.7919907804661, + "r_x1": 320.6426411889588, + "r_y1": 225.7919907804661, + "r_x2": 320.6426411889588, + "r_y2": 212.50799073454903, + "r_x3": 108.00000040046937, + "r_y3": 212.50799073454903, + "coord_origin": "TOPLEFT" + }, + "text": "polished documents suitable for publishing. ", + "orig": "polished documents suitable for publishing. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 239.0975908264578, + "r_x1": 94.63680335091797, + "r_y1": 239.0975908264578, + "r_x2": 94.63680335091797, + "r_y2": 226.7495707837761, + "r_x3": 90.00000033372447, + "r_y3": 226.7495707837761, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 239.47198082775196, + "r_x1": 228.9672108490218, + "r_y1": 239.47198082775196, + "r_x2": 228.9672108490218, + "r_y2": 226.18799078183486, + "r_x3": 108.00000040046937, + "r_y3": 226.18799078183486, + "coord_origin": "TOPLEFT" + }, + "text": "Screenwriting Software", + "orig": "Screenwriting Software", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 228.9668008490203, + "r_y0": 239.47198082775196, + "r_x1": 495.22037183630175, + "r_y1": 239.47198082775196, + "r_x2": 495.22037183630175, + "r_y2": 226.18799078183486, + "r_x3": 228.9668008490203, + "r_y3": 226.18799078183486, + "coord_origin": "TOPLEFT" + }, + "text": ": For screenwriters, tools like Final Draft and Celtx are ", + "orig": ": For screenwriters, tools like Final Draft and Celtx are ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 253.3919608758673, + "r_x1": 503.5271318671036, + "r_y1": 253.3919608758673, + "r_x2": 503.5271318671036, + "r_y2": 240.1079708299502, + "r_x3": 108.00000040046937, + "r_y3": 240.1079708299502, + "coord_origin": "TOPLEFT" + }, + "text": "specialized to handle scripts for film and television. These programs automate the ", + "orig": "specialized to handle scripts for film and television. These programs automate the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 267.07196092315326, + "r_x1": 457.223911695409, + "r_y1": 267.07196092315326, + "r_x2": 457.223911695409, + "r_y2": 253.78796087723617, + "r_x3": 108.00000040046937, + "r_y3": 253.78796087723617, + "coord_origin": "TOPLEFT" + }, + "text": "formatting of dialogue, scene descriptions, and other elements unique to ", + "orig": "formatting of dialogue, scene descriptions, and other elements unique to ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 280.9919409712686, + "r_x1": 179.30858066488514, + "r_y1": 280.9919409712686, + "r_x2": 179.30858066488514, + "r_y2": 267.7079409253515, + "r_x3": 108.00000040046937, + "r_y3": 267.7079409253515, + "coord_origin": "TOPLEFT" + }, + "text": "screenwriting. ", + "orig": "screenwriting. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 294.2975410172604, + "r_x1": 94.63680335091797, + "r_y1": 294.2975410172604, + "r_x2": 94.63680335091797, + "r_y2": 281.9495809745787, + "r_x3": 90.00000033372447, + "r_y3": 281.9495809745787, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 294.67193101855446, + "r_x1": 249.96240092687302, + "r_y1": 294.67193101855446, + "r_x2": 249.96240092687302, + "r_y2": 281.38800097263766, + "r_x3": 108.00000040046937, + "r_y3": 281.38800097263766, + "coord_origin": "TOPLEFT" + }, + "text": "Legal Document Processors", + "orig": "Legal Document Processors", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 249.966710926889, + "r_y0": 294.67193101855446, + "r_x1": 513.5488919042649, + "r_y1": 294.67193101855446, + "r_x2": 513.5488919042649, + "r_y2": 281.38800097263766, + "r_x3": 249.966710926889, + "r_y3": 281.38800097263766, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors tailored for legal professionals, like ", + "orig": ": Word processors tailored for legal professionals, like ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 308.5919810666702, + "r_x1": 524.4814519448033, + "r_y1": 308.5919810666702, + "r_x2": 524.4814519448033, + "r_y2": 295.3079810207531, + "r_x3": 108.00000040046937, + "r_y3": 295.3079810207531, + "coord_origin": "TOPLEFT" + }, + "text": "WordPerfect, offered features such as redlining (early version tracking) and document ", + "orig": "WordPerfect, offered features such as redlining (early version tracking) and document ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 322.27197111395594, + "r_x1": 489.909551816609, + "r_y1": 322.27197111395594, + "r_x2": 489.909551816609, + "r_y2": 308.98797106803886, + "r_x3": 108.00000040046937, + "r_y3": 308.98797106803886, + "coord_origin": "TOPLEFT" + }, + "text": "comparison. Even today, many law firms rely on these tools due to their robust ", + "orig": "comparison. Even today, many law firms rely on these tools due to their robust ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 336.43194116290096, + "r_x1": 343.2655012728455, + "r_y1": 336.43194116290096, + "r_x2": 343.2655012728455, + "r_y2": 323.1479511169839, + "r_x3": 108.00000040046937, + "r_y3": 323.1479511169839, + "coord_origin": "TOPLEFT" + }, + "text": "formatting options for contracts and legal briefs. ", + "orig": "formatting options for contracts and legal briefs. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 393.62298136058575, + "r_x1": 340.46878126247515, + "r_y1": 393.62298136058575, + "r_x2": 340.46878126247515, + "r_y2": 378.7449313091588, + "r_x3": 72.00000026697958, + "r_y3": 378.7449313091588, + "coord_origin": "TOPLEFT" + }, + "text": "Key Features That Changed Word Processing ", + "orig": "Key Features That Changed Word Processing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 421.1519714557417, + "r_x1": 514.7196019086059, + "r_y1": 421.1519714557417, + "r_x2": 514.7196019086059, + "r_y2": 407.86798140982467, + "r_x3": 72.00000026697958, + "r_y3": 407.86798140982467, + "coord_origin": "TOPLEFT" + }, + "text": "The evolution of word processors wasn't just about hardware or software improvements-it ", + "orig": "The evolution of word processors wasn't just about hardware or software improvements-it ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 435.07196150385715, + "r_x1": 490.85507182011503, + "r_y1": 435.07196150385715, + "r_x2": 490.85507182011503, + "r_y2": 421.78796145794007, + "r_x3": 72.00000026697958, + "r_y3": 421.78796145794007, + "coord_origin": "TOPLEFT" + }, + "text": "was about the features that revolutionized how people wrote and edited. Some of these ", + "orig": "was about the features that revolutionized how people wrote and edited. Some of these ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 448.9919715519727, + "r_x1": 227.60155084395785, + "r_y1": 448.9919715519727, + "r_x2": 227.60155084395785, + "r_y2": 435.7079415060554, + "r_x3": 72.00000026697958, + "r_y3": 435.7079415060554, + "coord_origin": "TOPLEFT" + }, + "text": "transformative features include: ", + "orig": "transformative features include: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 476.5919816473741, + "r_x1": 99.00000036709692, + "r_y1": 476.5919816473741, + "r_x2": 99.00000036709692, + "r_y2": 463.30795160145686, + "r_x3": 90.00000033372447, + "r_y3": 463.30795160145686, + "coord_origin": "TOPLEFT" + }, + "text": "1.", + "orig": "1.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 28, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 476.5919816473741, + "r_x1": 166.01521061559265, + "r_y1": 476.5919816473741, + "r_x2": 166.01521061559265, + "r_y2": 463.30795160145686, + "r_x3": 108.00000040046937, + "r_y3": 463.30795160145686, + "coord_origin": "TOPLEFT" + }, + "text": "Undo/Redo", + "orig": "Undo/Redo", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 29, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 166.0136606155869, + "r_y0": 476.5919816473741, + "r_x1": 509.2687418883938, + "r_y1": 476.5919816473741, + "r_x2": 509.2687418883938, + "r_y2": 463.30795160145686, + "r_x3": 166.0136606155869, + "r_y3": 463.30795160145686, + "coord_origin": "TOPLEFT" + }, + "text": ": Introduced in the 1980s, the ability to undo mistakes and redo actions ", + "orig": ": Introduced in the 1980s, the ability to undo mistakes and redo actions ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 30, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 490.51196169548945, + "r_x1": 379.87488140859494, + "r_y1": 490.51196169548945, + "r_x2": 379.87488140859494, + "r_y2": 477.2279316495723, + "r_x3": 108.00000040046937, + "r_y3": 477.2279316495723, + "coord_origin": "TOPLEFT" + }, + "text": "made experimentation and error correction much easier. ", + "orig": "made experimentation and error correction much easier. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 31, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 504.1919517427753, + "r_x1": 99.00000036709692, + "r_y1": 504.1919517427753, + "r_x2": 99.00000036709692, + "r_y2": 490.90796169685825, + "r_x3": 90.00000033372447, + "r_y3": 490.90796169685825, + "coord_origin": "TOPLEFT" + }, + "text": "2.", + "orig": "2.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 32, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 504.1919517427753, + "r_x1": 281.9975910456611, + "r_y1": 504.1919517427753, + "r_x2": 281.9975910456611, + "r_y2": 490.90796169685825, + "r_x3": 108.00000040046937, + "r_y3": 490.90796169685825, + "coord_origin": "TOPLEFT" + }, + "text": "Spell Check and Grammar Check", + "orig": "Spell Check and Grammar Check", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 33, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 282.00000104567005, + "r_y0": 504.1919517427753, + "r_x1": 516.6022319155867, + "r_y1": 504.1919517427753, + "r_x2": 516.6022319155867, + "r_y2": 490.90796169685825, + "r_x3": 282.00000104567005, + "r_y3": 490.90796169685825, + "coord_origin": "TOPLEFT" + }, + "text": ": By the 1990s, these became standard, allowing ", + "orig": ": By the 1990s, these became standard, allowing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 34, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 518.1119717908908, + "r_x1": 273.2930310133841, + "r_y1": 518.1119717908908, + "r_x2": 273.2930310133841, + "r_y2": 504.82794174497366, + "r_x3": 108.00000040046937, + "r_y3": 504.82794174497366, + "coord_origin": "TOPLEFT" + }, + "text": "users to spot errors automatically. ", + "orig": "users to spot errors automatically. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 35, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 531.7919618381768, + "r_x1": 99.00000036709692, + "r_y1": 531.7919618381768, + "r_x2": 99.00000036709692, + "r_y2": 518.5079317922596, + "r_x3": 90.00000033372447, + "r_y3": 518.5079317922596, + "coord_origin": "TOPLEFT" + }, + "text": "3.", + "orig": "3.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 36, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 531.7919618381768, + "r_x1": 161.32320059819446, + "r_y1": 531.7919618381768, + "r_x2": 161.32320059819446, + "r_y2": 518.5079317922596, + "r_x3": 108.00000040046937, + "r_y3": 518.5079317922596, + "coord_origin": "TOPLEFT" + }, + "text": "Templates", + "orig": "Templates", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 37, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 161.32617059820544, + "r_y0": 531.7919618381768, + "r_x1": 486.90097180545297, + "r_y1": 531.7919618381768, + "r_x2": 486.90097180545297, + "r_y2": 518.5079317922596, + "r_x3": 161.32617059820544, + "r_y3": 518.5079317922596, + "coord_origin": "TOPLEFT" + }, + "text": ": Pre-designed formats for documents, such as resumes, letters, and ", + "orig": ": Pre-designed formats for documents, such as resumes, letters, and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 38, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 545.7119718862922, + "r_x1": 268.2890309948291, + "r_y1": 545.7119718862922, + "r_x2": 268.2890309948291, + "r_y2": 532.427951840375, + "r_x3": 108.00000040046937, + "r_y3": 532.427951840375, + "coord_origin": "TOPLEFT" + }, + "text": "invoices, helped users save time. ", + "orig": "invoices, helped users save time. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 39, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 559.391961933578, + "r_x1": 99.00000036709692, + "r_y1": 559.391961933578, + "r_x2": 99.00000036709692, + "r_y2": 546.1079418876609, + "r_x3": 90.00000033372447, + "r_y3": 546.1079418876609, + "coord_origin": "TOPLEFT" + }, + "text": "4.", + "orig": "4.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 40, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 559.391961933578, + "r_x1": 186.338390690952, + "r_y1": 559.391961933578, + "r_x2": 186.338390690952, + "r_y2": 546.1079418876609, + "r_x3": 108.00000040046937, + "r_y3": 546.1079418876609, + "coord_origin": "TOPLEFT" + }, + "text": "Track Changes", + "orig": "Track Changes", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 41, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 186.3398406909574, + "r_y0": 559.391961933578, + "r_x1": 502.21259186222926, + "r_y1": 559.391961933578, + "r_x2": 502.21259186222926, + "r_y2": 546.1079418876609, + "r_x3": 186.3398406909574, + "r_y3": 546.1079418876609, + "coord_origin": "TOPLEFT" + }, + "text": ": A game-changer for collaboration, this feature allowed multiple ", + "orig": ": A game-changer for collaboration, this feature allowed multiple ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 42, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 573.3119819816936, + "r_x1": 384.6211214261943, + "r_y1": 573.3119819816936, + "r_x2": 384.6211214261943, + "r_y2": 560.0279519357764, + "r_x3": 108.00000040046937, + "r_y3": 560.0279519357764, + "coord_origin": "TOPLEFT" + }, + "text": "users to suggest edits while maintaining the original text. ", + "orig": "users to suggest edits while maintaining the original text. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 43, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 586.9919720289795, + "r_x1": 99.00000036709692, + "r_y1": 586.9919720289795, + "r_x2": 99.00000036709692, + "r_y2": 573.7079419830623, + "r_x3": 90.00000033372447, + "r_y3": 573.7079419830623, + "coord_origin": "TOPLEFT" + }, + "text": "5.", + "orig": "5.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 44, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 586.9919720289795, + "r_x1": 236.3166508762739, + "r_y1": 586.9919720289795, + "r_x2": 236.3166508762739, + "r_y2": 573.7079419830623, + "r_x3": 108.00000040046937, + "r_y3": 573.7079419830623, + "coord_origin": "TOPLEFT" + }, + "text": "Real-Time Collaboration", + "orig": "Real-Time Collaboration", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 45, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 236.32033087628753, + "r_y0": 586.9919720289795, + "r_x1": 491.9297818241001, + "r_y1": 586.9919720289795, + "r_x2": 491.9297818241001, + "r_y2": 573.7079419830623, + "r_x3": 236.32033087628753, + "r_y3": 573.7079419830623, + "coord_origin": "TOPLEFT" + }, + "text": ": Tools like Google Docs and Microsoft 365 enabled ", + "orig": ": Tools like Google Docs and Microsoft 365 enabled ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 46, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 600.9119520770948, + "r_x1": 521.8798819351565, + "r_y1": 600.9119520770948, + "r_x2": 521.8798819351565, + "r_y2": 587.6279620311777, + "r_x3": 108.00000040046937, + "r_y3": 587.6279620311777, + "coord_origin": "TOPLEFT" + }, + "text": "multiple users to edit the same document simultaneously, forever changing teamwork ", + "orig": "multiple users to edit the same document simultaneously, forever changing teamwork ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 47, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 614.8319721252104, + "r_x1": 159.99023059325174, + "r_y1": 614.8319721252104, + "r_x2": 159.99023059325174, + "r_y2": 601.5479420792932, + "r_x3": 108.00000040046937, + "r_y3": 601.5479420792932, + "coord_origin": "TOPLEFT" + }, + "text": "dynamics. ", + "orig": "dynamics. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 48, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 672.2629723237247, + "r_x1": 311.9594411567611, + "r_y1": 672.2629723237247, + "r_x2": 311.9594411567611, + "r_y2": 657.3849222722977, + "r_x3": 72.00000026697958, + "r_y3": 657.3849222722977, + "coord_origin": "TOPLEFT" + }, + "text": "The Cultural Impact of Word Processors ", + "orig": "The Cultural Impact of Word Processors ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 49, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 699.7919624188806, + "r_x1": 494.0065318318008, + "r_y1": 699.7919624188806, + "r_x2": 494.0065318318008, + "r_y2": 686.5079323729635, + "r_x3": 72.00000026697958, + "r_y3": 686.5079323729635, + "coord_origin": "TOPLEFT" + }, + "text": "The word processor didn't just change workplaces-it changed culture. It democratized ", + "orig": "The word processor didn't just change workplaces-it changed culture. It democratized ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 50, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 713.4719524661665, + "r_x1": 474.54910175965165, + "r_y1": 713.4719524661665, + "r_x2": 474.54910175965165, + "r_y2": 700.1879524202494, + "r_x3": 72.00000026697958, + "r_y3": 700.1879524202494, + "coord_origin": "TOPLEFT" + }, + "text": "writing, enabling anyone with access to a computer to produce professional-quality ", + "orig": "writing, enabling anyone with access to a computer to produce professional-quality ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 51, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 727.6319625151116, + "r_x1": 518.9003919241085, + "r_y1": 727.6319625151116, + "r_x2": 518.9003919241085, + "r_y2": 714.3479624691945, + "r_x3": 72.00000026697958, + "r_y3": 714.3479624691945, + "coord_origin": "TOPLEFT" + }, + "text": "documents. This shift had profound implications for education, business, and creative fields: ", + "orig": "documents. This shift had profound implications for education, business, and creative fields: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "parsed_page": null, + "predictions": { + "layout": { + "clusters": [ + { + "id": 11, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 72.74493025144807, + "r": 276.7262310261146, + "b": 87.62298030287513, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9600434303283691, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 87.62298030287513, + "r_x1": 276.7262310261146, + "r_y1": 87.62298030287513, + "r_x2": 276.7262310261146, + "r_y2": 72.74493025144807, + "r_x3": 72.00000026697958, + "r_y3": 72.74493025144807, + "coord_origin": "TOPLEFT" + }, + "text": "Specialized Word Processing Tools ", + "orig": "Specialized Word Processing Tools ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 3, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 101.86798035211382, + "r": 514.6727319084321, + "b": 142.99194049426183, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9812871813774109, + "cells": [ + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 115.15197039803093, + "r_x1": 507.8394518830939, + "r_y1": 115.15197039803093, + "r_x2": 507.8394518830939, + "r_y2": 101.86798035211382, + "r_x3": 72.00000026697958, + "r_y3": 101.86798035211382, + "coord_origin": "TOPLEFT" + }, + "text": "In addition to general-purpose word processors, specialized tools have emerged to cater to ", + "orig": "In addition to general-purpose word processors, specialized tools have emerged to cater to ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 129.07196044614636, + "r_x1": 514.6727319084321, + "r_y1": 129.07196044614636, + "r_x2": 514.6727319084321, + "r_y2": 115.78796040022928, + "r_x3": 72.00000026697958, + "r_y3": 115.78796040022928, + "coord_origin": "TOPLEFT" + }, + "text": "specific industries and needs. These tools incorporate unique features tailored to their users' ", + "orig": "specific industries and needs. These tools incorporate unique features tailored to their users' ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 142.99194049426183, + "r_x1": 129.66211048079356, + "r_y1": 142.99194049426183, + "r_x2": 129.66211048079356, + "r_y2": 129.70794044834474, + "r_x3": 72.00000026697958, + "r_y3": 129.70794044834474, + "coord_origin": "TOPLEFT" + }, + "text": "workflows: ", + "orig": "workflows: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 1, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 157.30798054374623, + "r": 519.5101919263695, + "b": 225.7919907804661, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9829118251800537, + "cells": [ + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 170.21759058836926, + "r_x1": 94.63680335091797, + "r_y1": 170.21759058836926, + "r_x2": 94.63680335091797, + "r_y2": 157.86956054568725, + "r_x3": 90.00000033372447, + "r_y3": 157.86956054568725, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 170.5919805896633, + "r_x1": 277.6560410295624, + "r_y1": 170.5919805896633, + "r_x2": 277.6560410295624, + "r_y2": 157.30798054374623, + "r_x3": 108.00000040046937, + "r_y3": 157.30798054374623, + "coord_origin": "TOPLEFT" + }, + "text": "Academic and Technical Writing", + "orig": "Academic and Technical Writing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 277.65817102957027, + "r_y0": 170.5919805896633, + "r_x1": 495.26132183645365, + "r_y1": 170.5919805896633, + "r_x2": 495.26132183645365, + "r_y2": 157.30798054374623, + "r_x3": 277.65817102957027, + "r_y3": 157.30798054374623, + "coord_origin": "TOPLEFT" + }, + "text": ": Tools like LaTeX gained popularity among ", + "orig": ": Tools like LaTeX gained popularity among ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 184.27197063694928, + "r_x1": 495.5327118374599, + "r_y1": 184.27197063694928, + "r_x2": 495.5327118374599, + "r_y2": 170.98797059103208, + "r_x3": 108.00000040046937, + "r_y3": 170.98797059103208, + "coord_origin": "TOPLEFT" + }, + "text": "academics, scientists, and engineers. Unlike traditional word processors, LaTeX ", + "orig": "academics, scientists, and engineers. Unlike traditional word processors, LaTeX ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 198.1919506850645, + "r_x1": 494.8486918349235, + "r_y1": 198.1919506850645, + "r_x2": 494.8486918349235, + "r_y2": 184.90796063914763, + "r_x3": 108.00000040046937, + "r_y3": 184.90796063914763, + "coord_origin": "TOPLEFT" + }, + "text": "focuses on precise formatting, particularly for complex mathematical equations, ", + "orig": "focuses on precise formatting, particularly for complex mathematical equations, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 211.87195073235046, + "r_x1": 519.5101919263695, + "r_y1": 211.87195073235046, + "r_x2": 519.5101919263695, + "r_y2": 198.58795068643337, + "r_x3": 108.00000040046937, + "r_y3": 198.58795068643337, + "coord_origin": "TOPLEFT" + }, + "text": "scientific papers, and technical documents. It relies on a markup language to produce ", + "orig": "scientific papers, and technical documents. It relies on a markup language to produce ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 225.7919907804661, + "r_x1": 320.6426411889588, + "r_y1": 225.7919907804661, + "r_x2": 320.6426411889588, + "r_y2": 212.50799073454903, + "r_x3": 108.00000040046937, + "r_y3": 212.50799073454903, + "coord_origin": "TOPLEFT" + }, + "text": "polished documents suitable for publishing. ", + "orig": "polished documents suitable for publishing. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 4, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 226.18799078183486, + "r": 503.5271318671036, + "b": 280.9919409712686, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9800205230712891, + "cells": [ + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 239.0975908264578, + "r_x1": 94.63680335091797, + "r_y1": 239.0975908264578, + "r_x2": 94.63680335091797, + "r_y2": 226.7495707837761, + "r_x3": 90.00000033372447, + "r_y3": 226.7495707837761, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 239.47198082775196, + "r_x1": 228.9672108490218, + "r_y1": 239.47198082775196, + "r_x2": 228.9672108490218, + "r_y2": 226.18799078183486, + "r_x3": 108.00000040046937, + "r_y3": 226.18799078183486, + "coord_origin": "TOPLEFT" + }, + "text": "Screenwriting Software", + "orig": "Screenwriting Software", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 228.9668008490203, + "r_y0": 239.47198082775196, + "r_x1": 495.22037183630175, + "r_y1": 239.47198082775196, + "r_x2": 495.22037183630175, + "r_y2": 226.18799078183486, + "r_x3": 228.9668008490203, + "r_y3": 226.18799078183486, + "coord_origin": "TOPLEFT" + }, + "text": ": For screenwriters, tools like Final Draft and Celtx are ", + "orig": ": For screenwriters, tools like Final Draft and Celtx are ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 253.3919608758673, + "r_x1": 503.5271318671036, + "r_y1": 253.3919608758673, + "r_x2": 503.5271318671036, + "r_y2": 240.1079708299502, + "r_x3": 108.00000040046937, + "r_y3": 240.1079708299502, + "coord_origin": "TOPLEFT" + }, + "text": "specialized to handle scripts for film and television. These programs automate the ", + "orig": "specialized to handle scripts for film and television. These programs automate the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 267.07196092315326, + "r_x1": 457.223911695409, + "r_y1": 267.07196092315326, + "r_x2": 457.223911695409, + "r_y2": 253.78796087723617, + "r_x3": 108.00000040046937, + "r_y3": 253.78796087723617, + "coord_origin": "TOPLEFT" + }, + "text": "formatting of dialogue, scene descriptions, and other elements unique to ", + "orig": "formatting of dialogue, scene descriptions, and other elements unique to ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 280.9919409712686, + "r_x1": 179.30858066488514, + "r_y1": 280.9919409712686, + "r_x2": 179.30858066488514, + "r_y2": 267.7079409253515, + "r_x3": 108.00000040046937, + "r_y3": 267.7079409253515, + "coord_origin": "TOPLEFT" + }, + "text": "screenwriting. ", + "orig": "screenwriting. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 0, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 281.38800097263766, + "r": 524.4814519448033, + "b": 336.43194116290096, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9835862517356873, + "cells": [ + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 294.2975410172604, + "r_x1": 94.63680335091797, + "r_y1": 294.2975410172604, + "r_x2": 94.63680335091797, + "r_y2": 281.9495809745787, + "r_x3": 90.00000033372447, + "r_y3": 281.9495809745787, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 294.67193101855446, + "r_x1": 249.96240092687302, + "r_y1": 294.67193101855446, + "r_x2": 249.96240092687302, + "r_y2": 281.38800097263766, + "r_x3": 108.00000040046937, + "r_y3": 281.38800097263766, + "coord_origin": "TOPLEFT" + }, + "text": "Legal Document Processors", + "orig": "Legal Document Processors", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 249.966710926889, + "r_y0": 294.67193101855446, + "r_x1": 513.5488919042649, + "r_y1": 294.67193101855446, + "r_x2": 513.5488919042649, + "r_y2": 281.38800097263766, + "r_x3": 249.966710926889, + "r_y3": 281.38800097263766, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors tailored for legal professionals, like ", + "orig": ": Word processors tailored for legal professionals, like ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 308.5919810666702, + "r_x1": 524.4814519448033, + "r_y1": 308.5919810666702, + "r_x2": 524.4814519448033, + "r_y2": 295.3079810207531, + "r_x3": 108.00000040046937, + "r_y3": 295.3079810207531, + "coord_origin": "TOPLEFT" + }, + "text": "WordPerfect, offered features such as redlining (early version tracking) and document ", + "orig": "WordPerfect, offered features such as redlining (early version tracking) and document ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 322.27197111395594, + "r_x1": 489.909551816609, + "r_y1": 322.27197111395594, + "r_x2": 489.909551816609, + "r_y2": 308.98797106803886, + "r_x3": 108.00000040046937, + "r_y3": 308.98797106803886, + "coord_origin": "TOPLEFT" + }, + "text": "comparison. Even today, many law firms rely on these tools due to their robust ", + "orig": "comparison. Even today, many law firms rely on these tools due to their robust ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 336.43194116290096, + "r_x1": 343.2655012728455, + "r_y1": 336.43194116290096, + "r_x2": 343.2655012728455, + "r_y2": 323.1479511169839, + "r_x3": 108.00000040046937, + "r_y3": 323.1479511169839, + "coord_origin": "TOPLEFT" + }, + "text": "formatting options for contracts and legal briefs. ", + "orig": "formatting options for contracts and legal briefs. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 12, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 378.7449313091588, + "r": 340.46878126247515, + "b": 393.62298136058575, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9593706130981445, + "cells": [ + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 393.62298136058575, + "r_x1": 340.46878126247515, + "r_y1": 393.62298136058575, + "r_x2": 340.46878126247515, + "r_y2": 378.7449313091588, + "r_x3": 72.00000026697958, + "r_y3": 378.7449313091588, + "coord_origin": "TOPLEFT" + }, + "text": "Key Features That Changed Word Processing ", + "orig": "Key Features That Changed Word Processing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 6, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 407.86798140982467, + "r": 514.7196019086059, + "b": 448.9919715519727, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9789240956306458, + "cells": [ + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 421.1519714557417, + "r_x1": 514.7196019086059, + "r_y1": 421.1519714557417, + "r_x2": 514.7196019086059, + "r_y2": 407.86798140982467, + "r_x3": 72.00000026697958, + "r_y3": 407.86798140982467, + "coord_origin": "TOPLEFT" + }, + "text": "The evolution of word processors wasn't just about hardware or software improvements-it ", + "orig": "The evolution of word processors wasn't just about hardware or software improvements-it ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 435.07196150385715, + "r_x1": 490.85507182011503, + "r_y1": 435.07196150385715, + "r_x2": 490.85507182011503, + "r_y2": 421.78796145794007, + "r_x3": 72.00000026697958, + "r_y3": 421.78796145794007, + "coord_origin": "TOPLEFT" + }, + "text": "was about the features that revolutionized how people wrote and edited. Some of these ", + "orig": "was about the features that revolutionized how people wrote and edited. Some of these ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 448.9919715519727, + "r_x1": 227.60155084395785, + "r_y1": 448.9919715519727, + "r_x2": 227.60155084395785, + "r_y2": 435.7079415060554, + "r_x3": 72.00000026697958, + "r_y3": 435.7079415060554, + "coord_origin": "TOPLEFT" + }, + "text": "transformative features include: ", + "orig": "transformative features include: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 8, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 463.30795160145686, + "r": 509.2687418883938, + "b": 490.51196169548945, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9704653024673462, + "cells": [ + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 476.5919816473741, + "r_x1": 99.00000036709692, + "r_y1": 476.5919816473741, + "r_x2": 99.00000036709692, + "r_y2": 463.30795160145686, + "r_x3": 90.00000033372447, + "r_y3": 463.30795160145686, + "coord_origin": "TOPLEFT" + }, + "text": "1.", + "orig": "1.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 28, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 476.5919816473741, + "r_x1": 166.01521061559265, + "r_y1": 476.5919816473741, + "r_x2": 166.01521061559265, + "r_y2": 463.30795160145686, + "r_x3": 108.00000040046937, + "r_y3": 463.30795160145686, + "coord_origin": "TOPLEFT" + }, + "text": "Undo/Redo", + "orig": "Undo/Redo", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 29, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 166.0136606155869, + "r_y0": 476.5919816473741, + "r_x1": 509.2687418883938, + "r_y1": 476.5919816473741, + "r_x2": 509.2687418883938, + "r_y2": 463.30795160145686, + "r_x3": 166.0136606155869, + "r_y3": 463.30795160145686, + "coord_origin": "TOPLEFT" + }, + "text": ": Introduced in the 1980s, the ability to undo mistakes and redo actions ", + "orig": ": Introduced in the 1980s, the ability to undo mistakes and redo actions ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 30, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 490.51196169548945, + "r_x1": 379.87488140859494, + "r_y1": 490.51196169548945, + "r_x2": 379.87488140859494, + "r_y2": 477.2279316495723, + "r_x3": 108.00000040046937, + "r_y3": 477.2279316495723, + "coord_origin": "TOPLEFT" + }, + "text": "made experimentation and error correction much easier. ", + "orig": "made experimentation and error correction much easier. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 10, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 490.90796169685825, + "r": 516.6022319155867, + "b": 518.1119717908908, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9631043672561646, + "cells": [ + { + "index": 31, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 504.1919517427753, + "r_x1": 99.00000036709692, + "r_y1": 504.1919517427753, + "r_x2": 99.00000036709692, + "r_y2": 490.90796169685825, + "r_x3": 90.00000033372447, + "r_y3": 490.90796169685825, + "coord_origin": "TOPLEFT" + }, + "text": "2.", + "orig": "2.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 32, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 504.1919517427753, + "r_x1": 281.9975910456611, + "r_y1": 504.1919517427753, + "r_x2": 281.9975910456611, + "r_y2": 490.90796169685825, + "r_x3": 108.00000040046937, + "r_y3": 490.90796169685825, + "coord_origin": "TOPLEFT" + }, + "text": "Spell Check and Grammar Check", + "orig": "Spell Check and Grammar Check", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 33, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 282.00000104567005, + "r_y0": 504.1919517427753, + "r_x1": 516.6022319155867, + "r_y1": 504.1919517427753, + "r_x2": 516.6022319155867, + "r_y2": 490.90796169685825, + "r_x3": 282.00000104567005, + "r_y3": 490.90796169685825, + "coord_origin": "TOPLEFT" + }, + "text": ": By the 1990s, these became standard, allowing ", + "orig": ": By the 1990s, these became standard, allowing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 34, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 518.1119717908908, + "r_x1": 273.2930310133841, + "r_y1": 518.1119717908908, + "r_x2": 273.2930310133841, + "r_y2": 504.82794174497366, + "r_x3": 108.00000040046937, + "r_y3": 504.82794174497366, + "coord_origin": "TOPLEFT" + }, + "text": "users to spot errors automatically. ", + "orig": "users to spot errors automatically. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 9, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 518.5079317922596, + "r": 486.90097180545297, + "b": 545.7119718862922, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9673018455505371, + "cells": [ + { + "index": 35, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 531.7919618381768, + "r_x1": 99.00000036709692, + "r_y1": 531.7919618381768, + "r_x2": 99.00000036709692, + "r_y2": 518.5079317922596, + "r_x3": 90.00000033372447, + "r_y3": 518.5079317922596, + "coord_origin": "TOPLEFT" + }, + "text": "3.", + "orig": "3.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 36, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 531.7919618381768, + "r_x1": 161.32320059819446, + "r_y1": 531.7919618381768, + "r_x2": 161.32320059819446, + "r_y2": 518.5079317922596, + "r_x3": 108.00000040046937, + "r_y3": 518.5079317922596, + "coord_origin": "TOPLEFT" + }, + "text": "Templates", + "orig": "Templates", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 37, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 161.32617059820544, + "r_y0": 531.7919618381768, + "r_x1": 486.90097180545297, + "r_y1": 531.7919618381768, + "r_x2": 486.90097180545297, + "r_y2": 518.5079317922596, + "r_x3": 161.32617059820544, + "r_y3": 518.5079317922596, + "coord_origin": "TOPLEFT" + }, + "text": ": Pre-designed formats for documents, such as resumes, letters, and ", + "orig": ": Pre-designed formats for documents, such as resumes, letters, and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 38, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 545.7119718862922, + "r_x1": 268.2890309948291, + "r_y1": 545.7119718862922, + "r_x2": 268.2890309948291, + "r_y2": 532.427951840375, + "r_x3": 108.00000040046937, + "r_y3": 532.427951840375, + "coord_origin": "TOPLEFT" + }, + "text": "invoices, helped users save time. ", + "orig": "invoices, helped users save time. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 7, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 546.1079418876609, + "r": 502.21259186222926, + "b": 573.3119819816936, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9727876782417297, + "cells": [ + { + "index": 39, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 559.391961933578, + "r_x1": 99.00000036709692, + "r_y1": 559.391961933578, + "r_x2": 99.00000036709692, + "r_y2": 546.1079418876609, + "r_x3": 90.00000033372447, + "r_y3": 546.1079418876609, + "coord_origin": "TOPLEFT" + }, + "text": "4.", + "orig": "4.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 40, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 559.391961933578, + "r_x1": 186.338390690952, + "r_y1": 559.391961933578, + "r_x2": 186.338390690952, + "r_y2": 546.1079418876609, + "r_x3": 108.00000040046937, + "r_y3": 546.1079418876609, + "coord_origin": "TOPLEFT" + }, + "text": "Track Changes", + "orig": "Track Changes", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 41, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 186.3398406909574, + "r_y0": 559.391961933578, + "r_x1": 502.21259186222926, + "r_y1": 559.391961933578, + "r_x2": 502.21259186222926, + "r_y2": 546.1079418876609, + "r_x3": 186.3398406909574, + "r_y3": 546.1079418876609, + "coord_origin": "TOPLEFT" + }, + "text": ": A game-changer for collaboration, this feature allowed multiple ", + "orig": ": A game-changer for collaboration, this feature allowed multiple ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 42, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 573.3119819816936, + "r_x1": 384.6211214261943, + "r_y1": 573.3119819816936, + "r_x2": 384.6211214261943, + "r_y2": 560.0279519357764, + "r_x3": 108.00000040046937, + "r_y3": 560.0279519357764, + "coord_origin": "TOPLEFT" + }, + "text": "users to suggest edits while maintaining the original text. ", + "orig": "users to suggest edits while maintaining the original text. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 5, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 573.7079419830623, + "r": 521.8798819351565, + "b": 614.8319721252104, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9798402190208435, + "cells": [ + { + "index": 43, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 586.9919720289795, + "r_x1": 99.00000036709692, + "r_y1": 586.9919720289795, + "r_x2": 99.00000036709692, + "r_y2": 573.7079419830623, + "r_x3": 90.00000033372447, + "r_y3": 573.7079419830623, + "coord_origin": "TOPLEFT" + }, + "text": "5.", + "orig": "5.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 44, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 586.9919720289795, + "r_x1": 236.3166508762739, + "r_y1": 586.9919720289795, + "r_x2": 236.3166508762739, + "r_y2": 573.7079419830623, + "r_x3": 108.00000040046937, + "r_y3": 573.7079419830623, + "coord_origin": "TOPLEFT" + }, + "text": "Real-Time Collaboration", + "orig": "Real-Time Collaboration", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 45, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 236.32033087628753, + "r_y0": 586.9919720289795, + "r_x1": 491.9297818241001, + "r_y1": 586.9919720289795, + "r_x2": 491.9297818241001, + "r_y2": 573.7079419830623, + "r_x3": 236.32033087628753, + "r_y3": 573.7079419830623, + "coord_origin": "TOPLEFT" + }, + "text": ": Tools like Google Docs and Microsoft 365 enabled ", + "orig": ": Tools like Google Docs and Microsoft 365 enabled ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 46, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 600.9119520770948, + "r_x1": 521.8798819351565, + "r_y1": 600.9119520770948, + "r_x2": 521.8798819351565, + "r_y2": 587.6279620311777, + "r_x3": 108.00000040046937, + "r_y3": 587.6279620311777, + "coord_origin": "TOPLEFT" + }, + "text": "multiple users to edit the same document simultaneously, forever changing teamwork ", + "orig": "multiple users to edit the same document simultaneously, forever changing teamwork ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 47, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 614.8319721252104, + "r_x1": 159.99023059325174, + "r_y1": 614.8319721252104, + "r_x2": 159.99023059325174, + "r_y2": 601.5479420792932, + "r_x3": 108.00000040046937, + "r_y3": 601.5479420792932, + "coord_origin": "TOPLEFT" + }, + "text": "dynamics. ", + "orig": "dynamics. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 13, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 657.3849222722977, + "r": 311.9594411567611, + "b": 672.2629723237247, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9490435123443604, + "cells": [ + { + "index": 48, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 672.2629723237247, + "r_x1": 311.9594411567611, + "r_y1": 672.2629723237247, + "r_x2": 311.9594411567611, + "r_y2": 657.3849222722977, + "r_x3": 72.00000026697958, + "r_y3": 657.3849222722977, + "coord_origin": "TOPLEFT" + }, + "text": "The Cultural Impact of Word Processors ", + "orig": "The Cultural Impact of Word Processors ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 2, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 686.5079323729635, + "r": 518.9003919241085, + "b": 727.6319625151116, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9820713400840759, + "cells": [ + { + "index": 49, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 699.7919624188806, + "r_x1": 494.0065318318008, + "r_y1": 699.7919624188806, + "r_x2": 494.0065318318008, + "r_y2": 686.5079323729635, + "r_x3": 72.00000026697958, + "r_y3": 686.5079323729635, + "coord_origin": "TOPLEFT" + }, + "text": "The word processor didn't just change workplaces-it changed culture. It democratized ", + "orig": "The word processor didn't just change workplaces-it changed culture. It democratized ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 50, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 713.4719524661665, + "r_x1": 474.54910175965165, + "r_y1": 713.4719524661665, + "r_x2": 474.54910175965165, + "r_y2": 700.1879524202494, + "r_x3": 72.00000026697958, + "r_y3": 700.1879524202494, + "coord_origin": "TOPLEFT" + }, + "text": "writing, enabling anyone with access to a computer to produce professional-quality ", + "orig": "writing, enabling anyone with access to a computer to produce professional-quality ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 51, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 727.6319625151116, + "r_x1": 518.9003919241085, + "r_y1": 727.6319625151116, + "r_x2": 518.9003919241085, + "r_y2": 714.3479624691945, + "r_x3": 72.00000026697958, + "r_y3": 714.3479624691945, + "coord_origin": "TOPLEFT" + }, + "text": "documents. This shift had profound implications for education, business, and creative fields: ", + "orig": "documents. This shift had profound implications for education, business, and creative fields: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + } + ] + }, + "tablestructure": { + "table_map": {} + }, + "figures_classification": null, + "equations_prediction": null, + "vlm_response": null + }, + "assembled": { + "elements": [ + { + "label": "section_header", + "id": 11, + "page_no": 2, + "cluster": { + "id": 11, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 72.74493025144807, + "r": 276.7262310261146, + "b": 87.62298030287513, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9600434303283691, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 87.62298030287513, + "r_x1": 276.7262310261146, + "r_y1": 87.62298030287513, + "r_x2": 276.7262310261146, + "r_y2": 72.74493025144807, + "r_x3": 72.00000026697958, + "r_y3": 72.74493025144807, + "coord_origin": "TOPLEFT" + }, + "text": "Specialized Word Processing Tools ", + "orig": "Specialized Word Processing Tools ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "Specialized Word Processing Tools" + }, + { + "label": "text", + "id": 3, + "page_no": 2, + "cluster": { + "id": 3, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 101.86798035211382, + "r": 514.6727319084321, + "b": 142.99194049426183, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9812871813774109, + "cells": [ + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 115.15197039803093, + "r_x1": 507.8394518830939, + "r_y1": 115.15197039803093, + "r_x2": 507.8394518830939, + "r_y2": 101.86798035211382, + "r_x3": 72.00000026697958, + "r_y3": 101.86798035211382, + "coord_origin": "TOPLEFT" + }, + "text": "In addition to general-purpose word processors, specialized tools have emerged to cater to ", + "orig": "In addition to general-purpose word processors, specialized tools have emerged to cater to ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 129.07196044614636, + "r_x1": 514.6727319084321, + "r_y1": 129.07196044614636, + "r_x2": 514.6727319084321, + "r_y2": 115.78796040022928, + "r_x3": 72.00000026697958, + "r_y3": 115.78796040022928, + "coord_origin": "TOPLEFT" + }, + "text": "specific industries and needs. These tools incorporate unique features tailored to their users' ", + "orig": "specific industries and needs. These tools incorporate unique features tailored to their users' ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 142.99194049426183, + "r_x1": 129.66211048079356, + "r_y1": 142.99194049426183, + "r_x2": 129.66211048079356, + "r_y2": 129.70794044834474, + "r_x3": 72.00000026697958, + "r_y3": 129.70794044834474, + "coord_origin": "TOPLEFT" + }, + "text": "workflows: ", + "orig": "workflows: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "In addition to general-purpose word processors, specialized tools have emerged to cater to specific industries and needs. These tools incorporate unique features tailored to their users' workflows:" + }, + { + "label": "list_item", + "id": 1, + "page_no": 2, + "cluster": { + "id": 1, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 157.30798054374623, + "r": 519.5101919263695, + "b": 225.7919907804661, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9829118251800537, + "cells": [ + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 170.21759058836926, + "r_x1": 94.63680335091797, + "r_y1": 170.21759058836926, + "r_x2": 94.63680335091797, + "r_y2": 157.86956054568725, + "r_x3": 90.00000033372447, + "r_y3": 157.86956054568725, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 170.5919805896633, + "r_x1": 277.6560410295624, + "r_y1": 170.5919805896633, + "r_x2": 277.6560410295624, + "r_y2": 157.30798054374623, + "r_x3": 108.00000040046937, + "r_y3": 157.30798054374623, + "coord_origin": "TOPLEFT" + }, + "text": "Academic and Technical Writing", + "orig": "Academic and Technical Writing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 277.65817102957027, + "r_y0": 170.5919805896633, + "r_x1": 495.26132183645365, + "r_y1": 170.5919805896633, + "r_x2": 495.26132183645365, + "r_y2": 157.30798054374623, + "r_x3": 277.65817102957027, + "r_y3": 157.30798054374623, + "coord_origin": "TOPLEFT" + }, + "text": ": Tools like LaTeX gained popularity among ", + "orig": ": Tools like LaTeX gained popularity among ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 184.27197063694928, + "r_x1": 495.5327118374599, + "r_y1": 184.27197063694928, + "r_x2": 495.5327118374599, + "r_y2": 170.98797059103208, + "r_x3": 108.00000040046937, + "r_y3": 170.98797059103208, + "coord_origin": "TOPLEFT" + }, + "text": "academics, scientists, and engineers. Unlike traditional word processors, LaTeX ", + "orig": "academics, scientists, and engineers. Unlike traditional word processors, LaTeX ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 198.1919506850645, + "r_x1": 494.8486918349235, + "r_y1": 198.1919506850645, + "r_x2": 494.8486918349235, + "r_y2": 184.90796063914763, + "r_x3": 108.00000040046937, + "r_y3": 184.90796063914763, + "coord_origin": "TOPLEFT" + }, + "text": "focuses on precise formatting, particularly for complex mathematical equations, ", + "orig": "focuses on precise formatting, particularly for complex mathematical equations, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 211.87195073235046, + "r_x1": 519.5101919263695, + "r_y1": 211.87195073235046, + "r_x2": 519.5101919263695, + "r_y2": 198.58795068643337, + "r_x3": 108.00000040046937, + "r_y3": 198.58795068643337, + "coord_origin": "TOPLEFT" + }, + "text": "scientific papers, and technical documents. It relies on a markup language to produce ", + "orig": "scientific papers, and technical documents. It relies on a markup language to produce ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 225.7919907804661, + "r_x1": 320.6426411889588, + "r_y1": 225.7919907804661, + "r_x2": 320.6426411889588, + "r_y2": 212.50799073454903, + "r_x3": 108.00000040046937, + "r_y3": 212.50799073454903, + "coord_origin": "TOPLEFT" + }, + "text": "polished documents suitable for publishing. ", + "orig": "polished documents suitable for publishing. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Academic and Technical Writing : Tools like LaTeX gained popularity among academics, scientists, and engineers. Unlike traditional word processors, LaTeX focuses on precise formatting, particularly for complex mathematical equations, scientific papers, and technical documents. It relies on a markup language to produce polished documents suitable for publishing." + }, + { + "label": "list_item", + "id": 4, + "page_no": 2, + "cluster": { + "id": 4, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 226.18799078183486, + "r": 503.5271318671036, + "b": 280.9919409712686, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9800205230712891, + "cells": [ + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 239.0975908264578, + "r_x1": 94.63680335091797, + "r_y1": 239.0975908264578, + "r_x2": 94.63680335091797, + "r_y2": 226.7495707837761, + "r_x3": 90.00000033372447, + "r_y3": 226.7495707837761, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 239.47198082775196, + "r_x1": 228.9672108490218, + "r_y1": 239.47198082775196, + "r_x2": 228.9672108490218, + "r_y2": 226.18799078183486, + "r_x3": 108.00000040046937, + "r_y3": 226.18799078183486, + "coord_origin": "TOPLEFT" + }, + "text": "Screenwriting Software", + "orig": "Screenwriting Software", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 228.9668008490203, + "r_y0": 239.47198082775196, + "r_x1": 495.22037183630175, + "r_y1": 239.47198082775196, + "r_x2": 495.22037183630175, + "r_y2": 226.18799078183486, + "r_x3": 228.9668008490203, + "r_y3": 226.18799078183486, + "coord_origin": "TOPLEFT" + }, + "text": ": For screenwriters, tools like Final Draft and Celtx are ", + "orig": ": For screenwriters, tools like Final Draft and Celtx are ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 253.3919608758673, + "r_x1": 503.5271318671036, + "r_y1": 253.3919608758673, + "r_x2": 503.5271318671036, + "r_y2": 240.1079708299502, + "r_x3": 108.00000040046937, + "r_y3": 240.1079708299502, + "coord_origin": "TOPLEFT" + }, + "text": "specialized to handle scripts for film and television. These programs automate the ", + "orig": "specialized to handle scripts for film and television. These programs automate the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 267.07196092315326, + "r_x1": 457.223911695409, + "r_y1": 267.07196092315326, + "r_x2": 457.223911695409, + "r_y2": 253.78796087723617, + "r_x3": 108.00000040046937, + "r_y3": 253.78796087723617, + "coord_origin": "TOPLEFT" + }, + "text": "formatting of dialogue, scene descriptions, and other elements unique to ", + "orig": "formatting of dialogue, scene descriptions, and other elements unique to ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 280.9919409712686, + "r_x1": 179.30858066488514, + "r_y1": 280.9919409712686, + "r_x2": 179.30858066488514, + "r_y2": 267.7079409253515, + "r_x3": 108.00000040046937, + "r_y3": 267.7079409253515, + "coord_origin": "TOPLEFT" + }, + "text": "screenwriting. ", + "orig": "screenwriting. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Screenwriting Software : For screenwriters, tools like Final Draft and Celtx are specialized to handle scripts for film and television. These programs automate the formatting of dialogue, scene descriptions, and other elements unique to screenwriting." + }, + { + "label": "list_item", + "id": 0, + "page_no": 2, + "cluster": { + "id": 0, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 281.38800097263766, + "r": 524.4814519448033, + "b": 336.43194116290096, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9835862517356873, + "cells": [ + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 294.2975410172604, + "r_x1": 94.63680335091797, + "r_y1": 294.2975410172604, + "r_x2": 94.63680335091797, + "r_y2": 281.9495809745787, + "r_x3": 90.00000033372447, + "r_y3": 281.9495809745787, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 294.67193101855446, + "r_x1": 249.96240092687302, + "r_y1": 294.67193101855446, + "r_x2": 249.96240092687302, + "r_y2": 281.38800097263766, + "r_x3": 108.00000040046937, + "r_y3": 281.38800097263766, + "coord_origin": "TOPLEFT" + }, + "text": "Legal Document Processors", + "orig": "Legal Document Processors", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 249.966710926889, + "r_y0": 294.67193101855446, + "r_x1": 513.5488919042649, + "r_y1": 294.67193101855446, + "r_x2": 513.5488919042649, + "r_y2": 281.38800097263766, + "r_x3": 249.966710926889, + "r_y3": 281.38800097263766, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors tailored for legal professionals, like ", + "orig": ": Word processors tailored for legal professionals, like ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 308.5919810666702, + "r_x1": 524.4814519448033, + "r_y1": 308.5919810666702, + "r_x2": 524.4814519448033, + "r_y2": 295.3079810207531, + "r_x3": 108.00000040046937, + "r_y3": 295.3079810207531, + "coord_origin": "TOPLEFT" + }, + "text": "WordPerfect, offered features such as redlining (early version tracking) and document ", + "orig": "WordPerfect, offered features such as redlining (early version tracking) and document ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 322.27197111395594, + "r_x1": 489.909551816609, + "r_y1": 322.27197111395594, + "r_x2": 489.909551816609, + "r_y2": 308.98797106803886, + "r_x3": 108.00000040046937, + "r_y3": 308.98797106803886, + "coord_origin": "TOPLEFT" + }, + "text": "comparison. Even today, many law firms rely on these tools due to their robust ", + "orig": "comparison. Even today, many law firms rely on these tools due to their robust ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 336.43194116290096, + "r_x1": 343.2655012728455, + "r_y1": 336.43194116290096, + "r_x2": 343.2655012728455, + "r_y2": 323.1479511169839, + "r_x3": 108.00000040046937, + "r_y3": 323.1479511169839, + "coord_origin": "TOPLEFT" + }, + "text": "formatting options for contracts and legal briefs. ", + "orig": "formatting options for contracts and legal briefs. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Legal Document Processors : Word processors tailored for legal professionals, like WordPerfect, offered features such as redlining (early version tracking) and document comparison. Even today, many law firms rely on these tools due to their robust formatting options for contracts and legal briefs." + }, + { + "label": "section_header", + "id": 12, + "page_no": 2, + "cluster": { + "id": 12, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 378.7449313091588, + "r": 340.46878126247515, + "b": 393.62298136058575, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9593706130981445, + "cells": [ + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 393.62298136058575, + "r_x1": 340.46878126247515, + "r_y1": 393.62298136058575, + "r_x2": 340.46878126247515, + "r_y2": 378.7449313091588, + "r_x3": 72.00000026697958, + "r_y3": 378.7449313091588, + "coord_origin": "TOPLEFT" + }, + "text": "Key Features That Changed Word Processing ", + "orig": "Key Features That Changed Word Processing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "Key Features That Changed Word Processing" + }, + { + "label": "text", + "id": 6, + "page_no": 2, + "cluster": { + "id": 6, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 407.86798140982467, + "r": 514.7196019086059, + "b": 448.9919715519727, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9789240956306458, + "cells": [ + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 421.1519714557417, + "r_x1": 514.7196019086059, + "r_y1": 421.1519714557417, + "r_x2": 514.7196019086059, + "r_y2": 407.86798140982467, + "r_x3": 72.00000026697958, + "r_y3": 407.86798140982467, + "coord_origin": "TOPLEFT" + }, + "text": "The evolution of word processors wasn't just about hardware or software improvements-it ", + "orig": "The evolution of word processors wasn't just about hardware or software improvements-it ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 435.07196150385715, + "r_x1": 490.85507182011503, + "r_y1": 435.07196150385715, + "r_x2": 490.85507182011503, + "r_y2": 421.78796145794007, + "r_x3": 72.00000026697958, + "r_y3": 421.78796145794007, + "coord_origin": "TOPLEFT" + }, + "text": "was about the features that revolutionized how people wrote and edited. Some of these ", + "orig": "was about the features that revolutionized how people wrote and edited. Some of these ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 448.9919715519727, + "r_x1": 227.60155084395785, + "r_y1": 448.9919715519727, + "r_x2": 227.60155084395785, + "r_y2": 435.7079415060554, + "r_x3": 72.00000026697958, + "r_y3": 435.7079415060554, + "coord_origin": "TOPLEFT" + }, + "text": "transformative features include: ", + "orig": "transformative features include: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The evolution of word processors wasn't just about hardware or software improvements-it was about the features that revolutionized how people wrote and edited. Some of these transformative features include:" + }, + { + "label": "list_item", + "id": 8, + "page_no": 2, + "cluster": { + "id": 8, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 463.30795160145686, + "r": 509.2687418883938, + "b": 490.51196169548945, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9704653024673462, + "cells": [ + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 476.5919816473741, + "r_x1": 99.00000036709692, + "r_y1": 476.5919816473741, + "r_x2": 99.00000036709692, + "r_y2": 463.30795160145686, + "r_x3": 90.00000033372447, + "r_y3": 463.30795160145686, + "coord_origin": "TOPLEFT" + }, + "text": "1.", + "orig": "1.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 28, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 476.5919816473741, + "r_x1": 166.01521061559265, + "r_y1": 476.5919816473741, + "r_x2": 166.01521061559265, + "r_y2": 463.30795160145686, + "r_x3": 108.00000040046937, + "r_y3": 463.30795160145686, + "coord_origin": "TOPLEFT" + }, + "text": "Undo/Redo", + "orig": "Undo/Redo", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 29, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 166.0136606155869, + "r_y0": 476.5919816473741, + "r_x1": 509.2687418883938, + "r_y1": 476.5919816473741, + "r_x2": 509.2687418883938, + "r_y2": 463.30795160145686, + "r_x3": 166.0136606155869, + "r_y3": 463.30795160145686, + "coord_origin": "TOPLEFT" + }, + "text": ": Introduced in the 1980s, the ability to undo mistakes and redo actions ", + "orig": ": Introduced in the 1980s, the ability to undo mistakes and redo actions ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 30, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 490.51196169548945, + "r_x1": 379.87488140859494, + "r_y1": 490.51196169548945, + "r_x2": 379.87488140859494, + "r_y2": 477.2279316495723, + "r_x3": 108.00000040046937, + "r_y3": 477.2279316495723, + "coord_origin": "TOPLEFT" + }, + "text": "made experimentation and error correction much easier. ", + "orig": "made experimentation and error correction much easier. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "1. Undo/Redo : Introduced in the 1980s, the ability to undo mistakes and redo actions made experimentation and error correction much easier." + }, + { + "label": "list_item", + "id": 10, + "page_no": 2, + "cluster": { + "id": 10, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 490.90796169685825, + "r": 516.6022319155867, + "b": 518.1119717908908, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9631043672561646, + "cells": [ + { + "index": 31, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 504.1919517427753, + "r_x1": 99.00000036709692, + "r_y1": 504.1919517427753, + "r_x2": 99.00000036709692, + "r_y2": 490.90796169685825, + "r_x3": 90.00000033372447, + "r_y3": 490.90796169685825, + "coord_origin": "TOPLEFT" + }, + "text": "2.", + "orig": "2.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 32, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 504.1919517427753, + "r_x1": 281.9975910456611, + "r_y1": 504.1919517427753, + "r_x2": 281.9975910456611, + "r_y2": 490.90796169685825, + "r_x3": 108.00000040046937, + "r_y3": 490.90796169685825, + "coord_origin": "TOPLEFT" + }, + "text": "Spell Check and Grammar Check", + "orig": "Spell Check and Grammar Check", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 33, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 282.00000104567005, + "r_y0": 504.1919517427753, + "r_x1": 516.6022319155867, + "r_y1": 504.1919517427753, + "r_x2": 516.6022319155867, + "r_y2": 490.90796169685825, + "r_x3": 282.00000104567005, + "r_y3": 490.90796169685825, + "coord_origin": "TOPLEFT" + }, + "text": ": By the 1990s, these became standard, allowing ", + "orig": ": By the 1990s, these became standard, allowing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 34, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 518.1119717908908, + "r_x1": 273.2930310133841, + "r_y1": 518.1119717908908, + "r_x2": 273.2930310133841, + "r_y2": 504.82794174497366, + "r_x3": 108.00000040046937, + "r_y3": 504.82794174497366, + "coord_origin": "TOPLEFT" + }, + "text": "users to spot errors automatically. ", + "orig": "users to spot errors automatically. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "2. Spell Check and Grammar Check : By the 1990s, these became standard, allowing users to spot errors automatically." + }, + { + "label": "list_item", + "id": 9, + "page_no": 2, + "cluster": { + "id": 9, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 518.5079317922596, + "r": 486.90097180545297, + "b": 545.7119718862922, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9673018455505371, + "cells": [ + { + "index": 35, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 531.7919618381768, + "r_x1": 99.00000036709692, + "r_y1": 531.7919618381768, + "r_x2": 99.00000036709692, + "r_y2": 518.5079317922596, + "r_x3": 90.00000033372447, + "r_y3": 518.5079317922596, + "coord_origin": "TOPLEFT" + }, + "text": "3.", + "orig": "3.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 36, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 531.7919618381768, + "r_x1": 161.32320059819446, + "r_y1": 531.7919618381768, + "r_x2": 161.32320059819446, + "r_y2": 518.5079317922596, + "r_x3": 108.00000040046937, + "r_y3": 518.5079317922596, + "coord_origin": "TOPLEFT" + }, + "text": "Templates", + "orig": "Templates", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 37, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 161.32617059820544, + "r_y0": 531.7919618381768, + "r_x1": 486.90097180545297, + "r_y1": 531.7919618381768, + "r_x2": 486.90097180545297, + "r_y2": 518.5079317922596, + "r_x3": 161.32617059820544, + "r_y3": 518.5079317922596, + "coord_origin": "TOPLEFT" + }, + "text": ": Pre-designed formats for documents, such as resumes, letters, and ", + "orig": ": Pre-designed formats for documents, such as resumes, letters, and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 38, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 545.7119718862922, + "r_x1": 268.2890309948291, + "r_y1": 545.7119718862922, + "r_x2": 268.2890309948291, + "r_y2": 532.427951840375, + "r_x3": 108.00000040046937, + "r_y3": 532.427951840375, + "coord_origin": "TOPLEFT" + }, + "text": "invoices, helped users save time. ", + "orig": "invoices, helped users save time. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "3. Templates : Pre-designed formats for documents, such as resumes, letters, and invoices, helped users save time." + }, + { + "label": "list_item", + "id": 7, + "page_no": 2, + "cluster": { + "id": 7, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 546.1079418876609, + "r": 502.21259186222926, + "b": 573.3119819816936, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9727876782417297, + "cells": [ + { + "index": 39, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 559.391961933578, + "r_x1": 99.00000036709692, + "r_y1": 559.391961933578, + "r_x2": 99.00000036709692, + "r_y2": 546.1079418876609, + "r_x3": 90.00000033372447, + "r_y3": 546.1079418876609, + "coord_origin": "TOPLEFT" + }, + "text": "4.", + "orig": "4.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 40, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 559.391961933578, + "r_x1": 186.338390690952, + "r_y1": 559.391961933578, + "r_x2": 186.338390690952, + "r_y2": 546.1079418876609, + "r_x3": 108.00000040046937, + "r_y3": 546.1079418876609, + "coord_origin": "TOPLEFT" + }, + "text": "Track Changes", + "orig": "Track Changes", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 41, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 186.3398406909574, + "r_y0": 559.391961933578, + "r_x1": 502.21259186222926, + "r_y1": 559.391961933578, + "r_x2": 502.21259186222926, + "r_y2": 546.1079418876609, + "r_x3": 186.3398406909574, + "r_y3": 546.1079418876609, + "coord_origin": "TOPLEFT" + }, + "text": ": A game-changer for collaboration, this feature allowed multiple ", + "orig": ": A game-changer for collaboration, this feature allowed multiple ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 42, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 573.3119819816936, + "r_x1": 384.6211214261943, + "r_y1": 573.3119819816936, + "r_x2": 384.6211214261943, + "r_y2": 560.0279519357764, + "r_x3": 108.00000040046937, + "r_y3": 560.0279519357764, + "coord_origin": "TOPLEFT" + }, + "text": "users to suggest edits while maintaining the original text. ", + "orig": "users to suggest edits while maintaining the original text. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "4. Track Changes : A game-changer for collaboration, this feature allowed multiple users to suggest edits while maintaining the original text." + }, + { + "label": "list_item", + "id": 5, + "page_no": 2, + "cluster": { + "id": 5, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 573.7079419830623, + "r": 521.8798819351565, + "b": 614.8319721252104, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9798402190208435, + "cells": [ + { + "index": 43, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 586.9919720289795, + "r_x1": 99.00000036709692, + "r_y1": 586.9919720289795, + "r_x2": 99.00000036709692, + "r_y2": 573.7079419830623, + "r_x3": 90.00000033372447, + "r_y3": 573.7079419830623, + "coord_origin": "TOPLEFT" + }, + "text": "5.", + "orig": "5.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 44, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 586.9919720289795, + "r_x1": 236.3166508762739, + "r_y1": 586.9919720289795, + "r_x2": 236.3166508762739, + "r_y2": 573.7079419830623, + "r_x3": 108.00000040046937, + "r_y3": 573.7079419830623, + "coord_origin": "TOPLEFT" + }, + "text": "Real-Time Collaboration", + "orig": "Real-Time Collaboration", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 45, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 236.32033087628753, + "r_y0": 586.9919720289795, + "r_x1": 491.9297818241001, + "r_y1": 586.9919720289795, + "r_x2": 491.9297818241001, + "r_y2": 573.7079419830623, + "r_x3": 236.32033087628753, + "r_y3": 573.7079419830623, + "coord_origin": "TOPLEFT" + }, + "text": ": Tools like Google Docs and Microsoft 365 enabled ", + "orig": ": Tools like Google Docs and Microsoft 365 enabled ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 46, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 600.9119520770948, + "r_x1": 521.8798819351565, + "r_y1": 600.9119520770948, + "r_x2": 521.8798819351565, + "r_y2": 587.6279620311777, + "r_x3": 108.00000040046937, + "r_y3": 587.6279620311777, + "coord_origin": "TOPLEFT" + }, + "text": "multiple users to edit the same document simultaneously, forever changing teamwork ", + "orig": "multiple users to edit the same document simultaneously, forever changing teamwork ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 47, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 614.8319721252104, + "r_x1": 159.99023059325174, + "r_y1": 614.8319721252104, + "r_x2": 159.99023059325174, + "r_y2": 601.5479420792932, + "r_x3": 108.00000040046937, + "r_y3": 601.5479420792932, + "coord_origin": "TOPLEFT" + }, + "text": "dynamics. ", + "orig": "dynamics. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "5. Real-Time Collaboration : Tools like Google Docs and Microsoft 365 enabled multiple users to edit the same document simultaneously, forever changing teamwork dynamics." + }, + { + "label": "section_header", + "id": 13, + "page_no": 2, + "cluster": { + "id": 13, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 657.3849222722977, + "r": 311.9594411567611, + "b": 672.2629723237247, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9490435123443604, + "cells": [ + { + "index": 48, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 672.2629723237247, + "r_x1": 311.9594411567611, + "r_y1": 672.2629723237247, + "r_x2": 311.9594411567611, + "r_y2": 657.3849222722977, + "r_x3": 72.00000026697958, + "r_y3": 657.3849222722977, + "coord_origin": "TOPLEFT" + }, + "text": "The Cultural Impact of Word Processors ", + "orig": "The Cultural Impact of Word Processors ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The Cultural Impact of Word Processors" + }, + { + "label": "text", + "id": 2, + "page_no": 2, + "cluster": { + "id": 2, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 686.5079323729635, + "r": 518.9003919241085, + "b": 727.6319625151116, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9820713400840759, + "cells": [ + { + "index": 49, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 699.7919624188806, + "r_x1": 494.0065318318008, + "r_y1": 699.7919624188806, + "r_x2": 494.0065318318008, + "r_y2": 686.5079323729635, + "r_x3": 72.00000026697958, + "r_y3": 686.5079323729635, + "coord_origin": "TOPLEFT" + }, + "text": "The word processor didn't just change workplaces-it changed culture. It democratized ", + "orig": "The word processor didn't just change workplaces-it changed culture. It democratized ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 50, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 713.4719524661665, + "r_x1": 474.54910175965165, + "r_y1": 713.4719524661665, + "r_x2": 474.54910175965165, + "r_y2": 700.1879524202494, + "r_x3": 72.00000026697958, + "r_y3": 700.1879524202494, + "coord_origin": "TOPLEFT" + }, + "text": "writing, enabling anyone with access to a computer to produce professional-quality ", + "orig": "writing, enabling anyone with access to a computer to produce professional-quality ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 51, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 727.6319625151116, + "r_x1": 518.9003919241085, + "r_y1": 727.6319625151116, + "r_x2": 518.9003919241085, + "r_y2": 714.3479624691945, + "r_x3": 72.00000026697958, + "r_y3": 714.3479624691945, + "coord_origin": "TOPLEFT" + }, + "text": "documents. This shift had profound implications for education, business, and creative fields: ", + "orig": "documents. This shift had profound implications for education, business, and creative fields: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The word processor didn't just change workplaces-it changed culture. It democratized writing, enabling anyone with access to a computer to produce professional-quality documents. This shift had profound implications for education, business, and creative fields:" + } + ], + "body": [ + { + "label": "section_header", + "id": 11, + "page_no": 2, + "cluster": { + "id": 11, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 72.74493025144807, + "r": 276.7262310261146, + "b": 87.62298030287513, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9600434303283691, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 87.62298030287513, + "r_x1": 276.7262310261146, + "r_y1": 87.62298030287513, + "r_x2": 276.7262310261146, + "r_y2": 72.74493025144807, + "r_x3": 72.00000026697958, + "r_y3": 72.74493025144807, + "coord_origin": "TOPLEFT" + }, + "text": "Specialized Word Processing Tools ", + "orig": "Specialized Word Processing Tools ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "Specialized Word Processing Tools" + }, + { + "label": "text", + "id": 3, + "page_no": 2, + "cluster": { + "id": 3, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 101.86798035211382, + "r": 514.6727319084321, + "b": 142.99194049426183, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9812871813774109, + "cells": [ + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 115.15197039803093, + "r_x1": 507.8394518830939, + "r_y1": 115.15197039803093, + "r_x2": 507.8394518830939, + "r_y2": 101.86798035211382, + "r_x3": 72.00000026697958, + "r_y3": 101.86798035211382, + "coord_origin": "TOPLEFT" + }, + "text": "In addition to general-purpose word processors, specialized tools have emerged to cater to ", + "orig": "In addition to general-purpose word processors, specialized tools have emerged to cater to ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 129.07196044614636, + "r_x1": 514.6727319084321, + "r_y1": 129.07196044614636, + "r_x2": 514.6727319084321, + "r_y2": 115.78796040022928, + "r_x3": 72.00000026697958, + "r_y3": 115.78796040022928, + "coord_origin": "TOPLEFT" + }, + "text": "specific industries and needs. These tools incorporate unique features tailored to their users' ", + "orig": "specific industries and needs. These tools incorporate unique features tailored to their users' ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 142.99194049426183, + "r_x1": 129.66211048079356, + "r_y1": 142.99194049426183, + "r_x2": 129.66211048079356, + "r_y2": 129.70794044834474, + "r_x3": 72.00000026697958, + "r_y3": 129.70794044834474, + "coord_origin": "TOPLEFT" + }, + "text": "workflows: ", + "orig": "workflows: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "In addition to general-purpose word processors, specialized tools have emerged to cater to specific industries and needs. These tools incorporate unique features tailored to their users' workflows:" + }, + { + "label": "list_item", + "id": 1, + "page_no": 2, + "cluster": { + "id": 1, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 157.30798054374623, + "r": 519.5101919263695, + "b": 225.7919907804661, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9829118251800537, + "cells": [ + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 170.21759058836926, + "r_x1": 94.63680335091797, + "r_y1": 170.21759058836926, + "r_x2": 94.63680335091797, + "r_y2": 157.86956054568725, + "r_x3": 90.00000033372447, + "r_y3": 157.86956054568725, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 170.5919805896633, + "r_x1": 277.6560410295624, + "r_y1": 170.5919805896633, + "r_x2": 277.6560410295624, + "r_y2": 157.30798054374623, + "r_x3": 108.00000040046937, + "r_y3": 157.30798054374623, + "coord_origin": "TOPLEFT" + }, + "text": "Academic and Technical Writing", + "orig": "Academic and Technical Writing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 277.65817102957027, + "r_y0": 170.5919805896633, + "r_x1": 495.26132183645365, + "r_y1": 170.5919805896633, + "r_x2": 495.26132183645365, + "r_y2": 157.30798054374623, + "r_x3": 277.65817102957027, + "r_y3": 157.30798054374623, + "coord_origin": "TOPLEFT" + }, + "text": ": Tools like LaTeX gained popularity among ", + "orig": ": Tools like LaTeX gained popularity among ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 184.27197063694928, + "r_x1": 495.5327118374599, + "r_y1": 184.27197063694928, + "r_x2": 495.5327118374599, + "r_y2": 170.98797059103208, + "r_x3": 108.00000040046937, + "r_y3": 170.98797059103208, + "coord_origin": "TOPLEFT" + }, + "text": "academics, scientists, and engineers. Unlike traditional word processors, LaTeX ", + "orig": "academics, scientists, and engineers. Unlike traditional word processors, LaTeX ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 198.1919506850645, + "r_x1": 494.8486918349235, + "r_y1": 198.1919506850645, + "r_x2": 494.8486918349235, + "r_y2": 184.90796063914763, + "r_x3": 108.00000040046937, + "r_y3": 184.90796063914763, + "coord_origin": "TOPLEFT" + }, + "text": "focuses on precise formatting, particularly for complex mathematical equations, ", + "orig": "focuses on precise formatting, particularly for complex mathematical equations, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 211.87195073235046, + "r_x1": 519.5101919263695, + "r_y1": 211.87195073235046, + "r_x2": 519.5101919263695, + "r_y2": 198.58795068643337, + "r_x3": 108.00000040046937, + "r_y3": 198.58795068643337, + "coord_origin": "TOPLEFT" + }, + "text": "scientific papers, and technical documents. It relies on a markup language to produce ", + "orig": "scientific papers, and technical documents. It relies on a markup language to produce ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 225.7919907804661, + "r_x1": 320.6426411889588, + "r_y1": 225.7919907804661, + "r_x2": 320.6426411889588, + "r_y2": 212.50799073454903, + "r_x3": 108.00000040046937, + "r_y3": 212.50799073454903, + "coord_origin": "TOPLEFT" + }, + "text": "polished documents suitable for publishing. ", + "orig": "polished documents suitable for publishing. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Academic and Technical Writing : Tools like LaTeX gained popularity among academics, scientists, and engineers. Unlike traditional word processors, LaTeX focuses on precise formatting, particularly for complex mathematical equations, scientific papers, and technical documents. It relies on a markup language to produce polished documents suitable for publishing." + }, + { + "label": "list_item", + "id": 4, + "page_no": 2, + "cluster": { + "id": 4, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 226.18799078183486, + "r": 503.5271318671036, + "b": 280.9919409712686, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9800205230712891, + "cells": [ + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 239.0975908264578, + "r_x1": 94.63680335091797, + "r_y1": 239.0975908264578, + "r_x2": 94.63680335091797, + "r_y2": 226.7495707837761, + "r_x3": 90.00000033372447, + "r_y3": 226.7495707837761, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 239.47198082775196, + "r_x1": 228.9672108490218, + "r_y1": 239.47198082775196, + "r_x2": 228.9672108490218, + "r_y2": 226.18799078183486, + "r_x3": 108.00000040046937, + "r_y3": 226.18799078183486, + "coord_origin": "TOPLEFT" + }, + "text": "Screenwriting Software", + "orig": "Screenwriting Software", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 228.9668008490203, + "r_y0": 239.47198082775196, + "r_x1": 495.22037183630175, + "r_y1": 239.47198082775196, + "r_x2": 495.22037183630175, + "r_y2": 226.18799078183486, + "r_x3": 228.9668008490203, + "r_y3": 226.18799078183486, + "coord_origin": "TOPLEFT" + }, + "text": ": For screenwriters, tools like Final Draft and Celtx are ", + "orig": ": For screenwriters, tools like Final Draft and Celtx are ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 253.3919608758673, + "r_x1": 503.5271318671036, + "r_y1": 253.3919608758673, + "r_x2": 503.5271318671036, + "r_y2": 240.1079708299502, + "r_x3": 108.00000040046937, + "r_y3": 240.1079708299502, + "coord_origin": "TOPLEFT" + }, + "text": "specialized to handle scripts for film and television. These programs automate the ", + "orig": "specialized to handle scripts for film and television. These programs automate the ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 267.07196092315326, + "r_x1": 457.223911695409, + "r_y1": 267.07196092315326, + "r_x2": 457.223911695409, + "r_y2": 253.78796087723617, + "r_x3": 108.00000040046937, + "r_y3": 253.78796087723617, + "coord_origin": "TOPLEFT" + }, + "text": "formatting of dialogue, scene descriptions, and other elements unique to ", + "orig": "formatting of dialogue, scene descriptions, and other elements unique to ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 280.9919409712686, + "r_x1": 179.30858066488514, + "r_y1": 280.9919409712686, + "r_x2": 179.30858066488514, + "r_y2": 267.7079409253515, + "r_x3": 108.00000040046937, + "r_y3": 267.7079409253515, + "coord_origin": "TOPLEFT" + }, + "text": "screenwriting. ", + "orig": "screenwriting. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Screenwriting Software : For screenwriters, tools like Final Draft and Celtx are specialized to handle scripts for film and television. These programs automate the formatting of dialogue, scene descriptions, and other elements unique to screenwriting." + }, + { + "label": "list_item", + "id": 0, + "page_no": 2, + "cluster": { + "id": 0, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 281.38800097263766, + "r": 524.4814519448033, + "b": 336.43194116290096, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9835862517356873, + "cells": [ + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 294.2975410172604, + "r_x1": 94.63680335091797, + "r_y1": 294.2975410172604, + "r_x2": 94.63680335091797, + "r_y2": 281.9495809745787, + "r_x3": 90.00000033372447, + "r_y3": 281.9495809745787, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 294.67193101855446, + "r_x1": 249.96240092687302, + "r_y1": 294.67193101855446, + "r_x2": 249.96240092687302, + "r_y2": 281.38800097263766, + "r_x3": 108.00000040046937, + "r_y3": 281.38800097263766, + "coord_origin": "TOPLEFT" + }, + "text": "Legal Document Processors", + "orig": "Legal Document Processors", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 249.966710926889, + "r_y0": 294.67193101855446, + "r_x1": 513.5488919042649, + "r_y1": 294.67193101855446, + "r_x2": 513.5488919042649, + "r_y2": 281.38800097263766, + "r_x3": 249.966710926889, + "r_y3": 281.38800097263766, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors tailored for legal professionals, like ", + "orig": ": Word processors tailored for legal professionals, like ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 308.5919810666702, + "r_x1": 524.4814519448033, + "r_y1": 308.5919810666702, + "r_x2": 524.4814519448033, + "r_y2": 295.3079810207531, + "r_x3": 108.00000040046937, + "r_y3": 295.3079810207531, + "coord_origin": "TOPLEFT" + }, + "text": "WordPerfect, offered features such as redlining (early version tracking) and document ", + "orig": "WordPerfect, offered features such as redlining (early version tracking) and document ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 322.27197111395594, + "r_x1": 489.909551816609, + "r_y1": 322.27197111395594, + "r_x2": 489.909551816609, + "r_y2": 308.98797106803886, + "r_x3": 108.00000040046937, + "r_y3": 308.98797106803886, + "coord_origin": "TOPLEFT" + }, + "text": "comparison. Even today, many law firms rely on these tools due to their robust ", + "orig": "comparison. Even today, many law firms rely on these tools due to their robust ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 336.43194116290096, + "r_x1": 343.2655012728455, + "r_y1": 336.43194116290096, + "r_x2": 343.2655012728455, + "r_y2": 323.1479511169839, + "r_x3": 108.00000040046937, + "r_y3": 323.1479511169839, + "coord_origin": "TOPLEFT" + }, + "text": "formatting options for contracts and legal briefs. ", + "orig": "formatting options for contracts and legal briefs. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Legal Document Processors : Word processors tailored for legal professionals, like WordPerfect, offered features such as redlining (early version tracking) and document comparison. Even today, many law firms rely on these tools due to their robust formatting options for contracts and legal briefs." + }, + { + "label": "section_header", + "id": 12, + "page_no": 2, + "cluster": { + "id": 12, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 378.7449313091588, + "r": 340.46878126247515, + "b": 393.62298136058575, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9593706130981445, + "cells": [ + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 393.62298136058575, + "r_x1": 340.46878126247515, + "r_y1": 393.62298136058575, + "r_x2": 340.46878126247515, + "r_y2": 378.7449313091588, + "r_x3": 72.00000026697958, + "r_y3": 378.7449313091588, + "coord_origin": "TOPLEFT" + }, + "text": "Key Features That Changed Word Processing ", + "orig": "Key Features That Changed Word Processing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "Key Features That Changed Word Processing" + }, + { + "label": "text", + "id": 6, + "page_no": 2, + "cluster": { + "id": 6, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 407.86798140982467, + "r": 514.7196019086059, + "b": 448.9919715519727, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9789240956306458, + "cells": [ + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 421.1519714557417, + "r_x1": 514.7196019086059, + "r_y1": 421.1519714557417, + "r_x2": 514.7196019086059, + "r_y2": 407.86798140982467, + "r_x3": 72.00000026697958, + "r_y3": 407.86798140982467, + "coord_origin": "TOPLEFT" + }, + "text": "The evolution of word processors wasn't just about hardware or software improvements-it ", + "orig": "The evolution of word processors wasn't just about hardware or software improvements-it ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 435.07196150385715, + "r_x1": 490.85507182011503, + "r_y1": 435.07196150385715, + "r_x2": 490.85507182011503, + "r_y2": 421.78796145794007, + "r_x3": 72.00000026697958, + "r_y3": 421.78796145794007, + "coord_origin": "TOPLEFT" + }, + "text": "was about the features that revolutionized how people wrote and edited. Some of these ", + "orig": "was about the features that revolutionized how people wrote and edited. Some of these ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 448.9919715519727, + "r_x1": 227.60155084395785, + "r_y1": 448.9919715519727, + "r_x2": 227.60155084395785, + "r_y2": 435.7079415060554, + "r_x3": 72.00000026697958, + "r_y3": 435.7079415060554, + "coord_origin": "TOPLEFT" + }, + "text": "transformative features include: ", + "orig": "transformative features include: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The evolution of word processors wasn't just about hardware or software improvements-it was about the features that revolutionized how people wrote and edited. Some of these transformative features include:" + }, + { + "label": "list_item", + "id": 8, + "page_no": 2, + "cluster": { + "id": 8, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 463.30795160145686, + "r": 509.2687418883938, + "b": 490.51196169548945, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9704653024673462, + "cells": [ + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 476.5919816473741, + "r_x1": 99.00000036709692, + "r_y1": 476.5919816473741, + "r_x2": 99.00000036709692, + "r_y2": 463.30795160145686, + "r_x3": 90.00000033372447, + "r_y3": 463.30795160145686, + "coord_origin": "TOPLEFT" + }, + "text": "1.", + "orig": "1.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 28, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 476.5919816473741, + "r_x1": 166.01521061559265, + "r_y1": 476.5919816473741, + "r_x2": 166.01521061559265, + "r_y2": 463.30795160145686, + "r_x3": 108.00000040046937, + "r_y3": 463.30795160145686, + "coord_origin": "TOPLEFT" + }, + "text": "Undo/Redo", + "orig": "Undo/Redo", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 29, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 166.0136606155869, + "r_y0": 476.5919816473741, + "r_x1": 509.2687418883938, + "r_y1": 476.5919816473741, + "r_x2": 509.2687418883938, + "r_y2": 463.30795160145686, + "r_x3": 166.0136606155869, + "r_y3": 463.30795160145686, + "coord_origin": "TOPLEFT" + }, + "text": ": Introduced in the 1980s, the ability to undo mistakes and redo actions ", + "orig": ": Introduced in the 1980s, the ability to undo mistakes and redo actions ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 30, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 490.51196169548945, + "r_x1": 379.87488140859494, + "r_y1": 490.51196169548945, + "r_x2": 379.87488140859494, + "r_y2": 477.2279316495723, + "r_x3": 108.00000040046937, + "r_y3": 477.2279316495723, + "coord_origin": "TOPLEFT" + }, + "text": "made experimentation and error correction much easier. ", + "orig": "made experimentation and error correction much easier. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "1. Undo/Redo : Introduced in the 1980s, the ability to undo mistakes and redo actions made experimentation and error correction much easier." + }, + { + "label": "list_item", + "id": 10, + "page_no": 2, + "cluster": { + "id": 10, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 490.90796169685825, + "r": 516.6022319155867, + "b": 518.1119717908908, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9631043672561646, + "cells": [ + { + "index": 31, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 504.1919517427753, + "r_x1": 99.00000036709692, + "r_y1": 504.1919517427753, + "r_x2": 99.00000036709692, + "r_y2": 490.90796169685825, + "r_x3": 90.00000033372447, + "r_y3": 490.90796169685825, + "coord_origin": "TOPLEFT" + }, + "text": "2.", + "orig": "2.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 32, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 504.1919517427753, + "r_x1": 281.9975910456611, + "r_y1": 504.1919517427753, + "r_x2": 281.9975910456611, + "r_y2": 490.90796169685825, + "r_x3": 108.00000040046937, + "r_y3": 490.90796169685825, + "coord_origin": "TOPLEFT" + }, + "text": "Spell Check and Grammar Check", + "orig": "Spell Check and Grammar Check", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 33, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 282.00000104567005, + "r_y0": 504.1919517427753, + "r_x1": 516.6022319155867, + "r_y1": 504.1919517427753, + "r_x2": 516.6022319155867, + "r_y2": 490.90796169685825, + "r_x3": 282.00000104567005, + "r_y3": 490.90796169685825, + "coord_origin": "TOPLEFT" + }, + "text": ": By the 1990s, these became standard, allowing ", + "orig": ": By the 1990s, these became standard, allowing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 34, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 518.1119717908908, + "r_x1": 273.2930310133841, + "r_y1": 518.1119717908908, + "r_x2": 273.2930310133841, + "r_y2": 504.82794174497366, + "r_x3": 108.00000040046937, + "r_y3": 504.82794174497366, + "coord_origin": "TOPLEFT" + }, + "text": "users to spot errors automatically. ", + "orig": "users to spot errors automatically. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "2. Spell Check and Grammar Check : By the 1990s, these became standard, allowing users to spot errors automatically." + }, + { + "label": "list_item", + "id": 9, + "page_no": 2, + "cluster": { + "id": 9, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 518.5079317922596, + "r": 486.90097180545297, + "b": 545.7119718862922, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9673018455505371, + "cells": [ + { + "index": 35, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 531.7919618381768, + "r_x1": 99.00000036709692, + "r_y1": 531.7919618381768, + "r_x2": 99.00000036709692, + "r_y2": 518.5079317922596, + "r_x3": 90.00000033372447, + "r_y3": 518.5079317922596, + "coord_origin": "TOPLEFT" + }, + "text": "3.", + "orig": "3.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 36, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 531.7919618381768, + "r_x1": 161.32320059819446, + "r_y1": 531.7919618381768, + "r_x2": 161.32320059819446, + "r_y2": 518.5079317922596, + "r_x3": 108.00000040046937, + "r_y3": 518.5079317922596, + "coord_origin": "TOPLEFT" + }, + "text": "Templates", + "orig": "Templates", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 37, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 161.32617059820544, + "r_y0": 531.7919618381768, + "r_x1": 486.90097180545297, + "r_y1": 531.7919618381768, + "r_x2": 486.90097180545297, + "r_y2": 518.5079317922596, + "r_x3": 161.32617059820544, + "r_y3": 518.5079317922596, + "coord_origin": "TOPLEFT" + }, + "text": ": Pre-designed formats for documents, such as resumes, letters, and ", + "orig": ": Pre-designed formats for documents, such as resumes, letters, and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 38, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 545.7119718862922, + "r_x1": 268.2890309948291, + "r_y1": 545.7119718862922, + "r_x2": 268.2890309948291, + "r_y2": 532.427951840375, + "r_x3": 108.00000040046937, + "r_y3": 532.427951840375, + "coord_origin": "TOPLEFT" + }, + "text": "invoices, helped users save time. ", + "orig": "invoices, helped users save time. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "3. Templates : Pre-designed formats for documents, such as resumes, letters, and invoices, helped users save time." + }, + { + "label": "list_item", + "id": 7, + "page_no": 2, + "cluster": { + "id": 7, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 546.1079418876609, + "r": 502.21259186222926, + "b": 573.3119819816936, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9727876782417297, + "cells": [ + { + "index": 39, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 559.391961933578, + "r_x1": 99.00000036709692, + "r_y1": 559.391961933578, + "r_x2": 99.00000036709692, + "r_y2": 546.1079418876609, + "r_x3": 90.00000033372447, + "r_y3": 546.1079418876609, + "coord_origin": "TOPLEFT" + }, + "text": "4.", + "orig": "4.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 40, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 559.391961933578, + "r_x1": 186.338390690952, + "r_y1": 559.391961933578, + "r_x2": 186.338390690952, + "r_y2": 546.1079418876609, + "r_x3": 108.00000040046937, + "r_y3": 546.1079418876609, + "coord_origin": "TOPLEFT" + }, + "text": "Track Changes", + "orig": "Track Changes", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 41, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 186.3398406909574, + "r_y0": 559.391961933578, + "r_x1": 502.21259186222926, + "r_y1": 559.391961933578, + "r_x2": 502.21259186222926, + "r_y2": 546.1079418876609, + "r_x3": 186.3398406909574, + "r_y3": 546.1079418876609, + "coord_origin": "TOPLEFT" + }, + "text": ": A game-changer for collaboration, this feature allowed multiple ", + "orig": ": A game-changer for collaboration, this feature allowed multiple ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 42, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 573.3119819816936, + "r_x1": 384.6211214261943, + "r_y1": 573.3119819816936, + "r_x2": 384.6211214261943, + "r_y2": 560.0279519357764, + "r_x3": 108.00000040046937, + "r_y3": 560.0279519357764, + "coord_origin": "TOPLEFT" + }, + "text": "users to suggest edits while maintaining the original text. ", + "orig": "users to suggest edits while maintaining the original text. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "4. Track Changes : A game-changer for collaboration, this feature allowed multiple users to suggest edits while maintaining the original text." + }, + { + "label": "list_item", + "id": 5, + "page_no": 2, + "cluster": { + "id": 5, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 573.7079419830623, + "r": 521.8798819351565, + "b": 614.8319721252104, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9798402190208435, + "cells": [ + { + "index": 43, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 586.9919720289795, + "r_x1": 99.00000036709692, + "r_y1": 586.9919720289795, + "r_x2": 99.00000036709692, + "r_y2": 573.7079419830623, + "r_x3": 90.00000033372447, + "r_y3": 573.7079419830623, + "coord_origin": "TOPLEFT" + }, + "text": "5.", + "orig": "5.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 44, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 586.9919720289795, + "r_x1": 236.3166508762739, + "r_y1": 586.9919720289795, + "r_x2": 236.3166508762739, + "r_y2": 573.7079419830623, + "r_x3": 108.00000040046937, + "r_y3": 573.7079419830623, + "coord_origin": "TOPLEFT" + }, + "text": "Real-Time Collaboration", + "orig": "Real-Time Collaboration", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 45, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 236.32033087628753, + "r_y0": 586.9919720289795, + "r_x1": 491.9297818241001, + "r_y1": 586.9919720289795, + "r_x2": 491.9297818241001, + "r_y2": 573.7079419830623, + "r_x3": 236.32033087628753, + "r_y3": 573.7079419830623, + "coord_origin": "TOPLEFT" + }, + "text": ": Tools like Google Docs and Microsoft 365 enabled ", + "orig": ": Tools like Google Docs and Microsoft 365 enabled ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 46, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 600.9119520770948, + "r_x1": 521.8798819351565, + "r_y1": 600.9119520770948, + "r_x2": 521.8798819351565, + "r_y2": 587.6279620311777, + "r_x3": 108.00000040046937, + "r_y3": 587.6279620311777, + "coord_origin": "TOPLEFT" + }, + "text": "multiple users to edit the same document simultaneously, forever changing teamwork ", + "orig": "multiple users to edit the same document simultaneously, forever changing teamwork ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 47, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 614.8319721252104, + "r_x1": 159.99023059325174, + "r_y1": 614.8319721252104, + "r_x2": 159.99023059325174, + "r_y2": 601.5479420792932, + "r_x3": 108.00000040046937, + "r_y3": 601.5479420792932, + "coord_origin": "TOPLEFT" + }, + "text": "dynamics. ", + "orig": "dynamics. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "5. Real-Time Collaboration : Tools like Google Docs and Microsoft 365 enabled multiple users to edit the same document simultaneously, forever changing teamwork dynamics." + }, + { + "label": "section_header", + "id": 13, + "page_no": 2, + "cluster": { + "id": 13, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 657.3849222722977, + "r": 311.9594411567611, + "b": 672.2629723237247, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9490435123443604, + "cells": [ + { + "index": 48, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 672.2629723237247, + "r_x1": 311.9594411567611, + "r_y1": 672.2629723237247, + "r_x2": 311.9594411567611, + "r_y2": 657.3849222722977, + "r_x3": 72.00000026697958, + "r_y3": 657.3849222722977, + "coord_origin": "TOPLEFT" + }, + "text": "The Cultural Impact of Word Processors ", + "orig": "The Cultural Impact of Word Processors ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The Cultural Impact of Word Processors" + }, + { + "label": "text", + "id": 2, + "page_no": 2, + "cluster": { + "id": 2, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 686.5079323729635, + "r": 518.9003919241085, + "b": 727.6319625151116, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9820713400840759, + "cells": [ + { + "index": 49, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 699.7919624188806, + "r_x1": 494.0065318318008, + "r_y1": 699.7919624188806, + "r_x2": 494.0065318318008, + "r_y2": 686.5079323729635, + "r_x3": 72.00000026697958, + "r_y3": 686.5079323729635, + "coord_origin": "TOPLEFT" + }, + "text": "The word processor didn't just change workplaces-it changed culture. It democratized ", + "orig": "The word processor didn't just change workplaces-it changed culture. It democratized ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 50, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 713.4719524661665, + "r_x1": 474.54910175965165, + "r_y1": 713.4719524661665, + "r_x2": 474.54910175965165, + "r_y2": 700.1879524202494, + "r_x3": 72.00000026697958, + "r_y3": 700.1879524202494, + "coord_origin": "TOPLEFT" + }, + "text": "writing, enabling anyone with access to a computer to produce professional-quality ", + "orig": "writing, enabling anyone with access to a computer to produce professional-quality ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 51, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 727.6319625151116, + "r_x1": 518.9003919241085, + "r_y1": 727.6319625151116, + "r_x2": 518.9003919241085, + "r_y2": 714.3479624691945, + "r_x3": 72.00000026697958, + "r_y3": 714.3479624691945, + "coord_origin": "TOPLEFT" + }, + "text": "documents. This shift had profound implications for education, business, and creative fields: ", + "orig": "documents. This shift had profound implications for education, business, and creative fields: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The word processor didn't just change workplaces-it changed culture. It democratized writing, enabling anyone with access to a computer to produce professional-quality documents. This shift had profound implications for education, business, and creative fields:" + } + ], + "headers": [] + } + }, + { + "page_no": 3, + "size": { + "width": 595.2000122070312, + "height": 841.9199829101562 + }, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 85.2575702946989, + "r_x1": 94.63680335091797, + "r_y1": 85.2575702946989, + "r_x2": 94.63680335091797, + "r_y2": 72.90954025201711, + "r_x3": 90.00000033372447, + "r_y3": 72.90954025201711, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 85.63196029599305, + "r_x1": 171.98883063774312, + "r_y1": 85.63196029599305, + "r_x2": 171.98883063774312, + "r_y2": 72.34796025007586, + "r_x3": 108.00000040046937, + "r_y3": 72.34796025007586, + "coord_origin": "TOPLEFT" + }, + "text": "Accessibility", + "orig": "Accessibility", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 171.99023063774834, + "r_y0": 85.63196029599305, + "r_x1": 514.5589619080102, + "r_y1": 85.63196029599305, + "r_x2": 514.5589619080102, + "r_y2": 72.34796025007586, + "r_x3": 171.99023063774834, + "r_y3": 72.34796025007586, + "coord_origin": "TOPLEFT" + }, + "text": ": Writers no longer needed expensive publishing equipment or training ", + "orig": ": Writers no longer needed expensive publishing equipment or training ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 99.31195034327891, + "r_x1": 491.5545718227088, + "r_y1": 99.31195034327891, + "r_x2": 491.5545718227088, + "r_y2": 86.02795029736171, + "r_x3": 108.00000040046937, + "r_y3": 86.02795029736171, + "coord_origin": "TOPLEFT" + }, + "text": "in typesetting to create polished work. This accessibility paved the way for self-", + "orig": "in typesetting to create polished work. This accessibility paved the way for self-", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 113.23199039139433, + "r_x1": 379.9569714088994, + "r_y1": 113.23199039139433, + "r_x2": 379.9569714088994, + "r_y2": 99.94793034547718, + "r_x3": 108.00000040046937, + "r_y3": 99.94793034547718, + "coord_origin": "TOPLEFT" + }, + "text": "publishing, blogging, and even fan fiction communities. ", + "orig": "publishing, blogging, and even fan fiction communities. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 126.53753043738607, + "r_x1": 94.63680335091797, + "r_y1": 126.53753043738607, + "r_x2": 94.63680335091797, + "r_y2": 114.18957039470433, + "r_x3": 90.00000033372447, + "r_y3": 114.18957039470433, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 126.9119804386803, + "r_x1": 160.6799905958094, + "r_y1": 126.9119804386803, + "r_x2": 160.6799905958094, + "r_y2": 113.6279903927632, + "r_x3": 108.00000040046937, + "r_y3": 113.6279903927632, + "coord_origin": "TOPLEFT" + }, + "text": "Education", + "orig": "Education", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 160.6816305958155, + "r_y0": 126.9119804386803, + "r_x1": 509.5430318894109, + "r_y1": 126.9119804386803, + "r_x2": 509.5430318894109, + "r_y2": 113.6279903927632, + "r_x3": 160.6816305958155, + "r_y3": 113.6279903927632, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors became a cornerstone of education, teaching students ", + "orig": ": Word processors became a cornerstone of education, teaching students ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 140.83197048679563, + "r_x1": 521.9014319352365, + "r_y1": 140.83197048679563, + "r_x2": 521.9014319352365, + "r_y2": 127.54797044087866, + "r_x3": 108.00000040046937, + "r_y3": 127.54797044087866, + "coord_origin": "TOPLEFT" + }, + "text": "not only how to write essays but also how to use technology effectively. Features like ", + "orig": "not only how to write essays but also how to use technology effectively. Features like ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 154.5119605340816, + "r_x1": 459.52728170395005, + "r_y1": 154.5119605340816, + "r_x2": 459.52728170395005, + "r_y2": 141.22796048816463, + "r_x3": 108.00000040046937, + "r_y3": 141.22796048816463, + "coord_origin": "TOPLEFT" + }, + "text": "bibliography generators and integrated research tools enhanced learning. ", + "orig": "bibliography generators and integrated research tools enhanced learning. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 168.0575505809029, + "r_x1": 94.63680335091797, + "r_y1": 168.0575505809029, + "r_x2": 94.63680335091797, + "r_y2": 155.70959053822128, + "r_x3": 90.00000033372447, + "r_y3": 155.70959053822128, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 168.43194058219706, + "r_x1": 195.63599072542797, + "r_y1": 168.43194058219706, + "r_x2": 195.63599072542797, + "r_y2": 155.14795053627995, + "r_x3": 108.00000040046937, + "r_y3": 155.14795053627995, + "coord_origin": "TOPLEFT" + }, + "text": "Creative Writing", + "orig": "Creative Writing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 195.63866072543786, + "r_y0": 168.43194058219706, + "r_x1": 509.872891890634, + "r_y1": 168.43194058219706, + "r_x2": 509.872891890634, + "r_y2": 155.14795053627995, + "r_x3": 195.63866072543786, + "r_y3": 155.14795053627995, + "coord_origin": "TOPLEFT" + }, + "text": ": Writers gained powerful tools to organize their ideas. Programs ", + "orig": ": Writers gained powerful tools to organize their ideas. Programs ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 182.1119406294829, + "r_x1": 515.8510119128011, + "r_y1": 182.1119406294829, + "r_x2": 515.8510119128011, + "r_y2": 168.8279405835658, + "r_x3": 108.00000040046937, + "r_y3": 168.8279405835658, + "coord_origin": "TOPLEFT" + }, + "text": "like Scrivener allowed authors to manage large projects, from novels to screenplays, ", + "orig": "like Scrivener allowed authors to manage large projects, from novels to screenplays, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 196.27197067842803, + "r_x1": 372.2227213802203, + "r_y1": 196.27197067842803, + "r_x2": 372.2227213802203, + "r_y2": 182.98797063251095, + "r_x3": 108.00000040046937, + "r_y3": 182.98797063251095, + "coord_origin": "TOPLEFT" + }, + "text": "with features like chapter outlines and character notes. ", + "orig": "with features like chapter outlines and character notes. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 253.463010876113, + "r_x1": 295.453431095556, + "r_y1": 253.463010876113, + "r_x2": 295.453431095556, + "r_y2": 238.58490082468575, + "r_x3": 72.00000026697958, + "r_y3": 238.58490082468575, + "coord_origin": "TOPLEFT" + }, + "text": "Word Processors in a Post-Digital Era ", + "orig": "Word Processors in a Post-Digital Era ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 281.4719809729279, + "r_x1": 521.214971932691, + "r_y1": 281.4719809729279, + "r_x2": 521.214971932691, + "r_y2": 268.1879909270109, + "r_x3": 72.00000026697958, + "r_y3": 268.1879909270109, + "coord_origin": "TOPLEFT" + }, + "text": "As we move further into the 21st century, the role of the word processor continues to evolve: ", + "orig": "As we move further into the 21st century, the role of the word processor continues to evolve: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 308.8319710674996, + "r_x1": 99.00000036709692, + "r_y1": 308.8319710674996, + "r_x2": 99.00000036709692, + "r_y2": 295.5479710215825, + "r_x3": 90.00000033372447, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": "1.", + "orig": "1.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 308.8319710674996, + "r_x1": 216.9648108045163, + "r_y1": 308.8319710674996, + "r_x2": 216.9648108045163, + "r_y2": 295.5479710215825, + "r_x3": 108.00000040046937, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": "Artificial Intelligence", + "orig": "Artificial Intelligence", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 216.9668008045237, + "r_y0": 308.8319710674996, + "r_x1": 522.210631936383, + "r_y1": 308.8319710674996, + "r_x2": 522.210631936383, + "r_y2": 295.5479710215825, + "r_x3": 216.9668008045237, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": ": Modern word processors are leveraging AI to suggest content ", + "orig": ": Modern word processors are leveraging AI to suggest content ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 322.75195111561504, + "r_x1": 504.8831218721317, + "r_y1": 322.75195111561504, + "r_x2": 504.8831218721317, + "r_y2": 309.46795106969796, + "r_x3": 108.00000040046937, + "r_y3": 309.46795106969796, + "coord_origin": "TOPLEFT" + }, + "text": "improvements. Tools like Grammarly, ProWritingAid, and even native features in ", + "orig": "improvements. Tools like Grammarly, ProWritingAid, and even native features in ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 336.43194116290096, + "r_x1": 523.8382019424181, + "r_y1": 336.43194116290096, + "r_x2": 523.8382019424181, + "r_y2": 323.1479511169839, + "r_x3": 108.00000040046937, + "r_y3": 323.1479511169839, + "coord_origin": "TOPLEFT" + }, + "text": "Word now analyze tone, conciseness, and clarity. Some AI systems can even generate ", + "orig": "Word now analyze tone, conciseness, and clarity. Some AI systems can even generate ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 350.3519612110165, + "r_x1": 295.9101610972496, + "r_y1": 350.3519612110165, + "r_x2": 295.9101610972496, + "r_y2": 337.0679611650994, + "r_x3": 108.00000040046937, + "r_y3": 337.0679611650994, + "coord_origin": "TOPLEFT" + }, + "text": "entire paragraphs or rewrite sentences. ", + "orig": "entire paragraphs or rewrite sentences. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 364.0319512583023, + "r_x1": 99.00000036709692, + "r_y1": 364.0319512583023, + "r_x2": 99.00000036709692, + "r_y2": 350.7479812123853, + "r_x3": 90.00000033372447, + "r_y3": 350.7479812123853, + "coord_origin": "TOPLEFT" + }, + "text": "2.", + "orig": "2.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 364.0319512583023, + "r_x1": 256.327210950474, + "r_y1": 364.0319512583023, + "r_x2": 256.327210950474, + "r_y2": 350.7479812123853, + "r_x3": 108.00000040046937, + "r_y3": 350.7479812123853, + "coord_origin": "TOPLEFT" + }, + "text": "Integration with Other Tools", + "orig": "Integration with Other Tools", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 256.33008095048467, + "r_y0": 364.0319512583023, + "r_x1": 497.9115018462806, + "r_y1": 364.0319512583023, + "r_x2": 497.9115018462806, + "r_y2": 350.7479812123853, + "r_x3": 256.33008095048467, + "r_y3": 350.7479812123853, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors are no longer standalone. They ", + "orig": ": Word processors are no longer standalone. They ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 377.95196130641784, + "r_x1": 514.5262519078889, + "r_y1": 377.95196130641784, + "r_x2": 514.5262519078889, + "r_y2": 364.6679712605008, + "r_x3": 108.00000040046937, + "r_y3": 364.6679712605008, + "coord_origin": "TOPLEFT" + }, + "text": "integrate with task managers, cloud storage, and project management platforms. For ", + "orig": "integrate with task managers, cloud storage, and project management platforms. For ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 391.6319613537037, + "r_x1": 504.89987187219384, + "r_y1": 391.6319613537037, + "r_x2": 504.89987187219384, + "r_y2": 378.3479613077866, + "r_x3": 108.00000040046937, + "r_y3": 378.3479613077866, + "coord_origin": "TOPLEFT" + }, + "text": "instance, Google Docs syncs with Google Drive, while Microsoft Word integrates ", + "orig": "instance, Google Docs syncs with Google Drive, while Microsoft Word integrates ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 28, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 405.55194140181914, + "r_x1": 295.95120109740174, + "r_y1": 405.55194140181914, + "r_x2": 295.95120109740174, + "r_y2": 392.26794135590205, + "r_x3": 108.00000040046937, + "r_y3": 392.26794135590205, + "coord_origin": "TOPLEFT" + }, + "text": "seamlessly with OneDrive and Teams. ", + "orig": "seamlessly with OneDrive and Teams. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 29, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 419.2319614491051, + "r_x1": 99.00000036709692, + "r_y1": 419.2319614491051, + "r_x2": 99.00000036709692, + "r_y2": 405.947961403188, + "r_x3": 90.00000033372447, + "r_y3": 405.947961403188, + "coord_origin": "TOPLEFT" + }, + "text": "3.", + "orig": "3.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 30, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 419.2319614491051, + "r_x1": 176.33762065386867, + "r_y1": 419.2319614491051, + "r_x2": 176.33762065386867, + "r_y2": 405.947961403188, + "r_x3": 108.00000040046937, + "r_y3": 405.947961403188, + "coord_origin": "TOPLEFT" + }, + "text": "Voice Typing", + "orig": "Voice Typing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 31, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 176.33789065386966, + "r_y0": 419.2319614491051, + "r_x1": 477.5590517708127, + "r_y1": 419.2319614491051, + "r_x2": 477.5590517708127, + "r_y2": 405.947961403188, + "r_x3": 176.33789065386966, + "r_y3": 405.947961403188, + "coord_origin": "TOPLEFT" + }, + "text": ": Speech-to-text capabilities have made word processing more ", + "orig": ": Speech-to-text capabilities have made word processing more ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 32, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 433.1519714972206, + "r_x1": 438.90237162747184, + "r_y1": 433.1519714972206, + "r_x2": 438.90237162747184, + "r_y2": 419.86798145130354, + "r_x3": 108.00000040046937, + "r_y3": 419.86798145130354, + "coord_origin": "TOPLEFT" + }, + "text": "accessible, particularly for those with disabilities. Tools like Dragon ", + "orig": "accessible, particularly for those with disabilities. Tools like Dragon ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 33, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 446.8319715445065, + "r_x1": 502.9175418648432, + "r_y1": 446.8319715445065, + "r_x2": 502.9175418648432, + "r_y2": 433.5479714985894, + "r_x3": 108.00000040046937, + "r_y3": 433.5479714985894, + "coord_origin": "TOPLEFT" + }, + "text": "NaturallySpeaking and built-in options in Google Docs and Microsoft Word have ", + "orig": "NaturallySpeaking and built-in options in Google Docs and Microsoft Word have ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 34, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 460.751981592622, + "r_x1": 243.9549609045971, + "r_y1": 460.751981592622, + "r_x2": 243.9549609045971, + "r_y2": 447.4679515467048, + "r_x3": 108.00000040046937, + "r_y3": 447.4679515467048, + "coord_origin": "TOPLEFT" + }, + "text": "made dictation mainstream. ", + "orig": "made dictation mainstream. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 35, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 474.43197163990783, + "r_x1": 99.00000036709692, + "r_y1": 474.43197163990783, + "r_x2": 99.00000036709692, + "r_y2": 461.1479515939907, + "r_x3": 90.00000033372447, + "r_y3": 461.1479515939907, + "coord_origin": "TOPLEFT" + }, + "text": "4.", + "orig": "4.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 36, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 474.43197163990783, + "r_x1": 228.31917084661885, + "r_y1": 474.43197163990783, + "r_x2": 228.31917084661885, + "r_y2": 461.1479515939907, + "r_x3": 108.00000040046937, + "r_y3": 461.1479515939907, + "coord_origin": "TOPLEFT" + }, + "text": "Multimedia Documents", + "orig": "Multimedia Documents", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 37, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 228.32227084663035, + "r_y0": 474.43197163990783, + "r_x1": 516.9196819167639, + "r_y1": 474.43197163990783, + "r_x2": 516.9196819167639, + "r_y2": 461.1479515939907, + "r_x3": 228.32227084663035, + "r_y3": 461.1479515939907, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processing has expanded beyond text. Modern tools ", + "orig": ": Word processing has expanded beyond text. Modern tools ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 38, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 488.35196168802327, + "r_x1": 512.2006218992653, + "r_y1": 488.35196168802327, + "r_x2": 512.2006218992653, + "r_y2": 475.0679616421062, + "r_x3": 108.00000040046937, + "r_y3": 475.0679616421062, + "coord_origin": "TOPLEFT" + }, + "text": "allow users to embed images, videos, charts, and interactive elements, transforming ", + "orig": "allow users to embed images, videos, charts, and interactive elements, transforming ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 39, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 502.0319817353093, + "r_x1": 361.5996113408293, + "r_y1": 502.0319817353093, + "r_x2": 361.5996113408293, + "r_y2": 488.74795168939204, + "r_x3": 108.00000040046937, + "r_y3": 488.74795168939204, + "coord_origin": "TOPLEFT" + }, + "text": "simple documents into rich multimedia experiences. ", + "orig": "simple documents into rich multimedia experiences. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 40, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 515.9519617834246, + "r_x1": 99.00000036709692, + "r_y1": 515.9519617834246, + "r_x2": 99.00000036709692, + "r_y2": 502.6679417375074, + "r_x3": 90.00000033372447, + "r_y3": 502.6679417375074, + "coord_origin": "TOPLEFT" + }, + "text": "5.", + "orig": "5.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 41, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 515.9519617834246, + "r_x1": 254.2937309429338, + "r_y1": 515.9519617834246, + "r_x2": 254.2937309429338, + "r_y2": 502.6679417375074, + "r_x3": 108.00000040046937, + "r_y3": 502.6679417375074, + "coord_origin": "TOPLEFT" + }, + "text": "Cross-Platform Accessibility", + "orig": "Cross-Platform Accessibility", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 42, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 254.2967809429451, + "r_y0": 515.9519617834246, + "r_x1": 510.9070718944688, + "r_y1": 515.9519617834246, + "r_x2": 510.9070718944688, + "r_y2": 502.6679417375074, + "r_x3": 254.2967809429451, + "r_y3": 502.6679417375074, + "coord_origin": "TOPLEFT" + }, + "text": ": Thanks to cloud computing, documents can now be ", + "orig": ": Thanks to cloud computing, documents can now be ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 43, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 529.6319618307105, + "r_x1": 469.6751117415787, + "r_y1": 529.6319618307105, + "r_x2": 469.6751117415787, + "r_y2": 516.3479617847934, + "r_x3": 108.00000040046937, + "r_y3": 516.3479617847934, + "coord_origin": "TOPLEFT" + }, + "text": "accessed and edited across devices. Whether you're on a desktop, tablet, or ", + "orig": "accessed and edited across devices. Whether you're on a desktop, tablet, or ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 44, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 543.7919618796556, + "r_x1": 355.9451913198625, + "r_y1": 543.7919618796556, + "r_x2": 355.9451913198625, + "r_y2": 530.5079318337384, + "r_x3": 108.00000040046937, + "r_y3": 530.5079318337384, + "coord_origin": "TOPLEFT" + }, + "text": "smartphone, you can continue working seamlessly. ", + "orig": "smartphone, you can continue working seamlessly. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 45, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 600.9829720773404, + "r_x1": 228.355610846754, + "r_y1": 600.9829720773404, + "r_x2": 228.355610846754, + "r_y2": 586.1049220259133, + "r_x3": 72.00000026697958, + "r_y3": 586.1049220259133, + "coord_origin": "TOPLEFT" + }, + "text": "A Glimpse Into the Future ", + "orig": "A Glimpse Into the Future ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 46, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 628.7519521733258, + "r_x1": 515.04700190982, + "r_y1": 628.7519521733258, + "r_x2": 515.04700190982, + "r_y2": 615.4679521274087, + "r_x3": 72.00000026697958, + "r_y3": 615.4679521274087, + "coord_origin": "TOPLEFT" + }, + "text": "The word processor's future lies in adaptability and intelligence. Some exciting possibilities ", + "orig": "The word processor's future lies in adaptability and intelligence. Some exciting possibilities ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 47, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 642.6719622214413, + "r_x1": 113.6543004214358, + "r_y1": 642.6719622214413, + "r_x2": 113.6543004214358, + "r_y2": 629.3879421755241, + "r_x3": 72.00000026697958, + "r_y3": 629.3879421755241, + "coord_origin": "TOPLEFT" + }, + "text": "include: ", + "orig": "include: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 48, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 669.8975523155485, + "r_x1": 94.63680335091797, + "r_y1": 669.8975523155485, + "r_x2": 94.63680335091797, + "r_y2": 657.5495622728668, + "r_x3": 90.00000033372447, + "r_y3": 657.5495622728668, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 49, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 670.2719723168427, + "r_x1": 240.67430089243229, + "r_y1": 670.2719723168427, + "r_x2": 240.67430089243229, + "r_y2": 656.9879422709255, + "r_x3": 108.00000040046937, + "r_y3": 656.9879422709255, + "coord_origin": "TOPLEFT" + }, + "text": "Fully AI-Assisted Writing", + "orig": "Fully AI-Assisted Writing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 50, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 240.67390089243082, + "r_y0": 670.2719723168427, + "r_x1": 518.2673319217611, + "r_y1": 670.2719723168427, + "r_x2": 518.2673319217611, + "r_y2": 656.9879422709255, + "r_x3": 240.67390089243082, + "r_y3": 656.9879422709255, + "coord_origin": "TOPLEFT" + }, + "text": ": Imagine a word processor that understands your writing ", + "orig": ": Imagine a word processor that understands your writing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 51, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 683.9519623641286, + "r_x1": 436.57608161884576, + "r_y1": 683.9519623641286, + "r_x2": 436.57608161884576, + "r_y2": 670.6679423182114, + "r_x3": 108.00000040046937, + "r_y3": 670.6679423182114, + "coord_origin": "TOPLEFT" + }, + "text": "style, drafts emails, or creates entire essays based on minimal input. ", + "orig": "style, drafts emails, or creates entire essays based on minimal input. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 52, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 697.49756241095, + "r_x1": 94.63680335091797, + "r_y1": 697.49756241095, + "r_x2": 94.63680335091797, + "r_y2": 685.1495623682681, + "r_x3": 90.00000033372447, + "r_y3": 685.1495623682681, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 53, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 697.871982412244, + "r_x1": 216.9503908044628, + "r_y1": 697.871982412244, + "r_x2": 216.9503908044628, + "r_y2": 684.5879523663269, + "r_x3": 108.00000040046937, + "r_y3": 684.5879523663269, + "coord_origin": "TOPLEFT" + }, + "text": "Immersive Interfaces", + "orig": "Immersive Interfaces", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 54, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 216.95508080448025, + "r_y0": 697.871982412244, + "r_x1": 472.53821175219514, + "r_y1": 697.871982412244, + "r_x2": 472.53821175219514, + "r_y2": 684.5879523663269, + "r_x3": 216.95508080448025, + "r_y3": 684.5879523663269, + "coord_origin": "TOPLEFT" + }, + "text": ": As augmented reality (AR) and virtual reality (VR) ", + "orig": ": As augmented reality (AR) and virtual reality (VR) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 55, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 711.5519724595299, + "r_x1": 525.5181319486474, + "r_y1": 711.5519724595299, + "r_x2": 525.5181319486474, + "r_y2": 698.2679424136128, + "r_x3": 108.00000040046937, + "r_y3": 698.2679424136128, + "coord_origin": "TOPLEFT" + }, + "text": "technology advance, users may be able to write and edit in 3D spaces, collaborating in ", + "orig": "technology advance, users may be able to write and edit in 3D spaces, collaborating in ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 56, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 725.4719825076454, + "r_x1": 213.6445207922045, + "r_y1": 725.4719825076454, + "r_x2": 213.6445207922045, + "r_y2": 712.1879524617283, + "r_x3": 108.00000040046937, + "r_y3": 712.1879524617283, + "coord_origin": "TOPLEFT" + }, + "text": "virtual environments. ", + "orig": "virtual environments. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 57, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 738.777522553637, + "r_x1": 94.63680335091797, + "r_y1": 738.777522553637, + "r_x2": 94.63680335091797, + "r_y2": 726.4295625109554, + "r_x3": 90.00000033372447, + "r_y3": 726.4295625109554, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 58, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 739.1519725549313, + "r_x1": 223.976240830515, + "r_y1": 739.1519725549313, + "r_x2": 223.976240830515, + "r_y2": 725.8679225090141, + "r_x3": 108.00000040046937, + "r_y3": 725.8679225090141, + "coord_origin": "TOPLEFT" + }, + "text": "Hyper-Personalization", + "orig": "Hyper-Personalization", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 59, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 223.98048083053075, + "r_y0": 739.1519725549313, + "r_x1": 518.906741924132, + "r_y1": 739.1519725549313, + "r_x2": 518.906741924132, + "r_y2": 725.8679225090141, + "r_x3": 223.98048083053075, + "r_y3": 725.8679225090141, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors could offer dynamic suggestions based on ", + "orig": ": Word processors could offer dynamic suggestions based on ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 60, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 753.3119506038763, + "r_x1": 463.21872171763806, + "r_y1": 753.3119506038763, + "r_x2": 463.21872171763806, + "r_y2": 740.0279525579592, + "r_x3": 108.00000040046937, + "r_y3": 740.0279525579592, + "coord_origin": "TOPLEFT" + }, + "text": "industry-specific needs, user habits, or even regional language variations. ", + "orig": "industry-specific needs, user habits, or even regional language variations. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "parsed_page": null, + "predictions": { + "layout": { + "clusters": [ + { + "id": 3, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 72.34796025007586, + "r": 514.5589619080102, + "b": 113.23199039139433, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9798315167427063, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 85.2575702946989, + "r_x1": 94.63680335091797, + "r_y1": 85.2575702946989, + "r_x2": 94.63680335091797, + "r_y2": 72.90954025201711, + "r_x3": 90.00000033372447, + "r_y3": 72.90954025201711, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 85.63196029599305, + "r_x1": 171.98883063774312, + "r_y1": 85.63196029599305, + "r_x2": 171.98883063774312, + "r_y2": 72.34796025007586, + "r_x3": 108.00000040046937, + "r_y3": 72.34796025007586, + "coord_origin": "TOPLEFT" + }, + "text": "Accessibility", + "orig": "Accessibility", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 171.99023063774834, + "r_y0": 85.63196029599305, + "r_x1": 514.5589619080102, + "r_y1": 85.63196029599305, + "r_x2": 514.5589619080102, + "r_y2": 72.34796025007586, + "r_x3": 171.99023063774834, + "r_y3": 72.34796025007586, + "coord_origin": "TOPLEFT" + }, + "text": ": Writers no longer needed expensive publishing equipment or training ", + "orig": ": Writers no longer needed expensive publishing equipment or training ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 99.31195034327891, + "r_x1": 491.5545718227088, + "r_y1": 99.31195034327891, + "r_x2": 491.5545718227088, + "r_y2": 86.02795029736171, + "r_x3": 108.00000040046937, + "r_y3": 86.02795029736171, + "coord_origin": "TOPLEFT" + }, + "text": "in typesetting to create polished work. This accessibility paved the way for self-", + "orig": "in typesetting to create polished work. This accessibility paved the way for self-", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 113.23199039139433, + "r_x1": 379.9569714088994, + "r_y1": 113.23199039139433, + "r_x2": 379.9569714088994, + "r_y2": 99.94793034547718, + "r_x3": 108.00000040046937, + "r_y3": 99.94793034547718, + "coord_origin": "TOPLEFT" + }, + "text": "publishing, blogging, and even fan fiction communities. ", + "orig": "publishing, blogging, and even fan fiction communities. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 7, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 113.6279903927632, + "r": 521.9014319352365, + "b": 154.5119605340816, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9790792465209961, + "cells": [ + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 126.53753043738607, + "r_x1": 94.63680335091797, + "r_y1": 126.53753043738607, + "r_x2": 94.63680335091797, + "r_y2": 114.18957039470433, + "r_x3": 90.00000033372447, + "r_y3": 114.18957039470433, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 126.9119804386803, + "r_x1": 160.6799905958094, + "r_y1": 126.9119804386803, + "r_x2": 160.6799905958094, + "r_y2": 113.6279903927632, + "r_x3": 108.00000040046937, + "r_y3": 113.6279903927632, + "coord_origin": "TOPLEFT" + }, + "text": "Education", + "orig": "Education", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 160.6816305958155, + "r_y0": 126.9119804386803, + "r_x1": 509.5430318894109, + "r_y1": 126.9119804386803, + "r_x2": 509.5430318894109, + "r_y2": 113.6279903927632, + "r_x3": 160.6816305958155, + "r_y3": 113.6279903927632, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors became a cornerstone of education, teaching students ", + "orig": ": Word processors became a cornerstone of education, teaching students ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 140.83197048679563, + "r_x1": 521.9014319352365, + "r_y1": 140.83197048679563, + "r_x2": 521.9014319352365, + "r_y2": 127.54797044087866, + "r_x3": 108.00000040046937, + "r_y3": 127.54797044087866, + "coord_origin": "TOPLEFT" + }, + "text": "not only how to write essays but also how to use technology effectively. Features like ", + "orig": "not only how to write essays but also how to use technology effectively. Features like ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 154.5119605340816, + "r_x1": 459.52728170395005, + "r_y1": 154.5119605340816, + "r_x2": 459.52728170395005, + "r_y2": 141.22796048816463, + "r_x3": 108.00000040046937, + "r_y3": 141.22796048816463, + "coord_origin": "TOPLEFT" + }, + "text": "bibliography generators and integrated research tools enhanced learning. ", + "orig": "bibliography generators and integrated research tools enhanced learning. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 6, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 155.14795053627995, + "r": 515.8510119128011, + "b": 196.27197067842803, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9792094230651855, + "cells": [ + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 168.0575505809029, + "r_x1": 94.63680335091797, + "r_y1": 168.0575505809029, + "r_x2": 94.63680335091797, + "r_y2": 155.70959053822128, + "r_x3": 90.00000033372447, + "r_y3": 155.70959053822128, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 168.43194058219706, + "r_x1": 195.63599072542797, + "r_y1": 168.43194058219706, + "r_x2": 195.63599072542797, + "r_y2": 155.14795053627995, + "r_x3": 108.00000040046937, + "r_y3": 155.14795053627995, + "coord_origin": "TOPLEFT" + }, + "text": "Creative Writing", + "orig": "Creative Writing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 195.63866072543786, + "r_y0": 168.43194058219706, + "r_x1": 509.872891890634, + "r_y1": 168.43194058219706, + "r_x2": 509.872891890634, + "r_y2": 155.14795053627995, + "r_x3": 195.63866072543786, + "r_y3": 155.14795053627995, + "coord_origin": "TOPLEFT" + }, + "text": ": Writers gained powerful tools to organize their ideas. Programs ", + "orig": ": Writers gained powerful tools to organize their ideas. Programs ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 182.1119406294829, + "r_x1": 515.8510119128011, + "r_y1": 182.1119406294829, + "r_x2": 515.8510119128011, + "r_y2": 168.8279405835658, + "r_x3": 108.00000040046937, + "r_y3": 168.8279405835658, + "coord_origin": "TOPLEFT" + }, + "text": "like Scrivener allowed authors to manage large projects, from novels to screenplays, ", + "orig": "like Scrivener allowed authors to manage large projects, from novels to screenplays, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 196.27197067842803, + "r_x1": 372.2227213802203, + "r_y1": 196.27197067842803, + "r_x2": 372.2227213802203, + "r_y2": 182.98797063251095, + "r_x3": 108.00000040046937, + "r_y3": 182.98797063251095, + "coord_origin": "TOPLEFT" + }, + "text": "with features like chapter outlines and character notes. ", + "orig": "with features like chapter outlines and character notes. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 12, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 238.58490082468575, + "r": 295.453431095556, + "b": 253.463010876113, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9634494781494141, + "cells": [ + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 253.463010876113, + "r_x1": 295.453431095556, + "r_y1": 253.463010876113, + "r_x2": 295.453431095556, + "r_y2": 238.58490082468575, + "r_x3": 72.00000026697958, + "r_y3": 238.58490082468575, + "coord_origin": "TOPLEFT" + }, + "text": "Word Processors in a Post-Digital Era ", + "orig": "Word Processors in a Post-Digital Era ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 14, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 268.1879909270109, + "r": 521.214971932691, + "b": 281.4719809729279, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9380115270614624, + "cells": [ + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 281.4719809729279, + "r_x1": 521.214971932691, + "r_y1": 281.4719809729279, + "r_x2": 521.214971932691, + "r_y2": 268.1879909270109, + "r_x3": 72.00000026697958, + "r_y3": 268.1879909270109, + "coord_origin": "TOPLEFT" + }, + "text": "As we move further into the 21st century, the role of the word processor continues to evolve: ", + "orig": "As we move further into the 21st century, the role of the word processor continues to evolve: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 1, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 295.5479710215825, + "r": 523.8382019424181, + "b": 350.3519612110165, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9815667867660522, + "cells": [ + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 308.8319710674996, + "r_x1": 99.00000036709692, + "r_y1": 308.8319710674996, + "r_x2": 99.00000036709692, + "r_y2": 295.5479710215825, + "r_x3": 90.00000033372447, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": "1.", + "orig": "1.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 308.8319710674996, + "r_x1": 216.9648108045163, + "r_y1": 308.8319710674996, + "r_x2": 216.9648108045163, + "r_y2": 295.5479710215825, + "r_x3": 108.00000040046937, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": "Artificial Intelligence", + "orig": "Artificial Intelligence", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 216.9668008045237, + "r_y0": 308.8319710674996, + "r_x1": 522.210631936383, + "r_y1": 308.8319710674996, + "r_x2": 522.210631936383, + "r_y2": 295.5479710215825, + "r_x3": 216.9668008045237, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": ": Modern word processors are leveraging AI to suggest content ", + "orig": ": Modern word processors are leveraging AI to suggest content ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 322.75195111561504, + "r_x1": 504.8831218721317, + "r_y1": 322.75195111561504, + "r_x2": 504.8831218721317, + "r_y2": 309.46795106969796, + "r_x3": 108.00000040046937, + "r_y3": 309.46795106969796, + "coord_origin": "TOPLEFT" + }, + "text": "improvements. Tools like Grammarly, ProWritingAid, and even native features in ", + "orig": "improvements. Tools like Grammarly, ProWritingAid, and even native features in ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 336.43194116290096, + "r_x1": 523.8382019424181, + "r_y1": 336.43194116290096, + "r_x2": 523.8382019424181, + "r_y2": 323.1479511169839, + "r_x3": 108.00000040046937, + "r_y3": 323.1479511169839, + "coord_origin": "TOPLEFT" + }, + "text": "Word now analyze tone, conciseness, and clarity. Some AI systems can even generate ", + "orig": "Word now analyze tone, conciseness, and clarity. Some AI systems can even generate ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 350.3519612110165, + "r_x1": 295.9101610972496, + "r_y1": 350.3519612110165, + "r_x2": 295.9101610972496, + "r_y2": 337.0679611650994, + "r_x3": 108.00000040046937, + "r_y3": 337.0679611650994, + "coord_origin": "TOPLEFT" + }, + "text": "entire paragraphs or rewrite sentences. ", + "orig": "entire paragraphs or rewrite sentences. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 0, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 350.7479812123853, + "r": 514.5262519078889, + "b": 405.55194140181914, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9819080233573914, + "cells": [ + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 364.0319512583023, + "r_x1": 99.00000036709692, + "r_y1": 364.0319512583023, + "r_x2": 99.00000036709692, + "r_y2": 350.7479812123853, + "r_x3": 90.00000033372447, + "r_y3": 350.7479812123853, + "coord_origin": "TOPLEFT" + }, + "text": "2.", + "orig": "2.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 364.0319512583023, + "r_x1": 256.327210950474, + "r_y1": 364.0319512583023, + "r_x2": 256.327210950474, + "r_y2": 350.7479812123853, + "r_x3": 108.00000040046937, + "r_y3": 350.7479812123853, + "coord_origin": "TOPLEFT" + }, + "text": "Integration with Other Tools", + "orig": "Integration with Other Tools", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 256.33008095048467, + "r_y0": 364.0319512583023, + "r_x1": 497.9115018462806, + "r_y1": 364.0319512583023, + "r_x2": 497.9115018462806, + "r_y2": 350.7479812123853, + "r_x3": 256.33008095048467, + "r_y3": 350.7479812123853, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors are no longer standalone. They ", + "orig": ": Word processors are no longer standalone. They ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 377.95196130641784, + "r_x1": 514.5262519078889, + "r_y1": 377.95196130641784, + "r_x2": 514.5262519078889, + "r_y2": 364.6679712605008, + "r_x3": 108.00000040046937, + "r_y3": 364.6679712605008, + "coord_origin": "TOPLEFT" + }, + "text": "integrate with task managers, cloud storage, and project management platforms. For ", + "orig": "integrate with task managers, cloud storage, and project management platforms. For ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 391.6319613537037, + "r_x1": 504.89987187219384, + "r_y1": 391.6319613537037, + "r_x2": 504.89987187219384, + "r_y2": 378.3479613077866, + "r_x3": 108.00000040046937, + "r_y3": 378.3479613077866, + "coord_origin": "TOPLEFT" + }, + "text": "instance, Google Docs syncs with Google Drive, while Microsoft Word integrates ", + "orig": "instance, Google Docs syncs with Google Drive, while Microsoft Word integrates ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 28, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 405.55194140181914, + "r_x1": 295.95120109740174, + "r_y1": 405.55194140181914, + "r_x2": 295.95120109740174, + "r_y2": 392.26794135590205, + "r_x3": 108.00000040046937, + "r_y3": 392.26794135590205, + "coord_origin": "TOPLEFT" + }, + "text": "seamlessly with OneDrive and Teams. ", + "orig": "seamlessly with OneDrive and Teams. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 5, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 405.947961403188, + "r": 502.9175418648432, + "b": 460.751981592622, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.979421854019165, + "cells": [ + { + "index": 29, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 419.2319614491051, + "r_x1": 99.00000036709692, + "r_y1": 419.2319614491051, + "r_x2": 99.00000036709692, + "r_y2": 405.947961403188, + "r_x3": 90.00000033372447, + "r_y3": 405.947961403188, + "coord_origin": "TOPLEFT" + }, + "text": "3.", + "orig": "3.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 30, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 419.2319614491051, + "r_x1": 176.33762065386867, + "r_y1": 419.2319614491051, + "r_x2": 176.33762065386867, + "r_y2": 405.947961403188, + "r_x3": 108.00000040046937, + "r_y3": 405.947961403188, + "coord_origin": "TOPLEFT" + }, + "text": "Voice Typing", + "orig": "Voice Typing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 31, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 176.33789065386966, + "r_y0": 419.2319614491051, + "r_x1": 477.5590517708127, + "r_y1": 419.2319614491051, + "r_x2": 477.5590517708127, + "r_y2": 405.947961403188, + "r_x3": 176.33789065386966, + "r_y3": 405.947961403188, + "coord_origin": "TOPLEFT" + }, + "text": ": Speech-to-text capabilities have made word processing more ", + "orig": ": Speech-to-text capabilities have made word processing more ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 32, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 433.1519714972206, + "r_x1": 438.90237162747184, + "r_y1": 433.1519714972206, + "r_x2": 438.90237162747184, + "r_y2": 419.86798145130354, + "r_x3": 108.00000040046937, + "r_y3": 419.86798145130354, + "coord_origin": "TOPLEFT" + }, + "text": "accessible, particularly for those with disabilities. Tools like Dragon ", + "orig": "accessible, particularly for those with disabilities. Tools like Dragon ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 33, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 446.8319715445065, + "r_x1": 502.9175418648432, + "r_y1": 446.8319715445065, + "r_x2": 502.9175418648432, + "r_y2": 433.5479714985894, + "r_x3": 108.00000040046937, + "r_y3": 433.5479714985894, + "coord_origin": "TOPLEFT" + }, + "text": "NaturallySpeaking and built-in options in Google Docs and Microsoft Word have ", + "orig": "NaturallySpeaking and built-in options in Google Docs and Microsoft Word have ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 34, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 460.751981592622, + "r_x1": 243.9549609045971, + "r_y1": 460.751981592622, + "r_x2": 243.9549609045971, + "r_y2": 447.4679515467048, + "r_x3": 108.00000040046937, + "r_y3": 447.4679515467048, + "coord_origin": "TOPLEFT" + }, + "text": "made dictation mainstream. ", + "orig": "made dictation mainstream. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 4, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 461.1479515939907, + "r": 516.9196819167639, + "b": 502.0319817353093, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9796164035797119, + "cells": [ + { + "index": 35, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 474.43197163990783, + "r_x1": 99.00000036709692, + "r_y1": 474.43197163990783, + "r_x2": 99.00000036709692, + "r_y2": 461.1479515939907, + "r_x3": 90.00000033372447, + "r_y3": 461.1479515939907, + "coord_origin": "TOPLEFT" + }, + "text": "4.", + "orig": "4.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 36, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 474.43197163990783, + "r_x1": 228.31917084661885, + "r_y1": 474.43197163990783, + "r_x2": 228.31917084661885, + "r_y2": 461.1479515939907, + "r_x3": 108.00000040046937, + "r_y3": 461.1479515939907, + "coord_origin": "TOPLEFT" + }, + "text": "Multimedia Documents", + "orig": "Multimedia Documents", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 37, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 228.32227084663035, + "r_y0": 474.43197163990783, + "r_x1": 516.9196819167639, + "r_y1": 474.43197163990783, + "r_x2": 516.9196819167639, + "r_y2": 461.1479515939907, + "r_x3": 228.32227084663035, + "r_y3": 461.1479515939907, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processing has expanded beyond text. Modern tools ", + "orig": ": Word processing has expanded beyond text. Modern tools ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 38, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 488.35196168802327, + "r_x1": 512.2006218992653, + "r_y1": 488.35196168802327, + "r_x2": 512.2006218992653, + "r_y2": 475.0679616421062, + "r_x3": 108.00000040046937, + "r_y3": 475.0679616421062, + "coord_origin": "TOPLEFT" + }, + "text": "allow users to embed images, videos, charts, and interactive elements, transforming ", + "orig": "allow users to embed images, videos, charts, and interactive elements, transforming ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 39, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 502.0319817353093, + "r_x1": 361.5996113408293, + "r_y1": 502.0319817353093, + "r_x2": 361.5996113408293, + "r_y2": 488.74795168939204, + "r_x3": 108.00000040046937, + "r_y3": 488.74795168939204, + "coord_origin": "TOPLEFT" + }, + "text": "simple documents into rich multimedia experiences. ", + "orig": "simple documents into rich multimedia experiences. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 2, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 502.6679417375074, + "r": 510.9070718944688, + "b": 543.7919618796556, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9810317158699036, + "cells": [ + { + "index": 40, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 515.9519617834246, + "r_x1": 99.00000036709692, + "r_y1": 515.9519617834246, + "r_x2": 99.00000036709692, + "r_y2": 502.6679417375074, + "r_x3": 90.00000033372447, + "r_y3": 502.6679417375074, + "coord_origin": "TOPLEFT" + }, + "text": "5.", + "orig": "5.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 41, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 515.9519617834246, + "r_x1": 254.2937309429338, + "r_y1": 515.9519617834246, + "r_x2": 254.2937309429338, + "r_y2": 502.6679417375074, + "r_x3": 108.00000040046937, + "r_y3": 502.6679417375074, + "coord_origin": "TOPLEFT" + }, + "text": "Cross-Platform Accessibility", + "orig": "Cross-Platform Accessibility", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 42, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 254.2967809429451, + "r_y0": 515.9519617834246, + "r_x1": 510.9070718944688, + "r_y1": 515.9519617834246, + "r_x2": 510.9070718944688, + "r_y2": 502.6679417375074, + "r_x3": 254.2967809429451, + "r_y3": 502.6679417375074, + "coord_origin": "TOPLEFT" + }, + "text": ": Thanks to cloud computing, documents can now be ", + "orig": ": Thanks to cloud computing, documents can now be ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 43, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 529.6319618307105, + "r_x1": 469.6751117415787, + "r_y1": 529.6319618307105, + "r_x2": 469.6751117415787, + "r_y2": 516.3479617847934, + "r_x3": 108.00000040046937, + "r_y3": 516.3479617847934, + "coord_origin": "TOPLEFT" + }, + "text": "accessed and edited across devices. Whether you're on a desktop, tablet, or ", + "orig": "accessed and edited across devices. Whether you're on a desktop, tablet, or ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 44, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 543.7919618796556, + "r_x1": 355.9451913198625, + "r_y1": 543.7919618796556, + "r_x2": 355.9451913198625, + "r_y2": 530.5079318337384, + "r_x3": 108.00000040046937, + "r_y3": 530.5079318337384, + "coord_origin": "TOPLEFT" + }, + "text": "smartphone, you can continue working seamlessly. ", + "orig": "smartphone, you can continue working seamlessly. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 13, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 586.1049220259133, + "r": 228.355610846754, + "b": 600.9829720773404, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9614330530166626, + "cells": [ + { + "index": 45, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 600.9829720773404, + "r_x1": 228.355610846754, + "r_y1": 600.9829720773404, + "r_x2": 228.355610846754, + "r_y2": 586.1049220259133, + "r_x3": 72.00000026697958, + "r_y3": 586.1049220259133, + "coord_origin": "TOPLEFT" + }, + "text": "A Glimpse Into the Future ", + "orig": "A Glimpse Into the Future ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 10, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 615.4679521274087, + "r": 515.04700190982, + "b": 642.6719622214413, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9675389528274536, + "cells": [ + { + "index": 46, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 628.7519521733258, + "r_x1": 515.04700190982, + "r_y1": 628.7519521733258, + "r_x2": 515.04700190982, + "r_y2": 615.4679521274087, + "r_x3": 72.00000026697958, + "r_y3": 615.4679521274087, + "coord_origin": "TOPLEFT" + }, + "text": "The word processor's future lies in adaptability and intelligence. Some exciting possibilities ", + "orig": "The word processor's future lies in adaptability and intelligence. Some exciting possibilities ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 47, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 642.6719622214413, + "r_x1": 113.6543004214358, + "r_y1": 642.6719622214413, + "r_x2": 113.6543004214358, + "r_y2": 629.3879421755241, + "r_x3": 72.00000026697958, + "r_y3": 629.3879421755241, + "coord_origin": "TOPLEFT" + }, + "text": "include: ", + "orig": "include: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 11, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 656.9879422709255, + "r": 518.2673319217611, + "b": 683.9519623641286, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9675005674362183, + "cells": [ + { + "index": 48, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 669.8975523155485, + "r_x1": 94.63680335091797, + "r_y1": 669.8975523155485, + "r_x2": 94.63680335091797, + "r_y2": 657.5495622728668, + "r_x3": 90.00000033372447, + "r_y3": 657.5495622728668, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 49, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 670.2719723168427, + "r_x1": 240.67430089243229, + "r_y1": 670.2719723168427, + "r_x2": 240.67430089243229, + "r_y2": 656.9879422709255, + "r_x3": 108.00000040046937, + "r_y3": 656.9879422709255, + "coord_origin": "TOPLEFT" + }, + "text": "Fully AI-Assisted Writing", + "orig": "Fully AI-Assisted Writing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 50, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 240.67390089243082, + "r_y0": 670.2719723168427, + "r_x1": 518.2673319217611, + "r_y1": 670.2719723168427, + "r_x2": 518.2673319217611, + "r_y2": 656.9879422709255, + "r_x3": 240.67390089243082, + "r_y3": 656.9879422709255, + "coord_origin": "TOPLEFT" + }, + "text": ": Imagine a word processor that understands your writing ", + "orig": ": Imagine a word processor that understands your writing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 51, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 683.9519623641286, + "r_x1": 436.57608161884576, + "r_y1": 683.9519623641286, + "r_x2": 436.57608161884576, + "r_y2": 670.6679423182114, + "r_x3": 108.00000040046937, + "r_y3": 670.6679423182114, + "coord_origin": "TOPLEFT" + }, + "text": "style, drafts emails, or creates entire essays based on minimal input. ", + "orig": "style, drafts emails, or creates entire essays based on minimal input. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 9, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 684.5879523663269, + "r": 525.5181319486474, + "b": 725.4719825076454, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9722561836242676, + "cells": [ + { + "index": 52, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 697.49756241095, + "r_x1": 94.63680335091797, + "r_y1": 697.49756241095, + "r_x2": 94.63680335091797, + "r_y2": 685.1495623682681, + "r_x3": 90.00000033372447, + "r_y3": 685.1495623682681, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 53, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 697.871982412244, + "r_x1": 216.9503908044628, + "r_y1": 697.871982412244, + "r_x2": 216.9503908044628, + "r_y2": 684.5879523663269, + "r_x3": 108.00000040046937, + "r_y3": 684.5879523663269, + "coord_origin": "TOPLEFT" + }, + "text": "Immersive Interfaces", + "orig": "Immersive Interfaces", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 54, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 216.95508080448025, + "r_y0": 697.871982412244, + "r_x1": 472.53821175219514, + "r_y1": 697.871982412244, + "r_x2": 472.53821175219514, + "r_y2": 684.5879523663269, + "r_x3": 216.95508080448025, + "r_y3": 684.5879523663269, + "coord_origin": "TOPLEFT" + }, + "text": ": As augmented reality (AR) and virtual reality (VR) ", + "orig": ": As augmented reality (AR) and virtual reality (VR) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 55, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 711.5519724595299, + "r_x1": 525.5181319486474, + "r_y1": 711.5519724595299, + "r_x2": 525.5181319486474, + "r_y2": 698.2679424136128, + "r_x3": 108.00000040046937, + "r_y3": 698.2679424136128, + "coord_origin": "TOPLEFT" + }, + "text": "technology advance, users may be able to write and edit in 3D spaces, collaborating in ", + "orig": "technology advance, users may be able to write and edit in 3D spaces, collaborating in ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 56, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 725.4719825076454, + "r_x1": 213.6445207922045, + "r_y1": 725.4719825076454, + "r_x2": 213.6445207922045, + "r_y2": 712.1879524617283, + "r_x3": 108.00000040046937, + "r_y3": 712.1879524617283, + "coord_origin": "TOPLEFT" + }, + "text": "virtual environments. ", + "orig": "virtual environments. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + { + "id": 8, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 725.8679225090141, + "r": 518.906741924132, + "b": 753.3119506038763, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9774264693260193, + "cells": [ + { + "index": 57, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 738.777522553637, + "r_x1": 94.63680335091797, + "r_y1": 738.777522553637, + "r_x2": 94.63680335091797, + "r_y2": 726.4295625109554, + "r_x3": 90.00000033372447, + "r_y3": 726.4295625109554, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 58, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 739.1519725549313, + "r_x1": 223.976240830515, + "r_y1": 739.1519725549313, + "r_x2": 223.976240830515, + "r_y2": 725.8679225090141, + "r_x3": 108.00000040046937, + "r_y3": 725.8679225090141, + "coord_origin": "TOPLEFT" + }, + "text": "Hyper-Personalization", + "orig": "Hyper-Personalization", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 59, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 223.98048083053075, + "r_y0": 739.1519725549313, + "r_x1": 518.906741924132, + "r_y1": 739.1519725549313, + "r_x2": 518.906741924132, + "r_y2": 725.8679225090141, + "r_x3": 223.98048083053075, + "r_y3": 725.8679225090141, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors could offer dynamic suggestions based on ", + "orig": ": Word processors could offer dynamic suggestions based on ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 60, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 753.3119506038763, + "r_x1": 463.21872171763806, + "r_y1": 753.3119506038763, + "r_x2": 463.21872171763806, + "r_y2": 740.0279525579592, + "r_x3": 108.00000040046937, + "r_y3": 740.0279525579592, + "coord_origin": "TOPLEFT" + }, + "text": "industry-specific needs, user habits, or even regional language variations. ", + "orig": "industry-specific needs, user habits, or even regional language variations. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + } + ] + }, + "tablestructure": { + "table_map": {} + }, + "figures_classification": null, + "equations_prediction": null, + "vlm_response": null + }, + "assembled": { + "elements": [ + { + "label": "list_item", + "id": 3, + "page_no": 3, + "cluster": { + "id": 3, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 72.34796025007586, + "r": 514.5589619080102, + "b": 113.23199039139433, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9798315167427063, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 85.2575702946989, + "r_x1": 94.63680335091797, + "r_y1": 85.2575702946989, + "r_x2": 94.63680335091797, + "r_y2": 72.90954025201711, + "r_x3": 90.00000033372447, + "r_y3": 72.90954025201711, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 85.63196029599305, + "r_x1": 171.98883063774312, + "r_y1": 85.63196029599305, + "r_x2": 171.98883063774312, + "r_y2": 72.34796025007586, + "r_x3": 108.00000040046937, + "r_y3": 72.34796025007586, + "coord_origin": "TOPLEFT" + }, + "text": "Accessibility", + "orig": "Accessibility", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 171.99023063774834, + "r_y0": 85.63196029599305, + "r_x1": 514.5589619080102, + "r_y1": 85.63196029599305, + "r_x2": 514.5589619080102, + "r_y2": 72.34796025007586, + "r_x3": 171.99023063774834, + "r_y3": 72.34796025007586, + "coord_origin": "TOPLEFT" + }, + "text": ": Writers no longer needed expensive publishing equipment or training ", + "orig": ": Writers no longer needed expensive publishing equipment or training ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 99.31195034327891, + "r_x1": 491.5545718227088, + "r_y1": 99.31195034327891, + "r_x2": 491.5545718227088, + "r_y2": 86.02795029736171, + "r_x3": 108.00000040046937, + "r_y3": 86.02795029736171, + "coord_origin": "TOPLEFT" + }, + "text": "in typesetting to create polished work. This accessibility paved the way for self-", + "orig": "in typesetting to create polished work. This accessibility paved the way for self-", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 113.23199039139433, + "r_x1": 379.9569714088994, + "r_y1": 113.23199039139433, + "r_x2": 379.9569714088994, + "r_y2": 99.94793034547718, + "r_x3": 108.00000040046937, + "r_y3": 99.94793034547718, + "coord_origin": "TOPLEFT" + }, + "text": "publishing, blogging, and even fan fiction communities. ", + "orig": "publishing, blogging, and even fan fiction communities. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Accessibility : Writers no longer needed expensive publishing equipment or training in typesetting to create polished work. This accessibility paved the way for selfpublishing, blogging, and even fan fiction communities." + }, + { + "label": "list_item", + "id": 7, + "page_no": 3, + "cluster": { + "id": 7, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 113.6279903927632, + "r": 521.9014319352365, + "b": 154.5119605340816, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9790792465209961, + "cells": [ + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 126.53753043738607, + "r_x1": 94.63680335091797, + "r_y1": 126.53753043738607, + "r_x2": 94.63680335091797, + "r_y2": 114.18957039470433, + "r_x3": 90.00000033372447, + "r_y3": 114.18957039470433, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 126.9119804386803, + "r_x1": 160.6799905958094, + "r_y1": 126.9119804386803, + "r_x2": 160.6799905958094, + "r_y2": 113.6279903927632, + "r_x3": 108.00000040046937, + "r_y3": 113.6279903927632, + "coord_origin": "TOPLEFT" + }, + "text": "Education", + "orig": "Education", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 160.6816305958155, + "r_y0": 126.9119804386803, + "r_x1": 509.5430318894109, + "r_y1": 126.9119804386803, + "r_x2": 509.5430318894109, + "r_y2": 113.6279903927632, + "r_x3": 160.6816305958155, + "r_y3": 113.6279903927632, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors became a cornerstone of education, teaching students ", + "orig": ": Word processors became a cornerstone of education, teaching students ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 140.83197048679563, + "r_x1": 521.9014319352365, + "r_y1": 140.83197048679563, + "r_x2": 521.9014319352365, + "r_y2": 127.54797044087866, + "r_x3": 108.00000040046937, + "r_y3": 127.54797044087866, + "coord_origin": "TOPLEFT" + }, + "text": "not only how to write essays but also how to use technology effectively. Features like ", + "orig": "not only how to write essays but also how to use technology effectively. Features like ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 154.5119605340816, + "r_x1": 459.52728170395005, + "r_y1": 154.5119605340816, + "r_x2": 459.52728170395005, + "r_y2": 141.22796048816463, + "r_x3": 108.00000040046937, + "r_y3": 141.22796048816463, + "coord_origin": "TOPLEFT" + }, + "text": "bibliography generators and integrated research tools enhanced learning. ", + "orig": "bibliography generators and integrated research tools enhanced learning. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Education : Word processors became a cornerstone of education, teaching students not only how to write essays but also how to use technology effectively. Features like bibliography generators and integrated research tools enhanced learning." + }, + { + "label": "list_item", + "id": 6, + "page_no": 3, + "cluster": { + "id": 6, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 155.14795053627995, + "r": 515.8510119128011, + "b": 196.27197067842803, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9792094230651855, + "cells": [ + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 168.0575505809029, + "r_x1": 94.63680335091797, + "r_y1": 168.0575505809029, + "r_x2": 94.63680335091797, + "r_y2": 155.70959053822128, + "r_x3": 90.00000033372447, + "r_y3": 155.70959053822128, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 168.43194058219706, + "r_x1": 195.63599072542797, + "r_y1": 168.43194058219706, + "r_x2": 195.63599072542797, + "r_y2": 155.14795053627995, + "r_x3": 108.00000040046937, + "r_y3": 155.14795053627995, + "coord_origin": "TOPLEFT" + }, + "text": "Creative Writing", + "orig": "Creative Writing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 195.63866072543786, + "r_y0": 168.43194058219706, + "r_x1": 509.872891890634, + "r_y1": 168.43194058219706, + "r_x2": 509.872891890634, + "r_y2": 155.14795053627995, + "r_x3": 195.63866072543786, + "r_y3": 155.14795053627995, + "coord_origin": "TOPLEFT" + }, + "text": ": Writers gained powerful tools to organize their ideas. Programs ", + "orig": ": Writers gained powerful tools to organize their ideas. Programs ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 182.1119406294829, + "r_x1": 515.8510119128011, + "r_y1": 182.1119406294829, + "r_x2": 515.8510119128011, + "r_y2": 168.8279405835658, + "r_x3": 108.00000040046937, + "r_y3": 168.8279405835658, + "coord_origin": "TOPLEFT" + }, + "text": "like Scrivener allowed authors to manage large projects, from novels to screenplays, ", + "orig": "like Scrivener allowed authors to manage large projects, from novels to screenplays, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 196.27197067842803, + "r_x1": 372.2227213802203, + "r_y1": 196.27197067842803, + "r_x2": 372.2227213802203, + "r_y2": 182.98797063251095, + "r_x3": 108.00000040046937, + "r_y3": 182.98797063251095, + "coord_origin": "TOPLEFT" + }, + "text": "with features like chapter outlines and character notes. ", + "orig": "with features like chapter outlines and character notes. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Creative Writing : Writers gained powerful tools to organize their ideas. Programs like Scrivener allowed authors to manage large projects, from novels to screenplays, with features like chapter outlines and character notes." + }, + { + "label": "section_header", + "id": 12, + "page_no": 3, + "cluster": { + "id": 12, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 238.58490082468575, + "r": 295.453431095556, + "b": 253.463010876113, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9634494781494141, + "cells": [ + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 253.463010876113, + "r_x1": 295.453431095556, + "r_y1": 253.463010876113, + "r_x2": 295.453431095556, + "r_y2": 238.58490082468575, + "r_x3": 72.00000026697958, + "r_y3": 238.58490082468575, + "coord_origin": "TOPLEFT" + }, + "text": "Word Processors in a Post-Digital Era ", + "orig": "Word Processors in a Post-Digital Era ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "Word Processors in a Post-Digital Era" + }, + { + "label": "text", + "id": 14, + "page_no": 3, + "cluster": { + "id": 14, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 268.1879909270109, + "r": 521.214971932691, + "b": 281.4719809729279, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9380115270614624, + "cells": [ + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 281.4719809729279, + "r_x1": 521.214971932691, + "r_y1": 281.4719809729279, + "r_x2": 521.214971932691, + "r_y2": 268.1879909270109, + "r_x3": 72.00000026697958, + "r_y3": 268.1879909270109, + "coord_origin": "TOPLEFT" + }, + "text": "As we move further into the 21st century, the role of the word processor continues to evolve: ", + "orig": "As we move further into the 21st century, the role of the word processor continues to evolve: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "As we move further into the 21st century, the role of the word processor continues to evolve:" + }, + { + "label": "list_item", + "id": 1, + "page_no": 3, + "cluster": { + "id": 1, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 295.5479710215825, + "r": 523.8382019424181, + "b": 350.3519612110165, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9815667867660522, + "cells": [ + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 308.8319710674996, + "r_x1": 99.00000036709692, + "r_y1": 308.8319710674996, + "r_x2": 99.00000036709692, + "r_y2": 295.5479710215825, + "r_x3": 90.00000033372447, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": "1.", + "orig": "1.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 308.8319710674996, + "r_x1": 216.9648108045163, + "r_y1": 308.8319710674996, + "r_x2": 216.9648108045163, + "r_y2": 295.5479710215825, + "r_x3": 108.00000040046937, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": "Artificial Intelligence", + "orig": "Artificial Intelligence", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 216.9668008045237, + "r_y0": 308.8319710674996, + "r_x1": 522.210631936383, + "r_y1": 308.8319710674996, + "r_x2": 522.210631936383, + "r_y2": 295.5479710215825, + "r_x3": 216.9668008045237, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": ": Modern word processors are leveraging AI to suggest content ", + "orig": ": Modern word processors are leveraging AI to suggest content ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 322.75195111561504, + "r_x1": 504.8831218721317, + "r_y1": 322.75195111561504, + "r_x2": 504.8831218721317, + "r_y2": 309.46795106969796, + "r_x3": 108.00000040046937, + "r_y3": 309.46795106969796, + "coord_origin": "TOPLEFT" + }, + "text": "improvements. Tools like Grammarly, ProWritingAid, and even native features in ", + "orig": "improvements. Tools like Grammarly, ProWritingAid, and even native features in ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 336.43194116290096, + "r_x1": 523.8382019424181, + "r_y1": 336.43194116290096, + "r_x2": 523.8382019424181, + "r_y2": 323.1479511169839, + "r_x3": 108.00000040046937, + "r_y3": 323.1479511169839, + "coord_origin": "TOPLEFT" + }, + "text": "Word now analyze tone, conciseness, and clarity. Some AI systems can even generate ", + "orig": "Word now analyze tone, conciseness, and clarity. Some AI systems can even generate ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 350.3519612110165, + "r_x1": 295.9101610972496, + "r_y1": 350.3519612110165, + "r_x2": 295.9101610972496, + "r_y2": 337.0679611650994, + "r_x3": 108.00000040046937, + "r_y3": 337.0679611650994, + "coord_origin": "TOPLEFT" + }, + "text": "entire paragraphs or rewrite sentences. ", + "orig": "entire paragraphs or rewrite sentences. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "1. Artificial Intelligence : Modern word processors are leveraging AI to suggest content improvements. Tools like Grammarly, ProWritingAid, and even native features in Word now analyze tone, conciseness, and clarity. Some AI systems can even generate entire paragraphs or rewrite sentences." + }, + { + "label": "list_item", + "id": 0, + "page_no": 3, + "cluster": { + "id": 0, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 350.7479812123853, + "r": 514.5262519078889, + "b": 405.55194140181914, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9819080233573914, + "cells": [ + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 364.0319512583023, + "r_x1": 99.00000036709692, + "r_y1": 364.0319512583023, + "r_x2": 99.00000036709692, + "r_y2": 350.7479812123853, + "r_x3": 90.00000033372447, + "r_y3": 350.7479812123853, + "coord_origin": "TOPLEFT" + }, + "text": "2.", + "orig": "2.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 364.0319512583023, + "r_x1": 256.327210950474, + "r_y1": 364.0319512583023, + "r_x2": 256.327210950474, + "r_y2": 350.7479812123853, + "r_x3": 108.00000040046937, + "r_y3": 350.7479812123853, + "coord_origin": "TOPLEFT" + }, + "text": "Integration with Other Tools", + "orig": "Integration with Other Tools", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 256.33008095048467, + "r_y0": 364.0319512583023, + "r_x1": 497.9115018462806, + "r_y1": 364.0319512583023, + "r_x2": 497.9115018462806, + "r_y2": 350.7479812123853, + "r_x3": 256.33008095048467, + "r_y3": 350.7479812123853, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors are no longer standalone. They ", + "orig": ": Word processors are no longer standalone. They ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 377.95196130641784, + "r_x1": 514.5262519078889, + "r_y1": 377.95196130641784, + "r_x2": 514.5262519078889, + "r_y2": 364.6679712605008, + "r_x3": 108.00000040046937, + "r_y3": 364.6679712605008, + "coord_origin": "TOPLEFT" + }, + "text": "integrate with task managers, cloud storage, and project management platforms. For ", + "orig": "integrate with task managers, cloud storage, and project management platforms. For ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 391.6319613537037, + "r_x1": 504.89987187219384, + "r_y1": 391.6319613537037, + "r_x2": 504.89987187219384, + "r_y2": 378.3479613077866, + "r_x3": 108.00000040046937, + "r_y3": 378.3479613077866, + "coord_origin": "TOPLEFT" + }, + "text": "instance, Google Docs syncs with Google Drive, while Microsoft Word integrates ", + "orig": "instance, Google Docs syncs with Google Drive, while Microsoft Word integrates ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 28, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 405.55194140181914, + "r_x1": 295.95120109740174, + "r_y1": 405.55194140181914, + "r_x2": 295.95120109740174, + "r_y2": 392.26794135590205, + "r_x3": 108.00000040046937, + "r_y3": 392.26794135590205, + "coord_origin": "TOPLEFT" + }, + "text": "seamlessly with OneDrive and Teams. ", + "orig": "seamlessly with OneDrive and Teams. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "2. Integration with Other Tools : Word processors are no longer standalone. They integrate with task managers, cloud storage, and project management platforms. For instance, Google Docs syncs with Google Drive, while Microsoft Word integrates seamlessly with OneDrive and Teams." + }, + { + "label": "list_item", + "id": 5, + "page_no": 3, + "cluster": { + "id": 5, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 405.947961403188, + "r": 502.9175418648432, + "b": 460.751981592622, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.979421854019165, + "cells": [ + { + "index": 29, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 419.2319614491051, + "r_x1": 99.00000036709692, + "r_y1": 419.2319614491051, + "r_x2": 99.00000036709692, + "r_y2": 405.947961403188, + "r_x3": 90.00000033372447, + "r_y3": 405.947961403188, + "coord_origin": "TOPLEFT" + }, + "text": "3.", + "orig": "3.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 30, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 419.2319614491051, + "r_x1": 176.33762065386867, + "r_y1": 419.2319614491051, + "r_x2": 176.33762065386867, + "r_y2": 405.947961403188, + "r_x3": 108.00000040046937, + "r_y3": 405.947961403188, + "coord_origin": "TOPLEFT" + }, + "text": "Voice Typing", + "orig": "Voice Typing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 31, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 176.33789065386966, + "r_y0": 419.2319614491051, + "r_x1": 477.5590517708127, + "r_y1": 419.2319614491051, + "r_x2": 477.5590517708127, + "r_y2": 405.947961403188, + "r_x3": 176.33789065386966, + "r_y3": 405.947961403188, + "coord_origin": "TOPLEFT" + }, + "text": ": Speech-to-text capabilities have made word processing more ", + "orig": ": Speech-to-text capabilities have made word processing more ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 32, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 433.1519714972206, + "r_x1": 438.90237162747184, + "r_y1": 433.1519714972206, + "r_x2": 438.90237162747184, + "r_y2": 419.86798145130354, + "r_x3": 108.00000040046937, + "r_y3": 419.86798145130354, + "coord_origin": "TOPLEFT" + }, + "text": "accessible, particularly for those with disabilities. Tools like Dragon ", + "orig": "accessible, particularly for those with disabilities. Tools like Dragon ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 33, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 446.8319715445065, + "r_x1": 502.9175418648432, + "r_y1": 446.8319715445065, + "r_x2": 502.9175418648432, + "r_y2": 433.5479714985894, + "r_x3": 108.00000040046937, + "r_y3": 433.5479714985894, + "coord_origin": "TOPLEFT" + }, + "text": "NaturallySpeaking and built-in options in Google Docs and Microsoft Word have ", + "orig": "NaturallySpeaking and built-in options in Google Docs and Microsoft Word have ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 34, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 460.751981592622, + "r_x1": 243.9549609045971, + "r_y1": 460.751981592622, + "r_x2": 243.9549609045971, + "r_y2": 447.4679515467048, + "r_x3": 108.00000040046937, + "r_y3": 447.4679515467048, + "coord_origin": "TOPLEFT" + }, + "text": "made dictation mainstream. ", + "orig": "made dictation mainstream. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "3. Voice Typing : Speech-to-text capabilities have made word processing more accessible, particularly for those with disabilities. Tools like Dragon NaturallySpeaking and built-in options in Google Docs and Microsoft Word have made dictation mainstream." + }, + { + "label": "list_item", + "id": 4, + "page_no": 3, + "cluster": { + "id": 4, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 461.1479515939907, + "r": 516.9196819167639, + "b": 502.0319817353093, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9796164035797119, + "cells": [ + { + "index": 35, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 474.43197163990783, + "r_x1": 99.00000036709692, + "r_y1": 474.43197163990783, + "r_x2": 99.00000036709692, + "r_y2": 461.1479515939907, + "r_x3": 90.00000033372447, + "r_y3": 461.1479515939907, + "coord_origin": "TOPLEFT" + }, + "text": "4.", + "orig": "4.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 36, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 474.43197163990783, + "r_x1": 228.31917084661885, + "r_y1": 474.43197163990783, + "r_x2": 228.31917084661885, + "r_y2": 461.1479515939907, + "r_x3": 108.00000040046937, + "r_y3": 461.1479515939907, + "coord_origin": "TOPLEFT" + }, + "text": "Multimedia Documents", + "orig": "Multimedia Documents", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 37, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 228.32227084663035, + "r_y0": 474.43197163990783, + "r_x1": 516.9196819167639, + "r_y1": 474.43197163990783, + "r_x2": 516.9196819167639, + "r_y2": 461.1479515939907, + "r_x3": 228.32227084663035, + "r_y3": 461.1479515939907, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processing has expanded beyond text. Modern tools ", + "orig": ": Word processing has expanded beyond text. Modern tools ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 38, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 488.35196168802327, + "r_x1": 512.2006218992653, + "r_y1": 488.35196168802327, + "r_x2": 512.2006218992653, + "r_y2": 475.0679616421062, + "r_x3": 108.00000040046937, + "r_y3": 475.0679616421062, + "coord_origin": "TOPLEFT" + }, + "text": "allow users to embed images, videos, charts, and interactive elements, transforming ", + "orig": "allow users to embed images, videos, charts, and interactive elements, transforming ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 39, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 502.0319817353093, + "r_x1": 361.5996113408293, + "r_y1": 502.0319817353093, + "r_x2": 361.5996113408293, + "r_y2": 488.74795168939204, + "r_x3": 108.00000040046937, + "r_y3": 488.74795168939204, + "coord_origin": "TOPLEFT" + }, + "text": "simple documents into rich multimedia experiences. ", + "orig": "simple documents into rich multimedia experiences. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "4. Multimedia Documents : Word processing has expanded beyond text. Modern tools allow users to embed images, videos, charts, and interactive elements, transforming simple documents into rich multimedia experiences." + }, + { + "label": "list_item", + "id": 2, + "page_no": 3, + "cluster": { + "id": 2, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 502.6679417375074, + "r": 510.9070718944688, + "b": 543.7919618796556, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9810317158699036, + "cells": [ + { + "index": 40, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 515.9519617834246, + "r_x1": 99.00000036709692, + "r_y1": 515.9519617834246, + "r_x2": 99.00000036709692, + "r_y2": 502.6679417375074, + "r_x3": 90.00000033372447, + "r_y3": 502.6679417375074, + "coord_origin": "TOPLEFT" + }, + "text": "5.", + "orig": "5.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 41, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 515.9519617834246, + "r_x1": 254.2937309429338, + "r_y1": 515.9519617834246, + "r_x2": 254.2937309429338, + "r_y2": 502.6679417375074, + "r_x3": 108.00000040046937, + "r_y3": 502.6679417375074, + "coord_origin": "TOPLEFT" + }, + "text": "Cross-Platform Accessibility", + "orig": "Cross-Platform Accessibility", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 42, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 254.2967809429451, + "r_y0": 515.9519617834246, + "r_x1": 510.9070718944688, + "r_y1": 515.9519617834246, + "r_x2": 510.9070718944688, + "r_y2": 502.6679417375074, + "r_x3": 254.2967809429451, + "r_y3": 502.6679417375074, + "coord_origin": "TOPLEFT" + }, + "text": ": Thanks to cloud computing, documents can now be ", + "orig": ": Thanks to cloud computing, documents can now be ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 43, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 529.6319618307105, + "r_x1": 469.6751117415787, + "r_y1": 529.6319618307105, + "r_x2": 469.6751117415787, + "r_y2": 516.3479617847934, + "r_x3": 108.00000040046937, + "r_y3": 516.3479617847934, + "coord_origin": "TOPLEFT" + }, + "text": "accessed and edited across devices. Whether you're on a desktop, tablet, or ", + "orig": "accessed and edited across devices. Whether you're on a desktop, tablet, or ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 44, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 543.7919618796556, + "r_x1": 355.9451913198625, + "r_y1": 543.7919618796556, + "r_x2": 355.9451913198625, + "r_y2": 530.5079318337384, + "r_x3": 108.00000040046937, + "r_y3": 530.5079318337384, + "coord_origin": "TOPLEFT" + }, + "text": "smartphone, you can continue working seamlessly. ", + "orig": "smartphone, you can continue working seamlessly. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "5. Cross-Platform Accessibility : Thanks to cloud computing, documents can now be accessed and edited across devices. Whether you're on a desktop, tablet, or smartphone, you can continue working seamlessly." + }, + { + "label": "section_header", + "id": 13, + "page_no": 3, + "cluster": { + "id": 13, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 586.1049220259133, + "r": 228.355610846754, + "b": 600.9829720773404, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9614330530166626, + "cells": [ + { + "index": 45, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 600.9829720773404, + "r_x1": 228.355610846754, + "r_y1": 600.9829720773404, + "r_x2": 228.355610846754, + "r_y2": 586.1049220259133, + "r_x3": 72.00000026697958, + "r_y3": 586.1049220259133, + "coord_origin": "TOPLEFT" + }, + "text": "A Glimpse Into the Future ", + "orig": "A Glimpse Into the Future ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "A Glimpse Into the Future" + }, + { + "label": "text", + "id": 10, + "page_no": 3, + "cluster": { + "id": 10, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 615.4679521274087, + "r": 515.04700190982, + "b": 642.6719622214413, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9675389528274536, + "cells": [ + { + "index": 46, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 628.7519521733258, + "r_x1": 515.04700190982, + "r_y1": 628.7519521733258, + "r_x2": 515.04700190982, + "r_y2": 615.4679521274087, + "r_x3": 72.00000026697958, + "r_y3": 615.4679521274087, + "coord_origin": "TOPLEFT" + }, + "text": "The word processor's future lies in adaptability and intelligence. Some exciting possibilities ", + "orig": "The word processor's future lies in adaptability and intelligence. Some exciting possibilities ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 47, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 642.6719622214413, + "r_x1": 113.6543004214358, + "r_y1": 642.6719622214413, + "r_x2": 113.6543004214358, + "r_y2": 629.3879421755241, + "r_x3": 72.00000026697958, + "r_y3": 629.3879421755241, + "coord_origin": "TOPLEFT" + }, + "text": "include: ", + "orig": "include: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The word processor's future lies in adaptability and intelligence. Some exciting possibilities include:" + }, + { + "label": "list_item", + "id": 11, + "page_no": 3, + "cluster": { + "id": 11, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 656.9879422709255, + "r": 518.2673319217611, + "b": 683.9519623641286, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9675005674362183, + "cells": [ + { + "index": 48, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 669.8975523155485, + "r_x1": 94.63680335091797, + "r_y1": 669.8975523155485, + "r_x2": 94.63680335091797, + "r_y2": 657.5495622728668, + "r_x3": 90.00000033372447, + "r_y3": 657.5495622728668, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 49, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 670.2719723168427, + "r_x1": 240.67430089243229, + "r_y1": 670.2719723168427, + "r_x2": 240.67430089243229, + "r_y2": 656.9879422709255, + "r_x3": 108.00000040046937, + "r_y3": 656.9879422709255, + "coord_origin": "TOPLEFT" + }, + "text": "Fully AI-Assisted Writing", + "orig": "Fully AI-Assisted Writing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 50, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 240.67390089243082, + "r_y0": 670.2719723168427, + "r_x1": 518.2673319217611, + "r_y1": 670.2719723168427, + "r_x2": 518.2673319217611, + "r_y2": 656.9879422709255, + "r_x3": 240.67390089243082, + "r_y3": 656.9879422709255, + "coord_origin": "TOPLEFT" + }, + "text": ": Imagine a word processor that understands your writing ", + "orig": ": Imagine a word processor that understands your writing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 51, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 683.9519623641286, + "r_x1": 436.57608161884576, + "r_y1": 683.9519623641286, + "r_x2": 436.57608161884576, + "r_y2": 670.6679423182114, + "r_x3": 108.00000040046937, + "r_y3": 670.6679423182114, + "coord_origin": "TOPLEFT" + }, + "text": "style, drafts emails, or creates entire essays based on minimal input. ", + "orig": "style, drafts emails, or creates entire essays based on minimal input. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Fully AI-Assisted Writing : Imagine a word processor that understands your writing style, drafts emails, or creates entire essays based on minimal input." + }, + { + "label": "list_item", + "id": 9, + "page_no": 3, + "cluster": { + "id": 9, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 684.5879523663269, + "r": 525.5181319486474, + "b": 725.4719825076454, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9722561836242676, + "cells": [ + { + "index": 52, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 697.49756241095, + "r_x1": 94.63680335091797, + "r_y1": 697.49756241095, + "r_x2": 94.63680335091797, + "r_y2": 685.1495623682681, + "r_x3": 90.00000033372447, + "r_y3": 685.1495623682681, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 53, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 697.871982412244, + "r_x1": 216.9503908044628, + "r_y1": 697.871982412244, + "r_x2": 216.9503908044628, + "r_y2": 684.5879523663269, + "r_x3": 108.00000040046937, + "r_y3": 684.5879523663269, + "coord_origin": "TOPLEFT" + }, + "text": "Immersive Interfaces", + "orig": "Immersive Interfaces", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 54, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 216.95508080448025, + "r_y0": 697.871982412244, + "r_x1": 472.53821175219514, + "r_y1": 697.871982412244, + "r_x2": 472.53821175219514, + "r_y2": 684.5879523663269, + "r_x3": 216.95508080448025, + "r_y3": 684.5879523663269, + "coord_origin": "TOPLEFT" + }, + "text": ": As augmented reality (AR) and virtual reality (VR) ", + "orig": ": As augmented reality (AR) and virtual reality (VR) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 55, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 711.5519724595299, + "r_x1": 525.5181319486474, + "r_y1": 711.5519724595299, + "r_x2": 525.5181319486474, + "r_y2": 698.2679424136128, + "r_x3": 108.00000040046937, + "r_y3": 698.2679424136128, + "coord_origin": "TOPLEFT" + }, + "text": "technology advance, users may be able to write and edit in 3D spaces, collaborating in ", + "orig": "technology advance, users may be able to write and edit in 3D spaces, collaborating in ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 56, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 725.4719825076454, + "r_x1": 213.6445207922045, + "r_y1": 725.4719825076454, + "r_x2": 213.6445207922045, + "r_y2": 712.1879524617283, + "r_x3": 108.00000040046937, + "r_y3": 712.1879524617283, + "coord_origin": "TOPLEFT" + }, + "text": "virtual environments. ", + "orig": "virtual environments. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Immersive Interfaces : As augmented reality (AR) and virtual reality (VR) technology advance, users may be able to write and edit in 3D spaces, collaborating in virtual environments." + }, + { + "label": "list_item", + "id": 8, + "page_no": 3, + "cluster": { + "id": 8, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 725.8679225090141, + "r": 518.906741924132, + "b": 753.3119506038763, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9774264693260193, + "cells": [ + { + "index": 57, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 738.777522553637, + "r_x1": 94.63680335091797, + "r_y1": 738.777522553637, + "r_x2": 94.63680335091797, + "r_y2": 726.4295625109554, + "r_x3": 90.00000033372447, + "r_y3": 726.4295625109554, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 58, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 739.1519725549313, + "r_x1": 223.976240830515, + "r_y1": 739.1519725549313, + "r_x2": 223.976240830515, + "r_y2": 725.8679225090141, + "r_x3": 108.00000040046937, + "r_y3": 725.8679225090141, + "coord_origin": "TOPLEFT" + }, + "text": "Hyper-Personalization", + "orig": "Hyper-Personalization", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 59, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 223.98048083053075, + "r_y0": 739.1519725549313, + "r_x1": 518.906741924132, + "r_y1": 739.1519725549313, + "r_x2": 518.906741924132, + "r_y2": 725.8679225090141, + "r_x3": 223.98048083053075, + "r_y3": 725.8679225090141, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors could offer dynamic suggestions based on ", + "orig": ": Word processors could offer dynamic suggestions based on ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 60, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 753.3119506038763, + "r_x1": 463.21872171763806, + "r_y1": 753.3119506038763, + "r_x2": 463.21872171763806, + "r_y2": 740.0279525579592, + "r_x3": 108.00000040046937, + "r_y3": 740.0279525579592, + "coord_origin": "TOPLEFT" + }, + "text": "industry-specific needs, user habits, or even regional language variations. ", + "orig": "industry-specific needs, user habits, or even regional language variations. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Hyper-Personalization : Word processors could offer dynamic suggestions based on industry-specific needs, user habits, or even regional language variations." + } + ], + "body": [ + { + "label": "list_item", + "id": 3, + "page_no": 3, + "cluster": { + "id": 3, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 72.34796025007586, + "r": 514.5589619080102, + "b": 113.23199039139433, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9798315167427063, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 85.2575702946989, + "r_x1": 94.63680335091797, + "r_y1": 85.2575702946989, + "r_x2": 94.63680335091797, + "r_y2": 72.90954025201711, + "r_x3": 90.00000033372447, + "r_y3": 72.90954025201711, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 85.63196029599305, + "r_x1": 171.98883063774312, + "r_y1": 85.63196029599305, + "r_x2": 171.98883063774312, + "r_y2": 72.34796025007586, + "r_x3": 108.00000040046937, + "r_y3": 72.34796025007586, + "coord_origin": "TOPLEFT" + }, + "text": "Accessibility", + "orig": "Accessibility", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 171.99023063774834, + "r_y0": 85.63196029599305, + "r_x1": 514.5589619080102, + "r_y1": 85.63196029599305, + "r_x2": 514.5589619080102, + "r_y2": 72.34796025007586, + "r_x3": 171.99023063774834, + "r_y3": 72.34796025007586, + "coord_origin": "TOPLEFT" + }, + "text": ": Writers no longer needed expensive publishing equipment or training ", + "orig": ": Writers no longer needed expensive publishing equipment or training ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 99.31195034327891, + "r_x1": 491.5545718227088, + "r_y1": 99.31195034327891, + "r_x2": 491.5545718227088, + "r_y2": 86.02795029736171, + "r_x3": 108.00000040046937, + "r_y3": 86.02795029736171, + "coord_origin": "TOPLEFT" + }, + "text": "in typesetting to create polished work. This accessibility paved the way for self-", + "orig": "in typesetting to create polished work. This accessibility paved the way for self-", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 113.23199039139433, + "r_x1": 379.9569714088994, + "r_y1": 113.23199039139433, + "r_x2": 379.9569714088994, + "r_y2": 99.94793034547718, + "r_x3": 108.00000040046937, + "r_y3": 99.94793034547718, + "coord_origin": "TOPLEFT" + }, + "text": "publishing, blogging, and even fan fiction communities. ", + "orig": "publishing, blogging, and even fan fiction communities. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Accessibility : Writers no longer needed expensive publishing equipment or training in typesetting to create polished work. This accessibility paved the way for selfpublishing, blogging, and even fan fiction communities." + }, + { + "label": "list_item", + "id": 7, + "page_no": 3, + "cluster": { + "id": 7, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 113.6279903927632, + "r": 521.9014319352365, + "b": 154.5119605340816, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9790792465209961, + "cells": [ + { + "index": 5, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 126.53753043738607, + "r_x1": 94.63680335091797, + "r_y1": 126.53753043738607, + "r_x2": 94.63680335091797, + "r_y2": 114.18957039470433, + "r_x3": 90.00000033372447, + "r_y3": 114.18957039470433, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 6, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 126.9119804386803, + "r_x1": 160.6799905958094, + "r_y1": 126.9119804386803, + "r_x2": 160.6799905958094, + "r_y2": 113.6279903927632, + "r_x3": 108.00000040046937, + "r_y3": 113.6279903927632, + "coord_origin": "TOPLEFT" + }, + "text": "Education", + "orig": "Education", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 7, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 160.6816305958155, + "r_y0": 126.9119804386803, + "r_x1": 509.5430318894109, + "r_y1": 126.9119804386803, + "r_x2": 509.5430318894109, + "r_y2": 113.6279903927632, + "r_x3": 160.6816305958155, + "r_y3": 113.6279903927632, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors became a cornerstone of education, teaching students ", + "orig": ": Word processors became a cornerstone of education, teaching students ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 8, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 140.83197048679563, + "r_x1": 521.9014319352365, + "r_y1": 140.83197048679563, + "r_x2": 521.9014319352365, + "r_y2": 127.54797044087866, + "r_x3": 108.00000040046937, + "r_y3": 127.54797044087866, + "coord_origin": "TOPLEFT" + }, + "text": "not only how to write essays but also how to use technology effectively. Features like ", + "orig": "not only how to write essays but also how to use technology effectively. Features like ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 9, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 154.5119605340816, + "r_x1": 459.52728170395005, + "r_y1": 154.5119605340816, + "r_x2": 459.52728170395005, + "r_y2": 141.22796048816463, + "r_x3": 108.00000040046937, + "r_y3": 141.22796048816463, + "coord_origin": "TOPLEFT" + }, + "text": "bibliography generators and integrated research tools enhanced learning. ", + "orig": "bibliography generators and integrated research tools enhanced learning. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Education : Word processors became a cornerstone of education, teaching students not only how to write essays but also how to use technology effectively. Features like bibliography generators and integrated research tools enhanced learning." + }, + { + "label": "list_item", + "id": 6, + "page_no": 3, + "cluster": { + "id": 6, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 155.14795053627995, + "r": 515.8510119128011, + "b": 196.27197067842803, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9792094230651855, + "cells": [ + { + "index": 10, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 168.0575505809029, + "r_x1": 94.63680335091797, + "r_y1": 168.0575505809029, + "r_x2": 94.63680335091797, + "r_y2": 155.70959053822128, + "r_x3": 90.00000033372447, + "r_y3": 155.70959053822128, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 11, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 168.43194058219706, + "r_x1": 195.63599072542797, + "r_y1": 168.43194058219706, + "r_x2": 195.63599072542797, + "r_y2": 155.14795053627995, + "r_x3": 108.00000040046937, + "r_y3": 155.14795053627995, + "coord_origin": "TOPLEFT" + }, + "text": "Creative Writing", + "orig": "Creative Writing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 12, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 195.63866072543786, + "r_y0": 168.43194058219706, + "r_x1": 509.872891890634, + "r_y1": 168.43194058219706, + "r_x2": 509.872891890634, + "r_y2": 155.14795053627995, + "r_x3": 195.63866072543786, + "r_y3": 155.14795053627995, + "coord_origin": "TOPLEFT" + }, + "text": ": Writers gained powerful tools to organize their ideas. Programs ", + "orig": ": Writers gained powerful tools to organize their ideas. Programs ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 13, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 182.1119406294829, + "r_x1": 515.8510119128011, + "r_y1": 182.1119406294829, + "r_x2": 515.8510119128011, + "r_y2": 168.8279405835658, + "r_x3": 108.00000040046937, + "r_y3": 168.8279405835658, + "coord_origin": "TOPLEFT" + }, + "text": "like Scrivener allowed authors to manage large projects, from novels to screenplays, ", + "orig": "like Scrivener allowed authors to manage large projects, from novels to screenplays, ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 14, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 196.27197067842803, + "r_x1": 372.2227213802203, + "r_y1": 196.27197067842803, + "r_x2": 372.2227213802203, + "r_y2": 182.98797063251095, + "r_x3": 108.00000040046937, + "r_y3": 182.98797063251095, + "coord_origin": "TOPLEFT" + }, + "text": "with features like chapter outlines and character notes. ", + "orig": "with features like chapter outlines and character notes. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Creative Writing : Writers gained powerful tools to organize their ideas. Programs like Scrivener allowed authors to manage large projects, from novels to screenplays, with features like chapter outlines and character notes." + }, + { + "label": "section_header", + "id": 12, + "page_no": 3, + "cluster": { + "id": 12, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 238.58490082468575, + "r": 295.453431095556, + "b": 253.463010876113, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9634494781494141, + "cells": [ + { + "index": 15, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 253.463010876113, + "r_x1": 295.453431095556, + "r_y1": 253.463010876113, + "r_x2": 295.453431095556, + "r_y2": 238.58490082468575, + "r_x3": 72.00000026697958, + "r_y3": 238.58490082468575, + "coord_origin": "TOPLEFT" + }, + "text": "Word Processors in a Post-Digital Era ", + "orig": "Word Processors in a Post-Digital Era ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "Word Processors in a Post-Digital Era" + }, + { + "label": "text", + "id": 14, + "page_no": 3, + "cluster": { + "id": 14, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 268.1879909270109, + "r": 521.214971932691, + "b": 281.4719809729279, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9380115270614624, + "cells": [ + { + "index": 16, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 281.4719809729279, + "r_x1": 521.214971932691, + "r_y1": 281.4719809729279, + "r_x2": 521.214971932691, + "r_y2": 268.1879909270109, + "r_x3": 72.00000026697958, + "r_y3": 268.1879909270109, + "coord_origin": "TOPLEFT" + }, + "text": "As we move further into the 21st century, the role of the word processor continues to evolve: ", + "orig": "As we move further into the 21st century, the role of the word processor continues to evolve: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "As we move further into the 21st century, the role of the word processor continues to evolve:" + }, + { + "label": "list_item", + "id": 1, + "page_no": 3, + "cluster": { + "id": 1, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 295.5479710215825, + "r": 523.8382019424181, + "b": 350.3519612110165, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9815667867660522, + "cells": [ + { + "index": 17, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 308.8319710674996, + "r_x1": 99.00000036709692, + "r_y1": 308.8319710674996, + "r_x2": 99.00000036709692, + "r_y2": 295.5479710215825, + "r_x3": 90.00000033372447, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": "1.", + "orig": "1.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 18, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 308.8319710674996, + "r_x1": 216.9648108045163, + "r_y1": 308.8319710674996, + "r_x2": 216.9648108045163, + "r_y2": 295.5479710215825, + "r_x3": 108.00000040046937, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": "Artificial Intelligence", + "orig": "Artificial Intelligence", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 19, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 216.9668008045237, + "r_y0": 308.8319710674996, + "r_x1": 522.210631936383, + "r_y1": 308.8319710674996, + "r_x2": 522.210631936383, + "r_y2": 295.5479710215825, + "r_x3": 216.9668008045237, + "r_y3": 295.5479710215825, + "coord_origin": "TOPLEFT" + }, + "text": ": Modern word processors are leveraging AI to suggest content ", + "orig": ": Modern word processors are leveraging AI to suggest content ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 20, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 322.75195111561504, + "r_x1": 504.8831218721317, + "r_y1": 322.75195111561504, + "r_x2": 504.8831218721317, + "r_y2": 309.46795106969796, + "r_x3": 108.00000040046937, + "r_y3": 309.46795106969796, + "coord_origin": "TOPLEFT" + }, + "text": "improvements. Tools like Grammarly, ProWritingAid, and even native features in ", + "orig": "improvements. Tools like Grammarly, ProWritingAid, and even native features in ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 21, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 336.43194116290096, + "r_x1": 523.8382019424181, + "r_y1": 336.43194116290096, + "r_x2": 523.8382019424181, + "r_y2": 323.1479511169839, + "r_x3": 108.00000040046937, + "r_y3": 323.1479511169839, + "coord_origin": "TOPLEFT" + }, + "text": "Word now analyze tone, conciseness, and clarity. Some AI systems can even generate ", + "orig": "Word now analyze tone, conciseness, and clarity. Some AI systems can even generate ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 22, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 350.3519612110165, + "r_x1": 295.9101610972496, + "r_y1": 350.3519612110165, + "r_x2": 295.9101610972496, + "r_y2": 337.0679611650994, + "r_x3": 108.00000040046937, + "r_y3": 337.0679611650994, + "coord_origin": "TOPLEFT" + }, + "text": "entire paragraphs or rewrite sentences. ", + "orig": "entire paragraphs or rewrite sentences. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "1. Artificial Intelligence : Modern word processors are leveraging AI to suggest content improvements. Tools like Grammarly, ProWritingAid, and even native features in Word now analyze tone, conciseness, and clarity. Some AI systems can even generate entire paragraphs or rewrite sentences." + }, + { + "label": "list_item", + "id": 0, + "page_no": 3, + "cluster": { + "id": 0, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 350.7479812123853, + "r": 514.5262519078889, + "b": 405.55194140181914, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9819080233573914, + "cells": [ + { + "index": 23, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 364.0319512583023, + "r_x1": 99.00000036709692, + "r_y1": 364.0319512583023, + "r_x2": 99.00000036709692, + "r_y2": 350.7479812123853, + "r_x3": 90.00000033372447, + "r_y3": 350.7479812123853, + "coord_origin": "TOPLEFT" + }, + "text": "2.", + "orig": "2.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 24, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 364.0319512583023, + "r_x1": 256.327210950474, + "r_y1": 364.0319512583023, + "r_x2": 256.327210950474, + "r_y2": 350.7479812123853, + "r_x3": 108.00000040046937, + "r_y3": 350.7479812123853, + "coord_origin": "TOPLEFT" + }, + "text": "Integration with Other Tools", + "orig": "Integration with Other Tools", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 25, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 256.33008095048467, + "r_y0": 364.0319512583023, + "r_x1": 497.9115018462806, + "r_y1": 364.0319512583023, + "r_x2": 497.9115018462806, + "r_y2": 350.7479812123853, + "r_x3": 256.33008095048467, + "r_y3": 350.7479812123853, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors are no longer standalone. They ", + "orig": ": Word processors are no longer standalone. They ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 26, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 377.95196130641784, + "r_x1": 514.5262519078889, + "r_y1": 377.95196130641784, + "r_x2": 514.5262519078889, + "r_y2": 364.6679712605008, + "r_x3": 108.00000040046937, + "r_y3": 364.6679712605008, + "coord_origin": "TOPLEFT" + }, + "text": "integrate with task managers, cloud storage, and project management platforms. For ", + "orig": "integrate with task managers, cloud storage, and project management platforms. For ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 27, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 391.6319613537037, + "r_x1": 504.89987187219384, + "r_y1": 391.6319613537037, + "r_x2": 504.89987187219384, + "r_y2": 378.3479613077866, + "r_x3": 108.00000040046937, + "r_y3": 378.3479613077866, + "coord_origin": "TOPLEFT" + }, + "text": "instance, Google Docs syncs with Google Drive, while Microsoft Word integrates ", + "orig": "instance, Google Docs syncs with Google Drive, while Microsoft Word integrates ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 28, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 405.55194140181914, + "r_x1": 295.95120109740174, + "r_y1": 405.55194140181914, + "r_x2": 295.95120109740174, + "r_y2": 392.26794135590205, + "r_x3": 108.00000040046937, + "r_y3": 392.26794135590205, + "coord_origin": "TOPLEFT" + }, + "text": "seamlessly with OneDrive and Teams. ", + "orig": "seamlessly with OneDrive and Teams. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "2. Integration with Other Tools : Word processors are no longer standalone. They integrate with task managers, cloud storage, and project management platforms. For instance, Google Docs syncs with Google Drive, while Microsoft Word integrates seamlessly with OneDrive and Teams." + }, + { + "label": "list_item", + "id": 5, + "page_no": 3, + "cluster": { + "id": 5, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 405.947961403188, + "r": 502.9175418648432, + "b": 460.751981592622, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.979421854019165, + "cells": [ + { + "index": 29, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 419.2319614491051, + "r_x1": 99.00000036709692, + "r_y1": 419.2319614491051, + "r_x2": 99.00000036709692, + "r_y2": 405.947961403188, + "r_x3": 90.00000033372447, + "r_y3": 405.947961403188, + "coord_origin": "TOPLEFT" + }, + "text": "3.", + "orig": "3.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 30, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 419.2319614491051, + "r_x1": 176.33762065386867, + "r_y1": 419.2319614491051, + "r_x2": 176.33762065386867, + "r_y2": 405.947961403188, + "r_x3": 108.00000040046937, + "r_y3": 405.947961403188, + "coord_origin": "TOPLEFT" + }, + "text": "Voice Typing", + "orig": "Voice Typing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 31, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 176.33789065386966, + "r_y0": 419.2319614491051, + "r_x1": 477.5590517708127, + "r_y1": 419.2319614491051, + "r_x2": 477.5590517708127, + "r_y2": 405.947961403188, + "r_x3": 176.33789065386966, + "r_y3": 405.947961403188, + "coord_origin": "TOPLEFT" + }, + "text": ": Speech-to-text capabilities have made word processing more ", + "orig": ": Speech-to-text capabilities have made word processing more ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 32, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 433.1519714972206, + "r_x1": 438.90237162747184, + "r_y1": 433.1519714972206, + "r_x2": 438.90237162747184, + "r_y2": 419.86798145130354, + "r_x3": 108.00000040046937, + "r_y3": 419.86798145130354, + "coord_origin": "TOPLEFT" + }, + "text": "accessible, particularly for those with disabilities. Tools like Dragon ", + "orig": "accessible, particularly for those with disabilities. Tools like Dragon ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 33, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 446.8319715445065, + "r_x1": 502.9175418648432, + "r_y1": 446.8319715445065, + "r_x2": 502.9175418648432, + "r_y2": 433.5479714985894, + "r_x3": 108.00000040046937, + "r_y3": 433.5479714985894, + "coord_origin": "TOPLEFT" + }, + "text": "NaturallySpeaking and built-in options in Google Docs and Microsoft Word have ", + "orig": "NaturallySpeaking and built-in options in Google Docs and Microsoft Word have ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 34, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 460.751981592622, + "r_x1": 243.9549609045971, + "r_y1": 460.751981592622, + "r_x2": 243.9549609045971, + "r_y2": 447.4679515467048, + "r_x3": 108.00000040046937, + "r_y3": 447.4679515467048, + "coord_origin": "TOPLEFT" + }, + "text": "made dictation mainstream. ", + "orig": "made dictation mainstream. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "3. Voice Typing : Speech-to-text capabilities have made word processing more accessible, particularly for those with disabilities. Tools like Dragon NaturallySpeaking and built-in options in Google Docs and Microsoft Word have made dictation mainstream." + }, + { + "label": "list_item", + "id": 4, + "page_no": 3, + "cluster": { + "id": 4, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 461.1479515939907, + "r": 516.9196819167639, + "b": 502.0319817353093, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9796164035797119, + "cells": [ + { + "index": 35, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 474.43197163990783, + "r_x1": 99.00000036709692, + "r_y1": 474.43197163990783, + "r_x2": 99.00000036709692, + "r_y2": 461.1479515939907, + "r_x3": 90.00000033372447, + "r_y3": 461.1479515939907, + "coord_origin": "TOPLEFT" + }, + "text": "4.", + "orig": "4.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 36, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 474.43197163990783, + "r_x1": 228.31917084661885, + "r_y1": 474.43197163990783, + "r_x2": 228.31917084661885, + "r_y2": 461.1479515939907, + "r_x3": 108.00000040046937, + "r_y3": 461.1479515939907, + "coord_origin": "TOPLEFT" + }, + "text": "Multimedia Documents", + "orig": "Multimedia Documents", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 37, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 228.32227084663035, + "r_y0": 474.43197163990783, + "r_x1": 516.9196819167639, + "r_y1": 474.43197163990783, + "r_x2": 516.9196819167639, + "r_y2": 461.1479515939907, + "r_x3": 228.32227084663035, + "r_y3": 461.1479515939907, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processing has expanded beyond text. Modern tools ", + "orig": ": Word processing has expanded beyond text. Modern tools ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 38, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 488.35196168802327, + "r_x1": 512.2006218992653, + "r_y1": 488.35196168802327, + "r_x2": 512.2006218992653, + "r_y2": 475.0679616421062, + "r_x3": 108.00000040046937, + "r_y3": 475.0679616421062, + "coord_origin": "TOPLEFT" + }, + "text": "allow users to embed images, videos, charts, and interactive elements, transforming ", + "orig": "allow users to embed images, videos, charts, and interactive elements, transforming ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 39, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 502.0319817353093, + "r_x1": 361.5996113408293, + "r_y1": 502.0319817353093, + "r_x2": 361.5996113408293, + "r_y2": 488.74795168939204, + "r_x3": 108.00000040046937, + "r_y3": 488.74795168939204, + "coord_origin": "TOPLEFT" + }, + "text": "simple documents into rich multimedia experiences. ", + "orig": "simple documents into rich multimedia experiences. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "4. Multimedia Documents : Word processing has expanded beyond text. Modern tools allow users to embed images, videos, charts, and interactive elements, transforming simple documents into rich multimedia experiences." + }, + { + "label": "list_item", + "id": 2, + "page_no": 3, + "cluster": { + "id": 2, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 502.6679417375074, + "r": 510.9070718944688, + "b": 543.7919618796556, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9810317158699036, + "cells": [ + { + "index": 40, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 515.9519617834246, + "r_x1": 99.00000036709692, + "r_y1": 515.9519617834246, + "r_x2": 99.00000036709692, + "r_y2": 502.6679417375074, + "r_x3": 90.00000033372447, + "r_y3": 502.6679417375074, + "coord_origin": "TOPLEFT" + }, + "text": "5.", + "orig": "5.", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 41, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 515.9519617834246, + "r_x1": 254.2937309429338, + "r_y1": 515.9519617834246, + "r_x2": 254.2937309429338, + "r_y2": 502.6679417375074, + "r_x3": 108.00000040046937, + "r_y3": 502.6679417375074, + "coord_origin": "TOPLEFT" + }, + "text": "Cross-Platform Accessibility", + "orig": "Cross-Platform Accessibility", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 42, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 254.2967809429451, + "r_y0": 515.9519617834246, + "r_x1": 510.9070718944688, + "r_y1": 515.9519617834246, + "r_x2": 510.9070718944688, + "r_y2": 502.6679417375074, + "r_x3": 254.2967809429451, + "r_y3": 502.6679417375074, + "coord_origin": "TOPLEFT" + }, + "text": ": Thanks to cloud computing, documents can now be ", + "orig": ": Thanks to cloud computing, documents can now be ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 43, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 529.6319618307105, + "r_x1": 469.6751117415787, + "r_y1": 529.6319618307105, + "r_x2": 469.6751117415787, + "r_y2": 516.3479617847934, + "r_x3": 108.00000040046937, + "r_y3": 516.3479617847934, + "coord_origin": "TOPLEFT" + }, + "text": "accessed and edited across devices. Whether you're on a desktop, tablet, or ", + "orig": "accessed and edited across devices. Whether you're on a desktop, tablet, or ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 44, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 543.7919618796556, + "r_x1": 355.9451913198625, + "r_y1": 543.7919618796556, + "r_x2": 355.9451913198625, + "r_y2": 530.5079318337384, + "r_x3": 108.00000040046937, + "r_y3": 530.5079318337384, + "coord_origin": "TOPLEFT" + }, + "text": "smartphone, you can continue working seamlessly. ", + "orig": "smartphone, you can continue working seamlessly. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "5. Cross-Platform Accessibility : Thanks to cloud computing, documents can now be accessed and edited across devices. Whether you're on a desktop, tablet, or smartphone, you can continue working seamlessly." + }, + { + "label": "section_header", + "id": 13, + "page_no": 3, + "cluster": { + "id": 13, + "label": "section_header", + "bbox": { + "l": 72.00000026697958, + "t": 586.1049220259133, + "r": 228.355610846754, + "b": 600.9829720773404, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9614330530166626, + "cells": [ + { + "index": 45, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 600.9829720773404, + "r_x1": 228.355610846754, + "r_y1": 600.9829720773404, + "r_x2": 228.355610846754, + "r_y2": 586.1049220259133, + "r_x3": 72.00000026697958, + "r_y3": 586.1049220259133, + "coord_origin": "TOPLEFT" + }, + "text": "A Glimpse Into the Future ", + "orig": "A Glimpse Into the Future ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "A Glimpse Into the Future" + }, + { + "label": "text", + "id": 10, + "page_no": 3, + "cluster": { + "id": 10, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 615.4679521274087, + "r": 515.04700190982, + "b": 642.6719622214413, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9675389528274536, + "cells": [ + { + "index": 46, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 628.7519521733258, + "r_x1": 515.04700190982, + "r_y1": 628.7519521733258, + "r_x2": 515.04700190982, + "r_y2": 615.4679521274087, + "r_x3": 72.00000026697958, + "r_y3": 615.4679521274087, + "coord_origin": "TOPLEFT" + }, + "text": "The word processor's future lies in adaptability and intelligence. Some exciting possibilities ", + "orig": "The word processor's future lies in adaptability and intelligence. Some exciting possibilities ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 47, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 642.6719622214413, + "r_x1": 113.6543004214358, + "r_y1": 642.6719622214413, + "r_x2": 113.6543004214358, + "r_y2": 629.3879421755241, + "r_x3": 72.00000026697958, + "r_y3": 629.3879421755241, + "coord_origin": "TOPLEFT" + }, + "text": "include: ", + "orig": "include: ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The word processor's future lies in adaptability and intelligence. Some exciting possibilities include:" + }, + { + "label": "list_item", + "id": 11, + "page_no": 3, + "cluster": { + "id": 11, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 656.9879422709255, + "r": 518.2673319217611, + "b": 683.9519623641286, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9675005674362183, + "cells": [ + { + "index": 48, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 669.8975523155485, + "r_x1": 94.63680335091797, + "r_y1": 669.8975523155485, + "r_x2": 94.63680335091797, + "r_y2": 657.5495622728668, + "r_x3": 90.00000033372447, + "r_y3": 657.5495622728668, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 49, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 670.2719723168427, + "r_x1": 240.67430089243229, + "r_y1": 670.2719723168427, + "r_x2": 240.67430089243229, + "r_y2": 656.9879422709255, + "r_x3": 108.00000040046937, + "r_y3": 656.9879422709255, + "coord_origin": "TOPLEFT" + }, + "text": "Fully AI-Assisted Writing", + "orig": "Fully AI-Assisted Writing", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 50, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 240.67390089243082, + "r_y0": 670.2719723168427, + "r_x1": 518.2673319217611, + "r_y1": 670.2719723168427, + "r_x2": 518.2673319217611, + "r_y2": 656.9879422709255, + "r_x3": 240.67390089243082, + "r_y3": 656.9879422709255, + "coord_origin": "TOPLEFT" + }, + "text": ": Imagine a word processor that understands your writing ", + "orig": ": Imagine a word processor that understands your writing ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 51, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 683.9519623641286, + "r_x1": 436.57608161884576, + "r_y1": 683.9519623641286, + "r_x2": 436.57608161884576, + "r_y2": 670.6679423182114, + "r_x3": 108.00000040046937, + "r_y3": 670.6679423182114, + "coord_origin": "TOPLEFT" + }, + "text": "style, drafts emails, or creates entire essays based on minimal input. ", + "orig": "style, drafts emails, or creates entire essays based on minimal input. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Fully AI-Assisted Writing : Imagine a word processor that understands your writing style, drafts emails, or creates entire essays based on minimal input." + }, + { + "label": "list_item", + "id": 9, + "page_no": 3, + "cluster": { + "id": 9, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 684.5879523663269, + "r": 525.5181319486474, + "b": 725.4719825076454, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9722561836242676, + "cells": [ + { + "index": 52, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 697.49756241095, + "r_x1": 94.63680335091797, + "r_y1": 697.49756241095, + "r_x2": 94.63680335091797, + "r_y2": 685.1495623682681, + "r_x3": 90.00000033372447, + "r_y3": 685.1495623682681, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 53, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 697.871982412244, + "r_x1": 216.9503908044628, + "r_y1": 697.871982412244, + "r_x2": 216.9503908044628, + "r_y2": 684.5879523663269, + "r_x3": 108.00000040046937, + "r_y3": 684.5879523663269, + "coord_origin": "TOPLEFT" + }, + "text": "Immersive Interfaces", + "orig": "Immersive Interfaces", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 54, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 216.95508080448025, + "r_y0": 697.871982412244, + "r_x1": 472.53821175219514, + "r_y1": 697.871982412244, + "r_x2": 472.53821175219514, + "r_y2": 684.5879523663269, + "r_x3": 216.95508080448025, + "r_y3": 684.5879523663269, + "coord_origin": "TOPLEFT" + }, + "text": ": As augmented reality (AR) and virtual reality (VR) ", + "orig": ": As augmented reality (AR) and virtual reality (VR) ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 55, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 711.5519724595299, + "r_x1": 525.5181319486474, + "r_y1": 711.5519724595299, + "r_x2": 525.5181319486474, + "r_y2": 698.2679424136128, + "r_x3": 108.00000040046937, + "r_y3": 698.2679424136128, + "coord_origin": "TOPLEFT" + }, + "text": "technology advance, users may be able to write and edit in 3D spaces, collaborating in ", + "orig": "technology advance, users may be able to write and edit in 3D spaces, collaborating in ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 56, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 725.4719825076454, + "r_x1": 213.6445207922045, + "r_y1": 725.4719825076454, + "r_x2": 213.6445207922045, + "r_y2": 712.1879524617283, + "r_x3": 108.00000040046937, + "r_y3": 712.1879524617283, + "coord_origin": "TOPLEFT" + }, + "text": "virtual environments. ", + "orig": "virtual environments. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Immersive Interfaces : As augmented reality (AR) and virtual reality (VR) technology advance, users may be able to write and edit in 3D spaces, collaborating in virtual environments." + }, + { + "label": "list_item", + "id": 8, + "page_no": 3, + "cluster": { + "id": 8, + "label": "list_item", + "bbox": { + "l": 90.00000033372447, + "t": 725.8679225090141, + "r": 518.906741924132, + "b": 753.3119506038763, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9774264693260193, + "cells": [ + { + "index": 57, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 90.00000033372447, + "r_y0": 738.777522553637, + "r_x1": 94.63680335091797, + "r_y1": 738.777522553637, + "r_x2": 94.63680335091797, + "r_y2": 726.4295625109554, + "r_x3": 90.00000033372447, + "r_y3": 726.4295625109554, + "coord_origin": "TOPLEFT" + }, + "text": "\u2022", + "orig": "\u2022", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 58, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 739.1519725549313, + "r_x1": 223.976240830515, + "r_y1": 739.1519725549313, + "r_x2": 223.976240830515, + "r_y2": 725.8679225090141, + "r_x3": 108.00000040046937, + "r_y3": 725.8679225090141, + "coord_origin": "TOPLEFT" + }, + "text": "Hyper-Personalization", + "orig": "Hyper-Personalization", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 59, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 223.98048083053075, + "r_y0": 739.1519725549313, + "r_x1": 518.906741924132, + "r_y1": 739.1519725549313, + "r_x2": 518.906741924132, + "r_y2": 725.8679225090141, + "r_x3": 223.98048083053075, + "r_y3": 725.8679225090141, + "coord_origin": "TOPLEFT" + }, + "text": ": Word processors could offer dynamic suggestions based on ", + "orig": ": Word processors could offer dynamic suggestions based on ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 60, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 108.00000040046937, + "r_y0": 753.3119506038763, + "r_x1": 463.21872171763806, + "r_y1": 753.3119506038763, + "r_x2": 463.21872171763806, + "r_y2": 740.0279525579592, + "r_x3": 108.00000040046937, + "r_y3": 740.0279525579592, + "coord_origin": "TOPLEFT" + }, + "text": "industry-specific needs, user habits, or even regional language variations. ", + "orig": "industry-specific needs, user habits, or even regional language variations. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "\u00b7 Hyper-Personalization : Word processors could offer dynamic suggestions based on industry-specific needs, user habits, or even regional language variations." + } + ], + "headers": [] + } + }, + { + "page_no": 4, + "size": { + "width": 595.2000122070312, + "height": 841.9199829101562 + }, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 113.47198039222405, + "r_x1": 499.88086185358304, + "r_y1": 113.47198039222405, + "r_x2": 499.88086185358304, + "r_y2": 100.18799034630695, + "r_x3": 72.00000026697958, + "r_y3": 100.18799034630695, + "coord_origin": "TOPLEFT" + }, + "text": "The journey of the word processor-from clunky typewriters to AI-powered platforms-", + "orig": "The journey of the word processor-from clunky typewriters to AI-powered platforms-", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 127.1519704395098, + "r_x1": 510.4989618929555, + "r_y1": 127.1519704395098, + "r_x2": 510.4989618929555, + "r_y2": 113.86798039359269, + "r_x3": 72.00000026697958, + "r_y3": 113.86798039359269, + "coord_origin": "TOPLEFT" + }, + "text": "reflects humanity\u2019s broader technological progress. What began as a tool to simply replace ", + "orig": "reflects humanity\u2019s broader technological progress. What began as a tool to simply replace ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 141.07196048762523, + "r_x1": 479.5488017781908, + "r_y1": 141.07196048762523, + "r_x2": 479.5488017781908, + "r_y2": 127.78796044170815, + "r_x3": 72.00000026697958, + "r_y3": 127.78796044170815, + "coord_origin": "TOPLEFT" + }, + "text": "handwriting has transformed into a powerful ally for creativity, communication, and ", + "orig": "handwriting has transformed into a powerful ally for creativity, communication, and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 154.7519505349111, + "r_x1": 499.5527318523664, + "r_y1": 154.7519505349111, + "r_x2": 499.5527318523664, + "r_y2": 141.467950488994, + "r_x3": 72.00000026697958, + "r_y3": 141.467950488994, + "coord_origin": "TOPLEFT" + }, + "text": "collaboration. As technology continues to advance, the word processor will undoubtedly ", + "orig": "collaboration. As technology continues to advance, the word processor will undoubtedly ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 168.91198058385635, + "r_x1": 432.1991916026161, + "r_y1": 168.91198058385635, + "r_x2": 432.1991916026161, + "r_y2": 155.62799053793924, + "r_x3": 72.00000026697958, + "r_y3": 155.62799053793924, + "coord_origin": "TOPLEFT" + }, + "text": "remain at the heart of how we express ideas and connect with one another. ", + "orig": "remain at the heart of how we express ideas and connect with one another. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "parsed_page": null, + "predictions": { + "layout": { + "clusters": [ + { + "id": 0, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 100.18799034630695, + "r": 510.4989618929555, + "b": 168.91198058385635, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9767608642578125, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 113.47198039222405, + "r_x1": 499.88086185358304, + "r_y1": 113.47198039222405, + "r_x2": 499.88086185358304, + "r_y2": 100.18799034630695, + "r_x3": 72.00000026697958, + "r_y3": 100.18799034630695, + "coord_origin": "TOPLEFT" + }, + "text": "The journey of the word processor-from clunky typewriters to AI-powered platforms-", + "orig": "The journey of the word processor-from clunky typewriters to AI-powered platforms-", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 127.1519704395098, + "r_x1": 510.4989618929555, + "r_y1": 127.1519704395098, + "r_x2": 510.4989618929555, + "r_y2": 113.86798039359269, + "r_x3": 72.00000026697958, + "r_y3": 113.86798039359269, + "coord_origin": "TOPLEFT" + }, + "text": "reflects humanity\u2019s broader technological progress. What began as a tool to simply replace ", + "orig": "reflects humanity\u2019s broader technological progress. What began as a tool to simply replace ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 141.07196048762523, + "r_x1": 479.5488017781908, + "r_y1": 141.07196048762523, + "r_x2": 479.5488017781908, + "r_y2": 127.78796044170815, + "r_x3": 72.00000026697958, + "r_y3": 127.78796044170815, + "coord_origin": "TOPLEFT" + }, + "text": "handwriting has transformed into a powerful ally for creativity, communication, and ", + "orig": "handwriting has transformed into a powerful ally for creativity, communication, and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 154.7519505349111, + "r_x1": 499.5527318523664, + "r_y1": 154.7519505349111, + "r_x2": 499.5527318523664, + "r_y2": 141.467950488994, + "r_x3": 72.00000026697958, + "r_y3": 141.467950488994, + "coord_origin": "TOPLEFT" + }, + "text": "collaboration. As technology continues to advance, the word processor will undoubtedly ", + "orig": "collaboration. As technology continues to advance, the word processor will undoubtedly ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 168.91198058385635, + "r_x1": 432.1991916026161, + "r_y1": 168.91198058385635, + "r_x2": 432.1991916026161, + "r_y2": 155.62799053793924, + "r_x3": 72.00000026697958, + "r_y3": 155.62799053793924, + "coord_origin": "TOPLEFT" + }, + "text": "remain at the heart of how we express ideas and connect with one another. ", + "orig": "remain at the heart of how we express ideas and connect with one another. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + } + ] + }, + "tablestructure": { + "table_map": {} + }, + "figures_classification": null, + "equations_prediction": null, + "vlm_response": null + }, + "assembled": { + "elements": [ + { + "label": "text", + "id": 0, + "page_no": 4, + "cluster": { + "id": 0, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 100.18799034630695, + "r": 510.4989618929555, + "b": 168.91198058385635, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9767608642578125, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 113.47198039222405, + "r_x1": 499.88086185358304, + "r_y1": 113.47198039222405, + "r_x2": 499.88086185358304, + "r_y2": 100.18799034630695, + "r_x3": 72.00000026697958, + "r_y3": 100.18799034630695, + "coord_origin": "TOPLEFT" + }, + "text": "The journey of the word processor-from clunky typewriters to AI-powered platforms-", + "orig": "The journey of the word processor-from clunky typewriters to AI-powered platforms-", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 127.1519704395098, + "r_x1": 510.4989618929555, + "r_y1": 127.1519704395098, + "r_x2": 510.4989618929555, + "r_y2": 113.86798039359269, + "r_x3": 72.00000026697958, + "r_y3": 113.86798039359269, + "coord_origin": "TOPLEFT" + }, + "text": "reflects humanity\u2019s broader technological progress. What began as a tool to simply replace ", + "orig": "reflects humanity\u2019s broader technological progress. What began as a tool to simply replace ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 141.07196048762523, + "r_x1": 479.5488017781908, + "r_y1": 141.07196048762523, + "r_x2": 479.5488017781908, + "r_y2": 127.78796044170815, + "r_x3": 72.00000026697958, + "r_y3": 127.78796044170815, + "coord_origin": "TOPLEFT" + }, + "text": "handwriting has transformed into a powerful ally for creativity, communication, and ", + "orig": "handwriting has transformed into a powerful ally for creativity, communication, and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 154.7519505349111, + "r_x1": 499.5527318523664, + "r_y1": 154.7519505349111, + "r_x2": 499.5527318523664, + "r_y2": 141.467950488994, + "r_x3": 72.00000026697958, + "r_y3": 141.467950488994, + "coord_origin": "TOPLEFT" + }, + "text": "collaboration. As technology continues to advance, the word processor will undoubtedly ", + "orig": "collaboration. As technology continues to advance, the word processor will undoubtedly ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 168.91198058385635, + "r_x1": 432.1991916026161, + "r_y1": 168.91198058385635, + "r_x2": 432.1991916026161, + "r_y2": 155.62799053793924, + "r_x3": 72.00000026697958, + "r_y3": 155.62799053793924, + "coord_origin": "TOPLEFT" + }, + "text": "remain at the heart of how we express ideas and connect with one another. ", + "orig": "remain at the heart of how we express ideas and connect with one another. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The journey of the word processor-from clunky typewriters to AI-powered platformsreflects humanity's broader technological progress. What began as a tool to simply replace handwriting has transformed into a powerful ally for creativity, communication, and collaboration. As technology continues to advance, the word processor will undoubtedly remain at the heart of how we express ideas and connect with one another." + } + ], + "body": [ + { + "label": "text", + "id": 0, + "page_no": 4, + "cluster": { + "id": 0, + "label": "text", + "bbox": { + "l": 72.00000026697958, + "t": 100.18799034630695, + "r": 510.4989618929555, + "b": 168.91198058385635, + "coord_origin": "TOPLEFT" + }, + "confidence": 0.9767608642578125, + "cells": [ + { + "index": 0, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 113.47198039222405, + "r_x1": 499.88086185358304, + "r_y1": 113.47198039222405, + "r_x2": 499.88086185358304, + "r_y2": 100.18799034630695, + "r_x3": 72.00000026697958, + "r_y3": 100.18799034630695, + "coord_origin": "TOPLEFT" + }, + "text": "The journey of the word processor-from clunky typewriters to AI-powered platforms-", + "orig": "The journey of the word processor-from clunky typewriters to AI-powered platforms-", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 1, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 127.1519704395098, + "r_x1": 510.4989618929555, + "r_y1": 127.1519704395098, + "r_x2": 510.4989618929555, + "r_y2": 113.86798039359269, + "r_x3": 72.00000026697958, + "r_y3": 113.86798039359269, + "coord_origin": "TOPLEFT" + }, + "text": "reflects humanity\u2019s broader technological progress. What began as a tool to simply replace ", + "orig": "reflects humanity\u2019s broader technological progress. What began as a tool to simply replace ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 2, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 141.07196048762523, + "r_x1": 479.5488017781908, + "r_y1": 141.07196048762523, + "r_x2": 479.5488017781908, + "r_y2": 127.78796044170815, + "r_x3": 72.00000026697958, + "r_y3": 127.78796044170815, + "coord_origin": "TOPLEFT" + }, + "text": "handwriting has transformed into a powerful ally for creativity, communication, and ", + "orig": "handwriting has transformed into a powerful ally for creativity, communication, and ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 3, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 154.7519505349111, + "r_x1": 499.5527318523664, + "r_y1": 154.7519505349111, + "r_x2": 499.5527318523664, + "r_y2": 141.467950488994, + "r_x3": 72.00000026697958, + "r_y3": 141.467950488994, + "coord_origin": "TOPLEFT" + }, + "text": "collaboration. As technology continues to advance, the word processor will undoubtedly ", + "orig": "collaboration. As technology continues to advance, the word processor will undoubtedly ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + }, + { + "index": 4, + "rgba": { + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "rect": { + "r_x0": 72.00000026697958, + "r_y0": 168.91198058385635, + "r_x1": 432.1991916026161, + "r_y1": 168.91198058385635, + "r_x2": 432.1991916026161, + "r_y2": 155.62799053793924, + "r_x3": 72.00000026697958, + "r_y3": 155.62799053793924, + "coord_origin": "TOPLEFT" + }, + "text": "remain at the heart of how we express ideas and connect with one another. ", + "orig": "remain at the heart of how we express ideas and connect with one another. ", + "text_direction": "left_to_right", + "confidence": 1.0, + "from_ocr": false + } + ], + "children": [] + }, + "text": "The journey of the word processor-from clunky typewriters to AI-powered platformsreflects humanity's broader technological progress. What began as a tool to simply replace handwriting has transformed into a powerful ally for creativity, communication, and collaboration. As technology continues to advance, the word processor will undoubtedly remain at the heart of how we express ideas and connect with one another." + } + ], + "headers": [] + } + } +] \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/picture_classification.json b/tests/data/groundtruth/docling_v2/picture_classification.json index a56cda6..672cb41 100644 --- a/tests/data/groundtruth/docling_v2/picture_classification.json +++ b/tests/data/groundtruth/docling_v2/picture_classification.json @@ -334,7 +334,7 @@ { "page_no": 1, "bbox": { - "l": 134.9200439453125, + "l": 134.9199981689453, "t": 487.109375, "r": 475.6635437011719, "b": 281.78173828125, @@ -372,7 +372,7 @@ { "page_no": 2, "bbox": { - "l": 218.8155517578125, + "l": 218.81556701660156, "t": 513.9846496582031, "r": 391.96246337890625, "b": 283.10589599609375, diff --git a/tests/data/groundtruth/docling_v2/picture_classification.pages.json b/tests/data/groundtruth/docling_v2/picture_classification.pages.json index 75fd63d..f6d510f 100644 --- a/tests/data/groundtruth/docling_v2/picture_classification.pages.json +++ b/tests/data/groundtruth/docling_v2/picture_classification.pages.json @@ -1390,7 +1390,7 @@ "id": 2, "label": "picture", "bbox": { - "l": 134.9200439453125, + "l": 134.9199981689453, "t": 304.890625, "r": 475.6635437011719, "b": 510.21826171875, @@ -2174,7 +2174,7 @@ "id": 2, "label": "picture", "bbox": { - "l": 134.9200439453125, + "l": 134.9199981689453, "t": 304.890625, "r": 475.6635437011719, "b": 510.21826171875, @@ -2909,7 +2909,7 @@ "id": 2, "label": "picture", "bbox": { - "l": 134.9200439453125, + "l": 134.9199981689453, "t": 304.890625, "r": 475.6635437011719, "b": 510.21826171875, @@ -3623,7 +3623,7 @@ "b": 268.20489999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9870928525924683, + "confidence": 0.987092912197113, "cells": [ { "index": 0, @@ -3938,7 +3938,7 @@ "b": 532.05774, "coord_origin": "TOPLEFT" }, - "confidence": 0.9494236707687378, + "confidence": 0.9494234323501587, "cells": [ { "index": 12, @@ -4302,7 +4302,7 @@ "id": 2, "label": "picture", "bbox": { - "l": 218.8155517578125, + "l": 218.81556701660156, "t": 278.0153503417969, "r": 391.96246337890625, "b": 508.89410400390625, @@ -4337,7 +4337,7 @@ "b": 268.20489999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9870928525924683, + "confidence": 0.987092912197113, "cells": [ { "index": 0, @@ -4658,7 +4658,7 @@ "b": 532.05774, "coord_origin": "TOPLEFT" }, - "confidence": 0.9494236707687378, + "confidence": 0.9494234323501587, "cells": [ { "index": 12, @@ -5040,7 +5040,7 @@ "id": 2, "label": "picture", "bbox": { - "l": 218.8155517578125, + "l": 218.81556701660156, "t": 278.0153503417969, "r": 391.96246337890625, "b": 508.89410400390625, @@ -5072,7 +5072,7 @@ "b": 268.20489999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9870928525924683, + "confidence": 0.987092912197113, "cells": [ { "index": 0, @@ -5393,7 +5393,7 @@ "b": 532.05774, "coord_origin": "TOPLEFT" }, - "confidence": 0.9494236707687378, + "confidence": 0.9494234323501587, "cells": [ { "index": 12, @@ -5729,7 +5729,7 @@ "id": 2, "label": "picture", "bbox": { - "l": 218.8155517578125, + "l": 218.81556701660156, "t": 278.0153503417969, "r": 391.96246337890625, "b": 508.89410400390625, diff --git a/tests/data/groundtruth/docling_v2/redp5110_sampled.json b/tests/data/groundtruth/docling_v2/redp5110_sampled.json index cb02acf..515cb3b 100644 --- a/tests/data/groundtruth/docling_v2/redp5110_sampled.json +++ b/tests/data/groundtruth/docling_v2/redp5110_sampled.json @@ -8589,7 +8589,7 @@ { "page_no": 1, "bbox": { - "l": 33.09040069580078, + "l": 33.09052658081055, "t": 498.9671630859375, "r": 585.1502075195312, "b": 89.5469970703125, @@ -8683,9 +8683,9 @@ { "page_no": 3, "bbox": { - "l": 64.1669921875, + "l": 64.16704559326172, "t": 188.49365234375, - "r": 258.7742919921875, + "r": 258.77435302734375, "b": 103.87176513671875, "coord_origin": "BOTTOMLEFT" }, @@ -8743,7 +8743,7 @@ { "page_no": 4, "bbox": { - "l": 145.4144744873047, + "l": 145.41448974609375, "t": 264.7552490234375, "r": 252.08840942382812, "b": 156.616943359375, @@ -8773,10 +8773,10 @@ { "page_no": 5, "bbox": { - "l": 32.075252532958984, - "t": 721.4226226806641, + "l": 32.075260162353516, + "t": 721.4226608276367, "r": 239.620361328125, - "b": 554.0420684814453, + "b": 554.0421142578125, "coord_origin": "BOTTOMLEFT" }, "charspan": [ @@ -8996,7 +8996,7 @@ "page_no": 10, "bbox": { "l": 135.97177124023438, - "t": 684.5892486572266, + "t": 684.5892562866211, "r": 545.4180908203125, "b": 381.39068603515625, "coord_origin": "BOTTOMLEFT" @@ -9063,9 +9063,9 @@ { "page_no": 11, "bbox": { - "l": 135.64837646484375, - "t": 407.8262939453125, - "r": 301.2367248535156, + "l": 135.64834594726562, + "t": 407.8263244628906, + "r": 301.23675537109375, "b": 197.24334716796875, "coord_origin": "BOTTOMLEFT" }, @@ -9101,10 +9101,10 @@ { "page_no": 14, "bbox": { - "l": 63.801902770996094, - "t": 696.6175842285156, - "r": 547.11474609375, - "b": 621.9678497314453, + "l": 63.80195617675781, + "t": 696.6176071166992, + "r": 547.1146850585938, + "b": 621.9679107666016, "coord_origin": "BOTTOMLEFT" }, "charspan": [ @@ -9139,7 +9139,7 @@ { "page_no": 14, "bbox": { - "l": 63.985130310058594, + "l": 63.9850959777832, "t": 364.09503173828125, "r": 530.0478515625, "b": 145.8603515625, @@ -9178,9 +9178,9 @@ "page_no": 15, "bbox": { "l": 136.5016632080078, - "t": 672.7508773803711, + "t": 672.7509078979492, "r": 545.4508666992188, - "b": 314.4587707519531, + "b": 314.45880126953125, "coord_origin": "BOTTOMLEFT" }, "charspan": [ @@ -9322,10 +9322,10 @@ { "page_no": 2, "bbox": { - "l": 136.1496124267578, - "t": 659.9669647216797, - "r": 547.5267944335938, - "b": 76.34844970703125, + "l": 136.1495819091797, + "t": 659.9669189453125, + "r": 547.52685546875, + "b": 76.3485107421875, "coord_origin": "BOTTOMLEFT" }, "charspan": [ @@ -12490,9 +12490,9 @@ "page_no": 8, "bbox": { "l": 135.52462768554688, - "t": 502.2747802734375, + "t": 502.2746887207031, "r": 545.8714599609375, - "b": 349.949462890625, + "b": 349.94940185546875, "coord_origin": "BOTTOMLEFT" }, "charspan": [ @@ -13115,7 +13115,7 @@ "page_no": 9, "bbox": { "l": 64.41139221191406, - "t": 398.3863830566406, + "t": 398.3863525390625, "r": 547.3950805664062, "b": 70.39208984375, "coord_origin": "BOTTOMLEFT" @@ -15731,7 +15731,7 @@ { "page_no": 12, "bbox": { - "l": 63.55636978149414, + "l": 63.55635070800781, "t": 687.7661285400391, "r": 548.5687255859375, "b": 495.77532958984375, diff --git a/tests/data/groundtruth/docling_v2/redp5110_sampled.pages.json b/tests/data/groundtruth/docling_v2/redp5110_sampled.pages.json index ec7afc4..8ebe1a9 100644 --- a/tests/data/groundtruth/docling_v2/redp5110_sampled.pages.json +++ b/tests/data/groundtruth/docling_v2/redp5110_sampled.pages.json @@ -646,7 +646,7 @@ "b": 765.105, "coord_origin": "TOPLEFT" }, - "confidence": 0.7180292010307312, + "confidence": 0.7180286645889282, "cells": [ { "index": 0, @@ -711,7 +711,7 @@ "b": 774.4259033203125, "coord_origin": "TOPLEFT" }, - "confidence": 0.577752947807312, + "confidence": 0.5777521133422852, "cells": [ { "index": 2, @@ -891,13 +891,13 @@ "id": 10, "label": "picture", "bbox": { - "l": 33.09040069580078, + "l": 33.09052658081055, "t": 293.0328369140625, "r": 585.1502075195312, "b": 702.4530029296875, "coord_origin": "TOPLEFT" }, - "confidence": 0.5889471173286438, + "confidence": 0.5889488458633423, "cells": [ { "index": 6, @@ -1386,7 +1386,7 @@ "b": 698.411972, "coord_origin": "TOPLEFT" }, - "confidence": 0.762180745601654, + "confidence": 0.7621809840202332, "cells": [ { "index": 6, @@ -1626,7 +1626,7 @@ "b": 325.56058, "coord_origin": "TOPLEFT" }, - "confidence": 0.8502885103225708, + "confidence": 0.8502886891365051, "cells": [ { "index": 15, @@ -1806,7 +1806,7 @@ "b": 433.56167999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.842113196849823, + "confidence": 0.8421133756637573, "cells": [ { "index": 21, @@ -1923,7 +1923,7 @@ "b": 54.81915283203125, "coord_origin": "TOPLEFT" }, - "confidence": 0.9272358417510986, + "confidence": 0.9272356033325195, "cells": [], "children": [] } @@ -1952,7 +1952,7 @@ "b": 765.105, "coord_origin": "TOPLEFT" }, - "confidence": 0.7180292010307312, + "confidence": 0.7180286645889282, "cells": [ { "index": 0, @@ -2023,7 +2023,7 @@ "b": 774.4259033203125, "coord_origin": "TOPLEFT" }, - "confidence": 0.577752947807312, + "confidence": 0.5777521133422852, "cells": [ { "index": 2, @@ -2225,13 +2225,13 @@ "id": 10, "label": "picture", "bbox": { - "l": 33.09040069580078, + "l": 33.09052658081055, "t": 293.0328369140625, "r": 585.1502075195312, "b": 702.4530029296875, "coord_origin": "TOPLEFT" }, - "confidence": 0.5889471173286438, + "confidence": 0.5889488458633423, "cells": [ { "index": 6, @@ -2720,7 +2720,7 @@ "b": 698.411972, "coord_origin": "TOPLEFT" }, - "confidence": 0.762180745601654, + "confidence": 0.7621809840202332, "cells": [ { "index": 6, @@ -2960,7 +2960,7 @@ "b": 325.56058, "coord_origin": "TOPLEFT" }, - "confidence": 0.8502885103225708, + "confidence": 0.8502886891365051, "cells": [ { "index": 15, @@ -3140,7 +3140,7 @@ "b": 433.56167999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.842113196849823, + "confidence": 0.8421133756637573, "cells": [ { "index": 21, @@ -3267,7 +3267,7 @@ "b": 54.81915283203125, "coord_origin": "TOPLEFT" }, - "confidence": 0.9272358417510986, + "confidence": 0.9272356033325195, "cells": [], "children": [] }, @@ -3293,7 +3293,7 @@ "b": 774.4259033203125, "coord_origin": "TOPLEFT" }, - "confidence": 0.577752947807312, + "confidence": 0.5777521133422852, "cells": [ { "index": 2, @@ -3495,13 +3495,13 @@ "id": 10, "label": "picture", "bbox": { - "l": 33.09040069580078, + "l": 33.09052658081055, "t": 293.0328369140625, "r": 585.1502075195312, "b": 702.4530029296875, "coord_origin": "TOPLEFT" }, - "confidence": 0.5889471173286438, + "confidence": 0.5889488458633423, "cells": [ { "index": 6, @@ -3990,7 +3990,7 @@ "b": 698.411972, "coord_origin": "TOPLEFT" }, - "confidence": 0.762180745601654, + "confidence": 0.7621809840202332, "cells": [ { "index": 6, @@ -4230,7 +4230,7 @@ "b": 325.56058, "coord_origin": "TOPLEFT" }, - "confidence": 0.8502885103225708, + "confidence": 0.8502886891365051, "cells": [ { "index": 15, @@ -4410,7 +4410,7 @@ "b": 433.56167999999997, "coord_origin": "TOPLEFT" }, - "confidence": 0.842113196849823, + "confidence": 0.8421133756637573, "cells": [ { "index": 21, @@ -4537,7 +4537,7 @@ "b": 54.81915283203125, "coord_origin": "TOPLEFT" }, - "confidence": 0.9272358417510986, + "confidence": 0.9272356033325195, "cells": [], "children": [] }, @@ -4563,7 +4563,7 @@ "b": 765.105, "coord_origin": "TOPLEFT" }, - "confidence": 0.7180292010307312, + "confidence": 0.7180286645889282, "cells": [ { "index": 0, @@ -7845,7 +7845,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9473597407341003, + "confidence": 0.9473598599433899, "cells": [ { "index": 0, @@ -7925,7 +7925,7 @@ "b": 96.04803000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9509142637252808, + "confidence": 0.9509141445159912, "cells": [ { "index": 2, @@ -7959,10 +7959,10 @@ "id": 0, "label": "document_index", "bbox": { - "l": 136.1496124267578, - "t": 132.0330352783203, - "r": 547.5267944335938, - "b": 715.6515502929688, + "l": 136.1495819091797, + "t": 132.0330810546875, + "r": 547.52685546875, + "b": 715.6514892578125, "coord_origin": "TOPLEFT" }, "confidence": 0.9803681373596191, @@ -16108,10 +16108,10 @@ "id": 0, "label": "document_index", "bbox": { - "l": 136.1496124267578, - "t": 132.0330352783203, - "r": 547.5267944335938, - "b": 715.6515502929688, + "l": 136.1495819091797, + "t": 132.0330810546875, + "r": 547.52685546875, + "b": 715.6514892578125, "coord_origin": "TOPLEFT" }, "confidence": 0.9803681373596191, @@ -25886,7 +25886,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9473597407341003, + "confidence": 0.9473598599433899, "cells": [ { "index": 0, @@ -25978,7 +25978,7 @@ "b": 96.04803000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9509142637252808, + "confidence": 0.9509141445159912, "cells": [ { "index": 2, @@ -26018,10 +26018,10 @@ "id": 0, "label": "document_index", "bbox": { - "l": 136.1496124267578, - "t": 132.0330352783203, - "r": 547.5267944335938, - "b": 715.6515502929688, + "l": 136.1495819091797, + "t": 132.0330810546875, + "r": 547.52685546875, + "b": 715.6514892578125, "coord_origin": "TOPLEFT" }, "confidence": 0.9803681373596191, @@ -35790,7 +35790,7 @@ "b": 96.04803000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9509142637252808, + "confidence": 0.9509141445159912, "cells": [ { "index": 2, @@ -35830,10 +35830,10 @@ "id": 0, "label": "document_index", "bbox": { - "l": 136.1496124267578, - "t": 132.0330352783203, - "r": 547.5267944335938, - "b": 715.6515502929688, + "l": 136.1495819091797, + "t": 132.0330810546875, + "r": 547.52685546875, + "b": 715.6514892578125, "coord_origin": "TOPLEFT" }, "confidence": 0.9803681373596191, @@ -45602,7 +45602,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9473597407341003, + "confidence": 0.9473598599433899, "cells": [ { "index": 0, @@ -47770,7 +47770,7 @@ "b": 155.33642999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.7431555986404419, + "confidence": 0.7431555390357971, "cells": [ { "index": 1, @@ -47835,7 +47835,7 @@ "b": 145.42181000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.7798982858657837, + "confidence": 0.7798989415168762, "cells": [ { "index": 3, @@ -47875,7 +47875,7 @@ "b": 276.62054, "coord_origin": "TOPLEFT" }, - "confidence": 0.7587865591049194, + "confidence": 0.7587867975234985, "cells": [ { "index": 4, @@ -47940,7 +47940,7 @@ "b": 287.45959, "coord_origin": "TOPLEFT" }, - "confidence": 0.7965622544288635, + "confidence": 0.7965632677078247, "cells": [ { "index": 6, @@ -47980,7 +47980,7 @@ "b": 324.89566, "coord_origin": "TOPLEFT" }, - "confidence": 0.8913541436195374, + "confidence": 0.8913542628288269, "cells": [ { "index": 7, @@ -48020,7 +48020,7 @@ "b": 344.9595, "coord_origin": "TOPLEFT" }, - "confidence": 0.9560741782188416, + "confidence": 0.9560742378234863, "cells": [ { "index": 8, @@ -48085,7 +48085,7 @@ "b": 364.73001, "coord_origin": "TOPLEFT" }, - "confidence": 0.8260757923126221, + "confidence": 0.8260756134986877, "cells": [ { "index": 10, @@ -48125,7 +48125,7 @@ "b": 425.22027999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9764723181724548, + "confidence": 0.9764719605445862, "cells": [ { "index": 11, @@ -48265,7 +48265,7 @@ "b": 446.86807, "coord_origin": "TOPLEFT" }, - "confidence": 0.8492127060890198, + "confidence": 0.8492123484611511, "cells": [ { "index": 16, @@ -48305,7 +48305,7 @@ "b": 456.75223, "coord_origin": "TOPLEFT" }, - "confidence": 0.8440335392951965, + "confidence": 0.8440337181091309, "cells": [ { "index": 17, @@ -48345,7 +48345,7 @@ "b": 476.52225, "coord_origin": "TOPLEFT" }, - "confidence": 0.9239600896835327, + "confidence": 0.9239600300788879, "cells": [ { "index": 18, @@ -48410,7 +48410,7 @@ "b": 486.70496, "coord_origin": "TOPLEFT" }, - "confidence": 0.9239721298217773, + "confidence": 0.9239720106124878, "cells": [ { "index": 20, @@ -48670,7 +48670,7 @@ "b": 527.4355499999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9109312891960144, + "confidence": 0.9109312295913696, "cells": [ { "index": 28, @@ -48865,7 +48865,7 @@ "b": 557.98344, "coord_origin": "TOPLEFT" }, - "confidence": 0.9075438976287842, + "confidence": 0.9075440168380737, "cells": [ { "index": 34, @@ -48930,7 +48930,7 @@ "b": 336.81406, "coord_origin": "TOPLEFT" }, - "confidence": 0.9098502993583679, + "confidence": 0.9098502397537231, "cells": [ { "index": 36, @@ -48970,7 +48970,7 @@ "b": 358.68942, "coord_origin": "TOPLEFT" }, - "confidence": 0.957169771194458, + "confidence": 0.9571698904037476, "cells": [ { "index": 37, @@ -49815,7 +49815,7 @@ "b": 434.66763, "coord_origin": "TOPLEFT" }, - "confidence": 0.9440370798110962, + "confidence": 0.9440371990203857, "cells": [ { "index": 69, @@ -50130,7 +50130,7 @@ "b": 285.621337890625, "coord_origin": "TOPLEFT" }, - "confidence": 0.7491768598556519, + "confidence": 0.7491769194602966, "cells": [], "children": [] }, @@ -50138,13 +50138,13 @@ "id": 15, "label": "picture", "bbox": { - "l": 64.1669921875, + "l": 64.16704559326172, "t": 603.50634765625, - "r": 258.7742919921875, + "r": 258.77435302734375, "b": 688.1282348632812, "coord_origin": "TOPLEFT" }, - "confidence": 0.8925829529762268, + "confidence": 0.8925826549530029, "cells": [], "children": [] } @@ -50219,7 +50219,7 @@ "b": 155.33642999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.7431555986404419, + "confidence": 0.7431555390357971, "cells": [ { "index": 1, @@ -50290,7 +50290,7 @@ "b": 145.42181000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.7798982858657837, + "confidence": 0.7798989415168762, "cells": [ { "index": 3, @@ -50336,7 +50336,7 @@ "b": 276.62054, "coord_origin": "TOPLEFT" }, - "confidence": 0.7587865591049194, + "confidence": 0.7587867975234985, "cells": [ { "index": 4, @@ -50407,7 +50407,7 @@ "b": 287.45959, "coord_origin": "TOPLEFT" }, - "confidence": 0.7965622544288635, + "confidence": 0.7965632677078247, "cells": [ { "index": 6, @@ -50453,7 +50453,7 @@ "b": 324.89566, "coord_origin": "TOPLEFT" }, - "confidence": 0.8913541436195374, + "confidence": 0.8913542628288269, "cells": [ { "index": 7, @@ -50499,7 +50499,7 @@ "b": 344.9595, "coord_origin": "TOPLEFT" }, - "confidence": 0.9560741782188416, + "confidence": 0.9560742378234863, "cells": [ { "index": 8, @@ -50570,7 +50570,7 @@ "b": 364.73001, "coord_origin": "TOPLEFT" }, - "confidence": 0.8260757923126221, + "confidence": 0.8260756134986877, "cells": [ { "index": 10, @@ -50616,7 +50616,7 @@ "b": 425.22027999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9764723181724548, + "confidence": 0.9764719605445862, "cells": [ { "index": 11, @@ -50762,7 +50762,7 @@ "b": 446.86807, "coord_origin": "TOPLEFT" }, - "confidence": 0.8492127060890198, + "confidence": 0.8492123484611511, "cells": [ { "index": 16, @@ -50808,7 +50808,7 @@ "b": 456.75223, "coord_origin": "TOPLEFT" }, - "confidence": 0.8440335392951965, + "confidence": 0.8440337181091309, "cells": [ { "index": 17, @@ -50854,7 +50854,7 @@ "b": 476.52225, "coord_origin": "TOPLEFT" }, - "confidence": 0.9239600896835327, + "confidence": 0.9239600300788879, "cells": [ { "index": 18, @@ -50925,7 +50925,7 @@ "b": 486.70496, "coord_origin": "TOPLEFT" }, - "confidence": 0.9239721298217773, + "confidence": 0.9239720106124878, "cells": [ { "index": 20, @@ -51209,7 +51209,7 @@ "b": 527.4355499999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9109312891960144, + "confidence": 0.9109312295913696, "cells": [ { "index": 28, @@ -51422,7 +51422,7 @@ "b": 557.98344, "coord_origin": "TOPLEFT" }, - "confidence": 0.9075438976287842, + "confidence": 0.9075440168380737, "cells": [ { "index": 34, @@ -51493,7 +51493,7 @@ "b": 336.81406, "coord_origin": "TOPLEFT" }, - "confidence": 0.9098502993583679, + "confidence": 0.9098502397537231, "cells": [ { "index": 36, @@ -51539,7 +51539,7 @@ "b": 358.68942, "coord_origin": "TOPLEFT" }, - "confidence": 0.957169771194458, + "confidence": 0.9571698904037476, "cells": [ { "index": 37, @@ -52402,7 +52402,7 @@ "b": 434.66763, "coord_origin": "TOPLEFT" }, - "confidence": 0.9440370798110962, + "confidence": 0.9440371990203857, "cells": [ { "index": 69, @@ -52723,7 +52723,7 @@ "b": 285.621337890625, "coord_origin": "TOPLEFT" }, - "confidence": 0.7491768598556519, + "confidence": 0.7491769194602966, "cells": [], "children": [] }, @@ -52741,13 +52741,13 @@ "id": 15, "label": "picture", "bbox": { - "l": 64.1669921875, + "l": 64.16704559326172, "t": 603.50634765625, - "r": 258.7742919921875, + "r": 258.77435302734375, "b": 688.1282348632812, "coord_origin": "TOPLEFT" }, - "confidence": 0.8925829529762268, + "confidence": 0.8925826549530029, "cells": [], "children": [] }, @@ -52819,7 +52819,7 @@ "b": 155.33642999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.7431555986404419, + "confidence": 0.7431555390357971, "cells": [ { "index": 1, @@ -52890,7 +52890,7 @@ "b": 145.42181000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.7798982858657837, + "confidence": 0.7798989415168762, "cells": [ { "index": 3, @@ -52936,7 +52936,7 @@ "b": 276.62054, "coord_origin": "TOPLEFT" }, - "confidence": 0.7587865591049194, + "confidence": 0.7587867975234985, "cells": [ { "index": 4, @@ -53007,7 +53007,7 @@ "b": 287.45959, "coord_origin": "TOPLEFT" }, - "confidence": 0.7965622544288635, + "confidence": 0.7965632677078247, "cells": [ { "index": 6, @@ -53053,7 +53053,7 @@ "b": 324.89566, "coord_origin": "TOPLEFT" }, - "confidence": 0.8913541436195374, + "confidence": 0.8913542628288269, "cells": [ { "index": 7, @@ -53099,7 +53099,7 @@ "b": 344.9595, "coord_origin": "TOPLEFT" }, - "confidence": 0.9560741782188416, + "confidence": 0.9560742378234863, "cells": [ { "index": 8, @@ -53170,7 +53170,7 @@ "b": 364.73001, "coord_origin": "TOPLEFT" }, - "confidence": 0.8260757923126221, + "confidence": 0.8260756134986877, "cells": [ { "index": 10, @@ -53216,7 +53216,7 @@ "b": 425.22027999999995, "coord_origin": "TOPLEFT" }, - "confidence": 0.9764723181724548, + "confidence": 0.9764719605445862, "cells": [ { "index": 11, @@ -53362,7 +53362,7 @@ "b": 446.86807, "coord_origin": "TOPLEFT" }, - "confidence": 0.8492127060890198, + "confidence": 0.8492123484611511, "cells": [ { "index": 16, @@ -53408,7 +53408,7 @@ "b": 456.75223, "coord_origin": "TOPLEFT" }, - "confidence": 0.8440335392951965, + "confidence": 0.8440337181091309, "cells": [ { "index": 17, @@ -53454,7 +53454,7 @@ "b": 476.52225, "coord_origin": "TOPLEFT" }, - "confidence": 0.9239600896835327, + "confidence": 0.9239600300788879, "cells": [ { "index": 18, @@ -53525,7 +53525,7 @@ "b": 486.70496, "coord_origin": "TOPLEFT" }, - "confidence": 0.9239721298217773, + "confidence": 0.9239720106124878, "cells": [ { "index": 20, @@ -53809,7 +53809,7 @@ "b": 527.4355499999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9109312891960144, + "confidence": 0.9109312295913696, "cells": [ { "index": 28, @@ -54022,7 +54022,7 @@ "b": 557.98344, "coord_origin": "TOPLEFT" }, - "confidence": 0.9075438976287842, + "confidence": 0.9075440168380737, "cells": [ { "index": 34, @@ -54093,7 +54093,7 @@ "b": 336.81406, "coord_origin": "TOPLEFT" }, - "confidence": 0.9098502993583679, + "confidence": 0.9098502397537231, "cells": [ { "index": 36, @@ -54139,7 +54139,7 @@ "b": 358.68942, "coord_origin": "TOPLEFT" }, - "confidence": 0.957169771194458, + "confidence": 0.9571698904037476, "cells": [ { "index": 37, @@ -55002,7 +55002,7 @@ "b": 434.66763, "coord_origin": "TOPLEFT" }, - "confidence": 0.9440370798110962, + "confidence": 0.9440371990203857, "cells": [ { "index": 69, @@ -55323,7 +55323,7 @@ "b": 285.621337890625, "coord_origin": "TOPLEFT" }, - "confidence": 0.7491768598556519, + "confidence": 0.7491769194602966, "cells": [], "children": [] }, @@ -55341,13 +55341,13 @@ "id": 15, "label": "picture", "bbox": { - "l": 64.1669921875, + "l": 64.16704559326172, "t": 603.50634765625, - "r": 258.7742919921875, + "r": 258.77435302734375, "b": 688.1282348632812, "coord_origin": "TOPLEFT" }, - "confidence": 0.8925829529762268, + "confidence": 0.8925826549530029, "cells": [], "children": [] }, @@ -56588,7 +56588,7 @@ "b": 96.04803000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9174711108207703, + "confidence": 0.9174708127975464, "cells": [ { "index": 2, @@ -56908,7 +56908,7 @@ "b": 303.0636, "coord_origin": "TOPLEFT" }, - "confidence": 0.9255507588386536, + "confidence": 0.9255504608154297, "cells": [ { "index": 13, @@ -56948,7 +56948,7 @@ "b": 341.84152, "coord_origin": "TOPLEFT" }, - "confidence": 0.9713318347930908, + "confidence": 0.9713318943977356, "cells": [ { "index": 14, @@ -57776,13 +57776,13 @@ "id": 1, "label": "picture", "bbox": { - "l": 145.4144744873047, + "l": 145.41448974609375, "t": 527.2447509765625, "r": 252.08840942382812, "b": 635.383056640625, "coord_origin": "TOPLEFT" }, - "confidence": 0.9871657490730286, + "confidence": 0.987165629863739, "cells": [], "children": [] } @@ -57903,7 +57903,7 @@ "b": 96.04803000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9174711108207703, + "confidence": 0.9174708127975464, "cells": [ { "index": 2, @@ -58241,7 +58241,7 @@ "b": 303.0636, "coord_origin": "TOPLEFT" }, - "confidence": 0.9255507588386536, + "confidence": 0.9255504608154297, "cells": [ { "index": 13, @@ -58287,7 +58287,7 @@ "b": 341.84152, "coord_origin": "TOPLEFT" }, - "confidence": 0.9713318347930908, + "confidence": 0.9713318943977356, "cells": [ { "index": 14, @@ -59143,13 +59143,13 @@ "id": 1, "label": "picture", "bbox": { - "l": 145.4144744873047, + "l": 145.41448974609375, "t": 527.2447509765625, "r": 252.08840942382812, "b": 635.383056640625, "coord_origin": "TOPLEFT" }, - "confidence": 0.9871657490730286, + "confidence": 0.987165629863739, "cells": [], "children": [] }, @@ -59175,7 +59175,7 @@ "b": 96.04803000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9174711108207703, + "confidence": 0.9174708127975464, "cells": [ { "index": 2, @@ -59513,7 +59513,7 @@ "b": 303.0636, "coord_origin": "TOPLEFT" }, - "confidence": 0.9255507588386536, + "confidence": 0.9255504608154297, "cells": [ { "index": 13, @@ -59559,7 +59559,7 @@ "b": 341.84152, "coord_origin": "TOPLEFT" }, - "confidence": 0.9713318347930908, + "confidence": 0.9713318943977356, "cells": [ { "index": 14, @@ -60415,13 +60415,13 @@ "id": 1, "label": "picture", "bbox": { - "l": 145.4144744873047, + "l": 145.41448974609375, "t": 527.2447509765625, "r": 252.08840942382812, "b": 635.383056640625, "coord_origin": "TOPLEFT" }, - "confidence": 0.9871657490730286, + "confidence": 0.987165629863739, "cells": [], "children": [] }, @@ -61250,7 +61250,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9364771246910095, + "confidence": 0.9364773035049438, "cells": [ { "index": 0, @@ -61290,7 +61290,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.8511815071105957, + "confidence": 0.8511810302734375, "cells": [ { "index": 1, @@ -61370,7 +61370,7 @@ "b": 309.8782, "coord_origin": "TOPLEFT" }, - "confidence": 0.9371159076690674, + "confidence": 0.9371162056922913, "cells": [ { "index": 3, @@ -61625,7 +61625,7 @@ "b": 487.94016, "coord_origin": "TOPLEFT" }, - "confidence": 0.9865838885307312, + "confidence": 0.9865840077400208, "cells": [ { "index": 12, @@ -61870,7 +61870,7 @@ "b": 550.93916, "coord_origin": "TOPLEFT" }, - "confidence": 0.9334256649017334, + "confidence": 0.933425784111023, "cells": [ { "index": 20, @@ -62000,7 +62000,7 @@ "b": 130.13171, "coord_origin": "TOPLEFT" }, - "confidence": 0.7085074782371521, + "confidence": 0.7085080742835999, "cells": [ { "index": 24, @@ -62040,7 +62040,7 @@ "b": 724.780441, "coord_origin": "TOPLEFT" }, - "confidence": 0.5138102173805237, + "confidence": 0.5138110518455505, "cells": [ { "index": 25, @@ -62080,7 +62080,7 @@ "b": 734.97176, "coord_origin": "TOPLEFT" }, - "confidence": 0.7965563535690308, + "confidence": 0.7965556979179382, "cells": [ { "index": 26, @@ -62139,13 +62139,13 @@ "id": 11, "label": "picture", "bbox": { - "l": 32.075252532958984, - "t": 70.57737731933594, + "l": 32.075260162353516, + "t": 70.57733917236328, "r": 239.620361328125, - "b": 237.9579315185547, + "b": 237.9578857421875, "coord_origin": "TOPLEFT" }, - "confidence": 0.7509335279464722, + "confidence": 0.750933051109314, "cells": [], "children": [] } @@ -62174,7 +62174,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9364771246910095, + "confidence": 0.9364773035049438, "cells": [ { "index": 0, @@ -62220,7 +62220,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.8511815071105957, + "confidence": 0.8511810302734375, "cells": [ { "index": 1, @@ -62312,7 +62312,7 @@ "b": 309.8782, "coord_origin": "TOPLEFT" }, - "confidence": 0.9371159076690674, + "confidence": 0.9371162056922913, "cells": [ { "index": 3, @@ -62579,7 +62579,7 @@ "b": 487.94016, "coord_origin": "TOPLEFT" }, - "confidence": 0.9865838885307312, + "confidence": 0.9865840077400208, "cells": [ { "index": 12, @@ -62842,7 +62842,7 @@ "b": 550.93916, "coord_origin": "TOPLEFT" }, - "confidence": 0.9334256649017334, + "confidence": 0.933425784111023, "cells": [ { "index": 20, @@ -62984,7 +62984,7 @@ "b": 130.13171, "coord_origin": "TOPLEFT" }, - "confidence": 0.7085074782371521, + "confidence": 0.7085080742835999, "cells": [ { "index": 24, @@ -63030,7 +63030,7 @@ "b": 724.780441, "coord_origin": "TOPLEFT" }, - "confidence": 0.5138102173805237, + "confidence": 0.5138110518455505, "cells": [ { "index": 25, @@ -63076,7 +63076,7 @@ "b": 734.97176, "coord_origin": "TOPLEFT" }, - "confidence": 0.7965563535690308, + "confidence": 0.7965556979179382, "cells": [ { "index": 26, @@ -63141,13 +63141,13 @@ "id": 11, "label": "picture", "bbox": { - "l": 32.075252532958984, - "t": 70.57737731933594, + "l": 32.075260162353516, + "t": 70.57733917236328, "r": 239.620361328125, - "b": 237.9579315185547, + "b": 237.9578857421875, "coord_origin": "TOPLEFT" }, - "confidence": 0.7509335279464722, + "confidence": 0.750933051109314, "cells": [], "children": [] }, @@ -63219,7 +63219,7 @@ "b": 309.8782, "coord_origin": "TOPLEFT" }, - "confidence": 0.9371159076690674, + "confidence": 0.9371162056922913, "cells": [ { "index": 3, @@ -63486,7 +63486,7 @@ "b": 487.94016, "coord_origin": "TOPLEFT" }, - "confidence": 0.9865838885307312, + "confidence": 0.9865840077400208, "cells": [ { "index": 12, @@ -63749,7 +63749,7 @@ "b": 550.93916, "coord_origin": "TOPLEFT" }, - "confidence": 0.9334256649017334, + "confidence": 0.933425784111023, "cells": [ { "index": 20, @@ -63891,7 +63891,7 @@ "b": 130.13171, "coord_origin": "TOPLEFT" }, - "confidence": 0.7085074782371521, + "confidence": 0.7085080742835999, "cells": [ { "index": 24, @@ -63937,7 +63937,7 @@ "b": 724.780441, "coord_origin": "TOPLEFT" }, - "confidence": 0.5138102173805237, + "confidence": 0.5138110518455505, "cells": [ { "index": 25, @@ -63983,7 +63983,7 @@ "b": 734.97176, "coord_origin": "TOPLEFT" }, - "confidence": 0.7965563535690308, + "confidence": 0.7965556979179382, "cells": [ { "index": 26, @@ -64048,13 +64048,13 @@ "id": 11, "label": "picture", "bbox": { - "l": 32.075252532958984, - "t": 70.57737731933594, + "l": 32.075260162353516, + "t": 70.57733917236328, "r": 239.620361328125, - "b": 237.9579315185547, + "b": 237.9578857421875, "coord_origin": "TOPLEFT" }, - "confidence": 0.7509335279464722, + "confidence": 0.750933051109314, "cells": [], "children": [] }, @@ -64080,7 +64080,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9364771246910095, + "confidence": 0.9364773035049438, "cells": [ { "index": 0, @@ -64126,7 +64126,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.8511815071105957, + "confidence": 0.8511810302734375, "cells": [ { "index": 1, @@ -65458,7 +65458,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.8889444470405579, + "confidence": 0.8889446258544922, "cells": [ { "index": 0, @@ -65498,7 +65498,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9476422667503357, + "confidence": 0.9476423859596252, "cells": [ { "index": 1, @@ -65538,7 +65538,7 @@ "b": 89.1037, "coord_origin": "TOPLEFT" }, - "confidence": 0.9651358723640442, + "confidence": 0.9651358127593994, "cells": [ { "index": 2, @@ -65858,7 +65858,7 @@ "b": 269.83978, "coord_origin": "TOPLEFT" }, - "confidence": 0.8077318072319031, + "confidence": 0.8077319264411926, "cells": [ { "index": 13, @@ -66048,7 +66048,7 @@ "b": 286.81958, "coord_origin": "TOPLEFT" }, - "confidence": 0.7967224717140198, + "confidence": 0.7967225909233093, "cells": [ { "index": 20, @@ -66088,7 +66088,7 @@ "b": 375.8606, "coord_origin": "TOPLEFT" }, - "confidence": 0.9837487936019897, + "confidence": 0.9837489128112793, "cells": [ { "index": 21, @@ -66353,7 +66353,7 @@ "b": 409.82022, "coord_origin": "TOPLEFT" }, - "confidence": 0.9621998071670532, + "confidence": 0.9621996879577637, "cells": [ { "index": 31, @@ -66418,7 +66418,7 @@ "b": 453.06372, "coord_origin": "TOPLEFT" }, - "confidence": 0.9650285243988037, + "confidence": 0.9650284051895142, "cells": [ { "index": 33, @@ -66598,7 +66598,7 @@ "b": 585.85994, "coord_origin": "TOPLEFT" }, - "confidence": 0.9848474860191345, + "confidence": 0.9848476052284241, "cells": [ { "index": 39, @@ -66943,7 +66943,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.8889444470405579, + "confidence": 0.8889446258544922, "cells": [ { "index": 0, @@ -66989,7 +66989,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9476422667503357, + "confidence": 0.9476423859596252, "cells": [ { "index": 1, @@ -67035,7 +67035,7 @@ "b": 89.1037, "coord_origin": "TOPLEFT" }, - "confidence": 0.9651358723640442, + "confidence": 0.9651358127593994, "cells": [ { "index": 2, @@ -67373,7 +67373,7 @@ "b": 269.83978, "coord_origin": "TOPLEFT" }, - "confidence": 0.8077318072319031, + "confidence": 0.8077319264411926, "cells": [ { "index": 13, @@ -67569,7 +67569,7 @@ "b": 286.81958, "coord_origin": "TOPLEFT" }, - "confidence": 0.7967224717140198, + "confidence": 0.7967225909233093, "cells": [ { "index": 20, @@ -67615,7 +67615,7 @@ "b": 375.8606, "coord_origin": "TOPLEFT" }, - "confidence": 0.9837487936019897, + "confidence": 0.9837489128112793, "cells": [ { "index": 21, @@ -67886,7 +67886,7 @@ "b": 409.82022, "coord_origin": "TOPLEFT" }, - "confidence": 0.9621998071670532, + "confidence": 0.9621996879577637, "cells": [ { "index": 31, @@ -67957,7 +67957,7 @@ "b": 453.06372, "coord_origin": "TOPLEFT" }, - "confidence": 0.9650285243988037, + "confidence": 0.9650284051895142, "cells": [ { "index": 33, @@ -68149,7 +68149,7 @@ "b": 585.85994, "coord_origin": "TOPLEFT" }, - "confidence": 0.9848474860191345, + "confidence": 0.9848476052284241, "cells": [ { "index": 39, @@ -68493,7 +68493,7 @@ "b": 89.1037, "coord_origin": "TOPLEFT" }, - "confidence": 0.9651358723640442, + "confidence": 0.9651358127593994, "cells": [ { "index": 2, @@ -68831,7 +68831,7 @@ "b": 269.83978, "coord_origin": "TOPLEFT" }, - "confidence": 0.8077318072319031, + "confidence": 0.8077319264411926, "cells": [ { "index": 13, @@ -69027,7 +69027,7 @@ "b": 286.81958, "coord_origin": "TOPLEFT" }, - "confidence": 0.7967224717140198, + "confidence": 0.7967225909233093, "cells": [ { "index": 20, @@ -69073,7 +69073,7 @@ "b": 375.8606, "coord_origin": "TOPLEFT" }, - "confidence": 0.9837487936019897, + "confidence": 0.9837489128112793, "cells": [ { "index": 21, @@ -69344,7 +69344,7 @@ "b": 409.82022, "coord_origin": "TOPLEFT" }, - "confidence": 0.9621998071670532, + "confidence": 0.9621996879577637, "cells": [ { "index": 31, @@ -69415,7 +69415,7 @@ "b": 453.06372, "coord_origin": "TOPLEFT" }, - "confidence": 0.9650285243988037, + "confidence": 0.9650284051895142, "cells": [ { "index": 33, @@ -69607,7 +69607,7 @@ "b": 585.85994, "coord_origin": "TOPLEFT" }, - "confidence": 0.9848474860191345, + "confidence": 0.9848476052284241, "cells": [ { "index": 39, @@ -69951,7 +69951,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.8889444470405579, + "confidence": 0.8889446258544922, "cells": [ { "index": 0, @@ -69997,7 +69997,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9476422667503357, + "confidence": 0.9476423859596252, "cells": [ { "index": 1, @@ -70704,7 +70704,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.8578535318374634, + "confidence": 0.8578536510467529, "cells": [ { "index": 0, @@ -70974,7 +70974,7 @@ "b": 185.32275000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9626136422157288, + "confidence": 0.9626137614250183, "cells": [ { "index": 9, @@ -71039,7 +71039,7 @@ "b": 256.70099000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9858147501945496, + "confidence": 0.9858148097991943, "cells": [ { "index": 11, @@ -71294,7 +71294,7 @@ "b": 360.73923, "coord_origin": "TOPLEFT" }, - "confidence": 0.975760281085968, + "confidence": 0.9757603406906128, "cells": [ { "index": 20, @@ -71585,7 +71585,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.8578535318374634, + "confidence": 0.8578536510467529, "cells": [ { "index": 0, @@ -71873,7 +71873,7 @@ "b": 185.32275000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9626136422157288, + "confidence": 0.9626137614250183, "cells": [ { "index": 9, @@ -71944,7 +71944,7 @@ "b": 256.70099000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9858147501945496, + "confidence": 0.9858148097991943, "cells": [ { "index": 11, @@ -72211,7 +72211,7 @@ "b": 360.73923, "coord_origin": "TOPLEFT" }, - "confidence": 0.975760281085968, + "confidence": 0.9757603406906128, "cells": [ { "index": 20, @@ -72707,7 +72707,7 @@ "b": 185.32275000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9626136422157288, + "confidence": 0.9626137614250183, "cells": [ { "index": 9, @@ -72778,7 +72778,7 @@ "b": 256.70099000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9858147501945496, + "confidence": 0.9858148097991943, "cells": [ { "index": 11, @@ -73045,7 +73045,7 @@ "b": 360.73923, "coord_origin": "TOPLEFT" }, - "confidence": 0.975760281085968, + "confidence": 0.9757603406906128, "cells": [ { "index": 20, @@ -73345,7 +73345,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.8578535318374634, + "confidence": 0.8578536510467529, "cells": [ { "index": 0, @@ -75248,7 +75248,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9166396856307983, + "confidence": 0.9166395664215088, "cells": [ { "index": 0, @@ -75393,7 +75393,7 @@ "b": 106.70172000000014, "coord_origin": "TOPLEFT" }, - "confidence": 0.9551582932472229, + "confidence": 0.9551581740379333, "cells": [ { "index": 4, @@ -75548,7 +75548,7 @@ "b": 135.74108999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9418092370033264, + "confidence": 0.9418092966079712, "cells": [ { "index": 9, @@ -75933,7 +75933,7 @@ "b": 231.34271, "coord_origin": "TOPLEFT" }, - "confidence": 0.9636710286140442, + "confidence": 0.9636709094047546, "cells": [ { "index": 22, @@ -76063,7 +76063,7 @@ "b": 287.88300000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9196999669075012, + "confidence": 0.9197001457214355, "cells": [ { "index": 26, @@ -76168,7 +76168,7 @@ "b": 494.883, "coord_origin": "TOPLEFT" }, - "confidence": 0.8159958720207214, + "confidence": 0.8159964680671692, "cells": [ { "index": 29, @@ -76208,7 +76208,7 @@ "b": 584.43163, "coord_origin": "TOPLEFT" }, - "confidence": 0.5808265805244446, + "confidence": 0.5808269381523132, "cells": [ { "index": 30, @@ -76497,7 +76497,7 @@ "b": 512.4328, "coord_origin": "TOPLEFT" }, - "confidence": 0.5631121397018433, + "confidence": 0.5631120204925537, "cells": [ { "index": 30, @@ -76657,7 +76657,7 @@ "b": 548.43222, "coord_origin": "TOPLEFT" }, - "confidence": 0.5346826314926147, + "confidence": 0.5346829891204834, "cells": [ { "index": 34, @@ -76697,7 +76697,7 @@ "b": 560.43202, "coord_origin": "TOPLEFT" }, - "confidence": 0.581838846206665, + "confidence": 0.5818390846252441, "cells": [ { "index": 35, @@ -76737,7 +76737,7 @@ "b": 560.43202, "coord_origin": "TOPLEFT" }, - "confidence": 0.5035740733146667, + "confidence": 0.503573477268219, "cells": [ { "index": 36, @@ -76777,7 +76777,7 @@ "b": 572.43182, "coord_origin": "TOPLEFT" }, - "confidence": 0.534027099609375, + "confidence": 0.5340273380279541, "cells": [ { "index": 37, @@ -76817,7 +76817,7 @@ "b": 572.43182, "coord_origin": "TOPLEFT" }, - "confidence": 0.5171723365783691, + "confidence": 0.5171729922294617, "cells": [ { "index": 38, @@ -76857,7 +76857,7 @@ "b": 584.43163, "coord_origin": "TOPLEFT" }, - "confidence": 0.5373470187187195, + "confidence": 0.5373476147651672, "cells": [ { "index": 39, @@ -76897,7 +76897,7 @@ "b": 584.43163, "coord_origin": "TOPLEFT" }, - "confidence": 0.5167025327682495, + "confidence": 0.51670241355896, "cells": [ { "index": 40, @@ -77004,7 +77004,7 @@ "b": 709.760956, "coord_origin": "TOPLEFT" }, - "confidence": 0.9853070974349976, + "confidence": 0.985306978225708, "cells": [ { "index": 43, @@ -77139,9 +77139,9 @@ "label": "table", "bbox": { "l": 135.52462768554688, - "t": 289.7252197265625, + "t": 289.7253112792969, "r": 545.8714599609375, - "b": 442.050537109375, + "b": 442.05059814453125, "coord_origin": "TOPLEFT" }, "confidence": 0.9851690530776978, @@ -78723,9 +78723,9 @@ "label": "table", "bbox": { "l": 135.52462768554688, - "t": 289.7252197265625, + "t": 289.7253112792969, "r": 545.8714599609375, - "b": 442.050537109375, + "b": 442.05059814453125, "coord_origin": "TOPLEFT" }, "confidence": 0.9851690530776978, @@ -80629,7 +80629,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9166396856307983, + "confidence": 0.9166395664215088, "cells": [ { "index": 0, @@ -80792,7 +80792,7 @@ "b": 106.70172000000014, "coord_origin": "TOPLEFT" }, - "confidence": 0.9551582932472229, + "confidence": 0.9551581740379333, "cells": [ { "index": 4, @@ -80959,7 +80959,7 @@ "b": 135.74108999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9418092370033264, + "confidence": 0.9418092966079712, "cells": [ { "index": 9, @@ -81368,7 +81368,7 @@ "b": 231.34271, "coord_origin": "TOPLEFT" }, - "confidence": 0.9636710286140442, + "confidence": 0.9636709094047546, "cells": [ { "index": 22, @@ -81510,7 +81510,7 @@ "b": 287.88300000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9196999669075012, + "confidence": 0.9197001457214355, "cells": [ { "index": 26, @@ -81627,7 +81627,7 @@ "b": 494.883, "coord_origin": "TOPLEFT" }, - "confidence": 0.8159958720207214, + "confidence": 0.8159964680671692, "cells": [ { "index": 29, @@ -81673,7 +81673,7 @@ "b": 584.43163, "coord_origin": "TOPLEFT" }, - "confidence": 0.5808265805244446, + "confidence": 0.5808269381523132, "cells": [ { "index": 30, @@ -81962,7 +81962,7 @@ "b": 512.4328, "coord_origin": "TOPLEFT" }, - "confidence": 0.5631121397018433, + "confidence": 0.5631120204925537, "cells": [ { "index": 30, @@ -82122,7 +82122,7 @@ "b": 548.43222, "coord_origin": "TOPLEFT" }, - "confidence": 0.5346826314926147, + "confidence": 0.5346829891204834, "cells": [ { "index": 34, @@ -82162,7 +82162,7 @@ "b": 560.43202, "coord_origin": "TOPLEFT" }, - "confidence": 0.581838846206665, + "confidence": 0.5818390846252441, "cells": [ { "index": 35, @@ -82202,7 +82202,7 @@ "b": 560.43202, "coord_origin": "TOPLEFT" }, - "confidence": 0.5035740733146667, + "confidence": 0.503573477268219, "cells": [ { "index": 36, @@ -82242,7 +82242,7 @@ "b": 572.43182, "coord_origin": "TOPLEFT" }, - "confidence": 0.534027099609375, + "confidence": 0.5340273380279541, "cells": [ { "index": 37, @@ -82282,7 +82282,7 @@ "b": 572.43182, "coord_origin": "TOPLEFT" }, - "confidence": 0.5171723365783691, + "confidence": 0.5171729922294617, "cells": [ { "index": 38, @@ -82322,7 +82322,7 @@ "b": 584.43163, "coord_origin": "TOPLEFT" }, - "confidence": 0.5373470187187195, + "confidence": 0.5373476147651672, "cells": [ { "index": 39, @@ -82362,7 +82362,7 @@ "b": 584.43163, "coord_origin": "TOPLEFT" }, - "confidence": 0.5167025327682495, + "confidence": 0.51670241355896, "cells": [ { "index": 40, @@ -82481,7 +82481,7 @@ "b": 709.760956, "coord_origin": "TOPLEFT" }, - "confidence": 0.9853070974349976, + "confidence": 0.985306978225708, "cells": [ { "index": 43, @@ -82622,9 +82622,9 @@ "label": "table", "bbox": { "l": 135.52462768554688, - "t": 289.7252197265625, + "t": 289.7253112792969, "r": 545.8714599609375, - "b": 442.050537109375, + "b": 442.05059814453125, "coord_origin": "TOPLEFT" }, "confidence": 0.9851690530776978, @@ -84593,7 +84593,7 @@ "b": 106.70172000000014, "coord_origin": "TOPLEFT" }, - "confidence": 0.9551582932472229, + "confidence": 0.9551581740379333, "cells": [ { "index": 4, @@ -84760,7 +84760,7 @@ "b": 135.74108999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.9418092370033264, + "confidence": 0.9418092966079712, "cells": [ { "index": 9, @@ -85169,7 +85169,7 @@ "b": 231.34271, "coord_origin": "TOPLEFT" }, - "confidence": 0.9636710286140442, + "confidence": 0.9636709094047546, "cells": [ { "index": 22, @@ -85311,7 +85311,7 @@ "b": 287.88300000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9196999669075012, + "confidence": 0.9197001457214355, "cells": [ { "index": 26, @@ -85428,7 +85428,7 @@ "b": 494.883, "coord_origin": "TOPLEFT" }, - "confidence": 0.8159958720207214, + "confidence": 0.8159964680671692, "cells": [ { "index": 29, @@ -85474,7 +85474,7 @@ "b": 584.43163, "coord_origin": "TOPLEFT" }, - "confidence": 0.5808265805244446, + "confidence": 0.5808269381523132, "cells": [ { "index": 30, @@ -85763,7 +85763,7 @@ "b": 512.4328, "coord_origin": "TOPLEFT" }, - "confidence": 0.5631121397018433, + "confidence": 0.5631120204925537, "cells": [ { "index": 30, @@ -85923,7 +85923,7 @@ "b": 548.43222, "coord_origin": "TOPLEFT" }, - "confidence": 0.5346826314926147, + "confidence": 0.5346829891204834, "cells": [ { "index": 34, @@ -85963,7 +85963,7 @@ "b": 560.43202, "coord_origin": "TOPLEFT" }, - "confidence": 0.581838846206665, + "confidence": 0.5818390846252441, "cells": [ { "index": 35, @@ -86003,7 +86003,7 @@ "b": 560.43202, "coord_origin": "TOPLEFT" }, - "confidence": 0.5035740733146667, + "confidence": 0.503573477268219, "cells": [ { "index": 36, @@ -86043,7 +86043,7 @@ "b": 572.43182, "coord_origin": "TOPLEFT" }, - "confidence": 0.534027099609375, + "confidence": 0.5340273380279541, "cells": [ { "index": 37, @@ -86083,7 +86083,7 @@ "b": 572.43182, "coord_origin": "TOPLEFT" }, - "confidence": 0.5171723365783691, + "confidence": 0.5171729922294617, "cells": [ { "index": 38, @@ -86123,7 +86123,7 @@ "b": 584.43163, "coord_origin": "TOPLEFT" }, - "confidence": 0.5373470187187195, + "confidence": 0.5373476147651672, "cells": [ { "index": 39, @@ -86163,7 +86163,7 @@ "b": 584.43163, "coord_origin": "TOPLEFT" }, - "confidence": 0.5167025327682495, + "confidence": 0.51670241355896, "cells": [ { "index": 40, @@ -86282,7 +86282,7 @@ "b": 709.760956, "coord_origin": "TOPLEFT" }, - "confidence": 0.9853070974349976, + "confidence": 0.985306978225708, "cells": [ { "index": 43, @@ -86423,9 +86423,9 @@ "label": "table", "bbox": { "l": 135.52462768554688, - "t": 289.7252197265625, + "t": 289.7253112792969, "r": 545.8714599609375, - "b": 442.050537109375, + "b": 442.05059814453125, "coord_origin": "TOPLEFT" }, "confidence": 0.9851690530776978, @@ -88323,7 +88323,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9166396856307983, + "confidence": 0.9166395664215088, "cells": [ { "index": 0, @@ -90401,7 +90401,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9508126378059387, + "confidence": 0.9508126974105835, "cells": [ { "index": 0, @@ -90441,7 +90441,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.8987301588058472, + "confidence": 0.898730456829071, "cells": [ { "index": 1, @@ -90481,7 +90481,7 @@ "b": 140.72113000000002, "coord_origin": "TOPLEFT" }, - "confidence": 0.9789126515388489, + "confidence": 0.9789127707481384, "cells": [ { "index": 2, @@ -90646,7 +90646,7 @@ "b": 198.74017000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.9665538668632507, + "confidence": 0.9665539860725403, "cells": [ { "index": 8, @@ -90761,7 +90761,7 @@ "b": 232.69976999999994, "coord_origin": "TOPLEFT" }, - "confidence": 0.9691813588142395, + "confidence": 0.969181478023529, "cells": [ { "index": 12, @@ -90826,7 +90826,7 @@ "b": 278.71898999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9729602336883545, + "confidence": 0.9729602932929993, "cells": [ { "index": 14, @@ -91131,7 +91131,7 @@ "label": "table", "bbox": { "l": 64.41139221191406, - "t": 393.6136169433594, + "t": 393.6136474609375, "r": 547.3950805664062, "b": 721.60791015625, "coord_origin": "TOPLEFT" @@ -94730,7 +94730,7 @@ "label": "table", "bbox": { "l": 64.41139221191406, - "t": 393.6136169433594, + "t": 393.6136474609375, "r": 547.3950805664062, "b": 721.60791015625, "coord_origin": "TOPLEFT" @@ -99330,7 +99330,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9508126378059387, + "confidence": 0.9508126974105835, "cells": [ { "index": 0, @@ -99376,7 +99376,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.8987301588058472, + "confidence": 0.898730456829071, "cells": [ { "index": 1, @@ -99422,7 +99422,7 @@ "b": 140.72113000000002, "coord_origin": "TOPLEFT" }, - "confidence": 0.9789126515388489, + "confidence": 0.9789127707481384, "cells": [ { "index": 2, @@ -99593,7 +99593,7 @@ "b": 198.74017000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.9665538668632507, + "confidence": 0.9665539860725403, "cells": [ { "index": 8, @@ -99714,7 +99714,7 @@ "b": 232.69976999999994, "coord_origin": "TOPLEFT" }, - "confidence": 0.9691813588142395, + "confidence": 0.969181478023529, "cells": [ { "index": 12, @@ -99785,7 +99785,7 @@ "b": 278.71898999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9729602336883545, + "confidence": 0.9729602932929993, "cells": [ { "index": 14, @@ -100114,7 +100114,7 @@ "label": "table", "bbox": { "l": 64.41139221191406, - "t": 393.6136169433594, + "t": 393.6136474609375, "r": 547.3950805664062, "b": 721.60791015625, "coord_origin": "TOPLEFT" @@ -104708,7 +104708,7 @@ "b": 140.72113000000002, "coord_origin": "TOPLEFT" }, - "confidence": 0.9789126515388489, + "confidence": 0.9789127707481384, "cells": [ { "index": 2, @@ -104879,7 +104879,7 @@ "b": 198.74017000000003, "coord_origin": "TOPLEFT" }, - "confidence": 0.9665538668632507, + "confidence": 0.9665539860725403, "cells": [ { "index": 8, @@ -105000,7 +105000,7 @@ "b": 232.69976999999994, "coord_origin": "TOPLEFT" }, - "confidence": 0.9691813588142395, + "confidence": 0.969181478023529, "cells": [ { "index": 12, @@ -105071,7 +105071,7 @@ "b": 278.71898999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.9729602336883545, + "confidence": 0.9729602932929993, "cells": [ { "index": 14, @@ -105400,7 +105400,7 @@ "label": "table", "bbox": { "l": 64.41139221191406, - "t": 393.6136169433594, + "t": 393.6136474609375, "r": 547.3950805664062, "b": 721.60791015625, "coord_origin": "TOPLEFT" @@ -109994,7 +109994,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9508126378059387, + "confidence": 0.9508126974105835, "cells": [ { "index": 0, @@ -110040,7 +110040,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.8987301588058472, + "confidence": 0.898730456829071, "cells": [ { "index": 1, @@ -111637,7 +111637,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9071078896522522, + "confidence": 0.907107949256897, "cells": [ { "index": 1, @@ -111677,7 +111677,7 @@ "b": 92.72185999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.872844398021698, + "confidence": 0.872843861579895, "cells": [ { "index": 2, @@ -111792,7 +111792,7 @@ "b": 422.46301, "coord_origin": "TOPLEFT" }, - "confidence": 0.938783586025238, + "confidence": 0.9387835264205933, "cells": [ { "index": 6, @@ -111832,7 +111832,7 @@ "b": 451.04401, "coord_origin": "TOPLEFT" }, - "confidence": 0.9477567076683044, + "confidence": 0.9477565884590149, "cells": [ { "index": 7, @@ -111872,7 +111872,7 @@ "b": 500.30115, "coord_origin": "TOPLEFT" }, - "confidence": 0.9843975901603699, + "confidence": 0.9843974709510803, "cells": [ { "index": 8, @@ -111982,12 +111982,12 @@ "label": "picture", "bbox": { "l": 135.97177124023438, - "t": 107.41075134277344, + "t": 107.4107437133789, "r": 545.4180908203125, "b": 410.60931396484375, "coord_origin": "TOPLEFT" }, - "confidence": 0.9788318872451782, + "confidence": 0.9788317680358887, "cells": [ { "index": 12, @@ -115184,7 +115184,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9071078896522522, + "confidence": 0.907107949256897, "cells": [ { "index": 1, @@ -115230,7 +115230,7 @@ "b": 92.72185999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.872844398021698, + "confidence": 0.872843861579895, "cells": [ { "index": 2, @@ -115351,7 +115351,7 @@ "b": 422.46301, "coord_origin": "TOPLEFT" }, - "confidence": 0.938783586025238, + "confidence": 0.9387835264205933, "cells": [ { "index": 6, @@ -115397,7 +115397,7 @@ "b": 451.04401, "coord_origin": "TOPLEFT" }, - "confidence": 0.9477567076683044, + "confidence": 0.9477565884590149, "cells": [ { "index": 7, @@ -115443,7 +115443,7 @@ "b": 500.30115, "coord_origin": "TOPLEFT" }, - "confidence": 0.9843975901603699, + "confidence": 0.9843974709510803, "cells": [ { "index": 8, @@ -115559,12 +115559,12 @@ "label": "picture", "bbox": { "l": 135.97177124023438, - "t": 107.41075134277344, + "t": 107.4107437133789, "r": 545.4180908203125, "b": 410.60931396484375, "coord_origin": "TOPLEFT" }, - "confidence": 0.9788318872451782, + "confidence": 0.9788317680358887, "cells": [ { "index": 12, @@ -118712,7 +118712,7 @@ "b": 92.72185999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.872844398021698, + "confidence": 0.872843861579895, "cells": [ { "index": 2, @@ -118833,7 +118833,7 @@ "b": 422.46301, "coord_origin": "TOPLEFT" }, - "confidence": 0.938783586025238, + "confidence": 0.9387835264205933, "cells": [ { "index": 6, @@ -118879,7 +118879,7 @@ "b": 451.04401, "coord_origin": "TOPLEFT" }, - "confidence": 0.9477567076683044, + "confidence": 0.9477565884590149, "cells": [ { "index": 7, @@ -118925,7 +118925,7 @@ "b": 500.30115, "coord_origin": "TOPLEFT" }, - "confidence": 0.9843975901603699, + "confidence": 0.9843974709510803, "cells": [ { "index": 8, @@ -119041,12 +119041,12 @@ "label": "picture", "bbox": { "l": 135.97177124023438, - "t": 107.41075134277344, + "t": 107.4107437133789, "r": 545.4180908203125, "b": 410.60931396484375, "coord_origin": "TOPLEFT" }, - "confidence": 0.9788318872451782, + "confidence": 0.9788317680358887, "cells": [ { "index": 12, @@ -122240,7 +122240,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9071078896522522, + "confidence": 0.907107949256897, "cells": [ { "index": 1, @@ -123652,7 +123652,7 @@ "b": 80.72204999999985, "coord_origin": "TOPLEFT" }, - "confidence": 0.7875156402587891, + "confidence": 0.7875155806541443, "cells": [ { "index": 2, @@ -123732,7 +123732,7 @@ "b": 235.70154000000002, "coord_origin": "TOPLEFT" }, - "confidence": 0.9466660022735596, + "confidence": 0.94666588306427, "cells": [ { "index": 4, @@ -123862,7 +123862,7 @@ "b": 269.72089000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9445974230766296, + "confidence": 0.9445973038673401, "cells": [ { "index": 8, @@ -124132,7 +124132,7 @@ "b": 368.71933000000007, "coord_origin": "TOPLEFT" }, - "confidence": 0.9748278260231018, + "confidence": 0.9748277068138123, "cells": [ { "index": 17, @@ -124222,7 +124222,7 @@ "b": 605.04291, "coord_origin": "TOPLEFT" }, - "confidence": 0.9274530410766602, + "confidence": 0.9274529814720154, "cells": [ { "index": 20, @@ -124482,7 +124482,7 @@ "b": 204.2716064453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.9731299877166748, + "confidence": 0.9731298685073853, "cells": [ { "index": 28, @@ -125142,13 +125142,13 @@ "id": 16, "label": "picture", "bbox": { - "l": 135.64837646484375, - "t": 384.1737060546875, - "r": 301.2367248535156, + "l": 135.64834594726562, + "t": 384.1736755371094, + "r": 301.23675537109375, "b": 594.7566528320312, "coord_origin": "TOPLEFT" }, - "confidence": 0.7221468687057495, + "confidence": 0.7221470475196838, "cells": [ { "index": 38, @@ -125487,7 +125487,7 @@ "b": 395.49527, "coord_origin": "TOPLEFT" }, - "confidence": 0.7616674304008484, + "confidence": 0.7616671323776245, "cells": [ { "index": 38, @@ -125592,7 +125592,7 @@ "b": 431.33008, "coord_origin": "TOPLEFT" }, - "confidence": 0.5213791728019714, + "confidence": 0.5213785767555237, "cells": [ { "index": 41, @@ -125672,7 +125672,7 @@ "b": 482.09598, "coord_origin": "TOPLEFT" }, - "confidence": 0.5759297609329224, + "confidence": 0.5759296417236328, "cells": [ { "index": 43, @@ -125897,7 +125897,7 @@ "b": 586.61409, "coord_origin": "TOPLEFT" }, - "confidence": 0.5024971961975098, + "confidence": 0.5024963617324829, "cells": [ { "index": 49, @@ -125972,7 +125972,7 @@ "b": 204.2716064453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.9731299877166748, + "confidence": 0.9731298685073853, "cells": [ { "index": 28, @@ -126914,7 +126914,7 @@ "b": 80.72204999999985, "coord_origin": "TOPLEFT" }, - "confidence": 0.7875156402587891, + "confidence": 0.7875155806541443, "cells": [ { "index": 2, @@ -127006,7 +127006,7 @@ "b": 235.70154000000002, "coord_origin": "TOPLEFT" }, - "confidence": 0.9466660022735596, + "confidence": 0.94666588306427, "cells": [ { "index": 4, @@ -127148,7 +127148,7 @@ "b": 269.72089000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9445974230766296, + "confidence": 0.9445973038673401, "cells": [ { "index": 8, @@ -127436,7 +127436,7 @@ "b": 368.71933000000007, "coord_origin": "TOPLEFT" }, - "confidence": 0.9748278260231018, + "confidence": 0.9748277068138123, "cells": [ { "index": 17, @@ -127532,7 +127532,7 @@ "b": 605.04291, "coord_origin": "TOPLEFT" }, - "confidence": 0.9274530410766602, + "confidence": 0.9274529814720154, "cells": [ { "index": 20, @@ -127816,7 +127816,7 @@ "b": 204.2716064453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.9731299877166748, + "confidence": 0.9731298685073853, "cells": [ { "index": 28, @@ -128652,13 +128652,13 @@ "id": 16, "label": "picture", "bbox": { - "l": 135.64837646484375, - "t": 384.1737060546875, - "r": 301.2367248535156, + "l": 135.64834594726562, + "t": 384.1736755371094, + "r": 301.23675537109375, "b": 594.7566528320312, "coord_origin": "TOPLEFT" }, - "confidence": 0.7221468687057495, + "confidence": 0.7221470475196838, "cells": [ { "index": 38, @@ -128997,7 +128997,7 @@ "b": 395.49527, "coord_origin": "TOPLEFT" }, - "confidence": 0.7616674304008484, + "confidence": 0.7616671323776245, "cells": [ { "index": 38, @@ -129102,7 +129102,7 @@ "b": 431.33008, "coord_origin": "TOPLEFT" }, - "confidence": 0.5213791728019714, + "confidence": 0.5213785767555237, "cells": [ { "index": 41, @@ -129182,7 +129182,7 @@ "b": 482.09598, "coord_origin": "TOPLEFT" }, - "confidence": 0.5759297609329224, + "confidence": 0.5759296417236328, "cells": [ { "index": 43, @@ -129407,7 +129407,7 @@ "b": 586.61409, "coord_origin": "TOPLEFT" }, - "confidence": 0.5024971961975098, + "confidence": 0.5024963617324829, "cells": [ { "index": 49, @@ -129486,7 +129486,7 @@ "b": 80.72204999999985, "coord_origin": "TOPLEFT" }, - "confidence": 0.7875156402587891, + "confidence": 0.7875155806541443, "cells": [ { "index": 2, @@ -129578,7 +129578,7 @@ "b": 235.70154000000002, "coord_origin": "TOPLEFT" }, - "confidence": 0.9466660022735596, + "confidence": 0.94666588306427, "cells": [ { "index": 4, @@ -129720,7 +129720,7 @@ "b": 269.72089000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9445974230766296, + "confidence": 0.9445973038673401, "cells": [ { "index": 8, @@ -130008,7 +130008,7 @@ "b": 368.71933000000007, "coord_origin": "TOPLEFT" }, - "confidence": 0.9748278260231018, + "confidence": 0.9748277068138123, "cells": [ { "index": 17, @@ -130104,7 +130104,7 @@ "b": 605.04291, "coord_origin": "TOPLEFT" }, - "confidence": 0.9274530410766602, + "confidence": 0.9274529814720154, "cells": [ { "index": 20, @@ -130388,7 +130388,7 @@ "b": 204.2716064453125, "coord_origin": "TOPLEFT" }, - "confidence": 0.9731299877166748, + "confidence": 0.9731298685073853, "cells": [ { "index": 28, @@ -131224,13 +131224,13 @@ "id": 16, "label": "picture", "bbox": { - "l": 135.64837646484375, - "t": 384.1737060546875, - "r": 301.2367248535156, + "l": 135.64834594726562, + "t": 384.1736755371094, + "r": 301.23675537109375, "b": 594.7566528320312, "coord_origin": "TOPLEFT" }, - "confidence": 0.7221468687057495, + "confidence": 0.7221470475196838, "cells": [ { "index": 38, @@ -131569,7 +131569,7 @@ "b": 395.49527, "coord_origin": "TOPLEFT" }, - "confidence": 0.7616674304008484, + "confidence": 0.7616671323776245, "cells": [ { "index": 38, @@ -131674,7 +131674,7 @@ "b": 431.33008, "coord_origin": "TOPLEFT" }, - "confidence": 0.5213791728019714, + "confidence": 0.5213785767555237, "cells": [ { "index": 41, @@ -131754,7 +131754,7 @@ "b": 482.09598, "coord_origin": "TOPLEFT" }, - "confidence": 0.5759297609329224, + "confidence": 0.5759296417236328, "cells": [ { "index": 43, @@ -131979,7 +131979,7 @@ "b": 586.61409, "coord_origin": "TOPLEFT" }, - "confidence": 0.5024971961975098, + "confidence": 0.5024963617324829, "cells": [ { "index": 49, @@ -133676,7 +133676,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9505079388618469, + "confidence": 0.9505080580711365, "cells": [ { "index": 1, @@ -133716,7 +133716,7 @@ "b": 80.72167999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.8370978832244873, + "confidence": 0.8370987772941589, "cells": [ { "index": 2, @@ -133756,7 +133756,7 @@ "b": 101.82299999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.913235604763031, + "confidence": 0.9132358431816101, "cells": [ { "index": 3, @@ -133796,7 +133796,7 @@ "b": 336.96371000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9645338654518127, + "confidence": 0.9645339846611023, "cells": [ { "index": 4, @@ -134051,7 +134051,7 @@ "b": 481.70004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9807308912277222, + "confidence": 0.9807307720184326, "cells": [ { "index": 13, @@ -134141,7 +134141,7 @@ "b": 503.7196, "coord_origin": "TOPLEFT" }, - "confidence": 0.9237529635429382, + "confidence": 0.9237534403800964, "cells": [ { "index": 16, @@ -134246,7 +134246,7 @@ "b": 537.739, "coord_origin": "TOPLEFT" }, - "confidence": 0.9514460563659668, + "confidence": 0.9514461755752563, "cells": [ { "index": 19, @@ -134311,7 +134311,7 @@ "b": 566.71861, "coord_origin": "TOPLEFT" }, - "confidence": 0.951230525970459, + "confidence": 0.9512304067611694, "cells": [ { "index": 21, @@ -134401,7 +134401,7 @@ "b": 641.4285600000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.7066455483436584, + "confidence": 0.7066511511802673, "cells": [ { "index": 24, @@ -134535,7 +134535,7 @@ "id": 0, "label": "table", "bbox": { - "l": 63.55636978149414, + "l": 63.55635070800781, "t": 104.23387145996094, "r": 548.5687255859375, "b": 296.22467041015625, @@ -136509,7 +136509,7 @@ "id": 0, "label": "table", "bbox": { - "l": 63.55636978149414, + "l": 63.55635070800781, "t": 104.23387145996094, "r": 548.5687255859375, "b": 296.22467041015625, @@ -139157,7 +139157,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9505079388618469, + "confidence": 0.9505080580711365, "cells": [ { "index": 1, @@ -139203,7 +139203,7 @@ "b": 80.72167999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.8370978832244873, + "confidence": 0.8370987772941589, "cells": [ { "index": 2, @@ -139249,7 +139249,7 @@ "b": 101.82299999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.913235604763031, + "confidence": 0.9132358431816101, "cells": [ { "index": 3, @@ -139295,7 +139295,7 @@ "b": 336.96371000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9645338654518127, + "confidence": 0.9645339846611023, "cells": [ { "index": 4, @@ -139562,7 +139562,7 @@ "b": 481.70004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9807308912277222, + "confidence": 0.9807307720184326, "cells": [ { "index": 13, @@ -139658,7 +139658,7 @@ "b": 503.7196, "coord_origin": "TOPLEFT" }, - "confidence": 0.9237529635429382, + "confidence": 0.9237534403800964, "cells": [ { "index": 16, @@ -139775,7 +139775,7 @@ "b": 537.739, "coord_origin": "TOPLEFT" }, - "confidence": 0.9514460563659668, + "confidence": 0.9514461755752563, "cells": [ { "index": 19, @@ -139846,7 +139846,7 @@ "b": 566.71861, "coord_origin": "TOPLEFT" }, - "confidence": 0.951230525970459, + "confidence": 0.9512304067611694, "cells": [ { "index": 21, @@ -139942,7 +139942,7 @@ "b": 641.4285600000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.7066455483436584, + "confidence": 0.7066511511802673, "cells": [ { "index": 24, @@ -140082,7 +140082,7 @@ "id": 0, "label": "table", "bbox": { - "l": 63.55636978149414, + "l": 63.55635070800781, "t": 104.23387145996094, "r": 548.5687255859375, "b": 296.22467041015625, @@ -142678,7 +142678,7 @@ "b": 80.72167999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.8370978832244873, + "confidence": 0.8370987772941589, "cells": [ { "index": 2, @@ -142724,7 +142724,7 @@ "b": 101.82299999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.913235604763031, + "confidence": 0.9132358431816101, "cells": [ { "index": 3, @@ -142770,7 +142770,7 @@ "b": 336.96371000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9645338654518127, + "confidence": 0.9645339846611023, "cells": [ { "index": 4, @@ -143037,7 +143037,7 @@ "b": 481.70004, "coord_origin": "TOPLEFT" }, - "confidence": 0.9807308912277222, + "confidence": 0.9807307720184326, "cells": [ { "index": 13, @@ -143133,7 +143133,7 @@ "b": 503.7196, "coord_origin": "TOPLEFT" }, - "confidence": 0.9237529635429382, + "confidence": 0.9237534403800964, "cells": [ { "index": 16, @@ -143250,7 +143250,7 @@ "b": 537.739, "coord_origin": "TOPLEFT" }, - "confidence": 0.9514460563659668, + "confidence": 0.9514461755752563, "cells": [ { "index": 19, @@ -143321,7 +143321,7 @@ "b": 566.71861, "coord_origin": "TOPLEFT" }, - "confidence": 0.951230525970459, + "confidence": 0.9512304067611694, "cells": [ { "index": 21, @@ -143417,7 +143417,7 @@ "b": 641.4285600000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.7066455483436584, + "confidence": 0.7066511511802673, "cells": [ { "index": 24, @@ -143557,7 +143557,7 @@ "id": 0, "label": "table", "bbox": { - "l": 63.55636978149414, + "l": 63.55635070800781, "t": 104.23387145996094, "r": 548.5687255859375, "b": 296.22467041015625, @@ -146199,7 +146199,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9505079388618469, + "confidence": 0.9505080580711365, "cells": [ { "index": 1, @@ -147621,7 +147621,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9105783104896545, + "confidence": 0.9105784296989441, "cells": [ { "index": 1, @@ -147661,7 +147661,7 @@ "b": 80.43322999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.5606335997581482, + "confidence": 0.5606338381767273, "cells": [ { "index": 2, @@ -147701,7 +147701,7 @@ "b": 92.43304, "coord_origin": "TOPLEFT" }, - "confidence": 0.589726984500885, + "confidence": 0.5897274613380432, "cells": [ { "index": 3, @@ -147741,7 +147741,7 @@ "b": 260.43048, "coord_origin": "TOPLEFT" }, - "confidence": 0.778521716594696, + "confidence": 0.7785214185714722, "cells": [ { "index": 4, @@ -148106,7 +148106,7 @@ "b": 296.71871999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.8678942918777466, + "confidence": 0.8678945899009705, "cells": [ { "index": 18, @@ -148326,7 +148326,7 @@ "b": 359.71771, "coord_origin": "TOPLEFT" }, - "confidence": 0.9705166220664978, + "confidence": 0.9705167412757874, "cells": [ { "index": 25, @@ -148416,7 +148416,7 @@ "b": 376.6975100000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9469642639160156, + "confidence": 0.9469640254974365, "cells": [ { "index": 28, @@ -148481,7 +148481,7 @@ "b": 393.73709, "coord_origin": "TOPLEFT" }, - "confidence": 0.7003502249717712, + "confidence": 0.7003504037857056, "cells": [ { "index": 30, @@ -148521,7 +148521,7 @@ "b": 414.84302, "coord_origin": "TOPLEFT" }, - "confidence": 0.8488203287124634, + "confidence": 0.8488209247589111, "cells": [ { "index": 31, @@ -148561,7 +148561,7 @@ "b": 684.44884, "coord_origin": "TOPLEFT" }, - "confidence": 0.8411229252815247, + "confidence": 0.8411226868629456, "cells": [ { "index": 32, @@ -149162,7 +149162,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9105783104896545, + "confidence": 0.9105784296989441, "cells": [ { "index": 1, @@ -149208,7 +149208,7 @@ "b": 80.43322999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.5606335997581482, + "confidence": 0.5606338381767273, "cells": [ { "index": 2, @@ -149254,7 +149254,7 @@ "b": 92.43304, "coord_origin": "TOPLEFT" }, - "confidence": 0.589726984500885, + "confidence": 0.5897274613380432, "cells": [ { "index": 3, @@ -149300,7 +149300,7 @@ "b": 260.43048, "coord_origin": "TOPLEFT" }, - "confidence": 0.778521716594696, + "confidence": 0.7785214185714722, "cells": [ { "index": 4, @@ -149671,7 +149671,7 @@ "b": 296.71871999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.8678942918777466, + "confidence": 0.8678945899009705, "cells": [ { "index": 18, @@ -149909,7 +149909,7 @@ "b": 359.71771, "coord_origin": "TOPLEFT" }, - "confidence": 0.9705166220664978, + "confidence": 0.9705167412757874, "cells": [ { "index": 25, @@ -150005,7 +150005,7 @@ "b": 376.6975100000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9469642639160156, + "confidence": 0.9469640254974365, "cells": [ { "index": 28, @@ -150076,7 +150076,7 @@ "b": 393.73709, "coord_origin": "TOPLEFT" }, - "confidence": 0.7003502249717712, + "confidence": 0.7003504037857056, "cells": [ { "index": 30, @@ -150122,7 +150122,7 @@ "b": 414.84302, "coord_origin": "TOPLEFT" }, - "confidence": 0.8488203287124634, + "confidence": 0.8488209247589111, "cells": [ { "index": 31, @@ -150168,7 +150168,7 @@ "b": 684.44884, "coord_origin": "TOPLEFT" }, - "confidence": 0.8411229252815247, + "confidence": 0.8411226868629456, "cells": [ { "index": 32, @@ -150716,7 +150716,7 @@ "b": 80.43322999999998, "coord_origin": "TOPLEFT" }, - "confidence": 0.5606335997581482, + "confidence": 0.5606338381767273, "cells": [ { "index": 2, @@ -150762,7 +150762,7 @@ "b": 92.43304, "coord_origin": "TOPLEFT" }, - "confidence": 0.589726984500885, + "confidence": 0.5897274613380432, "cells": [ { "index": 3, @@ -150808,7 +150808,7 @@ "b": 260.43048, "coord_origin": "TOPLEFT" }, - "confidence": 0.778521716594696, + "confidence": 0.7785214185714722, "cells": [ { "index": 4, @@ -151179,7 +151179,7 @@ "b": 296.71871999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.8678942918777466, + "confidence": 0.8678945899009705, "cells": [ { "index": 18, @@ -151417,7 +151417,7 @@ "b": 359.71771, "coord_origin": "TOPLEFT" }, - "confidence": 0.9705166220664978, + "confidence": 0.9705167412757874, "cells": [ { "index": 25, @@ -151513,7 +151513,7 @@ "b": 376.6975100000001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9469642639160156, + "confidence": 0.9469640254974365, "cells": [ { "index": 28, @@ -151584,7 +151584,7 @@ "b": 393.73709, "coord_origin": "TOPLEFT" }, - "confidence": 0.7003502249717712, + "confidence": 0.7003504037857056, "cells": [ { "index": 30, @@ -151630,7 +151630,7 @@ "b": 414.84302, "coord_origin": "TOPLEFT" }, - "confidence": 0.8488203287124634, + "confidence": 0.8488209247589111, "cells": [ { "index": 31, @@ -151676,7 +151676,7 @@ "b": 684.44884, "coord_origin": "TOPLEFT" }, - "confidence": 0.8411229252815247, + "confidence": 0.8411226868629456, "cells": [ { "index": 32, @@ -152270,7 +152270,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9105783104896545, + "confidence": 0.9105784296989441, "cells": [ { "index": 1, @@ -153202,7 +153202,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9161998629570007, + "confidence": 0.9161999821662903, "cells": [ { "index": 0, @@ -153242,7 +153242,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9540064334869385, + "confidence": 0.9540063142776489, "cells": [ { "index": 1, @@ -153282,7 +153282,7 @@ "b": 80.72167999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.8751048445701599, + "confidence": 0.8751050233840942, "cells": [ { "index": 2, @@ -153387,7 +153387,7 @@ "b": 214.36273000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.9645015001296997, + "confidence": 0.9645013809204102, "cells": [ { "index": 5, @@ -153542,7 +153542,7 @@ "b": 278.72113, "coord_origin": "TOPLEFT" }, - "confidence": 0.9059441685676575, + "confidence": 0.9059439301490784, "cells": [ { "index": 10, @@ -153607,7 +153607,7 @@ "b": 299.88300000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.657009482383728, + "confidence": 0.657010018825531, "cells": [ { "index": 12, @@ -153712,7 +153712,7 @@ "b": 329.43271, "coord_origin": "TOPLEFT" }, - "confidence": 0.598584771156311, + "confidence": 0.5985845923423767, "cells": [ { "index": 15, @@ -153937,7 +153937,7 @@ "b": 413.72021, "coord_origin": "TOPLEFT" }, - "confidence": 0.9449257850646973, + "confidence": 0.9449256062507629, "cells": [ { "index": 21, @@ -154277,7 +154277,7 @@ "b": 657.3629, "coord_origin": "TOPLEFT" }, - "confidence": 0.9499983787536621, + "confidence": 0.9499982595443726, "cells": [ { "index": 34, @@ -154311,13 +154311,13 @@ "id": 3, "label": "picture", "bbox": { - "l": 63.801902770996094, - "t": 95.38241577148438, - "r": 547.11474609375, - "b": 170.0321502685547, + "l": 63.80195617675781, + "t": 95.38239288330078, + "r": 547.1146850585938, + "b": 170.03208923339844, "coord_origin": "TOPLEFT" }, - "confidence": 0.9635388851165771, + "confidence": 0.9635390043258667, "cells": [], "children": [] }, @@ -154325,7 +154325,7 @@ "id": 0, "label": "picture", "bbox": { - "l": 63.985130310058594, + "l": 63.9850959777832, "t": 427.90496826171875, "r": 530.0478515625, "b": 646.1396484375, @@ -154360,7 +154360,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9161998629570007, + "confidence": 0.9161999821662903, "cells": [ { "index": 0, @@ -154406,7 +154406,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9540064334869385, + "confidence": 0.9540063142776489, "cells": [ { "index": 1, @@ -154452,7 +154452,7 @@ "b": 80.72167999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.8751048445701599, + "confidence": 0.8751050233840942, "cells": [ { "index": 2, @@ -154569,7 +154569,7 @@ "b": 214.36273000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.9645015001296997, + "confidence": 0.9645013809204102, "cells": [ { "index": 5, @@ -154736,7 +154736,7 @@ "b": 278.72113, "coord_origin": "TOPLEFT" }, - "confidence": 0.9059441685676575, + "confidence": 0.9059439301490784, "cells": [ { "index": 10, @@ -154807,7 +154807,7 @@ "b": 299.88300000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.657009482383728, + "confidence": 0.657010018825531, "cells": [ { "index": 12, @@ -154924,7 +154924,7 @@ "b": 329.43271, "coord_origin": "TOPLEFT" }, - "confidence": 0.598584771156311, + "confidence": 0.5985845923423767, "cells": [ { "index": 15, @@ -155179,7 +155179,7 @@ "b": 413.72021, "coord_origin": "TOPLEFT" }, - "confidence": 0.9449257850646973, + "confidence": 0.9449256062507629, "cells": [ { "index": 21, @@ -155525,7 +155525,7 @@ "b": 657.3629, "coord_origin": "TOPLEFT" }, - "confidence": 0.9499983787536621, + "confidence": 0.9499982595443726, "cells": [ { "index": 34, @@ -155565,13 +155565,13 @@ "id": 3, "label": "picture", "bbox": { - "l": 63.801902770996094, - "t": 95.38241577148438, - "r": 547.11474609375, - "b": 170.0321502685547, + "l": 63.80195617675781, + "t": 95.38239288330078, + "r": 547.1146850585938, + "b": 170.03208923339844, "coord_origin": "TOPLEFT" }, - "confidence": 0.9635388851165771, + "confidence": 0.9635390043258667, "cells": [], "children": [] }, @@ -155589,7 +155589,7 @@ "id": 0, "label": "picture", "bbox": { - "l": 63.985130310058594, + "l": 63.9850959777832, "t": 427.90496826171875, "r": 530.0478515625, "b": 646.1396484375, @@ -155621,7 +155621,7 @@ "b": 80.72167999999999, "coord_origin": "TOPLEFT" }, - "confidence": 0.8751048445701599, + "confidence": 0.8751050233840942, "cells": [ { "index": 2, @@ -155738,7 +155738,7 @@ "b": 214.36273000000006, "coord_origin": "TOPLEFT" }, - "confidence": 0.9645015001296997, + "confidence": 0.9645013809204102, "cells": [ { "index": 5, @@ -155905,7 +155905,7 @@ "b": 278.72113, "coord_origin": "TOPLEFT" }, - "confidence": 0.9059441685676575, + "confidence": 0.9059439301490784, "cells": [ { "index": 10, @@ -155976,7 +155976,7 @@ "b": 299.88300000000004, "coord_origin": "TOPLEFT" }, - "confidence": 0.657009482383728, + "confidence": 0.657010018825531, "cells": [ { "index": 12, @@ -156093,7 +156093,7 @@ "b": 329.43271, "coord_origin": "TOPLEFT" }, - "confidence": 0.598584771156311, + "confidence": 0.5985845923423767, "cells": [ { "index": 15, @@ -156348,7 +156348,7 @@ "b": 413.72021, "coord_origin": "TOPLEFT" }, - "confidence": 0.9449257850646973, + "confidence": 0.9449256062507629, "cells": [ { "index": 21, @@ -156694,7 +156694,7 @@ "b": 657.3629, "coord_origin": "TOPLEFT" }, - "confidence": 0.9499983787536621, + "confidence": 0.9499982595443726, "cells": [ { "index": 34, @@ -156734,13 +156734,13 @@ "id": 3, "label": "picture", "bbox": { - "l": 63.801902770996094, - "t": 95.38241577148438, - "r": 547.11474609375, - "b": 170.0321502685547, + "l": 63.80195617675781, + "t": 95.38239288330078, + "r": 547.1146850585938, + "b": 170.03208923339844, "coord_origin": "TOPLEFT" }, - "confidence": 0.9635388851165771, + "confidence": 0.9635390043258667, "cells": [], "children": [] }, @@ -156758,7 +156758,7 @@ "id": 0, "label": "picture", "bbox": { - "l": 63.985130310058594, + "l": 63.9850959777832, "t": 427.90496826171875, "r": 530.0478515625, "b": 646.1396484375, @@ -156790,7 +156790,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9161998629570007, + "confidence": 0.9161999821662903, "cells": [ { "index": 0, @@ -156836,7 +156836,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.9540064334869385, + "confidence": 0.9540063142776489, "cells": [ { "index": 1, @@ -157243,7 +157243,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.95576012134552, + "confidence": 0.9557602405548096, "cells": [ { "index": 0, @@ -157283,7 +157283,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9056528806686401, + "confidence": 0.9056527614593506, "cells": [ { "index": 1, @@ -157488,7 +157488,7 @@ "b": 488.883, "coord_origin": "TOPLEFT" }, - "confidence": 0.9529654383659363, + "confidence": 0.9529653191566467, "cells": [ { "index": 8, @@ -157528,7 +157528,7 @@ "b": 539.78125, "coord_origin": "TOPLEFT" }, - "confidence": 0.9766736626625061, + "confidence": 0.9766737818717957, "cells": [ { "index": 9, @@ -157643,7 +157643,7 @@ "b": 675.8429, "coord_origin": "TOPLEFT" }, - "confidence": 0.9514285922050476, + "confidence": 0.9514287114143372, "cells": [ { "index": 13, @@ -157678,9 +157678,9 @@ "label": "picture", "bbox": { "l": 136.5016632080078, - "t": 119.2491226196289, + "t": 119.24909210205078, "r": 545.4508666992188, - "b": 477.5412292480469, + "b": 477.54119873046875, "coord_origin": "TOPLEFT" }, "confidence": 0.9864527583122253, @@ -157726,7 +157726,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.95576012134552, + "confidence": 0.9557602405548096, "cells": [ { "index": 0, @@ -157772,7 +157772,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9056528806686401, + "confidence": 0.9056527614593506, "cells": [ { "index": 1, @@ -157989,7 +157989,7 @@ "b": 488.883, "coord_origin": "TOPLEFT" }, - "confidence": 0.9529654383659363, + "confidence": 0.9529653191566467, "cells": [ { "index": 8, @@ -158035,7 +158035,7 @@ "b": 539.78125, "coord_origin": "TOPLEFT" }, - "confidence": 0.9766736626625061, + "confidence": 0.9766737818717957, "cells": [ { "index": 9, @@ -158156,7 +158156,7 @@ "b": 675.8429, "coord_origin": "TOPLEFT" }, - "confidence": 0.9514285922050476, + "confidence": 0.9514287114143372, "cells": [ { "index": 13, @@ -158197,9 +158197,9 @@ "label": "picture", "bbox": { "l": 136.5016632080078, - "t": 119.2491226196289, + "t": 119.24909210205078, "r": 545.4508666992188, - "b": 477.5412292480469, + "b": 477.54119873046875, "coord_origin": "TOPLEFT" }, "confidence": 0.9864527583122253, @@ -158423,7 +158423,7 @@ "b": 488.883, "coord_origin": "TOPLEFT" }, - "confidence": 0.9529654383659363, + "confidence": 0.9529653191566467, "cells": [ { "index": 8, @@ -158469,7 +158469,7 @@ "b": 539.78125, "coord_origin": "TOPLEFT" }, - "confidence": 0.9766736626625061, + "confidence": 0.9766737818717957, "cells": [ { "index": 9, @@ -158590,7 +158590,7 @@ "b": 675.8429, "coord_origin": "TOPLEFT" }, - "confidence": 0.9514285922050476, + "confidence": 0.9514287114143372, "cells": [ { "index": 13, @@ -158631,9 +158631,9 @@ "label": "picture", "bbox": { "l": 136.5016632080078, - "t": 119.2491226196289, + "t": 119.24909210205078, "r": 545.4508666992188, - "b": 477.5412292480469, + "b": 477.54119873046875, "coord_origin": "TOPLEFT" }, "confidence": 0.9864527583122253, @@ -158686,7 +158686,7 @@ "b": 763.863001, "coord_origin": "TOPLEFT" }, - "confidence": 0.95576012134552, + "confidence": 0.9557602405548096, "cells": [ { "index": 0, @@ -158732,7 +158732,7 @@ "b": 764.06172, "coord_origin": "TOPLEFT" }, - "confidence": 0.9056528806686401, + "confidence": 0.9056527614593506, "cells": [ { "index": 1, @@ -160244,7 +160244,7 @@ "b": 706.60762, "coord_origin": "TOPLEFT" }, - "confidence": 0.7632161378860474, + "confidence": 0.7632176280021667, "cells": [ { "index": 2, @@ -161691,7 +161691,7 @@ "b": 706.60762, "coord_origin": "TOPLEFT" }, - "confidence": 0.7632161378860474, + "confidence": 0.7632176280021667, "cells": [ { "index": 2, @@ -163039,7 +163039,7 @@ "b": 706.60762, "coord_origin": "TOPLEFT" }, - "confidence": 0.7632161378860474, + "confidence": 0.7632176280021667, "cells": [ { "index": 2, @@ -164486,10 +164486,10 @@ "l": 0.4932013750076294, "t": 0.0, "r": 610.2305297851562, - "b": 791.654541015625, + "b": 791.6546020507812, "coord_origin": "TOPLEFT" }, - "confidence": 0.6497200131416321, + "confidence": 0.6497246026992798, "cells": [], "children": [] } @@ -164515,10 +164515,10 @@ "l": 0.4932013750076294, "t": 0.0, "r": 610.2305297851562, - "b": 791.654541015625, + "b": 791.6546020507812, "coord_origin": "TOPLEFT" }, - "confidence": 0.6497200131416321, + "confidence": 0.6497246026992798, "cells": [], "children": [] }, @@ -164537,10 +164537,10 @@ "l": 0.4932013750076294, "t": 0.0, "r": 610.2305297851562, - "b": 791.654541015625, + "b": 791.6546020507812, "coord_origin": "TOPLEFT" }, - "confidence": 0.6497200131416321, + "confidence": 0.6497246026992798, "cells": [], "children": [] }, @@ -165822,7 +165822,7 @@ "b": 54.191585540771484, "coord_origin": "TOPLEFT" }, - "confidence": 0.9404253363609314, + "confidence": 0.940425455570221, "cells": [ { "index": 0, @@ -165903,7 +165903,7 @@ "b": 639.66301, "coord_origin": "TOPLEFT" }, - "confidence": 0.7700252532958984, + "confidence": 0.7700253129005432, "cells": [ { "index": 1, @@ -165943,7 +165943,7 @@ "b": 302.16061, "coord_origin": "TOPLEFT" }, - "confidence": 0.8532665967941284, + "confidence": 0.8532664775848389, "cells": [ { "index": 2, @@ -166058,7 +166058,7 @@ "b": 386.47198, "coord_origin": "TOPLEFT" }, - "confidence": 0.7157140374183655, + "confidence": 0.7157137989997864, "cells": [ { "index": 6, @@ -166148,7 +166148,7 @@ "b": 541.63406, "coord_origin": "TOPLEFT" }, - "confidence": 0.9518947005271912, + "confidence": 0.9518944621086121, "cells": [ { "index": 9, @@ -166488,7 +166488,7 @@ "b": 601.5119, "coord_origin": "TOPLEFT" }, - "confidence": 0.8230002522468567, + "confidence": 0.8230006694793701, "cells": [ { "index": 22, @@ -166724,7 +166724,7 @@ "b": 140.46002, "coord_origin": "TOPLEFT" }, - "confidence": 0.7128154635429382, + "confidence": 0.7128158211708069, "cells": [ { "index": 27, @@ -166789,7 +166789,7 @@ "b": 266.83196999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.8400377631187439, + "confidence": 0.8400377035140991, "cells": [ { "index": 29, @@ -166944,7 +166944,7 @@ "b": 378.85199, "coord_origin": "TOPLEFT" }, - "confidence": 0.9064874053001404, + "confidence": 0.9064872860908508, "cells": [ { "index": 34, @@ -167224,7 +167224,7 @@ "b": 388.57095, "coord_origin": "TOPLEFT" }, - "confidence": 0.9799742698669434, + "confidence": 0.9799743890762329, "cells": [ { "index": 44, @@ -167419,7 +167419,7 @@ "b": 54.191585540771484, "coord_origin": "TOPLEFT" }, - "confidence": 0.9404253363609314, + "confidence": 0.940425455570221, "cells": [ { "index": 0, @@ -167510,7 +167510,7 @@ "b": 639.66301, "coord_origin": "TOPLEFT" }, - "confidence": 0.7700252532958984, + "confidence": 0.7700253129005432, "cells": [ { "index": 1, @@ -167556,7 +167556,7 @@ "b": 302.16061, "coord_origin": "TOPLEFT" }, - "confidence": 0.8532665967941284, + "confidence": 0.8532664775848389, "cells": [ { "index": 2, @@ -167677,7 +167677,7 @@ "b": 386.47198, "coord_origin": "TOPLEFT" }, - "confidence": 0.7157140374183655, + "confidence": 0.7157137989997864, "cells": [ { "index": 6, @@ -167773,7 +167773,7 @@ "b": 541.63406, "coord_origin": "TOPLEFT" }, - "confidence": 0.9518947005271912, + "confidence": 0.9518944621086121, "cells": [ { "index": 9, @@ -168119,7 +168119,7 @@ "b": 601.5119, "coord_origin": "TOPLEFT" }, - "confidence": 0.8230002522468567, + "confidence": 0.8230006694793701, "cells": [ { "index": 22, @@ -168371,7 +168371,7 @@ "b": 140.46002, "coord_origin": "TOPLEFT" }, - "confidence": 0.7128154635429382, + "confidence": 0.7128158211708069, "cells": [ { "index": 27, @@ -168442,7 +168442,7 @@ "b": 266.83196999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.8400377631187439, + "confidence": 0.8400377035140991, "cells": [ { "index": 29, @@ -168609,7 +168609,7 @@ "b": 378.85199, "coord_origin": "TOPLEFT" }, - "confidence": 0.9064874053001404, + "confidence": 0.9064872860908508, "cells": [ { "index": 34, @@ -168901,7 +168901,7 @@ "b": 388.57095, "coord_origin": "TOPLEFT" }, - "confidence": 0.9799742698669434, + "confidence": 0.9799743890762329, "cells": [ { "index": 44, @@ -169095,7 +169095,7 @@ "b": 54.191585540771484, "coord_origin": "TOPLEFT" }, - "confidence": 0.9404253363609314, + "confidence": 0.940425455570221, "cells": [ { "index": 0, @@ -169186,7 +169186,7 @@ "b": 302.16061, "coord_origin": "TOPLEFT" }, - "confidence": 0.8532665967941284, + "confidence": 0.8532664775848389, "cells": [ { "index": 2, @@ -169307,7 +169307,7 @@ "b": 386.47198, "coord_origin": "TOPLEFT" }, - "confidence": 0.7157140374183655, + "confidence": 0.7157137989997864, "cells": [ { "index": 6, @@ -169403,7 +169403,7 @@ "b": 541.63406, "coord_origin": "TOPLEFT" }, - "confidence": 0.9518947005271912, + "confidence": 0.9518944621086121, "cells": [ { "index": 9, @@ -169749,7 +169749,7 @@ "b": 601.5119, "coord_origin": "TOPLEFT" }, - "confidence": 0.8230002522468567, + "confidence": 0.8230006694793701, "cells": [ { "index": 22, @@ -170001,7 +170001,7 @@ "b": 140.46002, "coord_origin": "TOPLEFT" }, - "confidence": 0.7128154635429382, + "confidence": 0.7128158211708069, "cells": [ { "index": 27, @@ -170072,7 +170072,7 @@ "b": 266.83196999999996, "coord_origin": "TOPLEFT" }, - "confidence": 0.8400377631187439, + "confidence": 0.8400377035140991, "cells": [ { "index": 29, @@ -170239,7 +170239,7 @@ "b": 378.85199, "coord_origin": "TOPLEFT" }, - "confidence": 0.9064874053001404, + "confidence": 0.9064872860908508, "cells": [ { "index": 34, @@ -170531,7 +170531,7 @@ "b": 388.57095, "coord_origin": "TOPLEFT" }, - "confidence": 0.9799742698669434, + "confidence": 0.9799743890762329, "cells": [ { "index": 44, @@ -170725,7 +170725,7 @@ "b": 639.66301, "coord_origin": "TOPLEFT" }, - "confidence": 0.7700252532958984, + "confidence": 0.7700253129005432, "cells": [ { "index": 1, diff --git a/tests/data/groundtruth/docling_v2/right_to_left_01.pages.json b/tests/data/groundtruth/docling_v2/right_to_left_01.pages.json index dc5e215..c86f095 100644 --- a/tests/data/groundtruth/docling_v2/right_to_left_01.pages.json +++ b/tests/data/groundtruth/docling_v2/right_to_left_01.pages.json @@ -1171,7 +1171,7 @@ "b": 295.08200000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9547483325004578, + "confidence": 0.9547481536865234, "cells": [ { "index": 17, @@ -1311,7 +1311,7 @@ "b": 350.522, "coord_origin": "TOPLEFT" }, - "confidence": 0.9672117233276367, + "confidence": 0.9672118425369263, "cells": [ { "index": 22, @@ -1971,7 +1971,7 @@ "b": 295.08200000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9547483325004578, + "confidence": 0.9547481536865234, "cells": [ { "index": 17, @@ -2117,7 +2117,7 @@ "b": 350.522, "coord_origin": "TOPLEFT" }, - "confidence": 0.9672117233276367, + "confidence": 0.9672118425369263, "cells": [ { "index": 22, @@ -2770,7 +2770,7 @@ "b": 295.08200000000005, "coord_origin": "TOPLEFT" }, - "confidence": 0.9547483325004578, + "confidence": 0.9547481536865234, "cells": [ { "index": 17, @@ -2916,7 +2916,7 @@ "b": 350.522, "coord_origin": "TOPLEFT" }, - "confidence": 0.9672117233276367, + "confidence": 0.9672118425369263, "cells": [ { "index": 22, diff --git a/tests/data/groundtruth/docling_v2/right_to_left_02.pages.json b/tests/data/groundtruth/docling_v2/right_to_left_02.pages.json index 6ebc101..f1bb5a6 100644 --- a/tests/data/groundtruth/docling_v2/right_to_left_02.pages.json +++ b/tests/data/groundtruth/docling_v2/right_to_left_02.pages.json @@ -5951,7 +5951,7 @@ "b": 465.596681609368, "coord_origin": "TOPLEFT" }, - "confidence": 0.9393879771232605, + "confidence": 0.93938809633255, "cells": [ { "index": 77, @@ -7406,7 +7406,7 @@ "b": 534.1167018462124, "coord_origin": "TOPLEFT" }, - "confidence": 0.5769620537757874, + "confidence": 0.5769621729850769, "cells": [ { "index": 134, @@ -8046,7 +8046,7 @@ "b": 650.6431884765625, "coord_origin": "TOPLEFT" }, - "confidence": 0.6444889903068542, + "confidence": 0.6444893479347229, "cells": [], "children": [] } @@ -10042,7 +10042,7 @@ "b": 465.596681609368, "coord_origin": "TOPLEFT" }, - "confidence": 0.9393879771232605, + "confidence": 0.93938809633255, "cells": [ { "index": 77, @@ -11509,7 +11509,7 @@ "b": 534.1167018462124, "coord_origin": "TOPLEFT" }, - "confidence": 0.5769620537757874, + "confidence": 0.5769621729850769, "cells": [ { "index": 134, @@ -12155,7 +12155,7 @@ "b": 650.6431884765625, "coord_origin": "TOPLEFT" }, - "confidence": 0.6444889903068542, + "confidence": 0.6444893479347229, "cells": [], "children": [] }, @@ -14148,7 +14148,7 @@ "b": 465.596681609368, "coord_origin": "TOPLEFT" }, - "confidence": 0.9393879771232605, + "confidence": 0.93938809633255, "cells": [ { "index": 77, @@ -15615,7 +15615,7 @@ "b": 534.1167018462124, "coord_origin": "TOPLEFT" }, - "confidence": 0.5769620537757874, + "confidence": 0.5769621729850769, "cells": [ { "index": 134, @@ -16261,7 +16261,7 @@ "b": 650.6431884765625, "coord_origin": "TOPLEFT" }, - "confidence": 0.6444889903068542, + "confidence": 0.6444893479347229, "cells": [], "children": [] }, diff --git a/tests/data/groundtruth/docling_v2/right_to_left_03.json b/tests/data/groundtruth/docling_v2/right_to_left_03.json index 2f13358..9ad33c4 100644 --- a/tests/data/groundtruth/docling_v2/right_to_left_03.json +++ b/tests/data/groundtruth/docling_v2/right_to_left_03.json @@ -1102,7 +1102,7 @@ "page_no": 1, "bbox": { "l": 388.5767822265625, - "t": 806.0041046142578, + "t": 806.0040969848633, "r": 482.4759216308594, "b": 739.034423828125, "coord_origin": "BOTTOMLEFT" diff --git a/tests/data/groundtruth/docling_v2/right_to_left_03.pages.json b/tests/data/groundtruth/docling_v2/right_to_left_03.pages.json index 614437c..85f3e29 100644 --- a/tests/data/groundtruth/docling_v2/right_to_left_03.pages.json +++ b/tests/data/groundtruth/docling_v2/right_to_left_03.pages.json @@ -1391,7 +1391,7 @@ "label": "picture", "bbox": { "l": 388.5767822265625, - "t": 36.03587341308594, + "t": 36.03588104248047, "r": 482.4759216308594, "b": 103.00555419921875, "coord_origin": "TOPLEFT" @@ -1477,7 +1477,7 @@ "b": 81.03008981017001, "coord_origin": "TOPLEFT" }, - "confidence": 0.6917961239814758, + "confidence": 0.6917959451675415, "cells": [ { "index": 2, @@ -1517,7 +1517,7 @@ "b": 790.0379791491694, "coord_origin": "TOPLEFT" }, - "confidence": 0.899228036403656, + "confidence": 0.8992282152175903, "cells": [ { "index": 3, @@ -1597,7 +1597,7 @@ "b": 323.44982924225053, "coord_origin": "TOPLEFT" }, - "confidence": 0.6362584233283997, + "confidence": 0.6362582445144653, "cells": [ { "index": 5, @@ -2361,7 +2361,7 @@ "b": 179.2998695799522, "coord_origin": "TOPLEFT" }, - "confidence": 0.7258325815200806, + "confidence": 0.7258322834968567, "cells": [ { "index": 5, @@ -2891,7 +2891,7 @@ "b": 233.17986945372706, "coord_origin": "TOPLEFT" }, - "confidence": 0.8121814727783203, + "confidence": 0.8121819496154785, "cells": [ { "index": 25, @@ -2931,7 +2931,7 @@ "b": 228.73998946412837, "coord_origin": "TOPLEFT" }, - "confidence": 0.7672220468521118, + "confidence": 0.7672221660614014, "cells": [ { "index": 26, @@ -2971,7 +2971,7 @@ "b": 255.88982940052404, "coord_origin": "TOPLEFT" }, - "confidence": 0.8320456743240356, + "confidence": 0.8320454955101013, "cells": [ { "index": 27, @@ -3011,7 +3011,7 @@ "b": 251.44994941092557, "coord_origin": "TOPLEFT" }, - "confidence": 0.5538824796676636, + "confidence": 0.5538817644119263, "cells": [ { "index": 28, @@ -3051,7 +3051,7 @@ "b": 278.5698293473914, "coord_origin": "TOPLEFT" }, - "confidence": 0.7909000515937805, + "confidence": 0.7908995151519775, "cells": [ { "index": 29, @@ -3131,7 +3131,7 @@ "b": 323.44982924225053, "coord_origin": "TOPLEFT" }, - "confidence": 0.6534578204154968, + "confidence": 0.6534579396247864, "cells": [ { "index": 31, @@ -3236,7 +3236,7 @@ "b": 296.80999930466, "coord_origin": "TOPLEFT" }, - "confidence": 0.5417144298553467, + "confidence": 0.5417138934135437, "cells": [ { "index": 35, @@ -3318,7 +3318,7 @@ "b": 596.0198686036978, "coord_origin": "TOPLEFT" }, - "confidence": 0.719137966632843, + "confidence": 0.7191378474235535, "cells": [ { "index": 37, @@ -3822,7 +3822,7 @@ "b": 386.56997909437825, "coord_origin": "TOPLEFT" }, - "confidence": 0.8262879252433777, + "confidence": 0.8262876868247986, "cells": [ { "index": 38, @@ -3862,7 +3862,7 @@ "b": 413.70983903079747, "coord_origin": "TOPLEFT" }, - "confidence": 0.7766718864440918, + "confidence": 0.7766715884208679, "cells": [ { "index": 39, @@ -3902,7 +3902,7 @@ "b": 409.26995904119883, "coord_origin": "TOPLEFT" }, - "confidence": 0.8204737901687622, + "confidence": 0.8204739093780518, "cells": [ { "index": 40, @@ -3942,7 +3942,7 @@ "b": 436.3898589776647, "coord_origin": "TOPLEFT" }, - "confidence": 0.7670677900314331, + "confidence": 0.7670676708221436, "cells": [ { "index": 41, @@ -3982,7 +3982,7 @@ "b": 432.0699789877849, "coord_origin": "TOPLEFT" }, - "confidence": 0.8048340082168579, + "confidence": 0.8048339486122131, "cells": [ { "index": 42, @@ -4062,7 +4062,7 @@ "b": 454.7499689346523, "coord_origin": "TOPLEFT" }, - "confidence": 0.827337384223938, + "confidence": 0.8273372054100037, "cells": [ { "index": 44, @@ -4102,7 +4102,7 @@ "b": 481.8698388711183, "coord_origin": "TOPLEFT" }, - "confidence": 0.7342236638069153, + "confidence": 0.7342240214347839, "cells": [ { "index": 45, @@ -4142,7 +4142,7 @@ "b": 477.42995888151955, "coord_origin": "TOPLEFT" }, - "confidence": 0.8411222696304321, + "confidence": 0.8411223888397217, "cells": [ { "index": 46, @@ -4182,7 +4182,7 @@ "b": 528.3098487623228, "coord_origin": "TOPLEFT" }, - "confidence": 0.7251589894294739, + "confidence": 0.7251590490341187, "cells": [ { "index": 47, @@ -4247,7 +4247,7 @@ "b": 501.78997882445117, "coord_origin": "TOPLEFT" }, - "confidence": 0.7848678827285767, + "confidence": 0.7848676443099976, "cells": [ { "index": 49, @@ -4287,7 +4287,7 @@ "b": 573.2198486571116, "coord_origin": "TOPLEFT" }, - "confidence": 0.7586438059806824, + "confidence": 0.758643627166748, "cells": [ { "index": 50, @@ -4352,7 +4352,7 @@ "b": 546.69997871924, "coord_origin": "TOPLEFT" }, - "confidence": 0.7897851467132568, + "confidence": 0.7897858619689941, "cells": [ { "index": 52, @@ -4432,7 +4432,7 @@ "b": 591.5799886140991, "coord_origin": "TOPLEFT" }, - "confidence": 0.8144810795783997, + "confidence": 0.8144806027412415, "cells": [ { "index": 54, @@ -4484,7 +4484,7 @@ "label": "picture", "bbox": { "l": 388.5767822265625, - "t": 36.03587341308594, + "t": 36.03588104248047, "r": 482.4759216308594, "b": 103.00555419921875, "coord_origin": "TOPLEFT" @@ -4580,7 +4580,7 @@ "b": 81.03008981017001, "coord_origin": "TOPLEFT" }, - "confidence": 0.6917961239814758, + "confidence": 0.6917959451675415, "cells": [ { "index": 2, @@ -4626,7 +4626,7 @@ "b": 790.0379791491694, "coord_origin": "TOPLEFT" }, - "confidence": 0.899228036403656, + "confidence": 0.8992282152175903, "cells": [ { "index": 3, @@ -4718,7 +4718,7 @@ "b": 323.44982924225053, "coord_origin": "TOPLEFT" }, - "confidence": 0.6362584233283997, + "confidence": 0.6362582445144653, "cells": [ { "index": 5, @@ -5482,7 +5482,7 @@ "b": 179.2998695799522, "coord_origin": "TOPLEFT" }, - "confidence": 0.7258325815200806, + "confidence": 0.7258322834968567, "cells": [ { "index": 5, @@ -6012,7 +6012,7 @@ "b": 233.17986945372706, "coord_origin": "TOPLEFT" }, - "confidence": 0.8121814727783203, + "confidence": 0.8121819496154785, "cells": [ { "index": 25, @@ -6052,7 +6052,7 @@ "b": 228.73998946412837, "coord_origin": "TOPLEFT" }, - "confidence": 0.7672220468521118, + "confidence": 0.7672221660614014, "cells": [ { "index": 26, @@ -6092,7 +6092,7 @@ "b": 255.88982940052404, "coord_origin": "TOPLEFT" }, - "confidence": 0.8320456743240356, + "confidence": 0.8320454955101013, "cells": [ { "index": 27, @@ -6132,7 +6132,7 @@ "b": 251.44994941092557, "coord_origin": "TOPLEFT" }, - "confidence": 0.5538824796676636, + "confidence": 0.5538817644119263, "cells": [ { "index": 28, @@ -6172,7 +6172,7 @@ "b": 278.5698293473914, "coord_origin": "TOPLEFT" }, - "confidence": 0.7909000515937805, + "confidence": 0.7908995151519775, "cells": [ { "index": 29, @@ -6252,7 +6252,7 @@ "b": 323.44982924225053, "coord_origin": "TOPLEFT" }, - "confidence": 0.6534578204154968, + "confidence": 0.6534579396247864, "cells": [ { "index": 31, @@ -6357,7 +6357,7 @@ "b": 296.80999930466, "coord_origin": "TOPLEFT" }, - "confidence": 0.5417144298553467, + "confidence": 0.5417138934135437, "cells": [ { "index": 35, @@ -6451,7 +6451,7 @@ "b": 596.0198686036978, "coord_origin": "TOPLEFT" }, - "confidence": 0.719137966632843, + "confidence": 0.7191378474235535, "cells": [ { "index": 37, @@ -6955,7 +6955,7 @@ "b": 386.56997909437825, "coord_origin": "TOPLEFT" }, - "confidence": 0.8262879252433777, + "confidence": 0.8262876868247986, "cells": [ { "index": 38, @@ -6995,7 +6995,7 @@ "b": 413.70983903079747, "coord_origin": "TOPLEFT" }, - "confidence": 0.7766718864440918, + "confidence": 0.7766715884208679, "cells": [ { "index": 39, @@ -7035,7 +7035,7 @@ "b": 409.26995904119883, "coord_origin": "TOPLEFT" }, - "confidence": 0.8204737901687622, + "confidence": 0.8204739093780518, "cells": [ { "index": 40, @@ -7075,7 +7075,7 @@ "b": 436.3898589776647, "coord_origin": "TOPLEFT" }, - "confidence": 0.7670677900314331, + "confidence": 0.7670676708221436, "cells": [ { "index": 41, @@ -7115,7 +7115,7 @@ "b": 432.0699789877849, "coord_origin": "TOPLEFT" }, - "confidence": 0.8048340082168579, + "confidence": 0.8048339486122131, "cells": [ { "index": 42, @@ -7195,7 +7195,7 @@ "b": 454.7499689346523, "coord_origin": "TOPLEFT" }, - "confidence": 0.827337384223938, + "confidence": 0.8273372054100037, "cells": [ { "index": 44, @@ -7235,7 +7235,7 @@ "b": 481.8698388711183, "coord_origin": "TOPLEFT" }, - "confidence": 0.7342236638069153, + "confidence": 0.7342240214347839, "cells": [ { "index": 45, @@ -7275,7 +7275,7 @@ "b": 477.42995888151955, "coord_origin": "TOPLEFT" }, - "confidence": 0.8411222696304321, + "confidence": 0.8411223888397217, "cells": [ { "index": 46, @@ -7315,7 +7315,7 @@ "b": 528.3098487623228, "coord_origin": "TOPLEFT" }, - "confidence": 0.7251589894294739, + "confidence": 0.7251590490341187, "cells": [ { "index": 47, @@ -7380,7 +7380,7 @@ "b": 501.78997882445117, "coord_origin": "TOPLEFT" }, - "confidence": 0.7848678827285767, + "confidence": 0.7848676443099976, "cells": [ { "index": 49, @@ -7420,7 +7420,7 @@ "b": 573.2198486571116, "coord_origin": "TOPLEFT" }, - "confidence": 0.7586438059806824, + "confidence": 0.758643627166748, "cells": [ { "index": 50, @@ -7485,7 +7485,7 @@ "b": 546.69997871924, "coord_origin": "TOPLEFT" }, - "confidence": 0.7897851467132568, + "confidence": 0.7897858619689941, "cells": [ { "index": 52, @@ -7565,7 +7565,7 @@ "b": 591.5799886140991, "coord_origin": "TOPLEFT" }, - "confidence": 0.8144810795783997, + "confidence": 0.8144806027412415, "cells": [ { "index": 54, @@ -7610,7 +7610,7 @@ "label": "picture", "bbox": { "l": 388.5767822265625, - "t": 36.03587341308594, + "t": 36.03588104248047, "r": 482.4759216308594, "b": 103.00555419921875, "coord_origin": "TOPLEFT" @@ -7706,7 +7706,7 @@ "b": 81.03008981017001, "coord_origin": "TOPLEFT" }, - "confidence": 0.6917961239814758, + "confidence": 0.6917959451675415, "cells": [ { "index": 2, @@ -7798,7 +7798,7 @@ "b": 323.44982924225053, "coord_origin": "TOPLEFT" }, - "confidence": 0.6362584233283997, + "confidence": 0.6362582445144653, "cells": [ { "index": 5, @@ -8562,7 +8562,7 @@ "b": 179.2998695799522, "coord_origin": "TOPLEFT" }, - "confidence": 0.7258325815200806, + "confidence": 0.7258322834968567, "cells": [ { "index": 5, @@ -9092,7 +9092,7 @@ "b": 233.17986945372706, "coord_origin": "TOPLEFT" }, - "confidence": 0.8121814727783203, + "confidence": 0.8121819496154785, "cells": [ { "index": 25, @@ -9132,7 +9132,7 @@ "b": 228.73998946412837, "coord_origin": "TOPLEFT" }, - "confidence": 0.7672220468521118, + "confidence": 0.7672221660614014, "cells": [ { "index": 26, @@ -9172,7 +9172,7 @@ "b": 255.88982940052404, "coord_origin": "TOPLEFT" }, - "confidence": 0.8320456743240356, + "confidence": 0.8320454955101013, "cells": [ { "index": 27, @@ -9212,7 +9212,7 @@ "b": 251.44994941092557, "coord_origin": "TOPLEFT" }, - "confidence": 0.5538824796676636, + "confidence": 0.5538817644119263, "cells": [ { "index": 28, @@ -9252,7 +9252,7 @@ "b": 278.5698293473914, "coord_origin": "TOPLEFT" }, - "confidence": 0.7909000515937805, + "confidence": 0.7908995151519775, "cells": [ { "index": 29, @@ -9332,7 +9332,7 @@ "b": 323.44982924225053, "coord_origin": "TOPLEFT" }, - "confidence": 0.6534578204154968, + "confidence": 0.6534579396247864, "cells": [ { "index": 31, @@ -9437,7 +9437,7 @@ "b": 296.80999930466, "coord_origin": "TOPLEFT" }, - "confidence": 0.5417144298553467, + "confidence": 0.5417138934135437, "cells": [ { "index": 35, @@ -9531,7 +9531,7 @@ "b": 596.0198686036978, "coord_origin": "TOPLEFT" }, - "confidence": 0.719137966632843, + "confidence": 0.7191378474235535, "cells": [ { "index": 37, @@ -10035,7 +10035,7 @@ "b": 386.56997909437825, "coord_origin": "TOPLEFT" }, - "confidence": 0.8262879252433777, + "confidence": 0.8262876868247986, "cells": [ { "index": 38, @@ -10075,7 +10075,7 @@ "b": 413.70983903079747, "coord_origin": "TOPLEFT" }, - "confidence": 0.7766718864440918, + "confidence": 0.7766715884208679, "cells": [ { "index": 39, @@ -10115,7 +10115,7 @@ "b": 409.26995904119883, "coord_origin": "TOPLEFT" }, - "confidence": 0.8204737901687622, + "confidence": 0.8204739093780518, "cells": [ { "index": 40, @@ -10155,7 +10155,7 @@ "b": 436.3898589776647, "coord_origin": "TOPLEFT" }, - "confidence": 0.7670677900314331, + "confidence": 0.7670676708221436, "cells": [ { "index": 41, @@ -10195,7 +10195,7 @@ "b": 432.0699789877849, "coord_origin": "TOPLEFT" }, - "confidence": 0.8048340082168579, + "confidence": 0.8048339486122131, "cells": [ { "index": 42, @@ -10275,7 +10275,7 @@ "b": 454.7499689346523, "coord_origin": "TOPLEFT" }, - "confidence": 0.827337384223938, + "confidence": 0.8273372054100037, "cells": [ { "index": 44, @@ -10315,7 +10315,7 @@ "b": 481.8698388711183, "coord_origin": "TOPLEFT" }, - "confidence": 0.7342236638069153, + "confidence": 0.7342240214347839, "cells": [ { "index": 45, @@ -10355,7 +10355,7 @@ "b": 477.42995888151955, "coord_origin": "TOPLEFT" }, - "confidence": 0.8411222696304321, + "confidence": 0.8411223888397217, "cells": [ { "index": 46, @@ -10395,7 +10395,7 @@ "b": 528.3098487623228, "coord_origin": "TOPLEFT" }, - "confidence": 0.7251589894294739, + "confidence": 0.7251590490341187, "cells": [ { "index": 47, @@ -10460,7 +10460,7 @@ "b": 501.78997882445117, "coord_origin": "TOPLEFT" }, - "confidence": 0.7848678827285767, + "confidence": 0.7848676443099976, "cells": [ { "index": 49, @@ -10500,7 +10500,7 @@ "b": 573.2198486571116, "coord_origin": "TOPLEFT" }, - "confidence": 0.7586438059806824, + "confidence": 0.758643627166748, "cells": [ { "index": 50, @@ -10565,7 +10565,7 @@ "b": 546.69997871924, "coord_origin": "TOPLEFT" }, - "confidence": 0.7897851467132568, + "confidence": 0.7897858619689941, "cells": [ { "index": 52, @@ -10645,7 +10645,7 @@ "b": 591.5799886140991, "coord_origin": "TOPLEFT" }, - "confidence": 0.8144810795783997, + "confidence": 0.8144806027412415, "cells": [ { "index": 54, @@ -10695,7 +10695,7 @@ "b": 790.0379791491694, "coord_origin": "TOPLEFT" }, - "confidence": 0.899228036403656, + "confidence": 0.8992282152175903, "cells": [ { "index": 3, diff --git a/tests/data/pdf/multi_page.pdf b/tests/data/pdf/multi_page.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7d9eb1818d61fa4d3e80d1c8a41e705c6fa7bc9d GIT binary patch literal 128322 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%0AXW#Mnhx<}W1t~V;k;Qj!zh?OA$inK| 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 B)>8lg literal 0 HcmV?d00001 diff --git a/tests/data_scanned/groundtruth/docling_v1/ocr_test.json b/tests/data_scanned/groundtruth/docling_v1/ocr_test.json index 59402fa..8dbfff1 100644 --- a/tests/data_scanned/groundtruth/docling_v1/ocr_test.json +++ b/tests/data_scanned/groundtruth/docling_v1/ocr_test.json @@ -44,10 +44,10 @@ "prov": [ { "bbox": [ - 69.0, - 688.5883585611979, - 506.6666666666667, - 767.2550252278646 + 69.6796630536824, + 689.0124221922704, + 504.8720051760782, + 764.9216921155637 ], "page": 1, "span": [ diff --git a/tests/data_scanned/groundtruth/docling_v1/ocr_test.pages.json b/tests/data_scanned/groundtruth/docling_v1/ocr_test.pages.json index 5c1cc91..cc4c440 100644 --- a/tests/data_scanned/groundtruth/docling_v1/ocr_test.pages.json +++ b/tests/data_scanned/groundtruth/docling_v1/ocr_test.pages.json @@ -15,20 +15,20 @@ "a": 255 }, "rect": { - "r_x0": 71.33333333333333, - "r_y0": 99.33333333333333, - "r_x1": 506.6666666666667, - "r_y1": 99.33333333333333, - "r_x2": 506.6666666666667, - "r_y2": 74.66666666666667, - "r_x3": 71.33333333333333, - "r_y3": 74.66666666666667, + "r_x0": 73.34702132031646, + "r_y0": 97.99999977896755, + "r_x1": 503.64955224479564, + "r_y1": 97.99999977896755, + "r_x2": 503.64955224479564, + "r_y2": 76.99999977896756, + "r_x3": 73.34702132031646, + "r_y3": 76.99999977896756, "coord_origin": "TOPLEFT" }, "text": "Docling bundles PDF document conversion to", "orig": "Docling bundles PDF document conversion to", "text_direction": "left_to_right", - "confidence": 0.9555703127793324, + "confidence": 1.0, "from_ocr": true }, { @@ -40,20 +40,20 @@ "a": 255 }, "rect": { - "r_x0": 69.0, - "r_y0": 126.66666666666667, - "r_x1": 506.6666666666667, - "r_y1": 126.66666666666667, - "r_x2": 506.6666666666667, - "r_y2": 100.66666666666667, - "r_x3": 69.0, - "r_y3": 100.66666666666667, + "r_x0": 69.6796630536824, + "r_y0": 124.83139494707741, + "r_x1": 504.8720051760782, + "r_y1": 124.83139494707741, + "r_x2": 504.8720051760782, + "r_y2": 104.00000011573796, + "r_x3": 69.6796630536824, + "r_y3": 104.00000011573796, "coord_origin": "TOPLEFT" }, "text": "JSON and Markdown in an easy self contained", "orig": "JSON and Markdown in an easy self contained", "text_direction": "left_to_right", - "confidence": 0.9741098171752292, + "confidence": 1.0, "from_ocr": true }, { @@ -65,20 +65,20 @@ "a": 255 }, "rect": { - "r_x0": 70.66666666666667, - "r_y0": 153.33333333333334, - "r_x1": 154.0, - "r_y1": 153.33333333333334, - "r_x2": 154.0, - "r_y2": 128.66666666666666, - "r_x3": 70.66666666666667, - "r_y3": 128.66666666666666, + "r_x0": 71.84193505100733, + "r_y0": 152.90926970226084, + "r_x1": 153.088934155825, + "r_y1": 152.90926970226084, + "r_x2": 153.088934155825, + "r_y2": 129.797125232046, + "r_x3": 71.84193505100733, + "r_y3": 129.797125232046, "coord_origin": "TOPLEFT" }, "text": "package", "orig": "package", "text_direction": "left_to_right", - "confidence": 0.6702765056141881, + "confidence": 1.0, "from_ocr": true } ], @@ -90,13 +90,13 @@ "id": 0, "label": "text", "bbox": { - "l": 69.0, - "t": 74.66666666666667, - "r": 506.6666666666667, - "b": 153.33333333333334, + "l": 69.6796630536824, + "t": 76.99999977896756, + "r": 504.8720051760782, + "b": 152.90926970226084, "coord_origin": "TOPLEFT" }, - "confidence": 0.9715733528137207, + "confidence": 0.9715732336044312, "cells": [ { "index": 0, @@ -107,20 +107,20 @@ "a": 255 }, "rect": { - "r_x0": 71.33333333333333, - "r_y0": 99.33333333333333, - "r_x1": 506.6666666666667, - "r_y1": 99.33333333333333, - "r_x2": 506.6666666666667, - "r_y2": 74.66666666666667, - "r_x3": 71.33333333333333, - "r_y3": 74.66666666666667, + "r_x0": 73.34702132031646, + "r_y0": 97.99999977896755, + "r_x1": 503.64955224479564, + "r_y1": 97.99999977896755, + "r_x2": 503.64955224479564, + "r_y2": 76.99999977896756, + "r_x3": 73.34702132031646, + "r_y3": 76.99999977896756, "coord_origin": "TOPLEFT" }, "text": "Docling bundles PDF document conversion to", "orig": "Docling bundles PDF document conversion to", "text_direction": "left_to_right", - "confidence": 0.9555703127793324, + "confidence": 1.0, "from_ocr": true }, { @@ -132,20 +132,20 @@ "a": 255 }, "rect": { - "r_x0": 69.0, - "r_y0": 126.66666666666667, - "r_x1": 506.6666666666667, - "r_y1": 126.66666666666667, - "r_x2": 506.6666666666667, - "r_y2": 100.66666666666667, - "r_x3": 69.0, - "r_y3": 100.66666666666667, + "r_x0": 69.6796630536824, + "r_y0": 124.83139494707741, + "r_x1": 504.8720051760782, + "r_y1": 124.83139494707741, + "r_x2": 504.8720051760782, + "r_y2": 104.00000011573796, + "r_x3": 69.6796630536824, + "r_y3": 104.00000011573796, "coord_origin": "TOPLEFT" }, "text": "JSON and Markdown in an easy self contained", "orig": "JSON and Markdown in an easy self contained", "text_direction": "left_to_right", - "confidence": 0.9741098171752292, + "confidence": 1.0, "from_ocr": true }, { @@ -157,20 +157,20 @@ "a": 255 }, "rect": { - "r_x0": 70.66666666666667, - "r_y0": 153.33333333333334, - "r_x1": 154.0, - "r_y1": 153.33333333333334, - "r_x2": 154.0, - "r_y2": 128.66666666666666, - "r_x3": 70.66666666666667, - "r_y3": 128.66666666666666, + "r_x0": 71.84193505100733, + "r_y0": 152.90926970226084, + "r_x1": 153.088934155825, + "r_y1": 152.90926970226084, + "r_x2": 153.088934155825, + "r_y2": 129.797125232046, + "r_x3": 71.84193505100733, + "r_y3": 129.797125232046, "coord_origin": "TOPLEFT" }, "text": "package", "orig": "package", "text_direction": "left_to_right", - "confidence": 0.6702765056141881, + "confidence": 1.0, "from_ocr": true } ], @@ -195,13 +195,13 @@ "id": 0, "label": "text", "bbox": { - "l": 69.0, - "t": 74.66666666666667, - "r": 506.6666666666667, - "b": 153.33333333333334, + "l": 69.6796630536824, + "t": 76.99999977896756, + "r": 504.8720051760782, + "b": 152.90926970226084, "coord_origin": "TOPLEFT" }, - "confidence": 0.9715733528137207, + "confidence": 0.9715732336044312, "cells": [ { "index": 0, @@ -212,20 +212,20 @@ "a": 255 }, "rect": { - "r_x0": 71.33333333333333, - "r_y0": 99.33333333333333, - "r_x1": 506.6666666666667, - "r_y1": 99.33333333333333, - "r_x2": 506.6666666666667, - "r_y2": 74.66666666666667, - "r_x3": 71.33333333333333, - "r_y3": 74.66666666666667, + "r_x0": 73.34702132031646, + "r_y0": 97.99999977896755, + "r_x1": 503.64955224479564, + "r_y1": 97.99999977896755, + "r_x2": 503.64955224479564, + "r_y2": 76.99999977896756, + "r_x3": 73.34702132031646, + "r_y3": 76.99999977896756, "coord_origin": "TOPLEFT" }, "text": "Docling bundles PDF document conversion to", "orig": "Docling bundles PDF document conversion to", "text_direction": "left_to_right", - "confidence": 0.9555703127793324, + "confidence": 1.0, "from_ocr": true }, { @@ -237,20 +237,20 @@ "a": 255 }, "rect": { - "r_x0": 69.0, - "r_y0": 126.66666666666667, - "r_x1": 506.6666666666667, - "r_y1": 126.66666666666667, - "r_x2": 506.6666666666667, - "r_y2": 100.66666666666667, - "r_x3": 69.0, - "r_y3": 100.66666666666667, + "r_x0": 69.6796630536824, + "r_y0": 124.83139494707741, + "r_x1": 504.8720051760782, + "r_y1": 124.83139494707741, + "r_x2": 504.8720051760782, + "r_y2": 104.00000011573796, + "r_x3": 69.6796630536824, + "r_y3": 104.00000011573796, "coord_origin": "TOPLEFT" }, "text": "JSON and Markdown in an easy self contained", "orig": "JSON and Markdown in an easy self contained", "text_direction": "left_to_right", - "confidence": 0.9741098171752292, + "confidence": 1.0, "from_ocr": true }, { @@ -262,20 +262,20 @@ "a": 255 }, "rect": { - "r_x0": 70.66666666666667, - "r_y0": 153.33333333333334, - "r_x1": 154.0, - "r_y1": 153.33333333333334, - "r_x2": 154.0, - "r_y2": 128.66666666666666, - "r_x3": 70.66666666666667, - "r_y3": 128.66666666666666, + "r_x0": 71.84193505100733, + "r_y0": 152.90926970226084, + "r_x1": 153.088934155825, + "r_y1": 152.90926970226084, + "r_x2": 153.088934155825, + "r_y2": 129.797125232046, + "r_x3": 71.84193505100733, + "r_y3": 129.797125232046, "coord_origin": "TOPLEFT" }, "text": "package", "orig": "package", "text_direction": "left_to_right", - "confidence": 0.6702765056141881, + "confidence": 1.0, "from_ocr": true } ], @@ -293,13 +293,13 @@ "id": 0, "label": "text", "bbox": { - "l": 69.0, - "t": 74.66666666666667, - "r": 506.6666666666667, - "b": 153.33333333333334, + "l": 69.6796630536824, + "t": 76.99999977896756, + "r": 504.8720051760782, + "b": 152.90926970226084, "coord_origin": "TOPLEFT" }, - "confidence": 0.9715733528137207, + "confidence": 0.9715732336044312, "cells": [ { "index": 0, @@ -310,20 +310,20 @@ "a": 255 }, "rect": { - "r_x0": 71.33333333333333, - "r_y0": 99.33333333333333, - "r_x1": 506.6666666666667, - "r_y1": 99.33333333333333, - "r_x2": 506.6666666666667, - "r_y2": 74.66666666666667, - "r_x3": 71.33333333333333, - "r_y3": 74.66666666666667, + "r_x0": 73.34702132031646, + "r_y0": 97.99999977896755, + "r_x1": 503.64955224479564, + "r_y1": 97.99999977896755, + "r_x2": 503.64955224479564, + "r_y2": 76.99999977896756, + "r_x3": 73.34702132031646, + "r_y3": 76.99999977896756, "coord_origin": "TOPLEFT" }, "text": "Docling bundles PDF document conversion to", "orig": "Docling bundles PDF document conversion to", "text_direction": "left_to_right", - "confidence": 0.9555703127793324, + "confidence": 1.0, "from_ocr": true }, { @@ -335,20 +335,20 @@ "a": 255 }, "rect": { - "r_x0": 69.0, - "r_y0": 126.66666666666667, - "r_x1": 506.6666666666667, - "r_y1": 126.66666666666667, - "r_x2": 506.6666666666667, - "r_y2": 100.66666666666667, - "r_x3": 69.0, - "r_y3": 100.66666666666667, + "r_x0": 69.6796630536824, + "r_y0": 124.83139494707741, + "r_x1": 504.8720051760782, + "r_y1": 124.83139494707741, + "r_x2": 504.8720051760782, + "r_y2": 104.00000011573796, + "r_x3": 69.6796630536824, + "r_y3": 104.00000011573796, "coord_origin": "TOPLEFT" }, "text": "JSON and Markdown in an easy self contained", "orig": "JSON and Markdown in an easy self contained", "text_direction": "left_to_right", - "confidence": 0.9741098171752292, + "confidence": 1.0, "from_ocr": true }, { @@ -360,20 +360,20 @@ "a": 255 }, "rect": { - "r_x0": 70.66666666666667, - "r_y0": 153.33333333333334, - "r_x1": 154.0, - "r_y1": 153.33333333333334, - "r_x2": 154.0, - "r_y2": 128.66666666666666, - "r_x3": 70.66666666666667, - "r_y3": 128.66666666666666, + "r_x0": 71.84193505100733, + "r_y0": 152.90926970226084, + "r_x1": 153.088934155825, + "r_y1": 152.90926970226084, + "r_x2": 153.088934155825, + "r_y2": 129.797125232046, + "r_x3": 71.84193505100733, + "r_y3": 129.797125232046, "coord_origin": "TOPLEFT" }, "text": "package", "orig": "package", "text_direction": "left_to_right", - "confidence": 0.6702765056141881, + "confidence": 1.0, "from_ocr": true } ], diff --git a/tests/data_scanned/groundtruth/docling_v2/ocr_test.doctags.txt b/tests/data_scanned/groundtruth/docling_v2/ocr_test.doctags.txt index 99ea552..c210e4d 100644 --- a/tests/data_scanned/groundtruth/docling_v2/ocr_test.doctags.txt +++ b/tests/data_scanned/groundtruth/docling_v2/ocr_test.doctags.txt @@ -1,2 +1,2 @@ -Docling bundles PDF document conversion to JSON and Markdown in an easy self contained package +Docling bundles PDF document conversion to JSON and Markdown in an easy self contained package \ No newline at end of file diff --git a/tests/data_scanned/groundtruth/docling_v2/ocr_test.json b/tests/data_scanned/groundtruth/docling_v2/ocr_test.json index 5e3809c..e08af9c 100644 --- a/tests/data_scanned/groundtruth/docling_v2/ocr_test.json +++ b/tests/data_scanned/groundtruth/docling_v2/ocr_test.json @@ -42,10 +42,10 @@ { "page_no": 1, "bbox": { - "l": 69.0, - "t": 767.2550252278646, - "r": 506.6666666666667, - "b": 688.5883585611979, + "l": 69.6796630536824, + "t": 764.9216921155637, + "r": 504.8720051760782, + "b": 689.0124221922704, "coord_origin": "BOTTOMLEFT" }, "charspan": [ diff --git a/tests/data_scanned/groundtruth/docling_v2/ocr_test.pages.json b/tests/data_scanned/groundtruth/docling_v2/ocr_test.pages.json index 5c1cc91..cc4c440 100644 --- a/tests/data_scanned/groundtruth/docling_v2/ocr_test.pages.json +++ b/tests/data_scanned/groundtruth/docling_v2/ocr_test.pages.json @@ -15,20 +15,20 @@ "a": 255 }, "rect": { - "r_x0": 71.33333333333333, - "r_y0": 99.33333333333333, - "r_x1": 506.6666666666667, - "r_y1": 99.33333333333333, - "r_x2": 506.6666666666667, - "r_y2": 74.66666666666667, - "r_x3": 71.33333333333333, - "r_y3": 74.66666666666667, + "r_x0": 73.34702132031646, + "r_y0": 97.99999977896755, + "r_x1": 503.64955224479564, + "r_y1": 97.99999977896755, + "r_x2": 503.64955224479564, + "r_y2": 76.99999977896756, + "r_x3": 73.34702132031646, + "r_y3": 76.99999977896756, "coord_origin": "TOPLEFT" }, "text": "Docling bundles PDF document conversion to", "orig": "Docling bundles PDF document conversion to", "text_direction": "left_to_right", - "confidence": 0.9555703127793324, + "confidence": 1.0, "from_ocr": true }, { @@ -40,20 +40,20 @@ "a": 255 }, "rect": { - "r_x0": 69.0, - "r_y0": 126.66666666666667, - "r_x1": 506.6666666666667, - "r_y1": 126.66666666666667, - "r_x2": 506.6666666666667, - "r_y2": 100.66666666666667, - "r_x3": 69.0, - "r_y3": 100.66666666666667, + "r_x0": 69.6796630536824, + "r_y0": 124.83139494707741, + "r_x1": 504.8720051760782, + "r_y1": 124.83139494707741, + "r_x2": 504.8720051760782, + "r_y2": 104.00000011573796, + "r_x3": 69.6796630536824, + "r_y3": 104.00000011573796, "coord_origin": "TOPLEFT" }, "text": "JSON and Markdown in an easy self contained", "orig": "JSON and Markdown in an easy self contained", "text_direction": "left_to_right", - "confidence": 0.9741098171752292, + "confidence": 1.0, "from_ocr": true }, { @@ -65,20 +65,20 @@ "a": 255 }, "rect": { - "r_x0": 70.66666666666667, - "r_y0": 153.33333333333334, - "r_x1": 154.0, - "r_y1": 153.33333333333334, - "r_x2": 154.0, - "r_y2": 128.66666666666666, - "r_x3": 70.66666666666667, - "r_y3": 128.66666666666666, + "r_x0": 71.84193505100733, + "r_y0": 152.90926970226084, + "r_x1": 153.088934155825, + "r_y1": 152.90926970226084, + "r_x2": 153.088934155825, + "r_y2": 129.797125232046, + "r_x3": 71.84193505100733, + "r_y3": 129.797125232046, "coord_origin": "TOPLEFT" }, "text": "package", "orig": "package", "text_direction": "left_to_right", - "confidence": 0.6702765056141881, + "confidence": 1.0, "from_ocr": true } ], @@ -90,13 +90,13 @@ "id": 0, "label": "text", "bbox": { - "l": 69.0, - "t": 74.66666666666667, - "r": 506.6666666666667, - "b": 153.33333333333334, + "l": 69.6796630536824, + "t": 76.99999977896756, + "r": 504.8720051760782, + "b": 152.90926970226084, "coord_origin": "TOPLEFT" }, - "confidence": 0.9715733528137207, + "confidence": 0.9715732336044312, "cells": [ { "index": 0, @@ -107,20 +107,20 @@ "a": 255 }, "rect": { - "r_x0": 71.33333333333333, - "r_y0": 99.33333333333333, - "r_x1": 506.6666666666667, - "r_y1": 99.33333333333333, - "r_x2": 506.6666666666667, - "r_y2": 74.66666666666667, - "r_x3": 71.33333333333333, - "r_y3": 74.66666666666667, + "r_x0": 73.34702132031646, + "r_y0": 97.99999977896755, + "r_x1": 503.64955224479564, + "r_y1": 97.99999977896755, + "r_x2": 503.64955224479564, + "r_y2": 76.99999977896756, + "r_x3": 73.34702132031646, + "r_y3": 76.99999977896756, "coord_origin": "TOPLEFT" }, "text": "Docling bundles PDF document conversion to", "orig": "Docling bundles PDF document conversion to", "text_direction": "left_to_right", - "confidence": 0.9555703127793324, + "confidence": 1.0, "from_ocr": true }, { @@ -132,20 +132,20 @@ "a": 255 }, "rect": { - "r_x0": 69.0, - "r_y0": 126.66666666666667, - "r_x1": 506.6666666666667, - "r_y1": 126.66666666666667, - "r_x2": 506.6666666666667, - "r_y2": 100.66666666666667, - "r_x3": 69.0, - "r_y3": 100.66666666666667, + "r_x0": 69.6796630536824, + "r_y0": 124.83139494707741, + "r_x1": 504.8720051760782, + "r_y1": 124.83139494707741, + "r_x2": 504.8720051760782, + "r_y2": 104.00000011573796, + "r_x3": 69.6796630536824, + "r_y3": 104.00000011573796, "coord_origin": "TOPLEFT" }, "text": "JSON and Markdown in an easy self contained", "orig": "JSON and Markdown in an easy self contained", "text_direction": "left_to_right", - "confidence": 0.9741098171752292, + "confidence": 1.0, "from_ocr": true }, { @@ -157,20 +157,20 @@ "a": 255 }, "rect": { - "r_x0": 70.66666666666667, - "r_y0": 153.33333333333334, - "r_x1": 154.0, - "r_y1": 153.33333333333334, - "r_x2": 154.0, - "r_y2": 128.66666666666666, - "r_x3": 70.66666666666667, - "r_y3": 128.66666666666666, + "r_x0": 71.84193505100733, + "r_y0": 152.90926970226084, + "r_x1": 153.088934155825, + "r_y1": 152.90926970226084, + "r_x2": 153.088934155825, + "r_y2": 129.797125232046, + "r_x3": 71.84193505100733, + "r_y3": 129.797125232046, "coord_origin": "TOPLEFT" }, "text": "package", "orig": "package", "text_direction": "left_to_right", - "confidence": 0.6702765056141881, + "confidence": 1.0, "from_ocr": true } ], @@ -195,13 +195,13 @@ "id": 0, "label": "text", "bbox": { - "l": 69.0, - "t": 74.66666666666667, - "r": 506.6666666666667, - "b": 153.33333333333334, + "l": 69.6796630536824, + "t": 76.99999977896756, + "r": 504.8720051760782, + "b": 152.90926970226084, "coord_origin": "TOPLEFT" }, - "confidence": 0.9715733528137207, + "confidence": 0.9715732336044312, "cells": [ { "index": 0, @@ -212,20 +212,20 @@ "a": 255 }, "rect": { - "r_x0": 71.33333333333333, - "r_y0": 99.33333333333333, - "r_x1": 506.6666666666667, - "r_y1": 99.33333333333333, - "r_x2": 506.6666666666667, - "r_y2": 74.66666666666667, - "r_x3": 71.33333333333333, - "r_y3": 74.66666666666667, + "r_x0": 73.34702132031646, + "r_y0": 97.99999977896755, + "r_x1": 503.64955224479564, + "r_y1": 97.99999977896755, + "r_x2": 503.64955224479564, + "r_y2": 76.99999977896756, + "r_x3": 73.34702132031646, + "r_y3": 76.99999977896756, "coord_origin": "TOPLEFT" }, "text": "Docling bundles PDF document conversion to", "orig": "Docling bundles PDF document conversion to", "text_direction": "left_to_right", - "confidence": 0.9555703127793324, + "confidence": 1.0, "from_ocr": true }, { @@ -237,20 +237,20 @@ "a": 255 }, "rect": { - "r_x0": 69.0, - "r_y0": 126.66666666666667, - "r_x1": 506.6666666666667, - "r_y1": 126.66666666666667, - "r_x2": 506.6666666666667, - "r_y2": 100.66666666666667, - "r_x3": 69.0, - "r_y3": 100.66666666666667, + "r_x0": 69.6796630536824, + "r_y0": 124.83139494707741, + "r_x1": 504.8720051760782, + "r_y1": 124.83139494707741, + "r_x2": 504.8720051760782, + "r_y2": 104.00000011573796, + "r_x3": 69.6796630536824, + "r_y3": 104.00000011573796, "coord_origin": "TOPLEFT" }, "text": "JSON and Markdown in an easy self contained", "orig": "JSON and Markdown in an easy self contained", "text_direction": "left_to_right", - "confidence": 0.9741098171752292, + "confidence": 1.0, "from_ocr": true }, { @@ -262,20 +262,20 @@ "a": 255 }, "rect": { - "r_x0": 70.66666666666667, - "r_y0": 153.33333333333334, - "r_x1": 154.0, - "r_y1": 153.33333333333334, - "r_x2": 154.0, - "r_y2": 128.66666666666666, - "r_x3": 70.66666666666667, - "r_y3": 128.66666666666666, + "r_x0": 71.84193505100733, + "r_y0": 152.90926970226084, + "r_x1": 153.088934155825, + "r_y1": 152.90926970226084, + "r_x2": 153.088934155825, + "r_y2": 129.797125232046, + "r_x3": 71.84193505100733, + "r_y3": 129.797125232046, "coord_origin": "TOPLEFT" }, "text": "package", "orig": "package", "text_direction": "left_to_right", - "confidence": 0.6702765056141881, + "confidence": 1.0, "from_ocr": true } ], @@ -293,13 +293,13 @@ "id": 0, "label": "text", "bbox": { - "l": 69.0, - "t": 74.66666666666667, - "r": 506.6666666666667, - "b": 153.33333333333334, + "l": 69.6796630536824, + "t": 76.99999977896756, + "r": 504.8720051760782, + "b": 152.90926970226084, "coord_origin": "TOPLEFT" }, - "confidence": 0.9715733528137207, + "confidence": 0.9715732336044312, "cells": [ { "index": 0, @@ -310,20 +310,20 @@ "a": 255 }, "rect": { - "r_x0": 71.33333333333333, - "r_y0": 99.33333333333333, - "r_x1": 506.6666666666667, - "r_y1": 99.33333333333333, - "r_x2": 506.6666666666667, - "r_y2": 74.66666666666667, - "r_x3": 71.33333333333333, - "r_y3": 74.66666666666667, + "r_x0": 73.34702132031646, + "r_y0": 97.99999977896755, + "r_x1": 503.64955224479564, + "r_y1": 97.99999977896755, + "r_x2": 503.64955224479564, + "r_y2": 76.99999977896756, + "r_x3": 73.34702132031646, + "r_y3": 76.99999977896756, "coord_origin": "TOPLEFT" }, "text": "Docling bundles PDF document conversion to", "orig": "Docling bundles PDF document conversion to", "text_direction": "left_to_right", - "confidence": 0.9555703127793324, + "confidence": 1.0, "from_ocr": true }, { @@ -335,20 +335,20 @@ "a": 255 }, "rect": { - "r_x0": 69.0, - "r_y0": 126.66666666666667, - "r_x1": 506.6666666666667, - "r_y1": 126.66666666666667, - "r_x2": 506.6666666666667, - "r_y2": 100.66666666666667, - "r_x3": 69.0, - "r_y3": 100.66666666666667, + "r_x0": 69.6796630536824, + "r_y0": 124.83139494707741, + "r_x1": 504.8720051760782, + "r_y1": 124.83139494707741, + "r_x2": 504.8720051760782, + "r_y2": 104.00000011573796, + "r_x3": 69.6796630536824, + "r_y3": 104.00000011573796, "coord_origin": "TOPLEFT" }, "text": "JSON and Markdown in an easy self contained", "orig": "JSON and Markdown in an easy self contained", "text_direction": "left_to_right", - "confidence": 0.9741098171752292, + "confidence": 1.0, "from_ocr": true }, { @@ -360,20 +360,20 @@ "a": 255 }, "rect": { - "r_x0": 70.66666666666667, - "r_y0": 153.33333333333334, - "r_x1": 154.0, - "r_y1": 153.33333333333334, - "r_x2": 154.0, - "r_y2": 128.66666666666666, - "r_x3": 70.66666666666667, - "r_y3": 128.66666666666666, + "r_x0": 71.84193505100733, + "r_y0": 152.90926970226084, + "r_x1": 153.088934155825, + "r_y1": 152.90926970226084, + "r_x2": 153.088934155825, + "r_y2": 129.797125232046, + "r_x3": 71.84193505100733, + "r_y3": 129.797125232046, "coord_origin": "TOPLEFT" }, "text": "package", "orig": "package", "text_direction": "left_to_right", - "confidence": 0.6702765056141881, + "confidence": 1.0, "from_ocr": true } ], diff --git a/tests/test_backend_pdfium.py b/tests/test_backend_pdfium.py index 317cdee..917f72d 100644 --- a/tests/test_backend_pdfium.py +++ b/tests/test_backend_pdfium.py @@ -75,3 +75,16 @@ def test_crop_page_image(test_doc_path): def test_num_pages(test_doc_path): doc_backend = _get_backend(test_doc_path) doc_backend.page_count() == 9 + + +def test_merge_row(): + pdf_doc = Path("./tests/data/pdf/multi_page.pdf") + + doc_backend = _get_backend(pdf_doc) + page_backend: PyPdfiumPageBackend = doc_backend.load_page(4) + cell = page_backend.get_text_cells()[0] + + assert ( + cell.text + == "The journey of the word processor—from clunky typewriters to AI-powered platforms—" + )