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.
Files changed (57) hide show
  1. checksums.yaml +7 -0
  2. data/KGrift/Gemfile +22 -0
  3. data/KGrift/README.md +66 -0
  4. data/KGrift/bin/kgrift +11 -0
  5. data/KGrift/grifter.yml +224 -0
  6. data/KGrift/internal_test_graphs/basic_test_graph_definition.yml +2915 -0
  7. data/KGrift/internal_test_graphs/unicode_test_graph_definition.yml +3070 -0
  8. data/KGrift/knewton_grifts/analytics_grifts.rb +103 -0
  9. data/KGrift/knewton_grifts/async_helper_grifts.rb +63 -0
  10. data/KGrift/knewton_grifts/authenticator_grifts.rb +46 -0
  11. data/KGrift/knewton_grifts/basic_grifts.rb +29 -0
  12. data/KGrift/knewton_grifts/batch_grifts.rb +14 -0
  13. data/KGrift/knewton_grifts/content_collection_grifts.rb +204 -0
  14. data/KGrift/knewton_grifts/content_collection_v1_grifts.rb +521 -0
  15. data/KGrift/knewton_grifts/content_eid_grifts.rb +41 -0
  16. data/KGrift/knewton_grifts/copy_grifts.rb +151 -0
  17. data/KGrift/knewton_grifts/deprecated_graph_and_taxonomy_grifts.rb +353 -0
  18. data/KGrift/knewton_grifts/goal_grifts.rb +203 -0
  19. data/KGrift/knewton_grifts/graph_and_taxonomy_grifts.rb +136 -0
  20. data/KGrift/knewton_grifts/graph_create_grifts.rb +34 -0
  21. data/KGrift/knewton_grifts/graph_query_grifts.rb +448 -0
  22. data/KGrift/knewton_grifts/graph_tools_grifts.rb +151 -0
  23. data/KGrift/knewton_grifts/graph_validation_grifts.rb +447 -0
  24. data/KGrift/knewton_grifts/helper_grifts.rb +92 -0
  25. data/KGrift/knewton_grifts/jmeter_data_grifts.rb +56 -0
  26. data/KGrift/knewton_grifts/learning_instance_grifts.rb +46 -0
  27. data/KGrift/knewton_grifts/looper_grifts.rb +34 -0
  28. data/KGrift/knewton_grifts/moxy_grifts.rb +64 -0
  29. data/KGrift/knewton_grifts/oauth_grifts.rb +182 -0
  30. data/KGrift/knewton_grifts/partner_grifts.rb +70 -0
  31. data/KGrift/knewton_grifts/partner_support_grifts.rb +85 -0
  32. data/KGrift/knewton_grifts/recommendation_setup_grifts.rb +215 -0
  33. data/KGrift/knewton_grifts/registration_grifts.rb +159 -0
  34. data/KGrift/knewton_grifts/registration_info_grifts.rb +23 -0
  35. data/KGrift/knewton_grifts/report_grifts.rb +122 -0
  36. data/KGrift/knewton_grifts/shell_command_grifts.rb +21 -0
  37. data/KGrift/knewton_grifts/student_flow_grifts.rb +560 -0
  38. data/KGrift/knewton_grifts/tag_grifts.rb +41 -0
  39. data/KGrift/knewton_grifts/test_data_grifts.rb +328 -0
  40. data/KGrift/knewton_grifts/test_user_grifts.rb +264 -0
  41. data/KGrift/lib/dtrace.rb +20 -0
  42. data/KGrift/lib/kgrift.rb +7 -0
  43. data/KGrift/test_data_generators/basic_book_and_taxonomies.rb +35 -0
  44. data/KGrift/test_data_generators/lo_test_graph.rb +34 -0
  45. data/KGrift/test_data_generators/partner_owned_book_and_taxonomies.rb +28 -0
  46. data/KGrift/test_data_generators/partner_owned_book_and_taxonomies_unicode.rb +28 -0
  47. data/KGrift/test_data_generators/sandcastle_book_and_taxonomies.rb +13 -0
  48. data/KGrift/test_data_generators/sandcastle_book_and_taxonomies.yml +3709 -0
  49. data/KGrift/test_data_generators/sandcastle_graph.rb +8 -0
  50. data/KGrift/test_data_generators/sandcastle_graph_definition.json +4483 -0
  51. data/KGrift/test_data_generators/sandcastle_graph_full.rb +7 -0
  52. data/KGrift/test_data_generators/sandcastle_taxonomies.yml +378 -0
  53. data/KGrift/test_data_generators/sandcastle_with_taxons.rb +56 -0
  54. data/KGrift/test_data_generators/sandcastle_with_taxons.yml +3994 -0
  55. data/KGrift/test_data_generators/test_users_and_partners.rb +76 -0
  56. data/kgrift.gemspec +43 -0
  57. metadata +144 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: b8b22b34fdd8f4b631c406eff59d155f2e7a15ee
