ixyml 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. data/.gitignore +19 -0
  2. data/.gitignore~ +17 -0
  3. data/Gemfile +12 -0
  4. data/Gemfile.lock +44 -0
  5. data/Gemfile~ +13 -0
  6. data/LICENSE +22 -0
  7. data/README.md +29 -0
  8. data/Rakefile +2 -0
  9. data/bin/dbg_x2o +8 -0
  10. data/bin/x2y +8 -0
  11. data/bin/y2x +17 -0
  12. data/ixyml.gemspec +23 -0
  13. data/lib/ixyml.rb +10 -0
  14. data/lib/ixyml/version.rb +3 -0
  15. data/lib/ixyml/xyml.rb +821 -0
  16. data/lib/ixyml/xyml_element.rb +778 -0
  17. data/test/dirTemp/ktest00.nml.j2j.json +1 -0
  18. data/test/dirTemp/ktest00.nml.nml.xml +53 -0
  19. data/test/dirTemp/ktest00.nml.nml.yaml +74 -0
  20. data/test/dirTemp/ktest00.nml.x2j.json +1 -0
  21. data/test/dirTemp/ktest00.nml.x2x.xml +53 -0
  22. data/test/dirTemp/ktest00.nml.xyj.yaml +134 -0
  23. data/test/dirTemp/ktest00.nml.xyx.xml +53 -0
  24. data/test/dirTemp/ktest00.nml.xyx.yaml +134 -0
  25. data/test/dirTemp/ktest00.nml.y2j.json +1 -0
  26. data/test/dirTemp/ktest00.nml.y2y.yaml +74 -0
  27. data/test/dirTemp/ktest00.nml.yxy.xml +2 -0
  28. data/test/dirTemp/ktest00.nml.yxy.yaml +74 -0
  29. data/test/dirTemp/ktest01.nml.yaml +74 -0
  30. data/test/dirTemp/ktest01.yxy.xml +2 -0
  31. data/test/dirTemp/ktest01.yxy.yaml +74 -0
  32. data/test/dirTemp/test01.nml.nml.xml +21 -0
  33. data/test/dirTemp/test01.nml.nml.yaml +5 -0
  34. data/test/dirTemp/test01.nml.x2j.json +1 -0
  35. data/test/dirTemp/test01.nml.x2x.xml +21 -0
  36. data/test/dirTemp/test01.nml.xyj.yaml +18 -0
  37. data/test/dirTemp/test01.nml.xyx.xml +21 -0
  38. data/test/dirTemp/test01.nml.xyx.yaml +18 -0
  39. data/test/dirTemp/test01.nml.y2j.json +1 -0
  40. data/test/dirTemp/test01.nml.y2y.yaml +5 -0
  41. data/test/dirTemp/test01.nml.yaml +74 -0
  42. data/test/dirTemp/test01.nml.yxy.xml +3 -0
  43. data/test/dirTemp/test01.nml.yxy.yaml +5 -0
  44. data/test/dirTemp/test01.yxy.xml +2 -0
  45. data/test/dirTemp/test01.yxy.yaml +74 -0
  46. data/test/dirTemp/testBreak.nml.yaml +7 -0
  47. data/test/dirTemp/testBreak.yxy.xml +5 -0
  48. data/test/dirTemp/testBreak.yxy.yaml +7 -0
  49. data/test/dirTemp/testCDATA.nml.nml.xml +26 -0
  50. data/test/dirTemp/testCDATA.nml.x2j.json +1 -0
  51. data/test/dirTemp/testCDATA.nml.x2x.xml +26 -0
  52. data/test/dirTemp/testCDATA.nml.xyj.yaml +18 -0
  53. data/test/dirTemp/testCDATA.nml.xyx.xml +26 -0
  54. data/test/dirTemp/testCDATA.nml.xyx.yaml +18 -0
  55. data/test/dirTemp/testCDATA.nml.y2j.json +1 -0
  56. data/test/dirTemp/testEscape.nml.nml.xml +77 -0
  57. data/test/dirTemp/testEscape.nml.nml.yaml +53 -0
  58. data/test/dirTemp/testEscape.nml.x2j.json +1 -0
  59. data/test/dirTemp/testEscape.nml.x2x.xml +77 -0
  60. data/test/dirTemp/testEscape.nml.xyj.yaml +213 -0
  61. data/test/dirTemp/testEscape.nml.xyx.xml +77 -0
  62. data/test/dirTemp/testEscape.nml.xyx.yaml +213 -0
  63. data/test/dirTemp/testEscape.nml.y2j.json +1 -0
  64. data/test/dirTemp/testEscape.nml.y2y.yaml +53 -0
  65. data/test/dirTemp/testEscape.nml.yxy.xml +2 -0
  66. data/test/dirTemp/testEscape.nml.yxy.yaml +53 -0
  67. data/test/dirTemp/testNS.nml.nml.xml +21 -0
  68. data/test/dirTemp/testNS.nml.x2j.json +1 -0
  69. data/test/dirTemp/testNS.nml.x2x.xml +21 -0
  70. data/test/dirTemp/testNS.nml.xyj.yaml +19 -0
  71. data/test/dirTemp/testNS.nml.xyx.xml +21 -0
  72. data/test/dirTemp/testNS.nml.xyx.yaml +19 -0
  73. data/test/dirTemp/testNS.nml.y2j.json +1 -0
  74. data/test/test_xyml.rb +167 -0
  75. data/test/test_xyml.rb~ +167 -0
  76. data/test/test_xyml_element.rb +241 -0
  77. data/test/test_xyml_element.rb~ +111 -0
  78. data/test/testfiles/ktest00.nml.ori.json +1 -0
  79. data/test/testfiles/ktest00.nml.ori.xml +53 -0
  80. data/test/testfiles/ktest00.nml.ori.yaml +74 -0
  81. data/test/testfiles/ktest00.nml.ori.yaml~ +75 -0
  82. data/test/testfiles/ktest01.ori.yaml +75 -0
  83. data/test/testfiles/test01.nml.ori.xml +21 -0
  84. data/test/testfiles/test01.nml.ori.yaml +5 -0
  85. data/test/testfiles/test01.ori.yaml +75 -0
  86. data/test/testfiles/testBreak.ori.yaml +10 -0
  87. data/test/testfiles/testCDATA.ng.ng.xml +26 -0
  88. data/test/testfiles/testEscape.nml.ori.xml +77 -0
  89. data/test/testfiles/testEscape.nml.ori.yaml +105 -0
  90. data/test/testfiles/testNS.nml.ori.xml +21 -0
  91. data/test/testfiles/xmlTemp.xml +2 -0
  92. data/test/testfiles/xymlTemp.xyml +6 -0
  93. metadata +230 -0
