File size: 23,202 Bytes
0a8dc22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
[
    {
        "root0":"Geometry and Figures",
        "root1":"Measurement",
        "root2":"Understanding and Conversion of Units",
        "root3":"Conversion Rates and Calculations Between Area Units",
        "root4":null,
        "full node":"Measurement_Understanding and Conversion of Units_Conversion Rates and Calculations Between Area Units"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Measurement",
        "root2":"Understanding and Conversion of Units",
        "root3":"Conversion Rates and Calculations Between Volume Units (Including Liters and Milliliters)",
        "root4":null,
        "full node":"Measurement_Understanding and Conversion of Units_Conversion Rates and Calculations Between Volume Units (Including Liters and Milliliters)"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Measurement",
        "root2":"Understanding and Conversion of Units",
        "root3":"Conversion Rates and Calculations Between Length Units",
        "root4":null,
        "full node":"Measurement_Understanding and Conversion of Units_Conversion Rates and Calculations Between Length Units"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Measurement",
        "root2":"Angles and Length",
        "root3":"Understanding Angles (Using a Protractor)",
        "root4":null,
        "full node":"Measurement_Angles and Length_Understanding Angles (Using a Protractor)"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Measurement",
        "root2":"Angles and Length",
        "root3":"Understanding Length (Using a Ruler)",
        "root4":null,
        "full node":"Measurement_Angles and Length_Understanding Length (Using a Ruler)"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Solid Figures",
        "root2":"Calculation of Solid Figures",
        "root3":"Calculation of Surface Area of Solid Figures",
        "root4":"Surface Area of Cylinders",
        "full node":"Solid Figures_Calculation of Solid Figures_Calculation of Surface Area of Solid Figures_Surface Area of Cylinders"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Solid Figures",
        "root2":"Calculation of Solid Figures",
        "root3":"Calculation of Surface Area of Solid Figures",
        "root4":"Surface Area of Rectangular Cuboids",
        "full node":"Solid Figures_Calculation of Solid Figures_Calculation of Surface Area of Solid Figures_Surface Area of Rectangular Cuboids"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Solid Figures",
        "root2":"Calculation of Solid Figures",
        "root3":"Calculation of Surface Area of Solid Figures",
        "root4":"Surface Area of Cubes",
        "full node":"Solid Figures_Calculation of Solid Figures_Calculation of Surface Area of Solid Figures_Surface Area of Cubes"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Solid Figures",
        "root2":"Calculation of Solid Figures",
        "root3":"Calculation of Volume of Solid Figures",
        "root4":"Volume and Capacity of Cylinders",
        "full node":"Solid Figures_Calculation of Solid Figures_Calculation of Volume of Solid Figures_Volume and Capacity of Cylinders"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Solid Figures",
        "root2":"Calculation of Solid Figures",
        "root3":"Calculation of Volume of Solid Figures",
        "root4":"Volume and Capacity of Cones",
        "full node":"Solid Figures_Calculation of Solid Figures_Calculation of Volume of Solid Figures_Volume and Capacity of Cones"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Solid Figures",
        "root2":"Calculation of Solid Figures",
        "root3":"Calculation of Volume of Solid Figures",
        "root4":"Volume and Capacity of Rectangular Cuboids",
        "full node":"Solid Figures_Calculation of Solid Figures_Calculation of Volume of Solid Figures_Volume and Capacity of Rectangular Cuboids"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Solid Figures",
        "root2":"Calculation of Solid Figures",
        "root3":"Calculation of Volume of Solid Figures",
        "root4":"Volume and Capacity of Cubes",
        "full node":"Solid Figures_Calculation of Solid Figures_Calculation of Volume of Solid Figures_Volume and Capacity of Cubes"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Solid Figures",
        "root2":"Understanding of Solid Figures",
        "root3":"Expanded View of Solids",
        "root4":"Expanded View of Cylinders",
        "full node":"Solid Figures_Understanding of Solid Figures_Expanded View of Solids_Expanded View of Cylinders"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Solid Figures",
        "root2":"Understanding of Solid Figures",
        "root3":"Expanded View of Solids",
        "root4":"Expanded View of Rectangular Cuboids",
        "full node":"Solid Figures_Understanding of Solid Figures_Expanded View of Solids_Expanded View of Rectangular Cuboids"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Solid Figures",
        "root2":"Understanding of Solid Figures",
        "root3":"Expanded View of Solids",
        "root4":"Expanded View of Cubes",
        "full node":"Solid Figures_Understanding of Solid Figures_Expanded View of Solids_Expanded View of Cubes"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Solid Figures",
        "root2":"Understanding of Solid Figures",
        "root3":"Cylinders and Cones",
        "root4":"Properties of Cylinders",
        "full node":"Solid Figures_Understanding of Solid Figures_Cylinders and Cones_Properties of Cylinders"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Solid Figures",
        "root2":"Understanding of Solid Figures",
        "root3":"Cylinders and Cones",
        "root4":"Properties of Cones",
        "full node":"Solid Figures_Understanding of Solid Figures_Cylinders and Cones_Properties of Cones"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Solid Figures",
        "root2":"Understanding of Solid Figures",
        "root3":"Rectangular Cuboids and Cubes",
        "root4":"Properties and Understanding of Rectangular Cuboids",
        "full node":"Solid Figures_Understanding of Solid Figures_Rectangular Cuboids and Cubes_Properties and Understanding of Rectangular Cuboids"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Solid Figures",
        "root2":"Understanding of Solid Figures",
        "root3":"Rectangular Cuboids and Cubes",
        "root4":"Properties and Understanding of Cubes",
        "full node":"Solid Figures_Understanding of Solid Figures_Rectangular Cuboids and Cubes_Properties and Understanding of Cubes"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Solid Figures",
        "root2":"Understanding of Solid Figures",
        "root3":"Observing Objects",
        "root4":null,
        "full node":"Solid Figures_Understanding of Solid Figures_Observing Objects"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Calculation of Plane Figures",
        "root3":"Sum of Interior Angles of Polygons",
        "root4":"Sum of Interior Angles of Other Polygons",
        "full node":"Plane Figures_Calculation of Plane Figures_Sum of Interior Angles of Polygons_Sum of Interior Angles of Other Polygons"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Calculation of Plane Figures",
        "root3":"Sum of Interior Angles of Polygons",
        "root4":"Sum of Interior Angles of Triangles",
        "full node":"Plane Figures_Calculation of Plane Figures_Sum of Interior Angles of Polygons_Sum of Interior Angles of Triangles"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Calculation of Plane Figures",
        "root3":"Calculation and Comparison of Angles",
        "root4":null,
        "full node":"Plane Figures_Calculation of Plane Figures_Calculation and Comparison of Angles"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Calculation of Plane Figures",
        "root3":"Calculation of Areas",
        "root4":"Area of Parallelograms",
        "full node":"Plane Figures_Calculation of Plane Figures_Calculation of Areas_Area of Parallelograms"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Calculation of Plane Figures",
        "root3":"Calculation of Areas",
        "root4":"Area of Triangles",
        "full node":"Plane Figures_Calculation of Plane Figures_Calculation of Areas_Area of Triangles"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Calculation of Plane Figures",
        "root3":"Calculation of Areas",
        "root4":"Area of Sectors",
        "full node":"Plane Figures_Calculation of Plane Figures_Calculation of Areas_Area of Sectors"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Calculation of Plane Figures",
        "root3":"Calculation of Areas",
        "root4":"Area of Trapezoids",
        "full node":"Plane Figures_Calculation of Plane Figures_Calculation of Areas_Area of Trapezoids"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Calculation of Plane Figures",
        "root3":"Calculation of Areas",
        "root4":"Area of Circles",
        "full node":"Plane Figures_Calculation of Plane Figures_Calculation of Areas_Area of Circles"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Calculation of Plane Figures",
        "root3":"Calculation of Areas",
        "root4":"Area of Rectangles",
        "full node":"Plane Figures_Calculation of Plane Figures_Calculation of Areas_Area of Rectangles"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Calculation of Plane Figures",
        "root3":"Calculation of Areas",
        "root4":"Area of Squares",
        "full node":"Plane Figures_Calculation of Plane Figures_Calculation of Areas_Area of Squares"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Calculation of Plane Figures",
        "root3":"Calculation of Perimeters",
        "root4":"Perimeter of Parallelograms",
        "full node":"Plane Figures_Calculation of Plane Figures_Calculation of Perimeters_Perimeter of Parallelograms"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Calculation of Plane Figures",
        "root3":"Calculation of Perimeters",
        "root4":"Perimeter of Triangles",
        "full node":"Plane Figures_Calculation of Plane Figures_Calculation of Perimeters_Perimeter of Triangles"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Calculation of Plane Figures",
        "root3":"Calculation of Perimeters",
        "root4":"Perimeter of Trapezoids",
        "full node":"Plane Figures_Calculation of Plane Figures_Calculation of Perimeters_Perimeter of Trapezoids"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Calculation of Plane Figures",
        "root3":"Calculation of Perimeters",
        "root4":"Circumference of Circles",
        "full node":"Plane Figures_Calculation of Plane Figures_Calculation of Perimeters_Circumference of Circles"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Calculation of Plane Figures",
        "root3":"Calculation of Perimeters",
        "root4":"Perimeter of Rectangles",
        "full node":"Plane Figures_Calculation of Plane Figures_Calculation of Perimeters_Perimeter of Rectangles"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Calculation of Plane Figures",
        "root3":"Calculation of Perimeters",
        "root4":"Perimeter of Squares",
        "full node":"Plane Figures_Calculation of Plane Figures_Calculation of Perimeters_Perimeter of Squares"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Understanding of Plane Figures",
        "root3":"Polygons",
        "root4":"Properties and Understanding of Parallelograms",
        "full node":"Plane Figures_Understanding of Plane Figures_Polygons_Properties and Understanding of Parallelograms"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Understanding of Plane Figures",
        "root3":"Polygons",
        "root4":"Properties and Understanding of Triangles",
        "full node":"Plane Figures_Understanding of Plane Figures_Polygons_Properties and Understanding of Triangles"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Understanding of Plane Figures",
        "root3":"Polygons",
        "root4":"Properties and Understanding of Trapezoids",
        "full node":"Plane Figures_Understanding of Plane Figures_Polygons_Properties and Understanding of Trapezoids"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Understanding of Plane Figures",
        "root3":"Polygons",
        "root4":"Properties and Understanding of Rectangles",
        "full node":"Plane Figures_Understanding of Plane Figures_Polygons_Properties and Understanding of Rectangles"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Understanding of Plane Figures",
        "root3":"Polygons",
        "root4":"Properties and Understanding of Squares",
        "full node":"Plane Figures_Understanding of Plane Figures_Polygons_Properties and Understanding of Squares"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Understanding of Plane Figures",
        "root3":"Classification and Understanding of Angles",
        "root4":"Understanding Triangular Rulers",
        "full node":"Plane Figures_Understanding of Plane Figures_Classification and Understanding of Angles_Understanding Triangular Rulers"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Understanding of Plane Figures",
        "root3":"Classification and Understanding of Angles",
        "root4":"Understanding and Representing Angles",
        "full node":"Plane Figures_Understanding of Plane Figures_Classification and Understanding of Angles_Understanding and Representing Angles"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Understanding of Plane Figures",
        "root3":"Properties and Understanding of Line Segments",
        "root4":"Distance Between Two Points",
        "full node":"Plane Figures_Understanding of Plane Figures_Properties and Understanding of Line Segments_Distance Between Two Points"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Understanding of Plane Figures",
        "root3":"Properties and Understanding of Line Segments",
        "root4":"Understanding Line Segments, Lines, and Rays",
        "full node":"Plane Figures_Understanding of Plane Figures_Properties and Understanding of Line Segments_Understanding Line Segments, Lines, and Rays"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Understanding of Plane Figures",
        "root3":"Positional Relationships Between Line Segments",
        "root4":"perpendicularity",
        "full node":"Plane Figures_Understanding of Plane Figures_Positional Relationships Between Line Segments_perpendicularity"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Understanding of Plane Figures",
        "root3":"Positional Relationships Between Line Segments",
        "root4":"Parallel",
        "full node":"Plane Figures_Understanding of Plane Figures_Positional Relationships Between Line Segments_Parallel"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Understanding of Plane Figures",
        "root3":"Circles and Sectors",
        "root4":"Understanding Sectors",
        "full node":"Plane Figures_Understanding of Plane Figures_Circles and Sectors_Understanding Sectors"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Understanding of Plane Figures",
        "root3":"Circles and Sectors",
        "root4":"Understanding Circles",
        "full node":"Plane Figures_Understanding of Plane Figures_Circles and Sectors_Understanding Circles"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Plane Figures",
        "root2":"Understanding of Plane Figures",
        "root3":"Observing Figures",
        "root4":null,
        "full node":"Plane Figures_Understanding of Plane Figures_Observing Figures"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Transformation and Motion of Figures",
        "root2":"Basic Transformations of Figures",
        "root3":"Axial Symmetry",
        "root4":null,
        "full node":"Transformation and Motion of Figures_Basic Transformations of Figures_Axial Symmetry"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Transformation and Motion of Figures",
        "root2":"Basic Transformations of Figures",
        "root3":"Translation",
        "root4":null,
        "full node":"Transformation and Motion of Figures_Basic Transformations of Figures_Translation"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Transformation and Motion of Figures",
        "root2":"Basic Transformations of Figures",
        "root3":"Rotation",
        "root4":null,
        "full node":"Transformation and Motion of Figures_Basic Transformations of Figures_Rotation"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Transformation and Motion of Figures",
        "root2":"Cutting and Combining of Figures",
        "root3":"Combining and Dividing Solids",
        "root4":null,
        "full node":"Transformation and Motion of Figures_Cutting and Combining of Figures_Combining and Dividing Solids"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Transformation and Motion of Figures",
        "root2":"Cutting and Combining of Figures",
        "root3":"Combining Plane Figures",
        "root4":"Division of Plane Figures",
        "full node":"Transformation and Motion of Figures_Cutting and Combining of Figures_Combining Plane Figures_Division of Plane Figures"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Transformation and Motion of Figures",
        "root2":"Cutting and Combining of Figures",
        "root3":"Combining Plane Figures",
        "root4":"Combining Plane Figures",
        "full node":"Transformation and Motion of Figures_Cutting and Combining of Figures_Combining Plane Figures_Combining Plane Figures"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Transformation and Motion of Figures",
        "root2":"Cutting and Combining of Figures",
        "root3":"Combining Plane Figures",
        "root4":"Tessellation of Figures",
        "full node":"Transformation and Motion of Figures_Cutting and Combining of Figures_Combining Plane Figures_Tessellation of Figures"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Transformation and Motion of Figures",
        "root2":"Cutting and Combining of Figures",
        "root3":"Combining Plane Figures",
        "root4":"Folding Problems of Figures",
        "full node":"Transformation and Motion of Figures_Cutting and Combining of Figures_Combining Plane Figures_Folding Problems of Figures"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Position and Direction",
        "root2":"Direction",
        "root3":"Southeast, Southwest, Northeast, Northwest Directions",
        "root4":null,
        "full node":"Position and Direction_Direction_Southeast, Southwest, Northeast, Northwest Directions"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Position and Direction",
        "root2":"Direction",
        "root3":"Cardinal Directions (East, South, West, North)",
        "root4":null,
        "full node":"Position and Direction_Direction_Cardinal Directions (East, South, West, North)"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Position and Direction",
        "root2":"Route Map",
        "root3":"Determining the Positions of Objects Based on Direction, Angle, and Distance",
        "root4":null,
        "full node":"Position and Direction_Route Map_Determining the Positions of Objects Based on Direction, Angle, and Distance"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Position and Direction",
        "root2":"Route Map",
        "root3":"Describing Simple Routes Based on Direction and Distance",
        "root4":null,
        "full node":"Position and Direction_Route Map_Describing Simple Routes Based on Direction and Distance"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Position and Direction",
        "root2":"Correspondence of Coordinates and Positions",
        "root3":"Representing Positions Using Ordered Pairs",
        "root4":null,
        "full node":"Position and Direction_Correspondence of Coordinates and Positions_Representing Positions Using Ordered Pairs"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Position and Direction",
        "root2":"Correspondence of Coordinates and Positions",
        "root3":"Finding Positions Based on Ordered Pairs",
        "root4":null,
        "full node":"Position and Direction_Correspondence of Coordinates and Positions_Finding Positions Based on Ordered Pairs"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Position and Direction",
        "root2":"Position",
        "root3":"Front-Back Position",
        "root4":null,
        "full node":"Position and Direction_Position_Front-Back Position"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Position and Direction",
        "root2":"Position",
        "root3":"Up-Down Position",
        "root4":null,
        "full node":"Position and Direction_Position_Up-Down Position"
    },
    {
        "root0":"Geometry and Figures",
        "root1":"Position and Direction",
        "root2":"Position",
        "root3":"Left-Right Position",
        "root4":null,
        "full node":"Position and Direction_Position_Left-Right Position"
    }
]