Forráskód Böngészése

试卷生成题卡数据调整

zhangjie 1 éve
szülő
commit
3d9c48e0ff

+ 2 - 1
card/mixins/exchange.js

@@ -388,7 +388,7 @@ export default {
 
       return infos.map((num) => num.toFixed(10) * 1);
     },
-    getPageModel({ cardConfig, pages }) {
+    getPageModel({ cardConfig, pages, answers = {} }) {
       let npages = this.parsePageExchange(pages);
       return JSON.stringify(
         {
@@ -396,6 +396,7 @@ export default {
           cardType: "STANDARD",
           cardConfig,
           pages: npages,
+          answers,
         },
         (k, v) => (k.startsWith("_") ? undefined : v)
       );

+ 3 - 0
src/modules/card/autoBuild/paperCard.js

@@ -226,6 +226,7 @@ export function buildCardElements(structList, elementTypePreSetInfo = {}) {
       struct.isCommon || (!struct.isCommon && struct.isOnlyOneNested)
         ? `${detailChineseNumber}、${struct.detailName}`
         : `${detailChineseNumber}(${struct.nestedQNo})`;
+    const topicNo = struct.detailNo;
     const modelType = structTypeToCardElementType[struct.structType];
     const elementTypePreSet = elementTypePreSetInfo[modelType] || {};
 
@@ -234,6 +235,7 @@ export function buildCardElements(structList, elementTypePreSetInfo = {}) {
         const presetData = {
           ...elementTypePreSet,
           topicName: `${topicName}、${qno}`,
+          topicNo,
           questionsCount: 1,
           startNumber: qno,
         };
@@ -246,6 +248,7 @@ export function buildCardElements(structList, elementTypePreSetInfo = {}) {
 
     const presetData = {
       topicName,
+      topicNo,
       ...elementTypePreSet,
       ...parseCommonQuestionPresetData(struct),
     };

+ 127 - 2
src/modules/card/components/CardBuildDialog.vue

@@ -76,8 +76,9 @@ import { buildCardFromPaperSimpleStruct } from "../autoBuild/simplePaperCard";
 // card components
 import { getCardHeadModel } from "../../../../card/elementModel";
 import TopicElementPreview from "../../../../card/components/TopicElementPreview";
-import CardView from "../../../../card/components/CardView";
+import CardView from "../../../../card/components/CardView.vue";
 import CardHeadSample from "../../../../card/elements/card-head/CardHead";
+import { objTypeOf } from "@/plugins/utils";
 // ceshi
 // import paperData from "./paper.json";
 
@@ -100,6 +101,7 @@ export default {
       loading: false,
       modalIsShow: false,
       paperInfo: {},
+      answers: {},
     };
   },
   computed: {
@@ -112,7 +114,12 @@ export default {
     },
   },
   methods: {
-    ...mapMutations("card", ["setCardConfig", "setTopics", "initState"]),
+    ...mapMutations("card", [
+      "setCardConfig",
+      "setTopics",
+      "setPages",
+      "initState",
+    ]),
     ...mapActions("card", ["resetTopicSeries", "rebuildPages"]),
     async initData() {
       this.loading = true;
@@ -145,7 +152,14 @@ export default {
           uuid: this.presetData.uuid,
           attachmentId: res.attachmentId,
         };
+        const answerJson = res.answerJson
+          ? JSON.parse(res.answerJson)
+          : { details: [] };
         const paperJson = res.paperJson ? JSON.parse(res.paperJson) : {};
+        this.rebuildPaperQuestionNumber(answerJson);
+        this.rebuildPaperQuestionNumber(paperJson);
+        this.parsePaperAnswers(paperJson, answerJson);
+
         const paperSimpleStruct = getPaperJsonSimpleStructInfo(paperJson);
         const elementTypePreSetInfo = {
           FILL_QUESTION: {
@@ -170,12 +184,91 @@ export default {
 
       this.$nextTick(() => {
         this.rebuildPages();
+        this.updatePageField();
 
         this.$nextTick(() => {
           this.buildData();
         });
       });
     },
+    rebuildPaperQuestionNumber(paperJson) {
+      // 如果一个大题有多个套题,那么套题的小题需要将强制转成为小题号连续
+      paperJson.details.forEach((detail) => {
+        const isOnlyOneQuestion = detail.questions.length === 1;
+        detail.questions.forEach((question) => {
+          let qno = 1;
+          if (
+            question.subQuestions &&
+            question.subQuestions.length &&
+            !isOnlyOneQuestion
+          ) {
+            question.subQuestions.forEach((subq) => {
+              subq.number = qno++;
+            });
+          }
+        });
+      });
+    },
+    getObjectiveQuestionAnswer(answer) {
+      if (objTypeOf(answer) === "boolean") {
+        return answer ? "A" : "B";
+      }
+      if (objTypeOf(answer) === "array") {
+        const abc = "abcdefghijklmnopqrstuvwxyz".toUpperCase();
+        return answer.map((item) => abc[item - 1]).join();
+      }
+    },
+    parsePaperAnswers(paperJson, answerJson) {
+      const infos = {};
+      const objectiveQuestionTypes = [1, 2, 3];
+      paperJson.details.forEach((detail) => {
+        detail.questions.forEach((question) => {
+          if (objectiveQuestionTypes.includes(question.structType)) {
+            const qno = `${detail.number}-${question.number}`;
+            if (!infos[qno]) {
+              infos[qno] = { answer: null, score: null };
+            }
+            infos[qno].score = question.score;
+            return;
+          }
+
+          if (question.subQuestions && question.subQuestions.length) {
+            question.subQuestions.forEach((subq) => {
+              if (objectiveQuestionTypes.includes(subq.structType)) {
+                const qno = `${detail.number}-${subq.number}`;
+                if (!infos[qno]) {
+                  infos[qno] = { answer: null, score: null };
+                }
+                infos[qno].score = subq.score;
+              }
+            });
+          }
+        });
+      });
+      answerJson.details.forEach((detail) => {
+        detail.questions.forEach((question) => {
+          if (question.subQuestions && question.subQuestions.length) {
+            question.subQuestions.forEach((subq) => {
+              const qno = `${detail.number}-${subq.number}`;
+              if (infos[qno]) {
+                infos[qno].answer = this.getObjectiveQuestionAnswer(
+                  subq.answer
+                );
+              }
+            });
+          } else {
+            const qno = `${detail.number}-${question.number}`;
+            if (infos[qno]) {
+              infos[qno].answer = this.getObjectiveQuestionAnswer(
+                question.answer
+              );
+            }
+          }
+        });
+      });
+
+      this.answers = infos;
+    },
     async getCardConfig(cardRuleId) {
       const data = await cardConfigInfos(cardRuleId);
       if (!data) {
@@ -210,10 +303,42 @@ export default {
       });
       return titleRule;
     },
+    updatePageField() {
+      const config = this.cardConfig;
+      // 变量
+      let fieldInfos = {};
+      [...config.requiredFields, ...config.extendFields]
+        .filter((item) => item.enable)
+        .map((item) => {
+          fieldInfos[item.code] = "${" + item.code + "}";
+        });
+
+      const isPrintExamNumber = config.examNumberStyle === "PRINT";
+      if (isPrintExamNumber) {
+        fieldInfos.examNumber = "data:image/png;base64,${examNumber}";
+        fieldInfos.examNumberStr = "${examNumberStr}";
+      }
+      if (config.aOrB && config.paperType === "PRINT") {
+        fieldInfos.paperType = "data:image/png;base64,${paperType}";
+        fieldInfos.paperTypeName = "${paperTypeName}";
+      }
+
+      const pages = this.pages.map((page, pageNo) => {
+        if (pageNo % 2) return page;
+        const cardHeadElement = page.columns[0].elements[0];
+
+        if (cardHeadElement.type === "CARD_HEAD") {
+          cardHeadElement.fieldInfos = fieldInfos;
+        }
+        return page;
+      });
+      this.setPages(pages);
+    },
     async buildData() {
       const model = this.$refs.CardView.getPageModel({
         cardConfig: this.cardConfig,
         pages: this.pages,
+        answers: this.answers,
       });
       const htmlContent = this.$refs.CardView.getPreviewTemp(
         document.getElementById("card-build").outerHTML

+ 281 - 0
src/modules/card/components/datas/answer.json

@@ -0,0 +1,281 @@
+{
+  "details": [
+    {
+      "number": 1,
+      "questions": [
+        {
+          "number": 1,
+          "answer": []
+        },
+        {
+          "number": 2,
+          "answer": []
+        },
+        {
+          "number": 3,
+          "answer": []
+        }
+      ]
+    },
+    {
+      "number": 2,
+      "questions": [
+        {
+          "number": 1,
+          "answer": [
+            {
+              "index": 0,
+              "sections": []
+            }
+          ]
+        }
+      ]
+    },
+    {
+      "number": 3,
+      "questions": [
+        {
+          "number": 1,
+          "answer": []
+        },
+        {
+          "number": 2,
+          "answer": []
+        },
+        {
+          "number": 3,
+          "answer": []
+        }
+      ]
+    },
+    {
+      "number": 4,
+      "questions": [
+        {
+          "number": 1,
+          "answer": false
+        },
+        {
+          "number": 2,
+          "answer": false
+        },
+        {
+          "number": 3,
+          "answer": false
+        },
+        {
+          "number": 4,
+          "answer": false
+        },
+        {
+          "number": 5,
+          "answer": false
+        },
+        {
+          "number": 6,
+          "answer": false
+        }
+      ]
+    },
+    {
+      "number": 5,
+      "questions": [
+        {
+          "number": 1,
+          "subQuestions": [
+            {
+              "number": 1,
+              "answer": []
+            },
+            {
+              "number": 2,
+              "answer": []
+            },
+            {
+              "number": 3,
+              "answer": []
+            },
+            {
+              "number": 4,
+              "answer": []
+            },
+            {
+              "number": 5,
+              "answer": []
+            }
+          ]
+        }
+      ]
+    },
+    {
+      "number": 6,
+      "questions": [
+        {
+          "number": 1,
+          "subQuestions": [
+            {
+              "number": 1,
+              "answer": []
+            },
+            {
+              "number": 2,
+              "answer": []
+            },
+            {
+              "number": 3,
+              "answer": []
+            },
+            {
+              "number": 4,
+              "answer": []
+            },
+            {
+              "number": 5,
+              "answer": []
+            },
+            {
+              "number": 6,
+              "answer": []
+            },
+            {
+              "number": 7,
+              "answer": []
+            },
+            {
+              "number": 8,
+              "answer": []
+            },
+            {
+              "number": 9,
+              "answer": []
+            },
+            {
+              "number": 10,
+              "answer": []
+            }
+          ]
+        }
+      ]
+    },
+    {
+      "number": 7,
+      "questions": [
+        {
+          "number": 1,
+          "subQuestions": [
+            {
+              "number": 1,
+              "answer": []
+            },
+            {
+              "number": 2,
+              "answer": []
+            },
+            {
+              "number": 3,
+              "answer": []
+            },
+            {
+              "number": 4,
+              "answer": []
+            },
+            {
+              "number": 5,
+              "answer": []
+            },
+            {
+              "number": 6,
+              "answer": []
+            },
+            {
+              "number": 7,
+              "answer": []
+            },
+            {
+              "number": 8,
+              "answer": []
+            },
+            {
+              "number": 9,
+              "answer": []
+            },
+            {
+              "number": 10,
+              "answer": []
+            }
+          ]
+        }
+      ]
+    },
+    {
+      "number": 8,
+      "questions": [
+        {
+          "number": 1,
+          "subQuestions": [
+            {
+              "number": 1,
+              "answer": []
+            },
+            {
+              "number": 2,
+              "answer": []
+            },
+            {
+              "number": 3,
+              "answer": []
+            },
+            {
+              "number": 4,
+              "answer": []
+            },
+            {
+              "number": 5,
+              "answer": []
+            },
+            {
+              "number": 6,
+              "answer": []
+            },
+            {
+              "number": 7,
+              "answer": []
+            },
+            {
+              "number": 8,
+              "answer": []
+            },
+            {
+              "number": 9,
+              "answer": []
+            },
+            {
+              "number": 10,
+              "answer": []
+            },
+            {
+              "number": 11,
+              "answer": []
+            },
+            {
+              "number": 12,
+              "answer": []
+            },
+            {
+              "number": 13,
+              "answer": []
+            },
+            {
+              "number": 14,
+              "answer": []
+            },
+            {
+              "number": 15,
+              "answer": []
+            }
+          ]
+        }
+      ]
+    }
+  ]
+}

+ 3993 - 0
src/modules/card/components/datas/card2.json

@@ -0,0 +1,3993 @@
+{
+  "version": "2.0.0",
+  "cardType": "STANDARD",
+  "cardConfig": {
+    "id": "497338414618640384",
+    "createId": "496044678022430720",
+    "createTime": 1709515518156,
+    "updateId": null,
+    "updateTime": 1709515518156,
+    "schoolId": "2",
+    "orgId": "476857569139232768",
+    "name": "规则1",
+    "examNumberStyle": "PRINT",
+    "examNumberDigit": 10,
+    "paperType": "PRINT",
+    "examAbsent": true,
+    "writeSign": true,
+    "discipline": true,
+    "undertakingEnable": false,
+    "undertakingBody": "在考试过程中,严格遵守考场纪律,服从监考老师安排,不请他(她)人代考,不将通讯设备、电子设备带入考场,不携带与有考试内容相关的纸质材料,不扰乱考场秩序,如违反,自愿承担相应责任。",
+    "requiredFields": [
+      {
+        "code": "studentName",
+        "name": "姓名",
+        "enable": true,
+        "contentHtml": "<i>姓</i> <i>名</i>"
+      }
+    ],
+    "extendFields": [
+      {
+        "code": "studentCode",
+        "name": "学号",
+        "enable": true,
+        "contentHtml": "<i>学</i> <i>号</i>"
+      },
+      {
+        "code": "courseName",
+        "name": "课程名称",
+        "enable": true,
+        "contentHtml": "<i>课</i> <i>程</i> <i>名</i> <i>称</i>"
+      },
+      {
+        "code": "courseCode",
+        "name": "课程代码",
+        "enable": true,
+        "contentHtml": "<i>课</i> <i>程</i> <i>代</i> <i>码</i>"
+      },
+      {
+        "code": "paperNumber",
+        "name": "试卷编号",
+        "enable": false
+      },
+      {
+        "code": "examDate",
+        "name": "考试日期",
+        "enable": true,
+        "contentHtml": "<i>考</i> <i>试</i> <i>日</i> <i>期</i>"
+      },
+      {
+        "code": "examTime",
+        "name": "考试时间",
+        "enable": true,
+        "contentHtml": "<i>考</i> <i>试</i> <i>时</i> <i>间</i>"
+      },
+      {
+        "code": "examPlace",
+        "name": "校区(考点)",
+        "enable": false
+      },
+      {
+        "code": "examRoom",
+        "name": "考试教室(考场)",
+        "enable": false
+      },
+      {
+        "code": "collegeName",
+        "name": "学院",
+        "enable": false
+      },
+      {
+        "code": "teachClazzName",
+        "name": "教学班",
+        "enable": false
+      },
+      {
+        "code": "teachName",
+        "name": "任课老师",
+        "enable": false
+      }
+    ],
+    "titleRule": "${schoolName}",
+    "firstLevelSubheading": "一级",
+    "secondLevelSubheading": "二级f",
+    "attention": "无",
+    "objectiveAttention": "",
+    "subjectiveAttention": "",
+    "enable": true,
+    "remark": "",
+    "fillNumber": 10,
+    "orgIds": null,
+    "pageSize": "A3",
+    "columnNumber": 2,
+    "columnGap": 20,
+    "showForbidArea": false,
+    "makeMethod": "SELF",
+    "aOrB": false,
+    "cardTitle": "测试学校_2"
+  },
+  "pages": [
+    {
+      "type": "PAGE",
+      "pageSize": "A3",
+      "columnNumber": 2,
+      "columnGap": 20,
+      "locators": {
+        "top": [
+          {
+            "id": "locator-0-00",
+            "type": "LOCATOR",
+            "x": "",
+            "y": "",
+            "w": "",
+            "h": ""
+          },
+          {
+            "id": "locator-0-01",
+            "type": "LOCATOR",
+            "x": "",
+            "y": "",
+            "w": "",
+            "h": ""
+          }
+        ],
+        "bottom": [
+          {
+            "id": "locator-0-10",
+            "type": "LOCATOR",
+            "x": "",
+            "y": "",
+            "w": "",
+            "h": ""
+          }
+        ]
+      },
+      "globals": [],
+      "columns": [
+        {
+          "type": "COLUMN",
+          "x": "",
+          "y": "",
+          "w": "",
+          "h": "",
+          "isFull": false,
+          "elements": [
+            {
+              "type": "CARD_HEAD",
+              "x": 0,
+              "y": 0,
+              "w": 703,
+              "h": 444,
+              "cardTitle": "测试学校_2",
+              "firstLevelSubheading": "一级",
+              "secondLevelSubheading": "二级f",
+              "aOrB": false,
+              "paperType": "PRINT",
+              "examAbsent": true,
+              "writeSign": true,
+              "fillNumber": 10,
+              "examNumberStyle": "PRINT",
+              "businessParams": [],
+              "attention": "无",
+              "objectiveAttention": "",
+              "subjectiveAttention": "",
+              "columnNumber": 2,
+              "isSimple": false,
+              "sign": "head",
+              "id": "element-prg2kiq89g63jc9g",
+              "createId": "496044678022430720",
+              "createTime": 1709515518156,
+              "updateId": null,
+              "updateTime": 1709515518156,
+              "schoolId": "2",
+              "orgId": "476857569139232768",
+              "name": "规则1",
+              "examNumberDigit": 10,
+              "discipline": true,
+              "undertakingEnable": false,
+              "undertakingBody": "在考试过程中,严格遵守考场纪律,服从监考老师安排,不请他(她)人代考,不将通讯设备、电子设备带入考场,不携带与有考试内容相关的纸质材料,不扰乱考场秩序,如违反,自愿承担相应责任。",
+              "requiredFields": [
+                {
+                  "code": "studentName",
+                  "name": "姓名",
+                  "enable": true,
+                  "contentHtml": "<i>姓</i> <i>名</i>"
+                }
+              ],
+              "extendFields": [
+                {
+                  "code": "studentCode",
+                  "name": "学号",
+                  "enable": true,
+                  "contentHtml": "<i>学</i> <i>号</i>"
+                },
+                {
+                  "code": "courseName",
+                  "name": "课程名称",
+                  "enable": true,
+                  "contentHtml": "<i>课</i> <i>程</i> <i>名</i> <i>称</i>"
+                },
+                {
+                  "code": "courseCode",
+                  "name": "课程代码",
+                  "enable": true,
+                  "contentHtml": "<i>课</i> <i>程</i> <i>代</i> <i>码</i>"
+                },
+                {
+                  "code": "paperNumber",
+                  "name": "试卷编号",
+                  "enable": false
+                },
+                {
+                  "code": "examDate",
+                  "name": "考试日期",
+                  "enable": true,
+                  "contentHtml": "<i>考</i> <i>试</i> <i>日</i> <i>期</i>"
+                },
+                {
+                  "code": "examTime",
+                  "name": "考试时间",
+                  "enable": true,
+                  "contentHtml": "<i>考</i> <i>试</i> <i>时</i> <i>间</i>"
+                },
+                {
+                  "code": "examPlace",
+                  "name": "校区(考点)",
+                  "enable": false
+                },
+                {
+                  "code": "examRoom",
+                  "name": "考试教室(考场)",
+                  "enable": false
+                },
+                {
+                  "code": "collegeName",
+                  "name": "学院",
+                  "enable": false
+                },
+                {
+                  "code": "teachClazzName",
+                  "name": "教学班",
+                  "enable": false
+                },
+                {
+                  "code": "teachName",
+                  "name": "任课老师",
+                  "enable": false
+                }
+              ],
+              "titleRule": "${schoolName}",
+              "enable": true,
+              "remark": "",
+              "orgIds": null,
+              "pageSize": "A3",
+              "columnGap": 20,
+              "showForbidArea": false,
+              "makeMethod": "SELF",
+              "key": "7adiaitohokkn6n8",
+              "isCovered": false,
+              "fieldInfos": {
+                "studentName": "${studentName}",
+                "studentCode": "${studentCode}",
+                "courseName": "${courseName}",
+                "courseCode": "${courseCode}",
+                "examDate": "${examDate}",
+                "examTime": "${examTime}",
+                "examNumber": "data:image/png;base64,${examNumber}",
+                "examNumberStr": "${examNumberStr}"
+              }
+            },
+            {
+              "type": "TOPIC_HEAD",
+              "x": 0,
+              "y": 0,
+              "w": 0,
+              "h": 10,
+              "content": "",
+              "typeName": "客观题",
+              "isColumnFirst": false,
+              "sign": "objective",
+              "id": "element-61ie5qchbcj5esug",
+              "key": "26079udo95lucl5o"
+            },
+            {
+              "id": "element-pff28i9g8fmksqvg",
+              "key": "35t9qgpgdgv28f9g",
+              "type": "FILL_QUESTION",
+              "x": 0,
+              "y": 0,
+              "w": 703,
+              "h": 100,
+              "minHeight": 100,
+              "sign": "objective",
+              "topicName": "一、单项选择题",
+              "topicNo": 1,
+              "startNumber": 1,
+              "questionsCount": 3,
+              "optionCount": 4,
+              "questionCountPerGroup": 5,
+              "groupPerLine": 5,
+              "optionDirection": "horizontal",
+              "questionDirection": "vertical",
+              "questionGap": 8,
+              "groupGap": 27,
+              "optionGap": 6,
+              "isBoolean": false,
+              "booleanType": "√,×",
+              "isMultiply": false,
+              "isCovered": false,
+              "fontSize": "14px",
+              "pageSize": "A3",
+              "columnNumber": 2,
+              "parent": {
+                "id": "element-ip51qeegbj00b3io",
+                "key": "dqcui4fgg39om6uo",
+                "type": "FILL_QUESTION",
+                "x": 0,
+                "y": 0,
+                "w": 0,
+                "h": 114,
+                "minHeight": 114,
+                "sign": "objective",
+                "topicName": "一、单项选择题",
+                "topicNo": 1,
+                "startNumber": 1,
+                "questionsCount": 3,
+                "optionCount": 4,
+                "questionCountPerGroup": 5,
+                "groupPerLine": 4,
+                "optionDirection": "horizontal",
+                "questionDirection": "vertical",
+                "questionGap": 8,
+                "groupGap": 30,
+                "optionGap": 6,
+                "isBoolean": false,
+                "booleanType": "√,×",
+                "isMultiply": false,
+                "isCovered": false,
+                "fontSize": "14px",
+                "pageSize": "A3",
+                "columnNumber": 2
+              },
+              "isLast": true,
+              "elementSerialNo": 0
+            },
+            {
+              "id": "element-lls6p75ub8ai4ovg",
+              "key": "ggdp1kng4p3734ls",
+              "type": "FILL_QUESTION",
+              "x": 0,
+              "y": 0,
+              "w": 703,
+              "h": 136,
+              "minHeight": 136,
+              "sign": "objective",
+              "topicName": "五、Reading Comprehension ",
+              "topicNo": 5,
+              "startNumber": 1,
+              "questionsCount": 5,
+              "optionCount": 4,
+              "questionCountPerGroup": 5,
+              "groupPerLine": 5,
+              "optionDirection": "horizontal",
+              "questionDirection": "vertical",
+              "questionGap": 8,
+              "groupGap": 27,
+              "optionGap": 6,
+              "isBoolean": false,
+              "booleanType": "√,×",
+              "isMultiply": false,
+              "isCovered": false,
+              "fontSize": "14px",
+              "pageSize": "A3",
+              "columnNumber": 2,
+              "parent": {
+                "id": "element-a5kvfl8rr19s2s9g",
+                "key": "unpdsds7s8rdeabg",
+                "type": "FILL_QUESTION",
+                "x": 0,
+                "y": 0,
+                "w": 0,
+                "h": 114,
+                "minHeight": 114,
+                "sign": "objective",
+                "topicName": "五、Reading Comprehension ",
+                "topicNo": 5,
+                "startNumber": 1,
+                "questionsCount": 5,
+                "optionCount": 4,
+                "questionCountPerGroup": 5,
+                "groupPerLine": 4,
+                "optionDirection": "horizontal",
+                "questionDirection": "vertical",
+                "questionGap": 8,
+                "groupGap": 30,
+                "optionGap": 6,
+                "isBoolean": false,
+                "booleanType": "√,×",
+                "isMultiply": false,
+                "isCovered": false,
+                "fontSize": "14px",
+                "pageSize": "A3",
+                "columnNumber": 2
+              },
+              "isLast": true,
+              "elementSerialNo": 1
+            },
+            {
+              "id": "element-j50muang4nakva1o",
+              "key": "hec7cd68pqlhtp9o",
+              "type": "FILL_QUESTION",
+              "x": 0,
+              "y": 0,
+              "w": 703,
+              "h": 136,
+              "minHeight": 136,
+              "sign": "objective",
+              "topicName": "六、Choose The Correct ",
+              "topicNo": 6,
+              "startNumber": 1,
+              "questionsCount": 5,
+              "optionCount": 15,
+              "questionCountPerGroup": 5,
+              "groupPerLine": 1,
+              "optionDirection": "horizontal",
+              "questionDirection": "vertical",
+              "questionGap": 8,
+              "groupGap": 40,
+              "optionGap": 6,
+              "isBoolean": false,
+              "booleanType": "√,×",
+              "isMultiply": false,
+              "isCovered": false,
+              "fontSize": "14px",
+              "pageSize": "A3",
+              "columnNumber": 2,
+              "parent": {
+                "id": "element-he0mtomf040qum18",
+                "key": "dj5p49g88j3ac08o",
+                "type": "FILL_QUESTION",
+                "x": 0,
+                "y": 0,
+                "w": 0,
+                "h": 114,
+                "minHeight": 114,
+                "sign": "objective",
+                "topicName": "六、Choose The Correct ",
+                "topicNo": 6,
+                "startNumber": 1,
+                "questionsCount": 10,
+                "optionCount": 15,
+                "questionCountPerGroup": 5,
+                "groupPerLine": 4,
+                "optionDirection": "horizontal",
+                "questionDirection": "vertical",
+                "questionGap": 8,
+                "groupGap": 30,
+                "optionGap": 6,
+                "isBoolean": false,
+                "booleanType": "√,×",
+                "isMultiply": false,
+                "isCovered": false,
+                "fontSize": "14px",
+                "pageSize": "A3",
+                "columnNumber": 2
+              },
+              "isLast": false,
+              "elementSerialNo": 2
+            },
+            {
+              "id": "element-nigf354opplr6fig",
+              "key": "bijuk628tcgkh5uo",
+              "type": "FILL_QUESTION",
+              "x": 0,
+              "y": 0,
+              "w": 703,
+              "h": 102,
+              "minHeight": 102,
+              "sign": "objective",
+              "topicName": "六、Choose The Correct ",
+              "topicNo": 6,
+              "startNumber": 6,
+              "questionsCount": 5,
+              "optionCount": 15,
+              "questionCountPerGroup": 5,
+              "groupPerLine": 1,
+              "optionDirection": "horizontal",
+              "questionDirection": "vertical",
+              "questionGap": 8,
+              "groupGap": 40,
+              "optionGap": 6,
+              "isBoolean": false,
+              "booleanType": "√,×",
+              "isMultiply": false,
+              "isCovered": false,
+              "fontSize": "14px",
+              "pageSize": "A3",
+              "columnNumber": 2,
+              "parent": {
+                "id": "element-he0mtomf040qum18",
+                "key": "dj5p49g88j3ac08o",
+                "type": "FILL_QUESTION",
+                "x": 0,
+                "y": 0,
+                "w": 0,
+                "h": 114,
+                "minHeight": 114,
+                "sign": "objective",
+                "topicName": "六、Choose The Correct ",
+                "topicNo": 6,
+                "startNumber": 1,
+                "questionsCount": 10,
+                "optionCount": 15,
+                "questionCountPerGroup": 5,
+                "groupPerLine": 4,
+                "optionDirection": "horizontal",
+                "questionDirection": "vertical",
+                "questionGap": 8,
+                "groupGap": 30,
+                "optionGap": 6,
+                "isBoolean": false,
+                "booleanType": "√,×",
+                "isMultiply": false,
+                "isCovered": false,
+                "fontSize": "14px",
+                "pageSize": "A3",
+                "columnNumber": 2
+              },
+              "isLast": true,
+              "elementSerialNo": 3
+            }
+          ]
+        },
+        {
+          "type": "COLUMN",
+          "x": "",
+          "y": "",
+          "w": "",
+          "h": "",
+          "isFull": false,
+          "elements": [
+            {
+              "type": "TOPIC_HEAD",
+              "x": 0,
+              "y": 0,
+              "w": 0,
+              "h": 0,
+              "content": "",
+              "typeName": "客观题",
+              "isColumnFirst": true,
+              "sign": "objective",
+              "id": "element-qdfeeh2gr5se970g",
+              "key": "dgr0d5k8aqc2387g"
+            },
+            {
+              "id": "element-1ameeoq8882e7hgg",
+              "key": "htecjfsg95q3235g",
+              "type": "FILL_QUESTION",
+              "x": 0,
+              "y": 0,
+              "w": 703,
+              "h": 136,
+              "minHeight": 136,
+              "sign": "objective",
+              "topicName": "七、Paragraph Matching",
+              "topicNo": 7,
+              "startNumber": 1,
+              "questionsCount": 10,
+              "optionCount": 11,
+              "questionCountPerGroup": 5,
+              "groupPerLine": 2,
+              "optionDirection": "horizontal",
+              "questionDirection": "vertical",
+              "questionGap": 8,
+              "groupGap": 40,
+              "optionGap": 6,
+              "isBoolean": false,
+              "booleanType": "√,×",
+              "isMultiply": false,
+              "isCovered": false,
+              "fontSize": "14px",
+              "pageSize": "A3",
+              "columnNumber": 2,
+              "parent": {
+                "id": "element-8hug311o6f5a246o",
+                "key": "knuufda85kvk3t8d",
+                "type": "FILL_QUESTION",
+                "x": 0,
+                "y": 0,
+                "w": 0,
+                "h": 114,
+                "minHeight": 114,
+                "sign": "objective",
+                "topicName": "七、Paragraph Matching",
+                "topicNo": 7,
+                "startNumber": 1,
+                "questionsCount": 10,
+                "optionCount": 11,
+                "questionCountPerGroup": 5,
+                "groupPerLine": 4,
+                "optionDirection": "horizontal",
+                "questionDirection": "vertical",
+                "questionGap": 8,
+                "groupGap": 30,
+                "optionGap": 6,
+                "isBoolean": false,
+                "booleanType": "√,×",
+                "isMultiply": false,
+                "isCovered": false,
+                "fontSize": "14px",
+                "pageSize": "A3",
+                "columnNumber": 2
+              },
+              "isLast": true,
+              "elementSerialNo": 4
+            },
+            {
+              "id": "element-k1kh6qjos478j2k8",
+              "key": "fpjfctboua5d5ero",
+              "type": "FILL_QUESTION",
+              "x": 0,
+              "y": 0,
+              "w": 703,
+              "h": 136,
+              "minHeight": 136,
+              "sign": "objective",
+              "topicName": "八、阅读下面短文,从每题所给的A、B、C、D四个选项中选出可以填入空白处的最佳选项。",
+              "topicNo": 8,
+              "startNumber": 1,
+              "questionsCount": 15,
+              "optionCount": 4,
+              "questionCountPerGroup": 5,
+              "groupPerLine": 5,
+              "optionDirection": "horizontal",
+              "questionDirection": "vertical",
+              "questionGap": 8,
+              "groupGap": 27,
+              "optionGap": 6,
+              "isBoolean": false,
+              "booleanType": "√,×",
+              "isMultiply": false,
+              "isCovered": false,
+              "fontSize": "14px",
+              "pageSize": "A3",
+              "columnNumber": 2,
+              "parent": {
+                "id": "element-uaiigif80a2fufgg",
+                "key": "hkno51kolf9l4bbo",
+                "type": "FILL_QUESTION",
+                "x": 0,
+                "y": 0,
+                "w": 0,
+                "h": 114,
+                "minHeight": 114,
+                "sign": "objective",
+                "topicName": "八、阅读下面短文,从每题所给的A、B、C、D四个选项中选出可以填入空白处的最佳选项。",
+                "topicNo": 8,
+                "startNumber": 1,
+                "questionsCount": 15,
+                "optionCount": 4,
+                "questionCountPerGroup": 5,
+                "groupPerLine": 4,
+                "optionDirection": "horizontal",
+                "questionDirection": "vertical",
+                "questionGap": 8,
+                "groupGap": 30,
+                "optionGap": 6,
+                "isBoolean": false,
+                "booleanType": "√,×",
+                "isMultiply": false,
+                "isCovered": false,
+                "fontSize": "14px",
+                "pageSize": "A3",
+                "columnNumber": 2
+              },
+              "isLast": true,
+              "elementSerialNo": 5
+            },
+            {
+              "id": "element-e5r43mhgfu6hbvko",
+              "key": "a8gdt7eo97nf2c49",
+              "type": "FILL_QUESTION",
+              "x": 0,
+              "y": 0,
+              "w": 703,
+              "h": 136,
+              "minHeight": 136,
+              "sign": "objective",
+              "topicName": "四、判断题",
+              "topicNo": 4,
+              "startNumber": 1,
+              "questionsCount": 6,
+              "optionCount": 2,
+              "questionCountPerGroup": 5,
+              "groupPerLine": 7,
+              "optionDirection": "horizontal",
+              "questionDirection": "vertical",
+              "questionGap": 8,
+              "groupGap": 33,
+              "optionGap": 6,
+              "isBoolean": true,
+              "booleanType": "√,×",
+              "isMultiply": false,
+              "isCovered": false,
+              "fontSize": "14px",
+              "pageSize": "A3",
+              "columnNumber": 2,
+              "parent": {
+                "id": "element-br1jved8569sikho",
+                "key": "84kbg06g4q0ao66a",
+                "type": "FILL_QUESTION",
+                "x": 0,
+                "y": 0,
+                "w": 0,
+                "h": 114,
+                "minHeight": 114,
+                "sign": "objective",
+                "topicName": "四、判断题",
+                "topicNo": 4,
+                "startNumber": 1,
+                "questionsCount": 6,
+                "optionCount": 2,
+                "questionCountPerGroup": 5,
+                "groupPerLine": 4,
+                "optionDirection": "horizontal",
+                "questionDirection": "vertical",
+                "questionGap": 8,
+                "groupGap": 30,
+                "optionGap": 6,
+                "isBoolean": true,
+                "booleanType": "√,×",
+                "isMultiply": false,
+                "isCovered": false,
+                "fontSize": "14px",
+                "pageSize": "A3",
+                "columnNumber": 2
+              },
+              "isLast": true,
+              "elementSerialNo": 6
+            },
+            {
+              "type": "TOPIC_HEAD",
+              "x": 0,
+              "y": 0,
+              "w": 0,
+              "h": 10,
+              "content": "",
+              "typeName": "主观题",
+              "isColumnFirst": false,
+              "sign": "subjective",
+              "id": "element-ltnfofh13mi1uoto",
+              "key": "lp5ri82qdnkjcfet"
+            },
+            {
+              "id": "element-3ntmvg2djo33cfro",
+              "key": "gmh3e4q897acm4i1",
+              "type": "FILL_LINE",
+              "x": 0,
+              "y": 0,
+              "w": 703,
+              "h": 74,
+              "minHeight": 74,
+              "sign": "subjective",
+              "topicName": "二、填空题",
+              "topicNo": 2,
+              "startNumber": 1,
+              "questionsCount": 1,
+              "questionNumberPerLine": 2,
+              "lineNumberPerQuestion": 1,
+              "lineSpacing": 40,
+              "questionDirection": "vertical",
+              "questionLineType": "custom",
+              "questionLineNums": [
+                {
+                  "no": 1,
+                  "count": 1
+                }
+              ],
+              "numberPre": "",
+              "isCovered": false,
+              "optionCount": 1,
+              "parent": {
+                "id": "element-j08kf19occhfbca8",
+                "key": "mbrp1n187u0cvh8g",
+                "type": "FILL_LINE",
+                "x": 0,
+                "y": 0,
+                "w": 0,
+                "h": 40,
+                "minHeight": 40,
+                "sign": "subjective",
+                "topicName": "二、填空题",
+                "topicNo": 2,
+                "startNumber": 1,
+                "questionsCount": 1,
+                "questionNumberPerLine": 2,
+                "lineNumberPerQuestion": 1,
+                "lineSpacing": 40,
+                "questionDirection": "vertical",
+                "questionLineType": "custom",
+                "questionLineNums": [
+                  {
+                    "no": 1,
+                    "count": 1
+                  }
+                ],
+                "numberPre": "",
+                "isCovered": false,
+                "optionCount": 1
+              },
+              "isLast": true,
+              "elementSerialNo": 7
+            },
+            {
+              "type": "EXPLAIN",
+              "x": 0,
+              "y": 0,
+              "w": 703,
+              "h": 458,
+              "minHeight": 60,
+              "sign": "subjective",
+              "topicNo": 3,
+              "isCovered": false,
+              "isLast": true,
+              "isExtend": false,
+              "showTitle": true,
+              "serialNumber": 1,
+              "elements": [],
+              "parent": {
+                "id": "element-nh97giuo1t96b5uu",
+                "key": "gubr82abck43lp1o",
+                "type": "EXPLAIN",
+                "sign": "subjective",
+                "topicNo": 3,
+                "topicName": "三、计算题",
+                "startNumber": 1,
+                "questionsCount": 3
+              },
+              "id": "element-eghcnho8m9tp2j1o",
+              "key": "gdtjlb6oa5ojdo4g",
+              "elementSerialNo": 8
+            }
+          ]
+        }
+      ],
+      "exchange": {
+        "card_type": 2,
+        "page_size": "A3",
+        "page_image": "",
+        "locator": {
+          "top": [
+            [
+              0.0504413619,
+              0.0267379679,
+              0.0151324086,
+              0.0142602496
+            ],
+            [
+              0.8738965952,
+              0.0267379679,
+              0.0151324086,
+              0.0142602496
+            ]
+          ],
+          "bottom": [
+            [
+              0.0504413619,
+              0.9590017825,
+              0.0151324086,
+              0.0142602496
+            ]
+          ]
+        },
+        "fill_locator": [],
+        "check_area": {
+          "black_line": [],
+          "white_line": []
+        },
+        "barcode": [
+          {
+            "field": "examNumber",
+            "area": [
+              0.0504413619,
+              0.1310160428,
+              0.2184741488,
+              0.1711229947
+            ]
+          }
+        ],
+        "qrcode": [],
+        "ocr_area": [],
+        "info_area": [
+          [
+            0.0504413619,
+            0.0534759358,
+            0.4432534678,
+            0.3957219251
+          ]
+        ],
+        "fill_area": [
+          {
+            "field": "absent",
+            "index": 1,
+            "single": true,
+            "horizontal": true,
+            "items": [
+              {
+                "main_number": null,
+                "sub_number": null,
+                "options": [
+                  [
+                    0.3394546028,
+                    0.4271947415,
+                    0.0151324086,
+                    0.0106951872
+                  ]
+                ],
+                "recog_info": []
+              }
+            ]
+          },
+          {
+            "field": "breach",
+            "index": 1,
+            "single": true,
+            "horizontal": true,
+            "items": [
+              {
+                "main_number": null,
+                "sub_number": null,
+                "options": [
+                  [
+                    0.4483764187,
+                    0.4271947415,
+                    0.0151324086,
+                    0.0106951872
+                  ]
+                ],
+                "recog_info": []
+              }
+            ]
+          },
+          {
+            "field": "question",
+            "index": 1,
+            "single": true,
+            "horizontal": true,
+            "items": [
+              {
+                "main_number": 1,
+                "sub_number": 1,
+                "options": [
+                  [
+                    0.0687263556,
+                    0.4973262032,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0838587642,
+                    0.4973262032,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0989911728,
+                    0.4973262032,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1141235813,
+                    0.4973262032,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 1,
+                "sub_number": 2,
+                "options": [
+                  [
+                    0.0687263556,
+                    0.513368984,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0838587642,
+                    0.513368984,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0989911728,
+                    0.513368984,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1141235813,
+                    0.513368984,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 1,
+                "sub_number": 3,
+                "options": [
+                  [
+                    0.0687263556,
+                    0.5294117647,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0838587642,
+                    0.5294117647,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0989911728,
+                    0.5294117647,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1141235813,
+                    0.5294117647,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              }
+            ]
+          },
+          {
+            "field": "question",
+            "index": 2,
+            "single": true,
+            "horizontal": true,
+            "items": [
+              {
+                "main_number": 5,
+                "sub_number": 1,
+                "options": [
+                  [
+                    0.0687263556,
+                    0.5864527629,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0838587642,
+                    0.5864527629,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0989911728,
+                    0.5864527629,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1141235813,
+                    0.5864527629,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 5,
+                "sub_number": 2,
+                "options": [
+                  [
+                    0.0687263556,
+                    0.6024955437,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0838587642,
+                    0.6024955437,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0989911728,
+                    0.6024955437,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1141235813,
+                    0.6024955437,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 5,
+                "sub_number": 3,
+                "options": [
+                  [
+                    0.0687263556,
+                    0.6185383244,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0838587642,
+                    0.6185383244,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0989911728,
+                    0.6185383244,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1141235813,
+                    0.6185383244,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 5,
+                "sub_number": 4,
+                "options": [
+                  [
+                    0.0687263556,
+                    0.6345811052,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0838587642,
+                    0.6345811052,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0989911728,
+                    0.6345811052,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1141235813,
+                    0.6345811052,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 5,
+                "sub_number": 5,
+                "options": [
+                  [
+                    0.0687263556,
+                    0.6506238859,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0838587642,
+                    0.6506238859,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0989911728,
+                    0.6506238859,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1141235813,
+                    0.6506238859,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              }
+            ]
+          },
+          {
+            "field": "question",
+            "index": 3,
+            "single": true,
+            "horizontal": true,
+            "items": [
+              {
+                "main_number": 6,
+                "sub_number": 1,
+                "options": [
+                  [
+                    0.0687263556,
+                    0.7076648841,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0838587642,
+                    0.7076648841,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0989911728,
+                    0.7076648841,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1141235813,
+                    0.7076648841,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1292559899,
+                    0.7076648841,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1443883985,
+                    0.7076648841,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1595208071,
+                    0.7076648841,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1746532156,
+                    0.7076648841,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1897856242,
+                    0.7076648841,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2049180328,
+                    0.7076648841,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2200504414,
+                    0.7076648841,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2351828499,
+                    0.7076648841,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2503152585,
+                    0.7076648841,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2654476671,
+                    0.7076648841,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2805800757,
+                    0.7076648841,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 6,
+                "sub_number": 2,
+                "options": [
+                  [
+                    0.0687263556,
+                    0.7237076649,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0838587642,
+                    0.7237076649,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0989911728,
+                    0.7237076649,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1141235813,
+                    0.7237076649,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1292559899,
+                    0.7237076649,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1443883985,
+                    0.7237076649,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1595208071,
+                    0.7237076649,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1746532156,
+                    0.7237076649,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1897856242,
+                    0.7237076649,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2049180328,
+                    0.7237076649,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2200504414,
+                    0.7237076649,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2351828499,
+                    0.7237076649,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2503152585,
+                    0.7237076649,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2654476671,
+                    0.7237076649,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2805800757,
+                    0.7237076649,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 6,
+                "sub_number": 3,
+                "options": [
+                  [
+                    0.0687263556,
+                    0.7397504456,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0838587642,
+                    0.7397504456,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0989911728,
+                    0.7397504456,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1141235813,
+                    0.7397504456,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1292559899,
+                    0.7397504456,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1443883985,
+                    0.7397504456,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1595208071,
+                    0.7397504456,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1746532156,
+                    0.7397504456,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1897856242,
+                    0.7397504456,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2049180328,
+                    0.7397504456,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2200504414,
+                    0.7397504456,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2351828499,
+                    0.7397504456,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2503152585,
+                    0.7397504456,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2654476671,
+                    0.7397504456,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2805800757,
+                    0.7397504456,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 6,
+                "sub_number": 4,
+                "options": [
+                  [
+                    0.0687263556,
+                    0.7557932264,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0838587642,
+                    0.7557932264,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0989911728,
+                    0.7557932264,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1141235813,
+                    0.7557932264,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1292559899,
+                    0.7557932264,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1443883985,
+                    0.7557932264,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1595208071,
+                    0.7557932264,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1746532156,
+                    0.7557932264,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1897856242,
+                    0.7557932264,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2049180328,
+                    0.7557932264,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2200504414,
+                    0.7557932264,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2351828499,
+                    0.7557932264,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2503152585,
+                    0.7557932264,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2654476671,
+                    0.7557932264,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2805800757,
+                    0.7557932264,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 6,
+                "sub_number": 5,
+                "options": [
+                  [
+                    0.0687263556,
+                    0.7718360071,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0838587642,
+                    0.7718360071,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0989911728,
+                    0.7718360071,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1141235813,
+                    0.7718360071,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1292559899,
+                    0.7718360071,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1443883985,
+                    0.7718360071,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1595208071,
+                    0.7718360071,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1746532156,
+                    0.7718360071,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1897856242,
+                    0.7718360071,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2049180328,
+                    0.7718360071,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2200504414,
+                    0.7718360071,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2351828499,
+                    0.7718360071,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2503152585,
+                    0.7718360071,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2654476671,
+                    0.7718360071,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2805800757,
+                    0.7718360071,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              }
+            ]
+          },
+          {
+            "field": "question",
+            "index": 4,
+            "single": true,
+            "horizontal": true,
+            "items": [
+              {
+                "main_number": 6,
+                "sub_number": 6,
+                "options": [
+                  [
+                    0.0687263556,
+                    0.798573975,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0838587642,
+                    0.798573975,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0989911728,
+                    0.798573975,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1141235813,
+                    0.798573975,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1292559899,
+                    0.798573975,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1443883985,
+                    0.798573975,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1595208071,
+                    0.798573975,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1746532156,
+                    0.798573975,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1897856242,
+                    0.798573975,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2049180328,
+                    0.798573975,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2200504414,
+                    0.798573975,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2351828499,
+                    0.798573975,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2503152585,
+                    0.798573975,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2654476671,
+                    0.798573975,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2805800757,
+                    0.798573975,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 6,
+                "sub_number": 7,
+                "options": [
+                  [
+                    0.0687263556,
+                    0.8146167558,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0838587642,
+                    0.8146167558,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0989911728,
+                    0.8146167558,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1141235813,
+                    0.8146167558,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1292559899,
+                    0.8146167558,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1443883985,
+                    0.8146167558,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1595208071,
+                    0.8146167558,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1746532156,
+                    0.8146167558,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1897856242,
+                    0.8146167558,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2049180328,
+                    0.8146167558,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2200504414,
+                    0.8146167558,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2351828499,
+                    0.8146167558,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2503152585,
+                    0.8146167558,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2654476671,
+                    0.8146167558,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2805800757,
+                    0.8146167558,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 6,
+                "sub_number": 8,
+                "options": [
+                  [
+                    0.0687263556,
+                    0.8306595365,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0838587642,
+                    0.8306595365,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0989911728,
+                    0.8306595365,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1141235813,
+                    0.8306595365,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1292559899,
+                    0.8306595365,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1443883985,
+                    0.8306595365,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1595208071,
+                    0.8306595365,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1746532156,
+                    0.8306595365,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1897856242,
+                    0.8306595365,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2049180328,
+                    0.8306595365,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2200504414,
+                    0.8306595365,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2351828499,
+                    0.8306595365,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2503152585,
+                    0.8306595365,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2654476671,
+                    0.8306595365,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2805800757,
+                    0.8306595365,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 6,
+                "sub_number": 9,
+                "options": [
+                  [
+                    0.0687263556,
+                    0.8467023173,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0838587642,
+                    0.8467023173,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0989911728,
+                    0.8467023173,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1141235813,
+                    0.8467023173,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1292559899,
+                    0.8467023173,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1443883985,
+                    0.8467023173,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1595208071,
+                    0.8467023173,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1746532156,
+                    0.8467023173,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1897856242,
+                    0.8467023173,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2049180328,
+                    0.8467023173,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2200504414,
+                    0.8467023173,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2351828499,
+                    0.8467023173,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2503152585,
+                    0.8467023173,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2654476671,
+                    0.8467023173,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2805800757,
+                    0.8467023173,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 6,
+                "sub_number": 10,
+                "options": [
+                  [
+                    0.0687263556,
+                    0.862745098,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0838587642,
+                    0.862745098,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.0989911728,
+                    0.862745098,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1141235813,
+                    0.862745098,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1292559899,
+                    0.862745098,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1443883985,
+                    0.862745098,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1595208071,
+                    0.862745098,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1746532156,
+                    0.862745098,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.1897856242,
+                    0.862745098,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2049180328,
+                    0.862745098,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2200504414,
+                    0.862745098,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2351828499,
+                    0.862745098,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2503152585,
+                    0.862745098,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2654476671,
+                    0.862745098,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.2805800757,
+                    0.862745098,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              }
+            ]
+          },
+          {
+            "field": "question",
+            "index": 5,
+            "single": true,
+            "horizontal": true,
+            "items": [
+              {
+                "main_number": 7,
+                "sub_number": 1,
+                "options": [
+                  [
+                    0.5245901639,
+                    0.0926916221,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5397225725,
+                    0.0926916221,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5548549811,
+                    0.0926916221,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5699873897,
+                    0.0926916221,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5851197982,
+                    0.0926916221,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6002522068,
+                    0.0926916221,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6153846154,
+                    0.0926916221,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.630517024,
+                    0.0926916221,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6456494325,
+                    0.0926916221,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6607818411,
+                    0.0926916221,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6759142497,
+                    0.0926916221,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 7,
+                "sub_number": 2,
+                "options": [
+                  [
+                    0.5245901639,
+                    0.1087344029,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5397225725,
+                    0.1087344029,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5548549811,
+                    0.1087344029,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5699873897,
+                    0.1087344029,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5851197982,
+                    0.1087344029,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6002522068,
+                    0.1087344029,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6153846154,
+                    0.1087344029,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.630517024,
+                    0.1087344029,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6456494325,
+                    0.1087344029,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6607818411,
+                    0.1087344029,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6759142497,
+                    0.1087344029,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 7,
+                "sub_number": 3,
+                "options": [
+                  [
+                    0.5245901639,
+                    0.1247771836,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5397225725,
+                    0.1247771836,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5548549811,
+                    0.1247771836,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5699873897,
+                    0.1247771836,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5851197982,
+                    0.1247771836,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6002522068,
+                    0.1247771836,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6153846154,
+                    0.1247771836,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.630517024,
+                    0.1247771836,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6456494325,
+                    0.1247771836,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6607818411,
+                    0.1247771836,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6759142497,
+                    0.1247771836,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 7,
+                "sub_number": 4,
+                "options": [
+                  [
+                    0.5245901639,
+                    0.1408199643,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5397225725,
+                    0.1408199643,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5548549811,
+                    0.1408199643,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5699873897,
+                    0.1408199643,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5851197982,
+                    0.1408199643,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6002522068,
+                    0.1408199643,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6153846154,
+                    0.1408199643,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.630517024,
+                    0.1408199643,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6456494325,
+                    0.1408199643,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6607818411,
+                    0.1408199643,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6759142497,
+                    0.1408199643,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 7,
+                "sub_number": 5,
+                "options": [
+                  [
+                    0.5245901639,
+                    0.1568627451,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5397225725,
+                    0.1568627451,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5548549811,
+                    0.1568627451,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5699873897,
+                    0.1568627451,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5851197982,
+                    0.1568627451,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6002522068,
+                    0.1568627451,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6153846154,
+                    0.1568627451,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.630517024,
+                    0.1568627451,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6456494325,
+                    0.1568627451,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6607818411,
+                    0.1568627451,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6759142497,
+                    0.1568627451,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              }
+            ]
+          },
+          {
+            "field": "question",
+            "index": 6,
+            "single": true,
+            "horizontal": true,
+            "items": [
+              {
+                "main_number": 7,
+                "sub_number": 6,
+                "options": [
+                  [
+                    0.7276166456,
+                    0.0926916221,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7427490542,
+                    0.0926916221,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7578814628,
+                    0.0926916221,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7730138714,
+                    0.0926916221,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7881462799,
+                    0.0926916221,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8032786885,
+                    0.0926916221,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8184110971,
+                    0.0926916221,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8335435057,
+                    0.0926916221,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8486759142,
+                    0.0926916221,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8638083228,
+                    0.0926916221,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8789407314,
+                    0.0926916221,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 7,
+                "sub_number": 7,
+                "options": [
+                  [
+                    0.7276166456,
+                    0.1087344029,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7427490542,
+                    0.1087344029,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7578814628,
+                    0.1087344029,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7730138714,
+                    0.1087344029,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7881462799,
+                    0.1087344029,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8032786885,
+                    0.1087344029,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8184110971,
+                    0.1087344029,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8335435057,
+                    0.1087344029,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8486759142,
+                    0.1087344029,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8638083228,
+                    0.1087344029,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8789407314,
+                    0.1087344029,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 7,
+                "sub_number": 8,
+                "options": [
+                  [
+                    0.7276166456,
+                    0.1247771836,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7427490542,
+                    0.1247771836,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7578814628,
+                    0.1247771836,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7730138714,
+                    0.1247771836,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7881462799,
+                    0.1247771836,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8032786885,
+                    0.1247771836,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8184110971,
+                    0.1247771836,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8335435057,
+                    0.1247771836,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8486759142,
+                    0.1247771836,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8638083228,
+                    0.1247771836,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8789407314,
+                    0.1247771836,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 7,
+                "sub_number": 9,
+                "options": [
+                  [
+                    0.7276166456,
+                    0.1408199643,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7427490542,
+                    0.1408199643,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7578814628,
+                    0.1408199643,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7730138714,
+                    0.1408199643,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7881462799,
+                    0.1408199643,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8032786885,
+                    0.1408199643,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8184110971,
+                    0.1408199643,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8335435057,
+                    0.1408199643,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8486759142,
+                    0.1408199643,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8638083228,
+                    0.1408199643,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8789407314,
+                    0.1408199643,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 7,
+                "sub_number": 10,
+                "options": [
+                  [
+                    0.7276166456,
+                    0.1568627451,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7427490542,
+                    0.1568627451,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7578814628,
+                    0.1568627451,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7730138714,
+                    0.1568627451,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7881462799,
+                    0.1568627451,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8032786885,
+                    0.1568627451,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8184110971,
+                    0.1568627451,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8335435057,
+                    0.1568627451,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8486759142,
+                    0.1568627451,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8638083228,
+                    0.1568627451,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.8789407314,
+                    0.1568627451,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              }
+            ]
+          },
+          {
+            "field": "question",
+            "index": 7,
+            "single": true,
+            "horizontal": true,
+            "items": [
+              {
+                "main_number": 8,
+                "sub_number": 1,
+                "options": [
+                  [
+                    0.5245901639,
+                    0.2139037433,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5397225725,
+                    0.2139037433,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5548549811,
+                    0.2139037433,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5699873897,
+                    0.2139037433,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 8,
+                "sub_number": 2,
+                "options": [
+                  [
+                    0.5245901639,
+                    0.2299465241,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5397225725,
+                    0.2299465241,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5548549811,
+                    0.2299465241,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5699873897,
+                    0.2299465241,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 8,
+                "sub_number": 3,
+                "options": [
+                  [
+                    0.5245901639,
+                    0.2459893048,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5397225725,
+                    0.2459893048,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5548549811,
+                    0.2459893048,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5699873897,
+                    0.2459893048,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 8,
+                "sub_number": 4,
+                "options": [
+                  [
+                    0.5245901639,
+                    0.2620320856,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5397225725,
+                    0.2620320856,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5548549811,
+                    0.2620320856,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5699873897,
+                    0.2620320856,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 8,
+                "sub_number": 5,
+                "options": [
+                  [
+                    0.5245901639,
+                    0.2780748663,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5397225725,
+                    0.2780748663,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5548549811,
+                    0.2780748663,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5699873897,
+                    0.2780748663,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              }
+            ]
+          },
+          {
+            "field": "question",
+            "index": 8,
+            "single": true,
+            "horizontal": true,
+            "items": [
+              {
+                "main_number": 8,
+                "sub_number": 6,
+                "options": [
+                  [
+                    0.6134930643,
+                    0.2139037433,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6286254729,
+                    0.2139037433,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6437578815,
+                    0.2139037433,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.65889029,
+                    0.2139037433,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 8,
+                "sub_number": 7,
+                "options": [
+                  [
+                    0.6134930643,
+                    0.2299465241,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6286254729,
+                    0.2299465241,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6437578815,
+                    0.2299465241,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.65889029,
+                    0.2299465241,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 8,
+                "sub_number": 8,
+                "options": [
+                  [
+                    0.6134930643,
+                    0.2459893048,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6286254729,
+                    0.2459893048,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6437578815,
+                    0.2459893048,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.65889029,
+                    0.2459893048,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 8,
+                "sub_number": 9,
+                "options": [
+                  [
+                    0.6134930643,
+                    0.2620320856,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6286254729,
+                    0.2620320856,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6437578815,
+                    0.2620320856,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.65889029,
+                    0.2620320856,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 8,
+                "sub_number": 10,
+                "options": [
+                  [
+                    0.6134930643,
+                    0.2780748663,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6286254729,
+                    0.2780748663,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6437578815,
+                    0.2780748663,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.65889029,
+                    0.2780748663,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              }
+            ]
+          },
+          {
+            "field": "question",
+            "index": 9,
+            "single": true,
+            "horizontal": true,
+            "items": [
+              {
+                "main_number": 8,
+                "sub_number": 11,
+                "options": [
+                  [
+                    0.7023959647,
+                    0.2139037433,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7175283733,
+                    0.2139037433,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7326607818,
+                    0.2139037433,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7477931904,
+                    0.2139037433,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 8,
+                "sub_number": 12,
+                "options": [
+                  [
+                    0.7023959647,
+                    0.2299465241,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7175283733,
+                    0.2299465241,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7326607818,
+                    0.2299465241,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7477931904,
+                    0.2299465241,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 8,
+                "sub_number": 13,
+                "options": [
+                  [
+                    0.7023959647,
+                    0.2459893048,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7175283733,
+                    0.2459893048,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7326607818,
+                    0.2459893048,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7477931904,
+                    0.2459893048,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 8,
+                "sub_number": 14,
+                "options": [
+                  [
+                    0.7023959647,
+                    0.2620320856,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7175283733,
+                    0.2620320856,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7326607818,
+                    0.2620320856,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7477931904,
+                    0.2620320856,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 8,
+                "sub_number": 15,
+                "options": [
+                  [
+                    0.7023959647,
+                    0.2780748663,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7175283733,
+                    0.2780748663,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7326607818,
+                    0.2780748663,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.7477931904,
+                    0.2780748663,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              }
+            ]
+          },
+          {
+            "field": "question",
+            "index": 10,
+            "single": true,
+            "horizontal": true,
+            "items": [
+              {
+                "main_number": 4,
+                "sub_number": 1,
+                "options": [
+                  [
+                    0.5245901639,
+                    0.3351158645,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5397225725,
+                    0.3351158645,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 4,
+                "sub_number": 2,
+                "options": [
+                  [
+                    0.5245901639,
+                    0.3511586453,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5397225725,
+                    0.3511586453,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 4,
+                "sub_number": 3,
+                "options": [
+                  [
+                    0.5245901639,
+                    0.367201426,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5397225725,
+                    0.367201426,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 4,
+                "sub_number": 4,
+                "options": [
+                  [
+                    0.5245901639,
+                    0.3832442068,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5397225725,
+                    0.3832442068,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              },
+              {
+                "main_number": 4,
+                "sub_number": 5,
+                "options": [
+                  [
+                    0.5245901639,
+                    0.3992869875,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.5397225725,
+                    0.3992869875,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              }
+            ]
+          },
+          {
+            "field": "question",
+            "index": 11,
+            "single": true,
+            "horizontal": true,
+            "items": [
+              {
+                "main_number": 4,
+                "sub_number": 6,
+                "options": [
+                  [
+                    0.5870113493,
+                    0.3351158645,
+                    0.0113493064,
+                    0.008912656
+                  ],
+                  [
+                    0.6021437579,
+                    0.3351158645,
+                    0.0113493064,
+                    0.008912656
+                  ]
+                ],
+                "recog_info": []
+              }
+            ]
+          }
+        ],
+        "answer_area": [
+          {
+            "main_number": 2,
+            "sub_number": "1",
+            "area": [
+              0.5063051702,
+              0.4260249554,
+              0.4432534678,
+              0.0659536542
+            ]
+          },
+          {
+            "main_number": 3,
+            "sub_number": 1,
+            "area": [
+              0.5063051702,
+              0.4919786096,
+              0.4432534678,
+              0.4081996435
+            ]
+          }
+        ],
+        "extension": {
+          "barcode": [],
+          "fill_area": [],
+          "ocr_area": [],
+          "qrcode": []
+        }
+      }
+    },
+    {
+      "type": "PAGE",
+      "pageSize": "A3",
+      "columnNumber": 2,
+      "columnGap": 20,
+      "locators": {
+        "top": [
+          {
+            "id": "locator-1-00",
+            "type": "LOCATOR",
+            "x": "",
+            "y": "",
+            "w": "",
+            "h": ""
+          },
+          {
+            "id": "locator-1-01",
+            "type": "LOCATOR",
+            "x": "",
+            "y": "",
+            "w": "",
+            "h": ""
+          }
+        ],
+        "bottom": [
+          {
+            "id": "locator-1-10",
+            "type": "LOCATOR",
+            "x": "",
+            "y": "",
+            "w": "",
+            "h": ""
+          }
+        ]
+      },
+      "globals": [],
+      "columns": [
+        {
+          "type": "COLUMN",
+          "x": "",
+          "y": "",
+          "w": "",
+          "h": "",
+          "isFull": false,
+          "elements": [
+            {
+              "type": "TOPIC_HEAD",
+              "x": 0,
+              "y": 0,
+              "w": 0,
+              "h": 0,
+              "content": "",
+              "typeName": "主观题",
+              "isColumnFirst": true,
+              "sign": "subjective",
+              "id": "element-i15ihr8g4u5csehg",
+              "key": "ilj6j0iea9mmjgdo"
+            },
+            {
+              "type": "EXPLAIN",
+              "x": 0,
+              "y": 0,
+              "w": 703,
+              "h": 458,
+              "minHeight": 60,
+              "sign": "subjective",
+              "topicNo": 3,
+              "isCovered": false,
+              "isLast": true,
+              "isExtend": false,
+              "showTitle": false,
+              "serialNumber": 2,
+              "elements": [],
+              "parent": {
+                "id": "element-nh97giuo1t96b5uu",
+                "key": "gubr82abck43lp1o",
+                "type": "EXPLAIN",
+                "sign": "subjective",
+                "topicNo": 3,
+                "topicName": "三、计算题",
+                "startNumber": 1,
+                "questionsCount": 3
+              },
+              "id": "element-aseb7k58rgapuno8",
+              "key": "6mamkchlndmivlqg",
+              "elementSerialNo": 9
+            },
+            {
+              "type": "EXPLAIN",
+              "x": 0,
+              "y": 0,
+              "w": 703,
+              "h": 458,
+              "minHeight": 60,
+              "sign": "subjective",
+              "topicNo": 3,
+              "isCovered": false,
+              "isLast": true,
+              "isExtend": false,
+              "showTitle": false,
+              "serialNumber": 3,
+              "elements": [],
+              "parent": {
+                "id": "element-nh97giuo1t96b5uu",
+                "key": "gubr82abck43lp1o",
+                "type": "EXPLAIN",
+                "sign": "subjective",
+                "topicNo": 3,
+                "topicName": "三、计算题",
+                "startNumber": 1,
+                "questionsCount": 3
+              },
+              "id": "element-qlrrv42ghve936oo",
+              "key": "8iuffrfjav0v1gk8",
+              "elementSerialNo": 10
+            }
+          ]
+        },
+        {
+          "type": "COLUMN",
+          "x": "",
+          "y": "",
+          "w": "",
+          "h": "",
+          "isFull": false,
+          "elements": []
+        }
+      ],
+      "exchange": {
+        "card_type": 2,
+        "page_size": "A3",
+        "page_image": "",
+        "locator": {
+          "top": [
+            [
+              0.1109709962,
+              0.0267379679,
+              0.0151324086,
+              0.0142602496
+            ],
+            [
+              0.9344262295,
+              0.0267379679,
+              0.0151324086,
+              0.0142602496
+            ]
+          ],
+          "bottom": [
+            [
+              0.9344262295,
+              0.9590017825,
+              0.0151324086,
+              0.0142602496
+            ]
+          ]
+        },
+        "fill_locator": [],
+        "check_area": {
+          "black_line": [],
+          "white_line": []
+        },
+        "barcode": [],
+        "qrcode": [],
+        "ocr_area": [],
+        "info_area": [],
+        "fill_area": [],
+        "answer_area": [
+          {
+            "main_number": 3,
+            "sub_number": 2,
+            "area": [
+              0.0504413619,
+              0.0534759358,
+              0.4432534678,
+              0.4081996435
+            ]
+          },
+          {
+            "main_number": 3,
+            "sub_number": 3,
+            "area": [
+              0.0504413619,
+              0.4616755793,
+              0.4432534678,
+              0.4081996435
+            ]
+          }
+        ],
+        "extension": {
+          "barcode": [],
+          "fill_area": [],
+          "ocr_area": [],
+          "qrcode": []
+        }
+      }
+    }
+  ],
+  "answers": {
+    "1-1": {
+      "answer": "",
+      "score": 2
+    },
+    "1-2": {
+      "answer": "",
+      "score": 2
+    },
+    "1-3": {
+      "answer": "",
+      "score": 2
+    },
+    "4-1": {
+      "answer": "B",
+      "score": 2
+    },
+    "4-2": {
+      "answer": "B",
+      "score": 2
+    },
+    "4-3": {
+      "answer": "B",
+      "score": 2
+    },
+    "4-4": {
+      "answer": "B",
+      "score": 2
+    },
+    "4-5": {
+      "answer": "B",
+      "score": 2
+    },
+    "4-6": {
+      "answer": "B",
+      "score": 2
+    },
+    "5-1": {
+      "answer": "",
+      "score": 2
+    },
+    "5-2": {
+      "answer": "",
+      "score": 2
+    },
+    "5-3": {
+      "answer": "",
+      "score": 2
+    },
+    "5-4": {
+      "answer": "",
+      "score": 2
+    },
+    "5-5": {
+      "answer": "",
+      "score": 2
+    },
+    "6-1": {
+      "answer": "",
+      "score": 2
+    },
+    "6-2": {
+      "answer": "",
+      "score": 2
+    },
+    "6-3": {
+      "answer": "",
+      "score": 2
+    },
+    "6-4": {
+      "answer": "",
+      "score": 2
+    },
+    "6-5": {
+      "answer": "",
+      "score": 2
+    },
+    "6-6": {
+      "answer": "",
+      "score": 2
+    },
+    "6-7": {
+      "answer": "",
+      "score": 2
+    },
+    "6-8": {
+      "answer": "",
+      "score": 2
+    },
+    "6-9": {
+      "answer": "",
+      "score": 2
+    },
+    "6-10": {
+      "answer": "",
+      "score": 2
+    },
+    "7-1": {
+      "answer": "",
+      "score": 2
+    },
+    "7-2": {
+      "answer": "",
+      "score": 2
+    },
+    "7-3": {
+      "answer": "",
+      "score": 2
+    },
+    "7-4": {
+      "answer": "",
+      "score": 2
+    },
+    "7-5": {
+      "answer": "",
+      "score": 2
+    },
+    "7-6": {
+      "answer": "",
+      "score": 2
+    },
+    "7-7": {
+      "answer": "",
+      "score": 2
+    },
+    "7-8": {
+      "answer": "",
+      "score": 2
+    },
+    "7-9": {
+      "answer": "",
+      "score": 2
+    },
+    "7-10": {
+      "answer": "",
+      "score": 2
+    },
+    "8-1": {
+      "answer": "",
+      "score": 2
+    },
+    "8-2": {
+      "answer": "",
+      "score": 2
+    },
+    "8-3": {
+      "answer": "",
+      "score": 2
+    },
+    "8-4": {
+      "answer": "",
+      "score": 2
+    },
+    "8-5": {
+      "answer": "",
+      "score": 2
+    },
+    "8-6": {
+      "answer": "",
+      "score": 2
+    },
+    "8-7": {
+      "answer": "",
+      "score": 2
+    },
+    "8-8": {
+      "answer": "",
+      "score": 2
+    },
+    "8-9": {
+      "answer": "",
+      "score": 2
+    },
+    "8-10": {
+      "answer": "",
+      "score": 2
+    },
+    "8-11": {
+      "answer": "",
+      "score": 2
+    },
+    "8-12": {
+      "answer": "",
+      "score": 2
+    },
+    "8-13": {
+      "answer": "",
+      "score": 2
+    },
+    "8-14": {
+      "answer": "",
+      "score": 2
+    },
+    "8-15": {
+      "answer": "",
+      "score": 2
+    }
+  }
+}

A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 34 - 0
src/modules/card/components/datas/paper.json


Nem az összes módosított fájl került megjelenítésre, mert túl sok fájl változott