@@ -0,0 +1,3 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <quiz><group1><text>adfadfads asdfadsfasf adfadfadsf dafadfa
3
+ asdfasdfasdf adfadfasdfas adfadsf dsfdas, daff</text></group1></quiz>
@@ -0,0 +1,5 @@
1
+ ---
2
+ - quiz:
3
+ - group1:
4
+ - text:
5
+ - "adfadfads asdfadsfasf adfadfadsf dafadfa\nasdfasdfasdf adfadfasdfas adfadsf dsfdas, daff"
@@ -0,0 +1,2 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <quiz><quizUnit><unitText format='html'>次の<u>下線部</u>の読み仮名を漢字に直せ。</unitText><info2 type='defaultNumberOfLetters'>3</info2><info3 type='defaultAllotment'>3</info3><question type='handWriting'><questionText format='html'>古く、ばいえんでまっ黒にすすけた煉瓦壁の陰に汽車が停まると、</questionText><info4 type='numberOfLetters'/><answer fraction='100'><text>煤煙</text></answer><answer fraction='0'><text>梅園</text><feedback><text>これは”ばいえん”違いですね。</text></feedback></answer><source><author>有島武郎</author><title>或る女(前編)</title><link><label>青空文庫</label><url>http://www.aozora.gr.jp/</url></link></source></question><question type='handWriting'><questionText format='html'>2古く<u>ばいえん</u>でまっ黒にすすけた煉瓦壁の陰に汽車が停まると、</questionText><info5 type='numberOfLetters'/><answer fraction='100'><text>2煤煙</text></answer><answer fraction='0'><text>2梅園</text><feedback><text>2これは”ばいえん”違いですね。</text></feedback></answer><source><author>2有島武郎</author><title>2或る女(前編)</title><link><label>2青空文庫</label><url>2http://www.aozora.gr.jp/</url></link></source></question></quizUnit></quiz>
@@ -0,0 +1,74 @@
1
+ ---
2
+ - quiz:
3
+ - quizUnit:
4
+ - unitText:
5
+ - format: html
6
+ - 次の
7
+ - u:
8
+ - 下線部
9
+ - の読み仮名を漢字に直せ。
10
+ - info2:
11
+ - type: defaultNumberOfLetters
12
+ - 3
13
+ - info3:
14
+ - type: defaultAllotment
15
+ - 3
16
+ - question:
17
+ - type: handWriting
18
+ - questionText:
19
+ - format: html
20
+ - 古く、ばいえんでまっ黒にすすけた煉瓦壁の陰に汽車が停まると、
21
+ - info4:
22
+ - type: numberOfLetters
23
+ - answer:
24
+ - fraction: 100
25
+ - text:
26
+ - 煤煙
27
+ - answer:
28
+ - fraction: 0
29
+ - text:
30
+ - 梅園
31
+ - feedback:
32
+ - text:
33
+ - これは”ばいえん”違いですね。
34
+ - source:
35
+ - author:
36
+ - 有島武郎
37
+ - title:
38
+ - 或る女(前編)
39
+ - link:
40
+ - label:
41
+ - 青空文庫
42
+ - url:
43
+ - http://www.aozora.gr.jp/
44
+ - question:
45
+ - type: handWriting
46
+ - questionText:
47
+ - format: html
48
+ - 2古く
49
+ - u:
50
+ - ばいえん
51
+ - でまっ黒にすすけた煉瓦壁の陰に汽車が停まると、
52
+ - info5:
53
+ - type: numberOfLetters
54
+ - answer:
55
+ - fraction: 100
56
+ - text:
57
+ - 2煤煙
58
+ - answer:
59
+ - fraction: 0
60
+ - text:
61
+ - 2梅園
62
+ - feedback:
63
+ - text:
64
+ - 2これは”ばいえん”違いですね。
65
+ - source:
66
+ - author:
67
+ - 2有島武郎
68
+ - title:
69
+ - 2或る女(前編)
70
+ - link:
71
+ - label:
72
+ - 2青空文庫
73
+ - url:
74
+ - 2http://www.aozora.gr.jp/
@@ -0,0 +1,7 @@
1
+ ---
2
+ - quiz:
3
+ - group1:
4
+ - text:
5
+ - "abcd\nefghi\njkl\n"
6
+ - text2:
7
+ - xyz
@@ -0,0 +1,5 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <quiz><group1><text>abcd
3
+ efghi
4
+ jkl
5
+ </text><text2>xyz</text2></group1></quiz>
@@ -0,0 +1,7 @@
1
+ ---
2
+ - quiz:
3
+ - group1:
4
+ - text:
5
+ - "abcd\nefghi\njkl\n"
6
+ - text2:
7
+ - xyz
@@ -0,0 +1,26 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <quiz>
3
+ <group1>
4
+ <text1>
5
+ abcdefg
6
+ hijklmnopq
7
+ rstuvwxyz
8
+ </text1>
9
+
10
+ あああ
11
+
12
+
13
+
14
+ <text2>
15
+ abcdefg
16
+ hijklmnopq
17
+ rstuvwxyz
18
+ </text2>
19
+ </group1>
20
+ <group2>
21
+ <text1>
22
+ abcdefg
23
+ hijklmnopq
24
+ </text1>
25
+ </group2>
26
+ </quiz>
@@ -0,0 +1 @@
1
+ [{"quiz":["\n ",{"group1":["\n ",{"text1":["\n abcdefg\n hijklmnopq\n rstuvwxyz\n "]},"\n\nあああ\n\n\n\n ",{"text2":["\nabcdefg\nhijklmnopq\nrstuvwxyz\n "]},"\n "]},"\n ",{"group2":["\n ",{"text1":["\n abcdefg\n hijklmnopq\n "]},"\n "]},"\n"]}]
@@ -0,0 +1,26 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <quiz>
3
+ <group1>
4
+ <text1>
5
+ abcdefg
6
+ hijklmnopq
7
+ rstuvwxyz
8
+ </text1>
9
+
10
+ あああ
11
+
12
+
13
+
14
+ <text2>
15
+ abcdefg
16
+ hijklmnopq
17
+ rstuvwxyz
18
+ </text2>
19
+ </group1>
20
+ <group2>
21
+ <text1>
22
+ abcdefg
23
+ hijklmnopq
24
+ </text1>
25
+ </group2>
26
+ </quiz>
@@ -0,0 +1,18 @@
1
+ ---
2
+ - quiz:
3
+ - "\n "
4
+ - group1:
5
+ - "\n "
6
+ - text1:
7
+ - "\n abcdefg\n hijklmnopq\n rstuvwxyz\n "
8
+ - "\n\nあああ\n\n\n\n "
9
+ - text2:
10
+ - "\nabcdefg\nhijklmnopq\nrstuvwxyz\n "
11
+ - "\n "
12
+ - "\n "
13
+ - group2:
14
+ - "\n "
15
+ - text1:
16
+ - "\n abcdefg\n hijklmnopq\n "
17
+ - "\n "
18
+ - "\n"
@@ -0,0 +1,26 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <quiz>
3
+ <group1>
4
+ <text1>
5
+ abcdefg
6
+ hijklmnopq
7
+ rstuvwxyz
8
+ </text1>
9
+
10
+ あああ
11
+
12
+
13
+
14
+ <text2>
15
+ abcdefg
16
+ hijklmnopq
17
+ rstuvwxyz
18
+ </text2>
19
+ </group1>
20
+ <group2>
21
+ <text1>
22
+ abcdefg
23
+ hijklmnopq
24
+ </text1>
25
+ </group2>
26
+ </quiz>
@@ -0,0 +1,18 @@
1
+ ---
2
+ - quiz:
3
+ - "\n "
4
+ - group1:
5
+ - "\n "
6
+ - text1:
7
+ - "\n abcdefg\n hijklmnopq\n rstuvwxyz\n "
8
+ - "\n\nあああ\n\n\n\n "
9
+ - text2:
10
+ - "\nabcdefg\nhijklmnopq\nrstuvwxyz\n "
11
+ - "\n "
12
+ - "\n "
13
+ - group2:
14
+ - "\n "
15
+ - text1:
16
+ - "\n abcdefg\n hijklmnopq\n "
17
+ - "\n "
18
+ - "\n"
@@ -0,0 +1 @@
1
+ [{"quiz":["\n ",{"group1":["\n ",{"text1":["\n abcdefg\n hijklmnopq\n rstuvwxyz\n "]},"\n\nあああ\n\n\n\n ",{"text2":["\nabcdefg\nhijklmnopq\nrstuvwxyz\n "]},"\n "]},"\n ",{"group2":["\n ",{"text1":["\n abcdefg\n hijklmnopq\n "]},"\n "]},"\n"]}]
@@ -0,0 +1,77 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <quiz>
3
+ <group1>
4
+ <e>-</e>
5
+ <e>?a</e>
6
+ <e>aa?</e>
7
+ <e>?</e>
8
+ <e>a:</e>
9
+ <e>:a</e>
10
+ <e>:</e>
11
+ <e>a:a</e>
12
+ <e>a:a:</e>
13
+ <e>a,</e>
14
+ <e>a[</e>
15
+ <e>a]</e>
16
+ <e>[]</e>
17
+ <e>[</e>
18
+ <e>]</e>
19
+ <e>a{</e>
20
+ <e>a}</e>
21
+ <e>{}</e>
22
+ <e>{</e>
23
+ <e>}</e>
24
+ <e>@</e>
25
+ <e>#</e>
26
+ <e>a &amp;</e>
27
+ <e>!</e>
28
+ <e>&lt;</e>
29
+ <e>&gt;</e>
30
+ <e>&apos;</e>
31
+ <e>&quot;&apos;&quot;</e>
32
+ <e>&quot;&quot;</e>
33
+ <e>&apos;&quot;&apos;</e>
34
+ <e>\</e>
35
+ <e>\:</e>
36
+ <e>&quot;aa\&quot;aa&quot;</e>
37
+ <e>&quot;\&quot;&quot;</e>
38
+ <e>%</e>
39
+ <e>`</e>
40
+ <e>&amp;</e>
41
+ </group1>
42
+ <group2>
43
+ <e a00=''/>
44
+ <e a01='-'/>
45
+ <e a02='?'/>
46
+ <e a03=','/>
47
+ <e a04='['/>
48
+ <e a05=']'/>
49
+ <e a06='{'/>
50
+ <e a07='}'/>
51
+ <e a08='@'/>
52
+ <e a09='before#after'/>
53
+ <e a10='&amp;'/>
54
+ <e a11='!'/>
55
+ <e a12='&lt;'/>
56
+ <e a13='&gt;'/>
57
+ <e a14='&quot;'/>
58
+ <e a15='&apos;'/>
59
+ <e a16='&quot;&apos;&quot;'/>
60
+ <e a17='&quot;&quot;'/>
61
+ <e a18='&apos;&quot;&apos;'/>
62
+ <e a19='\'/>
63
+ <e a20='\:'/>
64
+ <e a21='&quot;aa\&quot;aa&quot;'/>
65
+ <e a22='&quot;\&quot;&quot;'/>
66
+ <e a23='%'/>
67
+ <e a24='`'/>
68
+ <e a25='
69
+ '/>
70
+ <e a26='
71
+ a'/>
72
+ <e a27=' '/>
73
+ <e a28=' a '/>
74
+ <e a29='\t'/>
75
+ <e a30='\n'/>
76
+ </group2>
77
+ </quiz>
@@ -0,0 +1,53 @@
1
+ ---
2
+ - quiz:
3
+ - group1:
4
+ - text:
5
+ - "abc: deedfadsfads"
6
+ - text:
7
+ - -a
8
+ - text:
9
+ - ?a
10
+ - text:
11
+ - aa?
12
+ - text:
13
+ - a,
14
+ - text:
15
+ - a[
16
+ - text:
17
+ - a]
18
+ - text:
19
+ - a}
20
+ - text:
21
+ - a@
22
+ - text:
23
+ - before1#after1
24
+ - test:
25
+ - a &
26
+ - text:
27
+ - a !
28
+ - text:
29
+ - a <
30
+ - text:
31
+ - a >
32
+ - test:
33
+ - a '
34
+ - test:
35
+ - "'"
36
+ - test:
37
+ - "aa\"aa"
38
+ - test:
39
+ - "\""
40
+ - text:
41
+ - a%
42
+ - text:
43
+ - a`
44
+ - text3:
45
+ - a00: attribute
46
+ - a01:
47
+ - a02: a-
48
+ - a03: ?a
49
+ - a04: aa?
50
+ - a10: a,
51
+ - a11: a[
52
+ - a13: a]
53
+ - a15: a}
@@ -0,0 +1 @@
1
+ [{"quiz":["\n",{"group1":["\n",{"e":["-"]},"\n",{"e":["?a"]},"\n",{"e":["aa?"]},"\n",{"e":["?"]},"\n",{"e":["a:"]},"\n",{"e":[":a"]},"\n",{"e":[":"]},"\n",{"e":["a:a"]},"\n",{"e":["a:a:"]},"\n",{"e":["a,"]},"\n",{"e":["a["]},"\n",{"e":["a]"]},"\n",{"e":["[]"]},"\n",{"e":["["]},"\n",{"e":["]"]},"\n",{"e":["a{"]},"\n",{"e":["a}"]},"\n",{"e":["{}"]},"\n",{"e":["{"]},"\n",{"e":["}"]},"\n",{"e":["@"]},"\n",{"e":["#"]},"\n",{"e":["a &"]},"\n",{"e":["!"]},"\n",{"e":["<"]},"\n",{"e":[">"]},"\n",{"e":["'"]},"\n",{"e":["\"'\""]},"\n",{"e":["\"\""]},"\n",{"e":["'\"'"]},"\n",{"e":["\\"]},"\n",{"e":["\\:"]},"\n",{"e":["\"aa\\\"aa\""]},"\n",{"e":["\"\\\"\""]},"\n",{"e":["%"]},"\n",{"e":["`"]},"\n",{"e":["&"]},"\n"]},"\n",{"group2":["\n",{"e":[{"a00":""}]},"\n",{"e":[{"a01":"-"}]},"\n",{"e":[{"a02":"?"}]},"\n",{"e":[{"a03":","}]},"\n",{"e":[{"a04":"["}]},"\n",{"e":[{"a05":"]"}]},"\n",{"e":[{"a06":"{"}]},"\n",{"e":[{"a07":"}"}]},"\n",{"e":[{"a08":"@"}]},"\n",{"e":[{"a09":"before#after"}]},"\n",{"e":[{"a10":"&"}]},"\n",{"e":[{"a11":"!"}]},"\n",{"e":[{"a12":"<"}]},"\n",{"e":[{"a13":">"}]},"\n",{"e":[{"a14":"\""}]},"\n",{"e":[{"a15":"'"}]},"\n",{"e":[{"a16":"\"'\""}]},"\n",{"e":[{"a17":"\"\""}]},"\n",{"e":[{"a18":"'\"'"}]},"\n",{"e":[{"a19":"\\"}]},"\n",{"e":[{"a20":"\\:"}]},"\n",{"e":[{"a21":"\"aa\\\"aa\""}]},"\n",{"e":[{"a22":"\"\\\"\""}]},"\n",{"e":[{"a23":"%"}]},"\n",{"e":[{"a24":"`"}]},"\n",{"e":[{"a25":"\n"}]},"\n",{"e":[{"a26":"\n\ta"}]},"\n",{"e":[{"a27":"\t"}]},"\n",{"e":[{"a28":"\ta\t"}]},"\n",{"e":[{"a29":"\\t"}]},"\n",{"e":[{"a30":"\\n"}]},"\n"]},"\n"]}]
@@ -0,0 +1,77 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <quiz>
3
+ <group1>
4
+ <e>-</e>
5
+ <e>?a</e>
6
+ <e>aa?</e>
7
+ <e>?</e>
8
+ <e>a:</e>
9
+ <e>:a</e>
10
+ <e>:</e>
11
+ <e>a:a</e>
12
+ <e>a:a:</e>
13
+ <e>a,</e>
14
+ <e>a[</e>
15
+ <e>a]</e>
16
+ <e>[]</e>
17
+ <e>[</e>
18
+ <e>]</e>
19
+ <e>a{</e>
20
+ <e>a}</e>
21
+ <e>{}</e>
22
+ <e>{</e>
23
+ <e>}</e>
24
+ <e>@</e>
25
+ <e>#</e>
26
+ <e>a &amp;</e>
27
+ <e>!</e>
28
+ <e>&lt;</e>
29
+ <e>&gt;</e>
30
+ <e>&apos;</e>
31
+ <e>&quot;&apos;&quot;</e>
32
+ <e>&quot;&quot;</e>
33
+ <e>&apos;&quot;&apos;</e>
34
+ <e>\</e>
35
+ <e>\:</e>
36
+ <e>&quot;aa\&quot;aa&quot;</e>
37
+ <e>&quot;\&quot;&quot;</e>
38
+ <e>%</e>
39
+ <e>`</e>
40
+ <e>&amp;</e>
41
+ </group1>
42
+ <group2>
43
+ <e a00=''/>
44
+ <e a01='-'/>
45
+ <e a02='?'/>
46
+ <e a03=','/>
47
+ <e a04='['/>
48
+ <e a05=']'/>
49
+ <e a06='{'/>
50
+ <e a07='}'/>
51
+ <e a08='@'/>
52
+ <e a09='before#after'/>
53
+ <e a10='&amp;'/>
54
+ <e a11='!'/>
55
+ <e a12='&lt;'/>
56
+ <e a13='&gt;'/>
57
+ <e a14='&quot;'/>
58
+ <e a15='&apos;'/>
59
+ <e a16='&quot;&apos;&quot;'/>
60
+ <e a17='&quot;&quot;'/>
61
+ <e a18='&apos;&quot;&apos;'/>
62
+ <e a19='\'/>
63
+ <e a20='\:'/>
64
+ <e a21='&quot;aa\&quot;aa&quot;'/>
65
+ <e a22='&quot;\&quot;&quot;'/>
66
+ <e a23='%'/>
67
+ <e a24='`'/>
68
+ <e a25='
69
+ '/>
70
+ <e a26='
71
+ a'/>
72
+ <e a27=' '/>
73
+ <e a28=' a '/>
74
+ <e a29='\t'/>
75
+ <e a30='\n'/>
76
+ </group2>
77
+ </quiz>