kgrift 1.3.108
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.
- checksums.yaml +7 -0
- data/KGrift/Gemfile +22 -0
- data/KGrift/README.md +66 -0
- data/KGrift/bin/kgrift +11 -0
- data/KGrift/grifter.yml +224 -0
- data/KGrift/internal_test_graphs/basic_test_graph_definition.yml +2915 -0
- data/KGrift/internal_test_graphs/unicode_test_graph_definition.yml +3070 -0
- data/KGrift/knewton_grifts/analytics_grifts.rb +103 -0
- data/KGrift/knewton_grifts/async_helper_grifts.rb +63 -0
- data/KGrift/knewton_grifts/authenticator_grifts.rb +46 -0
- data/KGrift/knewton_grifts/basic_grifts.rb +29 -0
- data/KGrift/knewton_grifts/batch_grifts.rb +14 -0
- data/KGrift/knewton_grifts/content_collection_grifts.rb +204 -0
- data/KGrift/knewton_grifts/content_collection_v1_grifts.rb +521 -0
- data/KGrift/knewton_grifts/content_eid_grifts.rb +41 -0
- data/KGrift/knewton_grifts/copy_grifts.rb +151 -0
- data/KGrift/knewton_grifts/deprecated_graph_and_taxonomy_grifts.rb +353 -0
- data/KGrift/knewton_grifts/goal_grifts.rb +203 -0
- data/KGrift/knewton_grifts/graph_and_taxonomy_grifts.rb +136 -0
- data/KGrift/knewton_grifts/graph_create_grifts.rb +34 -0
- data/KGrift/knewton_grifts/graph_query_grifts.rb +448 -0
- data/KGrift/knewton_grifts/graph_tools_grifts.rb +151 -0
- data/KGrift/knewton_grifts/graph_validation_grifts.rb +447 -0
- data/KGrift/knewton_grifts/helper_grifts.rb +92 -0
- data/KGrift/knewton_grifts/jmeter_data_grifts.rb +56 -0
- data/KGrift/knewton_grifts/learning_instance_grifts.rb +46 -0
- data/KGrift/knewton_grifts/looper_grifts.rb +34 -0
- data/KGrift/knewton_grifts/moxy_grifts.rb +64 -0
- data/KGrift/knewton_grifts/oauth_grifts.rb +182 -0
- data/KGrift/knewton_grifts/partner_grifts.rb +70 -0
- data/KGrift/knewton_grifts/partner_support_grifts.rb +85 -0
- data/KGrift/knewton_grifts/recommendation_setup_grifts.rb +215 -0
- data/KGrift/knewton_grifts/registration_grifts.rb +159 -0
- data/KGrift/knewton_grifts/registration_info_grifts.rb +23 -0
- data/KGrift/knewton_grifts/report_grifts.rb +122 -0
- data/KGrift/knewton_grifts/shell_command_grifts.rb +21 -0
- data/KGrift/knewton_grifts/student_flow_grifts.rb +560 -0
- data/KGrift/knewton_grifts/tag_grifts.rb +41 -0
- data/KGrift/knewton_grifts/test_data_grifts.rb +328 -0
- data/KGrift/knewton_grifts/test_user_grifts.rb +264 -0
- data/KGrift/lib/dtrace.rb +20 -0
- data/KGrift/lib/kgrift.rb +7 -0
- data/KGrift/test_data_generators/basic_book_and_taxonomies.rb +35 -0
- data/KGrift/test_data_generators/lo_test_graph.rb +34 -0
- data/KGrift/test_data_generators/partner_owned_book_and_taxonomies.rb +28 -0
- data/KGrift/test_data_generators/partner_owned_book_and_taxonomies_unicode.rb +28 -0
- data/KGrift/test_data_generators/sandcastle_book_and_taxonomies.rb +13 -0
- data/KGrift/test_data_generators/sandcastle_book_and_taxonomies.yml +3709 -0
- data/KGrift/test_data_generators/sandcastle_graph.rb +8 -0
- data/KGrift/test_data_generators/sandcastle_graph_definition.json +4483 -0
- data/KGrift/test_data_generators/sandcastle_graph_full.rb +7 -0
- data/KGrift/test_data_generators/sandcastle_taxonomies.yml +378 -0
- data/KGrift/test_data_generators/sandcastle_with_taxons.rb +56 -0
- data/KGrift/test_data_generators/sandcastle_with_taxons.yml +3994 -0
- data/KGrift/test_data_generators/test_users_and_partners.rb +76 -0
- data/kgrift.gemspec +43 -0
- metadata +144 -0
@@ -0,0 +1,20 @@
|
|
1
|
+
# This file is all about enabling distributed tracing with ZipKin
|
2
|
+
# When this is required, the effect is:
|
3
|
+
# Every single request gets a unique random long
|
4
|
+
|
5
|
+
# MONKEY PATCH
|
6
|
+
# use an "around alias" spell to change behavior of do_request: https://gist.github.com/nusco/534772
|
7
|
+
#
|
8
|
+
|
9
|
+
class Grifter
|
10
|
+
class HTTPService
|
11
|
+
|
12
|
+
alias :official_do_request :do_request
|
13
|
+
|
14
|
+
def do_request method, path, obj=nil, options={}
|
15
|
+
dtrace_header = rand(2**32..2**64-1).to_s(16)
|
16
|
+
self.headers['X-B3-TraceId'] = dtrace_header
|
17
|
+
official_do_request method, path, obj, options
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
"""
|
2
|
+
|
3
|
+
Make a simple graph and associated set of taxonomies
|
4
|
+
|
5
|
+
This graph and taxonomy setup is used for many integration tests.
|
6
|
+
|
7
|
+
The graph/taxonomy set is owned by the knewton partner, which makes
|
8
|
+
it available for use by all partners.
|
9
|
+
|
10
|
+
For convenience, the dataset has keys for both graph ID, and the full graph.
|
11
|
+
Depending on the needs of the test, one might need only the graph ID, or one
|
12
|
+
might need to know the entire graph structure. Both peices of info are available,
|
13
|
+
same for taxonomies.
|
14
|
+
|
15
|
+
"""
|
16
|
+
|
17
|
+
|
18
|
+
# fill up this hash with the graph and taxonomy data
|
19
|
+
data = {}
|
20
|
+
|
21
|
+
set_account :knerd
|
22
|
+
data['partner_id'] = get_partner_id_for_current_account
|
23
|
+
|
24
|
+
set_account :knerd
|
25
|
+
# make the graph, which only returns the graph ID
|
26
|
+
data['graph_id'] = create_basic_book_and_taxonomies
|
27
|
+
# get the graph
|
28
|
+
data['graph'] = get_graph data['graph_id']
|
29
|
+
# get the taxonomies
|
30
|
+
data['taxonomies'] = get_taxonomies_for_graph data['graph_id']
|
31
|
+
# for convenience, extract the taxonomy IDs into a seperate list
|
32
|
+
data['taxonomy_ids'] = data['taxonomies'].map {|tax| tax['id']}
|
33
|
+
|
34
|
+
# last line of a generator must be this hash of test data getting returned
|
35
|
+
data
|
@@ -0,0 +1,34 @@
|
|
1
|
+
"""
|
2
|
+
Make a graph which contains learning objectives
|
3
|
+
it is used for various learning objective test cases across analytics and recommendations
|
4
|
+
"""
|
5
|
+
begin require 'kplatform'; rescue LoadError; end
|
6
|
+
|
7
|
+
# make a path to ../test_graphs/lo_test_graph.xlsx
|
8
|
+
file_path = File.join File.dirname(File.dirname(__FILE__)),
|
9
|
+
'test_graphs/lo_test_graph.xlsx'
|
10
|
+
|
11
|
+
graph_label = 'lo_test_graph'
|
12
|
+
# the external gref for the graph
|
13
|
+
graph_name = "#{graph_label}_#{random_string}"
|
14
|
+
|
15
|
+
# graph will be made under knewton partner, and thus
|
16
|
+
# everyone can access it, unlike if it were made under a different
|
17
|
+
# specific client id, in which case only that partner could use it
|
18
|
+
client_id = 'knewton'
|
19
|
+
|
20
|
+
kraph = KPlatform::KnewtonGraph.new client_id, graph_label, graph_name, file_path
|
21
|
+
kraph.ingest_graph
|
22
|
+
graph_id = kraph.get_graph_id
|
23
|
+
|
24
|
+
graph = nil
|
25
|
+
eventually do
|
26
|
+
graph = get_graph graph_id
|
27
|
+
end
|
28
|
+
|
29
|
+
{
|
30
|
+
'id' => graph_id,
|
31
|
+
'name' => graph_name,
|
32
|
+
'gref' => "gref-#{graph_name}",
|
33
|
+
'graph' => graph,
|
34
|
+
}
|
@@ -0,0 +1,28 @@
|
|
1
|
+
"""
|
2
|
+
|
3
|
+
Make a graph and associated set of taxonomies.
|
4
|
+
This graph has a couple special properties which makes it different from basic_book_and_taxonomies
|
5
|
+
- It is owned by a partner (not the knewton partner)
|
6
|
+
- It has special unicode characters all through the external IDs
|
7
|
+
|
8
|
+
"""
|
9
|
+
|
10
|
+
# fill up this hash with the graph and taxonomy data
|
11
|
+
data = {}
|
12
|
+
|
13
|
+
set_account :partner
|
14
|
+
data['partner_id'] = get_partner_id_for_current_account
|
15
|
+
|
16
|
+
set_account :knerd
|
17
|
+
|
18
|
+
data['graph_id'] = create_basic_book_and_taxonomies data['partner_id'], false
|
19
|
+
|
20
|
+
# get the graph
|
21
|
+
data['graph'] = get_graph data['graph_id']
|
22
|
+
# get the taxonomies
|
23
|
+
data['taxonomies'] = get_taxonomies_for_graph data['graph_id']
|
24
|
+
# for convenience, extract the taxonomy IDs into a seperate list
|
25
|
+
data['taxonomy_ids'] = data['taxonomies'].map {|tax| tax['id']}
|
26
|
+
|
27
|
+
# last line of a generator must be this hash of test data getting returned
|
28
|
+
data
|
@@ -0,0 +1,28 @@
|
|
1
|
+
"""
|
2
|
+
|
3
|
+
Make a graph and associated set of taxonomies.
|
4
|
+
This graph has a couple special properties which makes it different from basic_book_and_taxonomies
|
5
|
+
- It is owned by a partner (not the knewton partner)
|
6
|
+
- It has special unicode characters all through the external IDs
|
7
|
+
|
8
|
+
"""
|
9
|
+
|
10
|
+
# fill up this hash with the graph and taxonomy data
|
11
|
+
data = {}
|
12
|
+
|
13
|
+
set_account :partner
|
14
|
+
data['partner_id'] = get_partner_id_for_current_account
|
15
|
+
|
16
|
+
set_account :knerd
|
17
|
+
|
18
|
+
data['graph_id'] = create_basic_book_and_taxonomies data['partner_id'], true
|
19
|
+
|
20
|
+
# get the graph
|
21
|
+
data['graph'] = get_graph data['graph_id']
|
22
|
+
# get the taxonomies
|
23
|
+
data['taxonomies'] = get_taxonomies_for_graph data['graph_id']
|
24
|
+
# for convenience, extract the taxonomy IDs into a seperate list
|
25
|
+
data['taxonomy_ids'] = data['taxonomies'].map {|tax| tax['id']}
|
26
|
+
|
27
|
+
# last line of a generator must be this hash of test data getting returned
|
28
|
+
data
|
@@ -0,0 +1,13 @@
|
|
1
|
+
book_and_taxonomies_obj = YAML.load_file File.expand_path('../sandcastle_book_and_taxonomies.yml', __FILE__)
|
2
|
+
|
3
|
+
set_account :knerd
|
4
|
+
response = create_book_and_taxonomies book_and_taxonomies_obj
|
5
|
+
graph_id = response['objectId']
|
6
|
+
graph = get_graph graph_id
|
7
|
+
taxonomies = get_taxonomies_for_graph graph_id
|
8
|
+
|
9
|
+
{
|
10
|
+
'graph_id' => response['objectId'],
|
11
|
+
'graph' => graph,
|
12
|
+
'taxonomies' => taxonomies
|
13
|
+
}
|
@@ -0,0 +1,3709 @@
|
|
1
|
+
---
|
2
|
+
graph:
|
3
|
+
name: gref-Sandcastle graph (Titanik version)
|
4
|
+
nodes:
|
5
|
+
- name: Percentages and Precision Quiz Question 2
|
6
|
+
subtype: atom
|
7
|
+
temp_id: Percentages and Precision Quiz Question 2
|
8
|
+
type: module
|
9
|
+
is_taxon_recommendable: true
|
10
|
+
- name: Rules of A-Fraction Lesson
|
11
|
+
subtype: atom
|
12
|
+
temp_id: Rules of A-Fraction Lesson
|
13
|
+
type: module
|
14
|
+
is_taxon_recommendable: true
|
15
|
+
- name: Another Side of Addition Quiz Question 1
|
16
|
+
subtype: atom
|
17
|
+
temp_id: Another Side of Addition Quiz Question 1
|
18
|
+
type: module
|
19
|
+
is_taxon_recommendable: true
|
20
|
+
- name: Ratios in Action Quiz Question 1
|
21
|
+
subtype: atom
|
22
|
+
temp_id: Ratios in Action Quiz Question 1
|
23
|
+
type: module
|
24
|
+
is_taxon_recommendable: true
|
25
|
+
- name: Double Trouble Lesson
|
26
|
+
subtype: atom
|
27
|
+
temp_id: Double Trouble Lesson
|
28
|
+
type: module
|
29
|
+
is_taxon_recommendable: true
|
30
|
+
- name: "(Fraction) Addition and Subtraction Quiz Question 2"
|
31
|
+
subtype: atom
|
32
|
+
temp_id: "(Fraction) Addition and Subtraction Quiz Question 2"
|
33
|
+
type: module
|
34
|
+
is_taxon_recommendable: true
|
35
|
+
- name: Beyond Integers Quiz Question 3
|
36
|
+
subtype: atom
|
37
|
+
temp_id: Beyond Integers Quiz Question 3
|
38
|
+
type: module
|
39
|
+
is_taxon_recommendable: true
|
40
|
+
- name: Visualizing Ratios Quiz Question 1
|
41
|
+
subtype: atom
|
42
|
+
temp_id: Visualizing Ratios Quiz Question 1
|
43
|
+
type: module
|
44
|
+
is_taxon_recommendable: true
|
45
|
+
- name: Dividing Decimals Quiz Question 2
|
46
|
+
subtype: atom
|
47
|
+
temp_id: Dividing Decimals Quiz Question 2
|
48
|
+
type: module
|
49
|
+
is_taxon_recommendable: true
|
50
|
+
- name: Going Down the Line Quiz Question 1
|
51
|
+
subtype: atom
|
52
|
+
temp_id: Going Down the Line Quiz Question 1
|
53
|
+
type: module
|
54
|
+
is_taxon_recommendable: true
|
55
|
+
- name: Divvy 'Em Up Lesson
|
56
|
+
subtype: atom
|
57
|
+
temp_id: Divvy 'Em Up Lesson
|
58
|
+
type: module
|
59
|
+
is_taxon_recommendable: true
|
60
|
+
- name: Lesser of Two Evils Quiz Question 3
|
61
|
+
subtype: atom
|
62
|
+
temp_id: Lesser of Two Evils Quiz Question 3
|
63
|
+
type: module
|
64
|
+
is_taxon_recommendable: true
|
65
|
+
- name: Divvy 'Em Up Quiz Question 2
|
66
|
+
subtype: atom
|
67
|
+
temp_id: Divvy 'Em Up Quiz Question 2
|
68
|
+
type: module
|
69
|
+
is_taxon_recommendable: true
|
70
|
+
- name: Debt Division Quiz Question 3
|
71
|
+
subtype: atom
|
72
|
+
temp_id: Debt Division Quiz Question 3
|
73
|
+
type: module
|
74
|
+
is_taxon_recommendable: true
|
75
|
+
- name: Tools of Conversion Lesson
|
76
|
+
subtype: atom
|
77
|
+
temp_id: Tools of Conversion Lesson
|
78
|
+
type: module
|
79
|
+
is_taxon_recommendable: true
|
80
|
+
- name: Fraction Metamorphosis Quiz Question 1
|
81
|
+
subtype: atom
|
82
|
+
temp_id: Fraction Metamorphosis Quiz Question 1
|
83
|
+
type: module
|
84
|
+
is_taxon_recommendable: true
|
85
|
+
- name: Choosing Tools Quiz Question 3
|
86
|
+
subtype: atom
|
87
|
+
temp_id: Choosing Tools Quiz Question 3
|
88
|
+
type: module
|
89
|
+
is_taxon_recommendable: true
|
90
|
+
- name: Melting and Freezing Quiz Question 1
|
91
|
+
subtype: atom
|
92
|
+
temp_id: Melting and Freezing Quiz Question 1
|
93
|
+
type: module
|
94
|
+
is_taxon_recommendable: true
|
95
|
+
- name: Why Divide? Lesson
|
96
|
+
subtype: atom
|
97
|
+
temp_id: Why Divide? Lesson
|
98
|
+
type: module
|
99
|
+
is_taxon_recommendable: true
|
100
|
+
- name: Tools of Conversion Quiz Question 3
|
101
|
+
subtype: atom
|
102
|
+
temp_id: Tools of Conversion Quiz Question 3
|
103
|
+
type: module
|
104
|
+
is_taxon_recommendable: true
|
105
|
+
- name: Multiplying Decimals Quiz Question 3
|
106
|
+
subtype: atom
|
107
|
+
temp_id: Multiplying Decimals Quiz Question 3
|
108
|
+
type: module
|
109
|
+
is_taxon_recommendable: true
|
110
|
+
- name: Going Down the Line Lesson
|
111
|
+
subtype: atom
|
112
|
+
temp_id: Going Down the Line Lesson
|
113
|
+
type: module
|
114
|
+
is_taxon_recommendable: true
|
115
|
+
- name: Down to the Unit Rate Quiz Question 3
|
116
|
+
subtype: atom
|
117
|
+
temp_id: Down to the Unit Rate Quiz Question 3
|
118
|
+
type: module
|
119
|
+
is_taxon_recommendable: true
|
120
|
+
- name: Fraction Multiplication Quiz Question 1
|
121
|
+
subtype: atom
|
122
|
+
temp_id: Fraction Multiplication Quiz Question 1
|
123
|
+
type: module
|
124
|
+
is_taxon_recommendable: true
|
125
|
+
- name: Fraction Notation Quiz Question 1
|
126
|
+
subtype: atom
|
127
|
+
temp_id: Fraction Notation Quiz Question 1
|
128
|
+
type: module
|
129
|
+
is_taxon_recommendable: true
|
130
|
+
- name: Why Divide? Quiz Question 2
|
131
|
+
subtype: atom
|
132
|
+
temp_id: Why Divide? Quiz Question 2
|
133
|
+
type: module
|
134
|
+
is_taxon_recommendable: true
|
135
|
+
- name: Double Trouble Quiz Question 3
|
136
|
+
subtype: atom
|
137
|
+
temp_id: Double Trouble Quiz Question 3
|
138
|
+
type: module
|
139
|
+
is_taxon_recommendable: true
|
140
|
+
- name: Opposites Reflect Lesson
|
141
|
+
subtype: atom
|
142
|
+
temp_id: Opposites Reflect Lesson
|
143
|
+
type: module
|
144
|
+
is_taxon_recommendable: true
|
145
|
+
- name: Another Side of Addition Quiz Question 3
|
146
|
+
subtype: atom
|
147
|
+
temp_id: Another Side of Addition Quiz Question 3
|
148
|
+
type: module
|
149
|
+
is_taxon_recommendable: true
|
150
|
+
- name: Fraction Notation Quiz Question 3
|
151
|
+
subtype: atom
|
152
|
+
temp_id: Fraction Notation Quiz Question 3
|
153
|
+
type: module
|
154
|
+
is_taxon_recommendable: true
|
155
|
+
- name: The Power of One Quiz Question 1
|
156
|
+
subtype: atom
|
157
|
+
temp_id: The Power of One Quiz Question 1
|
158
|
+
type: module
|
159
|
+
is_taxon_recommendable: true
|
160
|
+
- name: Going Below Zero Lesson
|
161
|
+
subtype: atom
|
162
|
+
temp_id: Going Below Zero Lesson
|
163
|
+
type: module
|
164
|
+
is_taxon_recommendable: true
|
165
|
+
- name: Opposites Reflect Quiz Question 3
|
166
|
+
subtype: atom
|
167
|
+
temp_id: Opposites Reflect Quiz Question 3
|
168
|
+
type: module
|
169
|
+
is_taxon_recommendable: true
|
170
|
+
- name: Divvy 'Em Up Quiz Question 3
|
171
|
+
subtype: atom
|
172
|
+
temp_id: Divvy 'Em Up Quiz Question 3
|
173
|
+
type: module
|
174
|
+
is_taxon_recommendable: true
|
175
|
+
- name: Remain Calm Lesson
|
176
|
+
subtype: atom
|
177
|
+
temp_id: Remain Calm Lesson
|
178
|
+
type: module
|
179
|
+
is_taxon_recommendable: true
|
180
|
+
- name: Remain Calm Quiz Question 1
|
181
|
+
subtype: atom
|
182
|
+
temp_id: Remain Calm Quiz Question 1
|
183
|
+
type: module
|
184
|
+
is_taxon_recommendable: true
|
185
|
+
- name: Proper Use of Properties Lesson
|
186
|
+
subtype: atom
|
187
|
+
temp_id: Proper Use of Properties Lesson
|
188
|
+
type: module
|
189
|
+
is_taxon_recommendable: true
|
190
|
+
- name: Adding and Subtracting Decimals Lesson
|
191
|
+
subtype: atom
|
192
|
+
temp_id: Adding and Subtracting Decimals Lesson
|
193
|
+
type: module
|
194
|
+
is_taxon_recommendable: true
|
195
|
+
- name: Adding and Subtracting Decimals Quiz Question 2
|
196
|
+
subtype: atom
|
197
|
+
temp_id: Adding and Subtracting Decimals Quiz Question 2
|
198
|
+
type: module
|
199
|
+
is_taxon_recommendable: true
|
200
|
+
- name: Two-Way Problem Solving Quiz Question 3
|
201
|
+
subtype: atom
|
202
|
+
temp_id: Two-Way Problem Solving Quiz Question 3
|
203
|
+
type: module
|
204
|
+
is_taxon_recommendable: true
|
205
|
+
- name: Down to the Unit Rate Quiz Question 2
|
206
|
+
subtype: atom
|
207
|
+
temp_id: Down to the Unit Rate Quiz Question 2
|
208
|
+
type: module
|
209
|
+
is_taxon_recommendable: true
|
210
|
+
- name: Proper Use of Properties Quiz Question 3
|
211
|
+
subtype: atom
|
212
|
+
temp_id: Proper Use of Properties Quiz Question 3
|
213
|
+
type: module
|
214
|
+
is_taxon_recommendable: true
|
215
|
+
- name: Zero Sum Quiz Question 1
|
216
|
+
subtype: atom
|
217
|
+
temp_id: Zero Sum Quiz Question 1
|
218
|
+
type: module
|
219
|
+
is_taxon_recommendable: true
|
220
|
+
- name: Divide and Conquer Lesson
|
221
|
+
subtype: atom
|
222
|
+
temp_id: Divide and Conquer Lesson
|
223
|
+
type: module
|
224
|
+
is_taxon_recommendable: true
|
225
|
+
- name: Going Down the Line Quiz Question 2
|
226
|
+
subtype: atom
|
227
|
+
temp_id: Going Down the Line Quiz Question 2
|
228
|
+
type: module
|
229
|
+
is_taxon_recommendable: true
|
230
|
+
- name: The Power of One Lesson
|
231
|
+
subtype: atom
|
232
|
+
temp_id: The Power of One Lesson
|
233
|
+
type: module
|
234
|
+
is_taxon_recommendable: true
|
235
|
+
- name: Seats and Streets Lesson
|
236
|
+
subtype: atom
|
237
|
+
temp_id: Seats and Streets Lesson
|
238
|
+
type: module
|
239
|
+
is_taxon_recommendable: true
|
240
|
+
- name: Fraction Metamorphosis Quiz Question 3
|
241
|
+
subtype: atom
|
242
|
+
temp_id: Fraction Metamorphosis Quiz Question 3
|
243
|
+
type: module
|
244
|
+
is_taxon_recommendable: true
|
245
|
+
- name: Part, Percent, and Whole Quiz Question 3
|
246
|
+
subtype: atom
|
247
|
+
temp_id: Part, Percent, and Whole Quiz Question 3
|
248
|
+
type: module
|
249
|
+
is_taxon_recommendable: true
|
250
|
+
- name: Double Trouble Quiz Question 1
|
251
|
+
subtype: atom
|
252
|
+
temp_id: Double Trouble Quiz Question 1
|
253
|
+
type: module
|
254
|
+
is_taxon_recommendable: true
|
255
|
+
- name: Divide and Conquer Quiz Question
|
256
|
+
subtype: atom
|
257
|
+
temp_id: Divide and Conquer Quiz Question
|
258
|
+
type: module
|
259
|
+
is_taxon_recommendable: true
|
260
|
+
- name: Fraction Metamorphosis Lesson
|
261
|
+
subtype: atom
|
262
|
+
temp_id: Fraction Metamorphosis Lesson
|
263
|
+
type: module
|
264
|
+
is_taxon_recommendable: true
|
265
|
+
- name: Part, Percent, and Whole Quiz Question 1
|
266
|
+
subtype: atom
|
267
|
+
temp_id: Part, Percent, and Whole Quiz Question 1
|
268
|
+
type: module
|
269
|
+
is_taxon_recommendable: true
|
270
|
+
- name: Multiplying Decimals Lesson
|
271
|
+
subtype: atom
|
272
|
+
temp_id: Multiplying Decimals Lesson
|
273
|
+
type: module
|
274
|
+
is_taxon_recommendable: true
|
275
|
+
- name: Two-Way Problem Solving Lesson
|
276
|
+
subtype: atom
|
277
|
+
temp_id: Two-Way Problem Solving Lesson
|
278
|
+
type: module
|
279
|
+
is_taxon_recommendable: true
|
280
|
+
- name: Part, Percent, and Whole Quiz Question 2
|
281
|
+
subtype: atom
|
282
|
+
temp_id: Part, Percent, and Whole Quiz Question 2
|
283
|
+
type: module
|
284
|
+
is_taxon_recommendable: true
|
285
|
+
- name: Two-Way Problem Solving Quiz Question 1
|
286
|
+
subtype: atom
|
287
|
+
temp_id: Two-Way Problem Solving Quiz Question 1
|
288
|
+
type: module
|
289
|
+
is_taxon_recommendable: true
|
290
|
+
- name: Absolutely Positive? Quiz Question 1
|
291
|
+
subtype: atom
|
292
|
+
temp_id: Absolutely Positive? Quiz Question 1
|
293
|
+
type: module
|
294
|
+
is_taxon_recommendable: true
|
295
|
+
- name: Fraction Reciprocity (Reciprocals) Quiz Question 1
|
296
|
+
subtype: atom
|
297
|
+
temp_id: Fraction Reciprocity (Reciprocals) Quiz Question 1
|
298
|
+
type: module
|
299
|
+
is_taxon_recommendable: true
|
300
|
+
- name: Part, Percent, and Whole Lesson
|
301
|
+
subtype: atom
|
302
|
+
temp_id: Part, Percent, and Whole Lesson
|
303
|
+
type: module
|
304
|
+
is_taxon_recommendable: true
|
305
|
+
- name: Debt Doubling Quiz Question 1
|
306
|
+
subtype: atom
|
307
|
+
temp_id: Debt Doubling Quiz Question 1
|
308
|
+
type: module
|
309
|
+
is_taxon_recommendable: true
|
310
|
+
- name: Ratios in Action Quiz Question 2
|
311
|
+
subtype: atom
|
312
|
+
temp_id: Ratios in Action Quiz Question 2
|
313
|
+
type: module
|
314
|
+
is_taxon_recommendable: true
|
315
|
+
- name: Percentages and Precision Quiz Question 3
|
316
|
+
subtype: atom
|
317
|
+
temp_id: Percentages and Precision Quiz Question 3
|
318
|
+
type: module
|
319
|
+
is_taxon_recommendable: true
|
320
|
+
- name: Double Trouble Quiz Question 2
|
321
|
+
subtype: atom
|
322
|
+
temp_id: Double Trouble Quiz Question 2
|
323
|
+
type: module
|
324
|
+
is_taxon_recommendable: true
|
325
|
+
- name: Absolutely Positive? Lesson
|
326
|
+
subtype: atom
|
327
|
+
temp_id: Absolutely Positive? Lesson
|
328
|
+
type: module
|
329
|
+
is_taxon_recommendable: true
|
330
|
+
- name: Opposites Reflect Quiz Question 1
|
331
|
+
subtype: atom
|
332
|
+
temp_id: Opposites Reflect Quiz Question 1
|
333
|
+
type: module
|
334
|
+
is_taxon_recommendable: true
|
335
|
+
- name: Multiplying Decimals Quiz Question 2
|
336
|
+
subtype: atom
|
337
|
+
temp_id: Multiplying Decimals Quiz Question 2
|
338
|
+
type: module
|
339
|
+
is_taxon_recommendable: true
|
340
|
+
- name: Debt Doubling Quiz Question 3
|
341
|
+
subtype: atom
|
342
|
+
temp_id: Debt Doubling Quiz Question 3
|
343
|
+
type: module
|
344
|
+
is_taxon_recommendable: true
|
345
|
+
- name: Why Divide? Quiz Question 1
|
346
|
+
subtype: atom
|
347
|
+
temp_id: Why Divide? Quiz Question 1
|
348
|
+
type: module
|
349
|
+
is_taxon_recommendable: true
|
350
|
+
- name: Dividing Decimals Quiz Question 1
|
351
|
+
subtype: atom
|
352
|
+
temp_id: Dividing Decimals Quiz Question 1
|
353
|
+
type: module
|
354
|
+
is_taxon_recommendable: true
|
355
|
+
- name: Proper Use of Properties Quiz Question 1
|
356
|
+
subtype: atom
|
357
|
+
temp_id: Proper Use of Properties Quiz Question 1
|
358
|
+
type: module
|
359
|
+
is_taxon_recommendable: true
|
360
|
+
- name: Visualizing Ratios Quiz Question 3
|
361
|
+
subtype: atom
|
362
|
+
temp_id: Visualizing Ratios Quiz Question 3
|
363
|
+
type: module
|
364
|
+
is_taxon_recommendable: true
|
365
|
+
- name: Fraction Multiplication Lesson
|
366
|
+
subtype: atom
|
367
|
+
temp_id: Fraction Multiplication Lesson
|
368
|
+
type: module
|
369
|
+
is_taxon_recommendable: true
|
370
|
+
- name: Going Below Zero Quiz Question 2
|
371
|
+
subtype: atom
|
372
|
+
temp_id: Going Below Zero Quiz Question 2
|
373
|
+
type: module
|
374
|
+
is_taxon_recommendable: true
|
375
|
+
- name: Opposites Reflect Quiz Question 2
|
376
|
+
subtype: atom
|
377
|
+
temp_id: Opposites Reflect Quiz Question 2
|
378
|
+
type: module
|
379
|
+
is_taxon_recommendable: true
|
380
|
+
- name: Dividing Decimals Lesson
|
381
|
+
subtype: atom
|
382
|
+
temp_id: Dividing Decimals Lesson
|
383
|
+
type: module
|
384
|
+
is_taxon_recommendable: true
|
385
|
+
- name: "(Fraction) Addition and Subtraction Lesson"
|
386
|
+
subtype: atom
|
387
|
+
temp_id: "(Fraction) Addition and Subtraction Lesson"
|
388
|
+
type: module
|
389
|
+
is_taxon_recommendable: true
|
390
|
+
- name: Fraction Reciprocity (Reciprocals) Quiz Question 3
|
391
|
+
subtype: atom
|
392
|
+
temp_id: Fraction Reciprocity (Reciprocals) Quiz Question 3
|
393
|
+
type: module
|
394
|
+
is_taxon_recommendable: true
|
395
|
+
- name: Ratios in Action Lesson
|
396
|
+
subtype: atom
|
397
|
+
temp_id: Ratios in Action Lesson
|
398
|
+
type: module
|
399
|
+
is_taxon_recommendable: true
|
400
|
+
- name: Down to the Unit Rate Quiz Question 1
|
401
|
+
subtype: atom
|
402
|
+
temp_id: Down to the Unit Rate Quiz Question 1
|
403
|
+
type: module
|
404
|
+
is_taxon_recommendable: true
|
405
|
+
- name: Rules of A-Fraction Quiz Question 2
|
406
|
+
subtype: atom
|
407
|
+
temp_id: Rules of A-Fraction Quiz Question 2
|
408
|
+
type: module
|
409
|
+
is_taxon_recommendable: true
|
410
|
+
- name: Rules of A-Fraction Quiz Question 3
|
411
|
+
subtype: atom
|
412
|
+
temp_id: Rules of A-Fraction Quiz Question 3
|
413
|
+
type: module
|
414
|
+
is_taxon_recommendable: true
|
415
|
+
- name: Tools of Conversion Quiz Question 2
|
416
|
+
subtype: atom
|
417
|
+
temp_id: Tools of Conversion Quiz Question 2
|
418
|
+
type: module
|
419
|
+
is_taxon_recommendable: true
|
420
|
+
- name: Debt Doubling Quiz Question 2
|
421
|
+
subtype: atom
|
422
|
+
temp_id: Debt Doubling Quiz Question 2
|
423
|
+
type: module
|
424
|
+
is_taxon_recommendable: true
|
425
|
+
- name: Choosing Tools Quiz Question 2
|
426
|
+
subtype: atom
|
427
|
+
temp_id: Choosing Tools Quiz Question 2
|
428
|
+
type: module
|
429
|
+
is_taxon_recommendable: true
|
430
|
+
- name: Visualizing Ratios Lesson
|
431
|
+
subtype: atom
|
432
|
+
temp_id: Visualizing Ratios Lesson
|
433
|
+
type: module
|
434
|
+
is_taxon_recommendable: true
|
435
|
+
- name: Down to the Unit Rate Lesson
|
436
|
+
subtype: atom
|
437
|
+
temp_id: Down to the Unit Rate Lesson
|
438
|
+
type: module
|
439
|
+
is_taxon_recommendable: true
|
440
|
+
- name: Fraction Reciprocity (Reciprocals) Quiz Question 2
|
441
|
+
subtype: atom
|
442
|
+
temp_id: Fraction Reciprocity (Reciprocals) Quiz Question 2
|
443
|
+
type: module
|
444
|
+
is_taxon_recommendable: true
|
445
|
+
- name: Fraction Metamorphosis Quiz Question 2
|
446
|
+
subtype: atom
|
447
|
+
temp_id: Fraction Metamorphosis Quiz Question 2
|
448
|
+
type: module
|
449
|
+
is_taxon_recommendable: true
|
450
|
+
- name: Absolutely Positive? Quiz Question 2
|
451
|
+
subtype: atom
|
452
|
+
temp_id: Absolutely Positive? Quiz Question 2
|
453
|
+
type: module
|
454
|
+
is_taxon_recommendable: true
|
455
|
+
- name: Dividing Decimals Quiz Question 3
|
456
|
+
subtype: atom
|
457
|
+
temp_id: Dividing Decimals Quiz Question 3
|
458
|
+
type: module
|
459
|
+
is_taxon_recommendable: true
|
460
|
+
- name: Seats and Streets Quiz Question 1
|
461
|
+
subtype: atom
|
462
|
+
temp_id: Seats and Streets Quiz Question 1
|
463
|
+
type: module
|
464
|
+
is_taxon_recommendable: true
|
465
|
+
- name: "(Fraction) Addition and Subtraction Quiz Question 3"
|
466
|
+
subtype: atom
|
467
|
+
temp_id: "(Fraction) Addition and Subtraction Quiz Question 3"
|
468
|
+
type: module
|
469
|
+
is_taxon_recommendable: true
|
470
|
+
- name: "(Fraction) Addition and Subtraction Quiz Question 1"
|
471
|
+
subtype: atom
|
472
|
+
temp_id: "(Fraction) Addition and Subtraction Quiz Question 1"
|
473
|
+
type: module
|
474
|
+
is_taxon_recommendable: true
|
475
|
+
- name: Fraction Notation Quiz Question 2
|
476
|
+
subtype: atom
|
477
|
+
temp_id: Fraction Notation Quiz Question 2
|
478
|
+
type: module
|
479
|
+
is_taxon_recommendable: true
|
480
|
+
- name: Tuning Into Ratios Quiz Question 1
|
481
|
+
subtype: atom
|
482
|
+
temp_id: Tuning Into Ratios Quiz Question 1
|
483
|
+
type: module
|
484
|
+
is_taxon_recommendable: true
|
485
|
+
- name: Fraction Multiplication Quiz Question 2
|
486
|
+
subtype: atom
|
487
|
+
temp_id: Fraction Multiplication Quiz Question 2
|
488
|
+
type: module
|
489
|
+
is_taxon_recommendable: true
|
490
|
+
- name: Lesser of Two Evils Lesson
|
491
|
+
subtype: atom
|
492
|
+
temp_id: Lesser of Two Evils Lesson
|
493
|
+
type: module
|
494
|
+
is_taxon_recommendable: true
|
495
|
+
- name: Another Side of Addition Lesson
|
496
|
+
subtype: atom
|
497
|
+
temp_id: Another Side of Addition Lesson
|
498
|
+
type: module
|
499
|
+
is_taxon_recommendable: true
|
500
|
+
- name: Fraction Multiplication Quiz Question 3
|
501
|
+
subtype: atom
|
502
|
+
temp_id: Fraction Multiplication Quiz Question 3
|
503
|
+
type: module
|
504
|
+
is_taxon_recommendable: true
|
505
|
+
- name: Percentages and Precision Quiz Question 1
|
506
|
+
subtype: atom
|
507
|
+
temp_id: Percentages and Precision Quiz Question 1
|
508
|
+
type: module
|
509
|
+
is_taxon_recommendable: true
|
510
|
+
- name: Tools of Conversion Quiz Question 1
|
511
|
+
subtype: atom
|
512
|
+
temp_id: Tools of Conversion Quiz Question 1
|
513
|
+
type: module
|
514
|
+
is_taxon_recommendable: true
|
515
|
+
- name: Adding and Subtracting Decimals Quiz Question 1
|
516
|
+
subtype: atom
|
517
|
+
temp_id: Adding and Subtracting Decimals Quiz Question 1
|
518
|
+
type: module
|
519
|
+
is_taxon_recommendable: true
|
520
|
+
- name: Tuning Into Ratios Quiz Question 2
|
521
|
+
subtype: atom
|
522
|
+
temp_id: Tuning Into Ratios Quiz Question 2
|
523
|
+
type: module
|
524
|
+
is_taxon_recommendable: true
|
525
|
+
- name: Why Divide? Quiz Question 3
|
526
|
+
subtype: atom
|
527
|
+
temp_id: Why Divide? Quiz Question 3
|
528
|
+
type: module
|
529
|
+
is_taxon_recommendable: true
|
530
|
+
- name: Choosing Tools Quiz Question 1
|
531
|
+
subtype: atom
|
532
|
+
temp_id: Choosing Tools Quiz Question 1
|
533
|
+
type: module
|
534
|
+
is_taxon_recommendable: true
|
535
|
+
- name: Remain Calm Quiz Question 3
|
536
|
+
subtype: atom
|
537
|
+
temp_id: Remain Calm Quiz Question 3
|
538
|
+
type: module
|
539
|
+
is_taxon_recommendable: true
|
540
|
+
- name: Fraction Reciprocity (Reciprocals) Lesson
|
541
|
+
subtype: atom
|
542
|
+
temp_id: Fraction Reciprocity (Reciprocals) Lesson
|
543
|
+
type: module
|
544
|
+
is_taxon_recommendable: true
|
545
|
+
- name: Beyond Integers Quiz Question 1
|
546
|
+
subtype: atom
|
547
|
+
temp_id: Beyond Integers Quiz Question 1
|
548
|
+
type: module
|
549
|
+
is_taxon_recommendable: true
|
550
|
+
- name: Divide and Conquer Quiz Question
|
551
|
+
subtype: atom
|
552
|
+
temp_id: Divide and Conquer Quiz Question
|
553
|
+
type: module
|
554
|
+
is_taxon_recommendable: true
|
555
|
+
- name: Remain Calm Quiz Question 2
|
556
|
+
subtype: atom
|
557
|
+
temp_id: Remain Calm Quiz Question 2
|
558
|
+
type: module
|
559
|
+
is_taxon_recommendable: true
|
560
|
+
- name: Divvy 'Em Up Quiz Question 1
|
561
|
+
subtype: atom
|
562
|
+
temp_id: Divvy 'Em Up Quiz Question 1
|
563
|
+
type: module
|
564
|
+
is_taxon_recommendable: true
|
565
|
+
- name: Debt Division Lesson
|
566
|
+
subtype: atom
|
567
|
+
temp_id: Debt Division Lesson
|
568
|
+
type: module
|
569
|
+
is_taxon_recommendable: true
|
570
|
+
- name: Multiplying Decimals Quiz Question 1
|
571
|
+
subtype: atom
|
572
|
+
temp_id: Multiplying Decimals Quiz Question 1
|
573
|
+
type: module
|
574
|
+
is_taxon_recommendable: true
|
575
|
+
- name: Tuning Into Ratios Lesson
|
576
|
+
subtype: atom
|
577
|
+
temp_id: Tuning Into Ratios Lesson
|
578
|
+
type: module
|
579
|
+
is_taxon_recommendable: true
|
580
|
+
- name: Two-Way Problem Solving Quiz Question 2
|
581
|
+
subtype: atom
|
582
|
+
temp_id: Two-Way Problem Solving Quiz Question 2
|
583
|
+
type: module
|
584
|
+
is_taxon_recommendable: true
|
585
|
+
- name: Ratios in Action Quiz Question 3
|
586
|
+
subtype: atom
|
587
|
+
temp_id: Ratios in Action Quiz Question 3
|
588
|
+
type: module
|
589
|
+
is_taxon_recommendable: true
|
590
|
+
- name: Going Below Zero Quiz Question 1
|
591
|
+
subtype: atom
|
592
|
+
temp_id: Going Below Zero Quiz Question 1
|
593
|
+
type: module
|
594
|
+
is_taxon_recommendable: true
|
595
|
+
- name: Visualizing Ratios Quiz Question 2
|
596
|
+
subtype: atom
|
597
|
+
temp_id: Visualizing Ratios Quiz Question 2
|
598
|
+
type: module
|
599
|
+
is_taxon_recommendable: true
|
600
|
+
- name: Rules of A-Fraction Quiz Question 1
|
601
|
+
subtype: atom
|
602
|
+
temp_id: Rules of A-Fraction Quiz Question 1
|
603
|
+
type: module
|
604
|
+
is_taxon_recommendable: true
|
605
|
+
- name: Zero Sum Lesson
|
606
|
+
subtype: atom
|
607
|
+
temp_id: Zero Sum Lesson
|
608
|
+
type: module
|
609
|
+
is_taxon_recommendable: true
|
610
|
+
- name: Proper Use of Properties Quiz Question 2
|
611
|
+
subtype: atom
|
612
|
+
temp_id: Proper Use of Properties Quiz Question 2
|
613
|
+
type: module
|
614
|
+
is_taxon_recommendable: true
|
615
|
+
- name: Melting and Freezing Lesson
|
616
|
+
subtype: atom
|
617
|
+
temp_id: Melting and Freezing Lesson
|
618
|
+
type: module
|
619
|
+
is_taxon_recommendable: true
|
620
|
+
- name: Divide and Conquer Quiz Question
|
621
|
+
subtype: atom
|
622
|
+
temp_id: Divide and Conquer Quiz Question
|
623
|
+
type: module
|
624
|
+
is_taxon_recommendable: true
|
625
|
+
- name: Tuning Into Ratios Quiz Question 3
|
626
|
+
subtype: atom
|
627
|
+
temp_id: Tuning Into Ratios Quiz Question 3
|
628
|
+
type: module
|
629
|
+
is_taxon_recommendable: true
|
630
|
+
- name: Debt Division Quiz Question 1
|
631
|
+
subtype: atom
|
632
|
+
temp_id: Debt Division Quiz Question 1
|
633
|
+
type: module
|
634
|
+
is_taxon_recommendable: true
|
635
|
+
- name: Fraction Notation Lesson
|
636
|
+
subtype: atom
|
637
|
+
temp_id: Fraction Notation Lesson
|
638
|
+
type: module
|
639
|
+
is_taxon_recommendable: true
|
640
|
+
- name: Lesser of Two Evils Quiz Question 2
|
641
|
+
subtype: atom
|
642
|
+
temp_id: Lesser of Two Evils Quiz Question 2
|
643
|
+
type: module
|
644
|
+
is_taxon_recommendable: true
|
645
|
+
- name: Putting it all Together Quiz Question 3
|
646
|
+
subtype: atom
|
647
|
+
temp_id: Putting it all Together Quiz Question 3
|
648
|
+
type: module
|
649
|
+
is_taxon_recommendable: true
|
650
|
+
- name: Seats and Streets Quiz Question 2
|
651
|
+
subtype: atom
|
652
|
+
temp_id: Seats and Streets Quiz Question 2
|
653
|
+
type: module
|
654
|
+
is_taxon_recommendable: true
|
655
|
+
- name: Beyond Integers Quiz Question 2
|
656
|
+
subtype: atom
|
657
|
+
temp_id: Beyond Integers Quiz Question 2
|
658
|
+
type: module
|
659
|
+
is_taxon_recommendable: true
|
660
|
+
- name: Going Down the Line Quiz Question 3
|
661
|
+
subtype: atom
|
662
|
+
temp_id: Going Down the Line Quiz Question 3
|
663
|
+
type: module
|
664
|
+
is_taxon_recommendable: true
|
665
|
+
- name: Choosing Tools Lesson
|
666
|
+
subtype: atom
|
667
|
+
temp_id: Choosing Tools Lesson
|
668
|
+
type: module
|
669
|
+
is_taxon_recommendable: true
|
670
|
+
- name: Putting it all Together Quiz Question 2
|
671
|
+
subtype: atom
|
672
|
+
temp_id: Putting it all Together Quiz Question 2
|
673
|
+
type: module
|
674
|
+
is_taxon_recommendable: true
|
675
|
+
- name: Zero Sum Quiz Question 3
|
676
|
+
subtype: atom
|
677
|
+
temp_id: Zero Sum Quiz Question 3
|
678
|
+
type: module
|
679
|
+
is_taxon_recommendable: true
|
680
|
+
- name: The Power of One Quiz Question 3
|
681
|
+
subtype: atom
|
682
|
+
temp_id: The Power of One Quiz Question 3
|
683
|
+
type: module
|
684
|
+
is_taxon_recommendable: true
|
685
|
+
- name: Adding and Subtracting Decimals Quiz Question 3
|
686
|
+
subtype: atom
|
687
|
+
temp_id: Adding and Subtracting Decimals Quiz Question 3
|
688
|
+
type: module
|
689
|
+
is_taxon_recommendable: true
|
690
|
+
- name: Checkpoints Lesson
|
691
|
+
subtype: atom
|
692
|
+
temp_id: Checkpoints Lesson
|
693
|
+
type: module
|
694
|
+
is_taxon_recommendable: true
|
695
|
+
- name: Beyond Integers Lesson
|
696
|
+
subtype: atom
|
697
|
+
temp_id: Beyond Integers Lesson
|
698
|
+
type: module
|
699
|
+
is_taxon_recommendable: true
|
700
|
+
- name: Putting it all Together Quiz Question 1
|
701
|
+
subtype: atom
|
702
|
+
temp_id: Putting it all Together Quiz Question 1
|
703
|
+
type: module
|
704
|
+
is_taxon_recommendable: true
|
705
|
+
- name: Another Side of Addition Quiz Question 2
|
706
|
+
subtype: atom
|
707
|
+
temp_id: Another Side of Addition Quiz Question 2
|
708
|
+
type: module
|
709
|
+
is_taxon_recommendable: true
|
710
|
+
- name: Putting it all Together Lesson
|
711
|
+
subtype: atom
|
712
|
+
temp_id: Putting it all Together Lesson
|
713
|
+
type: module
|
714
|
+
is_taxon_recommendable: true
|
715
|
+
- name: Debt Division Quiz Question 2
|
716
|
+
subtype: atom
|
717
|
+
temp_id: Debt Division Quiz Question 2
|
718
|
+
type: module
|
719
|
+
is_taxon_recommendable: true
|
720
|
+
- name: Zero Sum Quiz Question 2
|
721
|
+
subtype: atom
|
722
|
+
temp_id: Zero Sum Quiz Question 2
|
723
|
+
type: module
|
724
|
+
is_taxon_recommendable: true
|
725
|
+
- name: Melting and Freezing Quiz Question 2
|
726
|
+
subtype: atom
|
727
|
+
temp_id: Melting and Freezing Quiz Question 2
|
728
|
+
type: module
|
729
|
+
is_taxon_recommendable: true
|
730
|
+
- name: Checkpoints Quiz Question 2
|
731
|
+
subtype: atom
|
732
|
+
temp_id: Checkpoints Quiz Question 2
|
733
|
+
type: module
|
734
|
+
is_taxon_recommendable: true
|
735
|
+
- name: Absolutely Positive? Quiz Question 3
|
736
|
+
subtype: atom
|
737
|
+
temp_id: Absolutely Positive? Quiz Question 3
|
738
|
+
type: module
|
739
|
+
is_taxon_recommendable: true
|
740
|
+
- name: The Power of One Quiz Question 2
|
741
|
+
subtype: atom
|
742
|
+
temp_id: The Power of One Quiz Question 2
|
743
|
+
type: module
|
744
|
+
is_taxon_recommendable: true
|
745
|
+
- name: Going Below Zero Quiz Question 3
|
746
|
+
subtype: atom
|
747
|
+
temp_id: Going Below Zero Quiz Question 3
|
748
|
+
type: module
|
749
|
+
is_taxon_recommendable: true
|
750
|
+
- name: Melting and Freezing Quiz Question 3
|
751
|
+
subtype: atom
|
752
|
+
temp_id: Melting and Freezing Quiz Question 3
|
753
|
+
type: module
|
754
|
+
is_taxon_recommendable: true
|
755
|
+
- name: Seats and Streets Quiz Question 3
|
756
|
+
subtype: atom
|
757
|
+
temp_id: Seats and Streets Quiz Question 3
|
758
|
+
type: module
|
759
|
+
is_taxon_recommendable: true
|
760
|
+
- name: Checkpoints Quiz Question 1
|
761
|
+
subtype: atom
|
762
|
+
temp_id: Checkpoints Quiz Question 1
|
763
|
+
type: module
|
764
|
+
is_taxon_recommendable: true
|
765
|
+
- name: Checkpoints Quiz Question 3
|
766
|
+
subtype: atom
|
767
|
+
temp_id: Checkpoints Quiz Question 3
|
768
|
+
type: module
|
769
|
+
is_taxon_recommendable: true
|
770
|
+
- name: Lesser of Two Evils Quiz Question 1
|
771
|
+
subtype: atom
|
772
|
+
temp_id: Lesser of Two Evils Quiz Question 1
|
773
|
+
type: module
|
774
|
+
is_taxon_recommendable: true
|
775
|
+
- name: Debt Doubling Lesson
|
776
|
+
subtype: atom
|
777
|
+
temp_id: Debt Doubling Lesson
|
778
|
+
type: module
|
779
|
+
is_taxon_recommendable: true
|
780
|
+
- name: Percentages and Precision Lesson
|
781
|
+
subtype: atom
|
782
|
+
temp_id: Percentages and Precision Lesson
|
783
|
+
type: module
|
784
|
+
is_taxon_recommendable: true
|
785
|
+
- name: Multiplying Decimals Quiz
|
786
|
+
subtype: bndl
|
787
|
+
temp_id: Multiplying Decimals Quiz
|
788
|
+
type: module
|
789
|
+
is_taxon_recommendable: true
|
790
|
+
- name: Going Down the Line Quiz
|
791
|
+
subtype: bndl
|
792
|
+
temp_id: Going Down the Line Quiz
|
793
|
+
type: module
|
794
|
+
is_taxon_recommendable: true
|
795
|
+
- name: Lesser of Two Evils Quiz
|
796
|
+
subtype: bndl
|
797
|
+
temp_id: Lesser of Two Evils Quiz
|
798
|
+
type: module
|
799
|
+
is_taxon_recommendable: true
|
800
|
+
- name: Seats and Streets Quiz
|
801
|
+
subtype: bndl
|
802
|
+
temp_id: Seats and Streets Quiz
|
803
|
+
type: module
|
804
|
+
is_taxon_recommendable: true
|
805
|
+
- name: Debt Doubling Quiz
|
806
|
+
subtype: bndl
|
807
|
+
temp_id: Debt Doubling Quiz
|
808
|
+
type: module
|
809
|
+
is_taxon_recommendable: true
|
810
|
+
- name: Part, Percent, and Whole Quiz
|
811
|
+
subtype: bndl
|
812
|
+
temp_id: Part, Percent, and Whole Quiz
|
813
|
+
type: module
|
814
|
+
is_taxon_recommendable: true
|
815
|
+
- name: Putting it all Together Quiz
|
816
|
+
subtype: bndl
|
817
|
+
temp_id: Putting it all Together Quiz
|
818
|
+
type: module
|
819
|
+
is_taxon_recommendable: true
|
820
|
+
- name: Beyond Integers Quiz
|
821
|
+
subtype: bndl
|
822
|
+
temp_id: Beyond Integers Quiz
|
823
|
+
type: module
|
824
|
+
is_taxon_recommendable: true
|
825
|
+
- name: Fraction Multiplication Quiz
|
826
|
+
subtype: bndl
|
827
|
+
temp_id: Fraction Multiplication Quiz
|
828
|
+
type: module
|
829
|
+
is_taxon_recommendable: true
|
830
|
+
- name: The Power of One Quiz
|
831
|
+
subtype: bndl
|
832
|
+
temp_id: The Power of One Quiz
|
833
|
+
type: module
|
834
|
+
is_taxon_recommendable: true
|
835
|
+
- name: Down to the Unit Rate Quiz
|
836
|
+
subtype: bndl
|
837
|
+
temp_id: Down to the Unit Rate Quiz
|
838
|
+
type: module
|
839
|
+
is_taxon_recommendable: true
|
840
|
+
- name: Fraction Reciprocity (Reciprocals) Quiz
|
841
|
+
subtype: bndl
|
842
|
+
temp_id: Fraction Reciprocity (Reciprocals) Quiz
|
843
|
+
type: module
|
844
|
+
is_taxon_recommendable: true
|
845
|
+
- name: Visualizing Ratios Quiz
|
846
|
+
subtype: bndl
|
847
|
+
temp_id: Visualizing Ratios Quiz
|
848
|
+
type: module
|
849
|
+
is_taxon_recommendable: true
|
850
|
+
- name: Double Trouble Quiz
|
851
|
+
subtype: bndl
|
852
|
+
temp_id: Double Trouble Quiz
|
853
|
+
type: module
|
854
|
+
is_taxon_recommendable: true
|
855
|
+
- name: Debt Division Quiz
|
856
|
+
subtype: bndl
|
857
|
+
temp_id: Debt Division Quiz
|
858
|
+
type: module
|
859
|
+
is_taxon_recommendable: true
|
860
|
+
- name: Opposites Reflect Quiz
|
861
|
+
subtype: bndl
|
862
|
+
temp_id: Opposites Reflect Quiz
|
863
|
+
type: module
|
864
|
+
is_taxon_recommendable: true
|
865
|
+
- name: Melting and Freezing Quiz
|
866
|
+
subtype: bndl
|
867
|
+
temp_id: Melting and Freezing Quiz
|
868
|
+
type: module
|
869
|
+
is_taxon_recommendable: true
|
870
|
+
- name: Adding and Subtracting Decimals Quiz
|
871
|
+
subtype: bndl
|
872
|
+
temp_id: Adding and Subtracting Decimals Quiz
|
873
|
+
type: module
|
874
|
+
is_taxon_recommendable: true
|
875
|
+
- name: Choosing Tools Quiz
|
876
|
+
subtype: bndl
|
877
|
+
temp_id: Choosing Tools Quiz
|
878
|
+
type: module
|
879
|
+
is_taxon_recommendable: true
|
880
|
+
- name: Why Divide? Quiz
|
881
|
+
subtype: bndl
|
882
|
+
temp_id: Why Divide? Quiz
|
883
|
+
type: module
|
884
|
+
is_taxon_recommendable: true
|
885
|
+
- name: Going Below Zero Quiz
|
886
|
+
subtype: bndl
|
887
|
+
temp_id: Going Below Zero Quiz
|
888
|
+
type: module
|
889
|
+
is_taxon_recommendable: true
|
890
|
+
- name: Fraction Notation Quiz
|
891
|
+
subtype: bndl
|
892
|
+
temp_id: Fraction Notation Quiz
|
893
|
+
type: module
|
894
|
+
is_taxon_recommendable: true
|
895
|
+
- name: Remain Calm Quiz
|
896
|
+
subtype: bndl
|
897
|
+
temp_id: Remain Calm Quiz
|
898
|
+
type: module
|
899
|
+
is_taxon_recommendable: true
|
900
|
+
- name: Two-Way Problem Solving Quiz
|
901
|
+
subtype: bndl
|
902
|
+
temp_id: Two-Way Problem Solving Quiz
|
903
|
+
type: module
|
904
|
+
is_taxon_recommendable: true
|
905
|
+
- name: Dividing Decimals Quiz
|
906
|
+
subtype: bndl
|
907
|
+
temp_id: Dividing Decimals Quiz
|
908
|
+
type: module
|
909
|
+
is_taxon_recommendable: true
|
910
|
+
- name: Divvy 'Em Up Quiz
|
911
|
+
subtype: bndl
|
912
|
+
temp_id: Divvy 'Em Up Quiz
|
913
|
+
type: module
|
914
|
+
is_taxon_recommendable: true
|
915
|
+
- name: Tuning Into Ratios Quiz
|
916
|
+
subtype: bndl
|
917
|
+
temp_id: Tuning Into Ratios Quiz
|
918
|
+
type: module
|
919
|
+
is_taxon_recommendable: true
|
920
|
+
- name: Checkpoints Quiz
|
921
|
+
subtype: bndl
|
922
|
+
temp_id: Checkpoints Quiz
|
923
|
+
type: module
|
924
|
+
is_taxon_recommendable: true
|
925
|
+
- name: Zero Sum Quiz
|
926
|
+
subtype: bndl
|
927
|
+
temp_id: Zero Sum Quiz
|
928
|
+
type: module
|
929
|
+
is_taxon_recommendable: true
|
930
|
+
- name: Percentages and Precision Quiz
|
931
|
+
subtype: bndl
|
932
|
+
temp_id: Percentages and Precision Quiz
|
933
|
+
type: module
|
934
|
+
is_taxon_recommendable: true
|
935
|
+
- name: Proper Use of Properties Quiz
|
936
|
+
subtype: bndl
|
937
|
+
temp_id: Proper Use of Properties Quiz
|
938
|
+
type: module
|
939
|
+
is_taxon_recommendable: true
|
940
|
+
- name: Tools of Conversion Quiz
|
941
|
+
subtype: bndl
|
942
|
+
temp_id: Tools of Conversion Quiz
|
943
|
+
type: module
|
944
|
+
is_taxon_recommendable: true
|
945
|
+
- name: Another Side of Addition Quiz
|
946
|
+
subtype: bndl
|
947
|
+
temp_id: Another Side of Addition Quiz
|
948
|
+
type: module
|
949
|
+
is_taxon_recommendable: true
|
950
|
+
- name: Absolutely Positive? Quiz
|
951
|
+
subtype: bndl
|
952
|
+
temp_id: Absolutely Positive? Quiz
|
953
|
+
type: module
|
954
|
+
is_taxon_recommendable: true
|
955
|
+
- name: Rules of A-Fraction Quiz
|
956
|
+
subtype: bndl
|
957
|
+
temp_id: Rules of A-Fraction Quiz
|
958
|
+
type: module
|
959
|
+
is_taxon_recommendable: true
|
960
|
+
- name: Fraction Metamorphosis Quiz
|
961
|
+
subtype: bndl
|
962
|
+
temp_id: Fraction Metamorphosis Quiz
|
963
|
+
type: module
|
964
|
+
is_taxon_recommendable: true
|
965
|
+
- name: Divide and Conquer Quiz
|
966
|
+
subtype: bndl
|
967
|
+
temp_id: Divide and Conquer Quiz
|
968
|
+
type: module
|
969
|
+
is_taxon_recommendable: true
|
970
|
+
- name: "(Fraction) Addition and Subtraction Quiz"
|
971
|
+
subtype: bndl
|
972
|
+
temp_id: "(Fraction) Addition and Subtraction Quiz"
|
973
|
+
type: module
|
974
|
+
is_taxon_recommendable: true
|
975
|
+
- name: Ratios in Action Quiz
|
976
|
+
subtype: bndl
|
977
|
+
temp_id: Ratios in Action Quiz
|
978
|
+
type: module
|
979
|
+
is_taxon_recommendable: true
|
980
|
+
- name: Incorporate the commutative and associative properties of addition with
|
981
|
+
additive inverses.
|
982
|
+
temp_id: '7.3'
|
983
|
+
type: concept
|
984
|
+
- name: Understand the addition and subtraction of fractions, including finding
|
985
|
+
a common denominator.
|
986
|
+
temp_id: '1.3'
|
987
|
+
type: concept
|
988
|
+
- name: Solve more complex problems with percentages.
|
989
|
+
temp_id: '12.3'
|
990
|
+
type: concept
|
991
|
+
- name: Be able to divide fractions by other fractions.
|
992
|
+
temp_id: '2.3'
|
993
|
+
type: concept
|
994
|
+
- name: Apply the concept of the x-y plane to solve problems with negative numbers.
|
995
|
+
temp_id: '5.3'
|
996
|
+
type: concept
|
997
|
+
- name: Compare absolute values.
|
998
|
+
temp_id: '6.3'
|
999
|
+
type: concept
|
1000
|
+
- name: Use ratios and the unit rate to convert between units.
|
1001
|
+
temp_id: '11.4'
|
1002
|
+
type: concept
|
1003
|
+
- name: Understand negatives as opposites, including on the x-y plane.
|
1004
|
+
temp_id: '5.2'
|
1005
|
+
type: concept
|
1006
|
+
- name: Use percentages, decimals, and fractions to solve problems.
|
1007
|
+
temp_id: '12.2'
|
1008
|
+
type: concept
|
1009
|
+
- name: Be able to solve problems using all operations on decimals plus multiplying
|
1010
|
+
fractions.
|
1011
|
+
temp_id: '9.1'
|
1012
|
+
type: concept
|
1013
|
+
- name: Be able to multiply decimals
|
1014
|
+
temp_id: '4.2'
|
1015
|
+
type: concept
|
1016
|
+
- name: Understand ratios and their relationship to fractions.
|
1017
|
+
temp_id: '10.1'
|
1018
|
+
type: concept
|
1019
|
+
- name: Apply dividing fractions by multiplying by its reciprocal
|
1020
|
+
temp_id: '2.2'
|
1021
|
+
type: concept
|
1022
|
+
- name: Be able to multiply fractions.
|
1023
|
+
temp_id: '1.2'
|
1024
|
+
type: concept
|
1025
|
+
- name: Be able to divide using negative fractions.
|
1026
|
+
temp_id: '8.2'
|
1027
|
+
type: concept
|
1028
|
+
- name: Understand fraction notation.
|
1029
|
+
temp_id: '1.1'
|
1030
|
+
type: concept
|
1031
|
+
- name: Perform long division using numbers that divide evenly.
|
1032
|
+
temp_id: '3.1'
|
1033
|
+
type: concept
|
1034
|
+
- name: Recognize that opposites are additive inverses, and apply.
|
1035
|
+
temp_id: '7.1'
|
1036
|
+
type: concept
|
1037
|
+
- name: Use ratios to solve problems.
|
1038
|
+
temp_id: '10.2'
|
1039
|
+
type: concept
|
1040
|
+
- name: Understand and use the unit rate as a ratio and fraction.
|
1041
|
+
temp_id: '10.3'
|
1042
|
+
type: concept
|
1043
|
+
- name: Solve complex problems with multiplying and dividing negative fractions.
|
1044
|
+
temp_id: '8.3'
|
1045
|
+
type: concept
|
1046
|
+
- name: Perform long division with decimal places in either the dividend or the
|
1047
|
+
quotient, or both.
|
1048
|
+
temp_id: '3.3'
|
1049
|
+
type: concept
|
1050
|
+
- name: Be able to order positive and negative numbers in simple problems.
|
1051
|
+
temp_id: '6.1'
|
1052
|
+
type: concept
|
1053
|
+
- name: Solve problems by multiplying negative fractions
|
1054
|
+
temp_id: '8.1'
|
1055
|
+
type: concept
|
1056
|
+
- name: Apply another use of additive inverses.
|
1057
|
+
temp_id: '7.2'
|
1058
|
+
type: concept
|
1059
|
+
- name: Perform long division using decimal places in the quotient.
|
1060
|
+
temp_id: '3.2'
|
1061
|
+
type: concept
|
1062
|
+
- name: Understand negative numbers.
|
1063
|
+
temp_id: '5.1'
|
1064
|
+
type: concept
|
1065
|
+
- name: Be able to visualize ratios using tables or graphs.
|
1066
|
+
temp_id: '11.1'
|
1067
|
+
type: concept
|
1068
|
+
- name: Apply all operations on decimals and fractions to word problems and situations.
|
1069
|
+
temp_id: '9.3'
|
1070
|
+
type: concept
|
1071
|
+
- name: Convert fractions to decimals using division.
|
1072
|
+
temp_id: '8.4'
|
1073
|
+
type: concept
|
1074
|
+
- name: Visualize the unit rate in real-world situations and understand equivalent
|
1075
|
+
ratios.
|
1076
|
+
temp_id: '11.2'
|
1077
|
+
type: concept
|
1078
|
+
- name: Convert percentages to decimals and fractions.
|
1079
|
+
temp_id: '12.1'
|
1080
|
+
type: concept
|
1081
|
+
- name: Dividing by a fraction is the same as multiplying by its reciprocal.
|
1082
|
+
temp_id: '2.1'
|
1083
|
+
type: concept
|
1084
|
+
- name: Be able to add and subtract decimals
|
1085
|
+
temp_id: '4.1'
|
1086
|
+
type: concept
|
1087
|
+
- name: Solve more complicated word problems by using the proper techniques with
|
1088
|
+
all operations on decimals and fractions.
|
1089
|
+
temp_id: '9.4'
|
1090
|
+
type: concept
|
1091
|
+
- name: Be able to order positive and negative numbers in more complex problems.
|
1092
|
+
temp_id: '6.2'
|
1093
|
+
type: concept
|
1094
|
+
- name: Be able to divide decimals
|
1095
|
+
temp_id: '4.3'
|
1096
|
+
type: concept
|
1097
|
+
- name: Solve problems with operations on decimals including division with negative
|
1098
|
+
fractions.
|
1099
|
+
temp_id: '9.2'
|
1100
|
+
type: concept
|
1101
|
+
- name: Understand percentages and ratios/the unit rate.
|
1102
|
+
temp_id: '11.3'
|
1103
|
+
type: concept
|
1104
|
+
edges:
|
1105
|
+
- temp_id: 9.1->Beyond Integers Quiz Question 2
|
1106
|
+
type: assessed_by
|
1107
|
+
start_temp_id: '9.1'
|
1108
|
+
end_temp_id: Beyond Integers Quiz Question 2
|
1109
|
+
- temp_id: 9.1->Beyond Integers Quiz Question 3
|
1110
|
+
type: assessed_by
|
1111
|
+
start_temp_id: '9.1'
|
1112
|
+
end_temp_id: Beyond Integers Quiz Question 3
|
1113
|
+
- temp_id: 9.1->Beyond Integers Quiz Question 1
|
1114
|
+
type: assessed_by
|
1115
|
+
start_temp_id: '9.1'
|
1116
|
+
end_temp_id: Beyond Integers Quiz Question 1
|
1117
|
+
- temp_id: 6.2->Lesser of Two Evils Quiz Question 3
|
1118
|
+
type: assessed_by
|
1119
|
+
start_temp_id: '6.2'
|
1120
|
+
end_temp_id: Lesser of Two Evils Quiz Question 3
|
1121
|
+
- temp_id: 6.2->Lesser of Two Evils Quiz Question 1
|
1122
|
+
type: assessed_by
|
1123
|
+
start_temp_id: '6.2'
|
1124
|
+
end_temp_id: Lesser of Two Evils Quiz Question 1
|
1125
|
+
- temp_id: 6.2->Lesser of Two Evils Quiz Question 2
|
1126
|
+
type: assessed_by
|
1127
|
+
start_temp_id: '6.2'
|
1128
|
+
end_temp_id: Lesser of Two Evils Quiz Question 2
|
1129
|
+
- temp_id: 10.1->Tuning Into Ratios Quiz Question 1
|
1130
|
+
type: assessed_by
|
1131
|
+
start_temp_id: '10.1'
|
1132
|
+
end_temp_id: Tuning Into Ratios Quiz Question 1
|
1133
|
+
- temp_id: 10.1->Tuning Into Ratios Quiz Question 3
|
1134
|
+
type: assessed_by
|
1135
|
+
start_temp_id: '10.1'
|
1136
|
+
end_temp_id: Tuning Into Ratios Quiz Question 3
|
1137
|
+
- temp_id: 10.1->Tuning Into Ratios Quiz Question 2
|
1138
|
+
type: assessed_by
|
1139
|
+
start_temp_id: '10.1'
|
1140
|
+
end_temp_id: Tuning Into Ratios Quiz Question 2
|
1141
|
+
- temp_id: 12.2->Part, Percent, and Whole Quiz Question 3
|
1142
|
+
type: assessed_by
|
1143
|
+
start_temp_id: '12.2'
|
1144
|
+
end_temp_id: Part, Percent, and Whole Quiz Question 3
|
1145
|
+
- temp_id: 12.2->Part, Percent, and Whole Quiz Question 2
|
1146
|
+
type: assessed_by
|
1147
|
+
start_temp_id: '12.2'
|
1148
|
+
end_temp_id: Part, Percent, and Whole Quiz Question 2
|
1149
|
+
- temp_id: 12.2->Part, Percent, and Whole Quiz Question 1
|
1150
|
+
type: assessed_by
|
1151
|
+
start_temp_id: '12.2'
|
1152
|
+
end_temp_id: Part, Percent, and Whole Quiz Question 1
|
1153
|
+
- temp_id: 11.4->Tools of Conversion Lesson
|
1154
|
+
type: taught_by
|
1155
|
+
start_temp_id: '11.4'
|
1156
|
+
end_temp_id: Tools of Conversion Lesson
|
1157
|
+
- temp_id: 11.1->Visualizing Ratios Lesson
|
1158
|
+
type: taught_by
|
1159
|
+
start_temp_id: '11.1'
|
1160
|
+
end_temp_id: Visualizing Ratios Lesson
|
1161
|
+
- temp_id: 11.2->The Power of One Quiz Question 2
|
1162
|
+
type: assessed_by
|
1163
|
+
start_temp_id: '11.2'
|
1164
|
+
end_temp_id: The Power of One Quiz Question 2
|
1165
|
+
- temp_id: 11.2->The Power of One Quiz Question 1
|
1166
|
+
type: assessed_by
|
1167
|
+
start_temp_id: '11.2'
|
1168
|
+
end_temp_id: The Power of One Quiz Question 1
|
1169
|
+
- temp_id: 11.2->The Power of One Quiz Question 3
|
1170
|
+
type: assessed_by
|
1171
|
+
start_temp_id: '11.2'
|
1172
|
+
end_temp_id: The Power of One Quiz Question 3
|
1173
|
+
- temp_id: 5.2->Opposites Reflect Lesson
|
1174
|
+
type: taught_by
|
1175
|
+
start_temp_id: '5.2'
|
1176
|
+
end_temp_id: Opposites Reflect Lesson
|
1177
|
+
- temp_id: 5.1->Going Below Zero Lesson
|
1178
|
+
type: taught_by
|
1179
|
+
start_temp_id: '5.1'
|
1180
|
+
end_temp_id: Going Below Zero Lesson
|
1181
|
+
- temp_id: 7.2->Another Side of Addition Quiz Question 2
|
1182
|
+
type: assessed_by
|
1183
|
+
start_temp_id: '7.2'
|
1184
|
+
end_temp_id: Another Side of Addition Quiz Question 2
|
1185
|
+
- temp_id: 7.2->Another Side of Addition Quiz Question 1
|
1186
|
+
type: assessed_by
|
1187
|
+
start_temp_id: '7.2'
|
1188
|
+
end_temp_id: Another Side of Addition Quiz Question 1
|
1189
|
+
- temp_id: 7.2->Another Side of Addition Quiz Question 3
|
1190
|
+
type: assessed_by
|
1191
|
+
start_temp_id: '7.2'
|
1192
|
+
end_temp_id: Another Side of Addition Quiz Question 3
|
1193
|
+
- temp_id: 3.3->Double Trouble Quiz Question 3
|
1194
|
+
type: assessed_by
|
1195
|
+
start_temp_id: '3.3'
|
1196
|
+
end_temp_id: Double Trouble Quiz Question 3
|
1197
|
+
- temp_id: 3.3->Double Trouble Quiz Question 2
|
1198
|
+
type: assessed_by
|
1199
|
+
start_temp_id: '3.3'
|
1200
|
+
end_temp_id: Double Trouble Quiz Question 2
|
1201
|
+
- temp_id: 3.3->Double Trouble Quiz Question 1
|
1202
|
+
type: assessed_by
|
1203
|
+
start_temp_id: '3.3'
|
1204
|
+
end_temp_id: Double Trouble Quiz Question 1
|
1205
|
+
- temp_id: 9.3->Choosing Tools Lesson
|
1206
|
+
type: taught_by
|
1207
|
+
start_temp_id: '9.3'
|
1208
|
+
end_temp_id: Choosing Tools Lesson
|
1209
|
+
- temp_id: 5.1->Going Below Zero Quiz Question 1
|
1210
|
+
type: assessed_by
|
1211
|
+
start_temp_id: '5.1'
|
1212
|
+
end_temp_id: Going Below Zero Quiz Question 1
|
1213
|
+
- temp_id: 5.1->Going Below Zero Quiz Question 3
|
1214
|
+
type: assessed_by
|
1215
|
+
start_temp_id: '5.1'
|
1216
|
+
end_temp_id: Going Below Zero Quiz Question 3
|
1217
|
+
- temp_id: 5.1->Going Below Zero Quiz Question 2
|
1218
|
+
type: assessed_by
|
1219
|
+
start_temp_id: '5.1'
|
1220
|
+
end_temp_id: Going Below Zero Quiz Question 2
|
1221
|
+
- temp_id: 6.1->Going Down the Line Quiz Question 2
|
1222
|
+
type: assessed_by
|
1223
|
+
start_temp_id: '6.1'
|
1224
|
+
end_temp_id: Going Down the Line Quiz Question 2
|
1225
|
+
- temp_id: 6.1->Going Down the Line Quiz Question 1
|
1226
|
+
type: assessed_by
|
1227
|
+
start_temp_id: '6.1'
|
1228
|
+
end_temp_id: Going Down the Line Quiz Question 1
|
1229
|
+
- temp_id: 6.1->Going Down the Line Quiz Question 3
|
1230
|
+
type: assessed_by
|
1231
|
+
start_temp_id: '6.1'
|
1232
|
+
end_temp_id: Going Down the Line Quiz Question 3
|
1233
|
+
- temp_id: 7.2->Another Side of Addition Lesson
|
1234
|
+
type: taught_by
|
1235
|
+
start_temp_id: '7.2'
|
1236
|
+
end_temp_id: Another Side of Addition Lesson
|
1237
|
+
- temp_id: 8.4->Fraction Metamorphosis Lesson
|
1238
|
+
type: taught_by
|
1239
|
+
start_temp_id: '8.4'
|
1240
|
+
end_temp_id: Fraction Metamorphosis Lesson
|
1241
|
+
- temp_id: 5.3->Seats and Streets Quiz Question 2
|
1242
|
+
type: assessed_by
|
1243
|
+
start_temp_id: '5.3'
|
1244
|
+
end_temp_id: Seats and Streets Quiz Question 2
|
1245
|
+
- temp_id: 5.3->Seats and Streets Quiz Question 3
|
1246
|
+
type: assessed_by
|
1247
|
+
start_temp_id: '5.3'
|
1248
|
+
end_temp_id: Seats and Streets Quiz Question 3
|
1249
|
+
- temp_id: 5.3->Seats and Streets Quiz Question 1
|
1250
|
+
type: assessed_by
|
1251
|
+
start_temp_id: '5.3'
|
1252
|
+
end_temp_id: Seats and Streets Quiz Question 1
|
1253
|
+
- temp_id: 8.1->Debt Doubling Lesson
|
1254
|
+
type: taught_by
|
1255
|
+
start_temp_id: '8.1'
|
1256
|
+
end_temp_id: Debt Doubling Lesson
|
1257
|
+
- temp_id: 12.1->Melting and Freezing Lesson
|
1258
|
+
type: taught_by
|
1259
|
+
start_temp_id: '12.1'
|
1260
|
+
end_temp_id: Melting and Freezing Lesson
|
1261
|
+
- temp_id: 6.2->Lesser of Two Evils Lesson
|
1262
|
+
type: taught_by
|
1263
|
+
start_temp_id: '6.2'
|
1264
|
+
end_temp_id: Lesser of Two Evils Lesson
|
1265
|
+
- temp_id: 10.3->Down to the Unit Rate Lesson
|
1266
|
+
type: taught_by
|
1267
|
+
start_temp_id: '10.3'
|
1268
|
+
end_temp_id: Down to the Unit Rate Lesson
|
1269
|
+
- temp_id: 10.3->Down to the Unit Rate Quiz Question 3
|
1270
|
+
type: assessed_by
|
1271
|
+
start_temp_id: '10.3'
|
1272
|
+
end_temp_id: Down to the Unit Rate Quiz Question 3
|
1273
|
+
- temp_id: 10.3->Down to the Unit Rate Quiz Question 2
|
1274
|
+
type: assessed_by
|
1275
|
+
start_temp_id: '10.3'
|
1276
|
+
end_temp_id: Down to the Unit Rate Quiz Question 2
|
1277
|
+
- temp_id: 10.3->Down to the Unit Rate Quiz Question 1
|
1278
|
+
type: assessed_by
|
1279
|
+
start_temp_id: '10.3'
|
1280
|
+
end_temp_id: Down to the Unit Rate Quiz Question 1
|
1281
|
+
- temp_id: 7.3->Proper Use of Properties Lesson
|
1282
|
+
type: taught_by
|
1283
|
+
start_temp_id: '7.3'
|
1284
|
+
end_temp_id: Proper Use of Properties Lesson
|
1285
|
+
- temp_id: 12.2->Part, Percent, and Whole Lesson
|
1286
|
+
type: taught_by
|
1287
|
+
start_temp_id: '12.2'
|
1288
|
+
end_temp_id: Part, Percent, and Whole Lesson
|
1289
|
+
- temp_id: 3.2->Remain Calm Quiz Question 2
|
1290
|
+
type: assessed_by
|
1291
|
+
start_temp_id: '3.2'
|
1292
|
+
end_temp_id: Remain Calm Quiz Question 2
|
1293
|
+
- temp_id: 3.2->Remain Calm Quiz Question 3
|
1294
|
+
type: assessed_by
|
1295
|
+
start_temp_id: '3.2'
|
1296
|
+
end_temp_id: Remain Calm Quiz Question 3
|
1297
|
+
- temp_id: 3.2->Remain Calm Quiz Question 1
|
1298
|
+
type: assessed_by
|
1299
|
+
start_temp_id: '3.2'
|
1300
|
+
end_temp_id: Remain Calm Quiz Question 1
|
1301
|
+
- temp_id: 8.2->Debt Division Quiz Question 1
|
1302
|
+
type: assessed_by
|
1303
|
+
start_temp_id: '8.2'
|
1304
|
+
end_temp_id: Debt Division Quiz Question 1
|
1305
|
+
- temp_id: 8.2->Debt Division Quiz Question 2
|
1306
|
+
type: assessed_by
|
1307
|
+
start_temp_id: '8.2'
|
1308
|
+
end_temp_id: Debt Division Quiz Question 2
|
1309
|
+
- temp_id: 8.2->Debt Division Quiz Question 3
|
1310
|
+
type: assessed_by
|
1311
|
+
start_temp_id: '8.2'
|
1312
|
+
end_temp_id: Debt Division Quiz Question 3
|
1313
|
+
- temp_id: 2.2->Why Divide? Quiz Question 1
|
1314
|
+
type: assessed_by
|
1315
|
+
start_temp_id: '2.2'
|
1316
|
+
end_temp_id: Why Divide? Quiz Question 1
|
1317
|
+
- temp_id: 2.2->Why Divide? Quiz Question 2
|
1318
|
+
type: assessed_by
|
1319
|
+
start_temp_id: '2.2'
|
1320
|
+
end_temp_id: Why Divide? Quiz Question 2
|
1321
|
+
- temp_id: 2.2->Why Divide? Quiz Question 3
|
1322
|
+
type: assessed_by
|
1323
|
+
start_temp_id: '2.2'
|
1324
|
+
end_temp_id: Why Divide? Quiz Question 3
|
1325
|
+
- temp_id: 6.1->Going Down the Line Lesson
|
1326
|
+
type: taught_by
|
1327
|
+
start_temp_id: '6.1'
|
1328
|
+
end_temp_id: Going Down the Line Lesson
|
1329
|
+
- temp_id: 5.3->Seats and Streets Lesson
|
1330
|
+
type: taught_by
|
1331
|
+
start_temp_id: '5.3'
|
1332
|
+
end_temp_id: Seats and Streets Lesson
|
1333
|
+
- temp_id: 2.3->Divvy 'Em Up Lesson
|
1334
|
+
type: taught_by
|
1335
|
+
start_temp_id: '2.3'
|
1336
|
+
end_temp_id: Divvy 'Em Up Lesson
|
1337
|
+
- temp_id: 10.1->Tuning Into Ratios Lesson
|
1338
|
+
type: taught_by
|
1339
|
+
start_temp_id: '10.1'
|
1340
|
+
end_temp_id: Tuning Into Ratios Lesson
|
1341
|
+
- temp_id: 11.2->The Power of One Lesson
|
1342
|
+
type: taught_by
|
1343
|
+
start_temp_id: '11.2'
|
1344
|
+
end_temp_id: The Power of One Lesson
|
1345
|
+
- temp_id: 5.2->Opposites Reflect Quiz Question 3
|
1346
|
+
type: assessed_by
|
1347
|
+
start_temp_id: '5.2'
|
1348
|
+
end_temp_id: Opposites Reflect Quiz Question 3
|
1349
|
+
- temp_id: 5.2->Opposites Reflect Quiz Question 1
|
1350
|
+
type: assessed_by
|
1351
|
+
start_temp_id: '5.2'
|
1352
|
+
end_temp_id: Opposites Reflect Quiz Question 1
|
1353
|
+
- temp_id: 5.2->Opposites Reflect Quiz Question 2
|
1354
|
+
type: assessed_by
|
1355
|
+
start_temp_id: '5.2'
|
1356
|
+
end_temp_id: Opposites Reflect Quiz Question 2
|
1357
|
+
- temp_id: 9.3->Choosing Tools Quiz Question 2
|
1358
|
+
type: assessed_by
|
1359
|
+
start_temp_id: '9.3'
|
1360
|
+
end_temp_id: Choosing Tools Quiz Question 2
|
1361
|
+
- temp_id: 9.3->Choosing Tools Quiz Question 3
|
1362
|
+
type: assessed_by
|
1363
|
+
start_temp_id: '9.3'
|
1364
|
+
end_temp_id: Choosing Tools Quiz Question 3
|
1365
|
+
- temp_id: 9.3->Choosing Tools Quiz Question 1
|
1366
|
+
type: assessed_by
|
1367
|
+
start_temp_id: '9.3'
|
1368
|
+
end_temp_id: Choosing Tools Quiz Question 1
|
1369
|
+
- temp_id: 10.2->Ratios in Action Lesson
|
1370
|
+
type: taught_by
|
1371
|
+
start_temp_id: '10.2'
|
1372
|
+
end_temp_id: Ratios in Action Lesson
|
1373
|
+
- temp_id: 1.1->Fraction Notation Quiz Question 3
|
1374
|
+
type: assessed_by
|
1375
|
+
start_temp_id: '1.1'
|
1376
|
+
end_temp_id: Fraction Notation Quiz Question 3
|
1377
|
+
- temp_id: 1.1->Fraction Notation Quiz Question 1
|
1378
|
+
type: assessed_by
|
1379
|
+
start_temp_id: '1.1'
|
1380
|
+
end_temp_id: Fraction Notation Quiz Question 1
|
1381
|
+
- temp_id: 1.1->Fraction Notation Quiz Question 2
|
1382
|
+
type: assessed_by
|
1383
|
+
start_temp_id: '1.1'
|
1384
|
+
end_temp_id: Fraction Notation Quiz Question 2
|
1385
|
+
- temp_id: 11.4->Tools of Conversion Quiz Question 3
|
1386
|
+
type: assessed_by
|
1387
|
+
start_temp_id: '11.4'
|
1388
|
+
end_temp_id: Tools of Conversion Quiz Question 3
|
1389
|
+
- temp_id: 11.4->Tools of Conversion Quiz Question 2
|
1390
|
+
type: assessed_by
|
1391
|
+
start_temp_id: '11.4'
|
1392
|
+
end_temp_id: Tools of Conversion Quiz Question 2
|
1393
|
+
- temp_id: 11.4->Tools of Conversion Quiz Question 1
|
1394
|
+
type: assessed_by
|
1395
|
+
start_temp_id: '11.4'
|
1396
|
+
end_temp_id: Tools of Conversion Quiz Question 1
|
1397
|
+
- temp_id: 4.3->Dividing Decimals Lesson
|
1398
|
+
type: taught_by
|
1399
|
+
start_temp_id: '4.3'
|
1400
|
+
end_temp_id: Dividing Decimals Lesson
|
1401
|
+
- temp_id: 2.3->Divvy 'Em Up Quiz Question 1
|
1402
|
+
type: assessed_by
|
1403
|
+
start_temp_id: '2.3'
|
1404
|
+
end_temp_id: Divvy 'Em Up Quiz Question 1
|
1405
|
+
- temp_id: 2.3->Divvy 'Em Up Quiz Question 2
|
1406
|
+
type: assessed_by
|
1407
|
+
start_temp_id: '2.3'
|
1408
|
+
end_temp_id: Divvy 'Em Up Quiz Question 2
|
1409
|
+
- temp_id: 2.3->Divvy 'Em Up Quiz Question 3
|
1410
|
+
type: assessed_by
|
1411
|
+
start_temp_id: '2.3'
|
1412
|
+
end_temp_id: Divvy 'Em Up Quiz Question 3
|
1413
|
+
- temp_id: 6.3->Absolutely Positive? Quiz Question 1
|
1414
|
+
type: assessed_by
|
1415
|
+
start_temp_id: '6.3'
|
1416
|
+
end_temp_id: Absolutely Positive? Quiz Question 1
|
1417
|
+
- temp_id: 6.3->Absolutely Positive? Quiz Question 3
|
1418
|
+
type: assessed_by
|
1419
|
+
start_temp_id: '6.3'
|
1420
|
+
end_temp_id: Absolutely Positive? Quiz Question 3
|
1421
|
+
- temp_id: 6.3->Absolutely Positive? Quiz Question 2
|
1422
|
+
type: assessed_by
|
1423
|
+
start_temp_id: '6.3'
|
1424
|
+
end_temp_id: Absolutely Positive? Quiz Question 2
|
1425
|
+
- temp_id: 8.4->Fraction Metamorphosis Quiz Question 2
|
1426
|
+
type: assessed_by
|
1427
|
+
start_temp_id: '8.4'
|
1428
|
+
end_temp_id: Fraction Metamorphosis Quiz Question 2
|
1429
|
+
- temp_id: 8.4->Fraction Metamorphosis Quiz Question 1
|
1430
|
+
type: assessed_by
|
1431
|
+
start_temp_id: '8.4'
|
1432
|
+
end_temp_id: Fraction Metamorphosis Quiz Question 1
|
1433
|
+
- temp_id: 8.4->Fraction Metamorphosis Quiz Question 3
|
1434
|
+
type: assessed_by
|
1435
|
+
start_temp_id: '8.4'
|
1436
|
+
end_temp_id: Fraction Metamorphosis Quiz Question 3
|
1437
|
+
- temp_id: 1.3->(Fraction) Addition and Subtraction Lesson
|
1438
|
+
type: taught_by
|
1439
|
+
start_temp_id: '1.3'
|
1440
|
+
end_temp_id: "(Fraction) Addition and Subtraction Lesson"
|
1441
|
+
- temp_id: 12.3->Putting it all Together Lesson
|
1442
|
+
type: taught_by
|
1443
|
+
start_temp_id: '12.3'
|
1444
|
+
end_temp_id: Putting it all Together Lesson
|
1445
|
+
- temp_id: 10.2->Ratios in Action Quiz Question 1
|
1446
|
+
type: assessed_by
|
1447
|
+
start_temp_id: '10.2'
|
1448
|
+
end_temp_id: Ratios in Action Quiz Question 1
|
1449
|
+
- temp_id: 10.2->Ratios in Action Quiz Question 2
|
1450
|
+
type: assessed_by
|
1451
|
+
start_temp_id: '10.2'
|
1452
|
+
end_temp_id: Ratios in Action Quiz Question 2
|
1453
|
+
- temp_id: 10.2->Ratios in Action Quiz Question 3
|
1454
|
+
type: assessed_by
|
1455
|
+
start_temp_id: '10.2'
|
1456
|
+
end_temp_id: Ratios in Action Quiz Question 3
|
1457
|
+
- temp_id: 7.3->Proper Use of Properties Quiz Question 2
|
1458
|
+
type: assessed_by
|
1459
|
+
start_temp_id: '7.3'
|
1460
|
+
end_temp_id: Proper Use of Properties Quiz Question 2
|
1461
|
+
- temp_id: 7.3->Proper Use of Properties Quiz Question 3
|
1462
|
+
type: assessed_by
|
1463
|
+
start_temp_id: '7.3'
|
1464
|
+
end_temp_id: Proper Use of Properties Quiz Question 3
|
1465
|
+
- temp_id: 7.3->Proper Use of Properties Quiz Question 1
|
1466
|
+
type: assessed_by
|
1467
|
+
start_temp_id: '7.3'
|
1468
|
+
end_temp_id: Proper Use of Properties Quiz Question 1
|
1469
|
+
- temp_id: 1.2->Fraction Multiplication Lesson
|
1470
|
+
type: taught_by
|
1471
|
+
start_temp_id: '1.2'
|
1472
|
+
end_temp_id: Fraction Multiplication Lesson
|
1473
|
+
- temp_id: 4.1->Adding and Subtracting Decimals Lesson
|
1474
|
+
type: taught_by
|
1475
|
+
start_temp_id: '4.1'
|
1476
|
+
end_temp_id: Adding and Subtracting Decimals Lesson
|
1477
|
+
- temp_id: 11.3->Percentages and Precision Lesson
|
1478
|
+
type: taught_by
|
1479
|
+
start_temp_id: '11.3'
|
1480
|
+
end_temp_id: Percentages and Precision Lesson
|
1481
|
+
- temp_id: 1.1->Fraction Notation Lesson
|
1482
|
+
type: taught_by
|
1483
|
+
start_temp_id: '1.1'
|
1484
|
+
end_temp_id: Fraction Notation Lesson
|
1485
|
+
- temp_id: 3.2->Remain Calm Lesson
|
1486
|
+
type: taught_by
|
1487
|
+
start_temp_id: '3.2'
|
1488
|
+
end_temp_id: Remain Calm Lesson
|
1489
|
+
- temp_id: 2.1->Fraction Reciprocity (Reciprocals) Quiz Question 3
|
1490
|
+
type: assessed_by
|
1491
|
+
start_temp_id: '2.1'
|
1492
|
+
end_temp_id: Fraction Reciprocity (Reciprocals) Quiz Question 3
|
1493
|
+
- temp_id: 2.1->Fraction Reciprocity (Reciprocals) Quiz Question 2
|
1494
|
+
type: assessed_by
|
1495
|
+
start_temp_id: '2.1'
|
1496
|
+
end_temp_id: Fraction Reciprocity (Reciprocals) Quiz Question 2
|
1497
|
+
- temp_id: 2.1->Fraction Reciprocity (Reciprocals) Quiz Question 1
|
1498
|
+
type: assessed_by
|
1499
|
+
start_temp_id: '2.1'
|
1500
|
+
end_temp_id: Fraction Reciprocity (Reciprocals) Quiz Question 1
|
1501
|
+
- temp_id: 8.2->Debt Division Lesson
|
1502
|
+
type: taught_by
|
1503
|
+
start_temp_id: '8.2'
|
1504
|
+
end_temp_id: Debt Division Lesson
|
1505
|
+
- temp_id: 4.2->Multiplying Decimals Quiz Question 2
|
1506
|
+
type: assessed_by
|
1507
|
+
start_temp_id: '4.2'
|
1508
|
+
end_temp_id: Multiplying Decimals Quiz Question 2
|
1509
|
+
- temp_id: 4.2->Multiplying Decimals Quiz Question 3
|
1510
|
+
type: assessed_by
|
1511
|
+
start_temp_id: '4.2'
|
1512
|
+
end_temp_id: Multiplying Decimals Quiz Question 3
|
1513
|
+
- temp_id: 4.2->Multiplying Decimals Quiz Question 1
|
1514
|
+
type: assessed_by
|
1515
|
+
start_temp_id: '4.2'
|
1516
|
+
end_temp_id: Multiplying Decimals Quiz Question 1
|
1517
|
+
- temp_id: 9.2->Two-Way Problem Solving Quiz Question 1
|
1518
|
+
type: assessed_by
|
1519
|
+
start_temp_id: '9.2'
|
1520
|
+
end_temp_id: Two-Way Problem Solving Quiz Question 1
|
1521
|
+
- temp_id: 9.2->Two-Way Problem Solving Quiz Question 2
|
1522
|
+
type: assessed_by
|
1523
|
+
start_temp_id: '9.2'
|
1524
|
+
end_temp_id: Two-Way Problem Solving Quiz Question 2
|
1525
|
+
- temp_id: 9.2->Two-Way Problem Solving Quiz Question 3
|
1526
|
+
type: assessed_by
|
1527
|
+
start_temp_id: '9.2'
|
1528
|
+
end_temp_id: Two-Way Problem Solving Quiz Question 3
|
1529
|
+
- temp_id: 8.3->Rules of A-Fraction Quiz Question 2
|
1530
|
+
type: assessed_by
|
1531
|
+
start_temp_id: '8.3'
|
1532
|
+
end_temp_id: Rules of A-Fraction Quiz Question 2
|
1533
|
+
- temp_id: 8.3->Rules of A-Fraction Quiz Question 3
|
1534
|
+
type: assessed_by
|
1535
|
+
start_temp_id: '8.3'
|
1536
|
+
end_temp_id: Rules of A-Fraction Quiz Question 3
|
1537
|
+
- temp_id: 8.3->Rules of A-Fraction Quiz Question 1
|
1538
|
+
type: assessed_by
|
1539
|
+
start_temp_id: '8.3'
|
1540
|
+
end_temp_id: Rules of A-Fraction Quiz Question 1
|
1541
|
+
- temp_id: 7.1->Zero Sum Lesson
|
1542
|
+
type: taught_by
|
1543
|
+
start_temp_id: '7.1'
|
1544
|
+
end_temp_id: Zero Sum Lesson
|
1545
|
+
- temp_id: 9.4->Checkpoints Lesson
|
1546
|
+
type: taught_by
|
1547
|
+
start_temp_id: '9.4'
|
1548
|
+
end_temp_id: Checkpoints Lesson
|
1549
|
+
- temp_id: 3.3->Double Trouble Lesson
|
1550
|
+
type: taught_by
|
1551
|
+
start_temp_id: '3.3'
|
1552
|
+
end_temp_id: Double Trouble Lesson
|
1553
|
+
- temp_id: 1.2->Fraction Multiplication Quiz Question 2
|
1554
|
+
type: assessed_by
|
1555
|
+
start_temp_id: '1.2'
|
1556
|
+
end_temp_id: Fraction Multiplication Quiz Question 2
|
1557
|
+
- temp_id: 1.2->Fraction Multiplication Quiz Question 1
|
1558
|
+
type: assessed_by
|
1559
|
+
start_temp_id: '1.2'
|
1560
|
+
end_temp_id: Fraction Multiplication Quiz Question 1
|
1561
|
+
- temp_id: 1.2->Fraction Multiplication Quiz Question 3
|
1562
|
+
type: assessed_by
|
1563
|
+
start_temp_id: '1.2'
|
1564
|
+
end_temp_id: Fraction Multiplication Quiz Question 3
|
1565
|
+
- temp_id: 2.2->Why Divide? Lesson
|
1566
|
+
type: taught_by
|
1567
|
+
start_temp_id: '2.2'
|
1568
|
+
end_temp_id: Why Divide? Lesson
|
1569
|
+
- temp_id: 7.1->Zero Sum Quiz Question 2
|
1570
|
+
type: assessed_by
|
1571
|
+
start_temp_id: '7.1'
|
1572
|
+
end_temp_id: Zero Sum Quiz Question 2
|
1573
|
+
- temp_id: 7.1->Zero Sum Quiz Question 3
|
1574
|
+
type: assessed_by
|
1575
|
+
start_temp_id: '7.1'
|
1576
|
+
end_temp_id: Zero Sum Quiz Question 3
|
1577
|
+
- temp_id: 7.1->Zero Sum Quiz Question 1
|
1578
|
+
type: assessed_by
|
1579
|
+
start_temp_id: '7.1'
|
1580
|
+
end_temp_id: Zero Sum Quiz Question 1
|
1581
|
+
- temp_id: 9.2->Two-Way Problem Solving Lesson
|
1582
|
+
type: taught_by
|
1583
|
+
start_temp_id: '9.2'
|
1584
|
+
end_temp_id: Two-Way Problem Solving Lesson
|
1585
|
+
- temp_id: 8.1->Debt Doubling Quiz Question 1
|
1586
|
+
type: assessed_by
|
1587
|
+
start_temp_id: '8.1'
|
1588
|
+
end_temp_id: Debt Doubling Quiz Question 1
|
1589
|
+
- temp_id: 8.1->Debt Doubling Quiz Question 3
|
1590
|
+
type: assessed_by
|
1591
|
+
start_temp_id: '8.1'
|
1592
|
+
end_temp_id: Debt Doubling Quiz Question 3
|
1593
|
+
- temp_id: 8.1->Debt Doubling Quiz Question 2
|
1594
|
+
type: assessed_by
|
1595
|
+
start_temp_id: '8.1'
|
1596
|
+
end_temp_id: Debt Doubling Quiz Question 2
|
1597
|
+
- temp_id: 2.1->Fraction Reciprocity (Reciprocals) Lesson
|
1598
|
+
type: taught_by
|
1599
|
+
start_temp_id: '2.1'
|
1600
|
+
end_temp_id: Fraction Reciprocity (Reciprocals) Lesson
|
1601
|
+
- temp_id: 11.1->Visualizing Ratios Quiz Question 2
|
1602
|
+
type: assessed_by
|
1603
|
+
start_temp_id: '11.1'
|
1604
|
+
end_temp_id: Visualizing Ratios Quiz Question 2
|
1605
|
+
- temp_id: 11.1->Visualizing Ratios Quiz Question 3
|
1606
|
+
type: assessed_by
|
1607
|
+
start_temp_id: '11.1'
|
1608
|
+
end_temp_id: Visualizing Ratios Quiz Question 3
|
1609
|
+
- temp_id: 11.1->Visualizing Ratios Quiz Question 1
|
1610
|
+
type: assessed_by
|
1611
|
+
start_temp_id: '11.1'
|
1612
|
+
end_temp_id: Visualizing Ratios Quiz Question 1
|
1613
|
+
- temp_id: 9.4->Checkpoints Quiz Question 3
|
1614
|
+
type: assessed_by
|
1615
|
+
start_temp_id: '9.4'
|
1616
|
+
end_temp_id: Checkpoints Quiz Question 3
|
1617
|
+
- temp_id: 9.4->Checkpoints Quiz Question 2
|
1618
|
+
type: assessed_by
|
1619
|
+
start_temp_id: '9.4'
|
1620
|
+
end_temp_id: Checkpoints Quiz Question 2
|
1621
|
+
- temp_id: 9.4->Checkpoints Quiz Question 1
|
1622
|
+
type: assessed_by
|
1623
|
+
start_temp_id: '9.4'
|
1624
|
+
end_temp_id: Checkpoints Quiz Question 1
|
1625
|
+
- temp_id: 4.2->Multiplying Decimals Lesson
|
1626
|
+
type: taught_by
|
1627
|
+
start_temp_id: '4.2'
|
1628
|
+
end_temp_id: Multiplying Decimals Lesson
|
1629
|
+
- temp_id: 12.1->Melting and Freezing Quiz Question 2
|
1630
|
+
type: assessed_by
|
1631
|
+
start_temp_id: '12.1'
|
1632
|
+
end_temp_id: Melting and Freezing Quiz Question 2
|
1633
|
+
- temp_id: 12.1->Melting and Freezing Quiz Question 3
|
1634
|
+
type: assessed_by
|
1635
|
+
start_temp_id: '12.1'
|
1636
|
+
end_temp_id: Melting and Freezing Quiz Question 3
|
1637
|
+
- temp_id: 12.1->Melting and Freezing Quiz Question 1
|
1638
|
+
type: assessed_by
|
1639
|
+
start_temp_id: '12.1'
|
1640
|
+
end_temp_id: Melting and Freezing Quiz Question 1
|
1641
|
+
- temp_id: 11.3->Percentages and Precision Quiz Question 3
|
1642
|
+
type: assessed_by
|
1643
|
+
start_temp_id: '11.3'
|
1644
|
+
end_temp_id: Percentages and Precision Quiz Question 3
|
1645
|
+
- temp_id: 11.3->Percentages and Precision Quiz Question 1
|
1646
|
+
type: assessed_by
|
1647
|
+
start_temp_id: '11.3'
|
1648
|
+
end_temp_id: Percentages and Precision Quiz Question 1
|
1649
|
+
- temp_id: 11.3->Percentages and Precision Quiz Question 2
|
1650
|
+
type: assessed_by
|
1651
|
+
start_temp_id: '11.3'
|
1652
|
+
end_temp_id: Percentages and Precision Quiz Question 2
|
1653
|
+
- temp_id: 4.3->Dividing Decimals Quiz Question 1
|
1654
|
+
type: assessed_by
|
1655
|
+
start_temp_id: '4.3'
|
1656
|
+
end_temp_id: Dividing Decimals Quiz Question 1
|
1657
|
+
- temp_id: 4.3->Dividing Decimals Quiz Question 2
|
1658
|
+
type: assessed_by
|
1659
|
+
start_temp_id: '4.3'
|
1660
|
+
end_temp_id: Dividing Decimals Quiz Question 2
|
1661
|
+
- temp_id: 4.3->Dividing Decimals Quiz Question 3
|
1662
|
+
type: assessed_by
|
1663
|
+
start_temp_id: '4.3'
|
1664
|
+
end_temp_id: Dividing Decimals Quiz Question 3
|
1665
|
+
- temp_id: 8.3->Rules of A-Fraction Lesson
|
1666
|
+
type: taught_by
|
1667
|
+
start_temp_id: '8.3'
|
1668
|
+
end_temp_id: Rules of A-Fraction Lesson
|
1669
|
+
- temp_id: 12.3->Putting it all Together Quiz Question 1
|
1670
|
+
type: assessed_by
|
1671
|
+
start_temp_id: '12.3'
|
1672
|
+
end_temp_id: Putting it all Together Quiz Question 1
|
1673
|
+
- temp_id: 12.3->Putting it all Together Quiz Question 2
|
1674
|
+
type: assessed_by
|
1675
|
+
start_temp_id: '12.3'
|
1676
|
+
end_temp_id: Putting it all Together Quiz Question 2
|
1677
|
+
- temp_id: 12.3->Putting it all Together Quiz Question 3
|
1678
|
+
type: assessed_by
|
1679
|
+
start_temp_id: '12.3'
|
1680
|
+
end_temp_id: Putting it all Together Quiz Question 3
|
1681
|
+
- temp_id: 1.3->(Fraction) Addition and Subtraction Quiz Question 2
|
1682
|
+
type: assessed_by
|
1683
|
+
start_temp_id: '1.3'
|
1684
|
+
end_temp_id: "(Fraction) Addition and Subtraction Quiz Question 2"
|
1685
|
+
- temp_id: 1.3->(Fraction) Addition and Subtraction Quiz Question 1
|
1686
|
+
type: assessed_by
|
1687
|
+
start_temp_id: '1.3'
|
1688
|
+
end_temp_id: "(Fraction) Addition and Subtraction Quiz Question 1"
|
1689
|
+
- temp_id: 1.3->(Fraction) Addition and Subtraction Quiz Question 3
|
1690
|
+
type: assessed_by
|
1691
|
+
start_temp_id: '1.3'
|
1692
|
+
end_temp_id: "(Fraction) Addition and Subtraction Quiz Question 3"
|
1693
|
+
- temp_id: 4.1->Adding and Subtracting Decimals Quiz Question 3
|
1694
|
+
type: assessed_by
|
1695
|
+
start_temp_id: '4.1'
|
1696
|
+
end_temp_id: Adding and Subtracting Decimals Quiz Question 3
|
1697
|
+
- temp_id: 4.1->Adding and Subtracting Decimals Quiz Question 1
|
1698
|
+
type: assessed_by
|
1699
|
+
start_temp_id: '4.1'
|
1700
|
+
end_temp_id: Adding and Subtracting Decimals Quiz Question 1
|
1701
|
+
- temp_id: 4.1->Adding and Subtracting Decimals Quiz Question 2
|
1702
|
+
type: assessed_by
|
1703
|
+
start_temp_id: '4.1'
|
1704
|
+
end_temp_id: Adding and Subtracting Decimals Quiz Question 2
|
1705
|
+
- temp_id: 9.1->Beyond Integers Lesson
|
1706
|
+
type: taught_by
|
1707
|
+
start_temp_id: '9.1'
|
1708
|
+
end_temp_id: Beyond Integers Lesson
|
1709
|
+
- temp_id: 3.1->Divide and Conquer Lesson
|
1710
|
+
type: taught_by
|
1711
|
+
start_temp_id: '3.1'
|
1712
|
+
end_temp_id: Divide and Conquer Lesson
|
1713
|
+
- temp_id: 3.1->Divide and Conquer Quiz Question
|
1714
|
+
type: assessed_by
|
1715
|
+
start_temp_id: '3.1'
|
1716
|
+
end_temp_id: Divide and Conquer Quiz Question
|
1717
|
+
- temp_id: 3.1->Divide and Conquer Quiz Question
|
1718
|
+
type: assessed_by
|
1719
|
+
start_temp_id: '3.1'
|
1720
|
+
end_temp_id: Divide and Conquer Quiz Question
|
1721
|
+
- temp_id: 3.1->Divide and Conquer Quiz Question
|
1722
|
+
type: assessed_by
|
1723
|
+
start_temp_id: '3.1'
|
1724
|
+
end_temp_id: Divide and Conquer Quiz Question
|
1725
|
+
- temp_id: 6.3->Absolutely Positive? Lesson
|
1726
|
+
type: taught_by
|
1727
|
+
start_temp_id: '6.3'
|
1728
|
+
end_temp_id: Absolutely Positive? Lesson
|
1729
|
+
- temp_id: 4.1->9.1
|
1730
|
+
type: prerequisite
|
1731
|
+
start_temp_id: '4.1'
|
1732
|
+
end_temp_id: '9.1'
|
1733
|
+
- temp_id: 5.2->6.3
|
1734
|
+
type: prerequisite
|
1735
|
+
start_temp_id: '5.2'
|
1736
|
+
end_temp_id: '6.3'
|
1737
|
+
- temp_id: 10.2->11.1
|
1738
|
+
type: prerequisite
|
1739
|
+
start_temp_id: '10.2'
|
1740
|
+
end_temp_id: '11.1'
|
1741
|
+
- temp_id: 7.2->7.3
|
1742
|
+
type: prerequisite
|
1743
|
+
start_temp_id: '7.2'
|
1744
|
+
end_temp_id: '7.3'
|
1745
|
+
- temp_id: 8.4->9.1
|
1746
|
+
type: prerequisite
|
1747
|
+
start_temp_id: '8.4'
|
1748
|
+
end_temp_id: '9.1'
|
1749
|
+
- temp_id: 8.3->9.2
|
1750
|
+
type: prerequisite
|
1751
|
+
start_temp_id: '8.3'
|
1752
|
+
end_temp_id: '9.2'
|
1753
|
+
- temp_id: 12.2->12.3
|
1754
|
+
type: prerequisite
|
1755
|
+
start_temp_id: '12.2'
|
1756
|
+
end_temp_id: '12.3'
|
1757
|
+
- temp_id: 4.3->9.1
|
1758
|
+
type: prerequisite
|
1759
|
+
start_temp_id: '4.3'
|
1760
|
+
end_temp_id: '9.1'
|
1761
|
+
- temp_id: 4.3->12.1
|
1762
|
+
type: prerequisite
|
1763
|
+
start_temp_id: '4.3'
|
1764
|
+
end_temp_id: '12.1'
|
1765
|
+
- temp_id: 7.1->7.2
|
1766
|
+
type: prerequisite
|
1767
|
+
start_temp_id: '7.1'
|
1768
|
+
end_temp_id: '7.2'
|
1769
|
+
- temp_id: 1.2->2.1
|
1770
|
+
type: prerequisite
|
1771
|
+
start_temp_id: '1.2'
|
1772
|
+
end_temp_id: '2.1'
|
1773
|
+
- temp_id: 5.2->7.1
|
1774
|
+
type: prerequisite
|
1775
|
+
start_temp_id: '5.2'
|
1776
|
+
end_temp_id: '7.1'
|
1777
|
+
- temp_id: 8.2->9.2
|
1778
|
+
type: prerequisite
|
1779
|
+
start_temp_id: '8.2'
|
1780
|
+
end_temp_id: '9.2'
|
1781
|
+
- temp_id: 12.1->12.2
|
1782
|
+
type: prerequisite
|
1783
|
+
start_temp_id: '12.1'
|
1784
|
+
end_temp_id: '12.2'
|
1785
|
+
- temp_id: 3.1->3.2
|
1786
|
+
type: prerequisite
|
1787
|
+
start_temp_id: '3.1'
|
1788
|
+
end_temp_id: '3.2'
|
1789
|
+
- temp_id: 6.1->6.2
|
1790
|
+
type: prerequisite
|
1791
|
+
start_temp_id: '6.1'
|
1792
|
+
end_temp_id: '6.2'
|
1793
|
+
- temp_id: 5.2->5.3
|
1794
|
+
type: prerequisite
|
1795
|
+
start_temp_id: '5.2'
|
1796
|
+
end_temp_id: '5.3'
|
1797
|
+
- temp_id: 3.2->3.3
|
1798
|
+
type: prerequisite
|
1799
|
+
start_temp_id: '3.2'
|
1800
|
+
end_temp_id: '3.3'
|
1801
|
+
- temp_id: 6.3->7.2
|
1802
|
+
type: prerequisite
|
1803
|
+
start_temp_id: '6.3'
|
1804
|
+
end_temp_id: '7.2'
|
1805
|
+
- temp_id: 6.2->6.3
|
1806
|
+
type: prerequisite
|
1807
|
+
start_temp_id: '6.2'
|
1808
|
+
end_temp_id: '6.3'
|
1809
|
+
- temp_id: 1.1->12.1
|
1810
|
+
type: prerequisite
|
1811
|
+
start_temp_id: '1.1'
|
1812
|
+
end_temp_id: '12.1'
|
1813
|
+
- temp_id: 10.1->10.2
|
1814
|
+
type: prerequisite
|
1815
|
+
start_temp_id: '10.1'
|
1816
|
+
end_temp_id: '10.2'
|
1817
|
+
- temp_id: 7.3->8.3
|
1818
|
+
type: prerequisite
|
1819
|
+
start_temp_id: '7.3'
|
1820
|
+
end_temp_id: '8.3'
|
1821
|
+
- temp_id: 3.3->4.3
|
1822
|
+
type: prerequisite
|
1823
|
+
start_temp_id: '3.3'
|
1824
|
+
end_temp_id: '4.3'
|
1825
|
+
- temp_id: 1.1->1.2
|
1826
|
+
type: prerequisite
|
1827
|
+
start_temp_id: '1.1'
|
1828
|
+
end_temp_id: '1.2'
|
1829
|
+
- temp_id: 5.1->8.1
|
1830
|
+
type: prerequisite
|
1831
|
+
start_temp_id: '5.1'
|
1832
|
+
end_temp_id: '8.1'
|
1833
|
+
- temp_id: 5.1->6.1
|
1834
|
+
type: prerequisite
|
1835
|
+
start_temp_id: '5.1'
|
1836
|
+
end_temp_id: '6.1'
|
1837
|
+
- temp_id: 9.3->9.4
|
1838
|
+
type: prerequisite
|
1839
|
+
start_temp_id: '9.3'
|
1840
|
+
end_temp_id: '9.4'
|
1841
|
+
- temp_id: 2.2->11.1
|
1842
|
+
type: prerequisite
|
1843
|
+
start_temp_id: '2.2'
|
1844
|
+
end_temp_id: '11.1'
|
1845
|
+
- temp_id: 8.3->9.1
|
1846
|
+
type: prerequisite
|
1847
|
+
start_temp_id: '8.3'
|
1848
|
+
end_temp_id: '9.1'
|
1849
|
+
- temp_id: 11.2->11.3
|
1850
|
+
type: prerequisite
|
1851
|
+
start_temp_id: '11.2'
|
1852
|
+
end_temp_id: '11.3'
|
1853
|
+
- temp_id: 2.3->8.2
|
1854
|
+
type: prerequisite
|
1855
|
+
start_temp_id: '2.3'
|
1856
|
+
end_temp_id: '8.2'
|
1857
|
+
- temp_id: 8.1->8.3
|
1858
|
+
type: prerequisite
|
1859
|
+
start_temp_id: '8.1'
|
1860
|
+
end_temp_id: '8.3'
|
1861
|
+
- temp_id: 2.1->2.2
|
1862
|
+
type: prerequisite
|
1863
|
+
start_temp_id: '2.1'
|
1864
|
+
end_temp_id: '2.2'
|
1865
|
+
- temp_id: 2.2->2.3
|
1866
|
+
type: prerequisite
|
1867
|
+
start_temp_id: '2.2'
|
1868
|
+
end_temp_id: '2.3'
|
1869
|
+
- temp_id: 1.2->1.3
|
1870
|
+
type: prerequisite
|
1871
|
+
start_temp_id: '1.2'
|
1872
|
+
end_temp_id: '1.3'
|
1873
|
+
- temp_id: 10.2->10.3
|
1874
|
+
type: prerequisite
|
1875
|
+
start_temp_id: '10.2'
|
1876
|
+
end_temp_id: '10.3'
|
1877
|
+
- temp_id: 5.1->5.2
|
1878
|
+
type: prerequisite
|
1879
|
+
start_temp_id: '5.1'
|
1880
|
+
end_temp_id: '5.2'
|
1881
|
+
- temp_id: 1.1->10.1
|
1882
|
+
type: prerequisite
|
1883
|
+
start_temp_id: '1.1'
|
1884
|
+
end_temp_id: '10.1'
|
1885
|
+
- temp_id: 4.2->4.3
|
1886
|
+
type: prerequisite
|
1887
|
+
start_temp_id: '4.2'
|
1888
|
+
end_temp_id: '4.3'
|
1889
|
+
- temp_id: 1.2->9.1
|
1890
|
+
type: prerequisite
|
1891
|
+
start_temp_id: '1.2'
|
1892
|
+
end_temp_id: '9.1'
|
1893
|
+
- temp_id: 1.2->12.2
|
1894
|
+
type: prerequisite
|
1895
|
+
start_temp_id: '1.2'
|
1896
|
+
end_temp_id: '12.2'
|
1897
|
+
- temp_id: 10.3->11.2
|
1898
|
+
type: prerequisite
|
1899
|
+
start_temp_id: '10.3'
|
1900
|
+
end_temp_id: '11.2'
|
1901
|
+
- temp_id: 3.2->8.4
|
1902
|
+
type: prerequisite
|
1903
|
+
start_temp_id: '3.2'
|
1904
|
+
end_temp_id: '8.4'
|
1905
|
+
- temp_id: 1.1->6.2
|
1906
|
+
type: prerequisite
|
1907
|
+
start_temp_id: '1.1'
|
1908
|
+
end_temp_id: '6.2'
|
1909
|
+
- temp_id: 1.2->8.1
|
1910
|
+
type: prerequisite
|
1911
|
+
start_temp_id: '1.2'
|
1912
|
+
end_temp_id: '8.1'
|
1913
|
+
- temp_id: 10.3->11.1
|
1914
|
+
type: prerequisite
|
1915
|
+
start_temp_id: '10.3'
|
1916
|
+
end_temp_id: '11.1'
|
1917
|
+
- temp_id: 8.1->8.2
|
1918
|
+
type: prerequisite
|
1919
|
+
start_temp_id: '8.1'
|
1920
|
+
end_temp_id: '8.2'
|
1921
|
+
- temp_id: 11.2->11.4
|
1922
|
+
type: prerequisite
|
1923
|
+
start_temp_id: '11.2'
|
1924
|
+
end_temp_id: '11.4'
|
1925
|
+
- temp_id: 9.2->9.3
|
1926
|
+
type: prerequisite
|
1927
|
+
start_temp_id: '9.2'
|
1928
|
+
end_temp_id: '9.3'
|
1929
|
+
- temp_id: 9.1->9.2
|
1930
|
+
type: prerequisite
|
1931
|
+
start_temp_id: '9.1'
|
1932
|
+
end_temp_id: '9.2'
|
1933
|
+
- temp_id: 1.3->7.3
|
1934
|
+
type: prerequisite
|
1935
|
+
start_temp_id: '1.3'
|
1936
|
+
end_temp_id: '7.3'
|
1937
|
+
- temp_id: 4.2->9.1
|
1938
|
+
type: prerequisite
|
1939
|
+
start_temp_id: '4.2'
|
1940
|
+
end_temp_id: '9.1'
|
1941
|
+
- temp_id: 4.1->6.1
|
1942
|
+
type: prerequisite
|
1943
|
+
start_temp_id: '4.1'
|
1944
|
+
end_temp_id: '6.1'
|
1945
|
+
- temp_id: 11.1->11.2
|
1946
|
+
type: prerequisite
|
1947
|
+
start_temp_id: '11.1'
|
1948
|
+
end_temp_id: '11.2'
|
1949
|
+
- temp_id: 8.2->8.3
|
1950
|
+
type: prerequisite
|
1951
|
+
start_temp_id: '8.2'
|
1952
|
+
end_temp_id: '8.3'
|
1953
|
+
- temp_id: 1.2->11.2
|
1954
|
+
type: prerequisite
|
1955
|
+
start_temp_id: '1.2'
|
1956
|
+
end_temp_id: '11.2'
|
1957
|
+
- temp_id: 17304->17446
|
1958
|
+
type: contains
|
1959
|
+
start_temp_id: Tools of Conversion Quiz
|
1960
|
+
end_temp_id: Tools of Conversion Quiz Question 1
|
1961
|
+
- temp_id: 17473->18908
|
1962
|
+
type: contains
|
1963
|
+
start_temp_id: Zero Sum Quiz
|
1964
|
+
end_temp_id: Zero Sum Quiz Question 3
|
1965
|
+
- temp_id: 17360->19244
|
1966
|
+
type: contains
|
1967
|
+
start_temp_id: Lesser of Two Evils Quiz
|
1968
|
+
end_temp_id: Lesser of Two Evils Quiz Question 2
|
1969
|
+
- temp_id: 17482->19043
|
1970
|
+
type: contains
|
1971
|
+
start_temp_id: Debt Division Quiz
|
1972
|
+
end_temp_id: Debt Division Quiz Question 3
|
1973
|
+
- temp_id: 22566->25635
|
1974
|
+
type: contains
|
1975
|
+
start_temp_id: "(Fraction) Addition and Subtraction Quiz"
|
1976
|
+
end_temp_id: "(Fraction) Addition and Subtraction Quiz Question 1"
|
1977
|
+
- temp_id: 17361->19247
|
1978
|
+
type: contains
|
1979
|
+
start_temp_id: Absolutely Positive? Quiz
|
1980
|
+
end_temp_id: Absolutely Positive? Quiz Question 1
|
1981
|
+
- temp_id: 17474->18930
|
1982
|
+
type: contains
|
1983
|
+
start_temp_id: Another Side of Addition Quiz
|
1984
|
+
end_temp_id: Another Side of Addition Quiz Question 3
|
1985
|
+
- temp_id: 17473->18906
|
1986
|
+
type: contains
|
1987
|
+
start_temp_id: Zero Sum Quiz
|
1988
|
+
end_temp_id: Zero Sum Quiz Question 2
|
1989
|
+
- temp_id: 17293->17801
|
1990
|
+
type: contains
|
1991
|
+
start_temp_id: Tuning Into Ratios Quiz
|
1992
|
+
end_temp_id: Tuning Into Ratios Quiz Question 3
|
1993
|
+
- temp_id: 17359->19224
|
1994
|
+
type: contains
|
1995
|
+
start_temp_id: Going Down the Line Quiz
|
1996
|
+
end_temp_id: Going Down the Line Quiz Question 3
|
1997
|
+
- temp_id: 17311->17341
|
1998
|
+
type: contains
|
1999
|
+
start_temp_id: Why Divide? Quiz
|
2000
|
+
end_temp_id: Why Divide? Quiz Question 3
|
2001
|
+
- temp_id: 17353q->18851
|
2002
|
+
type: contains
|
2003
|
+
start_temp_id: Seats and Streets Quiz
|
2004
|
+
end_temp_id: Seats and Streets Quiz Question 3
|
2005
|
+
- temp_id: 17335->18863
|
2006
|
+
type: contains
|
2007
|
+
start_temp_id: Multiplying Decimals Quiz
|
2008
|
+
end_temp_id: Multiplying Decimals Quiz Question 1
|
2009
|
+
- temp_id: 17328->19194
|
2010
|
+
type: contains
|
2011
|
+
start_temp_id: Double Trouble Quiz
|
2012
|
+
end_temp_id: Double Trouble Quiz Question 3
|
2013
|
+
- temp_id: 17318->18763
|
2014
|
+
type: contains
|
2015
|
+
start_temp_id: Melting and Freezing Quiz
|
2016
|
+
end_temp_id: Melting and Freezing Quiz Question 1
|
2017
|
+
- temp_id: 17475->18942
|
2018
|
+
type: contains
|
2019
|
+
start_temp_id: Proper Use of Properties Quiz
|
2020
|
+
end_temp_id: Proper Use of Properties Quiz Question 3
|
2021
|
+
- temp_id: 17293->17799
|
2022
|
+
type: contains
|
2023
|
+
start_temp_id: Tuning Into Ratios Quiz
|
2024
|
+
end_temp_id: Tuning Into Ratios Quiz Question 2
|
2025
|
+
- temp_id: 17484->19031
|
2026
|
+
type: contains
|
2027
|
+
start_temp_id: Fraction Metamorphosis Quiz
|
2028
|
+
end_temp_id: Fraction Metamorphosis Quiz Question 2
|
2029
|
+
- temp_id: 17326->19135
|
2030
|
+
type: contains
|
2031
|
+
start_temp_id: Divide and Conquer Quiz
|
2032
|
+
end_temp_id: Divide and Conquer Quiz Question
|
2033
|
+
- temp_id: 22565->25629
|
2034
|
+
type: contains
|
2035
|
+
start_temp_id: Fraction Multiplication Quiz
|
2036
|
+
end_temp_id: Fraction Multiplication Quiz Question 1
|
2037
|
+
- temp_id: 17295->17806
|
2038
|
+
type: contains
|
2039
|
+
start_temp_id: Down to the Unit Rate Quiz
|
2040
|
+
end_temp_id: Down to the Unit Rate Quiz Question 2
|
2041
|
+
- temp_id: 17351->18758
|
2042
|
+
type: contains
|
2043
|
+
start_temp_id: Going Below Zero Quiz
|
2044
|
+
end_temp_id: Going Below Zero Quiz Question 3
|
2045
|
+
- temp_id: 17310q->17303
|
2046
|
+
type: contains
|
2047
|
+
start_temp_id: Fraction Reciprocity (Reciprocals) Quiz
|
2048
|
+
end_temp_id: Fraction Reciprocity (Reciprocals) Quiz Question 2
|
2049
|
+
- temp_id: 17353q->18844
|
2050
|
+
type: contains
|
2051
|
+
start_temp_id: Seats and Streets Quiz
|
2052
|
+
end_temp_id: Seats and Streets Quiz Question 1
|
2053
|
+
- temp_id: 17359->19221
|
2054
|
+
type: contains
|
2055
|
+
start_temp_id: Going Down the Line Quiz
|
2056
|
+
end_temp_id: Going Down the Line Quiz Question 2
|
2057
|
+
- temp_id: 17352q->18828
|
2058
|
+
type: contains
|
2059
|
+
start_temp_id: Opposites Reflect Quiz
|
2060
|
+
end_temp_id: Opposites Reflect Quiz Question 1
|
2061
|
+
- temp_id: 17492->19258
|
2062
|
+
type: contains
|
2063
|
+
start_temp_id: Choosing Tools Quiz
|
2064
|
+
end_temp_id: Choosing Tools Quiz Question 2
|
2065
|
+
- temp_id: 17293->17792
|
2066
|
+
type: contains
|
2067
|
+
start_temp_id: Tuning Into Ratios Quiz
|
2068
|
+
end_temp_id: Tuning Into Ratios Quiz Question 1
|
2069
|
+
- temp_id: 22565->25631
|
2070
|
+
type: contains
|
2071
|
+
start_temp_id: Fraction Multiplication Quiz
|
2072
|
+
end_temp_id: Fraction Multiplication Quiz Question 2
|
2073
|
+
- temp_id: 17311->17339
|
2074
|
+
type: contains
|
2075
|
+
start_temp_id: Why Divide? Quiz
|
2076
|
+
end_temp_id: Why Divide? Quiz Question 2
|
2077
|
+
- temp_id: 17351->18757
|
2078
|
+
type: contains
|
2079
|
+
start_temp_id: Going Below Zero Quiz
|
2080
|
+
end_temp_id: Going Below Zero Quiz Question 2
|
2081
|
+
- temp_id: 17484->19034
|
2082
|
+
type: contains
|
2083
|
+
start_temp_id: Fraction Metamorphosis Quiz
|
2084
|
+
end_temp_id: Fraction Metamorphosis Quiz Question 1
|
2085
|
+
- temp_id: 17361->19249
|
2086
|
+
type: contains
|
2087
|
+
start_temp_id: Absolutely Positive? Quiz
|
2088
|
+
end_temp_id: Absolutely Positive? Quiz Question 3
|
2089
|
+
- temp_id: 17352q->18831
|
2090
|
+
type: contains
|
2091
|
+
start_temp_id: Opposites Reflect Quiz
|
2092
|
+
end_temp_id: Opposites Reflect Quiz Question 2
|
2093
|
+
- temp_id: 17310q->17302
|
2094
|
+
type: contains
|
2095
|
+
start_temp_id: Fraction Reciprocity (Reciprocals) Quiz
|
2096
|
+
end_temp_id: Fraction Reciprocity (Reciprocals) Quiz Question 1
|
2097
|
+
- temp_id: 17483->19037
|
2098
|
+
type: contains
|
2099
|
+
start_temp_id: Rules of A-Fraction Quiz
|
2100
|
+
end_temp_id: Rules of A-Fraction Quiz Question 2
|
2101
|
+
- temp_id: 17360->19242
|
2102
|
+
type: contains
|
2103
|
+
start_temp_id: Lesser of Two Evils Quiz
|
2104
|
+
end_temp_id: Lesser of Two Evils Quiz Question 1
|
2105
|
+
- temp_id: 17474->18914
|
2106
|
+
type: contains
|
2107
|
+
start_temp_id: Another Side of Addition Quiz
|
2108
|
+
end_temp_id: Another Side of Addition Quiz Question 1
|
2109
|
+
- temp_id: 17334->18854
|
2110
|
+
type: contains
|
2111
|
+
start_temp_id: Adding and Subtracting Decimals Quiz
|
2112
|
+
end_temp_id: Adding and Subtracting Decimals Quiz Question 3
|
2113
|
+
- temp_id: 17301->17342
|
2114
|
+
type: contains
|
2115
|
+
start_temp_id: Visualizing Ratios Quiz
|
2116
|
+
end_temp_id: Visualizing Ratios Quiz Question 2
|
2117
|
+
- temp_id: 22564->25620
|
2118
|
+
type: contains
|
2119
|
+
start_temp_id: Fraction Notation Quiz
|
2120
|
+
end_temp_id: Fraction Notation Quiz Question 2
|
2121
|
+
- temp_id: 17311->17380
|
2122
|
+
type: contains
|
2123
|
+
start_temp_id: Why Divide? Quiz
|
2124
|
+
end_temp_id: Why Divide? Quiz Question 1
|
2125
|
+
- temp_id: 17326->19121
|
2126
|
+
type: contains
|
2127
|
+
start_temp_id: Divide and Conquer Quiz
|
2128
|
+
end_temp_id: Divide and Conquer Quiz Question
|
2129
|
+
- temp_id: 17320->18781
|
2130
|
+
type: contains
|
2131
|
+
start_temp_id: Putting it all Together Quiz
|
2132
|
+
end_temp_id: Putting it all Together Quiz Question 1
|
2133
|
+
- temp_id: 17302q->17352
|
2134
|
+
type: contains
|
2135
|
+
start_temp_id: The Power of One Quiz
|
2136
|
+
end_temp_id: The Power of One Quiz Question 1
|
2137
|
+
- temp_id: 17336->18871
|
2138
|
+
type: contains
|
2139
|
+
start_temp_id: Dividing Decimals Quiz
|
2140
|
+
end_temp_id: Dividing Decimals Quiz Question 1
|
2141
|
+
- temp_id: 17492->19264
|
2142
|
+
type: contains
|
2143
|
+
start_temp_id: Choosing Tools Quiz
|
2144
|
+
end_temp_id: Choosing Tools Quiz Question 3
|
2145
|
+
- temp_id: 17304->17449
|
2146
|
+
type: contains
|
2147
|
+
start_temp_id: Tools of Conversion Quiz
|
2148
|
+
end_temp_id: Tools of Conversion Quiz Question 3
|
2149
|
+
- temp_id: 17481->19028
|
2150
|
+
type: contains
|
2151
|
+
start_temp_id: Debt Doubling Quiz
|
2152
|
+
end_temp_id: Debt Doubling Quiz Question 3
|
2153
|
+
- temp_id: 17320->18783
|
2154
|
+
type: contains
|
2155
|
+
start_temp_id: Putting it all Together Quiz
|
2156
|
+
end_temp_id: Putting it all Together Quiz Question 2
|
2157
|
+
- temp_id: 17361->19248
|
2158
|
+
type: contains
|
2159
|
+
start_temp_id: Absolutely Positive? Quiz
|
2160
|
+
end_temp_id: Absolutely Positive? Quiz Question 2
|
2161
|
+
- temp_id: 17491->19083
|
2162
|
+
type: contains
|
2163
|
+
start_temp_id: Two-Way Problem Solving Quiz
|
2164
|
+
end_temp_id: Two-Way Problem Solving Quiz Question 1
|
2165
|
+
- temp_id: 17327->19175
|
2166
|
+
type: contains
|
2167
|
+
start_temp_id: Remain Calm Quiz
|
2168
|
+
end_temp_id: Remain Calm Quiz Question 3
|
2169
|
+
- temp_id: 17360->19246
|
2170
|
+
type: contains
|
2171
|
+
start_temp_id: Lesser of Two Evils Quiz
|
2172
|
+
end_temp_id: Lesser of Two Evils Quiz Question 3
|
2173
|
+
- temp_id: 17312->17346
|
2174
|
+
type: contains
|
2175
|
+
start_temp_id: Divvy 'Em Up Quiz
|
2176
|
+
end_temp_id: Divvy 'Em Up Quiz Question 1
|
2177
|
+
- temp_id: 17303q->17366
|
2178
|
+
type: contains
|
2179
|
+
start_temp_id: Percentages and Precision Quiz
|
2180
|
+
end_temp_id: Percentages and Precision Quiz Question 2
|
2181
|
+
- temp_id: 17483->19038
|
2182
|
+
type: contains
|
2183
|
+
start_temp_id: Rules of A-Fraction Quiz
|
2184
|
+
end_temp_id: Rules of A-Fraction Quiz Question 1
|
2185
|
+
- temp_id: 17312->17347
|
2186
|
+
type: contains
|
2187
|
+
start_temp_id: Divvy 'Em Up Quiz
|
2188
|
+
end_temp_id: Divvy 'Em Up Quiz Question 2
|
2189
|
+
- temp_id: 17294->17804
|
2190
|
+
type: contains
|
2191
|
+
start_temp_id: Ratios in Action Quiz
|
2192
|
+
end_temp_id: Ratios in Action Quiz Question 3
|
2193
|
+
- temp_id: 17493->19270
|
2194
|
+
type: contains
|
2195
|
+
start_temp_id: Checkpoints Quiz
|
2196
|
+
end_temp_id: Checkpoints Quiz Question 1
|
2197
|
+
- temp_id: 17491->19099
|
2198
|
+
type: contains
|
2199
|
+
start_temp_id: Two-Way Problem Solving Quiz
|
2200
|
+
end_temp_id: Two-Way Problem Solving Quiz Question 3
|
2201
|
+
- temp_id: 22565->25633
|
2202
|
+
type: contains
|
2203
|
+
start_temp_id: Fraction Multiplication Quiz
|
2204
|
+
end_temp_id: Fraction Multiplication Quiz Question 3
|
2205
|
+
- temp_id: 17303q->17314
|
2206
|
+
type: contains
|
2207
|
+
start_temp_id: Percentages and Precision Quiz
|
2208
|
+
end_temp_id: Percentages and Precision Quiz Question 1
|
2209
|
+
- temp_id: 17327->19164
|
2210
|
+
type: contains
|
2211
|
+
start_temp_id: Remain Calm Quiz
|
2212
|
+
end_temp_id: Remain Calm Quiz Question 2
|
2213
|
+
- temp_id: 17335->18864
|
2214
|
+
type: contains
|
2215
|
+
start_temp_id: Multiplying Decimals Quiz
|
2216
|
+
end_temp_id: Multiplying Decimals Quiz Question 2
|
2217
|
+
- temp_id: 17319->18775
|
2218
|
+
type: contains
|
2219
|
+
start_temp_id: Part, Percent, and Whole Quiz
|
2220
|
+
end_temp_id: Part, Percent, and Whole Quiz Question 2
|
2221
|
+
- temp_id: 17481->19027
|
2222
|
+
type: contains
|
2223
|
+
start_temp_id: Debt Doubling Quiz
|
2224
|
+
end_temp_id: Debt Doubling Quiz Question 2
|
2225
|
+
- temp_id: 17302q->17353
|
2226
|
+
type: contains
|
2227
|
+
start_temp_id: The Power of One Quiz
|
2228
|
+
end_temp_id: The Power of One Quiz Question 2
|
2229
|
+
- temp_id: 17319->18777
|
2230
|
+
type: contains
|
2231
|
+
start_temp_id: Part, Percent, and Whole Quiz
|
2232
|
+
end_temp_id: Part, Percent, and Whole Quiz Question 3
|
2233
|
+
- temp_id: 17301->17310
|
2234
|
+
type: contains
|
2235
|
+
start_temp_id: Visualizing Ratios Quiz
|
2236
|
+
end_temp_id: Visualizing Ratios Quiz Question 1
|
2237
|
+
- temp_id: 17301->17343
|
2238
|
+
type: contains
|
2239
|
+
start_temp_id: Visualizing Ratios Quiz
|
2240
|
+
end_temp_id: Visualizing Ratios Quiz Question 3
|
2241
|
+
- temp_id: 17492->19230
|
2242
|
+
type: contains
|
2243
|
+
start_temp_id: Choosing Tools Quiz
|
2244
|
+
end_temp_id: Choosing Tools Quiz Question 1
|
2245
|
+
- temp_id: 17484->19032
|
2246
|
+
type: contains
|
2247
|
+
start_temp_id: Fraction Metamorphosis Quiz
|
2248
|
+
end_temp_id: Fraction Metamorphosis Quiz Question 3
|
2249
|
+
- temp_id: 17475->18936
|
2250
|
+
type: contains
|
2251
|
+
start_temp_id: Proper Use of Properties Quiz
|
2252
|
+
end_temp_id: Proper Use of Properties Quiz Question 1
|
2253
|
+
- temp_id: 17318->18768
|
2254
|
+
type: contains
|
2255
|
+
start_temp_id: Melting and Freezing Quiz
|
2256
|
+
end_temp_id: Melting and Freezing Quiz Question 3
|
2257
|
+
- temp_id: 17351->18741
|
2258
|
+
type: contains
|
2259
|
+
start_temp_id: Going Below Zero Quiz
|
2260
|
+
end_temp_id: Going Below Zero Quiz Question 1
|
2261
|
+
- temp_id: 17310q->17315
|
2262
|
+
type: contains
|
2263
|
+
start_temp_id: Fraction Reciprocity (Reciprocals) Quiz
|
2264
|
+
end_temp_id: Fraction Reciprocity (Reciprocals) Quiz Question 3
|
2265
|
+
- temp_id: 17294->17803
|
2266
|
+
type: contains
|
2267
|
+
start_temp_id: Ratios in Action Quiz
|
2268
|
+
end_temp_id: Ratios in Action Quiz Question 2
|
2269
|
+
- temp_id: 17320->18784
|
2270
|
+
type: contains
|
2271
|
+
start_temp_id: Putting it all Together Quiz
|
2272
|
+
end_temp_id: Putting it all Together Quiz Question 3
|
2273
|
+
- temp_id: 17336->18873
|
2274
|
+
type: contains
|
2275
|
+
start_temp_id: Dividing Decimals Quiz
|
2276
|
+
end_temp_id: Dividing Decimals Quiz Question 3
|
2277
|
+
- temp_id: 17490->19068
|
2278
|
+
type: contains
|
2279
|
+
start_temp_id: Beyond Integers Quiz
|
2280
|
+
end_temp_id: Beyond Integers Quiz Question 1
|
2281
|
+
- temp_id: 17302q->17356
|
2282
|
+
type: contains
|
2283
|
+
start_temp_id: The Power of One Quiz
|
2284
|
+
end_temp_id: The Power of One Quiz Question 3
|
2285
|
+
- temp_id: 17319->18773
|
2286
|
+
type: contains
|
2287
|
+
start_temp_id: Part, Percent, and Whole Quiz
|
2288
|
+
end_temp_id: Part, Percent, and Whole Quiz Question 1
|
2289
|
+
- temp_id: 17483->19036
|
2290
|
+
type: contains
|
2291
|
+
start_temp_id: Rules of A-Fraction Quiz
|
2292
|
+
end_temp_id: Rules of A-Fraction Quiz Question 3
|
2293
|
+
- temp_id: 17334->18846
|
2294
|
+
type: contains
|
2295
|
+
start_temp_id: Adding and Subtracting Decimals Quiz
|
2296
|
+
end_temp_id: Adding and Subtracting Decimals Quiz Question 1
|
2297
|
+
- temp_id: 17312->17354
|
2298
|
+
type: contains
|
2299
|
+
start_temp_id: Divvy 'Em Up Quiz
|
2300
|
+
end_temp_id: Divvy 'Em Up Quiz Question 3
|
2301
|
+
- temp_id: 17490->19072
|
2302
|
+
type: contains
|
2303
|
+
start_temp_id: Beyond Integers Quiz
|
2304
|
+
end_temp_id: Beyond Integers Quiz Question 2
|
2305
|
+
- temp_id: 17295->17805
|
2306
|
+
type: contains
|
2307
|
+
start_temp_id: Down to the Unit Rate Quiz
|
2308
|
+
end_temp_id: Down to the Unit Rate Quiz Question 1
|
2309
|
+
- temp_id: 17327->19157
|
2310
|
+
type: contains
|
2311
|
+
start_temp_id: Remain Calm Quiz
|
2312
|
+
end_temp_id: Remain Calm Quiz Question 1
|
2313
|
+
- temp_id: 17473->18904
|
2314
|
+
type: contains
|
2315
|
+
start_temp_id: Zero Sum Quiz
|
2316
|
+
end_temp_id: Zero Sum Quiz Question 1
|
2317
|
+
- temp_id: 17328->19185
|
2318
|
+
type: contains
|
2319
|
+
start_temp_id: Double Trouble Quiz
|
2320
|
+
end_temp_id: Double Trouble Quiz Question 1
|
2321
|
+
- temp_id: 17482->19041
|
2322
|
+
type: contains
|
2323
|
+
start_temp_id: Debt Division Quiz
|
2324
|
+
end_temp_id: Debt Division Quiz Question 1
|
2325
|
+
- temp_id: 22566->25637
|
2326
|
+
type: contains
|
2327
|
+
start_temp_id: "(Fraction) Addition and Subtraction Quiz"
|
2328
|
+
end_temp_id: "(Fraction) Addition and Subtraction Quiz Question 2"
|
2329
|
+
- temp_id: 22566->25639
|
2330
|
+
type: contains
|
2331
|
+
start_temp_id: "(Fraction) Addition and Subtraction Quiz"
|
2332
|
+
end_temp_id: "(Fraction) Addition and Subtraction Quiz Question 3"
|
2333
|
+
- temp_id: 17491->19089
|
2334
|
+
type: contains
|
2335
|
+
start_temp_id: Two-Way Problem Solving Quiz
|
2336
|
+
end_temp_id: Two-Way Problem Solving Quiz Question 2
|
2337
|
+
- temp_id: 17474->18919
|
2338
|
+
type: contains
|
2339
|
+
start_temp_id: Another Side of Addition Quiz
|
2340
|
+
end_temp_id: Another Side of Addition Quiz Question 2
|
2341
|
+
- temp_id: 17482->19040
|
2342
|
+
type: contains
|
2343
|
+
start_temp_id: Debt Division Quiz
|
2344
|
+
end_temp_id: Debt Division Quiz Question 2
|
2345
|
+
- temp_id: 17335->18868
|
2346
|
+
type: contains
|
2347
|
+
start_temp_id: Multiplying Decimals Quiz
|
2348
|
+
end_temp_id: Multiplying Decimals Quiz Question 3
|
2349
|
+
- temp_id: 17475->18939
|
2350
|
+
type: contains
|
2351
|
+
start_temp_id: Proper Use of Properties Quiz
|
2352
|
+
end_temp_id: Proper Use of Properties Quiz Question 2
|
2353
|
+
- temp_id: 17336->18872
|
2354
|
+
type: contains
|
2355
|
+
start_temp_id: Dividing Decimals Quiz
|
2356
|
+
end_temp_id: Dividing Decimals Quiz Question 2
|
2357
|
+
- temp_id: 17353q->18847
|
2358
|
+
type: contains
|
2359
|
+
start_temp_id: Seats and Streets Quiz
|
2360
|
+
end_temp_id: Seats and Streets Quiz Question 2
|
2361
|
+
- temp_id: 17481->19026
|
2362
|
+
type: contains
|
2363
|
+
start_temp_id: Debt Doubling Quiz
|
2364
|
+
end_temp_id: Debt Doubling Quiz Question 1
|
2365
|
+
- temp_id: 17303q->17372
|
2366
|
+
type: contains
|
2367
|
+
start_temp_id: Percentages and Precision Quiz
|
2368
|
+
end_temp_id: Percentages and Precision Quiz Question 3
|
2369
|
+
- temp_id: 17352q->18833
|
2370
|
+
type: contains
|
2371
|
+
start_temp_id: Opposites Reflect Quiz
|
2372
|
+
end_temp_id: Opposites Reflect Quiz Question 3
|
2373
|
+
- temp_id: 17326->19123
|
2374
|
+
type: contains
|
2375
|
+
start_temp_id: Divide and Conquer Quiz
|
2376
|
+
end_temp_id: Divide and Conquer Quiz Question
|
2377
|
+
- temp_id: 17328->19191
|
2378
|
+
type: contains
|
2379
|
+
start_temp_id: Double Trouble Quiz
|
2380
|
+
end_temp_id: Double Trouble Quiz Question 2
|
2381
|
+
- temp_id: 17493->19277
|
2382
|
+
type: contains
|
2383
|
+
start_temp_id: Checkpoints Quiz
|
2384
|
+
end_temp_id: Checkpoints Quiz Question 2
|
2385
|
+
- temp_id: 17304->17448
|
2386
|
+
type: contains
|
2387
|
+
start_temp_id: Tools of Conversion Quiz
|
2388
|
+
end_temp_id: Tools of Conversion Quiz Question 2
|
2389
|
+
- temp_id: 22564->25624
|
2390
|
+
type: contains
|
2391
|
+
start_temp_id: Fraction Notation Quiz
|
2392
|
+
end_temp_id: Fraction Notation Quiz Question 3
|
2393
|
+
- temp_id: 17294->17802
|
2394
|
+
type: contains
|
2395
|
+
start_temp_id: Ratios in Action Quiz
|
2396
|
+
end_temp_id: Ratios in Action Quiz Question 1
|
2397
|
+
- temp_id: 17493->19280
|
2398
|
+
type: contains
|
2399
|
+
start_temp_id: Checkpoints Quiz
|
2400
|
+
end_temp_id: Checkpoints Quiz Question 3
|
2401
|
+
- temp_id: 17318->18764
|
2402
|
+
type: contains
|
2403
|
+
start_temp_id: Melting and Freezing Quiz
|
2404
|
+
end_temp_id: Melting and Freezing Quiz Question 2
|
2405
|
+
- temp_id: 17295->17807
|
2406
|
+
type: contains
|
2407
|
+
start_temp_id: Down to the Unit Rate Quiz
|
2408
|
+
end_temp_id: Down to the Unit Rate Quiz Question 3
|
2409
|
+
- temp_id: 17490->19080
|
2410
|
+
type: contains
|
2411
|
+
start_temp_id: Beyond Integers Quiz
|
2412
|
+
end_temp_id: Beyond Integers Quiz Question 3
|
2413
|
+
- temp_id: 17359->19220
|
2414
|
+
type: contains
|
2415
|
+
start_temp_id: Going Down the Line Quiz
|
2416
|
+
end_temp_id: Going Down the Line Quiz Question 1
|
2417
|
+
- temp_id: 17334->18850
|
2418
|
+
type: contains
|
2419
|
+
start_temp_id: Adding and Subtracting Decimals Quiz
|
2420
|
+
end_temp_id: Adding and Subtracting Decimals Quiz Question 2
|
2421
|
+
- temp_id: 22564->25615
|
2422
|
+
type: contains
|
2423
|
+
start_temp_id: Fraction Notation Quiz
|
2424
|
+
end_temp_id: Fraction Notation Quiz Question 1
|
2425
|
+
taxonomies:
|
2426
|
+
- name: TB
|
2427
|
+
type: topical
|
2428
|
+
taxons: []
|
2429
|
+
taxon_list:
|
2430
|
+
- temp_id: '12346'
|
2431
|
+
name: tref-Ch9
|
2432
|
+
module_temp_ids: []
|
2433
|
+
- temp_id: '12347'
|
2434
|
+
name: tref-Ch7
|
2435
|
+
module_temp_ids: []
|
2436
|
+
- temp_id: '12348'
|
2437
|
+
name: tref-Ch5
|
2438
|
+
module_temp_ids: []
|
2439
|
+
- temp_id: '12349'
|
2440
|
+
name: tref-Ch10
|
2441
|
+
module_temp_ids: []
|
2442
|
+
- temp_id: '12350'
|
2443
|
+
name: tref-Ch12
|
2444
|
+
module_temp_ids: []
|
2445
|
+
- temp_id: '12351'
|
2446
|
+
name: tref-Ch6
|
2447
|
+
module_temp_ids: []
|
2448
|
+
- temp_id: '12352'
|
2449
|
+
name: tref-Ch3
|
2450
|
+
module_temp_ids: []
|
2451
|
+
- temp_id: '12353'
|
2452
|
+
name: tref-Ch2
|
2453
|
+
module_temp_ids: []
|
2454
|
+
- temp_id: '12354'
|
2455
|
+
name: tref-Ch4
|
2456
|
+
module_temp_ids: []
|
2457
|
+
- temp_id: '12355'
|
2458
|
+
name: tref-Ch8
|
2459
|
+
module_temp_ids: []
|
2460
|
+
- temp_id: '12356'
|
2461
|
+
name: tref-Ch1
|
2462
|
+
module_temp_ids: []
|
2463
|
+
- temp_id: '12357'
|
2464
|
+
name: tref-Ch11
|
2465
|
+
module_temp_ids: []
|
2466
|
+
- temp_id: '12358'
|
2467
|
+
name: tref-Sec4
|
2468
|
+
parent_temp_id: '12357'
|
2469
|
+
module_temp_ids:
|
2470
|
+
- Tools of Conversion Lesson
|
2471
|
+
- Tools of Conversion Quiz Question 3
|
2472
|
+
- Tools of Conversion Quiz Question 2
|
2473
|
+
- Tools of Conversion Quiz Question 1
|
2474
|
+
- Tools of Conversion Quiz
|
2475
|
+
- temp_id: '12359'
|
2476
|
+
name: tref-Sec2
|
2477
|
+
parent_temp_id: '12357'
|
2478
|
+
module_temp_ids:
|
2479
|
+
- The Power of One Quiz Question 1
|
2480
|
+
- The Power of One Lesson
|
2481
|
+
- The Power of One Quiz Question 3
|
2482
|
+
- The Power of One Quiz Question 2
|
2483
|
+
- The Power of One Quiz
|
2484
|
+
- temp_id: '12360'
|
2485
|
+
name: tref-Sec3
|
2486
|
+
parent_temp_id: '12357'
|
2487
|
+
module_temp_ids:
|
2488
|
+
- Percentages and Precision Quiz Question 2
|
2489
|
+
- Percentages and Precision Quiz Question 3
|
2490
|
+
- Percentages and Precision Quiz Question 1
|
2491
|
+
- Percentages and Precision Lesson
|
2492
|
+
- Percentages and Precision Quiz
|
2493
|
+
- temp_id: '12361'
|
2494
|
+
name: tref-Sec1
|
2495
|
+
parent_temp_id: '12357'
|
2496
|
+
module_temp_ids:
|
2497
|
+
- Visualizing Ratios Quiz Question 1
|
2498
|
+
- Visualizing Ratios Quiz Question 3
|
2499
|
+
- Visualizing Ratios Lesson
|
2500
|
+
- Visualizing Ratios Quiz Question 2
|
2501
|
+
- Visualizing Ratios Quiz
|
2502
|
+
- temp_id: '12362'
|
2503
|
+
name: tref-Sec3
|
2504
|
+
parent_temp_id: '12347'
|
2505
|
+
module_temp_ids:
|
2506
|
+
- Proper Use of Properties Lesson
|
2507
|
+
- Proper Use of Properties Quiz Question 3
|
2508
|
+
- Proper Use of Properties Quiz Question 1
|
2509
|
+
- Proper Use of Properties Quiz Question 2
|
2510
|
+
- Proper Use of Properties Quiz
|
2511
|
+
- temp_id: '12363'
|
2512
|
+
name: tref-Sec2
|
2513
|
+
parent_temp_id: '12347'
|
2514
|
+
module_temp_ids:
|
2515
|
+
- Another Side of Addition Quiz Question 1
|
2516
|
+
- Another Side of Addition Quiz Question 3
|
2517
|
+
- Another Side of Addition Lesson
|
2518
|
+
- Another Side of Addition Quiz Question 2
|
2519
|
+
- Another Side of Addition Quiz
|
2520
|
+
- temp_id: '12364'
|
2521
|
+
name: tref-Sec1
|
2522
|
+
parent_temp_id: '12347'
|
2523
|
+
module_temp_ids:
|
2524
|
+
- Zero Sum Quiz Question 1
|
2525
|
+
- Zero Sum Lesson
|
2526
|
+
- Zero Sum Quiz Question 3
|
2527
|
+
- Zero Sum Quiz Question 2
|
2528
|
+
- Zero Sum Quiz
|
2529
|
+
- temp_id: '12365'
|
2530
|
+
name: tref-Sec1
|
2531
|
+
parent_temp_id: '12353'
|
2532
|
+
module_temp_ids:
|
2533
|
+
- Fraction Reciprocity (Reciprocals) Quiz Question 1
|
2534
|
+
- Fraction Reciprocity (Reciprocals) Quiz Question 3
|
2535
|
+
- Fraction Reciprocity (Reciprocals) Quiz Question 2
|
2536
|
+
- Fraction Reciprocity (Reciprocals) Lesson
|
2537
|
+
- Fraction Reciprocity (Reciprocals) Quiz
|
2538
|
+
- temp_id: '12366'
|
2539
|
+
name: tref-Sec3
|
2540
|
+
parent_temp_id: '12353'
|
2541
|
+
module_temp_ids:
|
2542
|
+
- Divvy 'Em Up Lesson
|
2543
|
+
- Divvy 'Em Up Quiz Question 2
|
2544
|
+
- Divvy 'Em Up Quiz Question 3
|
2545
|
+
- Divvy 'Em Up Quiz Question 1
|
2546
|
+
- Divvy 'Em Up Quiz
|
2547
|
+
- temp_id: '12367'
|
2548
|
+
name: tref-Sec2
|
2549
|
+
parent_temp_id: '12353'
|
2550
|
+
module_temp_ids:
|
2551
|
+
- Why Divide? Lesson
|
2552
|
+
- Why Divide? Quiz Question 2
|
2553
|
+
- Why Divide? Quiz Question 1
|
2554
|
+
- Why Divide? Quiz Question 3
|
2555
|
+
- Why Divide? Quiz
|
2556
|
+
- temp_id: '12368'
|
2557
|
+
name: tref-Sec3
|
2558
|
+
parent_temp_id: '12350'
|
2559
|
+
module_temp_ids:
|
2560
|
+
- Putting it all Together Quiz Question 3
|
2561
|
+
- Putting it all Together Quiz Question 2
|
2562
|
+
- Putting it all Together Quiz Question 1
|
2563
|
+
- Putting it all Together Lesson
|
2564
|
+
- Putting it all Together Quiz
|
2565
|
+
- temp_id: '12369'
|
2566
|
+
name: tref-Sec2
|
2567
|
+
parent_temp_id: '12350'
|
2568
|
+
module_temp_ids:
|
2569
|
+
- Part, Percent, and Whole Quiz Question 3
|
2570
|
+
- Part, Percent, and Whole Quiz Question 1
|
2571
|
+
- Part, Percent, and Whole Quiz Question 2
|
2572
|
+
- Part, Percent, and Whole Lesson
|
2573
|
+
- Part, Percent, and Whole Quiz
|
2574
|
+
- temp_id: '12370'
|
2575
|
+
name: tref-Sec1
|
2576
|
+
parent_temp_id: '12350'
|
2577
|
+
module_temp_ids:
|
2578
|
+
- Melting and Freezing Quiz Question 1
|
2579
|
+
- Melting and Freezing Lesson
|
2580
|
+
- Melting and Freezing Quiz Question 2
|
2581
|
+
- Melting and Freezing Quiz Question 3
|
2582
|
+
- Melting and Freezing Quiz
|
2583
|
+
- temp_id: '12371'
|
2584
|
+
name: tref-Sec1
|
2585
|
+
parent_temp_id: '12351'
|
2586
|
+
module_temp_ids:
|
2587
|
+
- Going Down the Line Quiz Question 1
|
2588
|
+
- Going Down the Line Lesson
|
2589
|
+
- Going Down the Line Quiz Question 2
|
2590
|
+
- Going Down the Line Quiz Question 3
|
2591
|
+
- Going Down the Line Quiz
|
2592
|
+
- temp_id: '12372'
|
2593
|
+
name: tref-Sec3
|
2594
|
+
parent_temp_id: '12351'
|
2595
|
+
module_temp_ids:
|
2596
|
+
- Absolutely Positive? Quiz Question 1
|
2597
|
+
- Absolutely Positive? Lesson
|
2598
|
+
- Absolutely Positive? Quiz Question 2
|
2599
|
+
- Absolutely Positive? Quiz Question 3
|
2600
|
+
- Absolutely Positive? Quiz
|
2601
|
+
- temp_id: '12373'
|
2602
|
+
name: tref-Sec2
|
2603
|
+
parent_temp_id: '12351'
|
2604
|
+
module_temp_ids:
|
2605
|
+
- Lesser of Two Evils Quiz Question 3
|
2606
|
+
- Lesser of Two Evils Lesson
|
2607
|
+
- Lesser of Two Evils Quiz Question 2
|
2608
|
+
- Lesser of Two Evils Quiz Question 1
|
2609
|
+
- Lesser of Two Evils Quiz
|
2610
|
+
- temp_id: '12374'
|
2611
|
+
name: tref-Sec3
|
2612
|
+
parent_temp_id: '12348'
|
2613
|
+
module_temp_ids:
|
2614
|
+
- Seats and Streets Lesson
|
2615
|
+
- Seats and Streets Quiz Question 1
|
2616
|
+
- Seats and Streets Quiz Question 2
|
2617
|
+
- Seats and Streets Quiz Question 3
|
2618
|
+
- Seats and Streets Quiz
|
2619
|
+
- temp_id: '12375'
|
2620
|
+
name: tref-Sec2
|
2621
|
+
parent_temp_id: '12348'
|
2622
|
+
module_temp_ids:
|
2623
|
+
- Opposites Reflect Lesson
|
2624
|
+
- Opposites Reflect Quiz Question 3
|
2625
|
+
- Opposites Reflect Quiz Question 1
|
2626
|
+
- Opposites Reflect Quiz Question 2
|
2627
|
+
- Opposites Reflect Quiz
|
2628
|
+
- temp_id: '12376'
|
2629
|
+
name: tref-Sec1
|
2630
|
+
parent_temp_id: '12348'
|
2631
|
+
module_temp_ids:
|
2632
|
+
- Going Below Zero Lesson
|
2633
|
+
- Going Below Zero Quiz Question 2
|
2634
|
+
- Going Below Zero Quiz Question 1
|
2635
|
+
- Going Below Zero Quiz Question 3
|
2636
|
+
- Going Below Zero Quiz
|
2637
|
+
- temp_id: '12377'
|
2638
|
+
name: tref-Sec3
|
2639
|
+
parent_temp_id: '12352'
|
2640
|
+
module_temp_ids:
|
2641
|
+
- Double Trouble Lesson
|
2642
|
+
- Double Trouble Quiz Question 3
|
2643
|
+
- Double Trouble Quiz Question 1
|
2644
|
+
- Double Trouble Quiz Question 2
|
2645
|
+
- Double Trouble Quiz
|
2646
|
+
- temp_id: '12378'
|
2647
|
+
name: tref-Sec1
|
2648
|
+
parent_temp_id: '12352'
|
2649
|
+
module_temp_ids:
|
2650
|
+
- Divide and Conquer Lesson
|
2651
|
+
- Divide and Conquer Quiz Question
|
2652
|
+
- Divide and Conquer Quiz Question
|
2653
|
+
- Divide and Conquer Quiz Question
|
2654
|
+
- Divide and Conquer Quiz
|
2655
|
+
- temp_id: '12379'
|
2656
|
+
name: tref-Sec2
|
2657
|
+
parent_temp_id: '12352'
|
2658
|
+
module_temp_ids:
|
2659
|
+
- Remain Calm Lesson
|
2660
|
+
- Remain Calm Quiz Question 1
|
2661
|
+
- Remain Calm Quiz Question 3
|
2662
|
+
- Remain Calm Quiz Question 2
|
2663
|
+
- Remain Calm Quiz
|
2664
|
+
- temp_id: '12380'
|
2665
|
+
name: tref-Sec1
|
2666
|
+
parent_temp_id: '12346'
|
2667
|
+
module_temp_ids:
|
2668
|
+
- Beyond Integers Quiz Question 3
|
2669
|
+
- Beyond Integers Quiz Question 1
|
2670
|
+
- Beyond Integers Quiz Question 2
|
2671
|
+
- Beyond Integers Lesson
|
2672
|
+
- Beyond Integers Quiz
|
2673
|
+
- temp_id: '12381'
|
2674
|
+
name: tref-Sec3
|
2675
|
+
parent_temp_id: '12346'
|
2676
|
+
module_temp_ids:
|
2677
|
+
- Choosing Tools Quiz Question 3
|
2678
|
+
- Choosing Tools Quiz Question 2
|
2679
|
+
- Choosing Tools Quiz Question 1
|
2680
|
+
- Choosing Tools Lesson
|
2681
|
+
- Choosing Tools Quiz
|
2682
|
+
- temp_id: '12382'
|
2683
|
+
name: tref-Sec4
|
2684
|
+
parent_temp_id: '12346'
|
2685
|
+
module_temp_ids:
|
2686
|
+
- Checkpoints Lesson
|
2687
|
+
- Checkpoints Quiz Question 2
|
2688
|
+
- Checkpoints Quiz Question 1
|
2689
|
+
- Checkpoints Quiz Question 3
|
2690
|
+
- Checkpoints Quiz
|
2691
|
+
- temp_id: '12383'
|
2692
|
+
name: tref-Sec2
|
2693
|
+
parent_temp_id: '12346'
|
2694
|
+
module_temp_ids:
|
2695
|
+
- Two-Way Problem Solving Quiz Question 3
|
2696
|
+
- Two-Way Problem Solving Lesson
|
2697
|
+
- Two-Way Problem Solving Quiz Question 1
|
2698
|
+
- Two-Way Problem Solving Quiz Question 2
|
2699
|
+
- Two-Way Problem Solving Quiz
|
2700
|
+
- temp_id: '12384'
|
2701
|
+
name: tref-Sec1
|
2702
|
+
parent_temp_id: '12354'
|
2703
|
+
module_temp_ids:
|
2704
|
+
- Adding and Subtracting Decimals Lesson
|
2705
|
+
- Adding and Subtracting Decimals Quiz Question 2
|
2706
|
+
- Adding and Subtracting Decimals Quiz Question 1
|
2707
|
+
- Adding and Subtracting Decimals Quiz Question 3
|
2708
|
+
- Adding and Subtracting Decimals Quiz
|
2709
|
+
- temp_id: '12385'
|
2710
|
+
name: tref-Sec3
|
2711
|
+
parent_temp_id: '12354'
|
2712
|
+
module_temp_ids:
|
2713
|
+
- Dividing Decimals Quiz Question 2
|
2714
|
+
- Dividing Decimals Quiz Question 1
|
2715
|
+
- Dividing Decimals Lesson
|
2716
|
+
- Dividing Decimals Quiz Question 3
|
2717
|
+
- Dividing Decimals Quiz
|
2718
|
+
- temp_id: '12386'
|
2719
|
+
name: tref-Sec2
|
2720
|
+
parent_temp_id: '12354'
|
2721
|
+
module_temp_ids:
|
2722
|
+
- Multiplying Decimals Quiz Question 3
|
2723
|
+
- Multiplying Decimals Lesson
|
2724
|
+
- Multiplying Decimals Quiz Question 2
|
2725
|
+
- Multiplying Decimals Quiz Question 1
|
2726
|
+
- Multiplying Decimals Quiz
|
2727
|
+
- temp_id: '12387'
|
2728
|
+
name: tref-Sec3
|
2729
|
+
parent_temp_id: '12349'
|
2730
|
+
module_temp_ids:
|
2731
|
+
- Down to the Unit Rate Quiz Question 3
|
2732
|
+
- Down to the Unit Rate Quiz Question 2
|
2733
|
+
- Down to the Unit Rate Quiz Question 1
|
2734
|
+
- Down to the Unit Rate Lesson
|
2735
|
+
- Down to the Unit Rate Quiz
|
2736
|
+
- temp_id: '12388'
|
2737
|
+
name: tref-Sec1
|
2738
|
+
parent_temp_id: '12349'
|
2739
|
+
module_temp_ids:
|
2740
|
+
- Tuning Into Ratios Quiz Question 1
|
2741
|
+
- Tuning Into Ratios Quiz Question 2
|
2742
|
+
- Tuning Into Ratios Lesson
|
2743
|
+
- Tuning Into Ratios Quiz Question 3
|
2744
|
+
- Tuning Into Ratios Quiz
|
2745
|
+
- temp_id: '12389'
|
2746
|
+
name: tref-Sec2
|
2747
|
+
parent_temp_id: '12349'
|
2748
|
+
module_temp_ids:
|
2749
|
+
- Ratios in Action Quiz Question 1
|
2750
|
+
- Ratios in Action Quiz Question 2
|
2751
|
+
- Ratios in Action Lesson
|
2752
|
+
- Ratios in Action Quiz Question 3
|
2753
|
+
- Ratios in Action Quiz
|
2754
|
+
- temp_id: '12390'
|
2755
|
+
name: tref-Sec1
|
2756
|
+
parent_temp_id: '12356'
|
2757
|
+
module_temp_ids:
|
2758
|
+
- Fraction Notation Quiz Question 1
|
2759
|
+
- Fraction Notation Quiz Question 3
|
2760
|
+
- Fraction Notation Quiz Question 2
|
2761
|
+
- Fraction Notation Lesson
|
2762
|
+
- Fraction Notation Quiz
|
2763
|
+
- temp_id: '12391'
|
2764
|
+
name: tref-Sec2
|
2765
|
+
parent_temp_id: '12356'
|
2766
|
+
module_temp_ids:
|
2767
|
+
- Fraction Multiplication Quiz Question 1
|
2768
|
+
- Fraction Multiplication Lesson
|
2769
|
+
- Fraction Multiplication Quiz Question 2
|
2770
|
+
- Fraction Multiplication Quiz Question 3
|
2771
|
+
- Fraction Multiplication Quiz
|
2772
|
+
- temp_id: '12392'
|
2773
|
+
name: tref-Sec3
|
2774
|
+
parent_temp_id: '12356'
|
2775
|
+
module_temp_ids:
|
2776
|
+
- "(Fraction) Addition and Subtraction Quiz Question 2"
|
2777
|
+
- "(Fraction) Addition and Subtraction Lesson"
|
2778
|
+
- "(Fraction) Addition and Subtraction Quiz Question 3"
|
2779
|
+
- "(Fraction) Addition and Subtraction Quiz Question 1"
|
2780
|
+
- "(Fraction) Addition and Subtraction Quiz"
|
2781
|
+
- temp_id: '12393'
|
2782
|
+
name: tref-Sec1
|
2783
|
+
parent_temp_id: '12355'
|
2784
|
+
module_temp_ids:
|
2785
|
+
- Debt Doubling Quiz Question 1
|
2786
|
+
- Debt Doubling Quiz Question 3
|
2787
|
+
- Debt Doubling Quiz Question 2
|
2788
|
+
- Debt Doubling Lesson
|
2789
|
+
- Debt Doubling Quiz
|
2790
|
+
- temp_id: '12394'
|
2791
|
+
name: tref-Sec4
|
2792
|
+
parent_temp_id: '12355'
|
2793
|
+
module_temp_ids:
|
2794
|
+
- Fraction Metamorphosis Quiz Question 1
|
2795
|
+
- Fraction Metamorphosis Quiz Question 3
|
2796
|
+
- Fraction Metamorphosis Lesson
|
2797
|
+
- Fraction Metamorphosis Quiz Question 2
|
2798
|
+
- Fraction Metamorphosis Quiz
|
2799
|
+
- temp_id: '12395'
|
2800
|
+
name: tref-Sec2
|
2801
|
+
parent_temp_id: '12355'
|
2802
|
+
module_temp_ids:
|
2803
|
+
- Debt Division Quiz Question 3
|
2804
|
+
- Debt Division Lesson
|
2805
|
+
- Debt Division Quiz Question 1
|
2806
|
+
- Debt Division Quiz Question 2
|
2807
|
+
- Debt Division Quiz
|
2808
|
+
- temp_id: '12396'
|
2809
|
+
name: tref-Sec3
|
2810
|
+
parent_temp_id: '12355'
|
2811
|
+
module_temp_ids:
|
2812
|
+
- Rules of A-Fraction Lesson
|
2813
|
+
- Rules of A-Fraction Quiz Question 2
|
2814
|
+
- Rules of A-Fraction Quiz Question 3
|
2815
|
+
- Rules of A-Fraction Quiz Question 1
|
2816
|
+
- Rules of A-Fraction Quiz
|
2817
|
+
- name: CCSS
|
2818
|
+
type: topical
|
2819
|
+
taxons: []
|
2820
|
+
taxon_list:
|
2821
|
+
- temp_id: '12397'
|
2822
|
+
name: tref-Percents
|
2823
|
+
module_temp_ids:
|
2824
|
+
- Melting and Freezing Quiz Question 1
|
2825
|
+
- Part, Percent, and Whole Quiz Question 3
|
2826
|
+
- Part, Percent, and Whole Quiz Question 1
|
2827
|
+
- Part, Percent, and Whole Quiz Question 2
|
2828
|
+
- Part, Percent, and Whole Lesson
|
2829
|
+
- Melting and Freezing Lesson
|
2830
|
+
- Putting it all Together Quiz Question 3
|
2831
|
+
- Putting it all Together Quiz Question 2
|
2832
|
+
- Putting it all Together Quiz Question 1
|
2833
|
+
- Putting it all Together Lesson
|
2834
|
+
- Melting and Freezing Quiz Question 2
|
2835
|
+
- Melting and Freezing Quiz Question 3
|
2836
|
+
- Part, Percent, and Whole Quiz
|
2837
|
+
- Putting it all Together Quiz
|
2838
|
+
- Melting and Freezing Quiz
|
2839
|
+
- temp_id: '12398'
|
2840
|
+
name: tref-5
|
2841
|
+
module_temp_ids: []
|
2842
|
+
- temp_id: '12399'
|
2843
|
+
name: tref-7
|
2844
|
+
module_temp_ids: []
|
2845
|
+
- temp_id: '12400'
|
2846
|
+
name: tref-6
|
2847
|
+
module_temp_ids: []
|
2848
|
+
- temp_id: '12401'
|
2849
|
+
name: tref-RP
|
2850
|
+
parent_temp_id: '12400'
|
2851
|
+
module_temp_ids: []
|
2852
|
+
- temp_id: '12402'
|
2853
|
+
name: tref-NS
|
2854
|
+
parent_temp_id: '12400'
|
2855
|
+
module_temp_ids: []
|
2856
|
+
- temp_id: '12403'
|
2857
|
+
name: tref-NS
|
2858
|
+
parent_temp_id: '12399'
|
2859
|
+
module_temp_ids: []
|
2860
|
+
- temp_id: '12404'
|
2861
|
+
name: tref-7
|
2862
|
+
parent_temp_id: '12402'
|
2863
|
+
module_temp_ids:
|
2864
|
+
- Going Down the Line Quiz Question 1
|
2865
|
+
- Lesser of Two Evils Quiz Question 3
|
2866
|
+
- Going Down the Line Lesson
|
2867
|
+
- Going Down the Line Quiz Question 2
|
2868
|
+
- Absolutely Positive? Quiz Question 1
|
2869
|
+
- Absolutely Positive? Lesson
|
2870
|
+
- Absolutely Positive? Quiz Question 2
|
2871
|
+
- Lesser of Two Evils Lesson
|
2872
|
+
- Lesser of Two Evils Quiz Question 2
|
2873
|
+
- Going Down the Line Quiz Question 3
|
2874
|
+
- Absolutely Positive? Quiz Question 3
|
2875
|
+
- Lesser of Two Evils Quiz Question 1
|
2876
|
+
- Going Down the Line Quiz
|
2877
|
+
- Lesser of Two Evils Quiz
|
2878
|
+
- Absolutely Positive? Quiz
|
2879
|
+
- temp_id: '12405'
|
2880
|
+
name: tref-3
|
2881
|
+
parent_temp_id: '12402'
|
2882
|
+
module_temp_ids:
|
2883
|
+
- Dividing Decimals Quiz Question 2
|
2884
|
+
- Multiplying Decimals Quiz Question 3
|
2885
|
+
- Adding and Subtracting Decimals Lesson
|
2886
|
+
- Adding and Subtracting Decimals Quiz Question 2
|
2887
|
+
- Multiplying Decimals Lesson
|
2888
|
+
- Multiplying Decimals Quiz Question 2
|
2889
|
+
- Dividing Decimals Quiz Question 1
|
2890
|
+
- Dividing Decimals Lesson
|
2891
|
+
- Dividing Decimals Quiz Question 3
|
2892
|
+
- Adding and Subtracting Decimals Quiz Question 1
|
2893
|
+
- Multiplying Decimals Quiz Question 1
|
2894
|
+
- Adding and Subtracting Decimals Quiz Question 3
|
2895
|
+
- Multiplying Decimals Quiz
|
2896
|
+
- Adding and Subtracting Decimals Quiz
|
2897
|
+
- Dividing Decimals Quiz
|
2898
|
+
- temp_id: '12406'
|
2899
|
+
name: tref-5
|
2900
|
+
parent_temp_id: '12402'
|
2901
|
+
module_temp_ids:
|
2902
|
+
- Opposites Reflect Lesson
|
2903
|
+
- Going Below Zero Lesson
|
2904
|
+
- Opposites Reflect Quiz Question 3
|
2905
|
+
- Seats and Streets Lesson
|
2906
|
+
- Opposites Reflect Quiz Question 1
|
2907
|
+
- Going Below Zero Quiz Question 2
|
2908
|
+
- Opposites Reflect Quiz Question 2
|
2909
|
+
- Seats and Streets Quiz Question 1
|
2910
|
+
- Going Below Zero Quiz Question 1
|
2911
|
+
- Seats and Streets Quiz Question 2
|
2912
|
+
- Going Below Zero Quiz Question 3
|
2913
|
+
- Seats and Streets Quiz Question 3
|
2914
|
+
- Seats and Streets Quiz
|
2915
|
+
- Opposites Reflect Quiz
|
2916
|
+
- Going Below Zero Quiz
|
2917
|
+
- temp_id: '12407'
|
2918
|
+
name: tref-1
|
2919
|
+
parent_temp_id: '12402'
|
2920
|
+
module_temp_ids:
|
2921
|
+
- Divvy 'Em Up Lesson
|
2922
|
+
- Divvy 'Em Up Quiz Question 2
|
2923
|
+
- Why Divide? Lesson
|
2924
|
+
- Why Divide? Quiz Question 2
|
2925
|
+
- Divvy 'Em Up Quiz Question 3
|
2926
|
+
- Fraction Reciprocity (Reciprocals) Quiz Question 1
|
2927
|
+
- Why Divide? Quiz Question 1
|
2928
|
+
- Fraction Reciprocity (Reciprocals) Quiz Question 3
|
2929
|
+
- Fraction Reciprocity (Reciprocals) Quiz Question 2
|
2930
|
+
- Why Divide? Quiz Question 3
|
2931
|
+
- Fraction Reciprocity (Reciprocals) Lesson
|
2932
|
+
- Divvy 'Em Up Quiz Question 1
|
2933
|
+
- Fraction Reciprocity (Reciprocals) Quiz
|
2934
|
+
- Why Divide? Quiz
|
2935
|
+
- Divvy 'Em Up Quiz
|
2936
|
+
- temp_id: '12408'
|
2937
|
+
name: tref-2
|
2938
|
+
parent_temp_id: '12402'
|
2939
|
+
module_temp_ids:
|
2940
|
+
- Double Trouble Lesson
|
2941
|
+
- Double Trouble Quiz Question 3
|
2942
|
+
- Remain Calm Lesson
|
2943
|
+
- Remain Calm Quiz Question 1
|
2944
|
+
- Divide and Conquer Lesson
|
2945
|
+
- Double Trouble Quiz Question 1
|
2946
|
+
- Divide and Conquer Quiz Question
|
2947
|
+
- Double Trouble Quiz Question 2
|
2948
|
+
- Remain Calm Quiz Question 3
|
2949
|
+
- Divide and Conquer Quiz Question
|
2950
|
+
- Remain Calm Quiz Question 2
|
2951
|
+
- Divide and Conquer Quiz Question
|
2952
|
+
- Double Trouble Quiz
|
2953
|
+
- Remain Calm Quiz
|
2954
|
+
- Divide and Conquer Quiz
|
2955
|
+
- temp_id: '12409'
|
2956
|
+
name: tref-6
|
2957
|
+
parent_temp_id: '12402'
|
2958
|
+
module_temp_ids:
|
2959
|
+
- Opposites Reflect Lesson
|
2960
|
+
- Going Below Zero Lesson
|
2961
|
+
- Opposites Reflect Quiz Question 3
|
2962
|
+
- Seats and Streets Lesson
|
2963
|
+
- Opposites Reflect Quiz Question 1
|
2964
|
+
- Going Below Zero Quiz Question 2
|
2965
|
+
- Opposites Reflect Quiz Question 2
|
2966
|
+
- Seats and Streets Quiz Question 1
|
2967
|
+
- Going Below Zero Quiz Question 1
|
2968
|
+
- Seats and Streets Quiz Question 2
|
2969
|
+
- Going Below Zero Quiz Question 3
|
2970
|
+
- Seats and Streets Quiz Question 3
|
2971
|
+
- Seats and Streets Quiz
|
2972
|
+
- Opposites Reflect Quiz
|
2973
|
+
- Going Below Zero Quiz
|
2974
|
+
- temp_id: '12410'
|
2975
|
+
name: tref-NF
|
2976
|
+
parent_temp_id: '12398'
|
2977
|
+
module_temp_ids: []
|
2978
|
+
- temp_id: '12411'
|
2979
|
+
name: tref-1
|
2980
|
+
parent_temp_id: '12403'
|
2981
|
+
module_temp_ids:
|
2982
|
+
- Another Side of Addition Quiz Question 1
|
2983
|
+
- Another Side of Addition Quiz Question 3
|
2984
|
+
- Proper Use of Properties Lesson
|
2985
|
+
- Proper Use of Properties Quiz Question 3
|
2986
|
+
- Zero Sum Quiz Question 1
|
2987
|
+
- Proper Use of Properties Quiz Question 1
|
2988
|
+
- Another Side of Addition Lesson
|
2989
|
+
- Zero Sum Lesson
|
2990
|
+
- Proper Use of Properties Quiz Question 2
|
2991
|
+
- Zero Sum Quiz Question 3
|
2992
|
+
- Another Side of Addition Quiz Question 2
|
2993
|
+
- Zero Sum Quiz Question 2
|
2994
|
+
- Zero Sum Quiz
|
2995
|
+
- Proper Use of Properties Quiz
|
2996
|
+
- Another Side of Addition Quiz
|
2997
|
+
- temp_id: '12412'
|
2998
|
+
name: tref-3
|
2999
|
+
parent_temp_id: '12403'
|
3000
|
+
module_temp_ids:
|
3001
|
+
- Beyond Integers Quiz Question 3
|
3002
|
+
- Choosing Tools Quiz Question 3
|
3003
|
+
- Two-Way Problem Solving Quiz Question 3
|
3004
|
+
- Two-Way Problem Solving Lesson
|
3005
|
+
- Two-Way Problem Solving Quiz Question 1
|
3006
|
+
- Choosing Tools Quiz Question 2
|
3007
|
+
- Choosing Tools Quiz Question 1
|
3008
|
+
- Beyond Integers Quiz Question 1
|
3009
|
+
- Two-Way Problem Solving Quiz Question 2
|
3010
|
+
- Beyond Integers Quiz Question 2
|
3011
|
+
- Choosing Tools Lesson
|
3012
|
+
- Checkpoints Lesson
|
3013
|
+
- Beyond Integers Lesson
|
3014
|
+
- Checkpoints Quiz Question 2
|
3015
|
+
- Checkpoints Quiz Question 1
|
3016
|
+
- Checkpoints Quiz Question 3
|
3017
|
+
- Beyond Integers Quiz
|
3018
|
+
- Choosing Tools Quiz
|
3019
|
+
- Two-Way Problem Solving Quiz
|
3020
|
+
- Checkpoints Quiz
|
3021
|
+
- temp_id: '12413'
|
3022
|
+
name: tref-2
|
3023
|
+
parent_temp_id: '12403'
|
3024
|
+
module_temp_ids:
|
3025
|
+
- Rules of A-Fraction Lesson
|
3026
|
+
- Debt Division Quiz Question 3
|
3027
|
+
- Fraction Metamorphosis Quiz Question 1
|
3028
|
+
- Fraction Metamorphosis Quiz Question 3
|
3029
|
+
- Fraction Metamorphosis Lesson
|
3030
|
+
- Debt Doubling Quiz Question 1
|
3031
|
+
- Debt Doubling Quiz Question 3
|
3032
|
+
- Rules of A-Fraction Quiz Question 2
|
3033
|
+
- Rules of A-Fraction Quiz Question 3
|
3034
|
+
- Debt Doubling Quiz Question 2
|
3035
|
+
- Fraction Metamorphosis Quiz Question 2
|
3036
|
+
- Debt Division Lesson
|
3037
|
+
- Rules of A-Fraction Quiz Question 1
|
3038
|
+
- Debt Division Quiz Question 1
|
3039
|
+
- Debt Division Quiz Question 2
|
3040
|
+
- Debt Doubling Lesson
|
3041
|
+
- Debt Doubling Quiz
|
3042
|
+
- Debt Division Quiz
|
3043
|
+
- Rules of A-Fraction Quiz
|
3044
|
+
- Fraction Metamorphosis Quiz
|
3045
|
+
- temp_id: '12414'
|
3046
|
+
name: tref-2
|
3047
|
+
parent_temp_id: '12401'
|
3048
|
+
module_temp_ids:
|
3049
|
+
- Ratios in Action Quiz Question 1
|
3050
|
+
- Down to the Unit Rate Quiz Question 3
|
3051
|
+
- Down to the Unit Rate Quiz Question 2
|
3052
|
+
- Ratios in Action Quiz Question 2
|
3053
|
+
- Ratios in Action Lesson
|
3054
|
+
- Down to the Unit Rate Quiz Question 1
|
3055
|
+
- Down to the Unit Rate Lesson
|
3056
|
+
- Tuning Into Ratios Quiz Question 1
|
3057
|
+
- Tuning Into Ratios Quiz Question 2
|
3058
|
+
- Tuning Into Ratios Lesson
|
3059
|
+
- Ratios in Action Quiz Question 3
|
3060
|
+
- Tuning Into Ratios Quiz Question 3
|
3061
|
+
- Down to the Unit Rate Quiz
|
3062
|
+
- Tuning Into Ratios Quiz
|
3063
|
+
- Ratios in Action Quiz
|
3064
|
+
- temp_id: '12415'
|
3065
|
+
name: tref-1
|
3066
|
+
parent_temp_id: '12401'
|
3067
|
+
module_temp_ids:
|
3068
|
+
- Ratios in Action Quiz Question 1
|
3069
|
+
- Down to the Unit Rate Quiz Question 3
|
3070
|
+
- Down to the Unit Rate Quiz Question 2
|
3071
|
+
- Ratios in Action Quiz Question 2
|
3072
|
+
- Ratios in Action Lesson
|
3073
|
+
- Down to the Unit Rate Quiz Question 1
|
3074
|
+
- Down to the Unit Rate Lesson
|
3075
|
+
- Tuning Into Ratios Quiz Question 1
|
3076
|
+
- Tuning Into Ratios Quiz Question 2
|
3077
|
+
- Tuning Into Ratios Lesson
|
3078
|
+
- Ratios in Action Quiz Question 3
|
3079
|
+
- Tuning Into Ratios Quiz Question 3
|
3080
|
+
- Down to the Unit Rate Quiz
|
3081
|
+
- Tuning Into Ratios Quiz
|
3082
|
+
- Ratios in Action Quiz
|
3083
|
+
- temp_id: '12416'
|
3084
|
+
name: tref-3
|
3085
|
+
parent_temp_id: '12401'
|
3086
|
+
module_temp_ids:
|
3087
|
+
- Percentages and Precision Quiz Question 2
|
3088
|
+
- Visualizing Ratios Quiz Question 1
|
3089
|
+
- Tools of Conversion Lesson
|
3090
|
+
- Tools of Conversion Quiz Question 3
|
3091
|
+
- The Power of One Quiz Question 1
|
3092
|
+
- The Power of One Lesson
|
3093
|
+
- Percentages and Precision Quiz Question 3
|
3094
|
+
- Visualizing Ratios Quiz Question 3
|
3095
|
+
- Tools of Conversion Quiz Question 2
|
3096
|
+
- Visualizing Ratios Lesson
|
3097
|
+
- Percentages and Precision Quiz Question 1
|
3098
|
+
- Tools of Conversion Quiz Question 1
|
3099
|
+
- Visualizing Ratios Quiz Question 2
|
3100
|
+
- The Power of One Quiz Question 3
|
3101
|
+
- The Power of One Quiz Question 2
|
3102
|
+
- Percentages and Precision Lesson
|
3103
|
+
- The Power of One Quiz
|
3104
|
+
- Visualizing Ratios Quiz
|
3105
|
+
- Percentages and Precision Quiz
|
3106
|
+
- Tools of Conversion Quiz
|
3107
|
+
- temp_id: '12417'
|
3108
|
+
name: tref-1
|
3109
|
+
parent_temp_id: '12410'
|
3110
|
+
module_temp_ids:
|
3111
|
+
- "(Fraction) Addition and Subtraction Quiz Question 2"
|
3112
|
+
- Fraction Multiplication Quiz Question 1
|
3113
|
+
- Fraction Notation Quiz Question 1
|
3114
|
+
- Fraction Notation Quiz Question 3
|
3115
|
+
- Fraction Multiplication Lesson
|
3116
|
+
- "(Fraction) Addition and Subtraction Lesson"
|
3117
|
+
- "(Fraction) Addition and Subtraction Quiz Question 3"
|
3118
|
+
- "(Fraction) Addition and Subtraction Quiz Question 1"
|
3119
|
+
- Fraction Notation Quiz Question 2
|
3120
|
+
- Fraction Multiplication Quiz Question 2
|
3121
|
+
- Fraction Multiplication Quiz Question 3
|
3122
|
+
- Fraction Notation Lesson
|
3123
|
+
- Fraction Multiplication Quiz
|
3124
|
+
- Fraction Notation Quiz
|
3125
|
+
- "(Fraction) Addition and Subtraction Quiz"
|
3126
|
+
- temp_id: '12418'
|
3127
|
+
name: tref-4a
|
3128
|
+
parent_temp_id: '12410'
|
3129
|
+
module_temp_ids:
|
3130
|
+
- "(Fraction) Addition and Subtraction Quiz Question 2"
|
3131
|
+
- Fraction Multiplication Quiz Question 1
|
3132
|
+
- Fraction Notation Quiz Question 1
|
3133
|
+
- Fraction Notation Quiz Question 3
|
3134
|
+
- Fraction Multiplication Lesson
|
3135
|
+
- "(Fraction) Addition and Subtraction Lesson"
|
3136
|
+
- "(Fraction) Addition and Subtraction Quiz Question 3"
|
3137
|
+
- "(Fraction) Addition and Subtraction Quiz Question 1"
|
3138
|
+
- Fraction Notation Quiz Question 2
|
3139
|
+
- Fraction Multiplication Quiz Question 2
|
3140
|
+
- Fraction Multiplication Quiz Question 3
|
3141
|
+
- Fraction Notation Lesson
|
3142
|
+
- Fraction Multiplication Quiz
|
3143
|
+
- Fraction Notation Quiz
|
3144
|
+
- "(Fraction) Addition and Subtraction Quiz"
|
3145
|
+
- temp_id: '12419'
|
3146
|
+
name: tref-3
|
3147
|
+
parent_temp_id: '12410'
|
3148
|
+
module_temp_ids:
|
3149
|
+
- "(Fraction) Addition and Subtraction Quiz Question 2"
|
3150
|
+
- Fraction Multiplication Quiz Question 1
|
3151
|
+
- Fraction Notation Quiz Question 1
|
3152
|
+
- Fraction Notation Quiz Question 3
|
3153
|
+
- Fraction Multiplication Lesson
|
3154
|
+
- "(Fraction) Addition and Subtraction Lesson"
|
3155
|
+
- "(Fraction) Addition and Subtraction Quiz Question 3"
|
3156
|
+
- "(Fraction) Addition and Subtraction Quiz Question 1"
|
3157
|
+
- Fraction Notation Quiz Question 2
|
3158
|
+
- Fraction Multiplication Quiz Question 2
|
3159
|
+
- Fraction Multiplication Quiz Question 3
|
3160
|
+
- Fraction Notation Lesson
|
3161
|
+
- Fraction Multiplication Quiz
|
3162
|
+
- Fraction Notation Quiz
|
3163
|
+
- "(Fraction) Addition and Subtraction Quiz"
|
3164
|
+
- temp_id: '12420'
|
3165
|
+
name: tref-7a
|
3166
|
+
parent_temp_id: '12410'
|
3167
|
+
module_temp_ids:
|
3168
|
+
- "(Fraction) Addition and Subtraction Quiz Question 2"
|
3169
|
+
- Fraction Multiplication Quiz Question 1
|
3170
|
+
- Fraction Notation Quiz Question 1
|
3171
|
+
- Fraction Notation Quiz Question 3
|
3172
|
+
- Fraction Multiplication Lesson
|
3173
|
+
- "(Fraction) Addition and Subtraction Lesson"
|
3174
|
+
- "(Fraction) Addition and Subtraction Quiz Question 3"
|
3175
|
+
- "(Fraction) Addition and Subtraction Quiz Question 1"
|
3176
|
+
- Fraction Notation Quiz Question 2
|
3177
|
+
- Fraction Multiplication Quiz Question 2
|
3178
|
+
- Fraction Multiplication Quiz Question 3
|
3179
|
+
- Fraction Notation Lesson
|
3180
|
+
- Fraction Multiplication Quiz
|
3181
|
+
- Fraction Notation Quiz
|
3182
|
+
- "(Fraction) Addition and Subtraction Quiz"
|
3183
|
+
- name: Concept
|
3184
|
+
type: topical
|
3185
|
+
taxons: []
|
3186
|
+
taxon_list:
|
3187
|
+
- temp_id: '12421'
|
3188
|
+
name: tref-6.1
|
3189
|
+
module_temp_ids:
|
3190
|
+
- Going Down the Line Quiz Question 1
|
3191
|
+
- Going Down the Line Lesson
|
3192
|
+
- Going Down the Line Quiz Question 2
|
3193
|
+
- Going Down the Line Quiz Question 3
|
3194
|
+
- Going Down the Line Quiz
|
3195
|
+
- temp_id: '12422'
|
3196
|
+
name: tref-8.2
|
3197
|
+
module_temp_ids:
|
3198
|
+
- Debt Division Quiz Question 3
|
3199
|
+
- Debt Division Lesson
|
3200
|
+
- Debt Division Quiz Question 1
|
3201
|
+
- Debt Division Quiz Question 2
|
3202
|
+
- Debt Division Quiz
|
3203
|
+
- temp_id: '12423'
|
3204
|
+
name: tref-9.1
|
3205
|
+
module_temp_ids:
|
3206
|
+
- Beyond Integers Quiz Question 3
|
3207
|
+
- Beyond Integers Quiz Question 1
|
3208
|
+
- Beyond Integers Quiz Question 2
|
3209
|
+
- Beyond Integers Lesson
|
3210
|
+
- Beyond Integers Quiz
|
3211
|
+
- temp_id: '12424'
|
3212
|
+
name: tref-1.2
|
3213
|
+
module_temp_ids:
|
3214
|
+
- Fraction Multiplication Quiz Question 1
|
3215
|
+
- Fraction Multiplication Lesson
|
3216
|
+
- Fraction Multiplication Quiz Question 2
|
3217
|
+
- Fraction Multiplication Quiz Question 3
|
3218
|
+
- Fraction Multiplication Quiz
|
3219
|
+
- temp_id: '12425'
|
3220
|
+
name: tref-10.3
|
3221
|
+
module_temp_ids:
|
3222
|
+
- Down to the Unit Rate Quiz Question 3
|
3223
|
+
- Down to the Unit Rate Quiz Question 2
|
3224
|
+
- Down to the Unit Rate Quiz Question 1
|
3225
|
+
- Down to the Unit Rate Lesson
|
3226
|
+
- Down to the Unit Rate Quiz
|
3227
|
+
- temp_id: '12426'
|
3228
|
+
name: tref-3.1
|
3229
|
+
module_temp_ids:
|
3230
|
+
- Divide and Conquer Lesson
|
3231
|
+
- Divide and Conquer Quiz Question
|
3232
|
+
- Divide and Conquer Quiz Question
|
3233
|
+
- Divide and Conquer Quiz Question
|
3234
|
+
- Divide and Conquer Quiz
|
3235
|
+
- temp_id: '12427'
|
3236
|
+
name: tref-12.2
|
3237
|
+
module_temp_ids:
|
3238
|
+
- Part, Percent, and Whole Quiz Question 3
|
3239
|
+
- Part, Percent, and Whole Quiz Question 1
|
3240
|
+
- Part, Percent, and Whole Quiz Question 2
|
3241
|
+
- Part, Percent, and Whole Lesson
|
3242
|
+
- Part, Percent, and Whole Quiz
|
3243
|
+
- temp_id: '12428'
|
3244
|
+
name: tref-8.4
|
3245
|
+
module_temp_ids:
|
3246
|
+
- Fraction Metamorphosis Quiz Question 1
|
3247
|
+
- Fraction Metamorphosis Quiz Question 3
|
3248
|
+
- Fraction Metamorphosis Lesson
|
3249
|
+
- Fraction Metamorphosis Quiz Question 2
|
3250
|
+
- Fraction Metamorphosis Quiz
|
3251
|
+
- temp_id: '12429'
|
3252
|
+
name: tref-2.2
|
3253
|
+
module_temp_ids:
|
3254
|
+
- Why Divide? Lesson
|
3255
|
+
- Why Divide? Quiz Question 2
|
3256
|
+
- Why Divide? Quiz Question 1
|
3257
|
+
- Why Divide? Quiz Question 3
|
3258
|
+
- Why Divide? Quiz
|
3259
|
+
- temp_id: '12430'
|
3260
|
+
name: tref-11.3
|
3261
|
+
module_temp_ids:
|
3262
|
+
- Percentages and Precision Quiz Question 2
|
3263
|
+
- Percentages and Precision Quiz Question 3
|
3264
|
+
- Percentages and Precision Quiz Question 1
|
3265
|
+
- Percentages and Precision Lesson
|
3266
|
+
- Percentages and Precision Quiz
|
3267
|
+
- temp_id: '12431'
|
3268
|
+
name: tref-6.3
|
3269
|
+
module_temp_ids:
|
3270
|
+
- Absolutely Positive? Quiz Question 1
|
3271
|
+
- Absolutely Positive? Lesson
|
3272
|
+
- Absolutely Positive? Quiz Question 2
|
3273
|
+
- Absolutely Positive? Quiz Question 3
|
3274
|
+
- Absolutely Positive? Quiz
|
3275
|
+
- temp_id: '12432'
|
3276
|
+
name: tref-11.4
|
3277
|
+
module_temp_ids:
|
3278
|
+
- Tools of Conversion Lesson
|
3279
|
+
- Tools of Conversion Quiz Question 3
|
3280
|
+
- Tools of Conversion Quiz Question 2
|
3281
|
+
- Tools of Conversion Quiz Question 1
|
3282
|
+
- Tools of Conversion Quiz
|
3283
|
+
- temp_id: '12433'
|
3284
|
+
name: tref-5.1
|
3285
|
+
module_temp_ids:
|
3286
|
+
- Going Below Zero Lesson
|
3287
|
+
- Going Below Zero Quiz Question 2
|
3288
|
+
- Going Below Zero Quiz Question 1
|
3289
|
+
- Going Below Zero Quiz Question 3
|
3290
|
+
- Going Below Zero Quiz
|
3291
|
+
- temp_id: '12434'
|
3292
|
+
name: tref-5.2
|
3293
|
+
module_temp_ids:
|
3294
|
+
- Opposites Reflect Lesson
|
3295
|
+
- Opposites Reflect Quiz Question 3
|
3296
|
+
- Opposites Reflect Quiz Question 1
|
3297
|
+
- Opposites Reflect Quiz Question 2
|
3298
|
+
- Opposites Reflect Quiz
|
3299
|
+
- temp_id: '12435'
|
3300
|
+
name: tref-12.1
|
3301
|
+
module_temp_ids:
|
3302
|
+
- Melting and Freezing Quiz Question 1
|
3303
|
+
- Melting and Freezing Lesson
|
3304
|
+
- Melting and Freezing Quiz Question 2
|
3305
|
+
- Melting and Freezing Quiz Question 3
|
3306
|
+
- Melting and Freezing Quiz
|
3307
|
+
- temp_id: '12436'
|
3308
|
+
name: tref-11.1
|
3309
|
+
module_temp_ids:
|
3310
|
+
- Visualizing Ratios Quiz Question 1
|
3311
|
+
- Visualizing Ratios Quiz Question 3
|
3312
|
+
- Visualizing Ratios Lesson
|
3313
|
+
- Visualizing Ratios Quiz Question 2
|
3314
|
+
- Visualizing Ratios Quiz
|
3315
|
+
- temp_id: '12437'
|
3316
|
+
name: tref-3.2
|
3317
|
+
module_temp_ids:
|
3318
|
+
- Remain Calm Lesson
|
3319
|
+
- Remain Calm Quiz Question 1
|
3320
|
+
- Remain Calm Quiz Question 3
|
3321
|
+
- Remain Calm Quiz Question 2
|
3322
|
+
- Remain Calm Quiz
|
3323
|
+
- temp_id: '12438'
|
3324
|
+
name: tref-11.2
|
3325
|
+
module_temp_ids:
|
3326
|
+
- The Power of One Quiz Question 1
|
3327
|
+
- The Power of One Lesson
|
3328
|
+
- The Power of One Quiz Question 3
|
3329
|
+
- The Power of One Quiz Question 2
|
3330
|
+
- The Power of One Quiz
|
3331
|
+
- temp_id: '12439'
|
3332
|
+
name: tref-2.1
|
3333
|
+
module_temp_ids:
|
3334
|
+
- Fraction Reciprocity (Reciprocals) Quiz Question 1
|
3335
|
+
- Fraction Reciprocity (Reciprocals) Quiz Question 3
|
3336
|
+
- Fraction Reciprocity (Reciprocals) Quiz Question 2
|
3337
|
+
- Fraction Reciprocity (Reciprocals) Lesson
|
3338
|
+
- Fraction Reciprocity (Reciprocals) Quiz
|
3339
|
+
- temp_id: '12440'
|
3340
|
+
name: tref-12.3
|
3341
|
+
module_temp_ids:
|
3342
|
+
- Putting it all Together Quiz Question 3
|
3343
|
+
- Putting it all Together Quiz Question 2
|
3344
|
+
- Putting it all Together Quiz Question 1
|
3345
|
+
- Putting it all Together Lesson
|
3346
|
+
- Putting it all Together Quiz
|
3347
|
+
- temp_id: '12441'
|
3348
|
+
name: tref-3.3
|
3349
|
+
module_temp_ids:
|
3350
|
+
- Double Trouble Lesson
|
3351
|
+
- Double Trouble Quiz Question 3
|
3352
|
+
- Double Trouble Quiz Question 1
|
3353
|
+
- Double Trouble Quiz Question 2
|
3354
|
+
- Double Trouble Quiz
|
3355
|
+
- temp_id: '12442'
|
3356
|
+
name: tref-8.1
|
3357
|
+
module_temp_ids:
|
3358
|
+
- Debt Doubling Quiz Question 1
|
3359
|
+
- Debt Doubling Quiz Question 3
|
3360
|
+
- Debt Doubling Quiz Question 2
|
3361
|
+
- Debt Doubling Lesson
|
3362
|
+
- Debt Doubling Quiz
|
3363
|
+
- temp_id: '12443'
|
3364
|
+
name: tref-9.4
|
3365
|
+
module_temp_ids:
|
3366
|
+
- Checkpoints Lesson
|
3367
|
+
- Checkpoints Quiz Question 2
|
3368
|
+
- Checkpoints Quiz Question 1
|
3369
|
+
- Checkpoints Quiz Question 3
|
3370
|
+
- Checkpoints Quiz
|
3371
|
+
- temp_id: '12444'
|
3372
|
+
name: tref-5.3
|
3373
|
+
module_temp_ids:
|
3374
|
+
- Seats and Streets Lesson
|
3375
|
+
- Seats and Streets Quiz Question 1
|
3376
|
+
- Seats and Streets Quiz Question 2
|
3377
|
+
- Seats and Streets Quiz Question 3
|
3378
|
+
- Seats and Streets Quiz
|
3379
|
+
- temp_id: '12445'
|
3380
|
+
name: tref-2.3
|
3381
|
+
module_temp_ids:
|
3382
|
+
- Divvy 'Em Up Lesson
|
3383
|
+
- Divvy 'Em Up Quiz Question 2
|
3384
|
+
- Divvy 'Em Up Quiz Question 3
|
3385
|
+
- Divvy 'Em Up Quiz Question 1
|
3386
|
+
- Divvy 'Em Up Quiz
|
3387
|
+
- temp_id: '12446'
|
3388
|
+
name: tref-7.2
|
3389
|
+
module_temp_ids:
|
3390
|
+
- Another Side of Addition Quiz Question 1
|
3391
|
+
- Another Side of Addition Quiz Question 3
|
3392
|
+
- Another Side of Addition Lesson
|
3393
|
+
- Another Side of Addition Quiz Question 2
|
3394
|
+
- Another Side of Addition Quiz
|
3395
|
+
- temp_id: '12447'
|
3396
|
+
name: tref-9.2
|
3397
|
+
module_temp_ids:
|
3398
|
+
- Two-Way Problem Solving Quiz Question 3
|
3399
|
+
- Two-Way Problem Solving Lesson
|
3400
|
+
- Two-Way Problem Solving Quiz Question 1
|
3401
|
+
- Two-Way Problem Solving Quiz Question 2
|
3402
|
+
- Two-Way Problem Solving Quiz
|
3403
|
+
- temp_id: '12448'
|
3404
|
+
name: tref-10.1
|
3405
|
+
module_temp_ids:
|
3406
|
+
- Tuning Into Ratios Quiz Question 1
|
3407
|
+
- Tuning Into Ratios Quiz Question 2
|
3408
|
+
- Tuning Into Ratios Lesson
|
3409
|
+
- Tuning Into Ratios Quiz Question 3
|
3410
|
+
- Tuning Into Ratios Quiz
|
3411
|
+
- temp_id: '12449'
|
3412
|
+
name: tref-8.3
|
3413
|
+
module_temp_ids:
|
3414
|
+
- Rules of A-Fraction Lesson
|
3415
|
+
- Rules of A-Fraction Quiz Question 2
|
3416
|
+
- Rules of A-Fraction Quiz Question 3
|
3417
|
+
- Rules of A-Fraction Quiz Question 1
|
3418
|
+
- Rules of A-Fraction Quiz
|
3419
|
+
- temp_id: '12450'
|
3420
|
+
name: tref-10.2
|
3421
|
+
module_temp_ids:
|
3422
|
+
- Ratios in Action Quiz Question 1
|
3423
|
+
- Ratios in Action Quiz Question 2
|
3424
|
+
- Ratios in Action Lesson
|
3425
|
+
- Ratios in Action Quiz Question 3
|
3426
|
+
- Ratios in Action Quiz
|
3427
|
+
- temp_id: '12451'
|
3428
|
+
name: tref-4.1
|
3429
|
+
module_temp_ids:
|
3430
|
+
- Adding and Subtracting Decimals Lesson
|
3431
|
+
- Adding and Subtracting Decimals Quiz Question 2
|
3432
|
+
- Adding and Subtracting Decimals Quiz Question 1
|
3433
|
+
- Adding and Subtracting Decimals Quiz Question 3
|
3434
|
+
- Adding and Subtracting Decimals Quiz
|
3435
|
+
- temp_id: '12452'
|
3436
|
+
name: tref-7.3
|
3437
|
+
module_temp_ids:
|
3438
|
+
- Proper Use of Properties Lesson
|
3439
|
+
- Proper Use of Properties Quiz Question 3
|
3440
|
+
- Proper Use of Properties Quiz Question 1
|
3441
|
+
- Proper Use of Properties Quiz Question 2
|
3442
|
+
- Proper Use of Properties Quiz
|
3443
|
+
- temp_id: '12453'
|
3444
|
+
name: tref-1.1
|
3445
|
+
module_temp_ids:
|
3446
|
+
- Fraction Notation Quiz Question 1
|
3447
|
+
- Fraction Notation Quiz Question 3
|
3448
|
+
- Fraction Notation Quiz Question 2
|
3449
|
+
- Fraction Notation Lesson
|
3450
|
+
- Fraction Notation Quiz
|
3451
|
+
- temp_id: '12454'
|
3452
|
+
name: tref-6.2
|
3453
|
+
module_temp_ids:
|
3454
|
+
- Lesser of Two Evils Quiz Question 3
|
3455
|
+
- Lesser of Two Evils Lesson
|
3456
|
+
- Lesser of Two Evils Quiz Question 2
|
3457
|
+
- Lesser of Two Evils Quiz Question 1
|
3458
|
+
- Lesser of Two Evils Quiz
|
3459
|
+
- temp_id: '12455'
|
3460
|
+
name: tref-4.3
|
3461
|
+
module_temp_ids:
|
3462
|
+
- Dividing Decimals Quiz Question 2
|
3463
|
+
- Dividing Decimals Quiz Question 1
|
3464
|
+
- Dividing Decimals Lesson
|
3465
|
+
- Dividing Decimals Quiz Question 3
|
3466
|
+
- Dividing Decimals Quiz
|
3467
|
+
- temp_id: '12456'
|
3468
|
+
name: tref-9.3
|
3469
|
+
module_temp_ids:
|
3470
|
+
- Choosing Tools Quiz Question 3
|
3471
|
+
- Choosing Tools Quiz Question 2
|
3472
|
+
- Choosing Tools Quiz Question 1
|
3473
|
+
- Choosing Tools Lesson
|
3474
|
+
- Choosing Tools Quiz
|
3475
|
+
- temp_id: '12457'
|
3476
|
+
name: tref-4.2
|
3477
|
+
module_temp_ids:
|
3478
|
+
- Multiplying Decimals Quiz Question 3
|
3479
|
+
- Multiplying Decimals Lesson
|
3480
|
+
- Multiplying Decimals Quiz Question 2
|
3481
|
+
- Multiplying Decimals Quiz Question 1
|
3482
|
+
- Multiplying Decimals Quiz
|
3483
|
+
- temp_id: '12458'
|
3484
|
+
name: tref-1.3
|
3485
|
+
module_temp_ids:
|
3486
|
+
- "(Fraction) Addition and Subtraction Quiz Question 2"
|
3487
|
+
- "(Fraction) Addition and Subtraction Lesson"
|
3488
|
+
- "(Fraction) Addition and Subtraction Quiz Question 3"
|
3489
|
+
- "(Fraction) Addition and Subtraction Quiz Question 1"
|
3490
|
+
- "(Fraction) Addition and Subtraction Quiz"
|
3491
|
+
- temp_id: '12459'
|
3492
|
+
name: tref-7.1
|
3493
|
+
module_temp_ids:
|
3494
|
+
- Zero Sum Quiz Question 1
|
3495
|
+
- Zero Sum Lesson
|
3496
|
+
- Zero Sum Quiz Question 3
|
3497
|
+
- Zero Sum Quiz Question 2
|
3498
|
+
- Zero Sum Quiz
|
3499
|
+
- name: Type
|
3500
|
+
type: topical
|
3501
|
+
taxons: []
|
3502
|
+
taxon_list:
|
3503
|
+
- temp_id: '12460'
|
3504
|
+
name: tref-field
|
3505
|
+
module_temp_ids:
|
3506
|
+
- Ratios in Action Quiz Question 1
|
3507
|
+
- Beyond Integers Quiz Question 3
|
3508
|
+
- Visualizing Ratios Quiz Question 1
|
3509
|
+
- Dividing Decimals Quiz Question 2
|
3510
|
+
- Divvy 'Em Up Quiz Question 2
|
3511
|
+
- Fraction Metamorphosis Quiz Question 1
|
3512
|
+
- Tools of Conversion Quiz Question 3
|
3513
|
+
- Multiplying Decimals Quiz Question 3
|
3514
|
+
- Down to the Unit Rate Quiz Question 3
|
3515
|
+
- Fraction Multiplication Quiz Question 1
|
3516
|
+
- Double Trouble Quiz Question 3
|
3517
|
+
- Another Side of Addition Quiz Question 3
|
3518
|
+
- The Power of One Quiz Question 1
|
3519
|
+
- Two-Way Problem Solving Quiz Question 3
|
3520
|
+
- Proper Use of Properties Quiz Question 3
|
3521
|
+
- Zero Sum Quiz Question 1
|
3522
|
+
- Going Down the Line Quiz Question 2
|
3523
|
+
- Part, Percent, and Whole Quiz Question 1
|
3524
|
+
- Part, Percent, and Whole Quiz Question 2
|
3525
|
+
- Absolutely Positive? Quiz Question 1
|
3526
|
+
- Fraction Reciprocity (Reciprocals) Quiz Question 1
|
3527
|
+
- Debt Doubling Quiz Question 1
|
3528
|
+
- Ratios in Action Quiz Question 2
|
3529
|
+
- Double Trouble Quiz Question 2
|
3530
|
+
- Dividing Decimals Quiz Question 1
|
3531
|
+
- Proper Use of Properties Quiz Question 1
|
3532
|
+
- Visualizing Ratios Quiz Question 3
|
3533
|
+
- Opposites Reflect Quiz Question 2
|
3534
|
+
- Fraction Reciprocity (Reciprocals) Quiz Question 3
|
3535
|
+
- Rules of A-Fraction Quiz Question 3
|
3536
|
+
- Tools of Conversion Quiz Question 2
|
3537
|
+
- Seats and Streets Quiz Question 1
|
3538
|
+
- Fraction Notation Quiz Question 2
|
3539
|
+
- Percentages and Precision Quiz Question 1
|
3540
|
+
- Adding and Subtracting Decimals Quiz Question 1
|
3541
|
+
- Why Divide? Quiz Question 3
|
3542
|
+
- Choosing Tools Quiz Question 1
|
3543
|
+
- Divide and Conquer Quiz Question
|
3544
|
+
- Remain Calm Quiz Question 2
|
3545
|
+
- Divvy 'Em Up Quiz Question 1
|
3546
|
+
- Two-Way Problem Solving Quiz Question 2
|
3547
|
+
- Going Below Zero Quiz Question 1
|
3548
|
+
- Rules of A-Fraction Quiz Question 1
|
3549
|
+
- Beyond Integers Quiz Question 2
|
3550
|
+
- Going Down the Line Quiz Question 3
|
3551
|
+
- Putting it all Together Quiz Question 1
|
3552
|
+
- Debt Division Quiz Question 2
|
3553
|
+
- Zero Sum Quiz Question 2
|
3554
|
+
- Absolutely Positive? Quiz Question 3
|
3555
|
+
- The Power of One Quiz Question 2
|
3556
|
+
- Melting and Freezing Quiz Question 3
|
3557
|
+
- Checkpoints Quiz Question 1
|
3558
|
+
- Checkpoints Quiz Question 3
|
3559
|
+
- temp_id: '12461'
|
3560
|
+
name: tref-multiple_choice
|
3561
|
+
module_temp_ids:
|
3562
|
+
- Percentages and Precision Quiz Question 2
|
3563
|
+
- Another Side of Addition Quiz Question 1
|
3564
|
+
- "(Fraction) Addition and Subtraction Quiz Question 2"
|
3565
|
+
- Going Down the Line Quiz Question 1
|
3566
|
+
- Lesser of Two Evils Quiz Question 3
|
3567
|
+
- Debt Division Quiz Question 3
|
3568
|
+
- Choosing Tools Quiz Question 3
|
3569
|
+
- Melting and Freezing Quiz Question 1
|
3570
|
+
- Fraction Notation Quiz Question 1
|
3571
|
+
- Why Divide? Quiz Question 2
|
3572
|
+
- Fraction Notation Quiz Question 3
|
3573
|
+
- Opposites Reflect Quiz Question 3
|
3574
|
+
- Divvy 'Em Up Quiz Question 3
|
3575
|
+
- Remain Calm Quiz Question 1
|
3576
|
+
- Adding and Subtracting Decimals Quiz Question 2
|
3577
|
+
- Down to the Unit Rate Quiz Question 2
|
3578
|
+
- Fraction Metamorphosis Quiz Question 3
|
3579
|
+
- Part, Percent, and Whole Quiz Question 3
|
3580
|
+
- Double Trouble Quiz Question 1
|
3581
|
+
- Divide and Conquer Quiz Question
|
3582
|
+
- Two-Way Problem Solving Quiz Question 1
|
3583
|
+
- Percentages and Precision Quiz Question 3
|
3584
|
+
- Opposites Reflect Quiz Question 1
|
3585
|
+
- Multiplying Decimals Quiz Question 2
|
3586
|
+
- Debt Doubling Quiz Question 3
|
3587
|
+
- Why Divide? Quiz Question 1
|
3588
|
+
- Going Below Zero Quiz Question 2
|
3589
|
+
- Down to the Unit Rate Quiz Question 1
|
3590
|
+
- Rules of A-Fraction Quiz Question 2
|
3591
|
+
- Debt Doubling Quiz Question 2
|
3592
|
+
- Choosing Tools Quiz Question 2
|
3593
|
+
- Fraction Reciprocity (Reciprocals) Quiz Question 2
|
3594
|
+
- Fraction Metamorphosis Quiz Question 2
|
3595
|
+
- Absolutely Positive? Quiz Question 2
|
3596
|
+
- Dividing Decimals Quiz Question 3
|
3597
|
+
- "(Fraction) Addition and Subtraction Quiz Question 3"
|
3598
|
+
- "(Fraction) Addition and Subtraction Quiz Question 1"
|
3599
|
+
- Tuning Into Ratios Quiz Question 1
|
3600
|
+
- Fraction Multiplication Quiz Question 2
|
3601
|
+
- Fraction Multiplication Quiz Question 3
|
3602
|
+
- Tools of Conversion Quiz Question 1
|
3603
|
+
- Tuning Into Ratios Quiz Question 2
|
3604
|
+
- Remain Calm Quiz Question 3
|
3605
|
+
- Beyond Integers Quiz Question 1
|
3606
|
+
- Multiplying Decimals Quiz Question 1
|
3607
|
+
- Ratios in Action Quiz Question 3
|
3608
|
+
- Visualizing Ratios Quiz Question 2
|
3609
|
+
- Proper Use of Properties Quiz Question 2
|
3610
|
+
- Divide and Conquer Quiz Question
|
3611
|
+
- Tuning Into Ratios Quiz Question 3
|
3612
|
+
- Debt Division Quiz Question 1
|
3613
|
+
- Lesser of Two Evils Quiz Question 2
|
3614
|
+
- Putting it all Together Quiz Question 3
|
3615
|
+
- Seats and Streets Quiz Question 2
|
3616
|
+
- Putting it all Together Quiz Question 2
|
3617
|
+
- Zero Sum Quiz Question 3
|
3618
|
+
- The Power of One Quiz Question 3
|
3619
|
+
- Adding and Subtracting Decimals Quiz Question 3
|
3620
|
+
- Another Side of Addition Quiz Question 2
|
3621
|
+
- Melting and Freezing Quiz Question 2
|
3622
|
+
- Checkpoints Quiz Question 2
|
3623
|
+
- Going Below Zero Quiz Question 3
|
3624
|
+
- Seats and Streets Quiz Question 3
|
3625
|
+
- Lesser of Two Evils Quiz Question 1
|
3626
|
+
- temp_id: '12462'
|
3627
|
+
name: tref-video
|
3628
|
+
module_temp_ids:
|
3629
|
+
- Rules of A-Fraction Lesson
|
3630
|
+
- Double Trouble Lesson
|
3631
|
+
- Divvy 'Em Up Lesson
|
3632
|
+
- Tools of Conversion Lesson
|
3633
|
+
- Why Divide? Lesson
|
3634
|
+
- Going Down the Line Lesson
|
3635
|
+
- Opposites Reflect Lesson
|
3636
|
+
- Going Below Zero Lesson
|
3637
|
+
- Remain Calm Lesson
|
3638
|
+
- Proper Use of Properties Lesson
|
3639
|
+
- Adding and Subtracting Decimals Lesson
|
3640
|
+
- Divide and Conquer Lesson
|
3641
|
+
- The Power of One Lesson
|
3642
|
+
- Seats and Streets Lesson
|
3643
|
+
- Fraction Metamorphosis Lesson
|
3644
|
+
- Multiplying Decimals Lesson
|
3645
|
+
- Two-Way Problem Solving Lesson
|
3646
|
+
- Part, Percent, and Whole Lesson
|
3647
|
+
- Absolutely Positive? Lesson
|
3648
|
+
- Fraction Multiplication Lesson
|
3649
|
+
- Dividing Decimals Lesson
|
3650
|
+
- "(Fraction) Addition and Subtraction Lesson"
|
3651
|
+
- Ratios in Action Lesson
|
3652
|
+
- Visualizing Ratios Lesson
|
3653
|
+
- Down to the Unit Rate Lesson
|
3654
|
+
- Lesser of Two Evils Lesson
|
3655
|
+
- Another Side of Addition Lesson
|
3656
|
+
- Fraction Reciprocity (Reciprocals) Lesson
|
3657
|
+
- Debt Division Lesson
|
3658
|
+
- Tuning Into Ratios Lesson
|
3659
|
+
- Zero Sum Lesson
|
3660
|
+
- Melting and Freezing Lesson
|
3661
|
+
- Fraction Notation Lesson
|
3662
|
+
- Choosing Tools Lesson
|
3663
|
+
- Checkpoints Lesson
|
3664
|
+
- Beyond Integers Lesson
|
3665
|
+
- Putting it all Together Lesson
|
3666
|
+
- Debt Doubling Lesson
|
3667
|
+
- Percentages and Precision Lesson
|
3668
|
+
- temp_id: '12463'
|
3669
|
+
name: tref-quiz
|
3670
|
+
module_temp_ids:
|
3671
|
+
- Multiplying Decimals Quiz
|
3672
|
+
- Going Down the Line Quiz
|
3673
|
+
- Lesser of Two Evils Quiz
|
3674
|
+
- Seats and Streets Quiz
|
3675
|
+
- Debt Doubling Quiz
|
3676
|
+
- Part, Percent, and Whole Quiz
|
3677
|
+
- Putting it all Together Quiz
|
3678
|
+
- Beyond Integers Quiz
|
3679
|
+
- Fraction Multiplication Quiz
|
3680
|
+
- The Power of One Quiz
|
3681
|
+
- Down to the Unit Rate Quiz
|
3682
|
+
- Fraction Reciprocity (Reciprocals) Quiz
|
3683
|
+
- Visualizing Ratios Quiz
|
3684
|
+
- Double Trouble Quiz
|
3685
|
+
- Debt Division Quiz
|
3686
|
+
- Opposites Reflect Quiz
|
3687
|
+
- Melting and Freezing Quiz
|
3688
|
+
- Adding and Subtracting Decimals Quiz
|
3689
|
+
- Choosing Tools Quiz
|
3690
|
+
- Why Divide? Quiz
|
3691
|
+
- Going Below Zero Quiz
|
3692
|
+
- Fraction Notation Quiz
|
3693
|
+
- Remain Calm Quiz
|
3694
|
+
- Two-Way Problem Solving Quiz
|
3695
|
+
- Dividing Decimals Quiz
|
3696
|
+
- Divvy 'Em Up Quiz
|
3697
|
+
- Tuning Into Ratios Quiz
|
3698
|
+
- Checkpoints Quiz
|
3699
|
+
- Zero Sum Quiz
|
3700
|
+
- Percentages and Precision Quiz
|
3701
|
+
- Proper Use of Properties Quiz
|
3702
|
+
- Tools of Conversion Quiz
|
3703
|
+
- Another Side of Addition Quiz
|
3704
|
+
- Absolutely Positive? Quiz
|
3705
|
+
- Rules of A-Fraction Quiz
|
3706
|
+
- Fraction Metamorphosis Quiz
|
3707
|
+
- Divide and Conquer Quiz
|
3708
|
+
- "(Fraction) Addition and Subtraction Quiz"
|
3709
|
+
- Ratios in Action Quiz
|