commit 8104abb37a0c2f805ca389721dbe43eb56ce03f3
Author: Idiot-awa <14024116+idiot-awa@user.noreply.gitee.com>
Date: Mon Jun 29 15:32:32 2026 +0800
first commit
diff --git a/111.html b/111.html
new file mode 100644
index 0000000..09b309d
--- /dev/null
+++ b/111.html
@@ -0,0 +1,658 @@
+
+
+
+
+
+ x-data-spreadsheet
+
+
+
+
+ x-data-spreadsheet
+
+
+
+
+
+
diff --git a/111.xlsx b/111.xlsx
new file mode 100644
index 0000000..8ed8168
Binary files /dev/null and b/111.xlsx differ
diff --git a/__pycache__/generate_sheet.cpython-314.pyc b/__pycache__/generate_sheet.cpython-314.pyc
new file mode 100644
index 0000000..edf1eba
Binary files /dev/null and b/__pycache__/generate_sheet.cpython-314.pyc differ
diff --git a/api.py b/api.py
new file mode 100644
index 0000000..2dea88d
--- /dev/null
+++ b/api.py
@@ -0,0 +1,91 @@
+# -*- coding: utf-8 -*-
+# This file is auto-generated, don't edit it. Thanks.
+import os
+import sys
+import json
+
+from typing import List
+
+from alibabacloud_ocr_api20210707.client import Client as ocr_api20210707Client
+from alibabacloud_credentials.client import Client as CredentialClient
+from alibabacloud_tea_openapi import models as open_api_models
+from alibabacloud_darabonba_stream.client import Client as StreamClient
+from alibabacloud_ocr_api20210707 import models as ocr_api_20210707_models
+from alibabacloud_tea_util import models as util_models
+from alibabacloud_tea_util.client import Client as UtilClient
+from alibabacloud_credentials.models import Config as CredentialConfig
+from alibabacloud_tea_openapi import models as open_api_models
+class Sample:
+ def __init__(self):
+ pass
+
+ @staticmethod
+ def create_client() -> ocr_api20210707Client:
+ """
+ 使用凭据初始化账号Client
+ @return: Client
+ @throws Exception
+ """
+ # 工程代码建议使用更安全的无AK方式,凭据配置方式请参见:https://help.aliyun.com/document_detail/378659.html。
+ credentialsConfig = CredentialConfig(
+ type='access_key',
+ # 必填参数,此处以从环境变量中获取AccessKey ID为例
+ access_key_id='LTAI5t6GQdkoqgAEMkMbrCUM',
+ # 必填参数,此处以从环境变量中获取AccessKey Secret为例
+ access_key_secret='YIbvdZi0Ne8WYSZ1Qlm805gKVujWEO'
+ )
+ credentialsClient = CredentialClient(credentialsConfig)
+
+ config = open_api_models.Config(
+ credential=credentialsClient
+ )
+ # Endpoint 请参考 https://api.aliyun.com/product/ocr-api
+ config.endpoint = f'ocr-api.cn-hangzhou.aliyuncs.com'
+ return ocr_api20210707Client(config)
+
+ @staticmethod
+ def main(
+ args: List[str],
+ ) -> None:
+ client = Sample.create_client()
+ # 需要安装额外的依赖库,直接点击下载完整工程即可看到所有依赖。
+ body_stream = StreamClient.read_from_file_path('test.png')
+ recognize_table_ocr_request = ocr_api_20210707_models.RecognizeTableOcrRequest(
+ body=body_stream
+ )
+ runtime = util_models.RuntimeOptions()
+ try:
+ resp = client.recognize_table_ocr_with_options(recognize_table_ocr_request, runtime)
+ print(json.dumps(resp, default=str, indent=2))
+ except Exception as error:
+ # 此处仅做打印展示,请谨慎对待异常处理,在工程项目中切勿直接忽略异常。
+ # 错误 message
+ print(error)
+ # 诊断地址
+ #print(error.data.get("Recommend"))
+ pass
+
+ @staticmethod
+ async def main_async(
+ args: List[str],
+ ) -> None:
+ client = Sample.create_client()
+ # 需要安装额外的依赖库,直接点击下载完整工程即可看到所有依赖。
+ body_stream = StreamClient.read_from_file_path('')
+ recognize_table_ocr_request = ocr_api_20210707_models.RecognizeTableOcrRequest(
+ body=body_stream
+ )
+ runtime = util_models.RuntimeOptions()
+ try:
+ resp = await client.recognize_table_ocr_with_options_async(recognize_table_ocr_request, runtime)
+ print(json.dumps(resp, default=str, indent=2))
+ except Exception as error:
+ # 此处仅做打印展示,请谨慎对待异常处理,在工程项目中切勿直接忽略异常。
+ # 错误 message
+ print(error.message)
+ # 诊断地址
+ print(error.data.get("Recommend"))
+
+
+if __name__ == '__main__':
+ Sample.main(sys.argv[1:])
\ No newline at end of file
diff --git a/generate_sheet.py b/generate_sheet.py
new file mode 100644
index 0000000..ba24a2a
--- /dev/null
+++ b/generate_sheet.py
@@ -0,0 +1,101 @@
+import json
+import os
+from openpyxl import load_workbook
+from openpyxl.utils import get_column_letter, column_index_from_string
+
+
+def xlsx_to_spreadsheet_data(xlsx_path):
+ wb = load_workbook(xlsx_path, data_only=True)
+ ws = wb.active
+
+ rows = {}
+ max_row = ws.max_row or 0
+ max_col = ws.max_column or 0
+
+ for r in range(1, max_row + 1):
+ row_key = r - 1
+ cells = {}
+ for c in range(1, max_col + 1):
+ cell = ws.cell(row=r, column=c)
+ if cell.value is not None:
+ val = cell.value
+ if not isinstance(val, str):
+ val = str(val)
+ cells[str(c - 1)] = {"text": val}
+ if cells:
+ rows[str(row_key)] = {"cells": cells}
+
+ rows["len"] = max_row
+
+ merges = []
+ for merged_range in ws.merged_cells.ranges:
+ min_row, min_col, max_row2, max_col2 = (
+ merged_range.min_row,
+ merged_range.min_col,
+ merged_range.max_row,
+ merged_range.max_col,
+ )
+ ri = min_row - 1
+ ci = min_col - 1
+ rs = max_row2 - min_row
+ cs = max_col2 - min_col
+
+ range_str = f"{get_column_letter(min_col)}{min_row}:{get_column_letter(max_col2)}{max_row2}"
+ merges.append(range_str)
+
+ row_key = str(ri)
+ if row_key not in rows:
+ rows[row_key] = {"cells": {}}
+ cell_key = str(ci)
+ if cell_key not in rows[row_key]["cells"]:
+ rows[row_key]["cells"][cell_key] = {}
+ rows[row_key]["cells"][cell_key]["merge"] = [rs, cs]
+
+ sheet_name = ws.title if ws.title else "Sheet1"
+
+ cols = {}
+ for col_letter, dim in ws.column_dimensions.items():
+ if dim.width:
+ ci = column_index_from_string(col_letter) - 1
+ px = max(60, int(dim.width * 8))
+ cols[str(ci)] = {"width": px}
+
+ result = {
+ "name": sheet_name,
+ "rows": rows,
+ "merges": merges,
+ }
+ if cols:
+ result["cols"] = cols
+
+ return result
+
+
+def generate_sheet(xlsx_path, output_html_path=None, template_path=None):
+ if template_path is None:
+ template_path = os.path.join(os.path.dirname(__file__), "sheet.html")
+
+ data = xlsx_to_spreadsheet_data(xlsx_path)
+
+ data_json = json.dumps(data, ensure_ascii=False, indent=2)
+ data_json = data_json.replace("", "<\\/script>")
+
+ with open(template_path, "r", encoding="utf-8") as f:
+ html = f.read()
+
+ html = html.replace("{{DATA}}", data_json)
+
+ if output_html_path is None:
+ output_html_path = xlsx_path.rsplit(".", 1)[0] + ".html"
+
+ with open(output_html_path, "w", encoding="utf-8") as f:
+ f.write(html)
+
+ print(f"HTML saved to: {output_html_path}")
+ return output_html_path
+
+
+if __name__ == "__main__":
+ import sys
+ src = sys.argv[1] if len(sys.argv) > 1 else "111.xlsx"
+ generate_sheet(src)
diff --git a/inspect_json.py b/inspect_json.py
new file mode 100644
index 0000000..4d0217d
--- /dev/null
+++ b/inspect_json.py
@@ -0,0 +1,16 @@
+import sys
+sys.stdout.reconfigure(encoding='utf-8')
+import json
+
+d = json.load(open(r"C:\Users\Idiot\Desktop\temp\sample.json", "r", encoding="utf-8"))
+print("Top keys:", list(d.keys()))
+print("Data type:", type(d.get("Data")))
+
+data_val = d.get("Data")
+if isinstance(data_val, str):
+ print("Data is a string, trying to parse...")
+ parsed = json.loads(data_val)
+ print("Parsed Data keys:", list(parsed.keys()))
+elif isinstance(data_val, dict):
+ print("Data keys:", list(data_val.keys()))
+ print("prism_tablesInfo exists:", "prism_tablesInfo" in data_val)
diff --git a/json_to_excel.py b/json_to_excel.py
new file mode 100644
index 0000000..ca01c5b
--- /dev/null
+++ b/json_to_excel.py
@@ -0,0 +1,99 @@
+import json
+from openpyxl import Workbook
+from openpyxl.styles import Font, Alignment, Border, Side, PatternFill
+
+
+def json_to_excel(json_file_path, output_excel_path=None):
+ with open(json_file_path, 'r', encoding='utf-8') as f:
+ data = json.load(f)
+
+ if output_excel_path is None:
+ output_excel_path = json_file_path.rsplit('.', 1)[0] + '.xlsx'
+
+ wb = Workbook()
+ thin_border = Border(
+ left=Side(style='thin'),
+ right=Side(style='thin'),
+ top=Side(style='thin'),
+ bottom=Side(style='thin')
+ )
+
+ data_field = data.get('Data', {})
+ if isinstance(data_field, str):
+ data_field = json.loads(data_field)
+ tables_info = data_field.get('prism_tablesInfo', [])
+
+ for idx, table in enumerate(tables_info):
+ if idx == 0:
+ ws = wb.active
+ ws.title = f"Table_{table.get('tableId', idx)}"
+ else:
+ ws = wb.create_sheet(title=f"Table_{table.get('tableId', idx)}")
+
+ x_cell_size = table.get('xCellSize', 0)
+ y_cell_size = table.get('yCellSize', 0)
+ cell_infos = table.get('cellInfos', [])
+
+ grid = {}
+ for cell in cell_infos:
+ xsc = cell.get('xsc', 0)
+ ysc = cell.get('ysc', 0)
+ xec = cell.get('xec', xsc)
+ yec = cell.get('yec', ysc)
+ word = str(cell.get('word', ''))
+
+ key = (ysc, xsc)
+ grid[key] = {
+ 'word': word,
+ 'xsc': xsc,
+ 'xec': xec,
+ 'ysc': ysc,
+ 'yec': yec,
+ }
+
+ for cell_info in cell_infos:
+ xsc = cell_info.get('xsc', 0)
+ ysc = cell_info.get('ysc', 0)
+ xec = cell_info.get('xec', xsc)
+ yec = cell_info.get('yec', ysc)
+ word = str(cell_info.get('word', ''))
+
+ row_start = ysc + 1
+ col_start = xsc + 1
+ row_end = yec + 1
+ col_end = xec + 1
+
+ ws.cell(row=row_start, column=col_start, value=word)
+
+ if xec > xsc or yec > ysc:
+ ws.merge_cells(
+ start_row=row_start,
+ start_column=col_start,
+ end_row=row_end,
+ end_column=col_end,
+ )
+
+ for r in range(row_start, row_end + 1):
+ for c in range(col_start, col_end + 1):
+ cell_obj = ws.cell(row=r, column=c)
+ cell_obj.border = thin_border
+ cell_obj.alignment = Alignment(
+ horizontal='center',
+ vertical='center',
+ wrap_text=True,
+ )
+ cell_obj.font = Font(name='Arial', size=10)
+
+ from openpyxl.utils import get_column_letter
+ for c in range(1, x_cell_size + 1):
+ ws.column_dimensions[get_column_letter(c)].width = 15
+
+ wb.save(output_excel_path)
+ return output_excel_path
+
+
+if __name__ == '__main__':
+ json_path = 'sample.json'
+ out_path = '111.xlsx'
+ result = json_to_excel(json_path, out_path)
+ print(f"Excel saved to: {result}")
diff --git a/sample.json b/sample.json
new file mode 100644
index 0000000..6509c6e
--- /dev/null
+++ b/sample.json
@@ -0,0 +1,4 @@
+{
+ "RequestId": "D185E882-C8E9-55A1-ABDE-EFB0C6A61397",
+ "Data": "{\"algo_version\":\"\",\"angle\":0,\"content\":\"公路工程项目 土方路基分项工程质量检验评定表 分项工程名称: 工程部位:(柱号、墩台号、孔号) 所属建设项目(合同段): 所分部工程名称: 所属单位工程: 施工单位: 分项工程编号: PD4.2.2 01.在路基用地和取土坑范国内,己清除地表植被、杂物、积水、淤泥和表土,处理坑塘,并按施工技术规范和设计要求对基底进行压实.表土己充分利用. 基本 口2.坝方路基分层坝筑压实,每层表面平整,路拱合适,排水良好,无明显碾压轮迹,无亏坡. 要求 口3.己设置施工临时排水系统,避免冲刷边坡,路床顶面无积水. 4.在设定取土区内合理取土,无溢开滥挖.完工后己按要求对取土坑和奔土场进行依整. 规定值或允许偏差 实测值或实测差值 质量评定 项 次 检查项目 商速公路一级 二级公 三、四 1 2 3 4 5 6 7 8 9 10 平均值、代表值 合格率(%) 合格判定 公路 路 级公路 上路床 0~0.3m ≥96 ≥95 ≥94 经、中及交通 下 0.3m~0.8m 96 ≥95 ≥94 路 荷载等级 床 特重、极重交通 0.3m~1.2m 296 ≥95 - 荷载等级 医卖 轻、中及重交通 1A 上 荷载等级 0.8m~1.5m ≥94 ≥94 ≥93 实 路 提 特薰、极薰交通 第 页 餐 1.2m~1.9m ≥94 ≥94 - 荷载等级 轻、中及交通 下 ≥1.5m 荷载等级 路 ≥93 ≥92 ≥90 提 特、极薰交通 ≥1.9m 荷载等级 2A 弯沉(0.01mm) ≤设计验收弯沉值 3 纵断商程(mm) +10,-15 +10.-20 4 中线偏位(mm) 50 100 5 宽度(mm) 满足设计要求 6 平整度(mm) 415 520 7 横坡(%) ±0.3 ±0.5 8 边坡 满足设计要求 01.路基边线与边坡未出现单向累计长度超过50m的弯折. 口2.路基边坡 外观质量 质量保证资料 口真实、准确、齐全、完整 、护坡道、碎离台无滑坡、爆方或深度超过100mm的冲沟. 工程质量等级评定 口合格 口不合格 检验负责人: 检测: 记录: 复核: 专业监理工程师: 年 月 日 \",\"height\":601,\"orgHeight\":601,\"orgWidth\":1008,\"prism_tablesInfo\":[{\"cellInfos\":[{\"pos\":[{\"x\":86,\"y\":79},{\"x\":162,\"y\":81},{\"x\":162,\"y\":94},{\"x\":86,\"y\":94}],\"tableCellId\":0,\"word\":\"\",\"xec\":3,\"xsc\":3,\"yec\":0,\"ysc\":0},{\"pos\":[{\"x\":162,\"y\":81},{\"x\":230,\"y\":81},{\"x\":230,\"y\":94},{\"x\":162,\"y\":94}],\"tableCellId\":1,\"word\":\"\",\"xec\":4,\"xsc\":4,\"yec\":0,\"ysc\":0},{\"pos\":[{\"x\":230,\"y\":81},{\"x\":301,\"y\":77},{\"x\":301,\"y\":94},{\"x\":230,\"y\":94}],\"tableCellId\":2,\"word\":\"\",\"xec\":5,\"xsc\":5,\"yec\":0,\"ysc\":0},{\"pos\":[{\"x\":301,\"y\":77},{\"x\":344,\"y\":80},{\"x\":345,\"y\":94},{\"x\":301,\"y\":94}],\"tableCellId\":3,\"word\":\"\",\"xec\":6,\"xsc\":6,\"yec\":0,\"ysc\":0},{\"pos\":[{\"x\":344,\"y\":80},{\"x\":387,\"y\":80},{\"x\":386,\"y\":94},{\"x\":345,\"y\":94}],\"tableCellId\":4,\"word\":\"\",\"xec\":7,\"xsc\":7,\"yec\":0,\"ysc\":0},{\"pos\":[{\"x\":387,\"y\":80},{\"x\":429,\"y\":81},{\"x\":429,\"y\":94},{\"x\":386,\"y\":94}],\"tableCellId\":5,\"word\":\"\",\"xec\":8,\"xsc\":8,\"yec\":0,\"ysc\":0},{\"pos\":[{\"x\":429,\"y\":81},{\"x\":471,\"y\":77},{\"x\":470,\"y\":93},{\"x\":429,\"y\":94}],\"tableCellId\":6,\"word\":\"\",\"xec\":9,\"xsc\":9,\"yec\":0,\"ysc\":0},{\"pos\":[{\"x\":471,\"y\":77},{\"x\":513,\"y\":81},{\"x\":513,\"y\":94},{\"x\":470,\"y\":93}],\"tableCellId\":7,\"word\":\"\",\"xec\":10,\"xsc\":10,\"yec\":0,\"ysc\":0},{\"pos\":[{\"x\":513,\"y\":81},{\"x\":555,\"y\":81},{\"x\":554,\"y\":94},{\"x\":513,\"y\":94}],\"tableCellId\":8,\"word\":\"\",\"xec\":11,\"xsc\":11,\"yec\":0,\"ysc\":0},{\"pos\":[{\"x\":555,\"y\":81},{\"x\":597,\"y\":80},{\"x\":595,\"y\":94},{\"x\":554,\"y\":94}],\"tableCellId\":9,\"word\":\"\",\"xec\":12,\"xsc\":12,\"yec\":0,\"ysc\":0},{\"pos\":[{\"x\":597,\"y\":80},{\"x\":639,\"y\":81},{\"x\":639,\"y\":94},{\"x\":595,\"y\":94}],\"tableCellId\":10,\"word\":\"\",\"xec\":13,\"xsc\":13,\"yec\":0,\"ysc\":0},{\"pos\":[{\"x\":639,\"y\":81},{\"x\":681,\"y\":77},{\"x\":681,\"y\":94},{\"x\":639,\"y\":94}],\"tableCellId\":11,\"word\":\"\",\"xec\":14,\"xsc\":14,\"yec\":0,\"ysc\":0},{\"pos\":[{\"x\":681,\"y\":77},{\"x\":723,\"y\":80},{\"x\":722,\"y\":94},{\"x\":681,\"y\":94}],\"tableCellId\":12,\"word\":\"\",\"xec\":15,\"xsc\":15,\"yec\":0,\"ysc\":0},{\"pos\":[{\"x\":723,\"y\":80},{\"x\":765,\"y\":80},{\"x\":765,\"y\":94},{\"x\":722,\"y\":94}],\"tableCellId\":13,\"word\":\"\",\"xec\":16,\"xsc\":16,\"yec\":0,\"ysc\":0},{\"pos\":[{\"x\":765,\"y\":80},{\"x\":807,\"y\":80},{\"x\":807,\"y\":94},{\"x\":765,\"y\":94}],\"tableCellId\":14,\"word\":\"\",\"xec\":17,\"xsc\":17,\"yec\":0,\"ysc\":0},{\"pos\":[{\"x\":807,\"y\":80},{\"x\":889,\"y\":81},{\"x\":889,\"y\":94},{\"x\":807,\"y\":94}],\"tableCellId\":15,\"word\":\"\",\"xec\":18,\"xsc\":18,\"yec\":0,\"ysc\":0},{\"pos\":[{\"x\":889,\"y\":81},{\"x\":1002,\"y\":78},{\"x\":1002,\"y\":93},{\"x\":889,\"y\":94}],\"tableCellId\":16,\"word\":\"PD4.2.2\",\"xec\":21,\"xsc\":19,\"yec\":0,\"ysc\":0},{\"pos\":[{\"x\":0,\"y\":94},{\"x\":43,\"y\":94},{\"x\":43,\"y\":151},{\"x\":0,\"y\":151}],\"tableCellId\":17,\"word\":\"基本要求\",\"xec\":1,\"xsc\":0,\"yec\":1,\"ysc\":1},{\"pos\":[{\"x\":43,\"y\":94},{\"x\":1002,\"y\":93},{\"x\":1002,\"y\":151},{\"x\":43,\"y\":151}],\"tableCellId\":18,\"word\":\"01.在路基用地和取土坑范国内,己清除地表植被、杂物、积水、淤泥和表土,处理坑塘,并按施工技术规范和设计要求对基底进行压实.表土己充分利用.口2.坝方路基分层坝筑压实,每层表面平整,路拱合适,排水良好,无明显碾压轮迹,无亏坡.口3.己设置施工临时排水系统,避免冲刷边坡,路床顶面无积水.4.在设定取土区内合理取土,无溢开滥挖.完工后己按要求对取土坑和奔土场进行依整.\",\"xec\":21,\"xsc\":2,\"yec\":1,\"ysc\":1},{\"pos\":[{\"x\":19,\"y\":151},{\"x\":43,\"y\":151},{\"x\":43,\"y\":207},{\"x\":19,\"y\":207}],\"tableCellId\":19,\"word\":\"项次\",\"xec\":1,\"xsc\":1,\"yec\":3,\"ysc\":2},{\"pos\":[{\"x\":43,\"y\":151},{\"x\":230,\"y\":150},{\"x\":230,\"y\":207},{\"x\":43,\"y\":207}],\"tableCellId\":20,\"word\":\"检查项目\",\"xec\":5,\"xsc\":2,\"yec\":3,\"ysc\":2},{\"pos\":[{\"x\":230,\"y\":150},{\"x\":387,\"y\":151},{\"x\":387,\"y\":168},{\"x\":230,\"y\":168}],\"tableCellId\":21,\"word\":\"规定值或允许偏差\",\"xec\":8,\"xsc\":6,\"yec\":2,\"ysc\":2},{\"pos\":[{\"x\":387,\"y\":151},{\"x\":807,\"y\":151},{\"x\":807,\"y\":168},{\"x\":387,\"y\":168}],\"tableCellId\":22,\"word\":\"实测值或实测差值\",\"xec\":18,\"xsc\":9,\"yec\":2,\"ysc\":2},{\"pos\":[{\"x\":807,\"y\":151},{\"x\":1002,\"y\":151},{\"x\":1002,\"y\":168},{\"x\":807,\"y\":168}],\"tableCellId\":23,\"word\":\"质量评定\",\"xec\":21,\"xsc\":19,\"yec\":2,\"ysc\":2},{\"pos\":[{\"x\":230,\"y\":168},{\"x\":301,\"y\":168},{\"x\":301,\"y\":207},{\"x\":230,\"y\":207}],\"tableCellId\":24,\"word\":\"商速公路一级公路\",\"xec\":6,\"xsc\":6,\"yec\":3,\"ysc\":3},{\"pos\":[{\"x\":301,\"y\":168},{\"x\":344,\"y\":168},{\"x\":344,\"y\":207},{\"x\":301,\"y\":207}],\"tableCellId\":25,\"word\":\"二级公路\",\"xec\":7,\"xsc\":7,\"yec\":3,\"ysc\":3},{\"pos\":[{\"x\":344,\"y\":168},{\"x\":387,\"y\":168},{\"x\":387,\"y\":207},{\"x\":344,\"y\":207}],\"tableCellId\":26,\"word\":\"三、四级公路\",\"xec\":8,\"xsc\":8,\"yec\":3,\"ysc\":3},{\"pos\":[{\"x\":387,\"y\":168},{\"x\":429,\"y\":168},{\"x\":429,\"y\":207},{\"x\":387,\"y\":207}],\"tableCellId\":27,\"word\":\"1\",\"xec\":9,\"xsc\":9,\"yec\":3,\"ysc\":3},{\"pos\":[{\"x\":429,\"y\":168},{\"x\":471,\"y\":168},{\"x\":471,\"y\":207},{\"x\":429,\"y\":207}],\"tableCellId\":28,\"word\":\"2\",\"xec\":10,\"xsc\":10,\"yec\":3,\"ysc\":3},{\"pos\":[{\"x\":471,\"y\":168},{\"x\":513,\"y\":168},{\"x\":513,\"y\":207},{\"x\":471,\"y\":207}],\"tableCellId\":29,\"word\":\"3\",\"xec\":11,\"xsc\":11,\"yec\":3,\"ysc\":3},{\"pos\":[{\"x\":513,\"y\":168},{\"x\":555,\"y\":168},{\"x\":555,\"y\":207},{\"x\":513,\"y\":207}],\"tableCellId\":30,\"word\":\"4\",\"xec\":12,\"xsc\":12,\"yec\":3,\"ysc\":3},{\"pos\":[{\"x\":555,\"y\":168},{\"x\":597,\"y\":168},{\"x\":597,\"y\":207},{\"x\":555,\"y\":207}],\"tableCellId\":31,\"word\":\"5\",\"xec\":13,\"xsc\":13,\"yec\":3,\"ysc\":3},{\"pos\":[{\"x\":597,\"y\":168},{\"x\":639,\"y\":168},{\"x\":639,\"y\":207},{\"x\":597,\"y\":207}],\"tableCellId\":32,\"word\":\"6\",\"xec\":14,\"xsc\":14,\"yec\":3,\"ysc\":3},{\"pos\":[{\"x\":639,\"y\":168},{\"x\":681,\"y\":168},{\"x\":681,\"y\":207},{\"x\":639,\"y\":207}],\"tableCellId\":33,\"word\":\"7\",\"xec\":15,\"xsc\":15,\"yec\":3,\"ysc\":3},{\"pos\":[{\"x\":681,\"y\":168},{\"x\":723,\"y\":168},{\"x\":723,\"y\":207},{\"x\":681,\"y\":207}],\"tableCellId\":34,\"word\":\"8\",\"xec\":16,\"xsc\":16,\"yec\":3,\"ysc\":3},{\"pos\":[{\"x\":723,\"y\":168},{\"x\":765,\"y\":168},{\"x\":765,\"y\":207},{\"x\":723,\"y\":207}],\"tableCellId\":35,\"word\":\"9\",\"xec\":17,\"xsc\":17,\"yec\":3,\"ysc\":3},{\"pos\":[{\"x\":765,\"y\":168},{\"x\":807,\"y\":168},{\"x\":807,\"y\":207},{\"x\":765,\"y\":207}],\"tableCellId\":36,\"word\":\"10\",\"xec\":18,\"xsc\":18,\"yec\":3,\"ysc\":3},{\"pos\":[{\"x\":807,\"y\":168},{\"x\":889,\"y\":168},{\"x\":889,\"y\":207},{\"x\":807,\"y\":207}],\"tableCellId\":37,\"word\":\"平均值、代表值\",\"xec\":19,\"xsc\":19,\"yec\":3,\"ysc\":3},{\"pos\":[{\"x\":889,\"y\":168},{\"x\":952,\"y\":168},{\"x\":952,\"y\":207},{\"x\":889,\"y\":207}],\"tableCellId\":38,\"word\":\"合格率(%)\",\"xec\":20,\"xsc\":20,\"yec\":3,\"ysc\":3},{\"pos\":[{\"x\":952,\"y\":168},{\"x\":1002,\"y\":168},{\"x\":1001,\"y\":207},{\"x\":952,\"y\":207}],\"tableCellId\":39,\"word\":\"合格判定\",\"xec\":21,\"xsc\":21,\"yec\":3,\"ysc\":3},{\"pos\":[{\"x\":19,\"y\":207},{\"x\":43,\"y\":207},{\"x\":43,\"y\":398},{\"x\":19,\"y\":398}],\"tableCellId\":40,\"word\":\"1A\",\"xec\":1,\"xsc\":1,\"yec\":10,\"ysc\":4},{\"pos\":[{\"x\":43,\"y\":207},{\"x\":64,\"y\":207},{\"x\":64,\"y\":398},{\"x\":43,\"y\":398}],\"tableCellId\":41,\"word\":\"医卖医卖\",\"xec\":2,\"xsc\":2,\"yec\":10,\"ysc\":4},{\"pos\":[{\"x\":64,\"y\":207},{\"x\":162,\"y\":207},{\"x\":162,\"y\":224},{\"x\":64,\"y\":224}],\"tableCellId\":42,\"word\":\"上路床\",\"xec\":4,\"xsc\":3,\"yec\":4,\"ysc\":4},{\"pos\":[{\"x\":162,\"y\":207},{\"x\":230,\"y\":207},{\"x\":230,\"y\":224},{\"x\":162,\"y\":224}],\"tableCellId\":43,\"word\":\"0~0.3m\",\"xec\":5,\"xsc\":5,\"yec\":4,\"ysc\":4},{\"pos\":[{\"x\":230,\"y\":207},{\"x\":301,\"y\":207},{\"x\":301,\"y\":224},{\"x\":230,\"y\":224}],\"tableCellId\":44,\"word\":\"≥96\",\"xec\":6,\"xsc\":6,\"yec\":4,\"ysc\":4},{\"pos\":[{\"x\":301,\"y\":207},{\"x\":344,\"y\":207},{\"x\":344,\"y\":224},{\"x\":301,\"y\":224}],\"tableCellId\":45,\"word\":\"≥95\",\"xec\":7,\"xsc\":7,\"yec\":4,\"ysc\":4},{\"pos\":[{\"x\":344,\"y\":207},{\"x\":387,\"y\":207},{\"x\":387,\"y\":224},{\"x\":344,\"y\":224}],\"tableCellId\":46,\"word\":\"≥94\",\"xec\":8,\"xsc\":8,\"yec\":4,\"ysc\":4},{\"pos\":[{\"x\":387,\"y\":207},{\"x\":429,\"y\":207},{\"x\":429,\"y\":224},{\"x\":387,\"y\":224}],\"tableCellId\":47,\"word\":\"\",\"xec\":9,\"xsc\":9,\"yec\":4,\"ysc\":4},{\"pos\":[{\"x\":429,\"y\":207},{\"x\":471,\"y\":207},{\"x\":471,\"y\":224},{\"x\":429,\"y\":224}],\"tableCellId\":48,\"word\":\"\",\"xec\":10,\"xsc\":10,\"yec\":4,\"ysc\":4},{\"pos\":[{\"x\":471,\"y\":207},{\"x\":513,\"y\":207},{\"x\":513,\"y\":224},{\"x\":471,\"y\":224}],\"tableCellId\":49,\"word\":\"\",\"xec\":11,\"xsc\":11,\"yec\":4,\"ysc\":4},{\"pos\":[{\"x\":513,\"y\":207},{\"x\":555,\"y\":207},{\"x\":555,\"y\":224},{\"x\":513,\"y\":224}],\"tableCellId\":50,\"word\":\"\",\"xec\":12,\"xsc\":12,\"yec\":4,\"ysc\":4},{\"pos\":[{\"x\":555,\"y\":207},{\"x\":597,\"y\":207},{\"x\":597,\"y\":224},{\"x\":555,\"y\":224}],\"tableCellId\":51,\"word\":\"\",\"xec\":13,\"xsc\":13,\"yec\":4,\"ysc\":4},{\"pos\":[{\"x\":597,\"y\":207},{\"x\":639,\"y\":207},{\"x\":639,\"y\":224},{\"x\":597,\"y\":224}],\"tableCellId\":52,\"word\":\"\",\"xec\":14,\"xsc\":14,\"yec\":4,\"ysc\":4},{\"pos\":[{\"x\":639,\"y\":207},{\"x\":681,\"y\":207},{\"x\":681,\"y\":224},{\"x\":639,\"y\":224}],\"tableCellId\":53,\"word\":\"\",\"xec\":15,\"xsc\":15,\"yec\":4,\"ysc\":4},{\"pos\":[{\"x\":681,\"y\":207},{\"x\":723,\"y\":207},{\"x\":723,\"y\":224},{\"x\":681,\"y\":224}],\"tableCellId\":54,\"word\":\"\",\"xec\":16,\"xsc\":16,\"yec\":4,\"ysc\":4},{\"pos\":[{\"x\":723,\"y\":207},{\"x\":765,\"y\":207},{\"x\":765,\"y\":224},{\"x\":723,\"y\":224}],\"tableCellId\":55,\"word\":\"\",\"xec\":17,\"xsc\":17,\"yec\":4,\"ysc\":4},{\"pos\":[{\"x\":765,\"y\":207},{\"x\":807,\"y\":207},{\"x\":807,\"y\":224},{\"x\":765,\"y\":224}],\"tableCellId\":56,\"word\":\"\",\"xec\":18,\"xsc\":18,\"yec\":4,\"ysc\":4},{\"pos\":[{\"x\":807,\"y\":207},{\"x\":889,\"y\":207},{\"x\":889,\"y\":224},{\"x\":807,\"y\":224}],\"tableCellId\":57,\"word\":\"\",\"xec\":19,\"xsc\":19,\"yec\":4,\"ysc\":4},{\"pos\":[{\"x\":889,\"y\":207},{\"x\":952,\"y\":207},{\"x\":952,\"y\":224},{\"x\":889,\"y\":224}],\"tableCellId\":58,\"word\":\"\",\"xec\":20,\"xsc\":20,\"yec\":4,\"ysc\":4},{\"pos\":[{\"x\":952,\"y\":207},{\"x\":1001,\"y\":207},{\"x\":1001,\"y\":224},{\"x\":952,\"y\":224}],\"tableCellId\":59,\"word\":\"\",\"xec\":21,\"xsc\":21,\"yec\":4,\"ysc\":4},{\"pos\":[{\"x\":64,\"y\":224},{\"x\":86,\"y\":224},{\"x\":86,\"y\":282},{\"x\":64,\"y\":282}],\"tableCellId\":60,\"word\":\"下路床\",\"xec\":3,\"xsc\":3,\"yec\":6,\"ysc\":5},{\"pos\":[{\"x\":86,\"y\":224},{\"x\":162,\"y\":224},{\"x\":162,\"y\":253},{\"x\":86,\"y\":253}],\"tableCellId\":61,\"word\":\"经、中及交通荷载等级\",\"xec\":4,\"xsc\":4,\"yec\":5,\"ysc\":5},{\"pos\":[{\"x\":162,\"y\":224},{\"x\":230,\"y\":224},{\"x\":230,\"y\":253},{\"x\":162,\"y\":253}],\"tableCellId\":62,\"word\":\"0.3m~0.8m\",\"xec\":5,\"xsc\":5,\"yec\":5,\"ysc\":5},{\"pos\":[{\"x\":230,\"y\":224},{\"x\":301,\"y\":224},{\"x\":301,\"y\":253},{\"x\":230,\"y\":253}],\"tableCellId\":63,\"word\":\"96\",\"xec\":6,\"xsc\":6,\"yec\":5,\"ysc\":5},{\"pos\":[{\"x\":301,\"y\":224},{\"x\":344,\"y\":224},{\"x\":344,\"y\":253},{\"x\":301,\"y\":253}],\"tableCellId\":64,\"word\":\"≥95\",\"xec\":7,\"xsc\":7,\"yec\":5,\"ysc\":5},{\"pos\":[{\"x\":344,\"y\":224},{\"x\":387,\"y\":224},{\"x\":387,\"y\":253},{\"x\":344,\"y\":253}],\"tableCellId\":65,\"word\":\"≥94\",\"xec\":8,\"xsc\":8,\"yec\":5,\"ysc\":5},{\"pos\":[{\"x\":387,\"y\":224},{\"x\":807,\"y\":224},{\"x\":807,\"y\":253},{\"x\":387,\"y\":253}],\"tableCellId\":66,\"word\":\"\",\"xec\":18,\"xsc\":9,\"yec\":5,\"ysc\":5},{\"pos\":[{\"x\":807,\"y\":224},{\"x\":889,\"y\":224},{\"x\":889,\"y\":253},{\"x\":807,\"y\":253}],\"tableCellId\":67,\"word\":\"\",\"xec\":19,\"xsc\":19,\"yec\":5,\"ysc\":5},{\"pos\":[{\"x\":889,\"y\":224},{\"x\":952,\"y\":224},{\"x\":952,\"y\":253},{\"x\":889,\"y\":253}],\"tableCellId\":68,\"word\":\"\",\"xec\":20,\"xsc\":20,\"yec\":5,\"ysc\":5},{\"pos\":[{\"x\":952,\"y\":224},{\"x\":1001,\"y\":224},{\"x\":1001,\"y\":253},{\"x\":952,\"y\":253}],\"tableCellId\":69,\"word\":\"\",\"xec\":21,\"xsc\":21,\"yec\":5,\"ysc\":5},{\"pos\":[{\"x\":86,\"y\":253},{\"x\":162,\"y\":253},{\"x\":162,\"y\":282},{\"x\":86,\"y\":282}],\"tableCellId\":70,\"word\":\"特重、极重交通荷载等级\",\"xec\":4,\"xsc\":4,\"yec\":6,\"ysc\":6},{\"pos\":[{\"x\":162,\"y\":253},{\"x\":230,\"y\":253},{\"x\":230,\"y\":282},{\"x\":162,\"y\":282}],\"tableCellId\":71,\"word\":\"0.3m~1.2m\",\"xec\":5,\"xsc\":5,\"yec\":6,\"ysc\":6},{\"pos\":[{\"x\":230,\"y\":253},{\"x\":301,\"y\":253},{\"x\":301,\"y\":282},{\"x\":230,\"y\":282}],\"tableCellId\":72,\"word\":\"296\",\"xec\":6,\"xsc\":6,\"yec\":6,\"ysc\":6},{\"pos\":[{\"x\":301,\"y\":253},{\"x\":344,\"y\":253},{\"x\":344,\"y\":282},{\"x\":301,\"y\":282}],\"tableCellId\":73,\"word\":\"≥95\",\"xec\":7,\"xsc\":7,\"yec\":6,\"ysc\":6},{\"pos\":[{\"x\":344,\"y\":253},{\"x\":387,\"y\":253},{\"x\":387,\"y\":282},{\"x\":344,\"y\":282}],\"tableCellId\":74,\"word\":\"-\",\"xec\":8,\"xsc\":8,\"yec\":6,\"ysc\":6},{\"pos\":[{\"x\":387,\"y\":253},{\"x\":429,\"y\":253},{\"x\":429,\"y\":282},{\"x\":387,\"y\":282}],\"tableCellId\":75,\"word\":\"\",\"xec\":9,\"xsc\":9,\"yec\":6,\"ysc\":6},{\"pos\":[{\"x\":429,\"y\":253},{\"x\":471,\"y\":253},{\"x\":471,\"y\":282},{\"x\":429,\"y\":282}],\"tableCellId\":76,\"word\":\"\",\"xec\":10,\"xsc\":10,\"yec\":6,\"ysc\":6},{\"pos\":[{\"x\":471,\"y\":253},{\"x\":513,\"y\":253},{\"x\":513,\"y\":282},{\"x\":471,\"y\":282}],\"tableCellId\":77,\"word\":\"\",\"xec\":11,\"xsc\":11,\"yec\":6,\"ysc\":6},{\"pos\":[{\"x\":513,\"y\":253},{\"x\":555,\"y\":253},{\"x\":555,\"y\":282},{\"x\":513,\"y\":282}],\"tableCellId\":78,\"word\":\"\",\"xec\":12,\"xsc\":12,\"yec\":6,\"ysc\":6},{\"pos\":[{\"x\":555,\"y\":253},{\"x\":597,\"y\":253},{\"x\":597,\"y\":282},{\"x\":555,\"y\":282}],\"tableCellId\":79,\"word\":\"\",\"xec\":13,\"xsc\":13,\"yec\":6,\"ysc\":6},{\"pos\":[{\"x\":597,\"y\":253},{\"x\":639,\"y\":253},{\"x\":639,\"y\":282},{\"x\":597,\"y\":282}],\"tableCellId\":80,\"word\":\"\",\"xec\":14,\"xsc\":14,\"yec\":6,\"ysc\":6},{\"pos\":[{\"x\":639,\"y\":253},{\"x\":681,\"y\":253},{\"x\":681,\"y\":282},{\"x\":639,\"y\":282}],\"tableCellId\":81,\"word\":\"\",\"xec\":15,\"xsc\":15,\"yec\":6,\"ysc\":6},{\"pos\":[{\"x\":681,\"y\":253},{\"x\":723,\"y\":253},{\"x\":723,\"y\":282},{\"x\":681,\"y\":282}],\"tableCellId\":82,\"word\":\"\",\"xec\":16,\"xsc\":16,\"yec\":6,\"ysc\":6},{\"pos\":[{\"x\":723,\"y\":253},{\"x\":765,\"y\":253},{\"x\":765,\"y\":282},{\"x\":723,\"y\":282}],\"tableCellId\":83,\"word\":\"\",\"xec\":17,\"xsc\":17,\"yec\":6,\"ysc\":6},{\"pos\":[{\"x\":765,\"y\":253},{\"x\":807,\"y\":253},{\"x\":807,\"y\":282},{\"x\":765,\"y\":282}],\"tableCellId\":84,\"word\":\"\",\"xec\":18,\"xsc\":18,\"yec\":6,\"ysc\":6},{\"pos\":[{\"x\":807,\"y\":253},{\"x\":889,\"y\":253},{\"x\":889,\"y\":282},{\"x\":807,\"y\":282}],\"tableCellId\":85,\"word\":\"\",\"xec\":19,\"xsc\":19,\"yec\":6,\"ysc\":6},{\"pos\":[{\"x\":889,\"y\":253},{\"x\":952,\"y\":253},{\"x\":952,\"y\":282},{\"x\":889,\"y\":282}],\"tableCellId\":86,\"word\":\"\",\"xec\":20,\"xsc\":20,\"yec\":6,\"ysc\":6},{\"pos\":[{\"x\":952,\"y\":253},{\"x\":1001,\"y\":253},{\"x\":1001,\"y\":282},{\"x\":952,\"y\":282}],\"tableCellId\":87,\"word\":\"\",\"xec\":21,\"xsc\":21,\"yec\":6,\"ysc\":6},{\"pos\":[{\"x\":64,\"y\":282},{\"x\":86,\"y\":282},{\"x\":86,\"y\":340},{\"x\":64,\"y\":340}],\"tableCellId\":88,\"word\":\"上路提\",\"xec\":3,\"xsc\":3,\"yec\":8,\"ysc\":7},{\"pos\":[{\"x\":86,\"y\":282},{\"x\":162,\"y\":282},{\"x\":162,\"y\":311},{\"x\":86,\"y\":311}],\"tableCellId\":89,\"word\":\"轻、中及重交通荷载等级\",\"xec\":4,\"xsc\":4,\"yec\":7,\"ysc\":7},{\"pos\":[{\"x\":162,\"y\":282},{\"x\":230,\"y\":282},{\"x\":230,\"y\":311},{\"x\":162,\"y\":311}],\"tableCellId\":90,\"word\":\"0.8m~1.5m\",\"xec\":5,\"xsc\":5,\"yec\":7,\"ysc\":7},{\"pos\":[{\"x\":230,\"y\":282},{\"x\":301,\"y\":282},{\"x\":301,\"y\":311},{\"x\":230,\"y\":311}],\"tableCellId\":91,\"word\":\"≥94\",\"xec\":6,\"xsc\":6,\"yec\":7,\"ysc\":7},{\"pos\":[{\"x\":301,\"y\":282},{\"x\":344,\"y\":282},{\"x\":344,\"y\":311},{\"x\":301,\"y\":311}],\"tableCellId\":92,\"word\":\"≥94\",\"xec\":7,\"xsc\":7,\"yec\":7,\"ysc\":7},{\"pos\":[{\"x\":344,\"y\":282},{\"x\":387,\"y\":282},{\"x\":387,\"y\":311},{\"x\":344,\"y\":311}],\"tableCellId\":93,\"word\":\"≥93\",\"xec\":8,\"xsc\":8,\"yec\":7,\"ysc\":7},{\"pos\":[{\"x\":387,\"y\":282},{\"x\":429,\"y\":282},{\"x\":429,\"y\":311},{\"x\":387,\"y\":311}],\"tableCellId\":94,\"word\":\"\",\"xec\":9,\"xsc\":9,\"yec\":7,\"ysc\":7},{\"pos\":[{\"x\":429,\"y\":282},{\"x\":471,\"y\":282},{\"x\":471,\"y\":311},{\"x\":429,\"y\":311}],\"tableCellId\":95,\"word\":\"\",\"xec\":10,\"xsc\":10,\"yec\":7,\"ysc\":7},{\"pos\":[{\"x\":471,\"y\":282},{\"x\":513,\"y\":282},{\"x\":513,\"y\":311},{\"x\":471,\"y\":311}],\"tableCellId\":96,\"word\":\"\",\"xec\":11,\"xsc\":11,\"yec\":7,\"ysc\":7},{\"pos\":[{\"x\":513,\"y\":282},{\"x\":555,\"y\":282},{\"x\":555,\"y\":311},{\"x\":513,\"y\":311}],\"tableCellId\":97,\"word\":\"\",\"xec\":12,\"xsc\":12,\"yec\":7,\"ysc\":7},{\"pos\":[{\"x\":555,\"y\":282},{\"x\":597,\"y\":282},{\"x\":597,\"y\":311},{\"x\":555,\"y\":311}],\"tableCellId\":98,\"word\":\"\",\"xec\":13,\"xsc\":13,\"yec\":7,\"ysc\":7},{\"pos\":[{\"x\":597,\"y\":282},{\"x\":639,\"y\":282},{\"x\":639,\"y\":311},{\"x\":597,\"y\":311}],\"tableCellId\":99,\"word\":\"\",\"xec\":14,\"xsc\":14,\"yec\":7,\"ysc\":7},{\"pos\":[{\"x\":639,\"y\":282},{\"x\":681,\"y\":282},{\"x\":681,\"y\":311},{\"x\":639,\"y\":311}],\"tableCellId\":100,\"word\":\"\",\"xec\":15,\"xsc\":15,\"yec\":7,\"ysc\":7},{\"pos\":[{\"x\":681,\"y\":282},{\"x\":723,\"y\":282},{\"x\":723,\"y\":311},{\"x\":681,\"y\":311}],\"tableCellId\":101,\"word\":\"\",\"xec\":16,\"xsc\":16,\"yec\":7,\"ysc\":7},{\"pos\":[{\"x\":723,\"y\":282},{\"x\":765,\"y\":282},{\"x\":765,\"y\":311},{\"x\":723,\"y\":311}],\"tableCellId\":102,\"word\":\"\",\"xec\":17,\"xsc\":17,\"yec\":7,\"ysc\":7},{\"pos\":[{\"x\":765,\"y\":282},{\"x\":807,\"y\":282},{\"x\":807,\"y\":311},{\"x\":765,\"y\":311}],\"tableCellId\":103,\"word\":\"\",\"xec\":18,\"xsc\":18,\"yec\":7,\"ysc\":7},{\"pos\":[{\"x\":807,\"y\":282},{\"x\":889,\"y\":282},{\"x\":889,\"y\":311},{\"x\":807,\"y\":311}],\"tableCellId\":104,\"word\":\"\",\"xec\":19,\"xsc\":19,\"yec\":7,\"ysc\":7},{\"pos\":[{\"x\":889,\"y\":282},{\"x\":952,\"y\":282},{\"x\":952,\"y\":311},{\"x\":889,\"y\":311}],\"tableCellId\":105,\"word\":\"\",\"xec\":20,\"xsc\":20,\"yec\":7,\"ysc\":7},{\"pos\":[{\"x\":952,\"y\":282},{\"x\":1001,\"y\":282},{\"x\":1001,\"y\":311},{\"x\":952,\"y\":311}],\"tableCellId\":106,\"word\":\"\",\"xec\":21,\"xsc\":21,\"yec\":7,\"ysc\":7},{\"pos\":[{\"x\":86,\"y\":311},{\"x\":162,\"y\":311},{\"x\":162,\"y\":340},{\"x\":86,\"y\":340}],\"tableCellId\":107,\"word\":\"特薰、极薰交通荷载等级\",\"xec\":4,\"xsc\":4,\"yec\":8,\"ysc\":8},{\"pos\":[{\"x\":162,\"y\":311},{\"x\":230,\"y\":311},{\"x\":230,\"y\":340},{\"x\":162,\"y\":340}],\"tableCellId\":108,\"word\":\"1.2m~1.9m\",\"xec\":5,\"xsc\":5,\"yec\":8,\"ysc\":8},{\"pos\":[{\"x\":230,\"y\":311},{\"x\":301,\"y\":311},{\"x\":301,\"y\":340},{\"x\":230,\"y\":340}],\"tableCellId\":109,\"word\":\"≥94\",\"xec\":6,\"xsc\":6,\"yec\":8,\"ysc\":8},{\"pos\":[{\"x\":301,\"y\":311},{\"x\":344,\"y\":311},{\"x\":344,\"y\":340},{\"x\":301,\"y\":340}],\"tableCellId\":110,\"word\":\"≥94\",\"xec\":7,\"xsc\":7,\"yec\":8,\"ysc\":8},{\"pos\":[{\"x\":344,\"y\":311},{\"x\":387,\"y\":311},{\"x\":387,\"y\":340},{\"x\":344,\"y\":340}],\"tableCellId\":111,\"word\":\"-\",\"xec\":8,\"xsc\":8,\"yec\":8,\"ysc\":8},{\"pos\":[{\"x\":387,\"y\":311},{\"x\":429,\"y\":311},{\"x\":429,\"y\":340},{\"x\":387,\"y\":340}],\"tableCellId\":112,\"word\":\"\",\"xec\":9,\"xsc\":9,\"yec\":8,\"ysc\":8},{\"pos\":[{\"x\":429,\"y\":311},{\"x\":471,\"y\":311},{\"x\":471,\"y\":340},{\"x\":429,\"y\":340}],\"tableCellId\":113,\"word\":\"\",\"xec\":10,\"xsc\":10,\"yec\":8,\"ysc\":8},{\"pos\":[{\"x\":471,\"y\":311},{\"x\":513,\"y\":311},{\"x\":513,\"y\":340},{\"x\":471,\"y\":340}],\"tableCellId\":114,\"word\":\"\",\"xec\":11,\"xsc\":11,\"yec\":8,\"ysc\":8},{\"pos\":[{\"x\":513,\"y\":311},{\"x\":555,\"y\":311},{\"x\":555,\"y\":340},{\"x\":513,\"y\":340}],\"tableCellId\":115,\"word\":\"\",\"xec\":12,\"xsc\":12,\"yec\":8,\"ysc\":8},{\"pos\":[{\"x\":555,\"y\":311},{\"x\":597,\"y\":311},{\"x\":597,\"y\":340},{\"x\":555,\"y\":340}],\"tableCellId\":116,\"word\":\"\",\"xec\":13,\"xsc\":13,\"yec\":8,\"ysc\":8},{\"pos\":[{\"x\":597,\"y\":311},{\"x\":639,\"y\":311},{\"x\":639,\"y\":340},{\"x\":597,\"y\":340}],\"tableCellId\":117,\"word\":\"\",\"xec\":14,\"xsc\":14,\"yec\":8,\"ysc\":8},{\"pos\":[{\"x\":639,\"y\":311},{\"x\":681,\"y\":311},{\"x\":681,\"y\":340},{\"x\":639,\"y\":340}],\"tableCellId\":118,\"word\":\"\",\"xec\":15,\"xsc\":15,\"yec\":8,\"ysc\":8},{\"pos\":[{\"x\":681,\"y\":311},{\"x\":723,\"y\":311},{\"x\":723,\"y\":340},{\"x\":681,\"y\":340}],\"tableCellId\":119,\"word\":\"\",\"xec\":16,\"xsc\":16,\"yec\":8,\"ysc\":8},{\"pos\":[{\"x\":723,\"y\":311},{\"x\":765,\"y\":311},{\"x\":765,\"y\":340},{\"x\":723,\"y\":340}],\"tableCellId\":120,\"word\":\"\",\"xec\":17,\"xsc\":17,\"yec\":8,\"ysc\":8},{\"pos\":[{\"x\":765,\"y\":311},{\"x\":807,\"y\":311},{\"x\":807,\"y\":340},{\"x\":765,\"y\":340}],\"tableCellId\":121,\"word\":\"\",\"xec\":18,\"xsc\":18,\"yec\":8,\"ysc\":8},{\"pos\":[{\"x\":807,\"y\":311},{\"x\":889,\"y\":311},{\"x\":889,\"y\":340},{\"x\":807,\"y\":340}],\"tableCellId\":122,\"word\":\"\",\"xec\":19,\"xsc\":19,\"yec\":8,\"ysc\":8},{\"pos\":[{\"x\":889,\"y\":311},{\"x\":952,\"y\":311},{\"x\":952,\"y\":340},{\"x\":889,\"y\":340}],\"tableCellId\":123,\"word\":\"\",\"xec\":20,\"xsc\":20,\"yec\":8,\"ysc\":8},{\"pos\":[{\"x\":952,\"y\":311},{\"x\":1001,\"y\":311},{\"x\":1001,\"y\":340},{\"x\":952,\"y\":340}],\"tableCellId\":124,\"word\":\"\",\"xec\":21,\"xsc\":21,\"yec\":8,\"ysc\":8},{\"pos\":[{\"x\":64,\"y\":340},{\"x\":86,\"y\":340},{\"x\":86,\"y\":398},{\"x\":64,\"y\":398}],\"tableCellId\":125,\"word\":\"下路提\",\"xec\":3,\"xsc\":3,\"yec\":10,\"ysc\":9},{\"pos\":[{\"x\":86,\"y\":340},{\"x\":162,\"y\":340},{\"x\":162,\"y\":369},{\"x\":86,\"y\":369}],\"tableCellId\":126,\"word\":\"轻、中及交通荷载等级\",\"xec\":4,\"xsc\":4,\"yec\":9,\"ysc\":9},{\"pos\":[{\"x\":162,\"y\":340},{\"x\":230,\"y\":340},{\"x\":230,\"y\":369},{\"x\":162,\"y\":369}],\"tableCellId\":127,\"word\":\"≥1.5m\",\"xec\":5,\"xsc\":5,\"yec\":9,\"ysc\":9},{\"pos\":[{\"x\":230,\"y\":340},{\"x\":301,\"y\":340},{\"x\":301,\"y\":398},{\"x\":230,\"y\":398}],\"tableCellId\":128,\"word\":\"≥93\",\"xec\":6,\"xsc\":6,\"yec\":10,\"ysc\":9},{\"pos\":[{\"x\":301,\"y\":340},{\"x\":344,\"y\":340},{\"x\":344,\"y\":398},{\"x\":301,\"y\":398}],\"tableCellId\":129,\"word\":\"≥92\",\"xec\":7,\"xsc\":7,\"yec\":10,\"ysc\":9},{\"pos\":[{\"x\":344,\"y\":340},{\"x\":387,\"y\":340},{\"x\":387,\"y\":398},{\"x\":344,\"y\":398}],\"tableCellId\":130,\"word\":\"≥90\",\"xec\":8,\"xsc\":8,\"yec\":10,\"ysc\":9},{\"pos\":[{\"x\":387,\"y\":340},{\"x\":429,\"y\":340},{\"x\":429,\"y\":369},{\"x\":387,\"y\":369}],\"tableCellId\":131,\"word\":\"\",\"xec\":9,\"xsc\":9,\"yec\":9,\"ysc\":9},{\"pos\":[{\"x\":429,\"y\":340},{\"x\":471,\"y\":340},{\"x\":471,\"y\":369},{\"x\":429,\"y\":369}],\"tableCellId\":132,\"word\":\"\",\"xec\":10,\"xsc\":10,\"yec\":9,\"ysc\":9},{\"pos\":[{\"x\":471,\"y\":340},{\"x\":513,\"y\":340},{\"x\":513,\"y\":369},{\"x\":471,\"y\":369}],\"tableCellId\":133,\"word\":\"\",\"xec\":11,\"xsc\":11,\"yec\":9,\"ysc\":9},{\"pos\":[{\"x\":513,\"y\":340},{\"x\":555,\"y\":340},{\"x\":555,\"y\":369},{\"x\":513,\"y\":369}],\"tableCellId\":134,\"word\":\"\",\"xec\":12,\"xsc\":12,\"yec\":9,\"ysc\":9},{\"pos\":[{\"x\":555,\"y\":340},{\"x\":597,\"y\":340},{\"x\":597,\"y\":369},{\"x\":555,\"y\":369}],\"tableCellId\":135,\"word\":\"\",\"xec\":13,\"xsc\":13,\"yec\":9,\"ysc\":9},{\"pos\":[{\"x\":597,\"y\":340},{\"x\":639,\"y\":340},{\"x\":639,\"y\":369},{\"x\":597,\"y\":369}],\"tableCellId\":136,\"word\":\"\",\"xec\":14,\"xsc\":14,\"yec\":9,\"ysc\":9},{\"pos\":[{\"x\":639,\"y\":340},{\"x\":681,\"y\":340},{\"x\":681,\"y\":369},{\"x\":639,\"y\":369}],\"tableCellId\":137,\"word\":\"\",\"xec\":15,\"xsc\":15,\"yec\":9,\"ysc\":9},{\"pos\":[{\"x\":681,\"y\":340},{\"x\":723,\"y\":340},{\"x\":723,\"y\":369},{\"x\":681,\"y\":369}],\"tableCellId\":138,\"word\":\"\",\"xec\":16,\"xsc\":16,\"yec\":9,\"ysc\":9},{\"pos\":[{\"x\":723,\"y\":340},{\"x\":765,\"y\":340},{\"x\":765,\"y\":369},{\"x\":723,\"y\":369}],\"tableCellId\":139,\"word\":\"\",\"xec\":17,\"xsc\":17,\"yec\":9,\"ysc\":9},{\"pos\":[{\"x\":765,\"y\":340},{\"x\":807,\"y\":340},{\"x\":807,\"y\":369},{\"x\":765,\"y\":369}],\"tableCellId\":140,\"word\":\"\",\"xec\":18,\"xsc\":18,\"yec\":9,\"ysc\":9},{\"pos\":[{\"x\":807,\"y\":340},{\"x\":889,\"y\":340},{\"x\":889,\"y\":369},{\"x\":807,\"y\":369}],\"tableCellId\":141,\"word\":\"\",\"xec\":19,\"xsc\":19,\"yec\":9,\"ysc\":9},{\"pos\":[{\"x\":889,\"y\":340},{\"x\":952,\"y\":340},{\"x\":952,\"y\":369},{\"x\":889,\"y\":369}],\"tableCellId\":142,\"word\":\"\",\"xec\":20,\"xsc\":20,\"yec\":9,\"ysc\":9},{\"pos\":[{\"x\":952,\"y\":340},{\"x\":1001,\"y\":340},{\"x\":1002,\"y\":369},{\"x\":952,\"y\":369}],\"tableCellId\":143,\"word\":\"\",\"xec\":21,\"xsc\":21,\"yec\":9,\"ysc\":9},{\"pos\":[{\"x\":86,\"y\":369},{\"x\":162,\"y\":369},{\"x\":162,\"y\":398},{\"x\":86,\"y\":398}],\"tableCellId\":144,\"word\":\"特、极薰交通荷载等级\",\"xec\":4,\"xsc\":4,\"yec\":10,\"ysc\":10},{\"pos\":[{\"x\":162,\"y\":369},{\"x\":230,\"y\":369},{\"x\":230,\"y\":398},{\"x\":162,\"y\":398}],\"tableCellId\":145,\"word\":\"≥1.9m\",\"xec\":5,\"xsc\":5,\"yec\":10,\"ysc\":10},{\"pos\":[{\"x\":387,\"y\":369},{\"x\":429,\"y\":369},{\"x\":429,\"y\":398},{\"x\":387,\"y\":398}],\"tableCellId\":146,\"word\":\"\",\"xec\":9,\"xsc\":9,\"yec\":10,\"ysc\":10},{\"pos\":[{\"x\":429,\"y\":369},{\"x\":471,\"y\":369},{\"x\":471,\"y\":398},{\"x\":429,\"y\":398}],\"tableCellId\":147,\"word\":\"\",\"xec\":10,\"xsc\":10,\"yec\":10,\"ysc\":10},{\"pos\":[{\"x\":471,\"y\":369},{\"x\":513,\"y\":369},{\"x\":513,\"y\":398},{\"x\":471,\"y\":398}],\"tableCellId\":148,\"word\":\"\",\"xec\":11,\"xsc\":11,\"yec\":10,\"ysc\":10},{\"pos\":[{\"x\":513,\"y\":369},{\"x\":555,\"y\":369},{\"x\":555,\"y\":398},{\"x\":513,\"y\":398}],\"tableCellId\":149,\"word\":\"\",\"xec\":12,\"xsc\":12,\"yec\":10,\"ysc\":10},{\"pos\":[{\"x\":555,\"y\":369},{\"x\":597,\"y\":369},{\"x\":597,\"y\":398},{\"x\":555,\"y\":398}],\"tableCellId\":150,\"word\":\"\",\"xec\":13,\"xsc\":13,\"yec\":10,\"ysc\":10},{\"pos\":[{\"x\":597,\"y\":369},{\"x\":639,\"y\":369},{\"x\":639,\"y\":398},{\"x\":597,\"y\":398}],\"tableCellId\":151,\"word\":\"\",\"xec\":14,\"xsc\":14,\"yec\":10,\"ysc\":10},{\"pos\":[{\"x\":639,\"y\":369},{\"x\":681,\"y\":369},{\"x\":681,\"y\":398},{\"x\":639,\"y\":398}],\"tableCellId\":152,\"word\":\"\",\"xec\":15,\"xsc\":15,\"yec\":10,\"ysc\":10},{\"pos\":[{\"x\":681,\"y\":369},{\"x\":723,\"y\":369},{\"x\":723,\"y\":398},{\"x\":681,\"y\":398}],\"tableCellId\":153,\"word\":\"\",\"xec\":16,\"xsc\":16,\"yec\":10,\"ysc\":10},{\"pos\":[{\"x\":723,\"y\":369},{\"x\":765,\"y\":369},{\"x\":765,\"y\":398},{\"x\":723,\"y\":398}],\"tableCellId\":154,\"word\":\"\",\"xec\":17,\"xsc\":17,\"yec\":10,\"ysc\":10},{\"pos\":[{\"x\":765,\"y\":369},{\"x\":807,\"y\":369},{\"x\":807,\"y\":398},{\"x\":765,\"y\":398}],\"tableCellId\":155,\"word\":\"\",\"xec\":18,\"xsc\":18,\"yec\":10,\"ysc\":10},{\"pos\":[{\"x\":807,\"y\":369},{\"x\":889,\"y\":369},{\"x\":889,\"y\":398},{\"x\":807,\"y\":398}],\"tableCellId\":156,\"word\":\"\",\"xec\":19,\"xsc\":19,\"yec\":10,\"ysc\":10},{\"pos\":[{\"x\":889,\"y\":369},{\"x\":952,\"y\":369},{\"x\":952,\"y\":398},{\"x\":889,\"y\":398}],\"tableCellId\":157,\"word\":\"\",\"xec\":20,\"xsc\":20,\"yec\":10,\"ysc\":10},{\"pos\":[{\"x\":952,\"y\":369},{\"x\":1002,\"y\":369},{\"x\":1001,\"y\":398},{\"x\":952,\"y\":398}],\"tableCellId\":158,\"word\":\"\",\"xec\":21,\"xsc\":21,\"yec\":10,\"ysc\":10},{\"pos\":[{\"x\":19,\"y\":398},{\"x\":43,\"y\":398},{\"x\":43,\"y\":417},{\"x\":19,\"y\":417}],\"tableCellId\":159,\"word\":\"2A\",\"xec\":1,\"xsc\":1,\"yec\":11,\"ysc\":11},{\"pos\":[{\"x\":43,\"y\":398},{\"x\":230,\"y\":398},{\"x\":230,\"y\":417},{\"x\":43,\"y\":417}],\"tableCellId\":160,\"word\":\"弯沉(0.01mm)\",\"xec\":5,\"xsc\":2,\"yec\":11,\"ysc\":11},{\"pos\":[{\"x\":230,\"y\":398},{\"x\":387,\"y\":398},{\"x\":387,\"y\":417},{\"x\":230,\"y\":417}],\"tableCellId\":161,\"word\":\"≤设计验收弯沉值\",\"xec\":8,\"xsc\":6,\"yec\":11,\"ysc\":11},{\"pos\":[{\"x\":387,\"y\":398},{\"x\":807,\"y\":398},{\"x\":807,\"y\":417},{\"x\":387,\"y\":417}],\"tableCellId\":162,\"word\":\"\",\"xec\":18,\"xsc\":9,\"yec\":11,\"ysc\":11},{\"pos\":[{\"x\":807,\"y\":398},{\"x\":889,\"y\":398},{\"x\":889,\"y\":417},{\"x\":807,\"y\":417}],\"tableCellId\":163,\"word\":\"\",\"xec\":19,\"xsc\":19,\"yec\":11,\"ysc\":11},{\"pos\":[{\"x\":889,\"y\":398},{\"x\":952,\"y\":398},{\"x\":952,\"y\":417},{\"x\":889,\"y\":417}],\"tableCellId\":164,\"word\":\"\",\"xec\":20,\"xsc\":20,\"yec\":11,\"ysc\":11},{\"pos\":[{\"x\":952,\"y\":398},{\"x\":1001,\"y\":398},{\"x\":1002,\"y\":417},{\"x\":952,\"y\":417}],\"tableCellId\":165,\"word\":\"\",\"xec\":21,\"xsc\":21,\"yec\":11,\"ysc\":11},{\"pos\":[{\"x\":19,\"y\":417},{\"x\":43,\"y\":417},{\"x\":43,\"y\":434},{\"x\":19,\"y\":434}],\"tableCellId\":166,\"word\":\"3\",\"xec\":1,\"xsc\":1,\"yec\":12,\"ysc\":12},{\"pos\":[{\"x\":43,\"y\":417},{\"x\":230,\"y\":417},{\"x\":230,\"y\":434},{\"x\":43,\"y\":434}],\"tableCellId\":167,\"word\":\"纵断商程(mm)\",\"xec\":5,\"xsc\":2,\"yec\":12,\"ysc\":12},{\"pos\":[{\"x\":230,\"y\":417},{\"x\":301,\"y\":417},{\"x\":301,\"y\":434},{\"x\":230,\"y\":434}],\"tableCellId\":168,\"word\":\"+10,-15\",\"xec\":6,\"xsc\":6,\"yec\":12,\"ysc\":12},{\"pos\":[{\"x\":301,\"y\":417},{\"x\":387,\"y\":417},{\"x\":387,\"y\":434},{\"x\":301,\"y\":434}],\"tableCellId\":169,\"word\":\"+10.-20\",\"xec\":8,\"xsc\":7,\"yec\":12,\"ysc\":12},{\"pos\":[{\"x\":387,\"y\":417},{\"x\":429,\"y\":417},{\"x\":429,\"y\":434},{\"x\":387,\"y\":434}],\"tableCellId\":170,\"word\":\"\",\"xec\":9,\"xsc\":9,\"yec\":12,\"ysc\":12},{\"pos\":[{\"x\":429,\"y\":417},{\"x\":471,\"y\":417},{\"x\":471,\"y\":434},{\"x\":429,\"y\":434}],\"tableCellId\":171,\"word\":\"\",\"xec\":10,\"xsc\":10,\"yec\":12,\"ysc\":12},{\"pos\":[{\"x\":471,\"y\":417},{\"x\":513,\"y\":417},{\"x\":513,\"y\":434},{\"x\":471,\"y\":434}],\"tableCellId\":172,\"word\":\"\",\"xec\":11,\"xsc\":11,\"yec\":12,\"ysc\":12},{\"pos\":[{\"x\":513,\"y\":417},{\"x\":555,\"y\":417},{\"x\":555,\"y\":434},{\"x\":513,\"y\":434}],\"tableCellId\":173,\"word\":\"\",\"xec\":12,\"xsc\":12,\"yec\":12,\"ysc\":12},{\"pos\":[{\"x\":555,\"y\":417},{\"x\":597,\"y\":417},{\"x\":597,\"y\":434},{\"x\":555,\"y\":434}],\"tableCellId\":174,\"word\":\"\",\"xec\":13,\"xsc\":13,\"yec\":12,\"ysc\":12},{\"pos\":[{\"x\":597,\"y\":417},{\"x\":639,\"y\":417},{\"x\":639,\"y\":434},{\"x\":597,\"y\":434}],\"tableCellId\":175,\"word\":\"\",\"xec\":14,\"xsc\":14,\"yec\":12,\"ysc\":12},{\"pos\":[{\"x\":639,\"y\":417},{\"x\":681,\"y\":417},{\"x\":681,\"y\":434},{\"x\":639,\"y\":434}],\"tableCellId\":176,\"word\":\"\",\"xec\":15,\"xsc\":15,\"yec\":12,\"ysc\":12},{\"pos\":[{\"x\":681,\"y\":417},{\"x\":723,\"y\":417},{\"x\":723,\"y\":434},{\"x\":681,\"y\":434}],\"tableCellId\":177,\"word\":\"\",\"xec\":16,\"xsc\":16,\"yec\":12,\"ysc\":12},{\"pos\":[{\"x\":723,\"y\":417},{\"x\":765,\"y\":417},{\"x\":765,\"y\":434},{\"x\":723,\"y\":434}],\"tableCellId\":178,\"word\":\"\",\"xec\":17,\"xsc\":17,\"yec\":12,\"ysc\":12},{\"pos\":[{\"x\":765,\"y\":417},{\"x\":807,\"y\":417},{\"x\":807,\"y\":434},{\"x\":765,\"y\":434}],\"tableCellId\":179,\"word\":\"\",\"xec\":18,\"xsc\":18,\"yec\":12,\"ysc\":12},{\"pos\":[{\"x\":807,\"y\":417},{\"x\":889,\"y\":417},{\"x\":889,\"y\":434},{\"x\":807,\"y\":434}],\"tableCellId\":180,\"word\":\"\",\"xec\":19,\"xsc\":19,\"yec\":12,\"ysc\":12},{\"pos\":[{\"x\":889,\"y\":417},{\"x\":952,\"y\":417},{\"x\":952,\"y\":434},{\"x\":889,\"y\":434}],\"tableCellId\":181,\"word\":\"\",\"xec\":20,\"xsc\":20,\"yec\":12,\"ysc\":12},{\"pos\":[{\"x\":952,\"y\":417},{\"x\":1002,\"y\":417},{\"x\":1001,\"y\":434},{\"x\":952,\"y\":434}],\"tableCellId\":182,\"word\":\"\",\"xec\":21,\"xsc\":21,\"yec\":12,\"ysc\":12},{\"pos\":[{\"x\":19,\"y\":434},{\"x\":43,\"y\":434},{\"x\":43,\"y\":451},{\"x\":19,\"y\":451}],\"tableCellId\":183,\"word\":\"4\",\"xec\":1,\"xsc\":1,\"yec\":13,\"ysc\":13},{\"pos\":[{\"x\":43,\"y\":434},{\"x\":230,\"y\":434},{\"x\":230,\"y\":451},{\"x\":43,\"y\":451}],\"tableCellId\":184,\"word\":\"中线偏位(mm)\",\"xec\":5,\"xsc\":2,\"yec\":13,\"ysc\":13},{\"pos\":[{\"x\":230,\"y\":434},{\"x\":301,\"y\":434},{\"x\":301,\"y\":451},{\"x\":230,\"y\":451}],\"tableCellId\":185,\"word\":\"50\",\"xec\":6,\"xsc\":6,\"yec\":13,\"ysc\":13},{\"pos\":[{\"x\":301,\"y\":434},{\"x\":387,\"y\":434},{\"x\":387,\"y\":451},{\"x\":301,\"y\":451}],\"tableCellId\":186,\"word\":\"100\",\"xec\":8,\"xsc\":7,\"yec\":13,\"ysc\":13},{\"pos\":[{\"x\":387,\"y\":434},{\"x\":429,\"y\":434},{\"x\":429,\"y\":451},{\"x\":387,\"y\":451}],\"tableCellId\":187,\"word\":\"\",\"xec\":9,\"xsc\":9,\"yec\":13,\"ysc\":13},{\"pos\":[{\"x\":429,\"y\":434},{\"x\":471,\"y\":434},{\"x\":471,\"y\":451},{\"x\":429,\"y\":451}],\"tableCellId\":188,\"word\":\"\",\"xec\":10,\"xsc\":10,\"yec\":13,\"ysc\":13},{\"pos\":[{\"x\":471,\"y\":434},{\"x\":513,\"y\":434},{\"x\":513,\"y\":451},{\"x\":471,\"y\":451}],\"tableCellId\":189,\"word\":\"\",\"xec\":11,\"xsc\":11,\"yec\":13,\"ysc\":13},{\"pos\":[{\"x\":513,\"y\":434},{\"x\":555,\"y\":434},{\"x\":555,\"y\":451},{\"x\":513,\"y\":451}],\"tableCellId\":190,\"word\":\"\",\"xec\":12,\"xsc\":12,\"yec\":13,\"ysc\":13},{\"pos\":[{\"x\":555,\"y\":434},{\"x\":597,\"y\":434},{\"x\":597,\"y\":451},{\"x\":555,\"y\":451}],\"tableCellId\":191,\"word\":\"\",\"xec\":13,\"xsc\":13,\"yec\":13,\"ysc\":13},{\"pos\":[{\"x\":597,\"y\":434},{\"x\":639,\"y\":434},{\"x\":639,\"y\":451},{\"x\":597,\"y\":451}],\"tableCellId\":192,\"word\":\"\",\"xec\":14,\"xsc\":14,\"yec\":13,\"ysc\":13},{\"pos\":[{\"x\":639,\"y\":434},{\"x\":681,\"y\":434},{\"x\":681,\"y\":451},{\"x\":639,\"y\":451}],\"tableCellId\":193,\"word\":\"\",\"xec\":15,\"xsc\":15,\"yec\":13,\"ysc\":13},{\"pos\":[{\"x\":681,\"y\":434},{\"x\":723,\"y\":434},{\"x\":723,\"y\":451},{\"x\":681,\"y\":451}],\"tableCellId\":194,\"word\":\"\",\"xec\":16,\"xsc\":16,\"yec\":13,\"ysc\":13},{\"pos\":[{\"x\":723,\"y\":434},{\"x\":765,\"y\":434},{\"x\":765,\"y\":451},{\"x\":723,\"y\":451}],\"tableCellId\":195,\"word\":\"\",\"xec\":17,\"xsc\":17,\"yec\":13,\"ysc\":13},{\"pos\":[{\"x\":765,\"y\":434},{\"x\":807,\"y\":434},{\"x\":807,\"y\":451},{\"x\":765,\"y\":451}],\"tableCellId\":196,\"word\":\"\",\"xec\":18,\"xsc\":18,\"yec\":13,\"ysc\":13},{\"pos\":[{\"x\":807,\"y\":434},{\"x\":889,\"y\":434},{\"x\":889,\"y\":451},{\"x\":807,\"y\":451}],\"tableCellId\":197,\"word\":\"\",\"xec\":19,\"xsc\":19,\"yec\":13,\"ysc\":13},{\"pos\":[{\"x\":889,\"y\":434},{\"x\":952,\"y\":434},{\"x\":952,\"y\":451},{\"x\":889,\"y\":451}],\"tableCellId\":198,\"word\":\"\",\"xec\":20,\"xsc\":20,\"yec\":13,\"ysc\":13},{\"pos\":[{\"x\":952,\"y\":434},{\"x\":1001,\"y\":434},{\"x\":1001,\"y\":451},{\"x\":952,\"y\":451}],\"tableCellId\":199,\"word\":\"\",\"xec\":21,\"xsc\":21,\"yec\":13,\"ysc\":13},{\"pos\":[{\"x\":19,\"y\":451},{\"x\":43,\"y\":451},{\"x\":43,\"y\":468},{\"x\":19,\"y\":468}],\"tableCellId\":200,\"word\":\"5\",\"xec\":1,\"xsc\":1,\"yec\":14,\"ysc\":14},{\"pos\":[{\"x\":43,\"y\":451},{\"x\":230,\"y\":451},{\"x\":230,\"y\":468},{\"x\":43,\"y\":468}],\"tableCellId\":201,\"word\":\"宽度(mm)\",\"xec\":5,\"xsc\":2,\"yec\":14,\"ysc\":14},{\"pos\":[{\"x\":230,\"y\":451},{\"x\":387,\"y\":451},{\"x\":387,\"y\":468},{\"x\":230,\"y\":468}],\"tableCellId\":202,\"word\":\"满足设计要求\",\"xec\":8,\"xsc\":6,\"yec\":14,\"ysc\":14},{\"pos\":[{\"x\":387,\"y\":451},{\"x\":429,\"y\":451},{\"x\":429,\"y\":468},{\"x\":387,\"y\":468}],\"tableCellId\":203,\"word\":\"\",\"xec\":9,\"xsc\":9,\"yec\":14,\"ysc\":14},{\"pos\":[{\"x\":429,\"y\":451},{\"x\":471,\"y\":451},{\"x\":471,\"y\":468},{\"x\":429,\"y\":468}],\"tableCellId\":204,\"word\":\"\",\"xec\":10,\"xsc\":10,\"yec\":14,\"ysc\":14},{\"pos\":[{\"x\":471,\"y\":451},{\"x\":513,\"y\":451},{\"x\":513,\"y\":468},{\"x\":471,\"y\":468}],\"tableCellId\":205,\"word\":\"\",\"xec\":11,\"xsc\":11,\"yec\":14,\"ysc\":14},{\"pos\":[{\"x\":513,\"y\":451},{\"x\":555,\"y\":451},{\"x\":555,\"y\":468},{\"x\":513,\"y\":468}],\"tableCellId\":206,\"word\":\"\",\"xec\":12,\"xsc\":12,\"yec\":14,\"ysc\":14},{\"pos\":[{\"x\":555,\"y\":451},{\"x\":597,\"y\":451},{\"x\":597,\"y\":468},{\"x\":555,\"y\":468}],\"tableCellId\":207,\"word\":\"\",\"xec\":13,\"xsc\":13,\"yec\":14,\"ysc\":14},{\"pos\":[{\"x\":597,\"y\":451},{\"x\":639,\"y\":451},{\"x\":639,\"y\":468},{\"x\":597,\"y\":468}],\"tableCellId\":208,\"word\":\"\",\"xec\":14,\"xsc\":14,\"yec\":14,\"ysc\":14},{\"pos\":[{\"x\":639,\"y\":451},{\"x\":681,\"y\":451},{\"x\":681,\"y\":468},{\"x\":639,\"y\":468}],\"tableCellId\":209,\"word\":\"\",\"xec\":15,\"xsc\":15,\"yec\":14,\"ysc\":14},{\"pos\":[{\"x\":681,\"y\":451},{\"x\":723,\"y\":451},{\"x\":723,\"y\":468},{\"x\":681,\"y\":468}],\"tableCellId\":210,\"word\":\"\",\"xec\":16,\"xsc\":16,\"yec\":14,\"ysc\":14},{\"pos\":[{\"x\":723,\"y\":451},{\"x\":765,\"y\":451},{\"x\":765,\"y\":468},{\"x\":723,\"y\":468}],\"tableCellId\":211,\"word\":\"\",\"xec\":17,\"xsc\":17,\"yec\":14,\"ysc\":14},{\"pos\":[{\"x\":765,\"y\":451},{\"x\":807,\"y\":451},{\"x\":807,\"y\":468},{\"x\":765,\"y\":468}],\"tableCellId\":212,\"word\":\"\",\"xec\":18,\"xsc\":18,\"yec\":14,\"ysc\":14},{\"pos\":[{\"x\":807,\"y\":451},{\"x\":889,\"y\":451},{\"x\":889,\"y\":468},{\"x\":807,\"y\":468}],\"tableCellId\":213,\"word\":\"\",\"xec\":19,\"xsc\":19,\"yec\":14,\"ysc\":14},{\"pos\":[{\"x\":889,\"y\":451},{\"x\":952,\"y\":451},{\"x\":952,\"y\":468},{\"x\":889,\"y\":468}],\"tableCellId\":214,\"word\":\"\",\"xec\":20,\"xsc\":20,\"yec\":14,\"ysc\":14},{\"pos\":[{\"x\":952,\"y\":451},{\"x\":1001,\"y\":451},{\"x\":1002,\"y\":468},{\"x\":952,\"y\":468}],\"tableCellId\":215,\"word\":\"\",\"xec\":21,\"xsc\":21,\"yec\":14,\"ysc\":14},{\"pos\":[{\"x\":19,\"y\":468},{\"x\":43,\"y\":468},{\"x\":43,\"y\":485},{\"x\":19,\"y\":485}],\"tableCellId\":216,\"word\":\"6\",\"xec\":1,\"xsc\":1,\"yec\":15,\"ysc\":15},{\"pos\":[{\"x\":43,\"y\":468},{\"x\":230,\"y\":468},{\"x\":230,\"y\":485},{\"x\":43,\"y\":485}],\"tableCellId\":217,\"word\":\"平整度(mm)\",\"xec\":5,\"xsc\":2,\"yec\":15,\"ysc\":15},{\"pos\":[{\"x\":230,\"y\":468},{\"x\":301,\"y\":468},{\"x\":301,\"y\":485},{\"x\":230,\"y\":485}],\"tableCellId\":218,\"word\":\"415\",\"xec\":6,\"xsc\":6,\"yec\":15,\"ysc\":15},{\"pos\":[{\"x\":301,\"y\":468},{\"x\":387,\"y\":468},{\"x\":387,\"y\":485},{\"x\":301,\"y\":485}],\"tableCellId\":219,\"word\":\"520\",\"xec\":8,\"xsc\":7,\"yec\":15,\"ysc\":15},{\"pos\":[{\"x\":387,\"y\":468},{\"x\":429,\"y\":468},{\"x\":429,\"y\":485},{\"x\":387,\"y\":485}],\"tableCellId\":220,\"word\":\"\",\"xec\":9,\"xsc\":9,\"yec\":15,\"ysc\":15},{\"pos\":[{\"x\":429,\"y\":468},{\"x\":471,\"y\":468},{\"x\":471,\"y\":485},{\"x\":429,\"y\":485}],\"tableCellId\":221,\"word\":\"\",\"xec\":10,\"xsc\":10,\"yec\":15,\"ysc\":15},{\"pos\":[{\"x\":471,\"y\":468},{\"x\":513,\"y\":468},{\"x\":513,\"y\":485},{\"x\":471,\"y\":485}],\"tableCellId\":222,\"word\":\"\",\"xec\":11,\"xsc\":11,\"yec\":15,\"ysc\":15},{\"pos\":[{\"x\":513,\"y\":468},{\"x\":555,\"y\":468},{\"x\":555,\"y\":485},{\"x\":513,\"y\":485}],\"tableCellId\":223,\"word\":\"\",\"xec\":12,\"xsc\":12,\"yec\":15,\"ysc\":15},{\"pos\":[{\"x\":555,\"y\":468},{\"x\":597,\"y\":468},{\"x\":597,\"y\":485},{\"x\":555,\"y\":485}],\"tableCellId\":224,\"word\":\"\",\"xec\":13,\"xsc\":13,\"yec\":15,\"ysc\":15},{\"pos\":[{\"x\":597,\"y\":468},{\"x\":639,\"y\":468},{\"x\":639,\"y\":485},{\"x\":597,\"y\":485}],\"tableCellId\":225,\"word\":\"\",\"xec\":14,\"xsc\":14,\"yec\":15,\"ysc\":15},{\"pos\":[{\"x\":639,\"y\":468},{\"x\":681,\"y\":468},{\"x\":681,\"y\":485},{\"x\":639,\"y\":485}],\"tableCellId\":226,\"word\":\"\",\"xec\":15,\"xsc\":15,\"yec\":15,\"ysc\":15},{\"pos\":[{\"x\":681,\"y\":468},{\"x\":723,\"y\":468},{\"x\":723,\"y\":485},{\"x\":681,\"y\":485}],\"tableCellId\":227,\"word\":\"\",\"xec\":16,\"xsc\":16,\"yec\":15,\"ysc\":15},{\"pos\":[{\"x\":723,\"y\":468},{\"x\":765,\"y\":468},{\"x\":765,\"y\":485},{\"x\":723,\"y\":485}],\"tableCellId\":228,\"word\":\"\",\"xec\":17,\"xsc\":17,\"yec\":15,\"ysc\":15},{\"pos\":[{\"x\":765,\"y\":468},{\"x\":807,\"y\":468},{\"x\":807,\"y\":485},{\"x\":765,\"y\":485}],\"tableCellId\":229,\"word\":\"\",\"xec\":18,\"xsc\":18,\"yec\":15,\"ysc\":15},{\"pos\":[{\"x\":807,\"y\":468},{\"x\":889,\"y\":468},{\"x\":889,\"y\":485},{\"x\":807,\"y\":485}],\"tableCellId\":230,\"word\":\"\",\"xec\":19,\"xsc\":19,\"yec\":15,\"ysc\":15},{\"pos\":[{\"x\":889,\"y\":468},{\"x\":952,\"y\":468},{\"x\":952,\"y\":485},{\"x\":889,\"y\":485}],\"tableCellId\":231,\"word\":\"\",\"xec\":20,\"xsc\":20,\"yec\":15,\"ysc\":15},{\"pos\":[{\"x\":952,\"y\":468},{\"x\":1002,\"y\":468},{\"x\":1001,\"y\":485},{\"x\":952,\"y\":485}],\"tableCellId\":232,\"word\":\"\",\"xec\":21,\"xsc\":21,\"yec\":15,\"ysc\":15},{\"pos\":[{\"x\":19,\"y\":485},{\"x\":43,\"y\":485},{\"x\":43,\"y\":499},{\"x\":19,\"y\":499}],\"tableCellId\":233,\"word\":\"7\",\"xec\":1,\"xsc\":1,\"yec\":16,\"ysc\":16},{\"pos\":[{\"x\":43,\"y\":485},{\"x\":230,\"y\":485},{\"x\":230,\"y\":499},{\"x\":43,\"y\":499}],\"tableCellId\":234,\"word\":\"横坡(%)\",\"xec\":5,\"xsc\":2,\"yec\":16,\"ysc\":16},{\"pos\":[{\"x\":230,\"y\":485},{\"x\":301,\"y\":485},{\"x\":301,\"y\":499},{\"x\":230,\"y\":499}],\"tableCellId\":235,\"word\":\"±0.3\",\"xec\":6,\"xsc\":6,\"yec\":16,\"ysc\":16},{\"pos\":[{\"x\":301,\"y\":485},{\"x\":387,\"y\":485},{\"x\":387,\"y\":499},{\"x\":301,\"y\":499}],\"tableCellId\":236,\"word\":\"±0.5\",\"xec\":8,\"xsc\":7,\"yec\":16,\"ysc\":16},{\"pos\":[{\"x\":387,\"y\":485},{\"x\":429,\"y\":485},{\"x\":429,\"y\":499},{\"x\":387,\"y\":499}],\"tableCellId\":237,\"word\":\"\",\"xec\":9,\"xsc\":9,\"yec\":16,\"ysc\":16},{\"pos\":[{\"x\":429,\"y\":485},{\"x\":471,\"y\":485},{\"x\":471,\"y\":499},{\"x\":429,\"y\":499}],\"tableCellId\":238,\"word\":\"\",\"xec\":10,\"xsc\":10,\"yec\":16,\"ysc\":16},{\"pos\":[{\"x\":471,\"y\":485},{\"x\":513,\"y\":485},{\"x\":513,\"y\":499},{\"x\":471,\"y\":499}],\"tableCellId\":239,\"word\":\"\",\"xec\":11,\"xsc\":11,\"yec\":16,\"ysc\":16},{\"pos\":[{\"x\":513,\"y\":485},{\"x\":555,\"y\":485},{\"x\":555,\"y\":499},{\"x\":513,\"y\":499}],\"tableCellId\":240,\"word\":\"\",\"xec\":12,\"xsc\":12,\"yec\":16,\"ysc\":16},{\"pos\":[{\"x\":555,\"y\":485},{\"x\":597,\"y\":485},{\"x\":597,\"y\":499},{\"x\":555,\"y\":499}],\"tableCellId\":241,\"word\":\"\",\"xec\":13,\"xsc\":13,\"yec\":16,\"ysc\":16},{\"pos\":[{\"x\":597,\"y\":485},{\"x\":639,\"y\":485},{\"x\":639,\"y\":499},{\"x\":597,\"y\":499}],\"tableCellId\":242,\"word\":\"\",\"xec\":14,\"xsc\":14,\"yec\":16,\"ysc\":16},{\"pos\":[{\"x\":639,\"y\":485},{\"x\":681,\"y\":485},{\"x\":681,\"y\":499},{\"x\":639,\"y\":499}],\"tableCellId\":243,\"word\":\"\",\"xec\":15,\"xsc\":15,\"yec\":16,\"ysc\":16},{\"pos\":[{\"x\":681,\"y\":485},{\"x\":723,\"y\":485},{\"x\":723,\"y\":499},{\"x\":681,\"y\":499}],\"tableCellId\":244,\"word\":\"\",\"xec\":16,\"xsc\":16,\"yec\":16,\"ysc\":16},{\"pos\":[{\"x\":723,\"y\":485},{\"x\":765,\"y\":485},{\"x\":765,\"y\":499},{\"x\":723,\"y\":499}],\"tableCellId\":245,\"word\":\"\",\"xec\":17,\"xsc\":17,\"yec\":16,\"ysc\":16},{\"pos\":[{\"x\":765,\"y\":485},{\"x\":807,\"y\":485},{\"x\":807,\"y\":499},{\"x\":765,\"y\":499}],\"tableCellId\":246,\"word\":\"\",\"xec\":18,\"xsc\":18,\"yec\":16,\"ysc\":16},{\"pos\":[{\"x\":807,\"y\":485},{\"x\":889,\"y\":485},{\"x\":889,\"y\":499},{\"x\":807,\"y\":499}],\"tableCellId\":247,\"word\":\"\",\"xec\":19,\"xsc\":19,\"yec\":16,\"ysc\":16},{\"pos\":[{\"x\":889,\"y\":485},{\"x\":952,\"y\":485},{\"x\":952,\"y\":499},{\"x\":889,\"y\":499}],\"tableCellId\":248,\"word\":\"\",\"xec\":20,\"xsc\":20,\"yec\":16,\"ysc\":16},{\"pos\":[{\"x\":952,\"y\":485},{\"x\":1001,\"y\":485},{\"x\":1001,\"y\":499},{\"x\":952,\"y\":499}],\"tableCellId\":249,\"word\":\"\",\"xec\":21,\"xsc\":21,\"yec\":16,\"ysc\":16},{\"pos\":[{\"x\":19,\"y\":499},{\"x\":43,\"y\":499},{\"x\":43,\"y\":516},{\"x\":19,\"y\":516}],\"tableCellId\":250,\"word\":\"8\",\"xec\":1,\"xsc\":1,\"yec\":17,\"ysc\":17},{\"pos\":[{\"x\":43,\"y\":499},{\"x\":230,\"y\":499},{\"x\":230,\"y\":516},{\"x\":43,\"y\":516}],\"tableCellId\":251,\"word\":\"边坡\",\"xec\":5,\"xsc\":2,\"yec\":17,\"ysc\":17},{\"pos\":[{\"x\":230,\"y\":499},{\"x\":387,\"y\":499},{\"x\":387,\"y\":516},{\"x\":230,\"y\":516}],\"tableCellId\":252,\"word\":\"满足设计要求\",\"xec\":8,\"xsc\":6,\"yec\":17,\"ysc\":17},{\"pos\":[{\"x\":387,\"y\":499},{\"x\":429,\"y\":499},{\"x\":429,\"y\":516},{\"x\":387,\"y\":516}],\"tableCellId\":253,\"word\":\"\",\"xec\":9,\"xsc\":9,\"yec\":17,\"ysc\":17},{\"pos\":[{\"x\":429,\"y\":499},{\"x\":471,\"y\":499},{\"x\":471,\"y\":516},{\"x\":429,\"y\":516}],\"tableCellId\":254,\"word\":\"\",\"xec\":10,\"xsc\":10,\"yec\":17,\"ysc\":17},{\"pos\":[{\"x\":471,\"y\":499},{\"x\":513,\"y\":499},{\"x\":513,\"y\":516},{\"x\":471,\"y\":516}],\"tableCellId\":255,\"word\":\"\",\"xec\":11,\"xsc\":11,\"yec\":17,\"ysc\":17},{\"pos\":[{\"x\":513,\"y\":499},{\"x\":555,\"y\":499},{\"x\":555,\"y\":516},{\"x\":513,\"y\":516}],\"tableCellId\":256,\"word\":\"\",\"xec\":12,\"xsc\":12,\"yec\":17,\"ysc\":17},{\"pos\":[{\"x\":555,\"y\":499},{\"x\":597,\"y\":499},{\"x\":597,\"y\":516},{\"x\":555,\"y\":516}],\"tableCellId\":257,\"word\":\"\",\"xec\":13,\"xsc\":13,\"yec\":17,\"ysc\":17},{\"pos\":[{\"x\":597,\"y\":499},{\"x\":639,\"y\":499},{\"x\":639,\"y\":516},{\"x\":597,\"y\":516}],\"tableCellId\":258,\"word\":\"\",\"xec\":14,\"xsc\":14,\"yec\":17,\"ysc\":17},{\"pos\":[{\"x\":639,\"y\":499},{\"x\":681,\"y\":499},{\"x\":681,\"y\":516},{\"x\":639,\"y\":516}],\"tableCellId\":259,\"word\":\"\",\"xec\":15,\"xsc\":15,\"yec\":17,\"ysc\":17},{\"pos\":[{\"x\":681,\"y\":499},{\"x\":723,\"y\":499},{\"x\":723,\"y\":516},{\"x\":681,\"y\":516}],\"tableCellId\":260,\"word\":\"\",\"xec\":16,\"xsc\":16,\"yec\":17,\"ysc\":17},{\"pos\":[{\"x\":723,\"y\":499},{\"x\":765,\"y\":499},{\"x\":765,\"y\":516},{\"x\":723,\"y\":516}],\"tableCellId\":261,\"word\":\"\",\"xec\":17,\"xsc\":17,\"yec\":17,\"ysc\":17},{\"pos\":[{\"x\":765,\"y\":499},{\"x\":807,\"y\":499},{\"x\":807,\"y\":516},{\"x\":765,\"y\":516}],\"tableCellId\":262,\"word\":\"\",\"xec\":18,\"xsc\":18,\"yec\":17,\"ysc\":17},{\"pos\":[{\"x\":807,\"y\":499},{\"x\":889,\"y\":499},{\"x\":889,\"y\":516},{\"x\":807,\"y\":516}],\"tableCellId\":263,\"word\":\"\",\"xec\":19,\"xsc\":19,\"yec\":17,\"ysc\":17},{\"pos\":[{\"x\":889,\"y\":499},{\"x\":952,\"y\":499},{\"x\":952,\"y\":516},{\"x\":889,\"y\":516}],\"tableCellId\":264,\"word\":\"\",\"xec\":20,\"xsc\":20,\"yec\":17,\"ysc\":17},{\"pos\":[{\"x\":952,\"y\":499},{\"x\":1001,\"y\":499},{\"x\":1001,\"y\":516},{\"x\":952,\"y\":516}],\"tableCellId\":265,\"word\":\"\",\"xec\":21,\"xsc\":21,\"yec\":17,\"ysc\":17},{\"pos\":[{\"x\":0,\"y\":517},{\"x\":230,\"y\":516},{\"x\":230,\"y\":555},{\"x\":0,\"y\":555}],\"tableCellId\":266,\"word\":\"外观质量\",\"xec\":5,\"xsc\":0,\"yec\":18,\"ysc\":18},{\"pos\":[{\"x\":230,\"y\":516},{\"x\":639,\"y\":516},{\"x\":639,\"y\":555},{\"x\":230,\"y\":555}],\"tableCellId\":267,\"word\":\"01.路基边线与边坡未出现单向累计长度超过50m的弯折.口2.路基边坡、护坡道、碎离台无滑坡、爆方或深度超过100mm的冲沟.\",\"xec\":14,\"xsc\":6,\"yec\":18,\"ysc\":18},{\"pos\":[{\"x\":639,\"y\":516},{\"x\":807,\"y\":516},{\"x\":807,\"y\":555},{\"x\":639,\"y\":555}],\"tableCellId\":268,\"word\":\"质量保证资料\",\"xec\":18,\"xsc\":15,\"yec\":18,\"ysc\":18},{\"pos\":[{\"x\":0,\"y\":555},{\"x\":230,\"y\":555},{\"x\":230,\"y\":579},{\"x\":0,\"y\":579}],\"tableCellId\":269,\"word\":\"工程质量等级评定\",\"xec\":5,\"xsc\":0,\"yec\":19,\"ysc\":19},{\"pos\":[{\"x\":230,\"y\":555},{\"x\":1001,\"y\":555},{\"x\":1001,\"y\":579},{\"x\":230,\"y\":579}],\"tableCellId\":270,\"word\":\"口合格口不合格\",\"xec\":19,\"xsc\":6,\"yec\":19,\"ysc\":19}],\"tableId\":0,\"xCellSize\":22,\"yCellSize\":20}],\"prism_version\":\"1.0.9\",\"prism_wnum\":136,\"prism_wordsInfo\":[{\"angle\":0,\"direction\":0,\"height\":19,\"pos\":[{\"x\":567,\"y\":2},{\"x\":664,\"y\":2},{\"x\":664,\"y\":22},{\"x\":567,\"y\":22}],\"prob\":99,\"tableCellId\":-1,\"tableId\":-1,\"width\":97,\"word\":\"公路工程项目\",\"x\":567,\"y\":2},{\"angle\":-89,\"direction\":0,\"height\":316,\"pos\":[{\"x\":349,\"y\":24},{\"x\":665,\"y\":24},{\"x\":665,\"y\":45},{\"x\":349,\"y\":44}],\"prob\":99,\"tableCellId\":-1,\"tableId\":-1,\"width\":20,\"word\":\"土方路基分项工程质量检验评定表\",\"x\":496,\"y\":-123},{\"angle\":-89,\"direction\":0,\"height\":65,\"pos\":[{\"x\":0,\"y\":48},{\"x\":66,\"y\":48},{\"x\":66,\"y\":59},{\"x\":0,\"y\":59}],\"prob\":99,\"tableCellId\":-1,\"tableId\":-1,\"width\":11,\"word\":\"分项工程名称:\",\"x\":27,\"y\":21},{\"angle\":-89,\"direction\":0,\"height\":157,\"pos\":[{\"x\":249,\"y\":47},{\"x\":407,\"y\":48},{\"x\":406,\"y\":59},{\"x\":249,\"y\":59}],\"prob\":99,\"tableCellId\":-1,\"tableId\":-1,\"width\":11,\"word\":\"工程部位:(柱号、墩台号、孔号)\",\"x\":322,\"y\":-24},{\"angle\":-89,\"direction\":0,\"height\":116,\"pos\":[{\"x\":638,\"y\":47},{\"x\":755,\"y\":48},{\"x\":755,\"y\":60},{\"x\":638,\"y\":59}],\"prob\":97,\"tableCellId\":-1,\"tableId\":-1,\"width\":11,\"word\":\"所属建设项目(合同段):\",\"x\":691,\"y\":-4},{\"angle\":-89,\"direction\":0,\"height\":85,\"pos\":[{\"x\":0,\"y\":67},{\"x\":85,\"y\":67},{\"x\":85,\"y\":78},{\"x\":0,\"y\":78}],\"prob\":99,\"tableCellId\":-1,\"tableId\":-1,\"width\":11,\"word\":\"所分部工程名称:\",\"x\":37,\"y\":30},{\"angle\":0,\"direction\":0,\"height\":10,\"pos\":[{\"x\":249,\"y\":67},{\"x\":315,\"y\":67},{\"x\":315,\"y\":78},{\"x\":249,\"y\":78}],\"prob\":99,\"tableCellId\":-1,\"tableId\":-1,\"width\":65,\"word\":\"所属单位工程:\",\"x\":249,\"y\":67},{\"angle\":-89,\"direction\":0,\"height\":46,\"pos\":[{\"x\":457,\"y\":67},{\"x\":504,\"y\":67},{\"x\":504,\"y\":78},{\"x\":457,\"y\":78}],\"prob\":99,\"tableCellId\":-1,\"tableId\":-1,\"width\":10,\"word\":\"施工单位:\",\"x\":475,\"y\":49},{\"angle\":0,\"direction\":0,\"height\":11,\"pos\":[{\"x\":638,\"y\":67},{\"x\":703,\"y\":67},{\"x\":703,\"y\":78},{\"x\":638,\"y\":78}],\"prob\":99,\"tableCellId\":-1,\"tableId\":-1,\"width\":65,\"word\":\"分项工程编号:\",\"x\":638,\"y\":67},{\"angle\":-89,\"direction\":0,\"height\":39,\"pos\":[{\"x\":928,\"y\":83},{\"x\":967,\"y\":83},{\"x\":967,\"y\":93},{\"x\":928,\"y\":93}],\"prob\":99,\"tableCellId\":16,\"tableId\":0,\"width\":10,\"word\":\"PD4.2.2\",\"x\":942,\"y\":69},{\"angle\":-89,\"direction\":0,\"height\":684,\"pos\":[{\"x\":46,\"y\":97},{\"x\":731,\"y\":100},{\"x\":730,\"y\":111},{\"x\":46,\"y\":109}],\"prob\":97,\"tableCellId\":18,\"tableId\":0,\"width\":11,\"word\":\"01.在路基用地和取土坑范国内,己清除地表植被、杂物、积水、淤泥和表土,处理坑塘,并按施工技术规范和设计要求对基底进行压实.表土己充分利用.\",\"x\":382,\"y\":-237},{\"angle\":0,\"direction\":0,\"height\":10,\"pos\":[{\"x\":10,\"y\":112},{\"x\":33,\"y\":112},{\"x\":33,\"y\":123},{\"x\":10,\"y\":123}],\"prob\":99,\"tableCellId\":17,\"tableId\":0,\"width\":22,\"word\":\"基本\",\"x\":10,\"y\":112},{\"angle\":-89,\"direction\":0,\"height\":415,\"pos\":[{\"x\":46,\"y\":111},{\"x\":461,\"y\":112},{\"x\":461,\"y\":124},{\"x\":45,\"y\":122}],\"prob\":98,\"tableCellId\":18,\"tableId\":0,\"width\":11,\"word\":\"口2.坝方路基分层坝筑压实,每层表面平整,路拱合适,排水良好,无明显碾压轮迹,无亏坡.\",\"x\":247,\"y\":-89},{\"angle\":0,\"direction\":0,\"height\":10,\"pos\":[{\"x\":10,\"y\":125},{\"x\":33,\"y\":125},{\"x\":33,\"y\":136},{\"x\":10,\"y\":136}],\"prob\":94,\"tableCellId\":17,\"tableId\":0,\"width\":23,\"word\":\"要求\",\"x\":10,\"y\":125},{\"angle\":-89,\"direction\":0,\"height\":284,\"pos\":[{\"x\":46,\"y\":124},{\"x\":331,\"y\":126},{\"x\":330,\"y\":137},{\"x\":46,\"y\":135}],\"prob\":99,\"tableCellId\":18,\"tableId\":0,\"width\":11,\"word\":\"口3.己设置施工临时排水系统,避免冲刷边坡,路床顶面无积水.\",\"x\":182,\"y\":-11},{\"angle\":-89,\"direction\":0,\"height\":395,\"pos\":[{\"x\":46,\"y\":136},{\"x\":441,\"y\":137},{\"x\":441,\"y\":149},{\"x\":46,\"y\":147}],\"prob\":98,\"tableCellId\":18,\"tableId\":0,\"width\":11,\"word\":\"4.在设定取土区内合理取土,无溢开滥挖.完工后己按要求对取土坑和奔土场进行依整.\",\"x\":238,\"y\":-54},{\"angle\":-89,\"direction\":0,\"height\":83,\"pos\":[{\"x\":268,\"y\":154},{\"x\":351,\"y\":155},{\"x\":351,\"y\":166},{\"x\":268,\"y\":166}],\"prob\":98,\"tableCellId\":21,\"tableId\":0,\"width\":11,\"word\":\"规定值或允许偏差\",\"x\":303,\"y\":119},{\"angle\":-89,\"direction\":0,\"height\":92,\"pos\":[{\"x\":552,\"y\":154},{\"x\":644,\"y\":155},{\"x\":644,\"y\":166},{\"x\":552,\"y\":166}],\"prob\":99,\"tableCellId\":22,\"tableId\":0,\"width\":11,\"word\":\"实测值或实测差值\",\"x\":592,\"y\":114},{\"angle\":-89,\"direction\":0,\"height\":41,\"pos\":[{\"x\":885,\"y\":154},{\"x\":926,\"y\":154},{\"x\":926,\"y\":166},{\"x\":885,\"y\":166}],\"prob\":99,\"tableCellId\":23,\"tableId\":0,\"width\":11,\"word\":\"质量评定\",\"x\":900,\"y\":139},{\"angle\":-90,\"direction\":0,\"height\":13,\"pos\":[{\"x\":26,\"y\":165},{\"x\":40,\"y\":165},{\"x\":40,\"y\":184},{\"x\":26,\"y\":184}],\"prob\":100,\"tableCellId\":19,\"tableId\":0,\"width\":19,\"word\":\"项\",\"x\":23,\"y\":167},{\"angle\":-90,\"direction\":0,\"height\":13,\"pos\":[{\"x\":26,\"y\":178},{\"x\":40,\"y\":178},{\"x\":40,\"y\":193},{\"x\":26,\"y\":193}],\"prob\":99,\"tableCellId\":19,\"tableId\":0,\"width\":15,\"word\":\"次\",\"x\":25,\"y\":179},{\"angle\":0,\"direction\":0,\"height\":11,\"pos\":[{\"x\":117,\"y\":175},{\"x\":158,\"y\":175},{\"x\":158,\"y\":186},{\"x\":117,\"y\":186}],\"prob\":99,\"tableCellId\":20,\"tableId\":0,\"width\":41,\"word\":\"检查项目\",\"x\":117,\"y\":175},{\"angle\":0,\"direction\":0,\"height\":11,\"pos\":[{\"x\":233,\"y\":177},{\"x\":294,\"y\":177},{\"x\":294,\"y\":188},{\"x\":233,\"y\":188}],\"prob\":98,\"tableCellId\":24,\"tableId\":0,\"width\":61,\"word\":\"商速公路一级\",\"x\":233,\"y\":177},{\"angle\":-89,\"direction\":0,\"height\":31,\"pos\":[{\"x\":304,\"y\":176},{\"x\":335,\"y\":177},{\"x\":335,\"y\":188},{\"x\":303,\"y\":187}],\"prob\":99,\"tableCellId\":25,\"tableId\":0,\"width\":11,\"word\":\"二级公\",\"x\":314,\"y\":166},{\"angle\":0,\"direction\":0,\"height\":11,\"pos\":[{\"x\":346,\"y\":176},{\"x\":379,\"y\":176},{\"x\":379,\"y\":188},{\"x\":346,\"y\":188}],\"prob\":99,\"tableCellId\":26,\"tableId\":0,\"width\":32,\"word\":\"三、四\",\"x\":346,\"y\":176},{\"angle\":-90,\"direction\":0,\"height\":7,\"pos\":[{\"x\":404,\"y\":183},{\"x\":412,\"y\":183},{\"x\":412,\"y\":193},{\"x\":404,\"y\":193}],\"prob\":99,\"tableCellId\":27,\"tableId\":0,\"width\":10,\"word\":\"1\",\"x\":403,\"y\":185},{\"angle\":-90,\"direction\":0,\"height\":9,\"pos\":[{\"x\":446,\"y\":183},{\"x\":456,\"y\":183},{\"x\":456,\"y\":193},{\"x\":446,\"y\":193}],\"prob\":99,\"tableCellId\":28,\"tableId\":0,\"width\":10,\"word\":\"2\",\"x\":446,\"y\":183},{\"angle\":-90,\"direction\":0,\"height\":9,\"pos\":[{\"x\":488,\"y\":183},{\"x\":497,\"y\":183},{\"x\":497,\"y\":193},{\"x\":488,\"y\":193}],\"prob\":99,\"tableCellId\":29,\"tableId\":0,\"width\":9,\"word\":\"3\",\"x\":487,\"y\":183},{\"angle\":-90,\"direction\":0,\"height\":9,\"pos\":[{\"x\":530,\"y\":183},{\"x\":539,\"y\":183},{\"x\":539,\"y\":193},{\"x\":530,\"y\":193}],\"prob\":99,\"tableCellId\":30,\"tableId\":0,\"width\":9,\"word\":\"4\",\"x\":530,\"y\":184},{\"angle\":-90,\"direction\":0,\"height\":9,\"pos\":[{\"x\":572,\"y\":183},{\"x\":582,\"y\":183},{\"x\":582,\"y\":193},{\"x\":572,\"y\":193}],\"prob\":99,\"tableCellId\":31,\"tableId\":0,\"width\":10,\"word\":\"5\",\"x\":572,\"y\":183},{\"angle\":-90,\"direction\":0,\"height\":10,\"pos\":[{\"x\":614,\"y\":183},{\"x\":624,\"y\":183},{\"x\":624,\"y\":193},{\"x\":614,\"y\":193}],\"prob\":99,\"tableCellId\":32,\"tableId\":0,\"width\":9,\"word\":\"6\",\"x\":614,\"y\":183},{\"angle\":-90,\"direction\":0,\"height\":8,\"pos\":[{\"x\":656,\"y\":183},{\"x\":665,\"y\":183},{\"x\":665,\"y\":193},{\"x\":656,\"y\":193}],\"prob\":99,\"tableCellId\":33,\"tableId\":0,\"width\":10,\"word\":\"7\",\"x\":655,\"y\":183},{\"angle\":-90,\"direction\":0,\"height\":9,\"pos\":[{\"x\":698,\"y\":183},{\"x\":708,\"y\":183},{\"x\":708,\"y\":193},{\"x\":698,\"y\":193}],\"prob\":99,\"tableCellId\":34,\"tableId\":0,\"width\":9,\"word\":\"8\",\"x\":698,\"y\":183},{\"angle\":-90,\"direction\":0,\"height\":10,\"pos\":[{\"x\":739,\"y\":183},{\"x\":750,\"y\":183},{\"x\":750,\"y\":193},{\"x\":739,\"y\":193}],\"prob\":99,\"tableCellId\":35,\"tableId\":0,\"width\":9,\"word\":\"9\",\"x\":740,\"y\":183},{\"angle\":-90,\"direction\":0,\"height\":13,\"pos\":[{\"x\":780,\"y\":184},{\"x\":794,\"y\":184},{\"x\":794,\"y\":193},{\"x\":780,\"y\":193}],\"prob\":99,\"tableCellId\":36,\"tableId\":0,\"width\":9,\"word\":\"10\",\"x\":783,\"y\":182},{\"angle\":-89,\"direction\":0,\"height\":72,\"pos\":[{\"x\":813,\"y\":182},{\"x\":885,\"y\":183},{\"x\":885,\"y\":194},{\"x\":813,\"y\":193}],\"prob\":99,\"tableCellId\":37,\"tableId\":0,\"width\":11,\"word\":\"平均值、代表值\",\"x\":843,\"y\":152},{\"angle\":0,\"direction\":0,\"height\":10,\"pos\":[{\"x\":892,\"y\":183},{\"x\":946,\"y\":183},{\"x\":946,\"y\":193},{\"x\":892,\"y\":194}],\"prob\":99,\"tableCellId\":38,\"tableId\":0,\"width\":53,\"word\":\"合格率(%)\",\"x\":892,\"y\":183},{\"angle\":-89,\"direction\":0,\"height\":42,\"pos\":[{\"x\":957,\"y\":183},{\"x\":999,\"y\":183},{\"x\":999,\"y\":194},{\"x\":957,\"y\":194}],\"prob\":99,\"tableCellId\":39,\"tableId\":0,\"width\":11,\"word\":\"合格判定\",\"x\":972,\"y\":167},{\"angle\":0,\"direction\":0,\"height\":10,\"pos\":[{\"x\":233,\"y\":190},{\"x\":254,\"y\":190},{\"x\":254,\"y\":201},{\"x\":233,\"y\":201}],\"prob\":99,\"tableCellId\":24,\"tableId\":0,\"width\":21,\"word\":\"公路\",\"x\":233,\"y\":190},{\"angle\":-90,\"direction\":0,\"height\":12,\"pos\":[{\"x\":303,\"y\":189},{\"x\":315,\"y\":189},{\"x\":315,\"y\":201},{\"x\":303,\"y\":201}],\"prob\":99,\"tableCellId\":25,\"tableId\":0,\"width\":11,\"word\":\"路\",\"x\":304,\"y\":189},{\"angle\":-89,\"direction\":0,\"height\":31,\"pos\":[{\"x\":346,\"y\":190},{\"x\":378,\"y\":190},{\"x\":378,\"y\":201},{\"x\":346,\"y\":201}],\"prob\":99,\"tableCellId\":26,\"tableId\":0,\"width\":11,\"word\":\"级公路\",\"x\":356,\"y\":179},{\"angle\":-89,\"direction\":0,\"height\":31,\"pos\":[{\"x\":99,\"y\":210},{\"x\":130,\"y\":210},{\"x\":130,\"y\":221},{\"x\":99,\"y\":221}],\"prob\":99,\"tableCellId\":42,\"tableId\":0,\"width\":10,\"word\":\"上路床\",\"x\":109,\"y\":200},{\"angle\":-89,\"direction\":0,\"height\":38,\"pos\":[{\"x\":178,\"y\":211},{\"x\":216,\"y\":211},{\"x\":216,\"y\":221},{\"x\":178,\"y\":221}],\"prob\":99,\"tableCellId\":43,\"tableId\":0,\"width\":10,\"word\":\"0~0.3m\",\"x\":192,\"y\":197},{\"angle\":-89,\"direction\":0,\"height\":22,\"pos\":[{\"x\":232,\"y\":211},{\"x\":254,\"y\":211},{\"x\":254,\"y\":221},{\"x\":232,\"y\":221}],\"prob\":91,\"tableCellId\":44,\"tableId\":0,\"width\":9,\"word\":\"≥96\",\"x\":238,\"y\":205},{\"angle\":-89,\"direction\":0,\"height\":21,\"pos\":[{\"x\":303,\"y\":211},{\"x\":325,\"y\":211},{\"x\":325,\"y\":221},{\"x\":303,\"y\":221}],\"prob\":99,\"tableCellId\":45,\"tableId\":0,\"width\":9,\"word\":\"≥95\",\"x\":309,\"y\":205},{\"angle\":-89,\"direction\":0,\"height\":22,\"pos\":[{\"x\":346,\"y\":211},{\"x\":369,\"y\":211},{\"x\":369,\"y\":221},{\"x\":346,\"y\":221}],\"prob\":98,\"tableCellId\":46,\"tableId\":0,\"width\":9,\"word\":\"≥94\",\"x\":352,\"y\":205},{\"angle\":-89,\"direction\":0,\"height\":71,\"pos\":[{\"x\":89,\"y\":227},{\"x\":160,\"y\":228},{\"x\":160,\"y\":239},{\"x\":89,\"y\":238}],\"prob\":99,\"tableCellId\":61,\"tableId\":0,\"width\":11,\"word\":\"经、中及交通\",\"x\":119,\"y\":197},{\"angle\":-90,\"direction\":0,\"height\":12,\"pos\":[{\"x\":70,\"y\":235},{\"x\":82,\"y\":235},{\"x\":82,\"y\":248},{\"x\":70,\"y\":248}],\"prob\":99,\"tableCellId\":60,\"tableId\":0,\"width\":13,\"word\":\"下\",\"x\":69,\"y\":235},{\"angle\":-89,\"direction\":0,\"height\":54,\"pos\":[{\"x\":170,\"y\":234},{\"x\":225,\"y\":235},{\"x\":224,\"y\":245},{\"x\":170,\"y\":244}],\"prob\":99,\"tableCellId\":62,\"tableId\":0,\"width\":10,\"word\":\"0.3m~0.8m\",\"x\":192,\"y\":212},{\"angle\":0,\"direction\":0,\"height\":9,\"pos\":[{\"x\":232,\"y\":234},{\"x\":254,\"y\":234},{\"x\":254,\"y\":244},{\"x\":232,\"y\":244}],\"prob\":99,\"tableCellId\":63,\"tableId\":0,\"width\":22,\"word\":\"96\",\"x\":232,\"y\":234},{\"angle\":0,\"direction\":0,\"height\":9,\"pos\":[{\"x\":303,\"y\":234},{\"x\":325,\"y\":234},{\"x\":325,\"y\":244},{\"x\":303,\"y\":244}],\"prob\":98,\"tableCellId\":64,\"tableId\":0,\"width\":22,\"word\":\"≥95\",\"x\":303,\"y\":234},{\"angle\":-89,\"direction\":0,\"height\":22,\"pos\":[{\"x\":346,\"y\":234},{\"x\":369,\"y\":234},{\"x\":369,\"y\":244},{\"x\":346,\"y\":244}],\"prob\":99,\"tableCellId\":65,\"tableId\":0,\"width\":9,\"word\":\"≥94\",\"x\":353,\"y\":228},{\"angle\":-90,\"direction\":0,\"height\":12,\"pos\":[{\"x\":70,\"y\":243},{\"x\":83,\"y\":243},{\"x\":83,\"y\":262},{\"x\":70,\"y\":262}],\"prob\":99,\"tableCellId\":60,\"tableId\":0,\"width\":18,\"word\":\"路\",\"x\":67,\"y\":246},{\"angle\":-89,\"direction\":0,\"height\":43,\"pos\":[{\"x\":103,\"y\":241},{\"x\":146,\"y\":241},{\"x\":146,\"y\":252},{\"x\":103,\"y\":252}],\"prob\":99,\"tableCellId\":61,\"tableId\":0,\"width\":10,\"word\":\"荷载等级\",\"x\":119,\"y\":225},{\"angle\":-90,\"direction\":0,\"height\":12,\"pos\":[{\"x\":70,\"y\":261},{\"x\":83,\"y\":261},{\"x\":83,\"y\":273},{\"x\":70,\"y\":273}],\"prob\":99,\"tableCellId\":60,\"tableId\":0,\"width\":11,\"word\":\"床\",\"x\":71,\"y\":261},{\"angle\":-89,\"direction\":0,\"height\":71,\"pos\":[{\"x\":89,\"y\":256},{\"x\":160,\"y\":256},{\"x\":160,\"y\":268},{\"x\":89,\"y\":267}],\"prob\":95,\"tableCellId\":70,\"tableId\":0,\"width\":11,\"word\":\"特重、极重��通\",\"x\":119,\"y\":226},{\"angle\":-89,\"direction\":0,\"height\":54,\"pos\":[{\"x\":170,\"y\":263},{\"x\":225,\"y\":264},{\"x\":225,\"y\":274},{\"x\":170,\"y\":273}],\"prob\":99,\"tableCellId\":71,\"tableId\":0,\"width\":9,\"word\":\"0.3m~1.2m\",\"x\":192,\"y\":241},{\"angle\":-89,\"direction\":0,\"height\":21,\"pos\":[{\"x\":232,\"y\":263},{\"x\":254,\"y\":263},{\"x\":254,\"y\":273},{\"x\":232,\"y\":273}],\"prob\":91,\"tableCellId\":72,\"tableId\":0,\"width\":9,\"word\":\"296\",\"x\":238,\"y\":257},{\"angle\":-89,\"direction\":0,\"height\":21,\"pos\":[{\"x\":303,\"y\":263},{\"x\":325,\"y\":263},{\"x\":325,\"y\":273},{\"x\":303,\"y\":273}],\"prob\":98,\"tableCellId\":73,\"tableId\":0,\"width\":9,\"word\":\"≥95\",\"x\":309,\"y\":257},{\"angle\":-90,\"direction\":0,\"height\":8,\"pos\":[{\"x\":362,\"y\":265},{\"x\":371,\"y\":265},{\"x\":371,\"y\":272},{\"x\":362,\"y\":272}],\"prob\":99,\"tableCellId\":74,\"tableId\":0,\"width\":7,\"word\":\"-\",\"x\":363,\"y\":264},{\"angle\":-89,\"direction\":0,\"height\":42,\"pos\":[{\"x\":103,\"y\":270},{\"x\":146,\"y\":270},{\"x\":146,\"y\":280},{\"x\":103,\"y\":280}],\"prob\":99,\"tableCellId\":70,\"tableId\":0,\"width\":10,\"word\":\"荷载等级\",\"x\":119,\"y\":254},{\"angle\":-90,\"direction\":1,\"height\":14,\"pos\":[{\"x\":47,\"y\":275},{\"x\":62,\"y\":275},{\"x\":62,\"y\":327},{\"x\":47,\"y\":327}],\"prob\":76,\"tableCellId\":41,\"tableId\":0,\"width\":51,\"word\":\"医卖\",\"x\":29,\"y\":294},{\"angle\":-89,\"direction\":0,\"height\":70,\"pos\":[{\"x\":89,\"y\":285},{\"x\":160,\"y\":286},{\"x\":160,\"y\":297},{\"x\":89,\"y\":296}],\"prob\":97,\"tableCellId\":89,\"tableId\":0,\"width\":11,\"word\":\"轻、中及重交通\",\"x\":119,\"y\":255},{\"angle\":-90,\"direction\":0,\"height\":15,\"pos\":[{\"x\":23,\"y\":298},{\"x\":39,\"y\":298},{\"x\":39,\"y\":308},{\"x\":23,\"y\":308}],\"prob\":99,\"tableCellId\":40,\"tableId\":0,\"width\":9,\"word\":\"1A\",\"x\":27,\"y\":295},{\"angle\":-90,\"direction\":0,\"height\":12,\"pos\":[{\"x\":70,\"y\":291},{\"x\":82,\"y\":291},{\"x\":82,\"y\":311},{\"x\":70,\"y\":311}],\"prob\":100,\"tableCellId\":88,\"tableId\":0,\"width\":19,\"word\":\"上\",\"x\":66,\"y\":294},{\"angle\":-89,\"direction\":0,\"height\":42,\"pos\":[{\"x\":103,\"y\":298},{\"x\":146,\"y\":299},{\"x\":146,\"y\":310},{\"x\":103,\"y\":309}],\"prob\":97,\"tableCellId\":89,\"tableId\":0,\"width\":10,\"word\":\"荷载等级\",\"x\":119,\"y\":283},{\"angle\":-89,\"direction\":0,\"height\":54,\"pos\":[{\"x\":170,\"y\":292},{\"x\":225,\"y\":292},{\"x\":225,\"y\":303},{\"x\":170,\"y\":302}],\"prob\":99,\"tableCellId\":90,\"tableId\":0,\"width\":10,\"word\":\"0.8m~1.5m\",\"x\":192,\"y\":270},{\"angle\":-89,\"direction\":0,\"height\":22,\"pos\":[{\"x\":232,\"y\":292},{\"x\":254,\"y\":292},{\"x\":254,\"y\":302},{\"x\":232,\"y\":302}],\"prob\":84,\"tableCellId\":91,\"tableId\":0,\"width\":9,\"word\":\"≥94\",\"x\":238,\"y\":286},{\"angle\":-89,\"direction\":0,\"height\":22,\"pos\":[{\"x\":303,\"y\":292},{\"x\":325,\"y\":292},{\"x\":325,\"y\":302},{\"x\":303,\"y\":302}],\"prob\":97,\"tableCellId\":92,\"tableId\":0,\"width\":9,\"word\":\"≥94\",\"x\":309,\"y\":286},{\"angle\":-89,\"direction\":0,\"height\":22,\"pos\":[{\"x\":346,\"y\":292},{\"x\":369,\"y\":292},{\"x\":369,\"y\":302},{\"x\":346,\"y\":302}],\"prob\":99,\"tableCellId\":93,\"tableId\":0,\"width\":9,\"word\":\"≥93\",\"x\":353,\"y\":286},{\"angle\":-90,\"direction\":0,\"height\":12,\"pos\":[{\"x\":2,\"y\":308},{\"x\":15,\"y\":308},{\"x\":15,\"y\":325},{\"x\":2,\"y\":325}],\"prob\":99,\"tableCellId\":-1,\"tableId\":-1,\"width\":16,\"word\":\"实\",\"x\":0,\"y\":310},{\"angle\":-90,\"direction\":0,\"height\":12,\"pos\":[{\"x\":70,\"y\":305},{\"x\":82,\"y\":305},{\"x\":82,\"y\":319},{\"x\":70,\"y\":319}],\"prob\":99,\"tableCellId\":88,\"tableId\":0,\"width\":13,\"word\":\"路\",\"x\":69,\"y\":306},{\"angle\":-90,\"direction\":0,\"height\":12,\"pos\":[{\"x\":69,\"y\":314},{\"x\":82,\"y\":314},{\"x\":82,\"y\":332},{\"x\":69,\"y\":332}],\"prob\":82,\"tableCellId\":88,\"tableId\":0,\"width\":18,\"word\":\"提\",\"x\":67,\"y\":317},{\"angle\":-89,\"direction\":0,\"height\":71,\"pos\":[{\"x\":89,\"y\":314},{\"x\":160,\"y\":315},{\"x\":160,\"y\":326},{\"x\":89,\"y\":325}],\"prob\":93,\"tableCellId\":107,\"tableId\":0,\"width\":11,\"word\":\"特薰、极薰交通\",\"x\":119,\"y\":284},{\"angle\":-90,\"direction\":0,\"height\":45,\"pos\":[{\"x\":409,\"y\":281},{\"x\":454,\"y\":281},{\"x\":454,\"y\":339},{\"x\":409,\"y\":339}],\"prob\":99,\"tableCellId\":-1,\"tableId\":-1,\"width\":58,\"word\":\"第\",\"x\":403,\"y\":287},{\"angle\":-90,\"direction\":0,\"height\":34,\"pos\":[{\"x\":544,\"y\":283},{\"x\":578,\"y\":283},{\"x\":578,\"y\":340},{\"x\":544,\"y\":340}],\"prob\":99,\"tableCellId\":-1,\"tableId\":-1,\"width\":56,\"word\":\"页\",\"x\":533,\"y\":294},{\"angle\":-7,\"direction\":0,\"height\":41,\"pos\":[{\"x\":14,\"y\":321},{\"x\":19,\"y\":362},{\"x\":5,\"y\":363},{\"x\":0,\"y\":322}],\"prob\":69,\"tableCellId\":-1,\"tableId\":-1,\"width\":13,\"word\":\"餐\",\"x\":3,\"y\":321},{\"angle\":-89,\"direction\":0,\"height\":54,\"pos\":[{\"x\":170,\"y\":321},{\"x\":225,\"y\":321},{\"x\":225,\"y\":331},{\"x\":170,\"y\":331}],\"prob\":99,\"tableCellId\":108,\"tableId\":0,\"width\":9,\"word\":\"1.2m~1.9m\",\"x\":193,\"y\":299},{\"angle\":-89,\"direction\":0,\"height\":22,\"pos\":[{\"x\":232,\"y\":321},{\"x\":254,\"y\":321},{\"x\":254,\"y\":331},{\"x\":232,\"y\":331}],\"prob\":96,\"tableCellId\":109,\"tableId\":0,\"width\":9,\"word\":\"≥94\",\"x\":238,\"y\":315},{\"angle\":-89,\"direction\":0,\"height\":22,\"pos\":[{\"x\":303,\"y\":321},{\"x\":325,\"y\":321},{\"x\":325,\"y\":331},{\"x\":303,\"y\":331}],\"prob\":93,\"tableCellId\":110,\"tableId\":0,\"width\":9,\"word\":\"≥94\",\"x\":310,\"y\":315},{\"angle\":-90,\"direction\":0,\"height\":9,\"pos\":[{\"x\":362,\"y\":322},{\"x\":372,\"y\":322},{\"x\":372,\"y\":331},{\"x\":362,\"y\":331}],\"prob\":99,\"tableCellId\":111,\"tableId\":0,\"width\":8,\"word\":\"-\",\"x\":362,\"y\":321},{\"angle\":-89,\"direction\":0,\"height\":42,\"pos\":[{\"x\":103,\"y\":328},{\"x\":146,\"y\":328},{\"x\":146,\"y\":339},{\"x\":103,\"y\":339}],\"prob\":98,\"tableCellId\":107,\"tableId\":0,\"width\":10,\"word\":\"荷载等级\",\"x\":119,\"y\":312},{\"angle\":-89,\"direction\":0,\"height\":71,\"pos\":[{\"x\":89,\"y\":343},{\"x\":160,\"y\":343},{\"x\":160,\"y\":354},{\"x\":89,\"y\":354}],\"prob\":99,\"tableCellId\":126,\"tableId\":0,\"width\":11,\"word\":\"轻、中及交通\",\"x\":119,\"y\":313},{\"angle\":-90,\"direction\":0,\"height\":11,\"pos\":[{\"x\":70,\"y\":352},{\"x\":81,\"y\":352},{\"x\":81,\"y\":364},{\"x\":70,\"y\":364}],\"prob\":99,\"tableCellId\":125,\"tableId\":0,\"width\":12,\"word\":\"下\",\"x\":69,\"y\":352},{\"angle\":-89,\"direction\":0,\"height\":33,\"pos\":[{\"x\":181,\"y\":350},{\"x\":215,\"y\":350},{\"x\":214,\"y\":360},{\"x\":181,\"y\":360}],\"prob\":98,\"tableCellId\":127,\"tableId\":0,\"width\":10,\"word\":\"≥1.5m\",\"x\":192,\"y\":338},{\"angle\":-89,\"direction\":0,\"height\":42,\"pos\":[{\"x\":103,\"y\":356},{\"x\":146,\"y\":357},{\"x\":146,\"y\":368},{\"x\":103,\"y\":367}],\"prob\":99,\"tableCellId\":126,\"tableId\":0,\"width\":10,\"word\":\"荷载等级\",\"x\":119,\"y\":341},{\"angle\":-90,\"direction\":0,\"height\":12,\"pos\":[{\"x\":70,\"y\":362},{\"x\":82,\"y\":362},{\"x\":82,\"y\":379},{\"x\":70,\"y\":379}],\"prob\":99,\"tableCellId\":125,\"tableId\":0,\"width\":16,\"word\":\"路\",\"x\":68,\"y\":365},{\"angle\":-89,\"direction\":0,\"height\":22,\"pos\":[{\"x\":232,\"y\":365},{\"x\":254,\"y\":365},{\"x\":254,\"y\":375},{\"x\":232,\"y\":375}],\"prob\":86,\"tableCellId\":128,\"tableId\":0,\"width\":9,\"word\":\"≥93\",\"x\":238,\"y\":359},{\"angle\":-89,\"direction\":0,\"height\":22,\"pos\":[{\"x\":303,\"y\":365},{\"x\":325,\"y\":365},{\"x\":325,\"y\":375},{\"x\":303,\"y\":375}],\"prob\":88,\"tableCellId\":129,\"tableId\":0,\"width\":9,\"word\":\"≥92\",\"x\":309,\"y\":359},{\"angle\":0,\"direction\":0,\"height\":9,\"pos\":[{\"x\":346,\"y\":365},{\"x\":369,\"y\":365},{\"x\":369,\"y\":375},{\"x\":346,\"y\":375}],\"prob\":99,\"tableCellId\":130,\"tableId\":0,\"width\":22,\"word\":\"≥90\",\"x\":346,\"y\":365},{\"angle\":-90,\"direction\":0,\"height\":12,\"pos\":[{\"x\":70,\"y\":377},{\"x\":83,\"y\":377},{\"x\":83,\"y\":389},{\"x\":70,\"y\":389}],\"prob\":78,\"tableCellId\":125,\"tableId\":0,\"width\":11,\"word\":\"提\",\"x\":71,\"y\":377},{\"angle\":-89,\"direction\":0,\"height\":71,\"pos\":[{\"x\":89,\"y\":372},{\"x\":160,\"y\":372},{\"x\":160,\"y\":384},{\"x\":89,\"y\":383}],\"prob\":99,\"tableCellId\":144,\"tableId\":0,\"width\":11,\"word\":\"特、极薰交通\",\"x\":119,\"y\":342},{\"angle\":-89,\"direction\":0,\"height\":34,\"pos\":[{\"x\":181,\"y\":379},{\"x\":215,\"y\":379},{\"x\":215,\"y\":389},{\"x\":181,\"y\":389}],\"prob\":98,\"tableCellId\":145,\"tableId\":0,\"width\":10,\"word\":\"≥1.9m\",\"x\":193,\"y\":367},{\"angle\":-89,\"direction\":0,\"height\":42,\"pos\":[{\"x\":103,\"y\":386},{\"x\":146,\"y\":386},{\"x\":146,\"y\":397},{\"x\":103,\"y\":397}],\"prob\":99,\"tableCellId\":144,\"tableId\":0,\"width\":10,\"word\":\"荷载等级\",\"x\":119,\"y\":370},{\"angle\":-90,\"direction\":0,\"height\":15,\"pos\":[{\"x\":21,\"y\":403},{\"x\":36,\"y\":403},{\"x\":36,\"y\":413},{\"x\":21,\"y\":413}],\"prob\":99,\"tableCellId\":159,\"tableId\":0,\"width\":9,\"word\":\"2A\",\"x\":24,\"y\":400},{\"angle\":-89,\"direction\":0,\"height\":66,\"pos\":[{\"x\":101,\"y\":402},{\"x\":168,\"y\":403},{\"x\":168,\"y\":413},{\"x\":101,\"y\":413}],\"prob\":98,\"tableCellId\":160,\"tableId\":0,\"width\":10,\"word\":\"弯沉(0.01mm)\",\"x\":129,\"y\":375},{\"angle\":-89,\"direction\":0,\"height\":82,\"pos\":[{\"x\":268,\"y\":402},{\"x\":350,\"y\":402},{\"x\":350,\"y\":414},{\"x\":268,\"y\":413}],\"prob\":99,\"tableCellId\":161,\"tableId\":0,\"width\":11,\"word\":\"≤设计验收弯沉值\",\"x\":304,\"y\":367},{\"angle\":-90,\"direction\":0,\"height\":9,\"pos\":[{\"x\":28,\"y\":421},{\"x\":37,\"y\":421},{\"x\":37,\"y\":431},{\"x\":28,\"y\":431}],\"prob\":99,\"tableCellId\":166,\"tableId\":0,\"width\":10,\"word\":\"3\",\"x\":27,\"y\":421},{\"angle\":-89,\"direction\":0,\"height\":66,\"pos\":[{\"x\":102,\"y\":420},{\"x\":168,\"y\":420},{\"x\":168,\"y\":431},{\"x\":102,\"y\":431}],\"prob\":99,\"tableCellId\":167,\"tableId\":0,\"width\":11,\"word\":\"纵断商程(mm)\",\"x\":129,\"y\":393},{\"angle\":-89,\"direction\":0,\"height\":42,\"pos\":[{\"x\":235,\"y\":421},{\"x\":278,\"y\":421},{\"x\":278,\"y\":431},{\"x\":235,\"y\":431}],\"prob\":99,\"tableCellId\":168,\"tableId\":0,\"width\":10,\"word\":\"+10,-15\",\"x\":251,\"y\":405},{\"angle\":-89,\"direction\":0,\"height\":36,\"pos\":[{\"x\":329,\"y\":421},{\"x\":366,\"y\":421},{\"x\":366,\"y\":431},{\"x\":329,\"y\":431}],\"prob\":99,\"tableCellId\":169,\"tableId\":0,\"width\":10,\"word\":\"+10.-20\",\"x\":342,\"y\":408},{\"angle\":-90,\"direction\":0,\"height\":10,\"pos\":[{\"x\":28,\"y\":438},{\"x\":38,\"y\":438},{\"x\":38,\"y\":448},{\"x\":28,\"y\":448}],\"prob\":99,\"tableCellId\":183,\"tableId\":0,\"width\":10,\"word\":\"4\",\"x\":28,\"y\":438},{\"angle\":-89,\"direction\":0,\"height\":66,\"pos\":[{\"x\":102,\"y\":437},{\"x\":168,\"y\":438},{\"x\":168,\"y\":449},{\"x\":102,\"y\":448}],\"prob\":99,\"tableCellId\":184,\"tableId\":0,\"width\":10,\"word\":\"中线偏位(mm)\",\"x\":130,\"y\":410},{\"angle\":-90,\"direction\":0,\"height\":13,\"pos\":[{\"x\":259,\"y\":438},{\"x\":273,\"y\":438},{\"x\":273,\"y\":448},{\"x\":259,\"y\":448}],\"prob\":99,\"tableCellId\":185,\"tableId\":0,\"width\":10,\"word\":\"50\",\"x\":261,\"y\":436},{\"angle\":0,\"direction\":0,\"height\":9,\"pos\":[{\"x\":336,\"y\":438},{\"x\":354,\"y\":438},{\"x\":354,\"y\":448},{\"x\":336,\"y\":448}],\"prob\":99,\"tableCellId\":186,\"tableId\":0,\"width\":18,\"word\":\"100\",\"x\":336,\"y\":438},{\"angle\":-90,\"direction\":0,\"height\":9,\"pos\":[{\"x\":28,\"y\":455},{\"x\":38,\"y\":455},{\"x\":38,\"y\":465},{\"x\":28,\"y\":465}],\"prob\":99,\"tableCellId\":200,\"tableId\":0,\"width\":10,\"word\":\"5\",\"x\":28,\"y\":455},{\"angle\":-89,\"direction\":0,\"height\":47,\"pos\":[{\"x\":111,\"y\":454},{\"x\":159,\"y\":455},{\"x\":159,\"y\":466},{\"x\":111,\"y\":465}],\"prob\":99,\"tableCellId\":201,\"tableId\":0,\"width\":10,\"word\":\"宽度(mm)\",\"x\":130,\"y\":436},{\"angle\":-89,\"direction\":0,\"height\":62,\"pos\":[{\"x\":278,\"y\":454},{\"x\":341,\"y\":454},{\"x\":341,\"y\":466},{\"x\":278,\"y\":465}],\"prob\":99,\"tableCellId\":202,\"tableId\":0,\"width\":11,\"word\":\"满足设计要求\",\"x\":304,\"y\":429},{\"angle\":-90,\"direction\":0,\"height\":10,\"pos\":[{\"x\":28,\"y\":472},{\"x\":38,\"y\":472},{\"x\":38,\"y\":482},{\"x\":28,\"y\":482}],\"prob\":99,\"tableCellId\":216,\"tableId\":0,\"width\":10,\"word\":\"6\",\"x\":28,\"y\":472},{\"angle\":-89,\"direction\":0,\"height\":57,\"pos\":[{\"x\":107,\"y\":471},{\"x\":164,\"y\":472},{\"x\":164,\"y\":483},{\"x\":107,\"y\":482}],\"prob\":99,\"tableCellId\":217,\"tableId\":0,\"width\":10,\"word\":\"平整度(mm)\",\"x\":130,\"y\":448},{\"angle\":-89,\"direction\":0,\"height\":21,\"pos\":[{\"x\":243,\"y\":472},{\"x\":264,\"y\":472},{\"x\":264,\"y\":482},{\"x\":243,\"y\":482}],\"prob\":78,\"tableCellId\":218,\"tableId\":0,\"width\":9,\"word\":\"415\",\"x\":249,\"y\":466},{\"angle\":-89,\"direction\":0,\"height\":21,\"pos\":[{\"x\":334,\"y\":472},{\"x\":356,\"y\":472},{\"x\":356,\"y\":482},{\"x\":334,\"y\":482}],\"prob\":75,\"tableCellId\":219,\"tableId\":0,\"width\":9,\"word\":\"520\",\"x\":340,\"y\":466},{\"angle\":-90,\"direction\":0,\"height\":9,\"pos\":[{\"x\":28,\"y\":488},{\"x\":38,\"y\":488},{\"x\":38,\"y\":497},{\"x\":28,\"y\":497}],\"prob\":99,\"tableCellId\":233,\"tableId\":0,\"width\":9,\"word\":\"7\",\"x\":28,\"y\":488},{\"angle\":-89,\"direction\":0,\"height\":43,\"pos\":[{\"x\":114,\"y\":487},{\"x\":157,\"y\":487},{\"x\":157,\"y\":498},{\"x\":114,\"y\":498}],\"prob\":95,\"tableCellId\":234,\"tableId\":0,\"width\":10,\"word\":\"横坡(%)\",\"x\":130,\"y\":471},{\"angle\":-89,\"direction\":0,\"height\":26,\"pos\":[{\"x\":244,\"y\":488},{\"x\":270,\"y\":488},{\"x\":270,\"y\":498},{\"x\":244,\"y\":498}],\"prob\":97,\"tableCellId\":235,\"tableId\":0,\"width\":9,\"word\":\"±0.3\",\"x\":252,\"y\":480},{\"angle\":-89,\"direction\":0,\"height\":27,\"pos\":[{\"x\":331,\"y\":488},{\"x\":359,\"y\":488},{\"x\":359,\"y\":498},{\"x\":331,\"y\":498}],\"prob\":98,\"tableCellId\":236,\"tableId\":0,\"width\":9,\"word\":\"±0.5\",\"x\":340,\"y\":479},{\"angle\":-90,\"direction\":0,\"height\":10,\"pos\":[{\"x\":28,\"y\":503},{\"x\":38,\"y\":503},{\"x\":38,\"y\":513},{\"x\":28,\"y\":513}],\"prob\":99,\"tableCellId\":250,\"tableId\":0,\"width\":10,\"word\":\"8\",\"x\":28,\"y\":502},{\"angle\":-89,\"direction\":0,\"height\":22,\"pos\":[{\"x\":126,\"y\":503},{\"x\":148,\"y\":503},{\"x\":148,\"y\":514},{\"x\":126,\"y\":514}],\"prob\":99,\"tableCellId\":251,\"tableId\":0,\"width\":10,\"word\":\"边坡\",\"x\":132,\"y\":497},{\"angle\":-89,\"direction\":0,\"height\":62,\"pos\":[{\"x\":278,\"y\":502},{\"x\":341,\"y\":502},{\"x\":340,\"y\":514},{\"x\":278,\"y\":514}],\"prob\":99,\"tableCellId\":252,\"tableId\":0,\"width\":11,\"word\":\"满足设计要求\",\"x\":303,\"y\":477},{\"angle\":-89,\"direction\":0,\"height\":250,\"pos\":[{\"x\":232,\"y\":524},{\"x\":483,\"y\":525},{\"x\":483,\"y\":536},{\"x\":232,\"y\":535}],\"prob\":95,\"tableCellId\":267,\"tableId\":0,\"width\":11,\"word\":\"01.路基边线与边坡未出现单向累计长度超过50m的弯折.\",\"x\":352,\"y\":405},{\"angle\":-89,\"direction\":0,\"height\":62,\"pos\":[{\"x\":576,\"y\":524},{\"x\":638,\"y\":525},{\"x\":638,\"y\":536},{\"x\":576,\"y\":535}],\"prob\":99,\"tableCellId\":267,\"tableId\":0,\"width\":11,\"word\":\"口2.路基边坡\",\"x\":602,\"y\":499},{\"angle\":-89,\"direction\":0,\"height\":42,\"pos\":[{\"x\":94,\"y\":530},{\"x\":136,\"y\":530},{\"x\":136,\"y\":542},{\"x\":94,\"y\":542}],\"prob\":99,\"tableCellId\":266,\"tableId\":0,\"width\":11,\"word\":\"外观质量\",\"x\":109,\"y\":515},{\"angle\":-89,\"direction\":0,\"height\":62,\"pos\":[{\"x\":694,\"y\":530},{\"x\":756,\"y\":530},{\"x\":756,\"y\":542},{\"x\":694,\"y\":542}],\"prob\":99,\"tableCellId\":268,\"tableId\":0,\"width\":11,\"word\":\"质量保证资料\",\"x\":719,\"y\":505},{\"angle\":-89,\"direction\":0,\"height\":121,\"pos\":[{\"x\":844,\"y\":530},{\"x\":965,\"y\":530},{\"x\":965,\"y\":542},{\"x\":844,\"y\":542}],\"prob\":99,\"tableCellId\":-1,\"tableId\":-1,\"width\":11,\"word\":\"口真实、准确、齐全、完整\",\"x\":899,\"y\":476},{\"angle\":-89,\"direction\":0,\"height\":251,\"pos\":[{\"x\":232,\"y\":537},{\"x\":483,\"y\":538},{\"x\":483,\"y\":549},{\"x\":232,\"y\":548}],\"prob\":99,\"tableCellId\":267,\"tableId\":0,\"width\":11,\"word\":\"、护坡道、碎离台无滑坡、爆方或深度超过100mm的冲沟.\",\"x\":352,\"y\":418},{\"angle\":-89,\"direction\":0,\"height\":83,\"pos\":[{\"x\":74,\"y\":562},{\"x\":157,\"y\":562},{\"x\":157,\"y\":574},{\"x\":74,\"y\":574}],\"prob\":99,\"tableCellId\":269,\"tableId\":0,\"width\":11,\"word\":\"工程质量等级评定\",\"x\":109,\"y\":526},{\"angle\":0,\"direction\":0,\"height\":11,\"pos\":[{\"x\":571,\"y\":562},{\"x\":603,\"y\":562},{\"x\":603,\"y\":574},{\"x\":571,\"y\":574}],\"prob\":99,\"tableCellId\":270,\"tableId\":0,\"width\":32,\"word\":\"口合格\",\"x\":571,\"y\":562},{\"angle\":-89,\"direction\":0,\"height\":41,\"pos\":[{\"x\":620,\"y\":562},{\"x\":662,\"y\":562},{\"x\":662,\"y\":574},{\"x\":620,\"y\":574}],\"prob\":99,\"tableCellId\":270,\"tableId\":0,\"width\":11,\"word\":\"口不合格\",\"x\":636,\"y\":547},{\"angle\":0,\"direction\":0,\"height\":12,\"pos\":[{\"x\":6,\"y\":588},{\"x\":61,\"y\":588},{\"x\":61,\"y\":601},{\"x\":6,\"y\":601}],\"prob\":99,\"tableCellId\":-1,\"tableId\":-1,\"width\":55,\"word\":\"检验负责人:\",\"x\":6,\"y\":588},{\"angle\":-89,\"direction\":0,\"height\":26,\"pos\":[{\"x\":129,\"y\":589},{\"x\":155,\"y\":589},{\"x\":155,\"y\":600},{\"x\":129,\"y\":600}],\"prob\":99,\"tableCellId\":-1,\"tableId\":-1,\"width\":11,\"word\":\"检测:\",\"x\":136,\"y\":581},{\"angle\":-89,\"direction\":0,\"height\":26,\"pos\":[{\"x\":228,\"y\":589},{\"x\":255,\"y\":589},{\"x\":255,\"y\":600},{\"x\":228,\"y\":600}],\"prob\":99,\"tableCellId\":-1,\"tableId\":-1,\"width\":11,\"word\":\"记录:\",\"x\":236,\"y\":581},{\"angle\":-89,\"direction\":0,\"height\":26,\"pos\":[{\"x\":349,\"y\":589},{\"x\":375,\"y\":589},{\"x\":375,\"y\":600},{\"x\":349,\"y\":600}],\"prob\":96,\"tableCellId\":-1,\"tableId\":-1,\"width\":11,\"word\":\"复核:\",\"x\":357,\"y\":582},{\"angle\":0,\"direction\":0,\"height\":11,\"pos\":[{\"x\":467,\"y\":589},{\"x\":544,\"y\":589},{\"x\":544,\"y\":600},{\"x\":467,\"y\":600}],\"prob\":99,\"tableCellId\":-1,\"tableId\":-1,\"width\":77,\"word\":\"专业监理工程师:\",\"x\":467,\"y\":589},{\"angle\":-90,\"direction\":0,\"height\":14,\"pos\":[{\"x\":717,\"y\":589},{\"x\":732,\"y\":589},{\"x\":732,\"y\":599},{\"x\":717,\"y\":599}],\"prob\":99,\"tableCellId\":-1,\"tableId\":-1,\"width\":10,\"word\":\"年\",\"x\":719,\"y\":587},{\"angle\":-90,\"direction\":0,\"height\":11,\"pos\":[{\"x\":754,\"y\":588},{\"x\":765,\"y\":588},{\"x\":765,\"y\":601},{\"x\":754,\"y\":601}],\"prob\":100,\"tableCellId\":-1,\"tableId\":-1,\"width\":12,\"word\":\"月\",\"x\":754,\"y\":589},{\"angle\":-90,\"direction\":0,\"height\":12,\"pos\":[{\"x\":788,\"y\":589},{\"x\":800,\"y\":589},{\"x\":800,\"y\":599},{\"x\":788,\"y\":599}],\"prob\":99,\"tableCellId\":-1,\"tableId\":-1,\"width\":10,\"word\":\"日\",\"x\":788,\"y\":588}],\"tableHeadTail\":[{\"tableId\":0,\"head\":[\"公路工程项目\",\"土方路基分项工程质量检验评定表\",\"分项工程名称: 工程部位:(柱号、墩台号、孔号) 所属建设项目(合同段):\",\"所分部工程名称: 所属单位工程: 施工单位: 分项工程编号:\"],\"tail\":[\"检验负责人: 检测: 记录: 复核: 专业监理工程师: 年 月日\"]}],\"width\":1008}"
+}
\ No newline at end of file
diff --git a/sample.xlsx b/sample.xlsx
new file mode 100644
index 0000000..a33785c
Binary files /dev/null and b/sample.xlsx differ
diff --git a/sheet.html b/sheet.html
new file mode 100644
index 0000000..a48a72a
--- /dev/null
+++ b/sheet.html
@@ -0,0 +1,36 @@
+
+
+
+
+
+ x-data-spreadsheet
+
+
+
+
+ x-data-spreadsheet
+
+
+
+
+
+
diff --git a/test.png b/test.png
new file mode 100644
index 0000000..0d00aa8
Binary files /dev/null and b/test.png differ