4
+ data.tar.gz: acffdee96701099f51ac91f4fb5b863e97b3fe24
5
+ SHA512:
6
+ metadata.gz: c79ba43511da84c9530a305b374a129990a36b3d1e6db21dcae4d61e235e90143fc00bf60b6a606d9dcf0f4a073abae02223b754f44a4919229f32346354f871
7
+ data.tar.gz: 18849d3e9c61732c0f8db01ef739120525f72a62867503621528142b1f3f798fb1e3e41dbbcdef9224b0d3d95175e5a1760b1e7b4f052ad627f88bd4284bfe80
@@ -0,0 +1,22 @@
1
+ source 'https://rubygems.org'
2
+
3
+ #grifter is our HTTP JSON API library: https://github.com/Knewton/grifter
4
+ # Grifter handles the actual requests, and allows us to build a
5
+ # lightweight DSL for making requests against APIs
6
+ gem 'grifter', '~> 0.4.2'
7
+ gem 'typhoeus', '0.6.8'
8
+
9
+ #used for date math via active_support/core_ext/numeric/time
10
+ #locked on version 3.x b/c rails 4 updates this, and it has many new dependencies
11
+ gem 'activesupport', '~> 4'
12
+
13
+ #we need this for the eventually helper which catches rspec exceptions
14
+ gem 'rspec', '~> 2'
15
+
16
+ gem 'aws-sdk', '~> 2'
17
+
18
+ group :development do
19
+ #used for interactive_grift.sh to open the interactive grift shell
20
+ gem 'pry'
21
+ gem 'awesome_print'
22
+ end
@@ -0,0 +1,66 @@
1
+ # Knewton API Client (Grifter/ruby based)
2
+
3
+ ## Intro
4
+
5
+ Expressively interact with any Knewton HTTP+JSON API(s) using:
6
+
7
+ - command line calls
8
+ - scripts of abritrary complexity
9
+ - quantum magic
10
+
11
+ Helps manages the complexity of:
12
+
13
+ - specifying which environment you are interacting with (QA, Superman, UAT, etc)
14
+ - authentication / controlling who you are while making api calls
15
+ - access to reference data like graph IDs
16
+ - self actualization
17
+
18
+ Our official API documentation (http://dev.knewton.com/reference/) is a nice reference to have open when learning this tool.
19
+
20
+
21
+ ## Setup
22
+ - Get Ruby 1.9.3 or newer. Instructions: https://knewton.atlassian.net/wiki/display/TECH/Ruby
23
+ - run 'bundle install' to get needed gems
24
+ - run 'rbenv rehash' to bring grifter executable into path
25
+ - run grift --help so see what it can do
26
+
27
+
28
+ ## Examples
29
+
30
+ ### Authenticate as a 'knerd' (super user)
31
+
32
+ This command returns an Authorization token for a 'knerd' user.
33
+ This token can be used in REST client browser plugins for manually calling the API.
34
+ To do this, just set the output to the Authorization header in the REST client plugin.
35
+
36
+ $ grift -q -n -e Superman knerd_token
37
+
38
+
39
+ ### Run a grift script that gets a recommendation for a brand new student and goal
40
+
41
+ Checked in is an example script showing all the steps needed to get a recommendation.
42
+
43
+ $ grift -v -n -e QA -f examples/get_a_recommendation.rb
44
+
45
+
46
+ ### Get a recommendation for a known registration and goal id
47
+
48
+ The above script created a brand new test registraiton and test goal.
49
+ If you already have a registration and goal, perhaps given by a partner,
50
+ you can see the current recommendation for it by calling get_recommendation
51
+ grift straight off the command line.
52
+
53
+ An easy way to demo this is to run the above example, and get the registration
54
+ and goal id from the log that is produced.
55
+
56
+ $ grift -e QA get_recommendation <reg id> <goal id>
57
+
58
+ ### See all the available grift methods
59
+
60
+ This will list all the methods that define the DSL for interacting with the API.
61
+
62
+ $ grift --list
63
+
64
+ ## More reading
65
+
66
+ To understand how grifter works, check out it's github: https://github.com/Knewton/grifter
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ KAPI_GEM_HOME = File.dirname(File.dirname(__FILE__))
4
+ GRIFTER_CONFIG_FILE = File.join(KAPI_GEM_HOME, 'grifter.yml')
5
+
6
+ args = ARGV.map{|a| "'#{a}'"}.join(' ')
7
+
8
+ cmd_line = "grift --config=#{GRIFTER_CONFIG_FILE} #{args}"
9
+
10
+ puts "Running: " + cmd_line
11
+ exec cmd_line
@@ -0,0 +1,224 @@
1
+ # grifter.yml configures the grifter open source gem
2
+ #
3
+ # Primary purpose of this file is twofold
4
+ # - defines the REST API services kgrift can interact with (services section)
5
+ # - maps environment names to URLs for each services (environments section)
6
+ #
7
+ # It has some finer settings too:
8
+ # - default request timeouts
9
+ # - default request headers
10
+ # - whether ssl certs are checked for https connections,
11
+
12
+ ---
13
+ services:
14
+ kapi:
15
+ default_headers:
16
+ user-agent: 'KGrift'
17
+ knewton-test: 'true'
18
+ #configured the same as 'local' environment by default, for safety and simplicity
19
+ url: 'https://bivins-superman.r.staging.knewton.com'
20
+ timeout: 59
21
+ ignore_ssl_cert: true
22
+
23
+ spewy:
24
+ url: 'https://spewy-superman.r.staging.knewton.com'
25
+ timeout: 59
26
+ ignore_ssl_cert: true
27
+ default_headers:
28
+ user-agent: '(Grifter) Knewton API Client'
29
+ knewton-test: 'true'
30
+
31
+ homi:
32
+ hostname: 'you must specify an environment'
33
+ port: 443
34
+ ssl: true
35
+ ignore_ssl_cert: true
36
+ timeout: 60
37
+ default_headers:
38
+ user-agent: '(Grifter) Knewton API Client'
39
+ knewton-test: 'true'
40
+
41
+ graphtools:
42
+ hostname: 'you must specify an environment'
43
+ port: 443
44
+ ssl: true
45
+ ignore_ssl_cert: true
46
+ timeout: 59
47
+ default_headers:
48
+ user-agent: '(Grifter) Knewton API Client'
49
+ knewton-test: 'true'
50
+
51
+
52
+ environments:
53
+
54
+ # VPC ENVIRONMENTS
55
+
56
+ classicdev-useast1:
57
+ kapi:
58
+ url: 'https://bivins-dev.r.staging.knewton.com'
59
+ # these special bits of config are needed for all real environments
60
+ # aws_profile is a reference to ~/.aws/credentials profile name for S3 for this environment
61
+ aws_profile: 'staging'
62
+ # kva_env_name is the name of the environment when using the kva cmd line tool
63
+ kva_env_name: 'dev'
64
+ spewy:
65
+ url: 'https://bivins-dev.r.staging.knewton.com'
66
+ homi:
67
+ url: 'https://homi-dev.r.staging.knewton.com'
68
+ graphtools:
69
+ url: 'https://graphtools-dev.r.staging.knewton.com'
70
+
71
+ classicqa-useast1:
72
+ kapi:
73
+ url: 'https://bivins-qa.r.staging.knewton.com'
74
+ aws_profile: 'staging'
75
+ kva_env_name: 'qa'
76
+ spewy:
77
+ url: 'https://bivins-qa.r.staging.knewton.com'
78
+ homi:
79
+ url: 'https://homi-qa.r.staging.knewton.com'
80
+ graphtools:
81
+ url: 'https://graphtools-qa.r.staging.knewton.com'
82
+
83
+ classicqa-useast1-aia:
84
+ kapi:
85
+ url: 'https://bivins-qa-aia.r.staging.knewton.com'
86
+ aws_profile: 'staging'
87
+ kva_env_name: 'qa'
88
+ s3_bucket: 'knewton-classicqa-useast1'
89
+ spewy:
90
+ url: 'https://bivins-qa-aia.r.staging.knewton.com'
91
+ homi:
92
+ url: 'https://homi-qa-aia.r.staging.knewton.com'
93
+ graphtools:
94
+ url: 'https://graphtools-qa-aia.r.staging.knewton.com'
95
+
96
+ classicqa-useast1-cd:
97
+ kapi:
98
+ url: 'https://bivins-qa-cd.r.staging.knewton.com'
99
+ aws_profile: 'staging'
100
+ kva_env_name: 'qa'
101
+ s3_bucket: 'knewton-classicqa-useast1'
102
+ spewy:
103
+ url: 'https://bivins-qa-cd.r.staging.knewton.com'
104
+ homi:
105
+ url: 'https://homi-qa-cd.r.staging.knewton.com'
106
+ graphtools:
107
+ url: 'https://graphtools-qa-cd.r.staging.knewton.com'
108
+
109
+ classicqa-useast1-lt:
110
+ kapi:
111
+ url: 'https://bivins-qa-lt.r.staging.knewton.com'
112
+ aws_profile: 'staging'
113
+ kva_env_name: 'qa'
114
+ s3_bucket: 'knewton-classicqa-useast1'
115
+ spewy:
116
+ url: 'https://bivins-qa-lt.r.staging.knewton.com'
117
+ homi:
118
+ url: 'https://homi-qa-lt.r.staging.knewton.com'
119
+ graphtools:
120
+ url: 'https://graphtools-qa-lt.r.staging.knewton.com'
121
+
122
+ classicuat-useast1:
123
+ kapi:
124
+ url: 'https://dev-api.knewton.com'
125
+ aws_profile: 'uat'
126
+ kva_env_name: 'uat'
127
+ spewy:
128
+ url: 'https://dev-api.knewton.com'
129
+ homi:
130
+ url: 'https://homi-api.knewton.com'
131
+ graphtools:
132
+ url: 'https://dev-graphtools.knewton.com'
133
+
134
+ biggie-useast1:
135
+ kapi:
136
+ url: 'https://api.knewton.com'
137
+ aws_profile: 'production'
138
+ kva_env_name: 'biggie'
139
+ spewy:
140
+ url: 'https://api.knewton.com'
141
+ homi:
142
+ url: 'https://homi.knewton.com'
143
+ graphtools:
144
+ url: 'https://graphtools.knewton.com'
145
+
146
+ production-euwest1:
147
+ kapi:
148
+ url: 'https://api.knewton.ie'
149
+ aws_profile: 'vpc'
150
+ kva_env_name: 'ireland'
151
+ spewy:
152
+ url: 'https://api.knewton.ie'
153
+ homi:
154
+ url: 'http://wontwork.localhost:8092'
155
+ graphtools:
156
+ url: 'https://graphtools.knewton.ie'
157
+
158
+ # These are the current URLs for Tokyo, but they will probably change.
159
+ production-apnortheast1:
160
+ kapi:
161
+ url: 'https://api-p17z.knewton.com'
162
+ aws_profile: 'vpc'
163
+ kva_env_name: 'tokyo'
164
+ spewy:
165
+ url: 'https://api-p17z.knewton.com'
166
+ homi:
167
+ url: 'http://wontwork.localhost:8092'
168
+ graphtools:
169
+ url: 'https://graphtools-p17z.knewton.com'
170
+
171
+
172
+ # SPECIAL DEVELOPER ENVIRONMENTS
173
+
174
+ # use this to ssh tunnel directly to a box
175
+ # which you have to do if you want to get a big graph
176
+ # since those requests take minutes
177
+ tunnel:
178
+ kapi:
179
+ url: 'http://localhost:8090'
180
+ timeout: 600
181
+ spewy:
182
+ url: 'http://localhost:8090'
183
+ timeout: 600
184
+ homi:
185
+ url: 'http://localhost:8090'
186
+ timeout: 600
187
+ graphtools:
188
+ url: 'http://wontwork.localhost:8092'
189
+
190
+ # Bivins can run in local mode (not sure about spewy)
191
+ # A big timeout can help with debugging
192
+ local:
193
+ kapi:
194
+ url: 'http://localhost:8090'
195
+ timeout: 600
196
+ spewy:
197
+ url: 'http://wontwork.localhost:8091'
198
+ homi:
199
+ url: 'http://wontwork.localhost:8092'
200
+ graphtools:
201
+ url: 'http://wontwork.localhost:8092'
202
+
203
+ # a local mode that persists test data for speed of test runs
204
+ localx:
205
+ kapi:
206
+ url: 'http://localhost:8090'
207
+ timeout: 600
208
+ spewy:
209
+ url: 'http://wontwork.localhost:8091'
210
+ homi:
211
+ url: 'http://wontwork.localhost:8092'
212
+ graphtools:
213
+ url: 'http://wontwork.localhost:8092'
214
+
215
+ local-docker:
216
+ kapi:
217
+ url: 'http://dockerhost:8090'
218
+ timeout: 600
219
+ spewy:
220
+ url: 'http://dockerhost:8091'
221
+ homi:
222
+ url: 'http://dockerhost:8092'
223
+ graphtools:
224
+ url: 'http://wontwork.localhost:8092'
@@ -0,0 +1,2915 @@
1
+ ---
2
+ graph:
3
+ name: gref-basic_test_graph
4
+ nodes:
5
+ - temp_id: con_1
6
+ type: concept
7
+ subtype:
8
+ name: con_1
9
+ - type: learning_objective
10
+ name: lo_1
11
+ temp_id: lo_1
12
+ - temp_id: con_1_tbndl_1
13
+ name: con_1_tbndl_1
14
+ type: module
15
+ subtype: bndl
16
+ is_taxon_recommendable: true
17
+ - temp_id: con_1_tbndl_1_atom_1
18
+ name: con_1_tbndl_1_atom_1
19
+ type: module
20
+ subtype: atom
21
+ is_taxon_recommendable: true
22
+ - temp_id: con_1_tbndl_1_atom_2
23
+ name: con_1_tbndl_1_atom_2
24
+ type: module
25
+ subtype: atom
26
+ is_taxon_recommendable: false
27
+ - temp_id: con_1_abndl_1
28
+ name: con_1_abndl_1
29
+ type: module
30
+ subtype: bndl
31
+ is_taxon_recommendable: true
32
+ - temp_id: con_1_abndl_1_atom_1
33
+ name: con_1_abndl_1_atom_1
34
+ type: module
35
+ subtype: atom
36
+ is_taxon_recommendable: true
37
+ - temp_id: con_1_abndl_1_atom_2
38
+ name: con_1_abndl_1_atom_2
39
+ type: module
40
+ subtype: atom
41
+ is_taxon_recommendable: false
42
+ - temp_id: con_1_abndl_1_atom_3
43
+ name: con_1_abndl_1_atom_3
44
+ type: module
45
+ subtype: atom
46
+ is_taxon_recommendable: false
47
+ - temp_id: con_1_abndl_1_atom_4
48
+ name: con_1_abndl_1_atom_4
49
+ type: module
50
+ subtype: atom
51
+ is_taxon_recommendable: false
52
+ - temp_id: con_1_abndl_2
53
+ name: con_1_abndl_2
54
+ type: module
55
+ subtype: bndl
56
+ is_taxon_recommendable: false
57
+ - temp_id: con_1_abndl_2_atom_1
58
+ name: con_1_abndl_2_atom_1
59
+ type: module
60
+ subtype: atom
61
+ is_taxon_recommendable: true
62
+ - temp_id: con_1_abndl_2_atom_2
63
+ name: con_1_abndl_2_atom_2
64
+ type: module
65
+ subtype: atom
66
+ is_taxon_recommendable: false
67
+ - temp_id: con_1_abndl_2_atom_3
68
+ name: con_1_abndl_2_atom_3
69
+ type: module
70
+ subtype: atom
71
+ is_taxon_recommendable: false
72
+ - temp_id: con_1_abndl_2_atom_4
73
+ name: con_1_abndl_2_atom_4
74
+ type: module
75
+ subtype: atom
76
+ is_taxon_recommendable: false
77
+ - temp_id: con_1_abndl_3
78
+ name: con_1_abndl_3
79
+ type: module
80
+ subtype: bndl
81
+ is_taxon_recommendable: false
82
+ - temp_id: con_1_abndl_3_atom_1
83
+ name: con_1_abndl_3_atom_1
84
+ type: module
85
+ subtype: atom
86
+ is_taxon_recommendable: true
87
+ - temp_id: con_1_abndl_3_atom_2
88
+ name: con_1_abndl_3_atom_2
89
+ type: module
90
+ subtype: atom
91
+ is_taxon_recommendable: false
92
+ - temp_id: con_1_abndl_3_atom_3
93
+ name: con_1_abndl_3_atom_3
94
+ type: module
95
+ subtype: atom
96
+ is_taxon_recommendable: false
97
+ - temp_id: con_1_abndl_3_atom_4
98
+ name: con_1_abndl_3_atom_4
99
+ type: module
100
+ subtype: atom
101
+ is_taxon_recommendable: false
102
+ - temp_id: con_2
103
+ type: concept
104
+ subtype:
105
+ name: con_2
106
+ - type: learning_objective
107
+ name: lo_2
108
+ temp_id: lo_2
109
+ - temp_id: con_2_tbndl_1
110
+ name: con_2_tbndl_1
111
+ type: module
112
+ subtype: bndl
113
+ is_taxon_recommendable: true
114
+ - temp_id: con_2_tbndl_1_atom_1
115
+ name: con_2_tbndl_1_atom_1
116
+ type: module
117
+ subtype: atom
118
+ is_taxon_recommendable: true
119
+ - temp_id: con_2_tbndl_1_atom_2
120
+ name: con_2_tbndl_1_atom_2
121
+ type: module
122
+ subtype: atom
123
+ is_taxon_recommendable: false
124
+ - temp_id: con_2_abndl_1
125
+ name: con_2_abndl_1
126
+ type: module
127
+ subtype: bndl
128
+ is_taxon_recommendable: true
129
+ - temp_id: con_2_abndl_1_atom_1
130
+ name: con_2_abndl_1_atom_1
131
+ type: module
132
+ subtype: atom
133
+ is_taxon_recommendable: true
134
+ - temp_id: con_2_abndl_1_atom_2
135
+ name: con_2_abndl_1_atom_2
136
+ type: module
137
+ subtype: atom
138
+ is_taxon_recommendable: false
139
+ - temp_id: con_2_abndl_1_atom_3
140
+ name: con_2_abndl_1_atom_3
141
+ type: module
142
+ subtype: atom
143
+ is_taxon_recommendable: false
144
+ - temp_id: con_2_abndl_1_atom_4
145
+ name: con_2_abndl_1_atom_4
146
+ type: module
147
+ subtype: atom
148
+ is_taxon_recommendable: false
149
+ - temp_id: con_2_abndl_2
150
+ name: con_2_abndl_2
151
+ type: module
152
+ subtype: bndl
153
+ is_taxon_recommendable: false
154
+ - temp_id: con_2_abndl_2_atom_1
155
+ name: con_2_abndl_2_atom_1
156
+ type: module
157
+ subtype: atom
158
+ is_taxon_recommendable: true
159
+ - temp_id: con_2_abndl_2_atom_2
160
+ name: con_2_abndl_2_atom_2
161
+ type: module
162
+ subtype: atom
163
+ is_taxon_recommendable: false
164
+ - temp_id: con_2_abndl_2_atom_3
165
+ name: con_2_abndl_2_atom_3
166
+ type: module
167
+ subtype: atom
168
+ is_taxon_recommendable: false
169
+ - temp_id: con_2_abndl_2_atom_4
170
+ name: con_2_abndl_2_atom_4
171
+ type: module
172
+ subtype: atom
173
+ is_taxon_recommendable: false
174
+ - temp_id: con_2_abndl_3
175
+ name: con_2_abndl_3
176
+ type: module
177
+ subtype: bndl
178
+ is_taxon_recommendable: false
179
+ - temp_id: con_2_abndl_3_atom_1
180
+ name: con_2_abndl_3_atom_1
181
+ type: module
182
+ subtype: atom
183
+ is_taxon_recommendable: true
184
+ - temp_id: con_2_abndl_3_atom_2
185
+ name: con_2_abndl_3_atom_2
186
+ type: module
187
+ subtype: atom
188
+ is_taxon_recommendable: false
189
+ - temp_id: con_2_abndl_3_atom_3
190
+ name: con_2_abndl_3_atom_3
191
+ type: module
192
+ subtype: atom
193
+ is_taxon_recommendable: false
194
+ - temp_id: con_2_abndl_3_atom_4
195
+ name: con_2_abndl_3_atom_4
196
+ type: module
197
+ subtype: atom
198
+ is_taxon_recommendable: false
199
+ - temp_id: con_3
200
+ type: concept
201
+ subtype:
202
+ name: con_3
203
+ - type: learning_objective
204
+ name: lo_3
205
+ temp_id: lo_3
206
+ - temp_id: con_3_tbndl_1
207
+ name: con_3_tbndl_1
208
+ type: module
209
+ subtype: bndl
210
+ is_taxon_recommendable: true
211
+ - temp_id: con_3_tbndl_1_atom_1
212
+ name: con_3_tbndl_1_atom_1
213
+ type: module
214
+ subtype: atom
215
+ is_taxon_recommendable: true
216
+ - temp_id: con_3_tbndl_1_atom_2
217
+ name: con_3_tbndl_1_atom_2
218
+ type: module
219
+ subtype: atom
220
+ is_taxon_recommendable: false
221
+ - temp_id: con_3_abndl_1
222
+ name: con_3_abndl_1
223
+ type: module
224
+ subtype: bndl
225
+ is_taxon_recommendable: true
226
+ - temp_id: con_3_abndl_1_atom_1
227
+ name: con_3_abndl_1_atom_1
228
+ type: module
229
+ subtype: atom
230
+ is_taxon_recommendable: true
231
+ - temp_id: con_3_abndl_1_atom_2
232
+ name: con_3_abndl_1_atom_2
233
+ type: module
234
+ subtype: atom
235
+ is_taxon_recommendable: false
236
+ - temp_id: con_3_abndl_1_atom_3
237
+ name: con_3_abndl_1_atom_3
238
+ type: module
239
+ subtype: atom
240
+ is_taxon_recommendable: false
241
+ - temp_id: con_3_abndl_1_atom_4
242
+ name: con_3_abndl_1_atom_4
243
+ type: module
244
+ subtype: atom
245
+ is_taxon_recommendable: false
246
+ - temp_id: con_3_abndl_2
247
+ name: con_3_abndl_2
248
+ type: module
249
+ subtype: bndl
250
+ is_taxon_recommendable: false
251
+ - temp_id: con_3_abndl_2_atom_1
252
+ name: con_3_abndl_2_atom_1
253
+ type: module
254
+ subtype: atom
255
+ is_taxon_recommendable: true
256
+ - temp_id: con_3_abndl_2_atom_2
257
+ name: con_3_abndl_2_atom_2
258
+ type: module
259
+ subtype: atom
260
+ is_taxon_recommendable: false
261
+ - temp_id: con_3_abndl_2_atom_3
262
+ name: con_3_abndl_2_atom_3
263
+ type: module
264
+ subtype: atom
265
+ is_taxon_recommendable: false
266
+ - temp_id: con_3_abndl_2_atom_4
267
+ name: con_3_abndl_2_atom_4
268
+ type: module
269
+ subtype: atom
270
+ is_taxon_recommendable: false
271
+ - temp_id: con_3_abndl_3
272
+ name: con_3_abndl_3
273
+ type: module
274
+ subtype: bndl
275
+ is_taxon_recommendable: false
276
+ - temp_id: con_3_abndl_3_atom_1
277
+ name: con_3_abndl_3_atom_1
278
+ type: module
279
+ subtype: atom
280
+ is_taxon_recommendable: true
281
+ - temp_id: con_3_abndl_3_atom_2
282
+ name: con_3_abndl_3_atom_2
283
+ type: module
284
+ subtype: atom
285
+ is_taxon_recommendable: false
286
+ - temp_id: con_3_abndl_3_atom_3
287
+ name: con_3_abndl_3_atom_3
288
+ type: module
289
+ subtype: atom
290
+ is_taxon_recommendable: false
291
+ - temp_id: con_3_abndl_3_atom_4
292
+ name: con_3_abndl_3_atom_4
293
+ type: module
294
+ subtype: atom
295
+ is_taxon_recommendable: false
296
+ - temp_id: con_4
297
+ type: concept
298
+ subtype:
299
+ name: con_4
300
+ - type: learning_objective
301
+ name: lo_4
302
+ temp_id: lo_4
303
+ - temp_id: con_4_tbndl_1
304
+ name: con_4_tbndl_1
305
+ type: module
306
+ subtype: bndl
307
+ is_taxon_recommendable: true
308
+ - temp_id: con_4_tbndl_1_atom_1
309
+ name: con_4_tbndl_1_atom_1
310
+ type: module
311
+ subtype: atom
312
+ is_taxon_recommendable: true
313
+ - temp_id: con_4_tbndl_1_atom_2
314
+ name: con_4_tbndl_1_atom_2
315
+ type: module
316
+ subtype: atom
317
+ is_taxon_recommendable: false
318
+ - temp_id: con_4_abndl_1
319
+ name: con_4_abndl_1
320
+ type: module
321
+ subtype: bndl
322
+ is_taxon_recommendable: true
323
+ - temp_id: con_4_abndl_1_atom_1
324
+ name: con_4_abndl_1_atom_1
325
+ type: module
326
+ subtype: atom
327
+ is_taxon_recommendable: true
328
+ - temp_id: con_4_abndl_1_atom_2
329
+ name: con_4_abndl_1_atom_2
330
+ type: module
331
+ subtype: atom
332
+ is_taxon_recommendable: false
333
+ - temp_id: con_4_abndl_1_atom_3
334
+ name: con_4_abndl_1_atom_3
335
+ type: module
336
+ subtype: atom
337
+ is_taxon_recommendable: false
338
+ - temp_id: con_4_abndl_1_atom_4
339
+ name: con_4_abndl_1_atom_4
340
+ type: module
341
+ subtype: atom
342
+ is_taxon_recommendable: false
343
+ - temp_id: con_4_abndl_2
344
+ name: con_4_abndl_2
345
+ type: module
346
+ subtype: bndl
347
+ is_taxon_recommendable: false
348
+ - temp_id: con_4_abndl_2_atom_1
349
+ name: con_4_abndl_2_atom_1
350
+ type: module
351
+ subtype: atom
352
+ is_taxon_recommendable: true
353
+ - temp_id: con_4_abndl_2_atom_2
354
+ name: con_4_abndl_2_atom_2
355
+ type: module
356
+ subtype: atom
357
+ is_taxon_recommendable: false
358
+ - temp_id: con_4_abndl_2_atom_3
359
+ name: con_4_abndl_2_atom_3
360
+ type: module
361
+ subtype: atom
362
+ is_taxon_recommendable: false
363
+ - temp_id: con_4_abndl_2_atom_4
364
+ name: con_4_abndl_2_atom_4
365
+ type: module
366
+ subtype: atom
367
+ is_taxon_recommendable: false
368
+ - temp_id: con_4_abndl_3
369
+ name: con_4_abndl_3
370
+ type: module
371
+ subtype: bndl
372
+ is_taxon_recommendable: false
373
+ - temp_id: con_4_abndl_3_atom_1
374
+ name: con_4_abndl_3_atom_1
375
+ type: module
376
+ subtype: atom
377
+ is_taxon_recommendable: true
378
+ - temp_id: con_4_abndl_3_atom_2
379
+ name: con_4_abndl_3_atom_2
380
+ type: module
381
+ subtype: atom
382
+ is_taxon_recommendable: false
383
+ - temp_id: con_4_abndl_3_atom_3
384
+ name: con_4_abndl_3_atom_3
385
+ type: module
386
+ subtype: atom
387
+ is_taxon_recommendable: false
388
+ - temp_id: con_4_abndl_3_atom_4
389
+ name: con_4_abndl_3_atom_4
390
+ type: module
391
+ subtype: atom
392
+ is_taxon_recommendable: false
393
+ - temp_id: con_5
394
+ type: concept
395
+ subtype:
396
+ name: con_5
397
+ - type: learning_objective
398
+ name: lo_5
399
+ temp_id: lo_5
400
+ - temp_id: con_5_tbndl_1
401
+ name: con_5_tbndl_1
402
+ type: module
403
+ subtype: bndl
404
+ is_taxon_recommendable: true
405
+ - temp_id: con_5_tbndl_1_atom_1
406
+ name: con_5_tbndl_1_atom_1
407
+ type: module
408
+ subtype: atom
409
+ is_taxon_recommendable: true
410
+ - temp_id: con_5_tbndl_1_atom_2
411
+ name: con_5_tbndl_1_atom_2
412
+ type: module
413
+ subtype: atom
414
+ is_taxon_recommendable: false
415
+ - temp_id: con_5_abndl_1
416
+ name: con_5_abndl_1
417
+ type: module
418
+ subtype: bndl
419
+ is_taxon_recommendable: true
420
+ - temp_id: con_5_abndl_1_atom_1
421
+ name: con_5_abndl_1_atom_1
422
+ type: module
423
+ subtype: atom
424
+ is_taxon_recommendable: true
425
+ - temp_id: con_5_abndl_1_atom_2
426
+ name: con_5_abndl_1_atom_2
427
+ type: module
428
+ subtype: atom
429
+ is_taxon_recommendable: false
430
+ - temp_id: con_5_abndl_1_atom_3
431
+ name: con_5_abndl_1_atom_3
432
+ type: module
433
+ subtype: atom
434
+ is_taxon_recommendable: false
435
+ - temp_id: con_5_abndl_1_atom_4
436
+ name: con_5_abndl_1_atom_4
437
+ type: module
438
+ subtype: atom
439
+ is_taxon_recommendable: false
440
+ - temp_id: con_5_abndl_2
441
+ name: con_5_abndl_2
442
+ type: module
443
+ subtype: bndl
444
+ is_taxon_recommendable: false
445
+ - temp_id: con_5_abndl_2_atom_1
446
+ name: con_5_abndl_2_atom_1
447
+ type: module
448
+ subtype: atom
449
+ is_taxon_recommendable: true
450
+ - temp_id: con_5_abndl_2_atom_2
451
+ name: con_5_abndl_2_atom_2
452
+ type: module
453
+ subtype: atom
454
+ is_taxon_recommendable: false
455
+ - temp_id: con_5_abndl_2_atom_3
456
+ name: con_5_abndl_2_atom_3
457
+ type: module
458
+ subtype: atom
459
+ is_taxon_recommendable: false
460
+ - temp_id: con_5_abndl_2_atom_4
461
+ name: con_5_abndl_2_atom_4
462
+ type: module
463
+ subtype: atom
464
+ is_taxon_recommendable: false
465
+ - temp_id: con_5_abndl_3
466
+ name: con_5_abndl_3
467
+ type: module
468
+ subtype: bndl
469
+ is_taxon_recommendable: false
470
+ - temp_id: con_5_abndl_3_atom_1
471
+ name: con_5_abndl_3_atom_1
472
+ type: module
473
+ subtype: atom
474
+ is_taxon_recommendable: true
475
+ - temp_id: con_5_abndl_3_atom_2
476
+ name: con_5_abndl_3_atom_2
477
+ type: module
478
+ subtype: atom
479
+ is_taxon_recommendable: false
480
+ - temp_id: con_5_abndl_3_atom_3
481
+ name: con_5_abndl_3_atom_3
482
+ type: module
483
+ subtype: atom
484
+ is_taxon_recommendable: false
485
+ - temp_id: con_5_abndl_3_atom_4
486
+ name: con_5_abndl_3_atom_4
487
+ type: module
488
+ subtype: atom
489
+ is_taxon_recommendable: false
490
+ - temp_id: con_6
491
+ type: concept
492
+ subtype:
493
+ name: con_6
494
+ - type: learning_objective
495
+ name: lo_6
496
+ temp_id: lo_6
497
+ - temp_id: con_6_tbndl_1
498
+ name: con_6_tbndl_1
499
+ type: module
500
+ subtype: bndl
501
+ is_taxon_recommendable: true
502
+ - temp_id: con_6_tbndl_1_atom_1
503
+ name: con_6_tbndl_1_atom_1
504
+ type: module
505
+ subtype: atom
506
+ is_taxon_recommendable: true
507
+ - temp_id: con_6_tbndl_1_atom_2
508
+ name: con_6_tbndl_1_atom_2
509
+ type: module
510
+ subtype: atom
511
+ is_taxon_recommendable: false
512
+ - temp_id: con_6_abndl_1
513
+ name: con_6_abndl_1
514
+ type: module
515
+ subtype: bndl
516
+ is_taxon_recommendable: true
517
+ - temp_id: con_6_abndl_1_atom_1
518
+ name: con_6_abndl_1_atom_1
519
+ type: module
520
+ subtype: atom
521
+ is_taxon_recommendable: true
522
+ - temp_id: con_6_abndl_1_atom_2
523
+ name: con_6_abndl_1_atom_2
524
+ type: module
525
+ subtype: atom
526
+ is_taxon_recommendable: false
527
+ - temp_id: con_6_abndl_1_atom_3
528
+ name: con_6_abndl_1_atom_3
529
+ type: module
530
+ subtype: atom
531
+ is_taxon_recommendable: false
532
+ - temp_id: con_6_abndl_1_atom_4
533
+ name: con_6_abndl_1_atom_4
534
+ type: module
535
+ subtype: atom
536
+ is_taxon_recommendable: false
537
+ - temp_id: con_6_abndl_2
538
+ name: con_6_abndl_2
539
+ type: module
540
+ subtype: bndl
541
+ is_taxon_recommendable: false
542
+ - temp_id: con_6_abndl_2_atom_1
543
+ name: con_6_abndl_2_atom_1
544
+ type: module
545
+ subtype: atom
546
+ is_taxon_recommendable: true
547
+ - temp_id: con_6_abndl_2_atom_2
548
+ name: con_6_abndl_2_atom_2
549
+ type: module
550
+ subtype: atom
551
+ is_taxon_recommendable: false
552
+ - temp_id: con_6_abndl_2_atom_3
553
+ name: con_6_abndl_2_atom_3
554
+ type: module
555
+ subtype: atom
556
+ is_taxon_recommendable: false
557
+ - temp_id: con_6_abndl_2_atom_4
558
+ name: con_6_abndl_2_atom_4
559
+ type: module
560
+ subtype: atom
561
+ is_taxon_recommendable: false
562
+ - temp_id: con_6_abndl_3
563
+ name: con_6_abndl_3
564
+ type: module
565
+ subtype: bndl
566
+ is_taxon_recommendable: false
567
+ - temp_id: con_6_abndl_3_atom_1
568
+ name: con_6_abndl_3_atom_1
569
+ type: module
570
+ subtype: atom
571
+ is_taxon_recommendable: true
572
+ - temp_id: con_6_abndl_3_atom_2
573
+ name: con_6_abndl_3_atom_2
574
+ type: module
575
+ subtype: atom
576
+ is_taxon_recommendable: false
577
+ - temp_id: con_6_abndl_3_atom_3
578
+ name: con_6_abndl_3_atom_3
579
+ type: module
580
+ subtype: atom
581
+ is_taxon_recommendable: false
582
+ - temp_id: con_6_abndl_3_atom_4
583
+ name: con_6_abndl_3_atom_4
584
+ type: module
585
+ subtype: atom
586
+ is_taxon_recommendable: false
587
+ - temp_id: con_7
588
+ type: concept
589
+ subtype:
590
+ name: con_7
591
+ - type: learning_objective
592
+ name: lo_7
593
+ temp_id: lo_7
594
+ - temp_id: con_7_tbndl_1
595
+ name: con_7_tbndl_1
596
+ type: module
597
+ subtype: bndl
598
+ is_taxon_recommendable: true
599
+ - temp_id: con_7_tbndl_1_atom_1
600
+ name: con_7_tbndl_1_atom_1
601
+ type: module
602
+ subtype: atom
603
+ is_taxon_recommendable: true
604
+ - temp_id: con_7_tbndl_1_atom_2
605
+ name: con_7_tbndl_1_atom_2
606
+ type: module
607
+ subtype: atom
608
+ is_taxon_recommendable: false
609
+ - temp_id: con_7_abndl_1
610
+ name: con_7_abndl_1
611
+ type: module
612
+ subtype: bndl
613
+ is_taxon_recommendable: true
614
+ - temp_id: con_7_abndl_1_atom_1
615
+ name: con_7_abndl_1_atom_1
616
+ type: module
617
+ subtype: atom
618
+ is_taxon_recommendable: true
619
+ - temp_id: con_7_abndl_1_atom_2
620
+ name: con_7_abndl_1_atom_2
621
+ type: module
622
+ subtype: atom
623
+ is_taxon_recommendable: false
624
+ - temp_id: con_7_abndl_1_atom_3
625
+ name: con_7_abndl_1_atom_3
626
+ type: module
627
+ subtype: atom
628
+ is_taxon_recommendable: false
629
+ - temp_id: con_7_abndl_1_atom_4
630
+ name: con_7_abndl_1_atom_4
631
+ type: module
632
+ subtype: atom
633
+ is_taxon_recommendable: false
634
+ - temp_id: con_7_abndl_2
635
+ name: con_7_abndl_2
636
+ type: module
637
+ subtype: bndl
638
+ is_taxon_recommendable: false
639
+ - temp_id: con_7_abndl_2_atom_1
640
+ name: con_7_abndl_2_atom_1
641
+ type: module
642
+ subtype: atom
643
+ is_taxon_recommendable: true
644
+ - temp_id: con_7_abndl_2_atom_2
645
+ name: con_7_abndl_2_atom_2
646
+ type: module
647
+ subtype: atom
648
+ is_taxon_recommendable: false
649
+ - temp_id: con_7_abndl_2_atom_3
650
+ name: con_7_abndl_2_atom_3
651
+ type: module
652
+ subtype: atom
653
+ is_taxon_recommendable: false
654
+ - temp_id: con_7_abndl_2_atom_4
655
+ name: con_7_abndl_2_atom_4
656
+ type: module
657
+ subtype: atom
658
+ is_taxon_recommendable: false
659
+ - temp_id: con_7_abndl_3
660
+ name: con_7_abndl_3
661
+ type: module
662
+ subtype: bndl
663
+ is_taxon_recommendable: false
664
+ - temp_id: con_7_abndl_3_atom_1
665
+ name: con_7_abndl_3_atom_1
666
+ type: module
667
+ subtype: atom
668
+ is_taxon_recommendable: true
669
+ - temp_id: con_7_abndl_3_atom_2
670
+ name: con_7_abndl_3_atom_2
671
+ type: module
672
+ subtype: atom
673
+ is_taxon_recommendable: false
674
+ - temp_id: con_7_abndl_3_atom_3
675
+ name: con_7_abndl_3_atom_3
676
+ type: module
677
+ subtype: atom
678
+ is_taxon_recommendable: false
679
+ - temp_id: con_7_abndl_3_atom_4
680
+ name: con_7_abndl_3_atom_4
681
+ type: module
682
+ subtype: atom
683
+ is_taxon_recommendable: false
684
+ - temp_id: con_8
685
+ type: concept
686
+ subtype:
687
+ name: con_8
688
+ - type: learning_objective
689
+ name: lo_8
690
+ temp_id: lo_8
691
+ - temp_id: con_8_tbndl_1
692
+ name: con_8_tbndl_1
693
+ type: module
694
+ subtype: bndl
695
+ is_taxon_recommendable: true
696
+ - temp_id: con_8_tbndl_1_atom_1
697
+ name: con_8_tbndl_1_atom_1
698
+ type: module
699
+ subtype: atom
700
+ is_taxon_recommendable: true
701
+ - temp_id: con_8_tbndl_1_atom_2
702
+ name: con_8_tbndl_1_atom_2
703
+ type: module
704
+ subtype: atom
705
+ is_taxon_recommendable: false
706
+ - temp_id: con_8_abndl_1
707
+ name: con_8_abndl_1
708
+ type: module
709
+ subtype: bndl
710
+ is_taxon_recommendable: true
711
+ - temp_id: con_8_abndl_1_atom_1
712
+ name: con_8_abndl_1_atom_1
713
+ type: module
714
+ subtype: atom
715
+ is_taxon_recommendable: true
716
+ - temp_id: con_8_abndl_1_atom_2
717
+ name: con_8_abndl_1_atom_2
718
+ type: module
719
+ subtype: atom
720
+ is_taxon_recommendable: false
721
+ - temp_id: con_8_abndl_1_atom_3
722
+ name: con_8_abndl_1_atom_3
723
+ type: module
724
+ subtype: atom
725
+ is_taxon_recommendable: false
726
+ - temp_id: con_8_abndl_1_atom_4
727
+ name: con_8_abndl_1_atom_4
728
+ type: module
729
+ subtype: atom
730
+ is_taxon_recommendable: false
731
+ - temp_id: con_8_abndl_2
732
+ name: con_8_abndl_2
733
+ type: module
734
+ subtype: bndl
735
+ is_taxon_recommendable: false
736
+ - temp_id: con_8_abndl_2_atom_1
737
+ name: con_8_abndl_2_atom_1
738
+ type: module
739
+ subtype: atom
740
+ is_taxon_recommendable: true
741
+ - temp_id: con_8_abndl_2_atom_2
742
+ name: con_8_abndl_2_atom_2
743
+ type: module
744
+ subtype: atom
745
+ is_taxon_recommendable: false
746
+ - temp_id: con_8_abndl_2_atom_3
747
+ name: con_8_abndl_2_atom_3
748
+ type: module
749
+ subtype: atom
750
+ is_taxon_recommendable: false
751
+ - temp_id: con_8_abndl_2_atom_4
752
+ name: con_8_abndl_2_atom_4
753
+ type: module
754
+ subtype: atom
755
+ is_taxon_recommendable: false
756
+ - temp_id: con_8_abndl_3
757
+ name: con_8_abndl_3
758
+ type: module
759
+ subtype: bndl
760
+ is_taxon_recommendable: false
761
+ - temp_id: con_8_abndl_3_atom_1
762
+ name: con_8_abndl_3_atom_1
763
+ type: module
764
+ subtype: atom
765
+ is_taxon_recommendable: true
766
+ - temp_id: con_8_abndl_3_atom_2
767
+ name: con_8_abndl_3_atom_2
768
+ type: module
769
+ subtype: atom
770
+ is_taxon_recommendable: false
771
+ - temp_id: con_8_abndl_3_atom_3
772
+ name: con_8_abndl_3_atom_3
773
+ type: module
774
+ subtype: atom
775
+ is_taxon_recommendable: false
776
+ - temp_id: con_8_abndl_3_atom_4
777
+ name: con_8_abndl_3_atom_4
778
+ type: module
779
+ subtype: atom
780
+ is_taxon_recommendable: false
781
+ - temp_id: con_9
782
+ type: concept
783
+ subtype:
784
+ name: con_9
785
+ - type: learning_objective
786
+ name: lo_9
787
+ temp_id: lo_9
788
+ - temp_id: con_9_tbndl_1
789
+ name: con_9_tbndl_1
790
+ type: module
791
+ subtype: bndl
792
+ is_taxon_recommendable: true
793
+ - temp_id: con_9_tbndl_1_atom_1
794
+ name: con_9_tbndl_1_atom_1
795
+ type: module
796
+ subtype: atom
797
+ is_taxon_recommendable: true
798
+ - temp_id: con_9_tbndl_1_atom_2
799
+ name: con_9_tbndl_1_atom_2
800
+ type: module
801
+ subtype: atom
802
+ is_taxon_recommendable: false
803
+ - temp_id: con_9_abndl_1
804
+ name: con_9_abndl_1
805
+ type: module
806
+ subtype: bndl
807
+ is_taxon_recommendable: true
808
+ - temp_id: con_9_abndl_1_atom_1
809
+ name: con_9_abndl_1_atom_1
810
+ type: module
811
+ subtype: atom
812
+ is_taxon_recommendable: true
813
+ - temp_id: con_9_abndl_1_atom_2
814
+ name: con_9_abndl_1_atom_2
815
+ type: module
816
+ subtype: atom
817
+ is_taxon_recommendable: false
818
+ - temp_id: con_9_abndl_1_atom_3
819
+ name: con_9_abndl_1_atom_3
820
+ type: module
821
+ subtype: atom
822
+ is_taxon_recommendable: false
823
+ - temp_id: con_9_abndl_1_atom_4
824
+ name: con_9_abndl_1_atom_4
825
+ type: module
826
+ subtype: atom
827
+ is_taxon_recommendable: false
828
+ - temp_id: con_9_abndl_2
829
+ name: con_9_abndl_2
830
+ type: module
831
+ subtype: bndl
832
+ is_taxon_recommendable: false
833
+ - temp_id: con_9_abndl_2_atom_1
834
+ name: con_9_abndl_2_atom_1
835
+ type: module
836
+ subtype: atom
837
+ is_taxon_recommendable: true
838
+ - temp_id: con_9_abndl_2_atom_2
839
+ name: con_9_abndl_2_atom_2
840
+ type: module
841
+ subtype: atom
842
+ is_taxon_recommendable: false
843
+ - temp_id: con_9_abndl_2_atom_3
844
+ name: con_9_abndl_2_atom_3
845
+ type: module
846
+ subtype: atom
847
+ is_taxon_recommendable: false
848
+ - temp_id: con_9_abndl_2_atom_4
849
+ name: con_9_abndl_2_atom_4
850
+ type: module
851
+ subtype: atom
852
+ is_taxon_recommendable: false
853
+ - temp_id: con_9_abndl_3
854
+ name: con_9_abndl_3
855
+ type: module
856
+ subtype: bndl
857
+ is_taxon_recommendable: false
858
+ - temp_id: con_9_abndl_3_atom_1
859
+ name: con_9_abndl_3_atom_1
860
+ type: module
861
+ subtype: atom
862
+ is_taxon_recommendable: true
863
+ - temp_id: con_9_abndl_3_atom_2
864
+ name: con_9_abndl_3_atom_2
865
+ type: module
866
+ subtype: atom
867
+ is_taxon_recommendable: false
868
+ - temp_id: con_9_abndl_3_atom_3
869
+ name: con_9_abndl_3_atom_3
870
+ type: module
871
+ subtype: atom
872
+ is_taxon_recommendable: false
873
+ - temp_id: con_9_abndl_3_atom_4
874
+ name: con_9_abndl_3_atom_4
875
+ type: module
876
+ subtype: atom
877
+ is_taxon_recommendable: false
878
+ - temp_id: con_10
879
+ type: concept
880
+ subtype:
881
+ name: con_10
882
+ - type: learning_objective
883
+ name: lo_10
884
+ temp_id: lo_10
885
+ - temp_id: con_10_tbndl_1
886
+ name: con_10_tbndl_1
887
+ type: module
888
+ subtype: bndl
889
+ is_taxon_recommendable: true
890
+ - temp_id: con_10_tbndl_1_atom_1
891
+ name: con_10_tbndl_1_atom_1
892
+ type: module
893
+ subtype: atom
894
+ is_taxon_recommendable: true
895
+ - temp_id: con_10_tbndl_1_atom_2
896
+ name: con_10_tbndl_1_atom_2
897
+ type: module
898
+ subtype: atom
899
+ is_taxon_recommendable: false
900
+ - temp_id: con_10_abndl_1
901
+ name: con_10_abndl_1
902
+ type: module
903
+ subtype: bndl
904
+ is_taxon_recommendable: true
905
+ - temp_id: con_10_abndl_1_atom_1
906
+ name: con_10_abndl_1_atom_1
907
+ type: module
908
+ subtype: atom
909
+ is_taxon_recommendable: true
910
+ - temp_id: con_10_abndl_1_atom_2
911
+ name: con_10_abndl_1_atom_2
912
+ type: module
913
+ subtype: atom
914
+ is_taxon_recommendable: false
915
+ - temp_id: con_10_abndl_1_atom_3
916
+ name: con_10_abndl_1_atom_3
917
+ type: module
918
+ subtype: atom
919
+ is_taxon_recommendable: false
920
+ - temp_id: con_10_abndl_1_atom_4
921
+ name: con_10_abndl_1_atom_4
922
+ type: module
923
+ subtype: atom
924
+ is_taxon_recommendable: false
925
+ - temp_id: con_10_abndl_2
926
+ name: con_10_abndl_2
927
+ type: module
928
+ subtype: bndl
929
+ is_taxon_recommendable: false
930
+ - temp_id: con_10_abndl_2_atom_1
931
+ name: con_10_abndl_2_atom_1
932
+ type: module
933
+ subtype: atom
934
+ is_taxon_recommendable: true
935
+ - temp_id: con_10_abndl_2_atom_2
936
+ name: con_10_abndl_2_atom_2
937
+ type: module
938
+ subtype: atom
939
+ is_taxon_recommendable: false
940
+ - temp_id: con_10_abndl_2_atom_3
941
+ name: con_10_abndl_2_atom_3
942
+ type: module
943
+ subtype: atom
944
+ is_taxon_recommendable: false
945
+ - temp_id: con_10_abndl_2_atom_4
946
+ name: con_10_abndl_2_atom_4
947
+ type: module
948
+ subtype: atom
949
+ is_taxon_recommendable: false
950
+ - temp_id: con_10_abndl_3
951
+ name: con_10_abndl_3
952
+ type: module
953
+ subtype: bndl
954
+ is_taxon_recommendable: false
955
+ - temp_id: con_10_abndl_3_atom_1
956
+ name: con_10_abndl_3_atom_1
957
+ type: module
958
+ subtype: atom
959
+ is_taxon_recommendable: true
960
+ - temp_id: con_10_abndl_3_atom_2
961
+ name: con_10_abndl_3_atom_2
962
+ type: module
963
+ subtype: atom
964
+ is_taxon_recommendable: false
965
+ - temp_id: con_10_abndl_3_atom_3
966
+ name: con_10_abndl_3_atom_3
967
+ type: module
968
+ subtype: atom
969
+ is_taxon_recommendable: false
970
+ - temp_id: con_10_abndl_3_atom_4
971
+ name: con_10_abndl_3_atom_4
972
+ type: module
973
+ subtype: atom
974
+ is_taxon_recommendable: false
975
+ edges:
976
+ - start_temp_id: con_1_tbndl_1
977
+ end_temp_id: con_1_tbndl_1_atom_1
978
+ type: contains
979
+ - start_temp_id: con_1
980
+ end_temp_id: con_1_tbndl_1_atom_1
981
+ type: taught_by
982
+ - start_temp_id: lo_1
983
+ end_temp_id: con_1_tbndl_1_atom_1
984
+ type: contains
985
+ - start_temp_id: con_1_tbndl_1
986
+ end_temp_id: con_1_tbndl_1_atom_2
987
+ type: contains
988
+ - start_temp_id: con_1
989
+ end_temp_id: con_1_tbndl_1_atom_2
990
+ type: taught_by
991
+ - start_temp_id: lo_1
992
+ end_temp_id: con_1_tbndl_1_atom_2
993
+ type: contains
994
+ - start_temp_id: con_1_abndl_1
995
+ end_temp_id: con_1_abndl_1_atom_1
996
+ type: contains
997
+ - start_temp_id: con_1
998
+ end_temp_id: con_1_abndl_1_atom_1
999
+ type: assessed_by
1000
+ - start_temp_id: lo_1
1001
+ end_temp_id: con_1_abndl_1_atom_1
1002
+ type: contains
1003
+ - start_temp_id: con_1_abndl_1
1004
+ end_temp_id: con_1_abndl_1_atom_2
1005
+ type: contains
1006
+ - start_temp_id: con_1
1007
+ end_temp_id: con_1_abndl_1_atom_2
1008
+ type: assessed_by
1009
+ - start_temp_id: lo_1
1010
+ end_temp_id: con_1_abndl_1_atom_2
1011
+ type: contains
1012
+ - start_temp_id: con_1_abndl_1
1013
+ end_temp_id: con_1_abndl_1_atom_3
1014
+ type: contains
1015
+ - start_temp_id: con_1
1016
+ end_temp_id: con_1_abndl_1_atom_3
1017
+ type: assessed_by
1018
+ - start_temp_id: lo_1
1019
+ end_temp_id: con_1_abndl_1_atom_3
1020
+ type: contains
1021
+ - start_temp_id: con_1_abndl_1
1022
+ end_temp_id: con_1_abndl_1_atom_4
1023
+ type: contains
1024
+ - start_temp_id: con_1
1025
+ end_temp_id: con_1_abndl_1_atom_4
1026
+ type: assessed_by
1027
+ - start_temp_id: lo_1
1028
+ end_temp_id: con_1_abndl_1_atom_4
1029
+ type: contains
1030
+ - start_temp_id: con_1_abndl_2
1031
+ end_temp_id: con_1_abndl_2_atom_1
1032
+ type: contains
1033
+ - start_temp_id: con_1
1034
+ end_temp_id: con_1_abndl_2_atom_1
1035
+ type: assessed_by
1036
+ - start_temp_id: lo_1
1037
+ end_temp_id: con_1_abndl_2_atom_1
1038
+ type: contains
1039
+ - start_temp_id: con_1_abndl_2
1040
+ end_temp_id: con_1_abndl_2_atom_2
1041
+ type: contains
1042
+ - start_temp_id: con_1
1043
+ end_temp_id: con_1_abndl_2_atom_2
1044
+ type: assessed_by
1045
+ - start_temp_id: lo_1
1046
+ end_temp_id: con_1_abndl_2_atom_2
1047
+ type: contains
1048
+ - start_temp_id: con_1_abndl_2
1049
+ end_temp_id: con_1_abndl_2_atom_3
1050
+ type: contains
1051
+ - start_temp_id: con_1
1052
+ end_temp_id: con_1_abndl_2_atom_3
1053
+ type: assessed_by
1054
+ - start_temp_id: lo_1
1055
+ end_temp_id: con_1_abndl_2_atom_3
1056
+ type: contains
1057
+ - start_temp_id: con_1_abndl_2
1058
+ end_temp_id: con_1_abndl_2_atom_4
1059
+ type: contains
1060
+ - start_temp_id: con_1
1061
+ end_temp_id: con_1_abndl_2_atom_4
1062
+ type: assessed_by
1063
+ - start_temp_id: lo_1
1064
+ end_temp_id: con_1_abndl_2_atom_4
1065
+ type: contains
1066
+ - start_temp_id: con_1_abndl_3
1067
+ end_temp_id: con_1_abndl_3_atom_1
1068
+ type: contains
1069
+ - start_temp_id: con_1
1070
+ end_temp_id: con_1_abndl_3_atom_1
1071
+ type: assessed_by
1072
+ - start_temp_id: lo_1
1073
+ end_temp_id: con_1_abndl_3_atom_1
1074
+ type: contains
1075
+ - start_temp_id: con_1_abndl_3
1076
+ end_temp_id: con_1_abndl_3_atom_2
1077
+ type: contains
1078
+ - start_temp_id: con_1
1079
+ end_temp_id: con_1_abndl_3_atom_2
1080
+ type: assessed_by
1081
+ - start_temp_id: lo_1
1082
+ end_temp_id: con_1_abndl_3_atom_2
1083
+ type: contains
1084
+ - start_temp_id: con_1_abndl_3
1085
+ end_temp_id: con_1_abndl_3_atom_3
1086
+ type: contains
1087
+ - start_temp_id: con_1
1088
+ end_temp_id: con_1_abndl_3_atom_3
1089
+ type: assessed_by
1090
+ - start_temp_id: lo_1
1091
+ end_temp_id: con_1_abndl_3_atom_3
1092
+ type: contains
1093
+ - start_temp_id: con_1_abndl_3
1094
+ end_temp_id: con_1_abndl_3_atom_4
1095
+ type: contains
1096
+ - start_temp_id: con_1
1097
+ end_temp_id: con_1_abndl_3_atom_4
1098
+ type: assessed_by
1099
+ - start_temp_id: lo_1
1100
+ end_temp_id: con_1_abndl_3_atom_4
1101
+ type: contains
1102
+ - start_temp_id: con_1
1103
+ end_temp_id: con_2
1104
+ type: prerequisite
1105
+ - start_temp_id: con_2_tbndl_1
1106
+ end_temp_id: con_2_tbndl_1_atom_1
1107
+ type: contains
1108
+ - start_temp_id: con_2
1109
+ end_temp_id: con_2_tbndl_1_atom_1
1110
+ type: taught_by
1111
+ - start_temp_id: lo_2
1112
+ end_temp_id: con_2_tbndl_1_atom_1
1113
+ type: contains
1114
+ - start_temp_id: con_2_tbndl_1
1115
+ end_temp_id: con_2_tbndl_1_atom_2
1116
+ type: contains
1117
+ - start_temp_id: con_2
1118
+ end_temp_id: con_2_tbndl_1_atom_2
1119
+ type: taught_by
1120
+ - start_temp_id: lo_2
1121
+ end_temp_id: con_2_tbndl_1_atom_2
1122
+ type: contains
1123
+ - start_temp_id: con_2_abndl_1
1124
+ end_temp_id: con_2_abndl_1_atom_1
1125
+ type: contains
1126
+ - start_temp_id: con_2
1127
+ end_temp_id: con_2_abndl_1_atom_1
1128
+ type: assessed_by
1129
+ - start_temp_id: lo_2
1130
+ end_temp_id: con_2_abndl_1_atom_1
1131
+ type: contains
1132
+ - start_temp_id: con_2_abndl_1
1133
+ end_temp_id: con_2_abndl_1_atom_2
1134
+ type: contains
1135
+ - start_temp_id: con_2
1136
+ end_temp_id: con_2_abndl_1_atom_2
1137
+ type: assessed_by
1138
+ - start_temp_id: lo_2
1139
+ end_temp_id: con_2_abndl_1_atom_2
1140
+ type: contains
1141
+ - start_temp_id: con_2_abndl_1
1142
+ end_temp_id: con_2_abndl_1_atom_3
1143
+ type: contains
1144
+ - start_temp_id: con_2
1145
+ end_temp_id: con_2_abndl_1_atom_3
1146
+ type: assessed_by
1147
+ - start_temp_id: lo_2
1148
+ end_temp_id: con_2_abndl_1_atom_3
1149
+ type: contains
1150
+ - start_temp_id: con_2_abndl_1
1151
+ end_temp_id: con_2_abndl_1_atom_4
1152
+ type: contains
1153
+ - start_temp_id: con_2
1154
+ end_temp_id: con_2_abndl_1_atom_4
1155
+ type: assessed_by
1156
+ - start_temp_id: lo_2
1157
+ end_temp_id: con_2_abndl_1_atom_4
1158
+ type: contains
1159
+ - start_temp_id: con_2_abndl_2
1160
+ end_temp_id: con_2_abndl_2_atom_1
1161
+ type: contains
1162
+ - start_temp_id: con_2
1163
+ end_temp_id: con_2_abndl_2_atom_1
1164
+ type: assessed_by
1165
+ - start_temp_id: lo_2
1166
+ end_temp_id: con_2_abndl_2_atom_1
1167
+ type: contains
1168
+ - start_temp_id: con_2_abndl_2
1169
+ end_temp_id: con_2_abndl_2_atom_2
1170
+ type: contains
1171
+ - start_temp_id: con_2
1172
+ end_temp_id: con_2_abndl_2_atom_2
1173
+ type: assessed_by
1174
+ - start_temp_id: lo_2
1175
+ end_temp_id: con_2_abndl_2_atom_2
1176
+ type: contains
1177
+ - start_temp_id: con_2_abndl_2
1178
+ end_temp_id: con_2_abndl_2_atom_3
1179
+ type: contains
1180
+ - start_temp_id: con_2
1181
+ end_temp_id: con_2_abndl_2_atom_3
1182
+ type: assessed_by
1183
+ - start_temp_id: lo_2
1184
+ end_temp_id: con_2_abndl_2_atom_3
1185
+ type: contains
1186
+ - start_temp_id: con_2_abndl_2
1187
+ end_temp_id: con_2_abndl_2_atom_4
1188
+ type: contains
1189
+ - start_temp_id: con_2
1190
+ end_temp_id: con_2_abndl_2_atom_4
1191
+ type: assessed_by
1192
+ - start_temp_id: lo_2
1193
+ end_temp_id: con_2_abndl_2_atom_4
1194
+ type: contains
1195
+ - start_temp_id: con_2_abndl_3
1196
+ end_temp_id: con_2_abndl_3_atom_1
1197
+ type: contains
1198
+ - start_temp_id: con_2
1199
+ end_temp_id: con_2_abndl_3_atom_1
1200
+ type: assessed_by
1201
+ - start_temp_id: lo_2
1202
+ end_temp_id: con_2_abndl_3_atom_1
1203
+ type: contains
1204
+ - start_temp_id: con_2_abndl_3
1205
+ end_temp_id: con_2_abndl_3_atom_2
1206
+ type: contains
1207
+ - start_temp_id: con_2
1208
+ end_temp_id: con_2_abndl_3_atom_2
1209
+ type: assessed_by
1210
+ - start_temp_id: lo_2
1211
+ end_temp_id: con_2_abndl_3_atom_2
1212
+ type: contains
1213
+ - start_temp_id: con_2_abndl_3
1214
+ end_temp_id: con_2_abndl_3_atom_3
1215
+ type: contains
1216
+ - start_temp_id: con_2
1217
+ end_temp_id: con_2_abndl_3_atom_3
1218
+ type: assessed_by
1219
+ - start_temp_id: lo_2
1220
+ end_temp_id: con_2_abndl_3_atom_3
1221
+ type: contains
1222
+ - start_temp_id: con_2_abndl_3
1223
+ end_temp_id: con_2_abndl_3_atom_4
1224
+ type: contains
1225
+ - start_temp_id: con_2
1226
+ end_temp_id: con_2_abndl_3_atom_4
1227
+ type: assessed_by
1228
+ - start_temp_id: lo_2
1229
+ end_temp_id: con_2_abndl_3_atom_4
1230
+ type: contains
1231
+ - start_temp_id: con_2
1232
+ end_temp_id: con_3
1233
+ type: prerequisite
1234
+ - start_temp_id: con_3_tbndl_1
1235
+ end_temp_id: con_3_tbndl_1_atom_1
1236
+ type: contains
1237
+ - start_temp_id: con_3
1238
+ end_temp_id: con_3_tbndl_1_atom_1
1239
+ type: taught_by
1240
+ - start_temp_id: lo_3
1241
+ end_temp_id: con_3_tbndl_1_atom_1
1242
+ type: contains
1243
+ - start_temp_id: con_3_tbndl_1
1244
+ end_temp_id: con_3_tbndl_1_atom_2
1245
+ type: contains
1246
+ - start_temp_id: con_3
1247
+ end_temp_id: con_3_tbndl_1_atom_2
1248
+ type: taught_by
1249
+ - start_temp_id: lo_3
1250
+ end_temp_id: con_3_tbndl_1_atom_2
1251
+ type: contains
1252
+ - start_temp_id: con_3_abndl_1
1253
+ end_temp_id: con_3_abndl_1_atom_1
1254
+ type: contains
1255
+ - start_temp_id: con_3
1256
+ end_temp_id: con_3_abndl_1_atom_1
1257
+ type: assessed_by
1258
+ - start_temp_id: lo_3
1259
+ end_temp_id: con_3_abndl_1_atom_1
1260
+ type: contains
1261
+ - start_temp_id: con_3_abndl_1
1262
+ end_temp_id: con_3_abndl_1_atom_2
1263
+ type: contains
1264
+ - start_temp_id: con_3
1265
+ end_temp_id: con_3_abndl_1_atom_2
1266
+ type: assessed_by
1267
+ - start_temp_id: lo_3
1268
+ end_temp_id: con_3_abndl_1_atom_2
1269
+ type: contains
1270
+ - start_temp_id: con_3_abndl_1
1271
+ end_temp_id: con_3_abndl_1_atom_3
1272
+ type: contains
1273
+ - start_temp_id: con_3
1274
+ end_temp_id: con_3_abndl_1_atom_3
1275
+ type: assessed_by
1276
+ - start_temp_id: lo_3
1277
+ end_temp_id: con_3_abndl_1_atom_3
1278
+ type: contains
1279
+ - start_temp_id: con_3_abndl_1
1280
+ end_temp_id: con_3_abndl_1_atom_4
1281
+ type: contains
1282
+ - start_temp_id: con_3
1283
+ end_temp_id: con_3_abndl_1_atom_4
1284
+ type: assessed_by
1285
+ - start_temp_id: lo_3
1286
+ end_temp_id: con_3_abndl_1_atom_4
1287
+ type: contains
1288
+ - start_temp_id: con_3_abndl_2
1289
+ end_temp_id: con_3_abndl_2_atom_1
1290
+ type: contains
1291
+ - start_temp_id: con_3
1292
+ end_temp_id: con_3_abndl_2_atom_1
1293
+ type: assessed_by
1294
+ - start_temp_id: lo_3
1295
+ end_temp_id: con_3_abndl_2_atom_1
1296
+ type: contains
1297
+ - start_temp_id: con_3_abndl_2
1298
+ end_temp_id: con_3_abndl_2_atom_2
1299
+ type: contains
1300
+ - start_temp_id: con_3
1301
+ end_temp_id: con_3_abndl_2_atom_2
1302
+ type: assessed_by
1303
+ - start_temp_id: lo_3
1304
+ end_temp_id: con_3_abndl_2_atom_2
1305
+ type: contains
1306
+ - start_temp_id: con_3_abndl_2
1307
+ end_temp_id: con_3_abndl_2_atom_3
1308
+ type: contains
1309
+ - start_temp_id: con_3
1310
+ end_temp_id: con_3_abndl_2_atom_3
1311
+ type: assessed_by
1312
+ - start_temp_id: lo_3
1313
+ end_temp_id: con_3_abndl_2_atom_3
1314
+ type: contains
1315
+ - start_temp_id: con_3_abndl_2
1316
+ end_temp_id: con_3_abndl_2_atom_4
1317
+ type: contains
1318
+ - start_temp_id: con_3
1319
+ end_temp_id: con_3_abndl_2_atom_4
1320
+ type: assessed_by
1321
+ - start_temp_id: lo_3
1322
+ end_temp_id: con_3_abndl_2_atom_4
1323
+ type: contains
1324
+ - start_temp_id: con_3_abndl_3
1325
+ end_temp_id: con_3_abndl_3_atom_1
1326
+ type: contains
1327
+ - start_temp_id: con_3
1328
+ end_temp_id: con_3_abndl_3_atom_1
1329
+ type: assessed_by
1330
+ - start_temp_id: lo_3
1331
+ end_temp_id: con_3_abndl_3_atom_1
1332
+ type: contains
1333
+ - start_temp_id: con_3_abndl_3
1334
+ end_temp_id: con_3_abndl_3_atom_2
1335
+ type: contains
1336
+ - start_temp_id: con_3
1337
+ end_temp_id: con_3_abndl_3_atom_2
1338
+ type: assessed_by
1339
+ - start_temp_id: lo_3
1340
+ end_temp_id: con_3_abndl_3_atom_2
1341
+ type: contains
1342
+ - start_temp_id: con_3_abndl_3
1343
+ end_temp_id: con_3_abndl_3_atom_3
1344
+ type: contains
1345
+ - start_temp_id: con_3
1346
+ end_temp_id: con_3_abndl_3_atom_3
1347
+ type: assessed_by
1348
+ - start_temp_id: lo_3
1349
+ end_temp_id: con_3_abndl_3_atom_3
1350
+ type: contains
1351
+ - start_temp_id: con_3_abndl_3
1352
+ end_temp_id: con_3_abndl_3_atom_4
1353
+ type: contains
1354
+ - start_temp_id: con_3
1355
+ end_temp_id: con_3_abndl_3_atom_4
1356
+ type: assessed_by
1357
+ - start_temp_id: lo_3
1358
+ end_temp_id: con_3_abndl_3_atom_4
1359
+ type: contains
1360
+ - start_temp_id: con_3
1361
+ end_temp_id: con_4
1362
+ type: prerequisite
1363
+ - start_temp_id: con_4_tbndl_1
1364
+ end_temp_id: con_4_tbndl_1_atom_1
1365
+ type: contains
1366
+ - start_temp_id: con_4
1367
+ end_temp_id: con_4_tbndl_1_atom_1
1368
+ type: taught_by
1369
+ - start_temp_id: lo_4
1370
+ end_temp_id: con_4_tbndl_1_atom_1
1371
+ type: contains
1372
+ - start_temp_id: con_4_tbndl_1
1373
+ end_temp_id: con_4_tbndl_1_atom_2
1374
+ type: contains
1375
+ - start_temp_id: con_4
1376
+ end_temp_id: con_4_tbndl_1_atom_2
1377
+ type: taught_by
1378
+ - start_temp_id: lo_4
1379
+ end_temp_id: con_4_tbndl_1_atom_2
1380
+ type: contains
1381
+ - start_temp_id: con_4_abndl_1
1382
+ end_temp_id: con_4_abndl_1_atom_1
1383
+ type: contains
1384
+ - start_temp_id: con_4
1385
+ end_temp_id: con_4_abndl_1_atom_1
1386
+ type: assessed_by
1387
+ - start_temp_id: lo_4
1388
+ end_temp_id: con_4_abndl_1_atom_1
1389
+ type: contains
1390
+ - start_temp_id: con_4_abndl_1
1391
+ end_temp_id: con_4_abndl_1_atom_2
1392
+ type: contains
1393
+ - start_temp_id: con_4
1394
+ end_temp_id: con_4_abndl_1_atom_2
1395
+ type: assessed_by
1396
+ - start_temp_id: lo_4
1397
+ end_temp_id: con_4_abndl_1_atom_2
1398
+ type: contains
1399
+ - start_temp_id: con_4_abndl_1
1400
+ end_temp_id: con_4_abndl_1_atom_3
1401
+ type: contains
1402
+ - start_temp_id: con_4
1403
+ end_temp_id: con_4_abndl_1_atom_3
1404
+ type: assessed_by
1405
+ - start_temp_id: lo_4
1406
+ end_temp_id: con_4_abndl_1_atom_3
1407
+ type: contains
1408
+ - start_temp_id: con_4_abndl_1
1409
+ end_temp_id: con_4_abndl_1_atom_4
1410
+ type: contains
1411
+ - start_temp_id: con_4
1412
+ end_temp_id: con_4_abndl_1_atom_4
1413
+ type: assessed_by
1414
+ - start_temp_id: lo_4
1415
+ end_temp_id: con_4_abndl_1_atom_4
1416
+ type: contains
1417
+ - start_temp_id: con_4_abndl_2
1418
+ end_temp_id: con_4_abndl_2_atom_1
1419
+ type: contains
1420
+ - start_temp_id: con_4
1421
+ end_temp_id: con_4_abndl_2_atom_1
1422
+ type: assessed_by
1423
+ - start_temp_id: lo_4
1424
+ end_temp_id: con_4_abndl_2_atom_1
1425
+ type: contains
1426
+ - start_temp_id: con_4_abndl_2
1427
+ end_temp_id: con_4_abndl_2_atom_2
1428
+ type: contains
1429
+ - start_temp_id: con_4
1430
+ end_temp_id: con_4_abndl_2_atom_2
1431
+ type: assessed_by
1432
+ - start_temp_id: lo_4
1433
+ end_temp_id: con_4_abndl_2_atom_2
1434
+ type: contains
1435
+ - start_temp_id: con_4_abndl_2
1436
+ end_temp_id: con_4_abndl_2_atom_3
1437
+ type: contains
1438
+ - start_temp_id: con_4
1439
+ end_temp_id: con_4_abndl_2_atom_3
1440
+ type: assessed_by
1441
+ - start_temp_id: lo_4
1442
+ end_temp_id: con_4_abndl_2_atom_3
1443
+ type: contains
1444
+ - start_temp_id: con_4_abndl_2
1445
+ end_temp_id: con_4_abndl_2_atom_4
1446
+ type: contains
1447
+ - start_temp_id: con_4
1448
+ end_temp_id: con_4_abndl_2_atom_4
1449
+ type: assessed_by
1450
+ - start_temp_id: lo_4
1451
+ end_temp_id: con_4_abndl_2_atom_4
1452
+ type: contains
1453
+ - start_temp_id: con_4_abndl_3
1454
+ end_temp_id: con_4_abndl_3_atom_1
1455
+ type: contains
1456
+ - start_temp_id: con_4
1457
+ end_temp_id: con_4_abndl_3_atom_1
1458
+ type: assessed_by
1459
+ - start_temp_id: lo_4
1460
+ end_temp_id: con_4_abndl_3_atom_1
1461
+ type: contains
1462
+ - start_temp_id: con_4_abndl_3
1463
+ end_temp_id: con_4_abndl_3_atom_2
1464
+ type: contains
1465
+ - start_temp_id: con_4
1466
+ end_temp_id: con_4_abndl_3_atom_2
1467
+ type: assessed_by
1468
+ - start_temp_id: lo_4
1469
+ end_temp_id: con_4_abndl_3_atom_2
1470
+ type: contains
1471
+ - start_temp_id: con_4_abndl_3
1472
+ end_temp_id: con_4_abndl_3_atom_3
1473
+ type: contains
1474
+ - start_temp_id: con_4
1475
+ end_temp_id: con_4_abndl_3_atom_3
1476
+ type: assessed_by
1477
+ - start_temp_id: lo_4
1478
+ end_temp_id: con_4_abndl_3_atom_3
1479
+ type: contains
1480
+ - start_temp_id: con_4_abndl_3
1481
+ end_temp_id: con_4_abndl_3_atom_4
1482
+ type: contains
1483
+ - start_temp_id: con_4
1484
+ end_temp_id: con_4_abndl_3_atom_4
1485
+ type: assessed_by
1486
+ - start_temp_id: lo_4
1487
+ end_temp_id: con_4_abndl_3_atom_4
1488
+ type: contains
1489
+ - start_temp_id: con_4
1490
+ end_temp_id: con_5
1491
+ type: prerequisite
1492
+ - start_temp_id: con_5_tbndl_1
1493
+ end_temp_id: con_5_tbndl_1_atom_1
1494
+ type: contains
1495
+ - start_temp_id: con_5
1496
+ end_temp_id: con_5_tbndl_1_atom_1
1497
+ type: taught_by
1498
+ - start_temp_id: lo_5
1499
+ end_temp_id: con_5_tbndl_1_atom_1
1500
+ type: contains
1501
+ - start_temp_id: con_5_tbndl_1
1502
+ end_temp_id: con_5_tbndl_1_atom_2
1503
+ type: contains
1504
+ - start_temp_id: con_5
1505
+ end_temp_id: con_5_tbndl_1_atom_2
1506
+ type: taught_by
1507
+ - start_temp_id: lo_5
1508
+ end_temp_id: con_5_tbndl_1_atom_2
1509
+ type: contains
1510
+ - start_temp_id: con_5_abndl_1
1511
+ end_temp_id: con_5_abndl_1_atom_1
1512
+ type: contains
1513
+ - start_temp_id: con_5
1514
+ end_temp_id: con_5_abndl_1_atom_1
1515
+ type: assessed_by
1516
+ - start_temp_id: lo_5
1517
+ end_temp_id: con_5_abndl_1_atom_1
1518
+ type: contains
1519
+ - start_temp_id: con_5_abndl_1
1520
+ end_temp_id: con_5_abndl_1_atom_2
1521
+ type: contains
1522
+ - start_temp_id: con_5
1523
+ end_temp_id: con_5_abndl_1_atom_2
1524
+ type: assessed_by
1525
+ - start_temp_id: lo_5
1526
+ end_temp_id: con_5_abndl_1_atom_2
1527
+ type: contains
1528
+ - start_temp_id: con_5_abndl_1
1529
+ end_temp_id: con_5_abndl_1_atom_3
1530
+ type: contains
1531
+ - start_temp_id: con_5
1532
+ end_temp_id: con_5_abndl_1_atom_3
1533
+ type: assessed_by
1534
+ - start_temp_id: lo_5
1535
+ end_temp_id: con_5_abndl_1_atom_3
1536
+ type: contains
1537
+ - start_temp_id: con_5_abndl_1
1538
+ end_temp_id: con_5_abndl_1_atom_4
1539
+ type: contains
1540
+ - start_temp_id: con_5
1541
+ end_temp_id: con_5_abndl_1_atom_4
1542
+ type: assessed_by
1543
+ - start_temp_id: lo_5
1544
+ end_temp_id: con_5_abndl_1_atom_4
1545
+ type: contains
1546
+ - start_temp_id: con_5_abndl_2
1547
+ end_temp_id: con_5_abndl_2_atom_1
1548
+ type: contains
1549
+ - start_temp_id: con_5
1550
+ end_temp_id: con_5_abndl_2_atom_1
1551
+ type: assessed_by
1552
+ - start_temp_id: lo_5
1553
+ end_temp_id: con_5_abndl_2_atom_1
1554
+ type: contains
1555
+ - start_temp_id: con_5_abndl_2
1556
+ end_temp_id: con_5_abndl_2_atom_2
1557
+ type: contains
1558
+ - start_temp_id: con_5
1559
+ end_temp_id: con_5_abndl_2_atom_2
1560
+ type: assessed_by
1561
+ - start_temp_id: lo_5
1562
+ end_temp_id: con_5_abndl_2_atom_2
1563
+ type: contains
1564
+ - start_temp_id: con_5_abndl_2
1565
+ end_temp_id: con_5_abndl_2_atom_3
1566
+ type: contains
1567
+ - start_temp_id: con_5
1568
+ end_temp_id: con_5_abndl_2_atom_3
1569
+ type: assessed_by
1570
+ - start_temp_id: lo_5
1571
+ end_temp_id: con_5_abndl_2_atom_3
1572
+ type: contains
1573
+ - start_temp_id: con_5_abndl_2
1574
+ end_temp_id: con_5_abndl_2_atom_4
1575
+ type: contains
1576
+ - start_temp_id: con_5
1577
+ end_temp_id: con_5_abndl_2_atom_4
1578
+ type: assessed_by
1579
+ - start_temp_id: lo_5
1580
+ end_temp_id: con_5_abndl_2_atom_4
1581
+ type: contains
1582
+ - start_temp_id: con_5_abndl_3
1583
+ end_temp_id: con_5_abndl_3_atom_1
1584
+ type: contains
1585
+ - start_temp_id: con_5
1586
+ end_temp_id: con_5_abndl_3_atom_1
1587
+ type: assessed_by
1588
+ - start_temp_id: lo_5
1589
+ end_temp_id: con_5_abndl_3_atom_1
1590
+ type: contains
1591
+ - start_temp_id: con_5_abndl_3
1592
+ end_temp_id: con_5_abndl_3_atom_2
1593
+ type: contains
1594
+ - start_temp_id: con_5
1595
+ end_temp_id: con_5_abndl_3_atom_2
1596
+ type: assessed_by
1597
+ - start_temp_id: lo_5
1598
+ end_temp_id: con_5_abndl_3_atom_2
1599
+ type: contains
1600
+ - start_temp_id: con_5_abndl_3
1601
+ end_temp_id: con_5_abndl_3_atom_3
1602
+ type: contains
1603
+ - start_temp_id: con_5
1604
+ end_temp_id: con_5_abndl_3_atom_3
1605
+ type: assessed_by
1606
+ - start_temp_id: lo_5
1607
+ end_temp_id: con_5_abndl_3_atom_3
1608
+ type: contains
1609
+ - start_temp_id: con_5_abndl_3
1610
+ end_temp_id: con_5_abndl_3_atom_4
1611
+ type: contains
1612
+ - start_temp_id: con_5
1613
+ end_temp_id: con_5_abndl_3_atom_4
1614
+ type: assessed_by
1615
+ - start_temp_id: lo_5
1616
+ end_temp_id: con_5_abndl_3_atom_4
1617
+ type: contains
1618
+ - start_temp_id: con_5
1619
+ end_temp_id: con_6
1620
+ type: prerequisite
1621
+ - start_temp_id: con_6_tbndl_1
1622
+ end_temp_id: con_6_tbndl_1_atom_1
1623
+ type: contains
1624
+ - start_temp_id: con_6
1625
+ end_temp_id: con_6_tbndl_1_atom_1
1626
+ type: taught_by
1627
+ - start_temp_id: lo_6
1628
+ end_temp_id: con_6_tbndl_1_atom_1
1629
+ type: contains
1630
+ - start_temp_id: con_6_tbndl_1
1631
+ end_temp_id: con_6_tbndl_1_atom_2
1632
+ type: contains
1633
+ - start_temp_id: con_6
1634
+ end_temp_id: con_6_tbndl_1_atom_2
1635
+ type: taught_by
1636
+ - start_temp_id: lo_6
1637
+ end_temp_id: con_6_tbndl_1_atom_2
1638
+ type: contains
1639
+ - start_temp_id: con_6_abndl_1
1640
+ end_temp_id: con_6_abndl_1_atom_1
1641
+ type: contains
1642
+ - start_temp_id: con_6
1643
+ end_temp_id: con_6_abndl_1_atom_1
1644
+ type: assessed_by
1645
+ - start_temp_id: lo_6
1646
+ end_temp_id: con_6_abndl_1_atom_1
1647
+ type: contains
1648
+ - start_temp_id: con_6_abndl_1
1649
+ end_temp_id: con_6_abndl_1_atom_2
1650
+ type: contains
1651
+ - start_temp_id: con_6
1652
+ end_temp_id: con_6_abndl_1_atom_2
1653
+ type: assessed_by
1654
+ - start_temp_id: lo_6
1655
+ end_temp_id: con_6_abndl_1_atom_2
1656
+ type: contains
1657
+ - start_temp_id: con_6_abndl_1
1658
+ end_temp_id: con_6_abndl_1_atom_3
1659
+ type: contains
1660
+ - start_temp_id: con_6
1661
+ end_temp_id: con_6_abndl_1_atom_3
1662
+ type: assessed_by
1663
+ - start_temp_id: lo_6
1664
+ end_temp_id: con_6_abndl_1_atom_3
1665
+ type: contains
1666
+ - start_temp_id: con_6_abndl_1
1667
+ end_temp_id: con_6_abndl_1_atom_4
1668
+ type: contains
1669
+ - start_temp_id: con_6
1670
+ end_temp_id: con_6_abndl_1_atom_4
1671
+ type: assessed_by
1672
+ - start_temp_id: lo_6
1673
+ end_temp_id: con_6_abndl_1_atom_4
1674
+ type: contains
1675
+ - start_temp_id: con_6_abndl_2
1676
+ end_temp_id: con_6_abndl_2_atom_1
1677
+ type: contains
1678
+ - start_temp_id: con_6
1679
+ end_temp_id: con_6_abndl_2_atom_1
1680
+ type: assessed_by
1681
+ - start_temp_id: lo_6
1682
+ end_temp_id: con_6_abndl_2_atom_1
1683
+ type: contains
1684
+ - start_temp_id: con_6_abndl_2
1685
+ end_temp_id: con_6_abndl_2_atom_2
1686
+ type: contains
1687
+ - start_temp_id: con_6
1688
+ end_temp_id: con_6_abndl_2_atom_2
1689
+ type: assessed_by
1690
+ - start_temp_id: lo_6
1691
+ end_temp_id: con_6_abndl_2_atom_2
1692
+ type: contains
1693
+ - start_temp_id: con_6_abndl_2
1694
+ end_temp_id: con_6_abndl_2_atom_3
1695
+ type: contains
1696
+ - start_temp_id: con_6
1697
+ end_temp_id: con_6_abndl_2_atom_3
1698
+ type: assessed_by
1699
+ - start_temp_id: lo_6
1700
+ end_temp_id: con_6_abndl_2_atom_3
1701
+ type: contains
1702
+ - start_temp_id: con_6_abndl_2
1703
+ end_temp_id: con_6_abndl_2_atom_4
1704
+ type: contains
1705
+ - start_temp_id: con_6
1706
+ end_temp_id: con_6_abndl_2_atom_4
1707
+ type: assessed_by
1708
+ - start_temp_id: lo_6
1709
+ end_temp_id: con_6_abndl_2_atom_4
1710
+ type: contains
1711
+ - start_temp_id: con_6_abndl_3
1712
+ end_temp_id: con_6_abndl_3_atom_1
1713
+ type: contains
1714
+ - start_temp_id: con_6
1715
+ end_temp_id: con_6_abndl_3_atom_1
1716
+ type: assessed_by
1717
+ - start_temp_id: lo_6
1718
+ end_temp_id: con_6_abndl_3_atom_1
1719
+ type: contains
1720
+ - start_temp_id: con_6_abndl_3
1721
+ end_temp_id: con_6_abndl_3_atom_2
1722
+ type: contains
1723
+ - start_temp_id: con_6
1724
+ end_temp_id: con_6_abndl_3_atom_2
1725
+ type: assessed_by
1726
+ - start_temp_id: lo_6
1727
+ end_temp_id: con_6_abndl_3_atom_2
1728
+ type: contains
1729
+ - start_temp_id: con_6_abndl_3
1730
+ end_temp_id: con_6_abndl_3_atom_3
1731
+ type: contains
1732
+ - start_temp_id: con_6
1733
+ end_temp_id: con_6_abndl_3_atom_3
1734
+ type: assessed_by
1735
+ - start_temp_id: lo_6
1736
+ end_temp_id: con_6_abndl_3_atom_3
1737
+ type: contains
1738
+ - start_temp_id: con_6_abndl_3
1739
+ end_temp_id: con_6_abndl_3_atom_4
1740
+ type: contains
1741
+ - start_temp_id: con_6
1742
+ end_temp_id: con_6_abndl_3_atom_4
1743
+ type: assessed_by
1744
+ - start_temp_id: lo_6
1745
+ end_temp_id: con_6_abndl_3_atom_4
1746
+ type: contains
1747
+ - start_temp_id: con_6
1748
+ end_temp_id: con_7
1749
+ type: prerequisite
1750
+ - start_temp_id: con_7_tbndl_1
1751
+ end_temp_id: con_7_tbndl_1_atom_1
1752
+ type: contains
1753
+ - start_temp_id: con_7
1754
+ end_temp_id: con_7_tbndl_1_atom_1
1755
+ type: taught_by
1756
+ - start_temp_id: lo_7
1757
+ end_temp_id: con_7_tbndl_1_atom_1
1758
+ type: contains
1759
+ - start_temp_id: con_7_tbndl_1
1760
+ end_temp_id: con_7_tbndl_1_atom_2
1761
+ type: contains
1762
+ - start_temp_id: con_7
1763
+ end_temp_id: con_7_tbndl_1_atom_2
1764
+ type: taught_by
1765
+ - start_temp_id: lo_7
1766
+ end_temp_id: con_7_tbndl_1_atom_2
1767
+ type: contains
1768
+ - start_temp_id: con_7_abndl_1
1769
+ end_temp_id: con_7_abndl_1_atom_1
1770
+ type: contains
1771
+ - start_temp_id: con_7
1772
+ end_temp_id: con_7_abndl_1_atom_1
1773
+ type: assessed_by
1774
+ - start_temp_id: lo_7
1775
+ end_temp_id: con_7_abndl_1_atom_1
1776
+ type: contains
1777
+ - start_temp_id: con_7_abndl_1
1778
+ end_temp_id: con_7_abndl_1_atom_2
1779
+ type: contains
1780
+ - start_temp_id: con_7
1781
+ end_temp_id: con_7_abndl_1_atom_2
1782
+ type: assessed_by
1783
+ - start_temp_id: lo_7
1784
+ end_temp_id: con_7_abndl_1_atom_2
1785
+ type: contains
1786
+ - start_temp_id: con_7_abndl_1
1787
+ end_temp_id: con_7_abndl_1_atom_3
1788
+ type: contains
1789
+ - start_temp_id: con_7
1790
+ end_temp_id: con_7_abndl_1_atom_3
1791
+ type: assessed_by
1792
+ - start_temp_id: lo_7
1793
+ end_temp_id: con_7_abndl_1_atom_3
1794
+ type: contains
1795
+ - start_temp_id: con_7_abndl_1
1796
+ end_temp_id: con_7_abndl_1_atom_4
1797
+ type: contains
1798
+ - start_temp_id: con_7
1799
+ end_temp_id: con_7_abndl_1_atom_4
1800
+ type: assessed_by
1801
+ - start_temp_id: lo_7
1802
+ end_temp_id: con_7_abndl_1_atom_4
1803
+ type: contains
1804
+ - start_temp_id: con_7_abndl_2
1805
+ end_temp_id: con_7_abndl_2_atom_1
1806
+ type: contains
1807
+ - start_temp_id: con_7
1808
+ end_temp_id: con_7_abndl_2_atom_1
1809
+ type: assessed_by
1810
+ - start_temp_id: lo_7
1811
+ end_temp_id: con_7_abndl_2_atom_1
1812
+ type: contains
1813
+ - start_temp_id: con_7_abndl_2
1814
+ end_temp_id: con_7_abndl_2_atom_2
1815
+ type: contains
1816
+ - start_temp_id: con_7
1817
+ end_temp_id: con_7_abndl_2_atom_2
1818
+ type: assessed_by
1819
+ - start_temp_id: lo_7
1820
+ end_temp_id: con_7_abndl_2_atom_2
1821
+ type: contains
1822
+ - start_temp_id: con_7_abndl_2
1823
+ end_temp_id: con_7_abndl_2_atom_3
1824
+ type: contains
1825
+ - start_temp_id: con_7
1826
+ end_temp_id: con_7_abndl_2_atom_3
1827
+ type: assessed_by
1828
+ - start_temp_id: lo_7
1829
+ end_temp_id: con_7_abndl_2_atom_3
1830
+ type: contains
1831
+ - start_temp_id: con_7_abndl_2
1832
+ end_temp_id: con_7_abndl_2_atom_4
1833
+ type: contains
1834
+ - start_temp_id: con_7
1835
+ end_temp_id: con_7_abndl_2_atom_4
1836
+ type: assessed_by
1837
+ - start_temp_id: lo_7
1838
+ end_temp_id: con_7_abndl_2_atom_4
1839
+ type: contains
1840
+ - start_temp_id: con_7_abndl_3
1841
+ end_temp_id: con_7_abndl_3_atom_1
1842
+ type: contains
1843
+ - start_temp_id: con_7
1844
+ end_temp_id: con_7_abndl_3_atom_1
1845
+ type: assessed_by
1846
+ - start_temp_id: lo_7
1847
+ end_temp_id: con_7_abndl_3_atom_1
1848
+ type: contains
1849
+ - start_temp_id: con_7_abndl_3
1850
+ end_temp_id: con_7_abndl_3_atom_2
1851
+ type: contains
1852
+ - start_temp_id: con_7
1853
+ end_temp_id: con_7_abndl_3_atom_2
1854
+ type: assessed_by
1855
+ - start_temp_id: lo_7
1856
+ end_temp_id: con_7_abndl_3_atom_2
1857
+ type: contains
1858
+ - start_temp_id: con_7_abndl_3
1859
+ end_temp_id: con_7_abndl_3_atom_3
1860
+ type: contains
1861
+ - start_temp_id: con_7
1862
+ end_temp_id: con_7_abndl_3_atom_3
1863
+ type: assessed_by
1864
+ - start_temp_id: lo_7
1865
+ end_temp_id: con_7_abndl_3_atom_3
1866
+ type: contains
1867
+ - start_temp_id: con_7_abndl_3
1868
+ end_temp_id: con_7_abndl_3_atom_4
1869
+ type: contains
1870
+ - start_temp_id: con_7
1871
+ end_temp_id: con_7_abndl_3_atom_4
1872
+ type: assessed_by
1873
+ - start_temp_id: lo_7
1874
+ end_temp_id: con_7_abndl_3_atom_4
1875
+ type: contains
1876
+ - start_temp_id: con_7
1877
+ end_temp_id: con_8
1878
+ type: prerequisite
1879
+ - start_temp_id: con_8_tbndl_1
1880
+ end_temp_id: con_8_tbndl_1_atom_1
1881
+ type: contains
1882
+ - start_temp_id: con_8
1883
+ end_temp_id: con_8_tbndl_1_atom_1
1884
+ type: taught_by
1885
+ - start_temp_id: lo_8
1886
+ end_temp_id: con_8_tbndl_1_atom_1
1887
+ type: contains
1888
+ - start_temp_id: con_8_tbndl_1
1889
+ end_temp_id: con_8_tbndl_1_atom_2
1890
+ type: contains
1891
+ - start_temp_id: con_8
1892
+ end_temp_id: con_8_tbndl_1_atom_2
1893
+ type: taught_by
1894
+ - start_temp_id: lo_8
1895
+ end_temp_id: con_8_tbndl_1_atom_2
1896
+ type: contains
1897
+ - start_temp_id: con_8_abndl_1
1898
+ end_temp_id: con_8_abndl_1_atom_1
1899
+ type: contains
1900
+ - start_temp_id: con_8
1901
+ end_temp_id: con_8_abndl_1_atom_1
1902
+ type: assessed_by
1903
+ - start_temp_id: lo_8
1904
+ end_temp_id: con_8_abndl_1_atom_1
1905
+ type: contains
1906
+ - start_temp_id: con_8_abndl_1
1907
+ end_temp_id: con_8_abndl_1_atom_2
1908
+ type: contains
1909
+ - start_temp_id: con_8
1910
+ end_temp_id: con_8_abndl_1_atom_2
1911
+ type: assessed_by
1912
+ - start_temp_id: lo_8
1913
+ end_temp_id: con_8_abndl_1_atom_2
1914
+ type: contains
1915
+ - start_temp_id: con_8_abndl_1
1916
+ end_temp_id: con_8_abndl_1_atom_3
1917
+ type: contains
1918
+ - start_temp_id: con_8
1919
+ end_temp_id: con_8_abndl_1_atom_3
1920
+ type: assessed_by
1921
+ - start_temp_id: lo_8
1922
+ end_temp_id: con_8_abndl_1_atom_3
1923
+ type: contains
1924
+ - start_temp_id: con_8_abndl_1
1925
+ end_temp_id: con_8_abndl_1_atom_4
1926
+ type: contains
1927
+ - start_temp_id: con_8
1928
+ end_temp_id: con_8_abndl_1_atom_4
1929
+ type: assessed_by
1930
+ - start_temp_id: lo_8
1931
+ end_temp_id: con_8_abndl_1_atom_4
1932
+ type: contains
1933
+ - start_temp_id: con_8_abndl_2
1934
+ end_temp_id: con_8_abndl_2_atom_1
1935
+ type: contains
1936
+ - start_temp_id: con_8
1937
+ end_temp_id: con_8_abndl_2_atom_1
1938
+ type: assessed_by
1939
+ - start_temp_id: lo_8
1940
+ end_temp_id: con_8_abndl_2_atom_1
1941
+ type: contains
1942
+ - start_temp_id: con_8_abndl_2
1943
+ end_temp_id: con_8_abndl_2_atom_2
1944
+ type: contains
1945
+ - start_temp_id: con_8
1946
+ end_temp_id: con_8_abndl_2_atom_2
1947
+ type: assessed_by
1948
+ - start_temp_id: lo_8
1949
+ end_temp_id: con_8_abndl_2_atom_2
1950
+ type: contains
1951
+ - start_temp_id: con_8_abndl_2
1952
+ end_temp_id: con_8_abndl_2_atom_3
1953
+ type: contains
1954
+ - start_temp_id: con_8
1955
+ end_temp_id: con_8_abndl_2_atom_3
1956
+ type: assessed_by
1957
+ - start_temp_id: lo_8
1958
+ end_temp_id: con_8_abndl_2_atom_3
1959
+ type: contains
1960
+ - start_temp_id: con_8_abndl_2
1961
+ end_temp_id: con_8_abndl_2_atom_4
1962
+ type: contains
1963
+ - start_temp_id: con_8
1964
+ end_temp_id: con_8_abndl_2_atom_4
1965
+ type: assessed_by
1966
+ - start_temp_id: lo_8
1967
+ end_temp_id: con_8_abndl_2_atom_4
1968
+ type: contains
1969
+ - start_temp_id: con_8_abndl_3
1970
+ end_temp_id: con_8_abndl_3_atom_1
1971
+ type: contains
1972
+ - start_temp_id: con_8
1973
+ end_temp_id: con_8_abndl_3_atom_1
1974
+ type: assessed_by
1975
+ - start_temp_id: lo_8
1976
+ end_temp_id: con_8_abndl_3_atom_1
1977
+ type: contains
1978
+ - start_temp_id: con_8_abndl_3
1979
+ end_temp_id: con_8_abndl_3_atom_2
1980
+ type: contains
1981
+ - start_temp_id: con_8
1982
+ end_temp_id: con_8_abndl_3_atom_2
1983
+ type: assessed_by
1984
+ - start_temp_id: lo_8
1985
+ end_temp_id: con_8_abndl_3_atom_2
1986
+ type: contains
1987
+ - start_temp_id: con_8_abndl_3
1988
+ end_temp_id: con_8_abndl_3_atom_3
1989
+ type: contains
1990
+ - start_temp_id: con_8
1991
+ end_temp_id: con_8_abndl_3_atom_3
1992
+ type: assessed_by
1993
+ - start_temp_id: lo_8
1994
+ end_temp_id: con_8_abndl_3_atom_3
1995
+ type: contains
1996
+ - start_temp_id: con_8_abndl_3
1997
+ end_temp_id: con_8_abndl_3_atom_4
1998
+ type: contains
1999
+ - start_temp_id: con_8
2000
+ end_temp_id: con_8_abndl_3_atom_4
2001
+ type: assessed_by
2002
+ - start_temp_id: lo_8
2003
+ end_temp_id: con_8_abndl_3_atom_4
2004
+ type: contains
2005
+ - start_temp_id: con_8
2006
+ end_temp_id: con_9
2007
+ type: prerequisite
2008
+ - start_temp_id: con_9_tbndl_1
2009
+ end_temp_id: con_9_tbndl_1_atom_1
2010
+ type: contains
2011
+ - start_temp_id: con_9
2012
+ end_temp_id: con_9_tbndl_1_atom_1
2013
+ type: taught_by
2014
+ - start_temp_id: lo_9
2015
+ end_temp_id: con_9_tbndl_1_atom_1
2016
+ type: contains
2017
+ - start_temp_id: con_9_tbndl_1
2018
+ end_temp_id: con_9_tbndl_1_atom_2
2019
+ type: contains
2020
+ - start_temp_id: con_9
2021
+ end_temp_id: con_9_tbndl_1_atom_2
2022
+ type: taught_by
2023
+ - start_temp_id: lo_9
2024
+ end_temp_id: con_9_tbndl_1_atom_2
2025
+ type: contains
2026
+ - start_temp_id: con_9_abndl_1
2027
+ end_temp_id: con_9_abndl_1_atom_1
2028
+ type: contains
2029
+ - start_temp_id: con_9
2030
+ end_temp_id: con_9_abndl_1_atom_1
2031
+ type: assessed_by
2032
+ - start_temp_id: lo_9
2033
+ end_temp_id: con_9_abndl_1_atom_1
2034
+ type: contains
2035
+ - start_temp_id: con_9_abndl_1
2036
+ end_temp_id: con_9_abndl_1_atom_2
2037
+ type: contains
2038
+ - start_temp_id: con_9
2039
+ end_temp_id: con_9_abndl_1_atom_2
2040
+ type: assessed_by
2041
+ - start_temp_id: lo_9
2042
+ end_temp_id: con_9_abndl_1_atom_2
2043
+ type: contains
2044
+ - start_temp_id: con_9_abndl_1
2045
+ end_temp_id: con_9_abndl_1_atom_3
2046
+ type: contains
2047
+ - start_temp_id: con_9
2048
+ end_temp_id: con_9_abndl_1_atom_3
2049
+ type: assessed_by
2050
+ - start_temp_id: lo_9
2051
+ end_temp_id: con_9_abndl_1_atom_3
2052
+ type: contains
2053
+ - start_temp_id: con_9_abndl_1
2054
+ end_temp_id: con_9_abndl_1_atom_4
2055
+ type: contains
2056
+ - start_temp_id: con_9
2057
+ end_temp_id: con_9_abndl_1_atom_4
2058
+ type: assessed_by
2059
+ - start_temp_id: lo_9
2060
+ end_temp_id: con_9_abndl_1_atom_4
2061
+ type: contains
2062
+ - start_temp_id: con_9_abndl_2
2063
+ end_temp_id: con_9_abndl_2_atom_1
2064
+ type: contains
2065
+ - start_temp_id: con_9
2066
+ end_temp_id: con_9_abndl_2_atom_1
2067
+ type: assessed_by
2068
+ - start_temp_id: lo_9
2069
+ end_temp_id: con_9_abndl_2_atom_1
2070
+ type: contains
2071
+ - start_temp_id: con_9_abndl_2
2072
+ end_temp_id: con_9_abndl_2_atom_2
2073
+ type: contains
2074
+ - start_temp_id: con_9
2075
+ end_temp_id: con_9_abndl_2_atom_2
2076
+ type: assessed_by
2077
+ - start_temp_id: lo_9
2078
+ end_temp_id: con_9_abndl_2_atom_2
2079
+ type: contains
2080
+ - start_temp_id: con_9_abndl_2
2081
+ end_temp_id: con_9_abndl_2_atom_3
2082
+ type: contains
2083
+ - start_temp_id: con_9
2084
+ end_temp_id: con_9_abndl_2_atom_3
2085
+ type: assessed_by
2086
+ - start_temp_id: lo_9
2087
+ end_temp_id: con_9_abndl_2_atom_3
2088
+ type: contains
2089
+ - start_temp_id: con_9_abndl_2
2090
+ end_temp_id: con_9_abndl_2_atom_4
2091
+ type: contains
2092
+ - start_temp_id: con_9
2093
+ end_temp_id: con_9_abndl_2_atom_4
2094
+ type: assessed_by
2095
+ - start_temp_id: lo_9
2096
+ end_temp_id: con_9_abndl_2_atom_4
2097
+ type: contains
2098
+ - start_temp_id: con_9_abndl_3
2099
+ end_temp_id: con_9_abndl_3_atom_1
2100
+ type: contains
2101
+ - start_temp_id: con_9
2102
+ end_temp_id: con_9_abndl_3_atom_1
2103
+ type: assessed_by
2104
+ - start_temp_id: lo_9
2105
+ end_temp_id: con_9_abndl_3_atom_1
2106
+ type: contains
2107
+ - start_temp_id: con_9_abndl_3
2108
+ end_temp_id: con_9_abndl_3_atom_2
2109
+ type: contains
2110
+ - start_temp_id: con_9
2111
+ end_temp_id: con_9_abndl_3_atom_2
2112
+ type: assessed_by
2113
+ - start_temp_id: lo_9
2114
+ end_temp_id: con_9_abndl_3_atom_2
2115
+ type: contains
2116
+ - start_temp_id: con_9_abndl_3
2117
+ end_temp_id: con_9_abndl_3_atom_3
2118
+ type: contains
2119
+ - start_temp_id: con_9
2120
+ end_temp_id: con_9_abndl_3_atom_3
2121
+ type: assessed_by
2122
+ - start_temp_id: lo_9
2123
+ end_temp_id: con_9_abndl_3_atom_3
2124
+ type: contains
2125
+ - start_temp_id: con_9_abndl_3
2126
+ end_temp_id: con_9_abndl_3_atom_4
2127
+ type: contains
2128
+ - start_temp_id: con_9
2129
+ end_temp_id: con_9_abndl_3_atom_4
2130
+ type: assessed_by
2131
+ - start_temp_id: lo_9
2132
+ end_temp_id: con_9_abndl_3_atom_4
2133
+ type: contains
2134
+ - start_temp_id: con_9
2135
+ end_temp_id: con_10
2136
+ type: prerequisite
2137
+ - start_temp_id: con_10_tbndl_1
2138
+ end_temp_id: con_10_tbndl_1_atom_1
2139
+ type: contains
2140
+ - start_temp_id: con_10
2141
+ end_temp_id: con_10_tbndl_1_atom_1
2142
+ type: taught_by
2143
+ - start_temp_id: lo_10
2144
+ end_temp_id: con_10_tbndl_1_atom_1
2145
+ type: contains
2146
+ - start_temp_id: con_10_tbndl_1
2147
+ end_temp_id: con_10_tbndl_1_atom_2
2148
+ type: contains
2149
+ - start_temp_id: con_10
2150
+ end_temp_id: con_10_tbndl_1_atom_2
2151
+ type: taught_by
2152
+ - start_temp_id: lo_10
2153
+ end_temp_id: con_10_tbndl_1_atom_2
2154
+ type: contains
2155
+ - start_temp_id: con_10_abndl_1
2156
+ end_temp_id: con_10_abndl_1_atom_1
2157
+ type: contains
2158
+ - start_temp_id: con_10
2159
+ end_temp_id: con_10_abndl_1_atom_1
2160
+ type: assessed_by
2161
+ - start_temp_id: lo_10
2162
+ end_temp_id: con_10_abndl_1_atom_1
2163
+ type: contains
2164
+ - start_temp_id: con_10_abndl_1
2165
+ end_temp_id: con_10_abndl_1_atom_2
2166
+ type: contains
2167
+ - start_temp_id: con_10
2168
+ end_temp_id: con_10_abndl_1_atom_2
2169
+ type: assessed_by
2170
+ - start_temp_id: lo_10
2171
+ end_temp_id: con_10_abndl_1_atom_2
2172
+ type: contains
2173
+ - start_temp_id: con_10_abndl_1
2174
+ end_temp_id: con_10_abndl_1_atom_3
2175
+ type: contains
2176
+ - start_temp_id: con_10
2177
+ end_temp_id: con_10_abndl_1_atom_3
2178
+ type: assessed_by
2179
+ - start_temp_id: lo_10
2180
+ end_temp_id: con_10_abndl_1_atom_3
2181
+ type: contains
2182
+ - start_temp_id: con_10_abndl_1
2183
+ end_temp_id: con_10_abndl_1_atom_4
2184
+ type: contains
2185
+ - start_temp_id: con_10
2186
+ end_temp_id: con_10_abndl_1_atom_4
2187
+ type: assessed_by
2188
+ - start_temp_id: lo_10
2189
+ end_temp_id: con_10_abndl_1_atom_4
2190
+ type: contains
2191
+ - start_temp_id: con_10_abndl_2
2192
+ end_temp_id: con_10_abndl_2_atom_1
2193
+ type: contains
2194
+ - start_temp_id: con_10
2195
+ end_temp_id: con_10_abndl_2_atom_1
2196
+ type: assessed_by
2197
+ - start_temp_id: lo_10
2198
+ end_temp_id: con_10_abndl_2_atom_1
2199
+ type: contains
2200
+ - start_temp_id: con_10_abndl_2
2201
+ end_temp_id: con_10_abndl_2_atom_2
2202
+ type: contains
2203
+ - start_temp_id: con_10
2204
+ end_temp_id: con_10_abndl_2_atom_2
2205
+ type: assessed_by
2206
+ - start_temp_id: lo_10
2207
+ end_temp_id: con_10_abndl_2_atom_2
2208
+ type: contains
2209
+ - start_temp_id: con_10_abndl_2
2210
+ end_temp_id: con_10_abndl_2_atom_3
2211
+ type: contains
2212
+ - start_temp_id: con_10
2213
+ end_temp_id: con_10_abndl_2_atom_3
2214
+ type: assessed_by
2215
+ - start_temp_id: lo_10
2216
+ end_temp_id: con_10_abndl_2_atom_3
2217
+ type: contains
2218
+ - start_temp_id: con_10_abndl_2
2219
+ end_temp_id: con_10_abndl_2_atom_4
2220
+ type: contains
2221
+ - start_temp_id: con_10
2222
+ end_temp_id: con_10_abndl_2_atom_4
2223
+ type: assessed_by
2224
+ - start_temp_id: lo_10
2225
+ end_temp_id: con_10_abndl_2_atom_4
2226
+ type: contains
2227
+ - start_temp_id: con_10_abndl_3
2228
+ end_temp_id: con_10_abndl_3_atom_1
2229
+ type: contains
2230
+ - start_temp_id: con_10
2231
+ end_temp_id: con_10_abndl_3_atom_1
2232
+ type: assessed_by
2233
+ - start_temp_id: lo_10
2234
+ end_temp_id: con_10_abndl_3_atom_1
2235
+ type: contains
2236
+ - start_temp_id: con_10_abndl_3
2237
+ end_temp_id: con_10_abndl_3_atom_2
2238
+ type: contains
2239
+ - start_temp_id: con_10
2240
+ end_temp_id: con_10_abndl_3_atom_2
2241
+ type: assessed_by
2242
+ - start_temp_id: lo_10
2243
+ end_temp_id: con_10_abndl_3_atom_2
2244
+ type: contains
2245
+ - start_temp_id: con_10_abndl_3
2246
+ end_temp_id: con_10_abndl_3_atom_3
2247
+ type: contains
2248
+ - start_temp_id: con_10
2249
+ end_temp_id: con_10_abndl_3_atom_3
2250
+ type: assessed_by
2251
+ - start_temp_id: lo_10
2252
+ end_temp_id: con_10_abndl_3_atom_3
2253
+ type: contains
2254
+ - start_temp_id: con_10_abndl_3
2255
+ end_temp_id: con_10_abndl_3_atom_4
2256
+ type: contains
2257
+ - start_temp_id: con_10
2258
+ end_temp_id: con_10_abndl_3_atom_4
2259
+ type: assessed_by
2260
+ - start_temp_id: lo_10
2261
+ end_temp_id: con_10_abndl_3_atom_4
2262
+ type: contains
2263
+ taxonomies:
2264
+ - name: TOC
2265
+ type: role
2266
+ taxons: []
2267
+ taxon_list:
2268
+ - name: ch1
2269
+ temp_id: TOC:ch1
2270
+ module_temp_ids: []
2271
+ - name: t.1
2272
+ temp_id: TOC:ch1|t.1
2273
+ module_temp_ids:
2274
+ - con_1_tbndl_1
2275
+ - con_1_tbndl_1_atom_1
2276
+ - con_1_tbndl_1_atom_2
2277
+ parent_temp_id: TOC:ch1
2278
+ - name: a.1
2279
+ temp_id: TOC:ch1|a.1
2280
+ module_temp_ids:
2281
+ - con_1_abndl_1
2282
+ - con_1_abndl_1_atom_1
2283
+ - con_1_abndl_1_atom_2
2284
+ - con_1_abndl_1_atom_3
2285
+ - con_1_abndl_1_atom_4
2286
+ parent_temp_id: TOC:ch1
2287
+ - name: a.2
2288
+ temp_id: TOC:ch1|a.2
2289
+ module_temp_ids:
2290
+ - con_1_abndl_2
2291
+ - con_1_abndl_2_atom_1
2292
+ - con_1_abndl_2_atom_2
2293
+ - con_1_abndl_2_atom_3
2294
+ - con_1_abndl_2_atom_4
2295
+ parent_temp_id: TOC:ch1
2296
+ - name: a.3
2297
+ temp_id: TOC:ch1|a.3
2298
+ module_temp_ids:
2299
+ - con_1_abndl_3
2300
+ - con_1_abndl_3_atom_1
2301
+ - con_1_abndl_3_atom_2
2302
+ - con_1_abndl_3_atom_3
2303
+ - con_1_abndl_3_atom_4
2304
+ parent_temp_id: TOC:ch1
2305
+ - name: ch2
2306
+ temp_id: TOC:ch2
2307
+ module_temp_ids: []
2308
+ - name: t.1
2309
+ temp_id: TOC:ch2|t.1
2310
+ module_temp_ids:
2311
+ - con_2_tbndl_1
2312
+ - con_2_tbndl_1_atom_1
2313
+ - con_2_tbndl_1_atom_2
2314
+ parent_temp_id: TOC:ch2
2315
+ - name: a.1
2316
+ temp_id: TOC:ch2|a.1
2317
+ module_temp_ids:
2318
+ - con_2_abndl_1
2319
+ - con_2_abndl_1_atom_1
2320
+ - con_2_abndl_1_atom_2
2321
+ - con_2_abndl_1_atom_3
2322
+ - con_2_abndl_1_atom_4
2323
+ parent_temp_id: TOC:ch2
2324
+ - name: a.2
2325
+ temp_id: TOC:ch2|a.2
2326
+ module_temp_ids:
2327
+ - con_2_abndl_2
2328
+ - con_2_abndl_2_atom_1
2329
+ - con_2_abndl_2_atom_2
2330
+ - con_2_abndl_2_atom_3
2331
+ - con_2_abndl_2_atom_4
2332
+ parent_temp_id: TOC:ch2
2333
+ - name: a.3
2334
+ temp_id: TOC:ch2|a.3
2335
+ module_temp_ids:
2336
+ - con_2_abndl_3
2337
+ - con_2_abndl_3_atom_1
2338
+ - con_2_abndl_3_atom_2
2339
+ - con_2_abndl_3_atom_3
2340
+ - con_2_abndl_3_atom_4
2341
+ parent_temp_id: TOC:ch2
2342
+ - name: ch3
2343
+ temp_id: TOC:ch3
2344
+ module_temp_ids: []
2345
+ - name: t.1
2346
+ temp_id: TOC:ch3|t.1
2347
+ module_temp_ids:
2348
+ - con_3_tbndl_1
2349
+ - con_3_tbndl_1_atom_1
2350
+ - con_3_tbndl_1_atom_2
2351
+ parent_temp_id: TOC:ch3
2352
+ - name: a.1
2353
+ temp_id: TOC:ch3|a.1
2354
+ module_temp_ids:
2355
+ - con_3_abndl_1
2356
+ - con_3_abndl_1_atom_1
2357
+ - con_3_abndl_1_atom_2
2358
+ - con_3_abndl_1_atom_3
2359
+ - con_3_abndl_1_atom_4
2360
+ parent_temp_id: TOC:ch3
2361
+ - name: a.2
2362
+ temp_id: TOC:ch3|a.2
2363
+ module_temp_ids:
2364
+ - con_3_abndl_2
2365
+ - con_3_abndl_2_atom_1
2366
+ - con_3_abndl_2_atom_2
2367
+ - con_3_abndl_2_atom_3
2368
+ - con_3_abndl_2_atom_4
2369
+ parent_temp_id: TOC:ch3
2370
+ - name: a.3
2371
+ temp_id: TOC:ch3|a.3
2372
+ module_temp_ids:
2373
+ - con_3_abndl_3
2374
+ - con_3_abndl_3_atom_1
2375
+ - con_3_abndl_3_atom_2
2376
+ - con_3_abndl_3_atom_3
2377
+ - con_3_abndl_3_atom_4
2378
+ parent_temp_id: TOC:ch3
2379
+ - name: ch4
2380
+ temp_id: TOC:ch4
2381
+ module_temp_ids: []
2382
+ - name: t.1
2383
+ temp_id: TOC:ch4|t.1
2384
+ module_temp_ids:
2385
+ - con_4_tbndl_1
2386
+ - con_4_tbndl_1_atom_1
2387
+ - con_4_tbndl_1_atom_2
2388
+ parent_temp_id: TOC:ch4
2389
+ - name: a.1
2390
+ temp_id: TOC:ch4|a.1
2391
+ module_temp_ids:
2392
+ - con_4_abndl_1
2393
+ - con_4_abndl_1_atom_1
2394
+ - con_4_abndl_1_atom_2
2395
+ - con_4_abndl_1_atom_3
2396
+ - con_4_abndl_1_atom_4
2397
+ parent_temp_id: TOC:ch4
2398
+ - name: a.2
2399
+ temp_id: TOC:ch4|a.2
2400
+ module_temp_ids:
2401
+ - con_4_abndl_2
2402
+ - con_4_abndl_2_atom_1
2403
+ - con_4_abndl_2_atom_2
2404
+ - con_4_abndl_2_atom_3
2405
+ - con_4_abndl_2_atom_4
2406
+ parent_temp_id: TOC:ch4
2407
+ - name: a.3
2408
+ temp_id: TOC:ch4|a.3
2409
+ module_temp_ids:
2410
+ - con_4_abndl_3
2411
+ - con_4_abndl_3_atom_1
2412
+ - con_4_abndl_3_atom_2
2413
+ - con_4_abndl_3_atom_3
2414
+ - con_4_abndl_3_atom_4
2415
+ parent_temp_id: TOC:ch4
2416
+ - name: ch5
2417
+ temp_id: TOC:ch5
2418
+ module_temp_ids: []
2419
+ - name: t.1
2420
+ temp_id: TOC:ch5|t.1
2421
+ module_temp_ids:
2422
+ - con_5_tbndl_1
2423
+ - con_5_tbndl_1_atom_1
2424
+ - con_5_tbndl_1_atom_2
2425
+ parent_temp_id: TOC:ch5
2426
+ - name: a.1
2427
+ temp_id: TOC:ch5|a.1
2428
+ module_temp_ids:
2429
+ - con_5_abndl_1
2430
+ - con_5_abndl_1_atom_1
2431
+ - con_5_abndl_1_atom_2
2432
+ - con_5_abndl_1_atom_3
2433
+ - con_5_abndl_1_atom_4
2434
+ parent_temp_id: TOC:ch5
2435
+ - name: a.2
2436
+ temp_id: TOC:ch5|a.2
2437
+ module_temp_ids:
2438
+ - con_5_abndl_2
2439
+ - con_5_abndl_2_atom_1
2440
+ - con_5_abndl_2_atom_2
2441
+ - con_5_abndl_2_atom_3
2442
+ - con_5_abndl_2_atom_4
2443
+ parent_temp_id: TOC:ch5
2444
+ - name: a.3
2445
+ temp_id: TOC:ch5|a.3
2446
+ module_temp_ids:
2447
+ - con_5_abndl_3
2448
+ - con_5_abndl_3_atom_1
2449
+ - con_5_abndl_3_atom_2
2450
+ - con_5_abndl_3_atom_3
2451
+ - con_5_abndl_3_atom_4
2452
+ parent_temp_id: TOC:ch5
2453
+ - name: ch6
2454
+ temp_id: TOC:ch6
2455
+ module_temp_ids: []
2456
+ - name: t.1
2457
+ temp_id: TOC:ch6|t.1
2458
+ module_temp_ids:
2459
+ - con_6_tbndl_1
2460
+ - con_6_tbndl_1_atom_1
2461
+ - con_6_tbndl_1_atom_2
2462
+ parent_temp_id: TOC:ch6
2463
+ - name: a.1
2464
+ temp_id: TOC:ch6|a.1
2465
+ module_temp_ids:
2466
+ - con_6_abndl_1
2467
+ - con_6_abndl_1_atom_1
2468
+ - con_6_abndl_1_atom_2
2469
+ - con_6_abndl_1_atom_3
2470
+ - con_6_abndl_1_atom_4
2471
+ parent_temp_id: TOC:ch6
2472
+ - name: a.2
2473
+ temp_id: TOC:ch6|a.2
2474
+ module_temp_ids:
2475
+ - con_6_abndl_2
2476
+ - con_6_abndl_2_atom_1
2477
+ - con_6_abndl_2_atom_2
2478
+ - con_6_abndl_2_atom_3
2479
+ - con_6_abndl_2_atom_4
2480
+ parent_temp_id: TOC:ch6
2481
+ - name: a.3
2482
+ temp_id: TOC:ch6|a.3
2483
+ module_temp_ids:
2484
+ - con_6_abndl_3
2485
+ - con_6_abndl_3_atom_1
2486
+ - con_6_abndl_3_atom_2
2487
+ - con_6_abndl_3_atom_3
2488
+ - con_6_abndl_3_atom_4
2489
+ parent_temp_id: TOC:ch6
2490
+ - name: ch7
2491
+ temp_id: TOC:ch7
2492
+ module_temp_ids: []
2493
+ - name: t.1
2494
+ temp_id: TOC:ch7|t.1
2495
+ module_temp_ids:
2496
+ - con_7_tbndl_1
2497
+ - con_7_tbndl_1_atom_1
2498
+ - con_7_tbndl_1_atom_2
2499
+ parent_temp_id: TOC:ch7
2500
+ - name: a.1
2501
+ temp_id: TOC:ch7|a.1
2502
+ module_temp_ids:
2503
+ - con_7_abndl_1
2504
+ - con_7_abndl_1_atom_1
2505
+ - con_7_abndl_1_atom_2
2506
+ - con_7_abndl_1_atom_3
2507
+ - con_7_abndl_1_atom_4
2508
+ parent_temp_id: TOC:ch7
2509
+ - name: a.2
2510
+ temp_id: TOC:ch7|a.2
2511
+ module_temp_ids:
2512
+ - con_7_abndl_2
2513
+ - con_7_abndl_2_atom_1
2514
+ - con_7_abndl_2_atom_2
2515
+ - con_7_abndl_2_atom_3
2516
+ - con_7_abndl_2_atom_4
2517
+ parent_temp_id: TOC:ch7
2518
+ - name: a.3
2519
+ temp_id: TOC:ch7|a.3
2520
+ module_temp_ids:
2521
+ - con_7_abndl_3
2522
+ - con_7_abndl_3_atom_1
2523
+ - con_7_abndl_3_atom_2
2524
+ - con_7_abndl_3_atom_3
2525
+ - con_7_abndl_3_atom_4
2526
+ parent_temp_id: TOC:ch7
2527
+ - name: ch8
2528
+ temp_id: TOC:ch8
2529
+ module_temp_ids: []
2530
+ - name: t.1
2531
+ temp_id: TOC:ch8|t.1
2532
+ module_temp_ids:
2533
+ - con_8_tbndl_1
2534
+ - con_8_tbndl_1_atom_1
2535
+ - con_8_tbndl_1_atom_2
2536
+ parent_temp_id: TOC:ch8
2537
+ - name: a.1
2538
+ temp_id: TOC:ch8|a.1
2539
+ module_temp_ids:
2540
+ - con_8_abndl_1
2541
+ - con_8_abndl_1_atom_1
2542
+ - con_8_abndl_1_atom_2
2543
+ - con_8_abndl_1_atom_3
2544
+ - con_8_abndl_1_atom_4
2545
+ parent_temp_id: TOC:ch8
2546
+ - name: a.2
2547
+ temp_id: TOC:ch8|a.2
2548
+ module_temp_ids:
2549
+ - con_8_abndl_2
2550
+ - con_8_abndl_2_atom_1
2551
+ - con_8_abndl_2_atom_2
2552
+ - con_8_abndl_2_atom_3
2553
+ - con_8_abndl_2_atom_4
2554
+ parent_temp_id: TOC:ch8
2555
+ - name: a.3
2556
+ temp_id: TOC:ch8|a.3
2557
+ module_temp_ids:
2558
+ - con_8_abndl_3
2559
+ - con_8_abndl_3_atom_1
2560
+ - con_8_abndl_3_atom_2
2561
+ - con_8_abndl_3_atom_3
2562
+ - con_8_abndl_3_atom_4
2563
+ parent_temp_id: TOC:ch8
2564
+ - name: ch9
2565
+ temp_id: TOC:ch9
2566
+ module_temp_ids: []
2567
+ - name: t.1
2568
+ temp_id: TOC:ch9|t.1
2569
+ module_temp_ids:
2570
+ - con_9_tbndl_1
2571
+ - con_9_tbndl_1_atom_1
2572
+ - con_9_tbndl_1_atom_2
2573
+ parent_temp_id: TOC:ch9
2574
+ - name: a.1
2575
+ temp_id: TOC:ch9|a.1
2576
+ module_temp_ids:
2577
+ - con_9_abndl_1
2578
+ - con_9_abndl_1_atom_1
2579
+ - con_9_abndl_1_atom_2
2580
+ - con_9_abndl_1_atom_3
2581
+ - con_9_abndl_1_atom_4
2582
+ parent_temp_id: TOC:ch9
2583
+ - name: a.2
2584
+ temp_id: TOC:ch9|a.2
2585
+ module_temp_ids:
2586
+ - con_9_abndl_2
2587
+ - con_9_abndl_2_atom_1
2588
+ - con_9_abndl_2_atom_2
2589
+ - con_9_abndl_2_atom_3
2590
+ - con_9_abndl_2_atom_4
2591
+ parent_temp_id: TOC:ch9
2592
+ - name: a.3
2593
+ temp_id: TOC:ch9|a.3
2594
+ module_temp_ids:
2595
+ - con_9_abndl_3
2596
+ - con_9_abndl_3_atom_1
2597
+ - con_9_abndl_3_atom_2
2598
+ - con_9_abndl_3_atom_3
2599
+ - con_9_abndl_3_atom_4
2600
+ parent_temp_id: TOC:ch9
2601
+ - name: ch10
2602
+ temp_id: TOC:ch10
2603
+ module_temp_ids: []
2604
+ - name: t.1
2605
+ temp_id: TOC:ch10|t.1
2606
+ module_temp_ids:
2607
+ - con_10_tbndl_1
2608
+ - con_10_tbndl_1_atom_1
2609
+ - con_10_tbndl_1_atom_2
2610
+ parent_temp_id: TOC:ch10
2611
+ - name: a.1
2612
+ temp_id: TOC:ch10|a.1
2613
+ module_temp_ids:
2614
+ - con_10_abndl_1
2615
+ - con_10_abndl_1_atom_1
2616
+ - con_10_abndl_1_atom_2
2617
+ - con_10_abndl_1_atom_3
2618
+ - con_10_abndl_1_atom_4
2619
+ parent_temp_id: TOC:ch10
2620
+ - name: a.2
2621
+ temp_id: TOC:ch10|a.2
2622
+ module_temp_ids:
2623
+ - con_10_abndl_2
2624
+ - con_10_abndl_2_atom_1
2625
+ - con_10_abndl_2_atom_2
2626
+ - con_10_abndl_2_atom_3
2627
+ - con_10_abndl_2_atom_4
2628
+ parent_temp_id: TOC:ch10
2629
+ - name: a.3
2630
+ temp_id: TOC:ch10|a.3
2631
+ module_temp_ids:
2632
+ - con_10_abndl_3
2633
+ - con_10_abndl_3_atom_1
2634
+ - con_10_abndl_3_atom_2
2635
+ - con_10_abndl_3_atom_3
2636
+ - con_10_abndl_3_atom_4
2637
+ parent_temp_id: TOC:ch10
2638
+ - name: meta
2639
+ type: role
2640
+ taxons: []
2641
+ taxon_list:
2642
+ - name: tref-meta:no_modules
2643
+ temp_id: meta:no_modules
2644
+ module_temp_ids: []
2645
+ - name: tref-meta:all_atoms
2646
+ temp_id: meta:all_atoms
2647
+ module_temp_ids:
2648
+ - con_1_tbndl_1_atom_1
2649
+ - con_1_tbndl_1_atom_2
2650
+ - con_1_abndl_1_atom_1
2651
+ - con_1_abndl_1_atom_2
2652
+ - con_1_abndl_1_atom_3
2653
+ - con_1_abndl_1_atom_4
2654
+ - con_1_abndl_2_atom_1
2655
+ - con_1_abndl_2_atom_2
2656
+ - con_1_abndl_2_atom_3
2657
+ - con_1_abndl_2_atom_4
2658
+ - con_1_abndl_3_atom_1
2659
+ - con_1_abndl_3_atom_2
2660
+ - con_1_abndl_3_atom_3
2661
+ - con_1_abndl_3_atom_4
2662
+ - con_2_tbndl_1_atom_1
2663
+ - con_2_tbndl_1_atom_2
2664
+ - con_2_abndl_1_atom_1
2665
+ - con_2_abndl_1_atom_2
2666
+ - con_2_abndl_1_atom_3
2667
+ - con_2_abndl_1_atom_4
2668
+ - con_2_abndl_2_atom_1
2669
+ - con_2_abndl_2_atom_2
2670
+ - con_2_abndl_2_atom_3
2671
+ - con_2_abndl_2_atom_4
2672
+ - con_2_abndl_3_atom_1
2673
+ - con_2_abndl_3_atom_2
2674
+ - con_2_abndl_3_atom_3
2675
+ - con_2_abndl_3_atom_4
2676
+ - con_3_tbndl_1_atom_1
2677
+ - con_3_tbndl_1_atom_2
2678
+ - con_3_abndl_1_atom_1
2679
+ - con_3_abndl_1_atom_2
2680
+ - con_3_abndl_1_atom_3
2681
+ - con_3_abndl_1_atom_4
2682
+ - con_3_abndl_2_atom_1
2683
+ - con_3_abndl_2_atom_2
2684
+ - con_3_abndl_2_atom_3
2685
+ - con_3_abndl_2_atom_4
2686
+ - con_3_abndl_3_atom_1
2687
+ - con_3_abndl_3_atom_2
2688
+ - con_3_abndl_3_atom_3
2689
+ - con_3_abndl_3_atom_4
2690
+ - con_4_tbndl_1_atom_1
2691
+ - con_4_tbndl_1_atom_2
2692
+ - con_4_abndl_1_atom_1
2693
+ - con_4_abndl_1_atom_2
2694
+ - con_4_abndl_1_atom_3
2695
+ - con_4_abndl_1_atom_4
2696
+ - con_4_abndl_2_atom_1
2697
+ - con_4_abndl_2_atom_2
2698
+ - con_4_abndl_2_atom_3
2699
+ - con_4_abndl_2_atom_4
2700
+ - con_4_abndl_3_atom_1
2701
+ - con_4_abndl_3_atom_2
2702
+ - con_4_abndl_3_atom_3
2703
+ - con_4_abndl_3_atom_4
2704
+ - con_5_tbndl_1_atom_1
2705
+ - con_5_tbndl_1_atom_2
2706
+ - con_5_abndl_1_atom_1
2707
+ - con_5_abndl_1_atom_2
2708
+ - con_5_abndl_1_atom_3
2709
+ - con_5_abndl_1_atom_4
2710
+ - con_5_abndl_2_atom_1
2711
+ - con_5_abndl_2_atom_2
2712
+ - con_5_abndl_2_atom_3
2713
+ - con_5_abndl_2_atom_4
2714
+ - con_5_abndl_3_atom_1
2715
+ - con_5_abndl_3_atom_2
2716
+ - con_5_abndl_3_atom_3
2717
+ - con_5_abndl_3_atom_4
2718
+ - con_6_tbndl_1_atom_1
2719
+ - con_6_tbndl_1_atom_2
2720
+ - con_6_abndl_1_atom_1
2721
+ - con_6_abndl_1_atom_2
2722
+ - con_6_abndl_1_atom_3
2723
+ - con_6_abndl_1_atom_4
2724
+ - con_6_abndl_2_atom_1
2725
+ - con_6_abndl_2_atom_2
2726
+ - con_6_abndl_2_atom_3
2727
+ - con_6_abndl_2_atom_4
2728
+ - con_6_abndl_3_atom_1
2729
+ - con_6_abndl_3_atom_2
2730
+ - con_6_abndl_3_atom_3
2731
+ - con_6_abndl_3_atom_4
2732
+ - con_7_tbndl_1_atom_1
2733
+ - con_7_tbndl_1_atom_2
2734
+ - con_7_abndl_1_atom_1
2735
+ - con_7_abndl_1_atom_2
2736
+ - con_7_abndl_1_atom_3
2737
+ - con_7_abndl_1_atom_4
2738
+ - con_7_abndl_2_atom_1
2739
+ - con_7_abndl_2_atom_2
2740
+ - con_7_abndl_2_atom_3
2741
+ - con_7_abndl_2_atom_4
2742
+ - con_7_abndl_3_atom_1
2743
+ - con_7_abndl_3_atom_2
2744
+ - con_7_abndl_3_atom_3
2745
+ - con_7_abndl_3_atom_4
2746
+ - con_8_tbndl_1_atom_1
2747
+ - con_8_tbndl_1_atom_2
2748
+ - con_8_abndl_1_atom_1
2749
+ - con_8_abndl_1_atom_2
2750
+ - con_8_abndl_1_atom_3
2751
+ - con_8_abndl_1_atom_4
2752
+ - con_8_abndl_2_atom_1
2753
+ - con_8_abndl_2_atom_2
2754
+ - con_8_abndl_2_atom_3
2755
+ - con_8_abndl_2_atom_4
2756
+ - con_8_abndl_3_atom_1
2757
+ - con_8_abndl_3_atom_2
2758
+ - con_8_abndl_3_atom_3
2759
+ - con_8_abndl_3_atom_4
2760
+ - con_9_tbndl_1_atom_1
2761
+ - con_9_tbndl_1_atom_2
2762
+ - con_9_abndl_1_atom_1
2763
+ - con_9_abndl_1_atom_2
2764
+ - con_9_abndl_1_atom_3
2765
+ - con_9_abndl_1_atom_4
2766
+ - con_9_abndl_2_atom_1
2767
+ - con_9_abndl_2_atom_2
2768
+ - con_9_abndl_2_atom_3
2769
+ - con_9_abndl_2_atom_4
2770
+ - con_9_abndl_3_atom_1
2771
+ - con_9_abndl_3_atom_2
2772
+ - con_9_abndl_3_atom_3
2773
+ - con_9_abndl_3_atom_4
2774
+ - con_10_tbndl_1_atom_1
2775
+ - con_10_tbndl_1_atom_2
2776
+ - con_10_abndl_1_atom_1
2777
+ - con_10_abndl_1_atom_2
2778
+ - con_10_abndl_1_atom_3
2779
+ - con_10_abndl_1_atom_4
2780
+ - con_10_abndl_2_atom_1
2781
+ - con_10_abndl_2_atom_2
2782
+ - con_10_abndl_2_atom_3
2783
+ - con_10_abndl_2_atom_4
2784
+ - con_10_abndl_3_atom_1
2785
+ - con_10_abndl_3_atom_2
2786
+ - con_10_abndl_3_atom_3
2787
+ - con_10_abndl_3_atom_4
2788
+ - name: tref-meta:one_atom
2789
+ temp_id: meta:one_atom
2790
+ module_temp_ids:
2791
+ - con_2_abndl_2_atom_1
2792
+ - name: tref-meta:five_atoms
2793
+ temp_id: meta:five_atoms
2794
+ module_temp_ids:
2795
+ - con_5_abndl_3_atom_1
2796
+ - con_6_tbndl_1_atom_1
2797
+ - con_5_abndl_2_atom_1
2798
+ - con_5_tbndl_1_atom_1
2799
+ - con_10_abndl_2_atom_1
2800
+ - name: tref-meta:ten_atoms
2801
+ temp_id: meta:ten_atoms
2802
+ module_temp_ids:
2803
+ - con_6_abndl_3_atom_1
2804
+ - con_6_abndl_2_atom_1
2805
+ - con_7_abndl_2_atom_1
2806
+ - con_8_abndl_1_atom_1
2807
+ - con_5_abndl_2_atom_1
2808
+ - con_2_abndl_1_atom_1
2809
+ - con_9_abndl_2_atom_1
2810
+ - con_10_abndl_2_atom_1
2811
+ - con_7_abndl_1_atom_1
2812
+ - con_4_abndl_2_atom_1
2813
+ - name: tref-meta:all_non_recommendable_atoms
2814
+ temp_id: meta:all_non_recommendable_atoms
2815
+ module_temp_ids:
2816
+ - con_1_tbndl_1_atom_2
2817
+ - con_1_abndl_1_atom_2
2818
+ - con_1_abndl_1_atom_3
2819
+ - con_1_abndl_1_atom_4
2820
+ - con_1_abndl_2_atom_2
2821
+ - con_1_abndl_2_atom_3
2822
+ - con_1_abndl_2_atom_4
2823
+ - con_1_abndl_3_atom_2
2824
+ - con_1_abndl_3_atom_3
2825
+ - con_1_abndl_3_atom_4
2826
+ - con_2_tbndl_1_atom_2
2827
+ - con_2_abndl_1_atom_2
2828
+ - con_2_abndl_1_atom_3
2829
+ - con_2_abndl_1_atom_4
2830
+ - con_2_abndl_2_atom_2
2831
+ - con_2_abndl_2_atom_3
2832
+ - con_2_abndl_2_atom_4
2833
+ - con_2_abndl_3_atom_2
2834
+ - con_2_abndl_3_atom_3
2835
+ - con_2_abndl_3_atom_4
2836
+ - con_3_tbndl_1_atom_2
2837
+ - con_3_abndl_1_atom_2
2838
+ - con_3_abndl_1_atom_3
2839
+ - con_3_abndl_1_atom_4
2840
+ - con_3_abndl_2_atom_2
2841
+ - con_3_abndl_2_atom_3
2842
+ - con_3_abndl_2_atom_4
2843
+ - con_3_abndl_3_atom_2
2844
+ - con_3_abndl_3_atom_3
2845
+ - con_3_abndl_3_atom_4
2846
+ - con_4_tbndl_1_atom_2
2847
+ - con_4_abndl_1_atom_2
2848
+ - con_4_abndl_1_atom_3
2849
+ - con_4_abndl_1_atom_4
2850
+ - con_4_abndl_2_atom_2
2851
+ - con_4_abndl_2_atom_3
2852
+ - con_4_abndl_2_atom_4
2853
+ - con_4_abndl_3_atom_2
2854
+ - con_4_abndl_3_atom_3
2855
+ - con_4_abndl_3_atom_4
2856
+ - con_5_tbndl_1_atom_2
2857
+ - con_5_abndl_1_atom_2
2858
+ - con_5_abndl_1_atom_3
2859
+ - con_5_abndl_1_atom_4
2860
+ - con_5_abndl_2_atom_2
2861
+ - con_5_abndl_2_atom_3
2862
+ - con_5_abndl_2_atom_4
2863
+ - con_5_abndl_3_atom_2
2864
+ - con_5_abndl_3_atom_3
2865
+ - con_5_abndl_3_atom_4
2866
+ - con_6_tbndl_1_atom_2
2867
+ - con_6_abndl_1_atom_2
2868
+ - con_6_abndl_1_atom_3
2869
+ - con_6_abndl_1_atom_4
2870
+ - con_6_abndl_2_atom_2
2871
+ - con_6_abndl_2_atom_3
2872
+ - con_6_abndl_2_atom_4
2873
+ - con_6_abndl_3_atom_2
2874
+ - con_6_abndl_3_atom_3
2875
+ - con_6_abndl_3_atom_4
2876
+ - con_7_tbndl_1_atom_2
2877
+ - con_7_abndl_1_atom_2
2878
+ - con_7_abndl_1_atom_3
2879
+ - con_7_abndl_1_atom_4
2880
+ - con_7_abndl_2_atom_2
2881
+ - con_7_abndl_2_atom_3
2882
+ - con_7_abndl_2_atom_4
2883
+ - con_7_abndl_3_atom_2
2884
+ - con_7_abndl_3_atom_3
2885
+ - con_7_abndl_3_atom_4
2886
+ - con_8_tbndl_1_atom_2
2887
+ - con_8_abndl_1_atom_2
2888
+ - con_8_abndl_1_atom_3
2889
+ - con_8_abndl_1_atom_4
2890
+ - con_8_abndl_2_atom_2
2891
+ - con_8_abndl_2_atom_3
2892
+ - con_8_abndl_2_atom_4
2893
+ - con_8_abndl_3_atom_2
2894
+ - con_8_abndl_3_atom_3
2895
+ - con_8_abndl_3_atom_4
2896
+ - con_9_tbndl_1_atom_2
2897
+ - con_9_abndl_1_atom_2
2898
+ - con_9_abndl_1_atom_3
2899
+ - con_9_abndl_1_atom_4
2900
+ - con_9_abndl_2_atom_2
2901
+ - con_9_abndl_2_atom_3
2902
+ - con_9_abndl_2_atom_4
2903
+ - con_9_abndl_3_atom_2
2904
+ - con_9_abndl_3_atom_3
2905
+ - con_9_abndl_3_atom_4
2906
+ - con_10_tbndl_1_atom_2
2907
+ - con_10_abndl_1_atom_2
2908
+ - con_10_abndl_1_atom_3
2909
+ - con_10_abndl_1_atom_4
2910
+ - con_10_abndl_2_atom_2
2911
+ - con_10_abndl_2_atom_3
2912
+ - con_10_abndl_2_atom_4
2913
+ - con_10_abndl_3_atom_2
2914
+ - con_10_abndl_3_atom_3
2915
+ - con_10_abndl_3_atom_4