Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
DG_FAF
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
template admin
DG_FAF
Commits
94b84879
Commit
94b84879
authored
May 11, 2023
by
李维
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
禁止连线题有两道题连到同一个选项的操作
parent
31ab18fe
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
4 deletions
+28
-4
DG_FAF.ts
assets/DG_FAF/scene/DG_FAF.ts
+27
-3
defaultData_DG_FAF.ts
assets/DG_FAF/script/defaultData_DG_FAF.ts
+1
-1
No files found.
assets/DG_FAF/scene/DG_FAF.ts
View file @
94b84879
...
@@ -1389,6 +1389,7 @@ export default class SceneComponent extends MyCocosSceneComponent {
...
@@ -1389,6 +1389,7 @@ export default class SceneComponent extends MyCocosSceneComponent {
startRect
.
addChild
(
lineNode
)
startRect
.
addChild
(
lineNode
)
const
ctx
=
lineNode
.
addComponent
(
cc
.
Graphics
);
const
ctx
=
lineNode
.
addComponent
(
cc
.
Graphics
);
ctx
.
lineWidth
=
4
;
ctx
.
lineWidth
=
4
;
startRect
.
lineCtx
=
ctx
;
// 临时存储连接所用 手指在移动时保存上一次命中的索引
// 临时存储连接所用 手指在移动时保存上一次命中的索引
let
tempConnectResultIndex
=
-
1
;
let
tempConnectResultIndex
=
-
1
;
...
@@ -1420,16 +1421,28 @@ export default class SceneComponent extends MyCocosSceneComponent {
...
@@ -1420,16 +1421,28 @@ export default class SceneComponent extends MyCocosSceneComponent {
// 隐藏所有终点高亮
// 隐藏所有终点高亮
this
.
setActiveEndPointsByUID
(
false
,
uid
);
this
.
setActiveEndPointsByUID
(
false
,
uid
);
// 如果当前连线已经有连接过 则找到上次的连接索引 清掉
const
oldLinkedIndex
=
currentConnectionList
.
findIndex
(
ccl
=>
ccl
.
linkedIndex
==
index
);
if
(
oldLinkedIndex
>=
0
)
{
currentConnectionList
[
oldLinkedIndex
].
linkedIndex
=
-
1
;
}
// 把命中的节点的连接索引更新
// 把命中的节点的连接索引更新
if
(
tempConnectResultIndex
>=
0
)
{
if
(
tempConnectResultIndex
>=
0
)
{
// 当前被连接的点如果已经有起点连接过 则清掉之前的连线
if
(
currentConnectionList
[
tempConnectResultIndex
].
linkedIndex
>=
0
)
{
// 命中节点已经连过线了
currentConnectionList
[
tempConnectResultIndex
].
linkedRect
.
lineCtx
.
clear
();
}
currentConnectionList
[
tempConnectResultIndex
].
linkedIndex
=
index
;
currentConnectionList
[
tempConnectResultIndex
].
linkedIndex
=
index
;
currentConnectionList
[
tempConnectResultIndex
].
linkedRect
=
startRect
;
tempConnectResultIndex
=
-
1
;
tempConnectResultIndex
=
-
1
;
}
else
{
}
else
{
ctx
.
clear
()
ctx
.
clear
()
;
}
}
// console.log("触摸取消")
// console.log("触摸取消")
})
})
startRect
.
on
(
cc
.
Node
.
EventType
.
TOUCH_END
,
()
=>
{
startRect
.
on
(
cc
.
Node
.
EventType
.
TOUCH_END
,
()
=>
{
if
(
this
.
submitted
)
{
if
(
this
.
submitted
)
{
return
return
...
@@ -1441,14 +1454,25 @@ export default class SceneComponent extends MyCocosSceneComponent {
...
@@ -1441,14 +1454,25 @@ export default class SceneComponent extends MyCocosSceneComponent {
// 隐藏所有终点高亮
// 隐藏所有终点高亮
this
.
setActiveEndPointsByUID
(
false
,
uid
);
this
.
setActiveEndPointsByUID
(
false
,
uid
);
// 如果当前连线已经有连接过 则找到上次的连接索引 清掉
const
oldLinkedIndex
=
currentConnectionList
.
findIndex
(
ccl
=>
ccl
.
linkedIndex
==
index
);
if
(
oldLinkedIndex
>=
0
)
{
currentConnectionList
[
oldLinkedIndex
].
linkedIndex
=
-
1
;
}
// 把命中的节点的连接索引更新
// 把命中的节点的连接索引更新
if
(
tempConnectResultIndex
>=
0
)
{
if
(
tempConnectResultIndex
>=
0
)
{
// 当前被连接的点如果已经有起点连接过 则清掉之前的连线
if
(
currentConnectionList
[
tempConnectResultIndex
].
linkedIndex
>=
0
)
{
// 命中节点已经连过线了
currentConnectionList
[
tempConnectResultIndex
].
linkedRect
.
lineCtx
.
clear
();
}
currentConnectionList
[
tempConnectResultIndex
].
linkedIndex
=
index
;
currentConnectionList
[
tempConnectResultIndex
].
linkedIndex
=
index
;
currentConnectionList
[
tempConnectResultIndex
].
linkedRect
=
startRect
;
tempConnectResultIndex
=
-
1
;
tempConnectResultIndex
=
-
1
;
}
else
{
}
else
{
ctx
.
clear
()
ctx
.
clear
()
}
}
// console.log("触摸结束")
// console.log("触摸结束")
})
})
...
...
assets/DG_FAF/script/defaultData_DG_FAF.ts
View file @
94b84879
export
const
defaultData
=
{
"
alignMode
"
:
"
left
"
,
"
scoreConfigArr
"
:[{
"
linkHotZoneIndex
"
:
-
1
,
"
linkHotZoneIndexArr
"
:[
0
]}],
"
lastModify
"
:
"
2023-05-10T11:43:49.430Z
"
,
"
hotZoneConfigArr
"
:[{
"
hotZoneType
"
:
"
17
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
video_url
"
:
""
,
"
score
"
:
"
0
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
""
,
"
keyWordMatch
"
:
false
,
"
isCaseInsensitive
"
:
false
,
"
openAnswer
"
:
false
,
"
useSelectOptionList
"
:
true
,
"
keyWordMatchInOrder
"
:
false
,
"
capitalizedFirstLetter
"
:
false
,
"
notAdaptContraction
"
:
false
,
"
textAlignLeft
"
:
false
,
"
selectOptionList
"
:[{
"
text
"
:
"
A
"
,
"
optionShowText
"
:
""
},{
"
text
"
:
"
B
"
,
"
optionShowText
"
:
""
},{
"
text
"
:
"
C
"
,
"
optionShowText
"
:
""
},{
"
text
"
:
"
D
"
,
"
optionShowText
"
:
""
}],
"
contentList
"
:[{
"
uuid
"
:
"
aed81b71-c0b1-4dc9-810f-6b7c82e56a4b
"
,
"
text
"
:
""
,
"
selectOptionListIndex
"
:
""
,
"
selectOptionListIndexArr
"
:[
0
,
1
],
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
3
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectStartHotZoneIndex_1
"
:
null
,
"
selectEndHotZoneIndex_1
"
:
null
,
"
selectStartHotZoneIndex_2
"
:
null
,
"
selectEndHotZoneIndex_2
"
:
null
,
"
inputText
"
:
""
,
"
keyWordMatch
"
:
false
,
"
keyWordMatchInOrder
"
:
false
,
"
isCaseInsensitive
"
:
false
,
"
openAnswer
"
:
false
,
"
capitalizedFirstLetter
"
:
false
,
"
notAdaptContraction
"
:
false
,
"
textAlignLeft
"
:
false
,
"
drawingCheckCorrectColors
"
:[],
"
drawingCheckStrictEqual
"
:
false
,
"
painterOnCenter
"
:
false
,
"
selectHotZoneIndex
"
:
0
},{
"
uuid
"
:
"
d13dd08e-689c-405e-a8f1-2928d5d0107b
"
,
"
text
"
:
""
,
"
selectOptionListIndex
"
:
""
,
"
selectOptionListIndexArr
"
:[
1
,
3
],
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
2
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectStartHotZoneIndex_1
"
:
null
,
"
selectEndHotZoneIndex_1
"
:
null
,
"
selectStartHotZoneIndex_2
"
:
null
,
"
selectEndHotZoneIndex_2
"
:
null
,
"
inputText
"
:
""
,
"
keyWordMatch
"
:
false
,
"
keyWordMatchInOrder
"
:
false
,
"
isCaseInsensitive
"
:
false
,
"
openAnswer
"
:
false
,
"
capitalizedFirstLetter
"
:
false
,
"
notAdaptContraction
"
:
false
,
"
textAlignLeft
"
:
false
,
"
drawingCheckCorrectColors
"
:[],
"
drawingCheckStrictEqual
"
:
false
,
"
painterOnCenter
"
:
false
,
"
selectHotZoneIndex
"
:
1
}]}],
"
bgItem
"
:{
"
url
"
:
"
http://staging-teach.cdn.ireadabc.com/8f0e978323b610ede55dd049574f5860.jpg
"
,
"
rect
"
:{
"
x
"
:
0
,
"
y
"
:
957.875
,
"
width
"
:
1350
,
"
height
"
:
3080.25
}},
"
hotZoneItemArr
"
:[{
"
index
"
:
0
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-1
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.0546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.0546875
,
"
rect
"
:{
"
x
"
:
191
,
"
y
"
:
2277.13
,
"
width
"
:
56
,
"
height
"
:
56
}},{
"
index
"
:
1
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-2
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.0546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.0546875
,
"
rect
"
:{
"
x
"
:
336
,
"
y
"
:
2278.13
,
"
width
"
:
56
,
"
height
"
:
56
}}],
"
header_image_url
"
:
"
http://staging-teach.cdn.ireadabc.com/2f46155edecb83ec07066be02bb792ad.jpg
"
,
"
footer_image_url
"
:
"
http://staging-teach.cdn.ireadabc.com/d9c663628b45fff78be6076d6b48fe5c.jpg
"
}
export
const
defaultData
=
{
"
header_image_url
"
:
"
http://teach.cdn.ireadabc.com/197488e5a234fa169f04c987a4da48f9.jpg
"
,
"
footer_image_url
"
:
"
http://teach.cdn.ireadabc.com/665e4c3e6a80563b4c33dd7bbcd18014.jpg
"
,
"
bgItem
"
:{
"
url
"
:
"
http://teach.cdn.ireadabc.com/548dc36dd37707d094e8517730c361cb.jpg
"
,
"
rect
"
:{
"
x
"
:
0
,
"
y
"
:
811.5016666666668
,
"
width
"
:
1351
,
"
height
"
:
3372.9966666666664
}},
"
hotZoneItemArr
"
:[{
"
index
"
:
0
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-2-1
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
446.03
,
"
y
"
:
311.76
,
"
width
"
:
86.6
,
"
height
"
:
43.3
}},{
"
index
"
:
1
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-2-2
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
553.19
,
"
y
"
:
311.76
,
"
width
"
:
97.42
,
"
height
"
:
43.3
}},{
"
index
"
:
2
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-2正确
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
374.58
,
"
y
"
:
311.76
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
3
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-3-1
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
746.95
,
"
y
"
:
311.76
,
"
width
"
:
86.6
,
"
height
"
:
43.3
}},{
"
index
"
:
4
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-3-2
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
855.2
,
"
y
"
:
311.76
,
"
width
"
:
86.6
,
"
height
"
:
43.3
}},{
"
index
"
:
5
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-3-正确
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
671.18
,
"
y
"
:
311.76
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
6
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-4-1
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
1032.73
,
"
y
"
:
311.76
,
"
width
"
:
86.6
,
"
height
"
:
43.3
}},{
"
index
"
:
7
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-4-2
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
1137.72
,
"
y
"
:
311.76
,
"
width
"
:
80.1
,
"
height
"
:
43.3
}},{
"
index
"
:
8
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
1-4-正确
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
965.61
,
"
y
"
:
311.76
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
9
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-2-frisbee
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
452.52
,
"
y
"
:
549.89
,
"
width
"
:
173.19
,
"
height
"
:
43.3
}},{
"
index
"
:
10
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-3-tree
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
452.52
,
"
y
"
:
645.15
,
"
width
"
:
173.19
,
"
height
"
:
43.3
}},{
"
index
"
:
11
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-4-grandma
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
452.52
,
"
y
"
:
740.41
,
"
width
"
:
173.19
,
"
height
"
:
43.3
}},{
"
index
"
:
12
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-5-farmer
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
452.52
,
"
y
"
:
835.67
,
"
width
"
:
173.19
,
"
height
"
:
43.3
}},{
"
index
"
:
13
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-2-飞盘
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
649.53
,
"
y
"
:
552.07
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
14
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-2/飞盘
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
1032.73
,
"
y
"
:
738.24
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
15
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-3-树
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
649.53
,
"
y
"
:
647.33
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
16
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-3/树
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
792.41
,
"
y
"
:
634.33
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
17
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-4-奶奶
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
649.53
,
"
y
"
:
742.58
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
18
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-4/奶奶
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
814.06
,
"
y
"
:
422.17
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
19
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-5-农夫
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
649.53
,
"
y
"
:
837.84
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
20
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
2-5/农夫
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
1037.06
,
"
y
"
:
506.6
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
21
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
正确
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
424.38
,
"
y
"
:
391.86
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
22
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
3-2-1
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
588.91
,
"
y
"
:
1307.63
,
"
width
"
:
151.55
,
"
height
"
:
43.3
}},{
"
index
"
:
23
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
3-2-2
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
757.78
,
"
y
"
:
1309.8
,
"
width
"
:
173.19
,
"
height
"
:
43.3
}},{
"
index
"
:
24
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
3-2-正确
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
75.82
,
"
y
"
:
1305.47
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
25
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
3-3-1
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
582.42
,
"
y
"
:
1368.25
,
"
width
"
:
151.55
,
"
height
"
:
43.3
}},{
"
index
"
:
26
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
3-3-2
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
757.78
,
"
y
"
:
1368.25
,
"
width
"
:
173.19
,
"
height
"
:
43.3
}},{
"
index
"
:
27
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
3-3-正确
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
75.82
,
"
y
"
:
1366.09
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
28
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
3-4-1
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
587.83
,
"
y
"
:
1428.87
,
"
width
"
:
162.37
,
"
height
"
:
43.3
}},{
"
index
"
:
29
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
3-4-2
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
771.85
,
"
y
"
:
1431.03
,
"
width
"
:
188.35
,
"
height
"
:
43.3
}},{
"
index
"
:
30
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
3-4-正确
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
75.82
,
"
y
"
:
1426.71
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
31
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
3-5-1
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
585.67
,
"
y
"
:
1493.81
,
"
width
"
:
162.37
,
"
height
"
:
43.3
}},{
"
index
"
:
32
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
3-5-2
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
776.18
,
"
y
"
:
1493.81
,
"
width
"
:
184.02
,
"
height
"
:
43.3
}},{
"
index
"
:
33
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
3-5-正确
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
75.82
,
"
y
"
:
1489.49
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
34
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
3-6-1
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
582.42
,
"
y
"
:
1556.61
,
"
width
"
:
151.55
,
"
height
"
:
43.3
}},{
"
index
"
:
35
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
3-6-2
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
759.95
,
"
y
"
:
1556.61
,
"
width
"
:
173.19
,
"
height
"
:
43.3
}},{
"
index
"
:
36
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
3-6-正确
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
75.82
,
"
y
"
:
1552.27
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
37
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-2-under
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
935.3
,
"
y
"
:
1879.19
,
"
width
"
:
151.55
,
"
height
"
:
43.3
}},{
"
index
"
:
38
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-3-in
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
368.09
,
"
y
"
:
2115.16
,
"
width
"
:
151.55
,
"
height
"
:
43.3
}},{
"
index
"
:
39
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-4-in
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
967.78
,
"
y
"
:
2117.32
,
"
width
"
:
151.55
,
"
height
"
:
43.3
}},{
"
index
"
:
40
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
4-5-under
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
329.11
,
"
y
"
:
2359.8
,
"
width
"
:
151.55
,
"
height
"
:
43.3
}},{
"
index
"
:
41
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
5-2-沙发
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
197.06
,
"
y
"
:
2639.07
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
42
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
5-2/沙发
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
632.21
,
"
y
"
:
2526.49
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
43
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
5-3-斑马
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
197.06
,
"
y
"
:
2732.17
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
44
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
5-3/斑马
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
454.69
,
"
y
"
:
2866.4
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
45
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
5-4-笔
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
197.06
,
"
y
"
:
2825.27
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
46
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
5-4/笔
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
1093.34
,
"
y
"
:
2617.43
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
47
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
5-5-雨伞
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
197.06
,
"
y
"
:
2918.36
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
48
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
5-5/雨伞
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
441.69
,
"
y
"
:
2645.57
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
49
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
5-6-悠悠
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
197.06
,
"
y
"
:
3017.94
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
50
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
5-6/悠悠
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
902.83
,
"
y
"
:
2948.66
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
51
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
5-正确
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
262
,
"
y
"
:
2448.56
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
52
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
6-2-z
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
788.09
,
"
y
"
:
3175.98
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
53
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
6-2-s
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
874.69
,
"
y
"
:
3175.98
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
54
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
6-2-t
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
954.79
,
"
y
"
:
3175.98
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
55
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
6-2-p
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
1047.88
,
"
y
"
:
3175.98
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
56
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
6-2-正确
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
714.49
,
"
y
"
:
3175.98
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
57
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
6-3-e
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
155.92
,
"
y
"
:
3236.6
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
58
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
6-3-o
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
246.85
,
"
y
"
:
3236.6
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
59
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
6-3-u
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
331.27
,
"
y
"
:
3236.6
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
60
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
6-3-v
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
415.71
,
"
y
"
:
3236.6
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
61
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
6-3-正确
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
86.64
,
"
y
"
:
3236.6
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
62
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
6-4-m
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
790.25
,
"
y
"
:
3240.94
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
63
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
6-4-r
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
874.69
,
"
y
"
:
3240.94
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
64
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
6-4-t
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
956.95
,
"
y
"
:
3240.94
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
65
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
6-4-n
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
1047.88
,
"
y
"
:
3240.94
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
66
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
6-4-正确
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
714.49
,
"
y
"
:
3240.94
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
67
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
6-5-w
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
160.25
,
"
y
"
:
3299.4
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
68
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
6-5-u
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
246.85
,
"
y
"
:
3299.4
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
69
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
6-5-v
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
331.27
,
"
y
"
:
3299.4
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
70
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
6-5-r
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
415.71
,
"
y
"
:
3299.4
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
71
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
6-5-正确
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
86.64
,
"
y
"
:
3299.4
,
"
width
"
:
43.3
,
"
height
"
:
43.3
}},{
"
index
"
:
72
,
"
itemType
"
:
"
rect
"
,
"
itemName
"
:
"
6音频-
"
,
"
fontSize
"
:
50
,
"
fontName
"
:
"
BRLNSR_1
"
,
"
fontColor
"
:
"
#8f3758
"
,
"
fontScale
"
:
1.05546875
,
"
imgScale
"
:
1
,
"
mapScale
"
:
1.05546875
,
"
rect
"
:{
"
x
"
:
742.11
,
"
y
"
:
3111.51
,
"
width
"
:
43.42
,
"
height
"
:
43.42
}}],
"
hotZoneConfigArr
"
:[{
"
hotZoneType
"
:
"
3
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
score
"
:
"
1
"
,
"
unselectedStyle
"
:
"
mask
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
""
,
"
contentList
"
:[{
"
uuid
"
:
"
d56c72ed-ad26-4ae0-8633-7a4fd26d7e47
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
0
},{
"
uuid
"
:
"
c828460d-7296-43aa-b793-07a46e2edf29
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
true
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
1
}],
"
linkResultShowHotZoneIndex
"
:
2
},{
"
hotZoneType
"
:
"
3
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
score
"
:
"
1
"
,
"
unselectedStyle
"
:
"
mask
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
""
,
"
contentList
"
:[{
"
uuid
"
:
"
3fb6f47b-bcd4-46ad-a1fe-750c073e7bf2
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
true
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
3
},{
"
uuid
"
:
"
0b45f1c6-6ff4-4b58-ab67-1bb31d1a2661
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
4
}],
"
linkResultShowHotZoneIndex
"
:
5
},{
"
hotZoneType
"
:
"
3
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
score
"
:
"
1
"
,
"
unselectedStyle
"
:
"
mask
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
""
,
"
contentList
"
:[{
"
uuid
"
:
"
65bc66d5-d8fa-42e2-9b2e-39b8cca26bec
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
true
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
6
},{
"
uuid
"
:
"
9059f8e5-8a94-4049-bf46-55486eb9b295
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
7
}],
"
linkResultShowHotZoneIndex
"
:
8
},{
"
hotZoneType
"
:
"
5
"
,
"
linkHotZoneIndex
"
:
9
,
"
audio_url
"
:
""
,
"
score
"
:
"
0.5
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
"
frisbee
"
,
"
contentList
"
:[]},{
"
hotZoneType
"
:
"
5
"
,
"
linkHotZoneIndex
"
:
10
,
"
audio_url
"
:
""
,
"
score
"
:
"
0.5
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
"
tree
"
,
"
contentList
"
:[]},{
"
hotZoneType
"
:
"
5
"
,
"
linkHotZoneIndex
"
:
11
,
"
audio_url
"
:
""
,
"
score
"
:
"
0.5
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
"
grandma
"
,
"
contentList
"
:[]},{
"
hotZoneType
"
:
"
5
"
,
"
linkHotZoneIndex
"
:
12
,
"
audio_url
"
:
""
,
"
score
"
:
"
0.5
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
"
farmer
"
,
"
contentList
"
:[]},{
"
hotZoneType
"
:
"
6
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
score
"
:
"
0
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
""
,
"
contentList
"
:[{
"
uuid
"
:
"
4626a9ed-118e-42ef-bcf5-e38578e950ba
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
0.5
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
13
,
"
selectEndHotZoneIndex
"
:
14
,
"
selectEndHotZoneShowIndex
"
:
null
},{
"
uuid
"
:
"
f137485e-0aa0-43db-ad64-1596fafb82b4
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
0.5
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
15
,
"
selectEndHotZoneIndex
"
:
16
,
"
selectEndHotZoneShowIndex
"
:
null
},{
"
uuid
"
:
"
756f8772-0113-4aa6-8891-ae5c895b0e34
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
0.5
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
17
,
"
selectEndHotZoneIndex
"
:
18
,
"
selectEndHotZoneShowIndex
"
:
null
},{
"
uuid
"
:
"
1669cd55-d472-4dbb-a7ce-3fa2f74ef3da
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
0.5
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
19
,
"
selectEndHotZoneIndex
"
:
20
,
"
selectEndHotZoneShowIndex
"
:
null
}],
"
linkResultShowHotZoneIndex
"
:
21
},{
"
hotZoneType
"
:
"
3
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
score
"
:
"
1
"
,
"
unselectedStyle
"
:
"
mask
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
""
,
"
contentList
"
:[{
"
uuid
"
:
"
9b0f22ee-eaf1-474d-b8f6-b4a67a09c394
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
true
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
22
},{
"
uuid
"
:
"
ff5a7ebc-3f11-431f-aafc-e63786ba6856
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
23
}],
"
linkResultShowHotZoneIndex
"
:
24
},{
"
hotZoneType
"
:
"
3
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
score
"
:
"
1
"
,
"
unselectedStyle
"
:
"
mask
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
""
,
"
contentList
"
:[{
"
uuid
"
:
"
95d0c8b9-5169-4271-be07-3d188e51d444
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
25
},{
"
uuid
"
:
"
c60fa151-172c-4d36-b63d-9c67c3ac86ce
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
true
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
26
}],
"
linkResultShowHotZoneIndex
"
:
27
},{
"
hotZoneType
"
:
"
3
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
score
"
:
"
1
"
,
"
unselectedStyle
"
:
"
mask
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
""
,
"
contentList
"
:[{
"
uuid
"
:
"
f9ef5d09-b5bd-4c84-a935-ceb3fff904de
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
28
},{
"
uuid
"
:
"
f113382f-bdf7-47c6-82b3-c4c59f14bbe9
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
true
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
29
}],
"
linkResultShowHotZoneIndex
"
:
30
},{
"
hotZoneType
"
:
"
3
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
score
"
:
"
1
"
,
"
unselectedStyle
"
:
"
mask
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
""
,
"
contentList
"
:[{
"
uuid
"
:
"
a547d5aa-8234-4217-936a-652753b8b0e5
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
true
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
31
},{
"
uuid
"
:
"
3dc77b9e-d5bc-48af-a084-9c8082d7270d
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
32
}],
"
linkResultShowHotZoneIndex
"
:
33
},{
"
hotZoneType
"
:
"
3
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
score
"
:
"
1
"
,
"
unselectedStyle
"
:
"
mask
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
""
,
"
contentList
"
:[{
"
uuid
"
:
"
bc47e890-7e7d-4235-8116-8ee1e8321512
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
true
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
34
},{
"
uuid
"
:
"
7fd0d369-5f61-40f3-88d3-7cff1d6ee5ee
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
35
}],
"
linkResultShowHotZoneIndex
"
:
36
},{
"
hotZoneType
"
:
"
6
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
score
"
:
"
0
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
""
,
"
contentList
"
:[{
"
uuid
"
:
"
b33d8c8e-a503-4a5f-828e-cc382f594157
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
1
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
41
,
"
selectEndHotZoneIndex
"
:
42
,
"
selectEndHotZoneShowIndex
"
:
null
},{
"
uuid
"
:
"
b962431f-def6-4c7d-893a-c579f6ca77ad
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
1
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
43
,
"
selectEndHotZoneIndex
"
:
44
,
"
selectEndHotZoneShowIndex
"
:
null
},{
"
uuid
"
:
"
abc8268d-87da-4ca1-b42b-35735212bb08
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
1
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
45
,
"
selectEndHotZoneIndex
"
:
46
,
"
selectEndHotZoneShowIndex
"
:
null
},{
"
uuid
"
:
"
f672de5d-74d7-4191-aa6d-3c98ed22e033
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
1
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
47
,
"
selectEndHotZoneIndex
"
:
48
,
"
selectEndHotZoneShowIndex
"
:
null
},{
"
uuid
"
:
"
3f7d3d73-f05c-4c04-ab09-91e09e21d228
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
1
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
49
,
"
selectEndHotZoneIndex
"
:
50
,
"
selectEndHotZoneShowIndex
"
:
null
}],
"
linkResultShowHotZoneIndex
"
:
51
},{
"
hotZoneType
"
:
"
3
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
score
"
:
"
1
"
,
"
unselectedStyle
"
:
"
mask
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
""
,
"
contentList
"
:[{
"
uuid
"
:
"
10765546-9bf6-487e-8ac7-33bf0f4df43b
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
52
},{
"
uuid
"
:
"
cb1d1eda-e81f-41e4-bad0-3266cee53a78
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
true
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
53
},{
"
uuid
"
:
"
09c4db84-4719-4cc0-a86c-69b0cabe9f64
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
54
},{
"
uuid
"
:
"
70e81a9e-eabe-40ce-ac9a-b8b0b6ff5ad5
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
55
}],
"
linkResultShowHotZoneIndex
"
:
56
},{
"
hotZoneType
"
:
"
3
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
score
"
:
"
1
"
,
"
unselectedStyle
"
:
"
mask
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
""
,
"
contentList
"
:[{
"
uuid
"
:
"
8e4911e8-c1c8-4baa-88e4-82fb1993bc6d
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
57
},{
"
uuid
"
:
"
0c63a623-89de-4235-8390-61c7675cea2c
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
true
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
58
},{
"
uuid
"
:
"
9de70e5b-7b3a-4855-9933-0b19f3ab05ff
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
59
},{
"
uuid
"
:
"
350af032-d667-410e-8667-e945f14ba73c
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
60
}],
"
linkResultShowHotZoneIndex
"
:
61
},{
"
hotZoneType
"
:
"
3
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
score
"
:
"
1
"
,
"
unselectedStyle
"
:
"
mask
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
""
,
"
contentList
"
:[{
"
uuid
"
:
"
2e8b2e0c-6d1a-4684-b247-863165441e9d
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
62
},{
"
uuid
"
:
"
cf5887a1-7587-4123-a78e-1404d7d48b4c
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
63
},{
"
uuid
"
:
"
5fc8afd5-10a4-40a7-bc5e-f74bfef6c25f
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
64
},{
"
uuid
"
:
"
38d943ac-0b8b-430f-b0da-7eda2d53bbf6
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
true
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
65
}],
"
linkResultShowHotZoneIndex
"
:
66
},{
"
hotZoneType
"
:
"
3
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
score
"
:
"
1
"
,
"
unselectedStyle
"
:
"
mask
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
""
,
"
contentList
"
:[{
"
uuid
"
:
"
66acc745-55bc-4b3b-9ddd-0f33015cfff4
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
true
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
67
},{
"
uuid
"
:
"
1e91206e-74e5-42ad-9241-f74460c1808b
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
68
},{
"
uuid
"
:
"
c8a84064-8891-4a95-8429-23a23483bb8e
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
69
},{
"
uuid
"
:
"
be309043-6a8b-49f7-9fef-5fdb5232b8cd
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
0
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
70
}],
"
linkResultShowHotZoneIndex
"
:
71
},{
"
hotZoneType
"
:
"
0
"
,
"
linkHotZoneIndex
"
:
-
1
,
"
audio_url
"
:
""
,
"
score
"
:
"
0
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
""
,
"
useSelectOptionList
"
:
true
,
"
selectOptionList
"
:[{
"
text
"
:
"
in
"
,
"
optionShowText
"
:
""
},{
"
text
"
:
"
on
"
,
"
optionShowText
"
:
""
},{
"
text
"
:
"
under
"
,
"
optionShowText
"
:
""
}],
"
contentList
"
:[{
"
uuid
"
:
"
938b67a2-f9a5-4960-af63-592a5ffacb44
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
1
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
37
,
"
selectOptionListIndex
"
:
2
},{
"
uuid
"
:
"
f73a4118-c101-4405-9f6a-da9664a9795e
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
1
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
38
,
"
selectOptionListIndex
"
:
0
},{
"
uuid
"
:
"
26543a40-1240-4eea-9164-78b7966a91b5
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
1
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
39
,
"
selectOptionListIndex
"
:
0
},{
"
uuid
"
:
"
84b74368-5509-4cc7-be7a-649713a6beac
"
,
"
text
"
:
""
,
"
optionShowText
"
:
""
,
"
image_url
"
:
""
,
"
hotZoneIndex
"
:
null
,
"
score
"
:
"
1
"
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
""
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectHotZoneIndex
"
:
40
,
"
selectOptionListIndex
"
:
2
}]},{
"
hotZoneType
"
:
"
2
"
,
"
linkHotZoneIndex
"
:
72
,
"
audio_url
"
:
"
http://teach.cdn.ireadabc.com/578f3b2e07238c8113711c81932eb01a.mp3
"
,
"
score
"
:
"
0
"
,
"
unselectedStyle
"
:
"
none
"
,
"
selectedStyle
"
:
"
border
"
,
"
rightOrWrongStyleType
"
:
"
symbol
"
,
"
inputText
"
:
""
,
"
useSelectOptionList
"
:
false
,
"
selectOptionList
"
:[],
"
contentList
"
:[]}],
"
scoreConfigArr
"
:[{
"
linkHotZoneIndex
"
:
-
1
,
"
linkHotZoneIndexArr
"
:[
0
,
1
,
2
,
3
,
4
,
5
,
6
,
7
]},{
"
linkHotZoneIndex
"
:
-
1
,
"
linkHotZoneIndexArr
"
:[
8
,
9
,
10
,
11
,
12
,
13
,
14
,
15
,
16
,
17
,
18
,
19
,
20
,
21
]}],
"
alignMode
"
:
"
left
"
,
"
ratingSystem
"
:
"
1
"
}
\ No newline at end of file
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment