maltese 0.9.6 → 0.9.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cec049c99f3fa27fe10d0117408ac6c376747511ddfb59743211d9c5fb03a555
4
- data.tar.gz: fdb7a654761096dee2469fc76c76465469651977a4ffdef6c7c3c926786b24f0
3
+ metadata.gz: bd87da05843c09dcf82c4402bff44c0e4ab451c9f326cc4ec1078f25cbf8328a
4
+ data.tar.gz: c37343dda36c0b1753da3739749ada24012e7a0c3f8288a63c65857acfaf2bf2
5
5
  SHA512:
6
- metadata.gz: 4fa6c309416bbf9216b34f6330833a19f94eef541575cd0ef337ee121b277a846d97037e25dcecf82774a5d908847bc6d0ac37cb220fa0fbd34be0b5d6b73863
7
- data.tar.gz: fc7fe1370573ce34a2fdce52fd9b9b301fc968fca2deab75a8675a35e61e31338e073ea3fde9eebb347f7f51daef0759ebbc755191bc32c4765d164eb498a7fb
6
+ metadata.gz: 19fb83f8685ceaa291f361956ad1a5f2b562951e007566be4f188bd8ec55855b3bf017cda37e74539b11c99f8267fe00c2c4e72591673fd9e68691089ed60a5e
7
+ data.tar.gz: 10d69e6e58de77391ac05ac271ebeeeeb8c337b2f37649f9e8ad51fbc36422342bcef5e9fa64847ef89d5bf67498496cfc85171d5fbbc037d2584f9827139c7a
data/Dockerfile CHANGED
@@ -11,6 +11,6 @@ RUN apt-get update && apt-get upgrade -y -o Dpkg::Options::="--force-confold" &&
11
11
  apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
12
12
 
13
13
  # Install maltese gem
14
- RUN /sbin/setuser app gem install maltese -v 0.9.6
14
+ RUN /sbin/setuser app gem install maltese -v 0.9.7
15
15
 
16
16
  CMD maltese sitemap --sitemap_bucket $SITEMAP_BUCKET --rack_env $RACK_ENV --access_key $AWS_ACCESS_KEY_ID --secret_key $AWS_SECRET_ACCESS_KEY --region $AWS_REGION --slack_webhook_url $SLACK_WEBHOOK_URL
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- maltese (0.9.6)
4
+ maltese (0.9.7)
5
5
  activesupport (>= 4.2.5, < 6)
6
6
  aws-sdk-s3 (~> 1.19)
7
7
  dotenv (~> 2.1, >= 2.1.1)
@@ -3,6 +3,7 @@ require 'retriable'
3
3
  require 'slack-notifier'
4
4
 
5
5
  module Maltese
6
+ class ::InternalServerError < StandardError; end
6
7
  class ::BadGatewayError < StandardError; end
7
8
 
8
9
  class Sitemap
@@ -104,6 +105,7 @@ module Maltese
104
105
 
105
106
  params = {
106
107
  "fields[dois]" => "doi,updated",
108
+ "exclude-registration-agencies" => "true",
107
109
  "page[scroll]" => "7m",
108
110
  "page[size]" => options[:size]
109
111
  }
@@ -123,11 +125,12 @@ module Maltese
123
125
  # speed up tests
124
126
  base_interval = rack_env == "test" ? 0.1 : 10
125
127
 
126
- # retry on temporal errors (status codes 408 and 502)
128
+ # retry on temporal errors (status codes 408, 500 and 502)
127
129
  Retriable.retriable(base_interval: base_interval, multiplier: 2) do
128
130
  response = get_data(options[:url])
129
131
 
130
132
  raise Timeout::Error, "A timeout error occured for URL #{options[:url]}." if response.status == 408
133
+ raise InternalServerError, "An internal server error occured for URL #{options[:url]}." if response.status == 500
131
134
  raise BadGatewayError, "A bad gateway error occured for URL #{options[:url]}." if response.status == 502
132
135
  end
133
136
 
@@ -158,8 +161,6 @@ module Maltese
158
161
  end
159
162
  end
160
163
 
161
- return link_count if error_count > 0
162
-
163
164
  push_data(options)
164
165
  end
165
166
 
@@ -1,3 +1,3 @@
1
1
  module Maltese
2
- VERSION = "0.9.6"
2
+ VERSION = "0.9.7"
3
3
  end
data/spec/cli_spec.rb CHANGED
@@ -16,7 +16,7 @@ describe Maltese::CLI do
16
16
  sitemap = Zlib::GzipReader.open("public/sitemaps/sitemap.xml.gz") { |gz| gz.read }
17
17
  doc = Nokogiri::XML(sitemap)
18
18
  expect(doc.xpath("//xmlns:url").size).to eq(1001)
19
- expect(doc.xpath("//xmlns:loc").last.text).to eq("https://search.test.datacite.org/works/10.4124/ccnlgrf")
19
+ expect(doc.xpath("//xmlns:loc").last.text).to eq("https://search.test.datacite.org/works/10.0166/fk2.stagefigshare.6657668")
20
20
  end
21
21
  end
22
22
  end
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: https://api.test.datacite.org/dois?fields%5Bdois%5D=doi,updated&page%5Bscroll%5D=7m&page%5Bsize%5D=1
5
+ uri: https://api.test.datacite.org/dois?exclude-registration-agencies=true&fields%5Bdois%5D=doi,updated&page%5Bscroll%5D=7m&page%5Bsize%5D=1
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -17,7 +17,7 @@ http_interactions:
17
17
  message: OK
18
18
  headers:
19
19
  Date:
20
- - Thu, 12 Dec 2019 09:06:39 GMT
20
+ - Thu, 12 Dec 2019 11:03:30 GMT
21
21
  Content-Type:
22
22
  - application/json; charset=utf-8
23
23
  Connection:
@@ -31,23 +31,23 @@ http_interactions:
31
31
  Vary:
32
32
  - Accept-Encoding, Origin
33
33
  X-Request-Id:
34
- - 3070b773-0b59-4b6f-974b-3b143e4bc506
34
+ - fe0d543a-d7f6-4c2c-910e-dd3089cdf02f
35
35
  Etag:
36
- - W/"9d697ab860c84841d0b54855f3fea259"
36
+ - W/"3ae82b2ac2fbcde933c1dd74a3524738"
37
37
  X-Runtime:
38
- - '0.708826'
38
+ - '7.660667'
39
39
  X-Powered-By:
40
40
  - Phusion Passenger 6.0.4
41
41
  Server:
42
42
  - nginx/1.17.3 + Phusion Passenger 6.0.4
43
43
  body:
44
44
  encoding: ASCII-8BIT
45
- string: '{"data":[{"id":"10.0166/fk2.stagefigshare.c.2794104","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794104","updated":"2019-12-12T06:41:10.000Z"},"relationships":{}}],"meta":{"total":896469,"scroll-id":"DnF1ZXJ5VGhlbkZldGNoBQAAAAAAQ2NLFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAENjTBZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhRAAAAAABDY00WbFFhUy1BeGRSd2VkTWczN2lTNmI4UQAAAAAAQ2NOFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAENjTxZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhR"},"links":{"self":"https://api.test.datacite.org/dois?fields%5Bdois%5D=doi%2Cupdated&page%5Bscroll%5D=7m&page%5Bsize%5D=1","next":"https://api.test.datacite.org/dois?page%5Bscroll%5D=7m&page%5Bsize%5D=1&scroll-id=DnF1ZXJ5VGhlbkZldGNoBQAAAAAAQ2NLFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAENjTBZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhRAAAAAABDY00WbFFhUy1BeGRSd2VkTWczN2lTNmI4UQAAAAAAQ2NOFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAENjTxZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhR"}}'
45
+ string: '{"data":[{"id":"10.0253/tuprints-00003610","type":"dois","attributes":{"doi":"10.0253/tuprints-00003610","updated":"2019-12-12T11:03:24.000Z"},"relationships":{}}],"meta":{"total":271420,"scroll-id":"DnF1ZXJ5VGhlbkZldGNoBQAAAAAAQ-3PFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAEPt0BZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhRAAAAAABD7dEWbFFhUy1BeGRSd2VkTWczN2lTNmI4UQAAAAAAQ-3SFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAEPt0xZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhR"},"links":{"self":"https://api.test.datacite.org/dois?exclude-registration-agencies=true&fields%5Bdois%5D=doi%2Cupdated&page%5Bscroll%5D=7m&page%5Bsize%5D=1","next":"https://api.test.datacite.org/dois?page%5Bscroll%5D=7m&page%5Bsize%5D=1&scroll-id=DnF1ZXJ5VGhlbkZldGNoBQAAAAAAQ-3PFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAEPt0BZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhRAAAAAABD7dEWbFFhUy1BeGRSd2VkTWczN2lTNmI4UQAAAAAAQ-3SFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAEPt0xZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhR"}}'
46
46
  http_version:
47
- recorded_at: Thu, 12 Dec 2019 09:06:39 GMT
47
+ recorded_at: Thu, 12 Dec 2019 11:03:30 GMT
48
48
  - request:
49
49
  method: get
50
- uri: https://api.test.datacite.org/dois?fields%5Bdois%5D=doi,updated&page%5Bscroll%5D=7m&page%5Bsize%5D=1000
50
+ uri: https://api.test.datacite.org/dois?exclude-registration-agencies=true&fields%5Bdois%5D=doi,updated&page%5Bscroll%5D=7m&page%5Bsize%5D=1000
51
51
  body:
52
52
  encoding: US-ASCII
53
53
  string: ''
@@ -62,7 +62,7 @@ http_interactions:
62
62
  message: OK
63
63
  headers:
64
64
  Date:
65
- - Thu, 12 Dec 2019 09:06:43 GMT
65
+ - Thu, 12 Dec 2019 11:03:42 GMT
66
66
  Content-Type:
67
67
  - application/json; charset=utf-8
68
68
  Connection:
@@ -76,27 +76,27 @@ http_interactions:
76
76
  Vary:
77
77
  - Accept-Encoding, Origin
78
78
  X-Request-Id:
79
- - 2b360417-1eb6-43b9-a506-06e15e48d644
79
+ - f2962212-52fd-46bf-9b09-8ab32d0ce4a2
80
80
  Etag:
81
- - W/"0748afdc51480920d9fe187fa67ccb4b"
81
+ - W/"849d0ec3715ea24b4198b664c273ec80"
82
82
  X-Runtime:
83
- - '3.149990'
83
+ - '11.420406'
84
84
  X-Powered-By:
85
85
  - Phusion Passenger 6.0.4
86
86
  Server:
87
87
  - nginx/1.17.3 + Phusion Passenger 6.0.4
88
88
  body:
89
89
  encoding: ASCII-8BIT
90
- string: '{"data":[{"id":"10.0166/fk2.stagefigshare.c.2794104","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794104","updated":"2019-12-12T06:41:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794104.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794104.v1","updated":"2019-12-12T06:41:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657672.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657672.v1","updated":"2019-12-12T06:38:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657672","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657672","updated":"2019-12-12T06:38:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794102","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794102","updated":"2019-12-12T06:36:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794102.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794102.v1","updated":"2019-12-12T06:36:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657670.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657670.v1","updated":"2019-12-12T06:35:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657670","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657670","updated":"2019-12-12T06:35:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794100","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794100","updated":"2019-12-12T06:34:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794100.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794100.v1","updated":"2019-12-12T06:34:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657668","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657668","updated":"2019-12-12T06:33:48.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657668.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657668.v1","updated":"2019-12-12T06:33:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657666","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657666","updated":"2019-12-12T06:32:29.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657666.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657666.v1","updated":"2019-12-12T06:32:29.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657664.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657664.v1","updated":"2019-12-12T06:28:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657664","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657664","updated":"2019-12-12T06:28:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657662","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657662","updated":"2019-12-12T06:28:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657662.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657662.v1","updated":"2019-12-12T06:28:22.000Z"},"relationships":{}},{"id":"10.33593/morressier.5ccac616cc2d79d348734c09","type":"dois","attributes":{"doi":"10.33593/morressier.5ccac616cc2d79d348734c09","updated":"2019-12-12T06:13:39.000Z"},"relationships":{}},{"id":"10.0311/fk2/9dbe9958121fd9f4aea057c63e70dbb9","type":"dois","attributes":{"doi":"10.0311/fk2/9dbe9958121fd9f4aea057c63e70dbb9","updated":"2019-12-12T05:41:49.000Z"},"relationships":{}},{"id":"10.70118/00001176.0","type":"dois","attributes":{"doi":"10.70118/00001176.0","updated":"2019-12-12T05:24:23.000Z"},"relationships":{}},{"id":"10.70118/00001176.1","type":"dois","attributes":{"doi":"10.70118/00001176.1","updated":"2019-12-12T05:24:23.000Z"},"relationships":{}},{"id":"10.70118/00001608","type":"dois","attributes":{"doi":"10.70118/00001608","updated":"2019-12-12T05:24:03.000Z"},"relationships":{}},{"id":"10.70118/00001607","type":"dois","attributes":{"doi":"10.70118/00001607","updated":"2019-12-12T05:24:02.000Z"},"relationships":{}},{"id":"10.70118/00001605","type":"dois","attributes":{"doi":"10.70118/00001605","updated":"2019-12-12T04:32:22.000Z"},"relationships":{}},{"id":"10.70118/00001602","type":"dois","attributes":{"doi":"10.70118/00001602","updated":"2019-12-12T04:14:57.000Z"},"relationships":{}},{"id":"10.70118/00001604","type":"dois","attributes":{"doi":"10.70118/00001604","updated":"2019-12-12T04:13:56.000Z"},"relationships":{}},{"id":"10.70118/00001603","type":"dois","attributes":{"doi":"10.70118/00001603","updated":"2019-12-12T04:13:55.000Z"},"relationships":{}},{"id":"10.70118/00001601","type":"dois","attributes":{"doi":"10.70118/00001601","updated":"2019-12-12T04:02:20.000Z"},"relationships":{}},{"id":"10.70112/obfgp9","type":"dois","attributes":{"doi":"10.70112/obfgp9","updated":"2019-12-12T02:33:45.000Z"},"relationships":{}},{"id":"10.70112/kwavz9","type":"dois","attributes":{"doi":"10.70112/kwavz9","updated":"2019-12-12T02:33:38.000Z"},"relationships":{}},{"id":"10.70112/r7jqmd","type":"dois","attributes":{"doi":"10.70112/r7jqmd","updated":"2019-12-12T02:33:30.000Z"},"relationships":{}},{"id":"10.70112/exn2dn","type":"dois","attributes":{"doi":"10.70112/exn2dn","updated":"2019-12-12T02:33:23.000Z"},"relationships":{}},{"id":"10.70112/1kebul","type":"dois","attributes":{"doi":"10.70112/1kebul","updated":"2019-12-12T02:33:16.000Z"},"relationships":{}},{"id":"10.70112/osbbcj","type":"dois","attributes":{"doi":"10.70112/osbbcj","updated":"2019-12-12T02:33:09.000Z"},"relationships":{}},{"id":"10.70112/c3kehg","type":"dois","attributes":{"doi":"10.70112/c3kehg","updated":"2019-12-12T02:33:02.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657606","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657606","updated":"2019-12-12T02:32:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657606.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657606.v1","updated":"2019-12-12T02:32:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657600","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657600","updated":"2019-12-12T02:31:26.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657600.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657600.v1","updated":"2019-12-12T02:31:26.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657594.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657594.v1","updated":"2019-12-12T02:29:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657594","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657594","updated":"2019-12-12T02:29:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657592.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657592.v1","updated":"2019-12-12T02:28:17.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657592","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657592","updated":"2019-12-12T02:28:17.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657588","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657588","updated":"2019-12-12T02:27:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657588.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657588.v1","updated":"2019-12-12T02:27:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657586","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657586","updated":"2019-12-12T02:27:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657586.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657586.v1","updated":"2019-12-12T02:27:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657582.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657582.v1","updated":"2019-12-12T02:25:53.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657582","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657582","updated":"2019-12-12T02:25:53.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657584.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657584.v1","updated":"2019-12-12T02:25:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657584","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657584","updated":"2019-12-12T02:25:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657580","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657580","updated":"2019-12-12T02:25:51.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657580.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657580.v1","updated":"2019-12-12T02:25:51.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657576","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657576","updated":"2019-12-12T02:25:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657576.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657576.v1","updated":"2019-12-12T02:25:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657572","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657572","updated":"2019-12-12T02:25:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657572.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657572.v1","updated":"2019-12-12T02:25:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657564.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657564.v1","updated":"2019-12-12T02:24:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657564","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657564","updated":"2019-12-12T02:24:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657560","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657560","updated":"2019-12-12T02:23:24.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657560.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657560.v1","updated":"2019-12-12T02:23:24.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794086.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794086.v1","updated":"2019-12-12T02:23:07.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657554","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657554","updated":"2019-12-12T02:23:00.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657554.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657554.v1","updated":"2019-12-12T02:23:00.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657534.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657534.v1","updated":"2019-12-12T02:22:56.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657534","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657534","updated":"2019-12-12T02:22:55.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657558","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657558","updated":"2019-12-12T02:22:17.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657558.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657558.v1","updated":"2019-12-12T02:22:16.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657556","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657556","updated":"2019-12-12T02:22:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657556.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657556.v1","updated":"2019-12-12T02:22:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657552.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657552.v1","updated":"2019-12-12T02:21:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657552","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657552","updated":"2019-12-12T02:21:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657544.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657544.v1","updated":"2019-12-12T02:21:26.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657544","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657544","updated":"2019-12-12T02:21:26.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657542","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657542","updated":"2019-12-12T02:21:18.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657542.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657542.v1","updated":"2019-12-12T02:21:18.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657530","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657530","updated":"2019-12-12T02:21:11.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657530.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657530.v1","updated":"2019-12-12T02:21:11.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657540","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657540","updated":"2019-12-12T02:21:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657540.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657540.v1","updated":"2019-12-12T02:21:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657538.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657538.v1","updated":"2019-12-12T02:21:01.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657538","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657538","updated":"2019-12-12T02:21:01.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657536","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657536","updated":"2019-12-12T02:20:59.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657536.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657536.v1","updated":"2019-12-12T02:20:58.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657532","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657532","updated":"2019-12-12T02:20:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657532.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657532.v1","updated":"2019-12-12T02:20:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657526","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657526","updated":"2019-12-12T02:17:37.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657526.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657526.v1","updated":"2019-12-12T02:17:37.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794094.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794094.v1","updated":"2019-12-12T02:14:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794094","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794094","updated":"2019-12-12T02:14:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657516","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657516","updated":"2019-12-12T02:14:48.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657516.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657516.v1","updated":"2019-12-12T02:14:48.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657512.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657512.v1","updated":"2019-12-12T02:12:58.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657512","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657512","updated":"2019-12-12T02:12:58.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657500","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657500","updated":"2019-12-12T02:11:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657500.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657500.v1","updated":"2019-12-12T02:11:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657498.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657498.v1","updated":"2019-12-12T02:11:00.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657498","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657498","updated":"2019-12-12T02:11:00.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657496","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657496","updated":"2019-12-12T02:10:59.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657496.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657496.v1","updated":"2019-12-12T02:10:59.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657494","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657494","updated":"2019-12-12T02:10:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657494.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657494.v1","updated":"2019-12-12T02:10:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657492.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657492.v1","updated":"2019-12-12T02:10:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657492","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657492","updated":"2019-12-12T02:10:14.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657490.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657490.v1","updated":"2019-12-12T02:10:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657490.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657490.v2","updated":"2019-12-12T02:10:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657490","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657490","updated":"2019-12-12T02:10:07.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657488","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657488","updated":"2019-12-12T02:09:51.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657488.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657488.v1","updated":"2019-12-12T02:09:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657486.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657486.v1","updated":"2019-12-12T02:09:45.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657486","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657486","updated":"2019-12-12T02:09:45.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657484","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657484","updated":"2019-12-12T02:09:29.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657484.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657484.v1","updated":"2019-12-12T02:09:29.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657470.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657470.v1","updated":"2019-12-12T02:09:02.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657470","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657470","updated":"2019-12-12T02:09:02.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657482.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657482.v1","updated":"2019-12-12T02:08:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657482","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657482","updated":"2019-12-12T02:08:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657480.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657480.v1","updated":"2019-12-12T02:08:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657480","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657480","updated":"2019-12-12T02:08:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657472.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657472.v1","updated":"2019-12-12T02:08:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657472","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657472","updated":"2019-12-12T02:08:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657478","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657478","updated":"2019-12-12T02:08:19.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657478.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657478.v1","updated":"2019-12-12T02:08:18.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657476","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657476","updated":"2019-12-12T02:08:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657476.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657476.v1","updated":"2019-12-12T02:08:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657474.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657474.v1","updated":"2019-12-12T02:08:14.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657474","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657474","updated":"2019-12-12T02:08:14.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657468","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657468","updated":"2019-12-12T02:06:37.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657468.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657468.v2","updated":"2019-12-12T02:06:37.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657468.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657468.v1","updated":"2019-12-12T02:06:37.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657416","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657416","updated":"2019-12-12T02:03:54.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657416.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657416.v1","updated":"2019-12-12T02:03:54.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657380.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657380.v1","updated":"2019-12-12T02:03:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657380","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657380","updated":"2019-12-12T02:03:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657350.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657350.v1","updated":"2019-12-12T02:03:46.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657350","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657350","updated":"2019-12-12T02:03:46.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794088.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794088.v1","updated":"2019-12-12T02:02:55.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794088","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794088","updated":"2019-12-12T02:02:55.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794086","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794086","updated":"2019-12-12T02:02:16.000Z"},"relationships":{}},{"id":"10.70122/fk2/uxwanp","type":"dois","attributes":{"doi":"10.70122/fk2/uxwanp","updated":"2019-12-12T02:02:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657460","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657460","updated":"2019-12-12T02:02:01.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657460.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657460.v1","updated":"2019-12-12T02:02:01.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657456","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657456","updated":"2019-12-12T02:01:57.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657456.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657456.v1","updated":"2019-12-12T02:01:56.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657452.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657452.v1","updated":"2019-12-12T02:01:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657452","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657452","updated":"2019-12-12T02:01:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657432","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657432","updated":"2019-12-12T02:00:51.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657432.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657432.v1","updated":"2019-12-12T02:00:51.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657414.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657414.v1","updated":"2019-12-12T01:59:41.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657414","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657414","updated":"2019-12-12T01:59:41.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657370","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657370","updated":"2019-12-12T01:58:53.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657370.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657370.v1","updated":"2019-12-12T01:58:53.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657392","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657392","updated":"2019-12-12T01:58:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657392.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657392.v1","updated":"2019-12-12T01:58:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657394","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657394","updated":"2019-12-12T01:58:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657394.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657394.v1","updated":"2019-12-12T01:58:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657366.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657366.v1","updated":"2019-12-12T01:57:27.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657366","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657366","updated":"2019-12-12T01:57:27.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657358","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657358","updated":"2019-12-12T01:57:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657358.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657358.v1","updated":"2019-12-12T01:57:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657344","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657344","updated":"2019-12-12T01:56:45.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657344.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657344.v1","updated":"2019-12-12T01:56:45.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657352.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657352.v1","updated":"2019-12-12T01:56:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657352","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657352","updated":"2019-12-12T01:56:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657346","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657346","updated":"2019-12-12T01:56:14.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657346.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657346.v1","updated":"2019-12-12T01:56:14.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657342","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657342","updated":"2019-12-12T01:55:51.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657342.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657342.v1","updated":"2019-12-12T01:55:51.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657338","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657338","updated":"2019-12-12T01:55:23.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657338.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657338.v1","updated":"2019-12-12T01:55:23.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657336.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657336.v1","updated":"2019-12-12T01:55:00.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657336","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657336","updated":"2019-12-12T01:55:00.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657334","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657334","updated":"2019-12-12T01:54:37.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657334.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657334.v1","updated":"2019-12-12T01:54:37.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657326","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657326","updated":"2019-12-12T01:54:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657326.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657326.v2","updated":"2019-12-12T01:54:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657326.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657326.v1","updated":"2019-12-12T01:54:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657332","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657332","updated":"2019-12-12T01:54:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657332.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657332.v1","updated":"2019-12-12T01:54:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657330.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657330.v1","updated":"2019-12-12T01:54:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657330","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657330","updated":"2019-12-12T01:54:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657322.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657322.v1","updated":"2019-12-12T01:53:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657322","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657322","updated":"2019-12-12T01:53:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657324.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657324.v1","updated":"2019-12-12T01:53:16.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657324","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657324","updated":"2019-12-12T01:53:16.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657316.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657316.v1","updated":"2019-12-12T01:52:28.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657316","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657316","updated":"2019-12-12T01:52:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657318","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657318","updated":"2019-12-12T01:52:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657318.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657318.v1","updated":"2019-12-12T01:52:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657306.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657306.v1","updated":"2019-12-12T01:50:12.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657306","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657306","updated":"2019-12-12T01:50:12.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657298.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657298.v1","updated":"2019-12-12T01:49:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657264.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657264.v1","updated":"2019-12-12T01:49:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657264.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657264.v2","updated":"2019-12-12T01:49:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657298","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657298","updated":"2019-12-12T01:49:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657264","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657264","updated":"2019-12-12T01:49:41.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657292","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657292","updated":"2019-12-12T01:48:41.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657292.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657292.v1","updated":"2019-12-12T01:48:41.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657282","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657282","updated":"2019-12-12T01:47:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657282.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657282.v1","updated":"2019-12-12T01:47:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657288.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657288.v1","updated":"2019-12-12T01:47:51.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657288","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657288","updated":"2019-12-12T01:47:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657284.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657284.v1","updated":"2019-12-12T01:46:59.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657284","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657284","updated":"2019-12-12T01:46:59.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657274","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657274","updated":"2019-12-12T01:46:54.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657274.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657274.v1","updated":"2019-12-12T01:46:54.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657280","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657280","updated":"2019-12-12T01:46:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657280.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657280.v1","updated":"2019-12-12T01:46:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657276.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657276.v1","updated":"2019-12-12T01:46:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657276","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657276","updated":"2019-12-12T01:46:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657268.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657268.v1","updated":"2019-12-12T01:45:38.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657268","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657268","updated":"2019-12-12T01:45:38.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657258.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657258.v1","updated":"2019-12-12T01:45:37.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657258","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657258","updated":"2019-12-12T01:45:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657260","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657260","updated":"2019-12-12T01:45:35.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657260.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657260.v1","updated":"2019-12-12T01:45:35.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657254.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657254.v1","updated":"2019-12-12T01:45:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657254","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657254","updated":"2019-12-12T01:45:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657262.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657262.v1","updated":"2019-12-12T01:45:11.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657262","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657262","updated":"2019-12-12T01:45:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657244.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657244.v1","updated":"2019-12-12T01:44:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657244","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657244","updated":"2019-12-12T01:44:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657248.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657248.v1","updated":"2019-12-12T01:44:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657246.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657246.v1","updated":"2019-12-12T01:44:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657248","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657248","updated":"2019-12-12T01:44:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657246","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657246","updated":"2019-12-12T01:44:07.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657242.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657242.v1","updated":"2019-12-12T01:43:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657242","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657242","updated":"2019-12-12T01:43:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657236","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657236","updated":"2019-12-12T01:43:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657236.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657236.v1","updated":"2019-12-12T01:43:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657232.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657232.v1","updated":"2019-12-12T01:43:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657232","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657232","updated":"2019-12-12T01:43:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657224.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657224.v1","updated":"2019-12-12T01:43:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657224","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657224","updated":"2019-12-12T01:43:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657228.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657228.v1","updated":"2019-12-12T01:43:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657228","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657228","updated":"2019-12-12T01:43:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657238.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657238.v1","updated":"2019-12-12T01:43:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657238","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657238","updated":"2019-12-12T01:43:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657234.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657234.v1","updated":"2019-12-12T01:43:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657234","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657234","updated":"2019-12-12T01:42:44.000Z"},"relationships":{}},{"id":"10.15771/imejidev.36c","type":"dois","attributes":{"doi":"10.15771/imejidev.36c","updated":"2019-12-12T01:42:39.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657230.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657230.v1","updated":"2019-12-12T01:42:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657230","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657230","updated":"2019-12-12T01:42:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657202","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657202","updated":"2019-12-12T01:41:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657202.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657202.v1","updated":"2019-12-12T01:41:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657196.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657196.v1","updated":"2019-12-12T01:41:12.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657196","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657196","updated":"2019-12-12T01:41:12.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657180.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657180.v1","updated":"2019-12-12T01:39:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657180","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657180","updated":"2019-12-12T01:39:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657170.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657170.v1","updated":"2019-12-12T01:39:20.000Z"},"relationships":{}},{"id":"10.15771/imejidev.36b","type":"dois","attributes":{"doi":"10.15771/imejidev.36b","updated":"2019-12-12T01:39:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657170","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657170","updated":"2019-12-12T01:39:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657174","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657174","updated":"2019-12-12T01:39:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657174.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657174.v1","updated":"2019-12-12T01:39:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657158.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657158.v2","updated":"2019-12-12T01:37:45.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657158.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657158.v1","updated":"2019-12-12T01:37:45.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657158","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657158","updated":"2019-12-12T01:37:44.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657162.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657162.v1","updated":"2019-12-12T01:37:43.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657162","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657162","updated":"2019-12-12T01:37:43.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657154","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657154","updated":"2019-12-12T01:37:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657154.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657154.v1","updated":"2019-12-12T01:37:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657156.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657156.v1","updated":"2019-12-12T01:36:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657156","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657156","updated":"2019-12-12T01:36:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657148.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657148.v1","updated":"2019-12-12T01:36:29.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657148","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657148","updated":"2019-12-12T01:36:28.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657150.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657150.v1","updated":"2019-12-12T01:36:11.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657150","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657150","updated":"2019-12-12T01:36:11.000Z"},"relationships":{}},{"id":"10.15771/imejidev.36a","type":"dois","attributes":{"doi":"10.15771/imejidev.36a","updated":"2019-12-12T01:36:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657142.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657142.v1","updated":"2019-12-12T01:35:55.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657142","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657142","updated":"2019-12-12T01:35:55.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657138.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657138.v2","updated":"2019-12-12T01:35:34.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657138.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657138.v1","updated":"2019-12-12T01:35:34.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657138","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657138","updated":"2019-12-12T01:35:33.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657140","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657140","updated":"2019-12-12T01:35:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657140.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657140.v1","updated":"2019-12-12T01:35:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657136.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657136.v1","updated":"2019-12-12T01:34:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657136","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657136","updated":"2019-12-12T01:34:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657134","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657134","updated":"2019-12-12T01:33:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657134.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657134.v1","updated":"2019-12-12T01:33:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657132","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657132","updated":"2019-12-12T01:33:30.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657132.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657132.v1","updated":"2019-12-12T01:33:30.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657130","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657130","updated":"2019-12-12T01:33:14.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657130.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657130.v1","updated":"2019-12-12T01:33:14.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657126.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657126.v1","updated":"2019-12-12T01:33:05.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657126","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657126","updated":"2019-12-12T01:33:04.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657122","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657122","updated":"2019-12-12T01:32:56.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657122.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657122.v1","updated":"2019-12-12T01:32:55.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657120","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657120","updated":"2019-12-12T01:32:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657120.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657120.v1","updated":"2019-12-12T01:32:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657116","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657116","updated":"2019-12-12T01:32:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657116.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657116.v1","updated":"2019-12-12T01:32:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657128.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657128.v1","updated":"2019-12-12T01:32:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657128","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657128","updated":"2019-12-12T01:32:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657106.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657106.v2","updated":"2019-12-12T01:32:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657106","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657106","updated":"2019-12-12T01:32:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657106.v3","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657106.v3","updated":"2019-12-12T01:32:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657124","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657124","updated":"2019-12-12T01:32:14.000Z"},"relationships":{}},{"id":"10.15771/imejidev.369","type":"dois","attributes":{"doi":"10.15771/imejidev.369","updated":"2019-12-12T01:32:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657118","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657118","updated":"2019-12-12T01:32:03.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657106.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657106.v1","updated":"2019-12-12T01:31:58.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657114.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657114.v1","updated":"2019-12-12T01:31:56.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657114","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657114","updated":"2019-12-12T01:31:55.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657112.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657112.v1","updated":"2019-12-12T01:31:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657112","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657112","updated":"2019-12-12T01:31:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657108.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657108.v1","updated":"2019-12-12T01:31:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657108","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657108","updated":"2019-12-12T01:31:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657094.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657094.v1","updated":"2019-12-12T01:31:07.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657094","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657094","updated":"2019-12-12T01:31:07.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657084","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657084","updated":"2019-12-12T01:30:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657084.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657084.v1","updated":"2019-12-12T01:30:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657074.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657074.v1","updated":"2019-12-12T01:30:33.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657074","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657074","updated":"2019-12-12T01:30:33.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657066.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657066.v1","updated":"2019-12-12T01:30:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657066","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657066","updated":"2019-12-12T01:30:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657060.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657060.v1","updated":"2019-12-12T01:30:14.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657060","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657060","updated":"2019-12-12T01:30:14.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657058","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657058","updated":"2019-12-12T01:30:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657058.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657058.v1","updated":"2019-12-12T01:30:09.000Z"},"relationships":{}},{"id":"10.15771/imejidev.368","type":"dois","attributes":{"doi":"10.15771/imejidev.368","updated":"2019-12-12T01:29:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657030","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657030","updated":"2019-12-12T01:29:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657030.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657030.v1","updated":"2019-12-12T01:29:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657020.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657020.v1","updated":"2019-12-12T01:28:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657020","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657020","updated":"2019-12-12T01:28:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657012","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657012","updated":"2019-12-12T01:28:39.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657012.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657012.v1","updated":"2019-12-12T01:28:39.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657010.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657010.v1","updated":"2019-12-12T01:28:30.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657010","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657010","updated":"2019-12-12T01:28:30.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657008","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657008","updated":"2019-12-12T01:28:28.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657008.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657008.v1","updated":"2019-12-12T01:28:27.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656996","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656996","updated":"2019-12-12T01:27:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656980","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656980","updated":"2019-12-12T01:27:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656980.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656980.v1","updated":"2019-12-12T01:27:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656970.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656970.v1","updated":"2019-12-12T01:27:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656970","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656970","updated":"2019-12-12T01:27:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656948","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656948","updated":"2019-12-12T01:26:57.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656948.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656948.v1","updated":"2019-12-12T01:26:57.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656946","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656946","updated":"2019-12-12T01:26:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656946.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656946.v1","updated":"2019-12-12T01:26:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656962.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656962.v1","updated":"2019-12-12T01:26:44.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656962","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656962","updated":"2019-12-12T01:26:44.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656956.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656956.v1","updated":"2019-12-12T01:26:26.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656956","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656956","updated":"2019-12-12T01:26:26.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656938.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656938.v1","updated":"2019-12-12T01:25:43.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656938","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656938","updated":"2019-12-12T01:25:43.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656930.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656930.v1","updated":"2019-12-12T01:25:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656930","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656930","updated":"2019-12-12T01:25:23.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656882.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656882.v1","updated":"2019-12-12T01:23:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656882","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656882","updated":"2019-12-12T01:23:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794078.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794078.v1","updated":"2019-12-12T01:23:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794040.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794040.v1","updated":"2019-12-12T01:23:07.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794052.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794052.v1","updated":"2019-12-12T01:23:07.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794018.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794018.v1","updated":"2019-12-12T01:23:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794030.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794030.v1","updated":"2019-12-12T01:23:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794078","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794078","updated":"2019-12-12T01:22:57.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656880","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656880","updated":"2019-12-12T01:22:35.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794068","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794068","updated":"2019-12-12T01:20:35.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794068.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794068.v1","updated":"2019-12-12T01:20:35.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656860.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656860.v1","updated":"2019-12-12T01:20:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656860","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656860","updated":"2019-12-12T01:20:19.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656868","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656868","updated":"2019-12-12T01:20:18.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656868.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656868.v1","updated":"2019-12-12T01:20:18.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656856","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656856","updated":"2019-12-12T01:19:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656856.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656856.v1","updated":"2019-12-12T01:19:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794060","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794060","updated":"2019-12-12T01:18:04.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794060.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794060.v1","updated":"2019-12-12T01:18:04.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656844","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656844","updated":"2019-12-12T01:17:58.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656844.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656844.v1","updated":"2019-12-12T01:17:58.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656840.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656840.v1","updated":"2019-12-12T01:17:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656840","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656840","updated":"2019-12-12T01:17:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794052","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794052","updated":"2019-12-12T01:14:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794052.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794052.v2","updated":"2019-12-12T01:14:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656834","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656834","updated":"2019-12-12T01:14:27.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656834.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656834.v1","updated":"2019-12-12T01:14:27.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656832.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656832.v1","updated":"2019-12-12T01:14:26.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656832","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656832","updated":"2019-12-12T01:14:26.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656830.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656830.v1","updated":"2019-12-12T01:14:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656830","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656830","updated":"2019-12-12T01:14:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656828.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656828.v1","updated":"2019-12-12T01:14:24.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656828","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656828","updated":"2019-12-12T01:14:24.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656826.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656826.v1","updated":"2019-12-12T01:14:23.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656826","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656826","updated":"2019-12-12T01:14:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794048.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794048.v1","updated":"2019-12-12T01:14:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656824.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656824.v1","updated":"2019-12-12T01:14:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794046.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794046.v1","updated":"2019-12-12T01:14:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794050.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794050.v1","updated":"2019-12-12T01:14:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794048","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794048","updated":"2019-12-12T01:14:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794046","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794046","updated":"2019-12-12T01:14:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656824","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656824","updated":"2019-12-12T01:14:19.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794050","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794050","updated":"2019-12-12T01:14:19.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794038.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794038.v1","updated":"2019-12-12T01:14:18.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794038.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794038.v2","updated":"2019-12-12T01:14:18.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656822","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656822","updated":"2019-12-12T01:14:17.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794038","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794038","updated":"2019-12-12T01:14:17.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656822.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656822.v1","updated":"2019-12-12T01:14:17.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656802.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656802.v2","updated":"2019-12-12T01:14:16.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656802","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656802","updated":"2019-12-12T01:14:16.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656802.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656802.v1","updated":"2019-12-12T01:14:16.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656820.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656820.v1","updated":"2019-12-12T01:13:00.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656820","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656820","updated":"2019-12-12T01:13:00.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794030","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794030","updated":"2019-12-12T01:12:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656814","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656814","updated":"2019-12-12T01:12:41.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656814.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656814.v1","updated":"2019-12-12T01:12:41.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794026.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794026.v1","updated":"2019-12-12T01:12:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794026","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794026","updated":"2019-12-12T01:12:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794034","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794034","updated":"2019-12-12T01:12:38.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794034.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794034.v1","updated":"2019-12-12T01:12:38.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794034.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794034.v2","updated":"2019-12-12T01:12:38.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656810.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656810.v1","updated":"2019-12-12T01:12:35.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656810","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656810","updated":"2019-12-12T01:12:35.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656808","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656808","updated":"2019-12-12T01:12:31.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656808.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656808.v1","updated":"2019-12-12T01:12:31.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794040","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794040","updated":"2019-12-12T01:12:30.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656806.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656806.v1","updated":"2019-12-12T01:12:27.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656806","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656806","updated":"2019-12-12T01:12:27.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656804","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656804","updated":"2019-12-12T01:12:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656804.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656804.v1","updated":"2019-12-12T01:12:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656798","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656798","updated":"2019-12-12T01:12:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656798.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656798.v1","updated":"2019-12-12T01:12:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656796","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656796","updated":"2019-12-12T01:12:11.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656796.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656796.v1","updated":"2019-12-12T01:12:11.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656794.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656794.v1","updated":"2019-12-12T01:12:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794020.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794020.v1","updated":"2019-12-12T01:12:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794020","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794020","updated":"2019-12-12T01:12:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656794","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656794","updated":"2019-12-12T01:12:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656792.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656792.v1","updated":"2019-12-12T01:12:04.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656790","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656790","updated":"2019-12-12T01:12:04.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656792","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656792","updated":"2019-12-12T01:12:04.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656790.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656790.v1","updated":"2019-12-12T01:12:04.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656788.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656788.v1","updated":"2019-12-12T01:11:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656788","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656788","updated":"2019-12-12T01:11:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656786","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656786","updated":"2019-12-12T01:11:43.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656786.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656786.v1","updated":"2019-12-12T01:11:43.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794018.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794018.v2","updated":"2019-12-12T01:11:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794018","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794018","updated":"2019-12-12T01:11:41.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656784.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656784.v1","updated":"2019-12-12T01:11:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656784","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656784","updated":"2019-12-12T01:11:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656782.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656782.v1","updated":"2019-12-12T01:11:34.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656782","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656782","updated":"2019-12-12T01:11:33.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656780","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656780","updated":"2019-12-12T01:11:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656780.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656780.v1","updated":"2019-12-12T01:11:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656778.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656778.v1","updated":"2019-12-12T01:11:23.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656778","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656778","updated":"2019-12-12T01:11:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656776.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656776.v1","updated":"2019-12-12T01:11:17.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656776","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656776","updated":"2019-12-12T01:11:17.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656774.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656774.v1","updated":"2019-12-12T01:11:12.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656774","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656774","updated":"2019-12-12T01:11:12.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656772","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656772","updated":"2019-12-12T01:11:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656772.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656772.v1","updated":"2019-12-12T01:11:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656770.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656770.v1","updated":"2019-12-12T01:11:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656770","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656770","updated":"2019-12-12T01:11:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656768","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656768","updated":"2019-12-12T01:11:03.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656768.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656768.v1","updated":"2019-12-12T01:11:03.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656766","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656766","updated":"2019-12-12T01:11:02.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656766.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656766.v1","updated":"2019-12-12T01:11:02.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656764.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656764.v1","updated":"2019-12-12T01:10:55.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656764","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656764","updated":"2019-12-12T01:10:55.000Z"},"relationships":{}},{"id":"10.17889/e115907v1","type":"dois","attributes":{"doi":"10.17889/e115907v1","updated":"2019-12-12T00:30:08.000Z"},"relationships":{}},{"id":"10.17889/e115907","type":"dois","attributes":{"doi":"10.17889/e115907","updated":"2019-12-12T00:30:08.000Z"},"relationships":{}},{"id":"10.17889/e108317v4","type":"dois","attributes":{"doi":"10.17889/e108317v4","updated":"2019-12-12T00:30:07.000Z"},"relationships":{}},{"id":"10.17889/e115891v2","type":"dois","attributes":{"doi":"10.17889/e115891v2","updated":"2019-12-12T00:30:06.000Z"},"relationships":{}},{"id":"10.17889/e115052v2-28719","type":"dois","attributes":{"doi":"10.17889/e115052v2-28719","updated":"2019-12-12T00:30:06.000Z"},"relationships":{}},{"id":"10.17889/e115276v4","type":"dois","attributes":{"doi":"10.17889/e115276v4","updated":"2019-12-12T00:30:06.000Z"},"relationships":{}},{"id":"10.17889/e107582v19","type":"dois","attributes":{"doi":"10.17889/e107582v19","updated":"2019-12-12T00:30:05.000Z"},"relationships":{}},{"id":"10.17889/e115891v1","type":"dois","attributes":{"doi":"10.17889/e115891v1","updated":"2019-12-12T00:30:05.000Z"},"relationships":{}},{"id":"10.17889/e115276","type":"dois","attributes":{"doi":"10.17889/e115276","updated":"2019-12-12T00:30:04.000Z"},"relationships":{}},{"id":"10.17889/e115276v3","type":"dois","attributes":{"doi":"10.17889/e115276v3","updated":"2019-12-12T00:30:04.000Z"},"relationships":{}},{"id":"10.17889/e107582v18","type":"dois","attributes":{"doi":"10.17889/e107582v18","updated":"2019-12-12T00:30:04.000Z"},"relationships":{}},{"id":"10.17889/e108317v3","type":"dois","attributes":{"doi":"10.17889/e108317v3","updated":"2019-12-12T00:30:03.000Z"},"relationships":{}},{"id":"10.17889/e115052v1","type":"dois","attributes":{"doi":"10.17889/e115052v1","updated":"2019-12-12T00:30:02.000Z"},"relationships":{}},{"id":"10.17889/e100852v3","type":"dois","attributes":{"doi":"10.17889/e100852v3","updated":"2019-12-12T00:30:01.000Z"},"relationships":{}},{"id":"10.17889/e107582","type":"dois","attributes":{"doi":"10.17889/e107582","updated":"2019-12-12T00:30:00.000Z"},"relationships":{}},{"id":"10.17889/e100852","type":"dois","attributes":{"doi":"10.17889/e100852","updated":"2019-12-12T00:30:00.000Z"},"relationships":{}},{"id":"10.23718/pdbp/19677","type":"dois","attributes":{"doi":"10.23718/pdbp/19677","updated":"2019-12-12T00:17:22.000Z"},"relationships":{}},{"id":"10.23718/pdbp/19678","type":"dois","attributes":{"doi":"10.23718/pdbp/19678","updated":"2019-12-12T00:17:22.000Z"},"relationships":{}},{"id":"10.0260/co.2433788.v1","type":"dois","attributes":{"doi":"10.0260/co.2433788.v1","updated":"2019-12-12T00:01:00.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df1794216163","type":"dois","attributes":{"doi":"10.70131/test_doi_5df1794216163","updated":"2019-12-11T23:18:29.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df17939dba6b","type":"dois","attributes":{"doi":"10.70131/test_doi_5df17939dba6b","updated":"2019-12-11T23:18:24.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df1780957357","type":"dois","attributes":{"doi":"10.70131/test_doi_5df1780957357","updated":"2019-12-11T23:13:16.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df17802a4376","type":"dois","attributes":{"doi":"10.70131/test_doi_5df17802a4376","updated":"2019-12-11T23:13:09.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177fd8ce0d","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177fd8ce0d","updated":"2019-12-11T23:13:04.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177f882f66","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177f882f66","updated":"2019-12-11T23:12:59.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177f374b52","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177f374b52","updated":"2019-12-11T23:12:54.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177ee5c490","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177ee5c490","updated":"2019-12-11T23:12:49.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177e94cfe3","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177e94cfe3","updated":"2019-12-11T23:12:43.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177e431af4","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177e431af4","updated":"2019-12-11T23:12:38.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177df0d218","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177df0d218","updated":"2019-12-11T23:12:33.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177a6b45dd","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177a6b45dd","updated":"2019-12-11T23:11:37.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177a341251","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177a341251","updated":"2019-12-11T23:11:34.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177a05ca68","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177a05ca68","updated":"2019-12-11T23:11:31.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df1779274aec","type":"dois","attributes":{"doi":"10.70131/test_doi_5df1779274aec","updated":"2019-12-11T23:11:19.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df1778fa29e0","type":"dois","attributes":{"doi":"10.70131/test_doi_5df1778fa29e0","updated":"2019-12-11T23:11:14.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df1778c78893","type":"dois","attributes":{"doi":"10.70131/test_doi_5df1778c78893","updated":"2019-12-11T23:11:11.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177898021d","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177898021d","updated":"2019-12-11T23:11:08.000Z"},"relationships":{}},{"id":"10.0353/development:abefb1a3-6ae9-4da6-a9a8-d7f66f98710e:20190723:1","type":"dois","attributes":{"doi":"10.0353/development:abefb1a3-6ae9-4da6-a9a8-d7f66f98710e:20190723:1","updated":"2019-12-11T23:10:58.000Z"},"relationships":{}},{"id":"10.70122/fk2/xvkpco","type":"dois","attributes":{"doi":"10.70122/fk2/xvkpco","updated":"2019-12-11T23:06:49.000Z"},"relationships":{}},{"id":"10.7966/9h05-8h60","type":"dois","attributes":{"doi":"10.7966/9h05-8h60","updated":"2019-12-11T22:44:00.000Z"},"relationships":{}},{"id":"10.70122/fk2/wmrchl","type":"dois","attributes":{"doi":"10.70122/fk2/wmrchl","updated":"2019-12-11T22:32:39.000Z"},"relationships":{}},{"id":"10.70122/fk2/c7tm9m","type":"dois","attributes":{"doi":"10.70122/fk2/c7tm9m","updated":"2019-12-11T22:25:52.000Z"},"relationships":{}},{"id":"10.70122/fk2/npsc0m","type":"dois","attributes":{"doi":"10.70122/fk2/npsc0m","updated":"2019-12-11T22:18:36.000Z"},"relationships":{}},{"id":"10.70122/fk2/jtwbef","type":"dois","attributes":{"doi":"10.70122/fk2/jtwbef","updated":"2019-12-11T22:18:01.000Z"},"relationships":{}},{"id":"10.70122/fk2/nqm0ls","type":"dois","attributes":{"doi":"10.70122/fk2/nqm0ls","updated":"2019-12-11T22:17:11.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656436.v3","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656436.v3","updated":"2019-12-11T22:01:16.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656436.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656436.v2","updated":"2019-12-11T22:01:16.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656436","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656436","updated":"2019-12-11T22:01:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656436.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656436.v1","updated":"2019-12-11T22:00:33.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656434.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656434.v2","updated":"2019-12-11T21:57:44.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656434","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656434","updated":"2019-12-11T21:57:44.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656434.v3","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656434.v3","updated":"2019-12-11T21:57:44.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656434.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656434.v1","updated":"2019-12-11T21:57:10.000Z"},"relationships":{}},{"id":"10.23706/s9uow052","type":"dois","attributes":{"doi":"10.23706/s9uow052","updated":"2019-12-11T20:52:59.000Z"},"relationships":{}},{"id":"10.33587/vjkf-0a54","type":"dois","attributes":{"doi":"10.33587/vjkf-0a54","updated":"2019-12-11T20:38:16.000Z"},"relationships":{}},{"id":"10.33587/fz82-py58","type":"dois","attributes":{"doi":"10.33587/fz82-py58","updated":"2019-12-11T20:38:16.000Z"},"relationships":{}},{"id":"10.1234/shwbfypddn.1","type":"dois","attributes":{"doi":"10.1234/shwbfypddn.1","updated":"2019-12-11T20:31:31.000Z"},"relationships":{}},{"id":"10.0133/47580","type":"dois","attributes":{"doi":"10.0133/47580","updated":"2019-12-11T20:31:30.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6637971","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6637971","updated":"2019-12-11T20:31:30.000Z"},"relationships":{}},{"id":"10.33564/fk2/cfrf6w/rvbqoz","type":"dois","attributes":{"doi":"10.33564/fk2/cfrf6w/rvbqoz","updated":"2019-12-11T20:31:30.000Z"},"relationships":{}},{"id":"10.24335/l21321","type":"dois","attributes":{"doi":"10.24335/l21321","updated":"2019-12-11T20:31:29.000Z"},"relationships":{}},{"id":"10.33593/morressier.56d5ba27d462b80296c95f91","type":"dois","attributes":{"doi":"10.33593/morressier.56d5ba27d462b80296c95f91","updated":"2019-12-11T20:31:29.000Z"},"relationships":{}},{"id":"10.5282/ubm/digi.1860","type":"dois","attributes":{"doi":"10.5282/ubm/digi.1860","updated":"2019-12-11T20:31:29.000Z"},"relationships":{}},{"id":"10.21401/c559b4c8","type":"dois","attributes":{"doi":"10.21401/c559b4c8","updated":"2019-12-11T20:31:28.000Z"},"relationships":{}},{"id":"10.5290/1200156","type":"dois","attributes":{"doi":"10.5290/1200156","updated":"2019-12-11T20:31:28.000Z"},"relationships":{}},{"id":"10.33522/h344-llhv","type":"dois","attributes":{"doi":"10.33522/h344-llhv","updated":"2019-12-11T20:31:28.000Z"},"relationships":{}},{"id":"10.5286/isis.e/isis.e.rb1720482","type":"dois","attributes":{"doi":"10.5286/isis.e/isis.e.rb1720482","updated":"2019-12-11T20:31:28.000Z"},"relationships":{}},{"id":"10.33563/fk2/4zopy4","type":"dois","attributes":{"doi":"10.33563/fk2/4zopy4","updated":"2019-12-11T20:20:29.000Z"},"relationships":{}},{"id":"10.33563/fk2/4zopy4/esfsri","type":"dois","attributes":{"doi":"10.33563/fk2/4zopy4/esfsri","updated":"2019-12-11T20:20:28.000Z"},"relationships":{}},{"id":"10.33563/fk2/4zopy4/t6i6hz","type":"dois","attributes":{"doi":"10.33563/fk2/4zopy4/t6i6hz","updated":"2019-12-11T20:20:28.000Z"},"relationships":{}},{"id":"10.33563/fk2/4zopy4/kttdny","type":"dois","attributes":{"doi":"10.33563/fk2/4zopy4/kttdny","updated":"2019-12-11T20:20:27.000Z"},"relationships":{}},{"id":"10.33587/2j2j-pj50","type":"dois","attributes":{"doi":"10.33587/2j2j-pj50","updated":"2019-12-11T20:02:43.000Z"},"relationships":{}},{"id":"10.21367/datacite_go.0047","type":"dois","attributes":{"doi":"10.21367/datacite_go.0047","updated":"2019-12-11T20:02:41.000Z"},"relationships":{}},{"id":"10.15146/5ysn-h463","type":"dois","attributes":{"doi":"10.15146/5ysn-h463","updated":"2019-12-11T20:02:18.000Z"},"relationships":{}},{"id":"10.23706/s9z9xi83","type":"dois","attributes":{"doi":"10.23706/s9z9xi83","updated":"2019-12-11T20:01:59.000Z"},"relationships":{}},{"id":"10.21433/67th-2794","type":"dois","attributes":{"doi":"10.21433/67th-2794","updated":"2019-12-11T20:01:44.000Z"},"relationships":{}},{"id":"10.17889/e107957v4-10617","type":"dois","attributes":{"doi":"10.17889/e107957v4-10617","updated":"2019-12-11T20:01:44.000Z"},"relationships":{}},{"id":"10.70122/fk2/7fccwx/gb4clq","type":"dois","attributes":{"doi":"10.70122/fk2/7fccwx/gb4clq","updated":"2019-12-11T20:01:43.000Z"},"relationships":{}},{"id":"10.15496/publikation-22889","type":"dois","attributes":{"doi":"10.15496/publikation-22889","updated":"2019-12-11T20:01:43.000Z"},"relationships":{}},{"id":"10.70114/idbdev-6994051_v1","type":"dois","attributes":{"doi":"10.70114/idbdev-6994051_v1","updated":"2019-12-11T20:01:42.000Z"},"relationships":{}},{"id":"10.33546/03ye-n387","type":"dois","attributes":{"doi":"10.33546/03ye-n387","updated":"2019-12-11T20:01:42.000Z"},"relationships":{}},{"id":"10.70112/ricgxh","type":"dois","attributes":{"doi":"10.70112/ricgxh","updated":"2019-12-11T20:01:41.000Z"},"relationships":{}},{"id":"10.15488/123","type":"dois","attributes":{"doi":"10.15488/123","updated":"2019-12-11T20:01:41.000Z"},"relationships":{}},{"id":"10.21977/k98c-z024","type":"dois","attributes":{"doi":"10.21977/k98c-z024","updated":"2019-12-11T20:01:40.000Z"},"relationships":{}},{"id":"10.33573/fk2/xoyl89/ln8u7b","type":"dois","attributes":{"doi":"10.33573/fk2/xoyl89/ln8u7b","updated":"2019-12-11T20:01:40.000Z"},"relationships":{}},{"id":"10.33535/test_doi_5db3e501ce33e","type":"dois","attributes":{"doi":"10.33535/test_doi_5db3e501ce33e","updated":"2019-12-11T20:01:39.000Z"},"relationships":{}},{"id":"10.0311/fk2/bd13eb24d1a9fb643da1990b1da41352","type":"dois","attributes":{"doi":"10.0311/fk2/bd13eb24d1a9fb643da1990b1da41352","updated":"2019-12-11T20:01:38.000Z"},"relationships":{}},{"id":"10.70118/00001278","type":"dois","attributes":{"doi":"10.70118/00001278","updated":"2019-12-11T20:01:38.000Z"},"relationships":{}},{"id":"10.33516/jzywzmwm","type":"dois","attributes":{"doi":"10.33516/jzywzmwm","updated":"2019-12-11T20:01:38.000Z"},"relationships":{}},{"id":"10.00012/uu01-1x572a","type":"dois","attributes":{"doi":"10.00012/uu01-1x572a","updated":"2019-12-11T20:01:38.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d36a18b4d440","type":"dois","attributes":{"doi":"10.70131/test_doi_5d36a18b4d440","updated":"2019-12-11T20:01:37.000Z"},"relationships":{}},{"id":"10.4124/fairsharing.hknlst","type":"dois","attributes":{"doi":"10.4124/fairsharing.hknlst","updated":"2019-12-11T20:01:37.000Z"},"relationships":{}},{"id":"10.23655/f15z-k675","type":"dois","attributes":{"doi":"10.23655/f15z-k675","updated":"2019-12-11T20:01:36.000Z"},"relationships":{}},{"id":"10.0350/heal.auth.ir.302169","type":"dois","attributes":{"doi":"10.0350/heal.auth.ir.302169","updated":"2019-12-11T20:01:36.000Z"},"relationships":{}},{"id":"10.18749/dodis-38378","type":"dois","attributes":{"doi":"10.18749/dodis-38378","updated":"2019-12-11T20:01:36.000Z"},"relationships":{}},{"id":"10.21945/surf-trng.578c6039-7dcd340d","type":"dois","attributes":{"doi":"10.21945/surf-trng.578c6039-7dcd340d","updated":"2019-12-11T20:01:35.000Z"},"relationships":{}},{"id":"10.0859/intervals.jh346c","type":"dois","attributes":{"doi":"10.0859/intervals.jh346c","updated":"2019-12-11T20:01:35.000Z"},"relationships":{}},{"id":"10.14454/1x4x-9056","type":"dois","attributes":{"doi":"10.14454/1x4x-9056","updated":"2019-12-11T20:01:35.000Z"},"relationships":{}},{"id":"10.80056/06070056","type":"dois","attributes":{"doi":"10.80056/06070056","updated":"2019-12-11T20:01:35.000Z"},"relationships":{}},{"id":"10.33563/fk2/cmhz82","type":"dois","attributes":{"doi":"10.33563/fk2/cmhz82","updated":"2019-12-11T20:01:34.000Z"},"relationships":{}},{"id":"10.24399/sr100","type":"dois","attributes":{"doi":"10.24399/sr100","updated":"2019-12-11T20:01:34.000Z"},"relationships":{}},{"id":"10.23705/d92h3w9d","type":"dois","attributes":{"doi":"10.23705/d92h3w9d","updated":"2019-12-11T20:01:34.000Z"},"relationships":{}},{"id":"10.7272/gfp7-wq34","type":"dois","attributes":{"doi":"10.7272/gfp7-wq34","updated":"2019-12-11T20:01:34.000Z"},"relationships":{}},{"id":"10.21373/1559917260944","type":"dois","attributes":{"doi":"10.21373/1559917260944","updated":"2019-12-11T20:01:33.000Z"},"relationships":{}},{"id":"10.5162/sensoren2019/5.4.4","type":"dois","attributes":{"doi":"10.5162/sensoren2019/5.4.4","updated":"2019-12-11T20:01:33.000Z"},"relationships":{}},{"id":"10.33515/dspace-1","type":"dois","attributes":{"doi":"10.33515/dspace-1","updated":"2019-12-11T20:01:33.000Z"},"relationships":{}},{"id":"10.70125/fk2/emjdes","type":"dois","attributes":{"doi":"10.70125/fk2/emjdes","updated":"2019-12-11T20:01:32.000Z"},"relationships":{}},{"id":"10.5255/ukda-sn-824-1","type":"dois","attributes":{"doi":"10.5255/ukda-sn-824-1","updated":"2019-12-11T20:01:32.000Z"},"relationships":{}},{"id":"10.33572/fk2/x37kjb/q80q83","type":"dois","attributes":{"doi":"10.33572/fk2/x37kjb/q80q83","updated":"2019-12-11T20:01:32.000Z"},"relationships":{}},{"id":"10.17169/refubium-249","type":"dois","attributes":{"doi":"10.17169/refubium-249","updated":"2019-12-11T20:01:31.000Z"},"relationships":{}},{"id":"10.21993/dspace-devel321","type":"dois","attributes":{"doi":"10.21993/dspace-devel321","updated":"2019-12-11T20:01:31.000Z"},"relationships":{}},{"id":"10.0180/oparadev-34","type":"dois","attributes":{"doi":"10.0180/oparadev-34","updated":"2019-12-11T20:01:31.000Z"},"relationships":{}},{"id":"10.23676/3rpf-at23","type":"dois","attributes":{"doi":"10.23676/3rpf-at23","updated":"2019-12-11T20:01:31.000Z"},"relationships":{}},{"id":"10.21383/akbmdy43eu","type":"dois","attributes":{"doi":"10.21383/akbmdy43eu","updated":"2019-12-11T20:01:30.000Z"},"relationships":{}},{"id":"10.24418/gyey-p616","type":"dois","attributes":{"doi":"10.24418/gyey-p616","updated":"2019-12-11T20:01:30.000Z"},"relationships":{}},{"id":"10.21389/xvsq-c914","type":"dois","attributes":{"doi":"10.21389/xvsq-c914","updated":"2019-12-11T20:01:30.000Z"},"relationships":{}},{"id":"10.23675/ccdc.csd.44","type":"dois","attributes":{"doi":"10.23675/ccdc.csd.44","updated":"2019-12-11T20:01:30.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6dc3259fca8","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6dc3259fca8","updated":"2019-12-11T20:01:29.000Z"},"relationships":{}},{"id":"10.21397/olve-lnhe","type":"dois","attributes":{"doi":"10.21397/olve-lnhe","updated":"2019-12-11T20:01:29.000Z"},"relationships":{}},{"id":"10.17026/test-rteo-zmf-2kek","type":"dois","attributes":{"doi":"10.17026/test-rteo-zmf-2kek","updated":"2019-12-11T20:01:29.000Z"},"relationships":{}},{"id":"10.33591/nioz/4sdti3","type":"dois","attributes":{"doi":"10.33591/nioz/4sdti3","updated":"2019-12-11T20:01:29.000Z"},"relationships":{}},{"id":"10.0174/hkce-ck3d","type":"dois","attributes":{"doi":"10.0174/hkce-ck3d","updated":"2019-12-11T20:01:28.000Z"},"relationships":{}},{"id":"10.22007/dtu:2971","type":"dois","attributes":{"doi":"10.22007/dtu:2971","updated":"2019-12-11T20:01:28.000Z"},"relationships":{}},{"id":"10.23721/100/17500","type":"dois","attributes":{"doi":"10.23721/100/17500","updated":"2019-12-11T20:01:28.000Z"},"relationships":{}},{"id":"10.0313/dgs.meinedgs-1.0-video-1244796","type":"dois","attributes":{"doi":"10.0313/dgs.meinedgs-1.0-video-1244796","updated":"2019-12-11T20:01:27.000Z"},"relationships":{}},{"id":"10.33631/rds.23204","type":"dois","attributes":{"doi":"10.33631/rds.23204","updated":"2019-12-11T20:01:27.000Z"},"relationships":{}},{"id":"10.20375/0000-001a-3341-1","type":"dois","attributes":{"doi":"10.20375/0000-001a-3341-1","updated":"2019-12-11T20:01:27.000Z"},"relationships":{}},{"id":"10.70117/vats-5s80","type":"dois","attributes":{"doi":"10.70117/vats-5s80","updated":"2019-12-11T20:01:26.000Z"},"relationships":{}},{"id":"10.11578/dc.20190924.5","type":"dois","attributes":{"doi":"10.11578/dc.20190924.5","updated":"2019-12-11T20:01:26.000Z"},"relationships":{}},{"id":"10.15140/83ak-tn39","type":"dois","attributes":{"doi":"10.15140/83ak-tn39","updated":"2019-12-11T20:01:26.000Z"},"relationships":{}},{"id":"10.21237/m435-hk40","type":"dois","attributes":{"doi":"10.21237/m435-hk40","updated":"2019-12-11T20:01:26.000Z"},"relationships":{}},{"id":"10.21985/n2-re7n-h087","type":"dois","attributes":{"doi":"10.21985/n2-re7n-h087","updated":"2019-12-11T20:01:25.000Z"},"relationships":{}},{"id":"10.70018/tzb3-7878","type":"dois","attributes":{"doi":"10.70018/tzb3-7878","updated":"2019-12-11T20:01:25.000Z"},"relationships":{}},{"id":"10.25362/lazar.23e0e4a8-3990-40ee-8b34-a5b6ab2d1d0f.0","type":"dois","attributes":{"doi":"10.25362/lazar.23e0e4a8-3990-40ee-8b34-a5b6ab2d1d0f.0","updated":"2019-12-11T20:01:24.000Z"},"relationships":{}},{"id":"10.24404/fk2.ucdlib_260474","type":"dois","attributes":{"doi":"10.24404/fk2.ucdlib_260474","updated":"2019-12-11T20:01:24.000Z"},"relationships":{}},{"id":"10.20408/js3a-h061","type":"dois","attributes":{"doi":"10.20408/js3a-h061","updated":"2019-12-11T20:01:24.000Z"},"relationships":{}},{"id":"10.0341/nor00581","type":"dois","attributes":{"doi":"10.0341/nor00581","updated":"2019-12-11T20:01:24.000Z"},"relationships":{}},{"id":"10.7965/s9zw8516","type":"dois","attributes":{"doi":"10.7965/s9zw8516","updated":"2019-12-11T20:01:23.000Z"},"relationships":{}},{"id":"10.33605/49","type":"dois","attributes":{"doi":"10.33605/49","updated":"2019-12-11T20:01:23.000Z"},"relationships":{}},{"id":"10.80001/26vg","type":"dois","attributes":{"doi":"10.80001/26vg","updated":"2019-12-11T20:01:23.000Z"},"relationships":{}},{"id":"10.70138/test_doi_5db8c37f5d1aa","type":"dois","attributes":{"doi":"10.70138/test_doi_5db8c37f5d1aa","updated":"2019-12-11T20:01:23.000Z"},"relationships":{}},{"id":"10.21395/m32228","type":"dois","attributes":{"doi":"10.21395/m32228","updated":"2019-12-11T20:01:22.000Z"},"relationships":{}},{"id":"10.70101/pqx2-2d51","type":"dois","attributes":{"doi":"10.70101/pqx2-2d51","updated":"2019-12-11T20:01:22.000Z"},"relationships":{}},{"id":"10.33577/j4mb-xb10","type":"dois","attributes":{"doi":"10.33577/j4mb-xb10","updated":"2019-12-11T20:01:21.000Z"},"relationships":{}},{"id":"10.7959/dryad.t1g1jwz0","type":"dois","attributes":{"doi":"10.7959/dryad.t1g1jwz0","updated":"2019-12-11T20:01:21.000Z"},"relationships":{}},{"id":"10.15482/usda.adc/17756","type":"dois","attributes":{"doi":"10.15482/usda.adc/17756","updated":"2019-12-11T20:01:21.000Z"},"relationships":{}},{"id":"10.4124/4347797c-91bc-4a47-bfda-08ee2379836d","type":"dois","attributes":{"doi":"10.4124/4347797c-91bc-4a47-bfda-08ee2379836d","updated":"2019-12-11T20:01:21.000Z"},"relationships":{}},{"id":"10.21946/896462366..907-9fadsfadsdfasfasdfasdf","type":"dois","attributes":{"doi":"10.21946/896462366..907-9fadsfadsdfasfasdfasdf","updated":"2019-12-11T20:01:20.000Z"},"relationships":{}},{"id":"10.33581/test2019.2","type":"dois","attributes":{"doi":"10.33581/test2019.2","updated":"2019-12-11T20:01:20.000Z"},"relationships":{}},{"id":"10.21361/dvs/116682","type":"dois","attributes":{"doi":"10.21361/dvs/116682","updated":"2019-12-11T20:01:20.000Z"},"relationships":{}},{"id":"10.20405/fk2/4wjsxk/vlavqf","type":"dois","attributes":{"doi":"10.20405/fk2/4wjsxk/vlavqf","updated":"2019-12-11T20:01:20.000Z"},"relationships":{}},{"id":"10.5445/ir/1000109354","type":"dois","attributes":{"doi":"10.5445/ir/1000109354","updated":"2019-12-11T20:01:19.000Z"},"relationships":{}},{"id":"10.33531/etd/8","type":"dois","attributes":{"doi":"10.33531/etd/8","updated":"2019-12-11T20:01:19.000Z"},"relationships":{}},{"id":"10.23677/q3-8w-ht-3u-oz","type":"dois","attributes":{"doi":"10.23677/q3-8w-ht-3u-oz","updated":"2019-12-11T20:01:19.000Z"},"relationships":{}},{"id":"10.4124/0036314","type":"dois","attributes":{"doi":"10.4124/0036314","updated":"2019-12-11T20:01:19.000Z"},"relationships":{}},{"id":"10.70020/k92b-8r58","type":"dois","attributes":{"doi":"10.70020/k92b-8r58","updated":"2019-12-11T20:01:18.000Z"},"relationships":{}},{"id":"10.21425/qp2v-3w52","type":"dois","attributes":{"doi":"10.21425/qp2v-3w52","updated":"2019-12-11T20:01:18.000Z"},"relationships":{}},{"id":"10.21394/kavt-21a1","type":"dois","attributes":{"doi":"10.21394/kavt-21a1","updated":"2019-12-11T20:01:18.000Z"},"relationships":{}},{"id":"10.33532/k713-p840","type":"dois","attributes":{"doi":"10.33532/k713-p840","updated":"2019-12-11T20:01:18.000Z"},"relationships":{}},{"id":"10.70106/tind.65","type":"dois","attributes":{"doi":"10.70106/tind.65","updated":"2019-12-11T20:01:17.000Z"},"relationships":{}},{"id":"10.15152/geo.485","type":"dois","attributes":{"doi":"10.15152/geo.485","updated":"2019-12-11T20:01:17.000Z"},"relationships":{}},{"id":"10.24397/openneuro.ds001029.v1.0.0","type":"dois","attributes":{"doi":"10.24397/openneuro.ds001029.v1.0.0","updated":"2019-12-11T20:01:17.000Z"},"relationships":{}},{"id":"10.23674/gzx1-9v95/7qjcey/pjop4i","type":"dois","attributes":{"doi":"10.23674/gzx1-9v95/7qjcey/pjop4i","updated":"2019-12-11T20:01:16.000Z"},"relationships":{}},{"id":"10.80000/cqso-y3tt","type":"dois","attributes":{"doi":"10.80000/cqso-y3tt","updated":"2019-12-11T20:01:16.000Z"},"relationships":{}},{"id":"10.23707/b98mwjs5","type":"dois","attributes":{"doi":"10.23707/b98mwjs5","updated":"2019-12-11T20:01:16.000Z"},"relationships":{}},{"id":"10.7961/d96n0g55","type":"dois","attributes":{"doi":"10.7961/d96n0g55","updated":"2019-12-11T20:01:16.000Z"},"relationships":{}},{"id":"10.70113/ordar2-dev-8","type":"dois","attributes":{"doi":"10.70113/ordar2-dev-8","updated":"2019-12-11T20:01:15.000Z"},"relationships":{}},{"id":"10.21337/k4vnmb","type":"dois","attributes":{"doi":"10.21337/k4vnmb","updated":"2019-12-11T20:01:15.000Z"},"relationships":{}},{"id":"10.22008/fk2/luwxhk/nnt5h3","type":"dois","attributes":{"doi":"10.22008/fk2/luwxhk/nnt5h3","updated":"2019-12-11T20:01:15.000Z"},"relationships":{}},{"id":"10.21359/fk2/ewulh1/soydp7","type":"dois","attributes":{"doi":"10.21359/fk2/ewulh1/soydp7","updated":"2019-12-11T20:01:15.000Z"},"relationships":{}},{"id":"10.5074/6640001.v1","type":"dois","attributes":{"doi":"10.5074/6640001.v1","updated":"2019-12-11T20:01:14.000Z"},"relationships":{}},{"id":"10.80063/fk2/kldsjb","type":"dois","attributes":{"doi":"10.80063/fk2/kldsjb","updated":"2019-12-11T20:01:14.000Z"},"relationships":{}},{"id":"10.33606/4","type":"dois","attributes":{"doi":"10.33606/4","updated":"2019-12-11T20:01:14.000Z"},"relationships":{}},{"id":"10.33548/700101","type":"dois","attributes":{"doi":"10.33548/700101","updated":"2019-12-11T20:01:13.000Z"},"relationships":{}},{"id":"10.33580/test_doi_5d3bfdf017857","type":"dois","attributes":{"doi":"10.33580/test_doi_5d3bfdf017857","updated":"2019-12-11T20:01:13.000Z"},"relationships":{}},{"id":"10.24410/kaust-96hmn","type":"dois","attributes":{"doi":"10.24410/kaust-96hmn","updated":"2019-12-11T20:01:13.000Z"},"relationships":{}},{"id":"10.23685/c/13-dataset","type":"dois","attributes":{"doi":"10.23685/c/13-dataset","updated":"2019-12-11T20:01:13.000Z"},"relationships":{}},{"id":"10.7968/20191101.1/3","type":"dois","attributes":{"doi":"10.7968/20191101.1/3","updated":"2019-12-11T20:01:12.000Z"},"relationships":{}},{"id":"10.23718/fitbir/17851","type":"dois","attributes":{"doi":"10.23718/fitbir/17851","updated":"2019-12-11T20:01:12.000Z"},"relationships":{}},{"id":"10.21366/ghent-49hreu","type":"dois","attributes":{"doi":"10.21366/ghent-49hreu","updated":"2019-12-11T20:01:12.000Z"},"relationships":{}},{"id":"10.22029/mediarep-test/1364","type":"dois","attributes":{"doi":"10.22029/mediarep-test/1364","updated":"2019-12-11T20:01:12.000Z"},"relationships":{}},{"id":"10.0307/ir-3116","type":"dois","attributes":{"doi":"10.0307/ir-3116","updated":"2019-12-11T20:01:11.000Z"},"relationships":{}},{"id":"10.80037/1bbq-h574","type":"dois","attributes":{"doi":"10.80037/1bbq-h574","updated":"2019-12-11T20:01:11.000Z"},"relationships":{}},{"id":"10.16904/envidat-test.2","type":"dois","attributes":{"doi":"10.16904/envidat-test.2","updated":"2019-12-11T20:01:10.000Z"},"relationships":{}},{"id":"10.23658/fk-mze7-em12","type":"dois","attributes":{"doi":"10.23658/fk-mze7-em12","updated":"2019-12-11T20:01:08.000Z"},"relationships":{}},{"id":"10.33586/9e14707c-6cc1-4782-8876-b5dd1a964d6b","type":"dois","attributes":{"doi":"10.33586/9e14707c-6cc1-4782-8876-b5dd1a964d6b","updated":"2019-12-11T20:01:07.000Z"},"relationships":{}},{"id":"10.18462/iif.sec","type":"dois","attributes":{"doi":"10.18462/iif.sec","updated":"2019-12-11T20:01:07.000Z"},"relationships":{}},{"id":"10.21232/gswxvgoac","type":"dois","attributes":{"doi":"10.21232/gswxvgoac","updated":"2019-12-11T20:01:06.000Z"},"relationships":{}},{"id":"10.15124/york_law_journal/1245","type":"dois","attributes":{"doi":"10.15124/york_law_journal/1245","updated":"2019-12-11T20:01:06.000Z"},"relationships":{}},{"id":"10.33540/f2hg-m826","type":"dois","attributes":{"doi":"10.33540/f2hg-m826","updated":"2019-12-11T20:01:06.000Z"},"relationships":{}},{"id":"10.33578/ubsi/288","type":"dois","attributes":{"doi":"10.33578/ubsi/288","updated":"2019-12-11T20:01:05.000Z"},"relationships":{}},{"id":"10.13139/olcf/1473795","type":"dois","attributes":{"doi":"10.13139/olcf/1473795","updated":"2019-12-11T20:01:05.000Z"},"relationships":{}},{"id":"10.17591/midle.0.6","type":"dois","attributes":{"doi":"10.17591/midle.0.6","updated":"2019-12-11T20:01:05.000Z"},"relationships":{}},{"id":"10.33542/sqxs-h277","type":"dois","attributes":{"doi":"10.33542/sqxs-h277","updated":"2019-12-11T20:01:05.000Z"},"relationships":{}},{"id":"10.7962/d90rnozq","type":"dois","attributes":{"doi":"10.7962/d90rnozq","updated":"2019-12-11T20:01:04.000Z"},"relationships":{}},{"id":"10.18150/fk2/jwslhi","type":"dois","attributes":{"doi":"10.18150/fk2/jwslhi","updated":"2019-12-11T20:01:04.000Z"},"relationships":{}},{"id":"10.70124/fk2/b5pmwj/yptyn2","type":"dois","attributes":{"doi":"10.70124/fk2/b5pmwj/yptyn2","updated":"2019-12-11T20:01:04.000Z"},"relationships":{}},{"id":"10.24342/test_doi_5ceccb7ad737d","type":"dois","attributes":{"doi":"10.24342/test_doi_5ceccb7ad737d","updated":"2019-12-11T20:01:03.000Z"},"relationships":{}},{"id":"10.7970/48430071367c4a8c811096be180653c1","type":"dois","attributes":{"doi":"10.7970/48430071367c4a8c811096be180653c1","updated":"2019-12-11T20:01:03.000Z"},"relationships":{}},{"id":"10.5068/gayw-yb05","type":"dois","attributes":{"doi":"10.5068/gayw-yb05","updated":"2019-12-11T20:01:02.000Z"},"relationships":{}},{"id":"10.11571/rc91-e073","type":"dois","attributes":{"doi":"10.11571/rc91-e073","updated":"2019-12-11T20:01:02.000Z"},"relationships":{}},{"id":"10.33556/dspace-thraki-4","type":"dois","attributes":{"doi":"10.33556/dspace-thraki-4","updated":"2019-12-11T20:01:02.000Z"},"relationships":{}},{"id":"10.80058/67gh-9k10","type":"dois","attributes":{"doi":"10.80058/67gh-9k10","updated":"2019-12-11T20:01:01.000Z"},"relationships":{}},{"id":"10.80022/37p7-xr98","type":"dois","attributes":{"doi":"10.80022/37p7-xr98","updated":"2019-12-11T20:01:00.000Z"},"relationships":{}},{"id":"10.33685/test_doi_5c818d9ba7e55","type":"dois","attributes":{"doi":"10.33685/test_doi_5c818d9ba7e55","updated":"2019-12-11T20:01:00.000Z"},"relationships":{}},{"id":"10.5285/afba710f-dab1-4a63-867b-520177388224","type":"dois","attributes":{"doi":"10.5285/afba710f-dab1-4a63-867b-520177388224","updated":"2019-12-11T20:01:00.000Z"},"relationships":{}},{"id":"10.22024/test/unikent/01.01.67","type":"dois","attributes":{"doi":"10.22024/test/unikent/01.01.67","updated":"2019-12-11T20:01:00.000Z"},"relationships":{}},{"id":"10.33630/5c6b6fb9cb760","type":"dois","attributes":{"doi":"10.33630/5c6b6fb9cb760","updated":"2019-12-11T20:00:59.000Z"},"relationships":{}},{"id":"10.33505/fh4j-c298","type":"dois","attributes":{"doi":"10.33505/fh4j-c298","updated":"2019-12-11T20:00:59.000Z"},"relationships":{}},{"id":"10.33568/test_doi_5db066bf286f0","type":"dois","attributes":{"doi":"10.33568/test_doi_5db066bf286f0","updated":"2019-12-11T20:00:59.000Z"},"relationships":{}},{"id":"10.7963/s9d8oo5q","type":"dois","attributes":{"doi":"10.7963/s9d8oo5q","updated":"2019-12-11T20:00:59.000Z"},"relationships":{}},{"id":"10.33528/fyyq-6e28","type":"dois","attributes":{"doi":"10.33528/fyyq-6e28","updated":"2019-12-11T20:00:58.000Z"},"relationships":{}},{"id":"10.7893/86j2-vk74","type":"dois","attributes":{"doi":"10.7893/86j2-vk74","updated":"2019-12-11T20:00:58.000Z"},"relationships":{}},{"id":"10.70011/test_doi_5d19662638405","type":"dois","attributes":{"doi":"10.70011/test_doi_5d19662638405","updated":"2019-12-11T20:00:58.000Z"},"relationships":{}},{"id":"10.15480/tor.fdm.tuhh.292","type":"dois","attributes":{"doi":"10.15480/tor.fdm.tuhh.292","updated":"2019-12-11T20:00:57.000Z"},"relationships":{}},{"id":"10.70031/wk56-pq48","type":"dois","attributes":{"doi":"10.70031/wk56-pq48","updated":"2019-12-11T20:00:57.000Z"},"relationships":{}},{"id":"10.18465/lcsb-xckeca-ktdoaz","type":"dois","attributes":{"doi":"10.18465/lcsb-xckeca-ktdoaz","updated":"2019-12-11T20:00:57.000Z"},"relationships":{}},{"id":"10.33574/5","type":"dois","attributes":{"doi":"10.33574/5","updated":"2019-12-11T20:00:57.000Z"},"relationships":{}},{"id":"10.21398/opus-402","type":"dois","attributes":{"doi":"10.21398/opus-402","updated":"2019-12-11T20:00:56.000Z"},"relationships":{}},{"id":"10.33508/ucrrtest-1","type":"dois","attributes":{"doi":"10.33508/ucrrtest-1","updated":"2019-12-11T20:00:56.000Z"},"relationships":{}},{"id":"10.70111/cas.v1i0","type":"dois","attributes":{"doi":"10.70111/cas.v1i0","updated":"2019-12-11T20:00:56.000Z"},"relationships":{}},{"id":"10.70030/test_doi_5d650c3ca0464","type":"dois","attributes":{"doi":"10.70030/test_doi_5d650c3ca0464","updated":"2019-12-11T20:00:56.000Z"},"relationships":{}},{"id":"10.33681/test_doi_5c905b68983d9","type":"dois","attributes":{"doi":"10.33681/test_doi_5c905b68983d9","updated":"2019-12-11T20:00:55.000Z"},"relationships":{}},{"id":"10.7964/b9l79htj","type":"dois","attributes":{"doi":"10.7964/b9l79htj","updated":"2019-12-11T20:00:55.000Z"},"relationships":{}},{"id":"10.5439/1379421","type":"dois","attributes":{"doi":"10.5439/1379421","updated":"2019-12-11T20:00:55.000Z"},"relationships":{}},{"id":"10.21410/fk2/gimnjc","type":"dois","attributes":{"doi":"10.21410/fk2/gimnjc","updated":"2019-12-11T20:00:54.000Z"},"relationships":{}},{"id":"10.24427/8gt9-nk59","type":"dois","attributes":{"doi":"10.24427/8gt9-nk59","updated":"2019-12-11T20:00:54.000Z"},"relationships":{}},{"id":"10.70036/2g6e-wv56","type":"dois","attributes":{"doi":"10.70036/2g6e-wv56","updated":"2019-12-11T20:00:54.000Z"},"relationships":{}},{"id":"10.24373/j282-2tv5","type":"dois","attributes":{"doi":"10.24373/j282-2tv5","updated":"2019-12-11T20:00:54.000Z"},"relationships":{}},{"id":"10.23650/ghent-l88hbz","type":"dois","attributes":{"doi":"10.23650/ghent-l88hbz","updated":"2019-12-11T20:00:53.000Z"},"relationships":{}},{"id":"10.70015/opus-3","type":"dois","attributes":{"doi":"10.70015/opus-3","updated":"2019-12-11T20:00:53.000Z"},"relationships":{}},{"id":"10.80091/0011","type":"dois","attributes":{"doi":"10.80091/0011","updated":"2019-12-11T20:00:53.000Z"},"relationships":{}},{"id":"10.23693/discussdata:uu-id-123-456","type":"dois","attributes":{"doi":"10.23693/discussdata:uu-id-123-456","updated":"2019-12-11T20:00:52.000Z"},"relationships":{}},{"id":"10.23719/17153","type":"dois","attributes":{"doi":"10.23719/17153","updated":"2019-12-11T20:00:52.000Z"},"relationships":{}},{"id":"10.18716/testusb/090219","type":"dois","attributes":{"doi":"10.18716/testusb/090219","updated":"2019-12-11T20:00:52.000Z"},"relationships":{}},{"id":"10.80051/myshoulder/tjqrbs","type":"dois","attributes":{"doi":"10.80051/myshoulder/tjqrbs","updated":"2019-12-11T20:00:52.000Z"},"relationships":{}},{"id":"10.33565/butf9o","type":"dois","attributes":{"doi":"10.33565/butf9o","updated":"2019-12-11T20:00:51.000Z"},"relationships":{}},{"id":"10.21368/test362-u1480g-gra","type":"dois","attributes":{"doi":"10.21368/test362-u1480g-gra","updated":"2019-12-11T20:00:51.000Z"},"relationships":{}},{"id":"10.70144/test_doi_5dddd9f5a69a9","type":"dois","attributes":{"doi":"10.70144/test_doi_5dddd9f5a69a9","updated":"2019-12-11T20:00:51.000Z"},"relationships":{}},{"id":"10.4124/b70dee1f-8cb9-499d-a615-672996392f0b","type":"dois","attributes":{"doi":"10.4124/b70dee1f-8cb9-499d-a615-672996392f0b","updated":"2019-12-11T20:00:51.000Z"},"relationships":{}},{"id":"10.4124/7a5/8wxx1","type":"dois","attributes":{"doi":"10.4124/7a5/8wxx1","updated":"2019-12-11T20:00:51.000Z"},"relationships":{}},{"id":"10.33523/oier6v/cyjxdo","type":"dois","attributes":{"doi":"10.33523/oier6v/cyjxdo","updated":"2019-12-11T20:00:50.000Z"},"relationships":{}},{"id":"10.18725/0722-6691/4092","type":"dois","attributes":{"doi":"10.18725/0722-6691/4092","updated":"2019-12-11T20:00:50.000Z"},"relationships":{}},{"id":"10.15123/pub.21","type":"dois","attributes":{"doi":"10.15123/pub.21","updated":"2019-12-11T20:00:49.000Z"},"relationships":{}},{"id":"10.12685/e6ws-545cdwm2446","type":"dois","attributes":{"doi":"10.12685/e6ws-545cdwm2446","updated":"2019-12-11T20:00:49.000Z"},"relationships":{}},{"id":"10.0337/cds/vizier.71710475","type":"dois","attributes":{"doi":"10.0337/cds/vizier.71710475","updated":"2019-12-11T20:00:48.000Z"},"relationships":{}},{"id":"10.7969/verba-alpina/c69_v3","type":"dois","attributes":{"doi":"10.7969/verba-alpina/c69_v3","updated":"2019-12-11T20:00:48.000Z"},"relationships":{}},{"id":"10.13143/asfera-cfa2019-16673","type":"dois","attributes":{"doi":"10.13143/asfera-cfa2019-16673","updated":"2019-12-11T20:00:48.000Z"},"relationships":{}},{"id":"10.0309/rwstg1k34w","type":"dois","attributes":{"doi":"10.0309/rwstg1k34w","updated":"2019-12-11T20:00:48.000Z"},"relationships":{}},{"id":"10.15125/bath-00708","type":"dois","attributes":{"doi":"10.15125/bath-00708","updated":"2019-12-11T20:00:47.000Z"},"relationships":{}},{"id":"10.23688/1086-0g98","type":"dois","attributes":{"doi":"10.23688/1086-0g98","updated":"2019-12-11T20:00:47.000Z"},"relationships":{}},{"id":"10.24337/8661412d-ab8a-4bac-9ab4-a1820e3e2092","type":"dois","attributes":{"doi":"10.24337/8661412d-ab8a-4bac-9ab4-a1820e3e2092","updated":"2019-12-11T20:00:47.000Z"},"relationships":{}},{"id":"10.24366/test_doi_5d5649793b5bf","type":"dois","attributes":{"doi":"10.24366/test_doi_5d5649793b5bf","updated":"2019-12-11T20:00:46.000Z"},"relationships":{}},{"id":"10.70003/bf1v-7819","type":"dois","attributes":{"doi":"10.70003/bf1v-7819","updated":"2019-12-11T20:00:46.000Z"},"relationships":{}},{"id":"10.24403/test_doi_5cb001b535af2","type":"dois","attributes":{"doi":"10.24403/test_doi_5cb001b535af2","updated":"2019-12-11T20:00:46.000Z"},"relationships":{}},{"id":"10.17192/mardata-test/13","type":"dois","attributes":{"doi":"10.17192/mardata-test/13","updated":"2019-12-11T20:00:46.000Z"},"relationships":{}},{"id":"10.33679/test_doi_5c906bfdadf19","type":"dois","attributes":{"doi":"10.33679/test_doi_5c906bfdadf19","updated":"2019-12-11T20:00:45.000Z"},"relationships":{}},{"id":"10.17879/93179674181","type":"dois","attributes":{"doi":"10.17879/93179674181","updated":"2019-12-11T20:00:45.000Z"},"relationships":{}},{"id":"10.0179/abcdef","type":"dois","attributes":{"doi":"10.0179/abcdef","updated":"2019-12-11T20:00:45.000Z"},"relationships":{}},{"id":"10.70005/test_doi_5d02d79420380","type":"dois","attributes":{"doi":"10.70005/test_doi_5d02d79420380","updated":"2019-12-11T20:00:44.000Z"},"relationships":{}},{"id":"10.11588/29279","type":"dois","attributes":{"doi":"10.11588/29279","updated":"2019-12-11T20:00:44.000Z"},"relationships":{}},{"id":"10.70012/fzj-data/2kpsdc","type":"dois","attributes":{"doi":"10.70012/fzj-data/2kpsdc","updated":"2019-12-11T20:00:44.000Z"},"relationships":{}},{"id":"10.33634/13","type":"dois","attributes":{"doi":"10.33634/13","updated":"2019-12-11T20:00:44.000Z"},"relationships":{}},{"id":"10.17889/e100852v2","type":"dois","attributes":{"doi":"10.17889/e100852v2","updated":"2019-12-11T19:58:35.000Z"},"relationships":{}},{"id":"10.24397/openneuro.ds001071.v1.0.0","type":"dois","attributes":{"doi":"10.24397/openneuro.ds001071.v1.0.0","updated":"2019-12-11T19:45:40.000Z"},"relationships":{}},{"id":"10.0311/fk2/2b903cc4448e822eea176b4108fc3986","type":"dois","attributes":{"doi":"10.0311/fk2/2b903cc4448e822eea176b4108fc3986","updated":"2019-12-11T19:41:54.000Z"},"relationships":{}},{"id":"10.20371/researchdatatest.cab.unipd.it.00000303","type":"dois","attributes":{"doi":"10.20371/researchdatatest.cab.unipd.it.00000303","updated":"2019-12-11T19:32:29.000Z"},"relationships":{}},{"id":"10.13144/lineas1000","type":"dois","attributes":{"doi":"10.13144/lineas1000","updated":"2019-12-11T19:32:28.000Z"},"relationships":{}},{"id":"10.7958/dryad.t76hdrd0","type":"dois","attributes":{"doi":"10.7958/dryad.t76hdrd0","updated":"2019-12-11T19:32:28.000Z"},"relationships":{}},{"id":"10.17176/5534be06-4012-4fb0-a03e-e0ff4f6aff0a","type":"dois","attributes":{"doi":"10.17176/5534be06-4012-4fb0-a03e-e0ff4f6aff0a","updated":"2019-12-11T19:32:28.000Z"},"relationships":{}},{"id":"10.70027/gybt-wr66","type":"dois","attributes":{"doi":"10.70027/gybt-wr66","updated":"2019-12-11T19:32:27.000Z"},"relationships":{}},{"id":"10.80048/em0y-k025","type":"dois","attributes":{"doi":"10.80048/em0y-k025","updated":"2019-12-11T19:32:27.000Z"},"relationships":{}},{"id":"10.80016/dvn/qt5cjf","type":"dois","attributes":{"doi":"10.80016/dvn/qt5cjf","updated":"2019-12-11T19:32:27.000Z"},"relationships":{}},{"id":"10.70044/sn/1a_2007","type":"dois","attributes":{"doi":"10.70044/sn/1a_2007","updated":"2019-12-11T19:32:26.000Z"},"relationships":{}},{"id":"10.80099/pub.00001264","type":"dois","attributes":{"doi":"10.80099/pub.00001264","updated":"2019-12-11T19:32:26.000Z"},"relationships":{}},{"id":"10.21949/17246","type":"dois","attributes":{"doi":"10.21949/17246","updated":"2019-12-11T19:32:26.000Z"},"relationships":{}},{"id":"10.33679/test_doi_5c92d321c8822","type":"dois","attributes":{"doi":"10.33679/test_doi_5c92d321c8822","updated":"2019-12-11T19:32:25.000Z"},"relationships":{}},{"id":"10.7947/dhpb-3346","type":"dois","attributes":{"doi":"10.7947/dhpb-3346","updated":"2019-12-11T19:32:25.000Z"},"relationships":{}},{"id":"10.17170/ojs-tjub-63","type":"dois","attributes":{"doi":"10.17170/ojs-tjub-63","updated":"2019-12-11T19:32:24.000Z"},"relationships":{}},{"id":"10.70008/test_doi_5dc1e8d344c34","type":"dois","attributes":{"doi":"10.70008/test_doi_5dc1e8d344c34","updated":"2019-12-11T19:32:24.000Z"},"relationships":{}},{"id":"10.22001/ag.econ.45747","type":"dois","attributes":{"doi":"10.22001/ag.econ.45747","updated":"2019-12-11T19:32:24.000Z"},"relationships":{}},{"id":"10.80025/cnp1010743","type":"dois","attributes":{"doi":"10.80025/cnp1010743","updated":"2019-12-11T19:32:23.000Z"},"relationships":{}},{"id":"10.70014/opus-297","type":"dois","attributes":{"doi":"10.70014/opus-297","updated":"2019-12-11T19:32:23.000Z"},"relationships":{}},{"id":"10.21339/gpr2-4d56","type":"dois","attributes":{"doi":"10.21339/gpr2-4d56","updated":"2019-12-11T19:32:23.000Z"},"relationships":{}},{"id":"10.24378/exe.7","type":"dois","attributes":{"doi":"10.24378/exe.7","updated":"2019-12-11T19:32:23.000Z"},"relationships":{}},{"id":"10.4124/r9k643b116b","type":"dois","attributes":{"doi":"10.4124/r9k643b116b","updated":"2019-12-11T19:32:22.000Z"},"relationships":{}},{"id":"10.5258/soton/1560","type":"dois","attributes":{"doi":"10.5258/soton/1560","updated":"2019-12-11T19:32:22.000Z"},"relationships":{}},{"id":"10.70139/4s96-j174","type":"dois","attributes":{"doi":"10.70139/4s96-j174","updated":"2019-12-11T19:32:21.000Z"},"relationships":{}},{"id":"10.14288/1.0043659","type":"dois","attributes":{"doi":"10.14288/1.0043659","updated":"2019-12-11T19:32:04.000Z"},"relationships":{}},{"id":"10.33632/5","type":"dois","attributes":{"doi":"10.33632/5","updated":"2019-12-11T19:32:03.000Z"},"relationships":{}},{"id":"10.33633/111","type":"dois","attributes":{"doi":"10.33633/111","updated":"2019-12-11T19:32:01.000Z"},"relationships":{}},{"id":"10.33509/wy8n-g458","type":"dois","attributes":{"doi":"10.33509/wy8n-g458","updated":"2019-12-11T19:31:55.000Z"},"relationships":{}},{"id":"10.23651/ghent-t1mx5b","type":"dois","attributes":{"doi":"10.23651/ghent-t1mx5b","updated":"2019-12-11T19:31:54.000Z"},"relationships":{}},{"id":"10.33586/7f7e342e-05c1-4d26-9c84-d1ea1780bee3","type":"dois","attributes":{"doi":"10.33586/7f7e342e-05c1-4d26-9c84-d1ea1780bee3","updated":"2019-12-11T19:31:21.000Z"},"relationships":{}},{"id":"10.11585/demo.5","type":"dois","attributes":{"doi":"10.11585/demo.5","updated":"2019-12-11T19:30:47.000Z"},"relationships":{}},{"id":"10.3933/2y89-4g52","type":"dois","attributes":{"doi":"10.3933/2y89-4g52","updated":"2019-12-11T19:30:44.000Z"},"relationships":{}},{"id":"10.33586/ab34a581-d90d-4116-a014-9ebc514ff441","type":"dois","attributes":{"doi":"10.33586/ab34a581-d90d-4116-a014-9ebc514ff441","updated":"2019-12-11T19:29:48.000Z"},"relationships":{}},{"id":"10.11571/sh3n-yq58","type":"dois","attributes":{"doi":"10.11571/sh3n-yq58","updated":"2019-12-11T19:12:05.000Z"},"relationships":{}},{"id":"10.33586/4ff36c41-aa64-4296-b820-eea6a0e15b02","type":"dois","attributes":{"doi":"10.33586/4ff36c41-aa64-4296-b820-eea6a0e15b02","updated":"2019-12-11T19:11:37.000Z"},"relationships":{}},{"id":"10.24397/openneuro.ds001067.v1.0.0","type":"dois","attributes":{"doi":"10.24397/openneuro.ds001067.v1.0.0","updated":"2019-12-11T19:07:54.000Z"},"relationships":{}},{"id":"10.5438/6brg-2m37","type":"dois","attributes":{"doi":"10.5438/6brg-2m37","updated":"2019-12-11T19:02:46.000Z"},"relationships":{}},{"id":"10.25355/hi-67","type":"dois","attributes":{"doi":"10.25355/hi-67","updated":"2019-12-11T19:02:42.000Z"},"relationships":{}},{"id":"10.15493/a","type":"dois","attributes":{"doi":"10.15493/a","updated":"2019-12-11T19:02:42.000Z"},"relationships":{}},{"id":"10.70102/fk2osf.io/hu3qn","type":"dois","attributes":{"doi":"10.70102/fk2osf.io/hu3qn","updated":"2019-12-11T19:02:41.000Z"},"relationships":{}},{"id":"10.24365/interesting_pub","type":"dois","attributes":{"doi":"10.24365/interesting_pub","updated":"2019-12-11T19:02:40.000Z"},"relationships":{}},{"id":"10.70103/asxk-6k85","type":"dois","attributes":{"doi":"10.70103/asxk-6k85","updated":"2019-12-11T19:02:39.000Z"},"relationships":{}},{"id":"10.25518/1782-2041.1004","type":"dois","attributes":{"doi":"10.25518/1782-2041.1004","updated":"2019-12-11T19:02:39.000Z"},"relationships":{}},{"id":"10.7798/jgi/1374074","type":"dois","attributes":{"doi":"10.7798/jgi/1374074","updated":"2019-12-11T19:02:39.000Z"},"relationships":{}},{"id":"10.23728/b2share.6974b538c4914902a2065e4e369ccba3","type":"dois","attributes":{"doi":"10.23728/b2share.6974b538c4914902a2065e4e369ccba3","updated":"2019-12-11T19:02:39.000Z"},"relationships":{}},{"id":"10.7967/qqdprd","type":"dois","attributes":{"doi":"10.7967/qqdprd","updated":"2019-12-11T19:02:38.000Z"},"relationships":{}},{"id":"10.80028/a22e-dh58","type":"dois","attributes":{"doi":"10.80028/a22e-dh58","updated":"2019-12-11T19:02:38.000Z"},"relationships":{}},{"id":"10.17038/1473649","type":"dois","attributes":{"doi":"10.17038/1473649","updated":"2019-12-11T19:02:37.000Z"},"relationships":{}},{"id":"10.20406/syvh-3y71","type":"dois","attributes":{"doi":"10.20406/syvh-3y71","updated":"2019-12-11T19:02:37.000Z"},"relationships":{}},{"id":"10.33558/abcdef","type":"dois","attributes":{"doi":"10.33558/abcdef","updated":"2019-12-11T19:02:37.000Z"},"relationships":{}},{"id":"10.26039/yvcm-2209","type":"dois","attributes":{"doi":"10.26039/yvcm-2209","updated":"2019-12-11T19:02:36.000Z"},"relationships":{}},{"id":"10.80034/dirisaxyz12092019","type":"dois","attributes":{"doi":"10.80034/dirisaxyz12092019","updated":"2019-12-11T19:02:36.000Z"},"relationships":{}},{"id":"10.33543/nrwa-2462","type":"dois","attributes":{"doi":"10.33543/nrwa-2462","updated":"2019-12-11T19:02:36.000Z"},"relationships":{}},{"id":"10.15154/17165","type":"dois","attributes":{"doi":"10.15154/17165","updated":"2019-12-11T19:02:36.000Z"},"relationships":{}},{"id":"10.33550/wk46-zz76","type":"dois","attributes":{"doi":"10.33550/wk46-zz76","updated":"2019-12-11T19:02:35.000Z"},"relationships":{}},{"id":"10.21399/jx74-cm45","type":"dois","attributes":{"doi":"10.21399/jx74-cm45","updated":"2019-12-11T19:02:35.000Z"},"relationships":{}},{"id":"10.80047/y1kg-dh14","type":"dois","attributes":{"doi":"10.80047/y1kg-dh14","updated":"2019-12-11T19:02:34.000Z"},"relationships":{}},{"id":"10.15156/1xqt-rz35","type":"dois","attributes":{"doi":"10.15156/1xqt-rz35","updated":"2019-12-11T19:02:34.000Z"},"relationships":{}},{"id":"10.25620/iciber.issn.1476-4687","type":"dois","attributes":{"doi":"10.25620/iciber.issn.1476-4687","updated":"2019-12-11T19:02:34.000Z"},"relationships":{}},{"id":"10.13141/foo","type":"dois","attributes":{"doi":"10.13141/foo","updated":"2019-12-11T19:02:33.000Z"},"relationships":{}},{"id":"10.2312/17fs-0s58","type":"dois","attributes":{"doi":"10.2312/17fs-0s58","updated":"2019-12-11T19:02:33.000Z"},"relationships":{}},{"id":"10.80024/w1gn-pfvq-0x0v","type":"dois","attributes":{"doi":"10.80024/w1gn-pfvq-0x0v","updated":"2019-12-11T19:02:33.000Z"},"relationships":{}},{"id":"10.13154/pq5s-ca92","type":"dois","attributes":{"doi":"10.13154/pq5s-ca92","updated":"2019-12-11T19:02:33.000Z"},"relationships":{}},{"id":"10.80023/ds2-t7es-qk98","type":"dois","attributes":{"doi":"10.80023/ds2-t7es-qk98","updated":"2019-12-11T19:02:32.000Z"},"relationships":{}},{"id":"10.5165/hawk-hhg/418","type":"dois","attributes":{"doi":"10.5165/hawk-hhg/418","updated":"2019-12-11T19:02:32.000Z"},"relationships":{}},{"id":"10.70037/opus-65","type":"dois","attributes":{"doi":"10.70037/opus-65","updated":"2019-12-11T19:02:32.000Z"},"relationships":{}},{"id":"10.7954/dbt.1","type":"dois","attributes":{"doi":"10.7954/dbt.1","updated":"2019-12-11T19:02:32.000Z"},"relationships":{}},{"id":"10.33551/mitofit:190001","type":"dois","attributes":{"doi":"10.33551/mitofit:190001","updated":"2019-12-11T19:02:31.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6637021.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6637021.v1","updated":"2019-12-11T19:02:29.000Z"},"relationships":{}},{"id":"10.0322/bldev.app.47","type":"dois","attributes":{"doi":"10.0322/bldev.app.47","updated":"2019-12-11T19:02:28.000Z"},"relationships":{}},{"id":"10.33564/fk2/cfrf6w/ig02ri","type":"dois","attributes":{"doi":"10.33564/fk2/cfrf6w/ig02ri","updated":"2019-12-11T19:02:28.000Z"},"relationships":{}},{"id":"10.21367/cool_conf.0037","type":"dois","attributes":{"doi":"10.21367/cool_conf.0037","updated":"2019-12-11T19:02:27.000Z"},"relationships":{}},{"id":"10.5282/ubm/digi.143","type":"dois","attributes":{"doi":"10.5282/ubm/digi.143","updated":"2019-12-11T19:02:27.000Z"},"relationships":{}},{"id":"10.33587/5ynq-hv36","type":"dois","attributes":{"doi":"10.33587/5ynq-hv36","updated":"2019-12-11T19:02:27.000Z"},"relationships":{}},{"id":"10.24335/l21279","type":"dois","attributes":{"doi":"10.24335/l21279","updated":"2019-12-11T19:02:27.000Z"},"relationships":{}},{"id":"10.15146/t9jn-9q27","type":"dois","attributes":{"doi":"10.15146/t9jn-9q27","updated":"2019-12-11T19:02:26.000Z"},"relationships":{}},{"id":"10.21401/23542694","type":"dois","attributes":{"doi":"10.21401/23542694","updated":"2019-12-11T19:02:26.000Z"},"relationships":{}},{"id":"10.33593/morressier.56d5ba29d462b80296c96448","type":"dois","attributes":{"doi":"10.33593/morressier.56d5ba29d462b80296c96448","updated":"2019-12-11T19:02:26.000Z"},"relationships":{}},{"id":"10.70114/idbdev-2732257_v1","type":"dois","attributes":{"doi":"10.70114/idbdev-2732257_v1","updated":"2019-12-11T19:02:25.000Z"},"relationships":{}},{"id":"10.23706/s9sf4i77","type":"dois","attributes":{"doi":"10.23706/s9sf4i77","updated":"2019-12-11T19:02:25.000Z"},"relationships":{}},{"id":"10.5290/1200146","type":"dois","attributes":{"doi":"10.5290/1200146","updated":"2019-12-11T19:02:25.000Z"},"relationships":{}},{"id":"10.17889/e110377","type":"dois","attributes":{"doi":"10.17889/e110377","updated":"2019-12-11T19:02:24.000Z"},"relationships":{}},{"id":"10.33546/vc7c-ea14","type":"dois","attributes":{"doi":"10.33546/vc7c-ea14","updated":"2019-12-11T19:02:24.000Z"},"relationships":{}},{"id":"10.14278/rodaretest.4","type":"dois","attributes":{"doi":"10.14278/rodaretest.4","updated":"2019-12-11T19:02:24.000Z"},"relationships":{}},{"id":"10.70122/fk2/t2ytti/9gxzcg","type":"dois","attributes":{"doi":"10.70122/fk2/t2ytti/9gxzcg","updated":"2019-12-11T19:02:23.000Z"},"relationships":{}},{"id":"10.21433/m88v-qs57","type":"dois","attributes":{"doi":"10.21433/m88v-qs57","updated":"2019-12-11T19:02:23.000Z"},"relationships":{}},{"id":"10.33563/fk2/9eqir4/uwvpr1","type":"dois","attributes":{"doi":"10.33563/fk2/9eqir4/uwvpr1","updated":"2019-12-11T19:02:22.000Z"},"relationships":{}},{"id":"10.15496/publikation-22848","type":"dois","attributes":{"doi":"10.15496/publikation-22848","updated":"2019-12-11T19:02:22.000Z"},"relationships":{}},{"id":"10.0311/fk2/7378db70903f4d4c115af884e4b9f096","type":"dois","attributes":{"doi":"10.0311/fk2/7378db70903f4d4c115af884e4b9f096","updated":"2019-12-11T19:02:21.000Z"},"relationships":{}},{"id":"10.21373/dl.bsvekz","type":"dois","attributes":{"doi":"10.21373/dl.bsvekz","updated":"2019-12-11T19:02:21.000Z"},"relationships":{}},{"id":"10.23676/wnyj-v171","type":"dois","attributes":{"doi":"10.23676/wnyj-v171","updated":"2019-12-11T19:02:20.000Z"},"relationships":{}},{"id":"10.5162/sensoren2019/p2.4","type":"dois","attributes":{"doi":"10.5162/sensoren2019/p2.4","updated":"2019-12-11T19:02:20.000Z"},"relationships":{}},{"id":"10.70112/sfbvny","type":"dois","attributes":{"doi":"10.70112/sfbvny","updated":"2019-12-11T19:02:19.000Z"},"relationships":{}},{"id":"10.5255/ukda-sn-746-2","type":"dois","attributes":{"doi":"10.5255/ukda-sn-746-2","updated":"2019-12-11T19:02:19.000Z"},"relationships":{}},{"id":"10.21993/dspace-devel583","type":"dois","attributes":{"doi":"10.21993/dspace-devel583","updated":"2019-12-11T19:02:18.000Z"},"relationships":{}},{"id":"10.22007/dtu:2796","type":"dois","attributes":{"doi":"10.22007/dtu:2796","updated":"2019-12-11T19:02:17.000Z"},"relationships":{}},{"id":"10.21985/n2-2s7c-fj92","type":"dois","attributes":{"doi":"10.21985/n2-2s7c-fj92","updated":"2019-12-11T19:02:17.000Z"},"relationships":{}},{"id":"10.21383/ku9vzu9hfy","type":"dois","attributes":{"doi":"10.21383/ku9vzu9hfy","updated":"2019-12-11T19:02:17.000Z"},"relationships":{}},{"id":"10.23655/1b21-kq93","type":"dois","attributes":{"doi":"10.23655/1b21-kq93","updated":"2019-12-11T19:02:16.000Z"},"relationships":{}},{"id":"10.11578/1474171","type":"dois","attributes":{"doi":"10.11578/1474171","updated":"2019-12-11T19:02:16.000Z"},"relationships":{}},{"id":"10.21977/fver-hf34","type":"dois","attributes":{"doi":"10.21977/fver-hf34","updated":"2019-12-11T19:02:16.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d6899fa6d3fb","type":"dois","attributes":{"doi":"10.70131/test_doi_5d6899fa6d3fb","updated":"2019-12-11T19:02:15.000Z"},"relationships":{}},{"id":"10.17026/test-funt-zyn-n3pu","type":"dois","attributes":{"doi":"10.17026/test-funt-zyn-n3pu","updated":"2019-12-11T19:02:15.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d54caf44fc3b","type":"dois","attributes":{"doi":"10.24428/test_doi_5d54caf44fc3b","updated":"2019-12-11T19:02:15.000Z"},"relationships":{}},{"id":"10.33573/fk2/oskhgw/mytdlt","type":"dois","attributes":{"doi":"10.33573/fk2/oskhgw/mytdlt","updated":"2019-12-11T19:02:14.000Z"},"relationships":{}},{"id":"10.21945/surf-trng.578c6039-9cf81d80","type":"dois","attributes":{"doi":"10.21945/surf-trng.578c6039-9cf81d80","updated":"2019-12-11T19:02:14.000Z"},"relationships":{}},{"id":"10.33516/1f5d3qsz","type":"dois","attributes":{"doi":"10.33516/1f5d3qsz","updated":"2019-12-11T19:02:14.000Z"},"relationships":{}},{"id":"10.33535/test_doi_5db00b9842361","type":"dois","attributes":{"doi":"10.33535/test_doi_5db00b9842361","updated":"2019-12-11T19:02:14.000Z"},"relationships":{}},{"id":"10.70002/tpxq-mx56","type":"dois","attributes":{"doi":"10.70002/tpxq-mx56","updated":"2019-12-11T19:02:13.000Z"},"relationships":{}},{"id":"10.23675/ccdc.csd.cc1rz574","type":"dois","attributes":{"doi":"10.23675/ccdc.csd.cc1rz574","updated":"2019-12-11T19:02:13.000Z"},"relationships":{}},{"id":"10.7272/k4dt-ce92","type":"dois","attributes":{"doi":"10.7272/k4dt-ce92","updated":"2019-12-11T19:02:12.000Z"},"relationships":{}},{"id":"10.23721/100/17321","type":"dois","attributes":{"doi":"10.23721/100/17321","updated":"2019-12-11T19:02:12.000Z"},"relationships":{}},{"id":"10.21237/2g7n-8r32","type":"dois","attributes":{"doi":"10.21237/2g7n-8r32","updated":"2019-12-11T19:02:12.000Z"},"relationships":{}},{"id":"10.4124/fairsharing.kyykuh","type":"dois","attributes":{"doi":"10.4124/fairsharing.kyykuh","updated":"2019-12-11T19:02:12.000Z"},"relationships":{}},{"id":"10.23705/d9h1r6kt","type":"dois","attributes":{"doi":"10.23705/d9h1r6kt","updated":"2019-12-11T19:02:11.000Z"},"relationships":{}},{"id":"10.24399/sr575","type":"dois","attributes":{"doi":"10.24399/sr575","updated":"2019-12-11T19:02:11.000Z"},"relationships":{}},{"id":"10.70117/ktsn-9708","type":"dois","attributes":{"doi":"10.70117/ktsn-9708","updated":"2019-12-11T19:02:11.000Z"},"relationships":{}},{"id":"10.33631/rds.26047","type":"dois","attributes":{"doi":"10.33631/rds.26047","updated":"2019-12-11T19:02:11.000Z"},"relationships":{}},{"id":"10.7965/d9qp0tdh","type":"dois","attributes":{"doi":"10.7965/d9qp0tdh","updated":"2019-12-11T19:02:11.000Z"},"relationships":{}},{"id":"10.80056/13030035","type":"dois","attributes":{"doi":"10.80056/13030035","updated":"2019-12-11T19:02:10.000Z"},"relationships":{}},{"id":"10.18749/dodis-9931","type":"dois","attributes":{"doi":"10.18749/dodis-9931","updated":"2019-12-11T19:02:10.000Z"},"relationships":{}},{"id":"10.24418/1t8x-sf06","type":"dois","attributes":{"doi":"10.24418/1t8x-sf06","updated":"2019-12-11T19:02:10.000Z"},"relationships":{}},{"id":"10.70118/00001213","type":"dois","attributes":{"doi":"10.70118/00001213","updated":"2019-12-11T19:02:09.000Z"},"relationships":{}},{"id":"10.25601/4b460418-6cdd-4583-ab81-e9f40747d142","type":"dois","attributes":{"doi":"10.25601/4b460418-6cdd-4583-ab81-e9f40747d142","updated":"2019-12-11T19:02:09.000Z"},"relationships":{}},{"id":"10.70018/1111","type":"dois","attributes":{"doi":"10.70018/1111","updated":"2019-12-11T19:02:09.000Z"},"relationships":{}},{"id":"10.0341/nor00706","type":"dois","attributes":{"doi":"10.0341/nor00706","updated":"2019-12-11T19:02:08.000Z"},"relationships":{}},{"id":"10.0859/intervals.fsoifx.1","type":"dois","attributes":{"doi":"10.0859/intervals.fsoifx.1","updated":"2019-12-11T19:02:08.000Z"},"relationships":{}},{"id":"10.00012/uu01-unlqf7","type":"dois","attributes":{"doi":"10.00012/uu01-unlqf7","updated":"2019-12-11T19:02:08.000Z"},"relationships":{}},{"id":"10.0350/bxmc-jf1ddaraaa","type":"dois","attributes":{"doi":"10.0350/bxmc-jf1ddaraaa","updated":"2019-12-11T19:02:07.000Z"},"relationships":{}},{"id":"10.70138/test_doi_5cafe8a9bce50","type":"dois","attributes":{"doi":"10.70138/test_doi_5cafe8a9bce50","updated":"2019-12-11T19:02:07.000Z"},"relationships":{}},{"id":"10.20408/fr1z-cs60","type":"dois","attributes":{"doi":"10.20408/fr1z-cs60","updated":"2019-12-11T19:02:07.000Z"},"relationships":{}},{"id":"10.33572/fk2/vhlpu5/7beexd","type":"dois","attributes":{"doi":"10.33572/fk2/vhlpu5/7beexd","updated":"2019-12-11T19:02:06.000Z"},"relationships":{}},{"id":"10.80001/vap","type":"dois","attributes":{"doi":"10.80001/vap","updated":"2019-12-11T19:02:06.000Z"},"relationships":{}},{"id":"10.33585/fk2-1vp6-y446","type":"dois","attributes":{"doi":"10.33585/fk2-1vp6-y446","updated":"2019-12-11T19:02:06.000Z"},"relationships":{}},{"id":"10.15482/usda.adc/19542","type":"dois","attributes":{"doi":"10.15482/usda.adc/19542","updated":"2019-12-11T19:02:06.000Z"},"relationships":{}},{"id":"10.70125/fk2/2d3u1r","type":"dois","attributes":{"doi":"10.70125/fk2/2d3u1r","updated":"2019-12-11T19:02:05.000Z"},"relationships":{}},{"id":"10.17169/fudocs_document_000000020321","type":"dois","attributes":{"doi":"10.17169/fudocs_document_000000020321","updated":"2019-12-11T19:02:05.000Z"},"relationships":{}},{"id":"10.33532/z373-8033","type":"dois","attributes":{"doi":"10.33532/z373-8033","updated":"2019-12-11T19:02:04.000Z"},"relationships":{}},{"id":"10.4124/0083351","type":"dois","attributes":{"doi":"10.4124/0083351","updated":"2019-12-11T19:02:03.000Z"},"relationships":{}},{"id":"10.25362/lazar.c325a041-b3d0-4fdf-9a0f-de8549578318.9","type":"dois","attributes":{"doi":"10.25362/lazar.c325a041-b3d0-4fdf-9a0f-de8549578318.9","updated":"2019-12-11T19:02:03.000Z"},"relationships":{}},{"id":"10.0313/dgs.meinedgs-1.0-video-1291638","type":"dois","attributes":{"doi":"10.0313/dgs.meinedgs-1.0-video-1291638","updated":"2019-12-11T19:02:02.000Z"},"relationships":{}},{"id":"10.21389/2c9c-av14","type":"dois","attributes":{"doi":"10.21389/2c9c-av14","updated":"2019-12-11T19:02:02.000Z"},"relationships":{}},{"id":"10.21425/hswv-gt27","type":"dois","attributes":{"doi":"10.21425/hswv-gt27","updated":"2019-12-11T19:02:01.000Z"},"relationships":{}},{"id":"10.15140/5e2n-1d36","type":"dois","attributes":{"doi":"10.15140/5e2n-1d36","updated":"2019-12-11T19:02:01.000Z"},"relationships":{}},{"id":"10.21394/5tmk-0ehb","type":"dois","attributes":{"doi":"10.21394/5tmk-0ehb","updated":"2019-12-11T19:02:01.000Z"},"relationships":{}},{"id":"10.33581/fk2/ctbeho/8ldaiv","type":"dois","attributes":{"doi":"10.33581/fk2/ctbeho/8ldaiv","updated":"2019-12-11T19:02:00.000Z"},"relationships":{}},{"id":"10.70048/mvgr-ra97","type":"dois","attributes":{"doi":"10.70048/mvgr-ra97","updated":"2019-12-11T19:02:00.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00009107","type":"dois","attributes":{"doi":"10.0253/tuprints-00009107","updated":"2019-12-11T19:02:00.000Z"},"relationships":{}},{"id":"10.24404/fk2.ucdlib_261007","type":"dois","attributes":{"doi":"10.24404/fk2.ucdlib_261007","updated":"2019-12-11T19:02:00.000Z"},"relationships":{}},{"id":"10.33591/nioz/7eyirt/cv297x","type":"dois","attributes":{"doi":"10.33591/nioz/7eyirt/cv297x","updated":"2019-12-11T19:01:59.000Z"},"relationships":{}},{"id":"10.17894/fk2/kkebfa/gaepsg","type":"dois","attributes":{"doi":"10.17894/fk2/kkebfa/gaepsg","updated":"2019-12-11T19:01:59.000Z"},"relationships":{}},{"id":"10.70009/test_doi_5d02f8a86693a","type":"dois","attributes":{"doi":"10.70009/test_doi_5d02f8a86693a","updated":"2019-12-11T19:01:59.000Z"},"relationships":{}},{"id":"10.33577/rmwz-zv08","type":"dois","attributes":{"doi":"10.33577/rmwz-zv08","updated":"2019-12-11T19:01:59.000Z"},"relationships":{}},{"id":"10.15770/darus-475/1","type":"dois","attributes":{"doi":"10.15770/darus-475/1","updated":"2019-12-11T19:01:58.000Z"},"relationships":{}},{"id":"10.25560/1271","type":"dois","attributes":{"doi":"10.25560/1271","updated":"2019-12-11T19:01:58.000Z"},"relationships":{}},{"id":"10.21395/m3-800p-9g35","type":"dois","attributes":{"doi":"10.21395/m3-800p-9g35","updated":"2019-12-11T19:01:58.000Z"},"relationships":{}},{"id":"10.4124/rdm-dev.liv.ac.uk/400","type":"dois","attributes":{"doi":"10.4124/rdm-dev.liv.ac.uk/400","updated":"2019-12-11T19:01:58.000Z"},"relationships":{}},{"id":"10.7959/dryad.w0vt4bf0","type":"dois","attributes":{"doi":"10.7959/dryad.w0vt4bf0","updated":"2019-12-11T19:01:57.000Z"},"relationships":{}},{"id":"10.0247/fordatistest/14","type":"dois","attributes":{"doi":"10.0247/fordatistest/14","updated":"2019-12-11T19:01:57.000Z"},"relationships":{}},{"id":"10.33562/fk2/thxdre/pn3lox","type":"dois","attributes":{"doi":"10.33562/fk2/thxdre/pn3lox","updated":"2019-12-11T19:01:57.000Z"},"relationships":{}},{"id":"10.0260/co.5119570.v1","type":"dois","attributes":{"doi":"10.0260/co.5119570.v1","updated":"2019-12-11T19:01:57.000Z"},"relationships":{}},{"id":"10.7949/0028352","type":"dois","attributes":{"doi":"10.7949/0028352","updated":"2019-12-11T19:01:56.000Z"},"relationships":{}},{"id":"10.20405/fk2/fkcwyo","type":"dois","attributes":{"doi":"10.20405/fk2/fkcwyo","updated":"2019-12-11T19:01:56.000Z"},"relationships":{}},{"id":"10.21978/040z-ka37","type":"dois","attributes":{"doi":"10.21978/040z-ka37","updated":"2019-12-11T19:01:56.000Z"},"relationships":{}},{"id":"10.21946/5dbc0221223ba74492ll","type":"dois","attributes":{"doi":"10.21946/5dbc0221223ba74492ll","updated":"2019-12-11T19:01:55.000Z"},"relationships":{}},{"id":"10.33531/etd/28","type":"dois","attributes":{"doi":"10.33531/etd/28","updated":"2019-12-11T19:01:55.000Z"},"relationships":{}},{"id":"10.70106/tind.59","type":"dois","attributes":{"doi":"10.70106/tind.59","updated":"2019-12-11T19:01:55.000Z"},"relationships":{}},{"id":"10.21361/dvs/116677","type":"dois","attributes":{"doi":"10.21361/dvs/116677","updated":"2019-12-11T19:01:55.000Z"},"relationships":{}},{"id":"10.22009/neu2105191","type":"dois","attributes":{"doi":"10.22009/neu2105191","updated":"2019-12-11T19:01:54.000Z"},"relationships":{}},{"id":"10.23733/d9f54qcw","type":"dois","attributes":{"doi":"10.23733/d9f54qcw","updated":"2019-12-11T19:01:54.000Z"},"relationships":{}},{"id":"10.7291/j3j6-yr13","type":"dois","attributes":{"doi":"10.7291/j3j6-yr13","updated":"2019-12-11T19:01:54.000Z"},"relationships":{}},{"id":"10.70146/rwjiwl/pddqsx","type":"dois","attributes":{"doi":"10.70146/rwjiwl/pddqsx","updated":"2019-12-11T19:01:53.000Z"},"relationships":{}},{"id":"10.70121/fk2ornldaac/1302","type":"dois","attributes":{"doi":"10.70121/fk2ornldaac/1302","updated":"2019-12-11T19:01:53.000Z"},"relationships":{}},{"id":"10.80017/jqwqyr","type":"dois","attributes":{"doi":"10.80017/jqwqyr","updated":"2019-12-11T19:01:53.000Z"},"relationships":{}},{"id":"10.70116/26ba-tk12","type":"dois","attributes":{"doi":"10.70116/26ba-tk12","updated":"2019-12-11T19:01:53.000Z"},"relationships":{}},{"id":"10.23707/b94o6m5m","type":"dois","attributes":{"doi":"10.23707/b94o6m5m","updated":"2019-12-11T19:01:52.000Z"},"relationships":{}},{"id":"10.70101/3pmb-b6qb","type":"dois","attributes":{"doi":"10.70101/3pmb-b6qb","updated":"2019-12-11T19:01:52.000Z"},"relationships":{}},{"id":"10.18147/smn.2019/video:360","type":"dois","attributes":{"doi":"10.18147/smn.2019/video:360","updated":"2019-12-11T19:01:52.000Z"},"relationships":{}},{"id":"10.70043/xrba-gn28","type":"dois","attributes":{"doi":"10.70043/xrba-gn28","updated":"2019-12-11T19:01:52.000Z"},"relationships":{}},{"id":"10.23729/1fc91b0f-3bca-48bc-851c-1ddfdb15318e","type":"dois","attributes":{"doi":"10.23729/1fc91b0f-3bca-48bc-851c-1ddfdb15318e","updated":"2019-12-11T19:01:51.000Z"},"relationships":{}},{"id":"10.21337/hsceow","type":"dois","attributes":{"doi":"10.21337/hsceow","updated":"2019-12-11T19:01:51.000Z"},"relationships":{}},{"id":"10.23708/ucf51c","type":"dois","attributes":{"doi":"10.23708/ucf51c","updated":"2019-12-11T19:01:51.000Z"},"relationships":{}},{"id":"10.33536/fk2/yn1wxg","type":"dois","attributes":{"doi":"10.33536/fk2/yn1wxg","updated":"2019-12-11T19:01:50.000Z"},"relationships":{}},{"id":"10.23687/fk2/6boy27/3baipx","type":"dois","attributes":{"doi":"10.23687/fk2/6boy27/3baipx","updated":"2019-12-11T19:01:50.000Z"},"relationships":{}},{"id":"10.23672/zwar.za283","type":"dois","attributes":{"doi":"10.23672/zwar.za283","updated":"2019-12-11T19:01:50.000Z"},"relationships":{}},{"id":"10.70126/f148-fz79","type":"dois","attributes":{"doi":"10.70126/f148-fz79","updated":"2019-12-11T19:01:50.000Z"},"relationships":{}},{"id":"10.5077/fje4-mc53","type":"dois","attributes":{"doi":"10.5077/fje4-mc53","updated":"2019-12-11T19:01:49.000Z"},"relationships":{}},{"id":"10.18711/qpn3rhcn","type":"dois","attributes":{"doi":"10.18711/qpn3rhcn","updated":"2019-12-11T19:01:49.000Z"},"relationships":{}},{"id":"10.24375/16-qqfr","type":"dois","attributes":{"doi":"10.24375/16-qqfr","updated":"2019-12-11T19:01:47.000Z"},"relationships":{}},{"id":"10.5060/pxv6-1s23","type":"dois","attributes":{"doi":"10.5060/pxv6-1s23","updated":"2019-12-11T19:01:46.000Z"},"relationships":{}},{"id":"10.23704/d9jx8sfg","type":"dois","attributes":{"doi":"10.23704/d9jx8sfg","updated":"2019-12-11T19:01:45.000Z"},"relationships":{}},{"id":"10.15152/geo.487","type":"dois","attributes":{"doi":"10.15152/geo.487","updated":"2019-12-11T19:01:44.000Z"},"relationships":{}},{"id":"10.23677/50mn-nij8","type":"dois","attributes":{"doi":"10.23677/50mn-nij8","updated":"2019-12-11T19:01:43.000Z"},"relationships":{}},{"id":"10.70115/dysy-wg83","type":"dois","attributes":{"doi":"10.70115/dysy-wg83","updated":"2019-12-11T19:01:43.000Z"},"relationships":{}},{"id":"10.70109/1153992inistb","type":"dois","attributes":{"doi":"10.70109/1153992inistb","updated":"2019-12-11T19:01:43.000Z"},"relationships":{}},{"id":"10.5525/gla.thesis.74269","type":"dois","attributes":{"doi":"10.5525/gla.thesis.74269","updated":"2019-12-11T19:01:43.000Z"},"relationships":{}},{"id":"10.7961/l9mpw2fm","type":"dois","attributes":{"doi":"10.7961/l9mpw2fm","updated":"2019-12-11T19:01:42.000Z"},"relationships":{}},{"id":"10.24397/openneuro.ds001033.v1.0.0","type":"dois","attributes":{"doi":"10.24397/openneuro.ds001033.v1.0.0","updated":"2019-12-11T19:01:42.000Z"},"relationships":{}},{"id":"10.80000/vunn-on5y","type":"dois","attributes":{"doi":"10.80000/vunn-on5y","updated":"2019-12-11T19:01:42.000Z"},"relationships":{}},{"id":"10.17639/mbjm-v107","type":"dois","attributes":{"doi":"10.17639/mbjm-v107","updated":"2019-12-11T19:01:42.000Z"},"relationships":{}},{"id":"10.21362/sshade","type":"dois","attributes":{"doi":"10.21362/sshade","updated":"2019-12-11T19:01:41.000Z"},"relationships":{}},{"id":"10.5074/6610391.v1","type":"dois","attributes":{"doi":"10.5074/6610391.v1","updated":"2019-12-11T19:01:41.000Z"},"relationships":{}},{"id":"10.33606/192","type":"dois","attributes":{"doi":"10.33606/192","updated":"2019-12-11T19:01:41.000Z"},"relationships":{}},{"id":"10.70113/ordar2-dev-12","type":"dois","attributes":{"doi":"10.70113/ordar2-dev-12","updated":"2019-12-11T19:01:41.000Z"},"relationships":{}},{"id":"10.23674/gzx1-9v95/7qjcey/o2b5rv","type":"dois","attributes":{"doi":"10.23674/gzx1-9v95/7qjcey/o2b5rv","updated":"2019-12-11T19:01:40.000Z"},"relationships":{}},{"id":"10.21359/fk2/ewulh1/fkwuer","type":"dois","attributes":{"doi":"10.21359/fk2/ewulh1/fkwuer","updated":"2019-12-11T19:01:40.000Z"},"relationships":{}},{"id":"10.80062/client-test-fsc1218.2","type":"dois","attributes":{"doi":"10.80062/client-test-fsc1218.2","updated":"2019-12-11T19:01:40.000Z"},"relationships":{}},{"id":"10.22029/dspace/1050","type":"dois","attributes":{"doi":"10.22029/dspace/1050","updated":"2019-12-11T19:01:39.000Z"},"relationships":{}},{"id":"10.33548/1234569","type":"dois","attributes":{"doi":"10.33548/1234569","updated":"2019-12-11T19:01:39.000Z"},"relationships":{}},{"id":"10.24410/kaust-0wgzf","type":"dois","attributes":{"doi":"10.24410/kaust-0wgzf","updated":"2019-12-11T19:01:39.000Z"},"relationships":{}},{"id":"10.33580/test_doi_5d35298aa2841","type":"dois","attributes":{"doi":"10.33580/test_doi_5d35298aa2841","updated":"2019-12-11T19:01:38.000Z"},"relationships":{}},{"id":"10.23685/c/9-dataset","type":"dois","attributes":{"doi":"10.23685/c/9-dataset","updated":"2019-12-11T19:01:38.000Z"},"relationships":{}},{"id":"10.7968/20191101.1/9","type":"dois","attributes":{"doi":"10.7968/20191101.1/9","updated":"2019-12-11T19:01:38.000Z"},"relationships":{}},{"id":"10.23658/fk-6x4v-wm78","type":"dois","attributes":{"doi":"10.23658/fk-6x4v-wm78","updated":"2019-12-11T19:01:38.000Z"},"relationships":{}},{"id":"10.0307/ir-3115","type":"dois","attributes":{"doi":"10.0307/ir-3115","updated":"2019-12-11T19:01:37.000Z"},"relationships":{}},{"id":"10.70124/fk2/ztifvh/ctx8rm","type":"dois","attributes":{"doi":"10.70124/fk2/ztifvh/ctx8rm","updated":"2019-12-11T19:01:37.000Z"},"relationships":{}},{"id":"10.21366/ghent-7km8a4","type":"dois","attributes":{"doi":"10.21366/ghent-7km8a4","updated":"2019-12-11T19:01:37.000Z"},"relationships":{}},{"id":"10.80037/r1x0-y268","type":"dois","attributes":{"doi":"10.80037/r1x0-y268","updated":"2019-12-11T19:01:36.000Z"},"relationships":{}},{"id":"10.33586/a59f629d-2751-4e1a-a2af-5716bdee566a","type":"dois","attributes":{"doi":"10.33586/a59f629d-2751-4e1a-a2af-5716bdee566a","updated":"2019-12-11T19:01:36.000Z"},"relationships":{}},{"id":"10.16904/envidat-test.4","type":"dois","attributes":{"doi":"10.16904/envidat-test.4","updated":"2019-12-11T19:01:35.000Z"},"relationships":{}},{"id":"10.13139/olcf/1468200","type":"dois","attributes":{"doi":"10.13139/olcf/1468200","updated":"2019-12-11T19:01:35.000Z"},"relationships":{}},{"id":"10.33540/as74-1q49","type":"dois","attributes":{"doi":"10.33540/as74-1q49","updated":"2019-12-11T19:01:35.000Z"},"relationships":{}},{"id":"10.33578/ubsi/131","type":"dois","attributes":{"doi":"10.33578/ubsi/131","updated":"2019-12-11T19:01:34.000Z"},"relationships":{}},{"id":"10.18462/iif.kdjkjdke","type":"dois","attributes":{"doi":"10.18462/iif.kdjkjdke","updated":"2019-12-11T19:01:34.000Z"},"relationships":{}},{"id":"10.7962/d9l79htj","type":"dois","attributes":{"doi":"10.7962/d9l79htj","updated":"2019-12-11T19:01:34.000Z"},"relationships":{}},{"id":"10.22024/dev/unikent/01.02.248","type":"dois","attributes":{"doi":"10.22024/dev/unikent/01.02.248","updated":"2019-12-11T19:01:33.000Z"},"relationships":{}},{"id":"10.80058/fk2/sskvtt/kw0c0z","type":"dois","attributes":{"doi":"10.80058/fk2/sskvtt/kw0c0z","updated":"2019-12-11T19:01:33.000Z"},"relationships":{}},{"id":"10.7893/akpy-7128","type":"dois","attributes":{"doi":"10.7893/akpy-7128","updated":"2019-12-11T19:01:33.000Z"},"relationships":{}},{"id":"10.15480/882.2360","type":"dois","attributes":{"doi":"10.15480/882.2360","updated":"2019-12-11T19:01:33.000Z"},"relationships":{}},{"id":"10.33685/test_doi_5c9061ca674d5","type":"dois","attributes":{"doi":"10.33685/test_doi_5c9061ca674d5","updated":"2019-12-11T19:01:32.000Z"},"relationships":{}},{"id":"10.33505/gc4x-tm21","type":"dois","attributes":{"doi":"10.33505/gc4x-tm21","updated":"2019-12-11T19:01:32.000Z"},"relationships":{}},{"id":"10.70031/fkcp-ph05","type":"dois","attributes":{"doi":"10.70031/fkcp-ph05","updated":"2019-12-11T19:01:32.000Z"},"relationships":{}},{"id":"10.80022/h839-4t44","type":"dois","attributes":{"doi":"10.80022/h839-4t44","updated":"2019-12-11T19:01:31.000Z"},"relationships":{}},{"id":"10.11571/6pv4-v575","type":"dois","attributes":{"doi":"10.11571/6pv4-v575","updated":"2019-12-11T19:01:31.000Z"},"relationships":{}},{"id":"10.33528/m74j-db88","type":"dois","attributes":{"doi":"10.33528/m74j-db88","updated":"2019-12-11T19:01:31.000Z"},"relationships":{}},{"id":"10.7963/s9xk9dih","type":"dois","attributes":{"doi":"10.7963/s9xk9dih","updated":"2019-12-11T19:01:30.000Z"},"relationships":{}},{"id":"10.5068/htnr-8c54","type":"dois","attributes":{"doi":"10.5068/htnr-8c54","updated":"2019-12-11T19:01:30.000Z"},"relationships":{}},{"id":"10.0855/495","type":"dois","attributes":{"doi":"10.0855/495","updated":"2019-12-11T19:01:30.000Z"},"relationships":{}},{"id":"10.24342/test_doi_5cee087b566b4","type":"dois","attributes":{"doi":"10.24342/test_doi_5cee087b566b4","updated":"2019-12-11T19:01:29.000Z"},"relationships":{}},{"id":"10.7970/ec280110fed04a38baa6dfadc98f382f","type":"dois","attributes":{"doi":"10.7970/ec280110fed04a38baa6dfadc98f382f","updated":"2019-12-11T19:01:29.000Z"},"relationships":{}},{"id":"10.5285/d8369a2f-8b50-4711-b492-ae773bfafd95","type":"dois","attributes":{"doi":"10.5285/d8369a2f-8b50-4711-b492-ae773bfafd95","updated":"2019-12-11T19:01:29.000Z"},"relationships":{}},{"id":"10.33568/test_doi_5db161e2b9be2","type":"dois","attributes":{"doi":"10.33568/test_doi_5db161e2b9be2","updated":"2019-12-11T19:01:28.000Z"},"relationships":{}},{"id":"10.21398/opus-1203","type":"dois","attributes":{"doi":"10.21398/opus-1203","updated":"2019-12-11T19:01:28.000Z"},"relationships":{}},{"id":"10.33574/6","type":"dois","attributes":{"doi":"10.33574/6","updated":"2019-12-11T19:01:28.000Z"},"relationships":{}},{"id":"10.24427/fjsc-kw78","type":"dois","attributes":{"doi":"10.24427/fjsc-kw78","updated":"2019-12-11T19:01:27.000Z"},"relationships":{}},{"id":"10.70011/test_doi_5d195f384658c","type":"dois","attributes":{"doi":"10.70011/test_doi_5d195f384658c","updated":"2019-12-11T19:01:27.000Z"},"relationships":{}},{"id":"10.70030/test_doi_5db8b9df0f68c","type":"dois","attributes":{"doi":"10.70030/test_doi_5db8b9df0f68c","updated":"2019-12-11T19:01:27.000Z"},"relationships":{}},{"id":"10.70111/cas.v1i0.2","type":"dois","attributes":{"doi":"10.70111/cas.v1i0.2","updated":"2019-12-11T19:01:26.000Z"},"relationships":{}},{"id":"10.7964/b9aei6cd","type":"dois","attributes":{"doi":"10.7964/b9aei6cd","updated":"2019-12-11T19:01:26.000Z"},"relationships":{}},{"id":"10.33508/ucrrtest-7","type":"dois","attributes":{"doi":"10.33508/ucrrtest-7","updated":"2019-12-11T19:01:26.000Z"},"relationships":{}},{"id":"10.5439/1379433","type":"dois","attributes":{"doi":"10.5439/1379433","updated":"2019-12-11T19:01:26.000Z"},"relationships":{}},{"id":"10.21410/testqual/vp88-jd46","type":"dois","attributes":{"doi":"10.21410/testqual/vp88-jd46","updated":"2019-12-11T19:01:25.000Z"},"relationships":{}},{"id":"10.33565/fk2/qknsgq","type":"dois","attributes":{"doi":"10.33565/fk2/qknsgq","updated":"2019-12-11T19:01:24.000Z"},"relationships":{}},{"id":"10.70015/opus-867","type":"dois","attributes":{"doi":"10.70015/opus-867","updated":"2019-12-11T19:01:24.000Z"},"relationships":{}},{"id":"10.70144/test_doi_5cad8a7c5b587","type":"dois","attributes":{"doi":"10.70144/test_doi_5cad8a7c5b587","updated":"2019-12-11T19:01:23.000Z"},"relationships":{}},{"id":"10.23693/textgrid:sshq.0","type":"dois","attributes":{"doi":"10.23693/textgrid:sshq.0","updated":"2019-12-11T19:01:23.000Z"},"relationships":{}},{"id":"10.18725/0722-6691/4088","type":"dois","attributes":{"doi":"10.18725/0722-6691/4088","updated":"2019-12-11T19:01:22.000Z"},"relationships":{}},{"id":"10.80051/myshoulder/merr7f","type":"dois","attributes":{"doi":"10.80051/myshoulder/merr7f","updated":"2019-12-11T19:01:22.000Z"},"relationships":{}},{"id":"10.23719/17160","type":"dois","attributes":{"doi":"10.23719/17160","updated":"2019-12-11T19:01:22.000Z"},"relationships":{}},{"id":"10.15123/pub.20","type":"dois","attributes":{"doi":"10.15123/pub.20","updated":"2019-12-11T19:01:21.000Z"},"relationships":{}},{"id":"10.18716/testusb/verteidigung_masterarbeit_niemitz","type":"dois","attributes":{"doi":"10.18716/testusb/verteidigung_masterarbeit_niemitz","updated":"2019-12-11T19:01:21.000Z"},"relationships":{}},{"id":"10.0353/development:abefb1a3-6ae9-4da6-a9a8-d7f66f98710e:20190723:2","type":"dois","attributes":{"doi":"10.0353/development:abefb1a3-6ae9-4da6-a9a8-d7f66f98710e:20190723:2","updated":"2019-12-11T19:01:21.000Z"},"relationships":{}},{"id":"10.21411/cbm.a.b2c2dbe2","type":"dois","attributes":{"doi":"10.21411/cbm.a.b2c2dbe2","updated":"2019-12-11T19:01:20.000Z"},"relationships":{}},{"id":"10.13143/6d4k-8n87","type":"dois","attributes":{"doi":"10.13143/6d4k-8n87","updated":"2019-12-11T19:01:20.000Z"},"relationships":{}},{"id":"10.4124/7a5/8qy56","type":"dois","attributes":{"doi":"10.4124/7a5/8qy56","updated":"2019-12-11T19:01:20.000Z"},"relationships":{}},{"id":"10.0337/cds/vizier.102036","type":"dois","attributes":{"doi":"10.0337/cds/vizier.102036","updated":"2019-12-11T19:01:19.000Z"},"relationships":{}},{"id":"10.21368/test2362-u1480g-gra","type":"dois","attributes":{"doi":"10.21368/test2362-u1480g-gra","updated":"2019-12-11T19:01:19.000Z"},"relationships":{}},{"id":"10.12685/e6ws-545dwm2446","type":"dois","attributes":{"doi":"10.12685/e6ws-545dwm2446","updated":"2019-12-11T19:01:19.000Z"},"relationships":{}},{"id":"10.33679/test_doi_5c90690f35811","type":"dois","attributes":{"doi":"10.33679/test_doi_5c90690f35811","updated":"2019-12-11T19:01:16.000Z"},"relationships":{}},{"id":"10.24403/test_doi_5cb00092c3831","type":"dois","attributes":{"doi":"10.24403/test_doi_5cb00092c3831","updated":"2019-12-11T19:01:16.000Z"},"relationships":{}},{"id":"10.70003/aridhia-blog-001","type":"dois","attributes":{"doi":"10.70003/aridhia-blog-001","updated":"2019-12-11T19:01:16.000Z"},"relationships":{}},{"id":"10.33634/14","type":"dois","attributes":{"doi":"10.33634/14","updated":"2019-12-11T19:01:15.000Z"},"relationships":{}},{"id":"10.80016/dvn/xgmqdg","type":"dois","attributes":{"doi":"10.80016/dvn/xgmqdg","updated":"2019-12-11T19:01:13.000Z"},"relationships":{}},{"id":"10.80099/w01.lbstest.da.ulcc.ac.uk.00001264","type":"dois","attributes":{"doi":"10.80099/w01.lbstest.da.ulcc.ac.uk.00001264","updated":"2019-12-11T19:01:12.000Z"},"relationships":{}},{"id":"10.7947/m30x-pa17","type":"dois","attributes":{"doi":"10.7947/m30x-pa17","updated":"2019-12-11T19:01:11.000Z"},"relationships":{}},{"id":"10.70014/opus-293","type":"dois","attributes":{"doi":"10.70014/opus-293","updated":"2019-12-11T19:01:09.000Z"},"relationships":{}},{"id":"10.1234/m7jfnz69kb","type":"dois","attributes":{"doi":"10.1234/m7jfnz69kb","updated":"2019-12-11T18:30:58.000Z"},"relationships":{}},{"id":"10.5256/f1000research.79265.d245771","type":"dois","attributes":{"doi":"10.5256/f1000research.79265.d245771","updated":"2019-12-11T18:30:57.000Z"},"relationships":{}},{"id":"10.4124/ccnlgrf","type":"dois","attributes":{"doi":"10.4124/ccnlgrf","updated":"2019-12-11T18:30:57.000Z"},"relationships":{}}],"meta":{"total":896469,"scroll-id":"DnF1ZXJ5VGhlbkZldGNoBQAAAAAAQ2NQFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAENjURZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhRAAAAAABDY1IWbFFhUy1BeGRSd2VkTWczN2lTNmI4UQAAAAAAQ2NTFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAENjVBZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhR"},"links":{"self":"https://api.test.datacite.org/dois?fields%5Bdois%5D=doi%2Cupdated&page%5Bscroll%5D=7m&page%5Bsize%5D=1000","next":"https://api.test.datacite.org/dois?page%5Bscroll%5D=7m&page%5Bsize%5D=1000&scroll-id=DnF1ZXJ5VGhlbkZldGNoBQAAAAAAQ2NQFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAENjURZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhRAAAAAABDY1IWbFFhUy1BeGRSd2VkTWczN2lTNmI4UQAAAAAAQ2NTFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAENjVBZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhR"}}'
90
+ string: '{"data":[{"id":"10.0253/tuprints-00003484","type":"dois","attributes":{"doi":"10.0253/tuprints-00003484","updated":"2019-12-12T11:03:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003485","type":"dois","attributes":{"doi":"10.0253/tuprints-00003485","updated":"2019-12-12T11:03:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003483","type":"dois","attributes":{"doi":"10.0253/tuprints-00003483","updated":"2019-12-12T11:03:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003622","type":"dois","attributes":{"doi":"10.0253/tuprints-00003622","updated":"2019-12-12T11:03:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003625","type":"dois","attributes":{"doi":"10.0253/tuprints-00003625","updated":"2019-12-12T11:03:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003621","type":"dois","attributes":{"doi":"10.0253/tuprints-00003621","updated":"2019-12-12T11:03:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003619","type":"dois","attributes":{"doi":"10.0253/tuprints-00003619","updated":"2019-12-12T11:03:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003620","type":"dois","attributes":{"doi":"10.0253/tuprints-00003620","updated":"2019-12-12T11:03:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003618","type":"dois","attributes":{"doi":"10.0253/tuprints-00003618","updated":"2019-12-12T11:03:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003617","type":"dois","attributes":{"doi":"10.0253/tuprints-00003617","updated":"2019-12-12T11:03:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003614","type":"dois","attributes":{"doi":"10.0253/tuprints-00003614","updated":"2019-12-12T11:03:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003616","type":"dois","attributes":{"doi":"10.0253/tuprints-00003616","updated":"2019-12-12T11:03:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003613","type":"dois","attributes":{"doi":"10.0253/tuprints-00003613","updated":"2019-12-12T11:03:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003610","type":"dois","attributes":{"doi":"10.0253/tuprints-00003610","updated":"2019-12-12T11:03:24.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003612","type":"dois","attributes":{"doi":"10.0253/tuprints-00003612","updated":"2019-12-12T11:03:24.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003609","type":"dois","attributes":{"doi":"10.0253/tuprints-00003609","updated":"2019-12-12T11:03:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003608","type":"dois","attributes":{"doi":"10.0253/tuprints-00003608","updated":"2019-12-12T11:03:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003605","type":"dois","attributes":{"doi":"10.0253/tuprints-00003605","updated":"2019-12-12T11:03:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003607","type":"dois","attributes":{"doi":"10.0253/tuprints-00003607","updated":"2019-12-12T11:03:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003603","type":"dois","attributes":{"doi":"10.0253/tuprints-00003603","updated":"2019-12-12T11:03:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003604","type":"dois","attributes":{"doi":"10.0253/tuprints-00003604","updated":"2019-12-12T11:03:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003601","type":"dois","attributes":{"doi":"10.0253/tuprints-00003601","updated":"2019-12-12T11:03:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003602","type":"dois","attributes":{"doi":"10.0253/tuprints-00003602","updated":"2019-12-12T11:03:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003599","type":"dois","attributes":{"doi":"10.0253/tuprints-00003599","updated":"2019-12-12T11:03:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003600","type":"dois","attributes":{"doi":"10.0253/tuprints-00003600","updated":"2019-12-12T11:03:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003598","type":"dois","attributes":{"doi":"10.0253/tuprints-00003598","updated":"2019-12-12T11:03:18.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003596","type":"dois","attributes":{"doi":"10.0253/tuprints-00003596","updated":"2019-12-12T11:03:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003595","type":"dois","attributes":{"doi":"10.0253/tuprints-00003595","updated":"2019-12-12T11:03:16.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003593","type":"dois","attributes":{"doi":"10.0253/tuprints-00003593","updated":"2019-12-12T11:03:15.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003591","type":"dois","attributes":{"doi":"10.0253/tuprints-00003591","updated":"2019-12-12T11:03:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003589","type":"dois","attributes":{"doi":"10.0253/tuprints-00003589","updated":"2019-12-12T11:03:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003590","type":"dois","attributes":{"doi":"10.0253/tuprints-00003590","updated":"2019-12-12T11:03:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003587","type":"dois","attributes":{"doi":"10.0253/tuprints-00003587","updated":"2019-12-12T11:03:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003588","type":"dois","attributes":{"doi":"10.0253/tuprints-00003588","updated":"2019-12-12T11:03:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003585","type":"dois","attributes":{"doi":"10.0253/tuprints-00003585","updated":"2019-12-12T11:03:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003584","type":"dois","attributes":{"doi":"10.0253/tuprints-00003584","updated":"2019-12-12T11:03:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003583","type":"dois","attributes":{"doi":"10.0253/tuprints-00003583","updated":"2019-12-12T11:03:10.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003581","type":"dois","attributes":{"doi":"10.0253/tuprints-00003581","updated":"2019-12-12T11:03:10.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003580","type":"dois","attributes":{"doi":"10.0253/tuprints-00003580","updated":"2019-12-12T11:03:09.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003579","type":"dois","attributes":{"doi":"10.0253/tuprints-00003579","updated":"2019-12-12T11:03:09.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003578","type":"dois","attributes":{"doi":"10.0253/tuprints-00003578","updated":"2019-12-12T11:03:08.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003575","type":"dois","attributes":{"doi":"10.0253/tuprints-00003575","updated":"2019-12-12T11:03:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003573","type":"dois","attributes":{"doi":"10.0253/tuprints-00003573","updated":"2019-12-12T11:03:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003571","type":"dois","attributes":{"doi":"10.0253/tuprints-00003571","updated":"2019-12-12T11:03:06.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003572","type":"dois","attributes":{"doi":"10.0253/tuprints-00003572","updated":"2019-12-12T11:03:06.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003567","type":"dois","attributes":{"doi":"10.0253/tuprints-00003567","updated":"2019-12-12T11:03:05.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003568","type":"dois","attributes":{"doi":"10.0253/tuprints-00003568","updated":"2019-12-12T11:03:05.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003565","type":"dois","attributes":{"doi":"10.0253/tuprints-00003565","updated":"2019-12-12T11:03:04.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003566","type":"dois","attributes":{"doi":"10.0253/tuprints-00003566","updated":"2019-12-12T11:03:04.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003557","type":"dois","attributes":{"doi":"10.0253/tuprints-00003557","updated":"2019-12-12T11:03:03.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003556","type":"dois","attributes":{"doi":"10.0253/tuprints-00003556","updated":"2019-12-12T11:03:03.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003551","type":"dois","attributes":{"doi":"10.0253/tuprints-00003551","updated":"2019-12-12T11:03:02.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003552","type":"dois","attributes":{"doi":"10.0253/tuprints-00003552","updated":"2019-12-12T11:03:02.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003550","type":"dois","attributes":{"doi":"10.0253/tuprints-00003550","updated":"2019-12-12T11:03:01.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003544","type":"dois","attributes":{"doi":"10.0253/tuprints-00003544","updated":"2019-12-12T11:03:01.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003542","type":"dois","attributes":{"doi":"10.0253/tuprints-00003542","updated":"2019-12-12T11:03:00.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003541","type":"dois","attributes":{"doi":"10.0253/tuprints-00003541","updated":"2019-12-12T11:03:00.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003538","type":"dois","attributes":{"doi":"10.0253/tuprints-00003538","updated":"2019-12-12T11:02:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003540","type":"dois","attributes":{"doi":"10.0253/tuprints-00003540","updated":"2019-12-12T11:02:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003537","type":"dois","attributes":{"doi":"10.0253/tuprints-00003537","updated":"2019-12-12T11:02:58.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003536","type":"dois","attributes":{"doi":"10.0253/tuprints-00003536","updated":"2019-12-12T11:02:58.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003531","type":"dois","attributes":{"doi":"10.0253/tuprints-00003531","updated":"2019-12-12T11:02:57.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003535","type":"dois","attributes":{"doi":"10.0253/tuprints-00003535","updated":"2019-12-12T11:02:57.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003523","type":"dois","attributes":{"doi":"10.0253/tuprints-00003523","updated":"2019-12-12T11:02:56.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003529","type":"dois","attributes":{"doi":"10.0253/tuprints-00003529","updated":"2019-12-12T11:02:56.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003521","type":"dois","attributes":{"doi":"10.0253/tuprints-00003521","updated":"2019-12-12T11:02:55.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003520","type":"dois","attributes":{"doi":"10.0253/tuprints-00003520","updated":"2019-12-12T11:02:55.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003518","type":"dois","attributes":{"doi":"10.0253/tuprints-00003518","updated":"2019-12-12T11:02:54.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003519","type":"dois","attributes":{"doi":"10.0253/tuprints-00003519","updated":"2019-12-12T11:02:54.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003516","type":"dois","attributes":{"doi":"10.0253/tuprints-00003516","updated":"2019-12-12T11:02:53.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003513","type":"dois","attributes":{"doi":"10.0253/tuprints-00003513","updated":"2019-12-12T11:02:53.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003512","type":"dois","attributes":{"doi":"10.0253/tuprints-00003512","updated":"2019-12-12T11:02:52.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003509","type":"dois","attributes":{"doi":"10.0253/tuprints-00003509","updated":"2019-12-12T11:02:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003511","type":"dois","attributes":{"doi":"10.0253/tuprints-00003511","updated":"2019-12-12T11:02:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003506","type":"dois","attributes":{"doi":"10.0253/tuprints-00003506","updated":"2019-12-12T11:02:50.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003504","type":"dois","attributes":{"doi":"10.0253/tuprints-00003504","updated":"2019-12-12T11:02:49.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003503","type":"dois","attributes":{"doi":"10.0253/tuprints-00003503","updated":"2019-12-12T11:02:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003500","type":"dois","attributes":{"doi":"10.0253/tuprints-00003500","updated":"2019-12-12T11:02:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003745","type":"dois","attributes":{"doi":"10.0253/tuprints-00003745","updated":"2019-12-12T11:02:47.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003499","type":"dois","attributes":{"doi":"10.0253/tuprints-00003499","updated":"2019-12-12T11:02:47.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003742","type":"dois","attributes":{"doi":"10.0253/tuprints-00003742","updated":"2019-12-12T11:02:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003741","type":"dois","attributes":{"doi":"10.0253/tuprints-00003741","updated":"2019-12-12T11:02:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003739","type":"dois","attributes":{"doi":"10.0253/tuprints-00003739","updated":"2019-12-12T11:02:45.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003738","type":"dois","attributes":{"doi":"10.0253/tuprints-00003738","updated":"2019-12-12T11:02:45.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003737","type":"dois","attributes":{"doi":"10.0253/tuprints-00003737","updated":"2019-12-12T11:02:44.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003736","type":"dois","attributes":{"doi":"10.0253/tuprints-00003736","updated":"2019-12-12T11:02:44.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003735","type":"dois","attributes":{"doi":"10.0253/tuprints-00003735","updated":"2019-12-12T11:02:43.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003734","type":"dois","attributes":{"doi":"10.0253/tuprints-00003734","updated":"2019-12-12T11:02:43.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003733","type":"dois","attributes":{"doi":"10.0253/tuprints-00003733","updated":"2019-12-12T11:02:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003731","type":"dois","attributes":{"doi":"10.0253/tuprints-00003731","updated":"2019-12-12T11:02:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003725","type":"dois","attributes":{"doi":"10.0253/tuprints-00003725","updated":"2019-12-12T11:02:41.000Z"},"relationships":{}},{"id":"10.4124/s52mr33j32","type":"dois","attributes":{"doi":"10.4124/s52mr33j32","updated":"2019-12-12T11:02:41.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003730","type":"dois","attributes":{"doi":"10.0253/tuprints-00003730","updated":"2019-12-12T11:02:41.000Z"},"relationships":{}},{"id":"10.4124/s52mr33j32.1","type":"dois","attributes":{"doi":"10.4124/s52mr33j32.1","updated":"2019-12-12T11:02:41.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003721","type":"dois","attributes":{"doi":"10.0253/tuprints-00003721","updated":"2019-12-12T11:02:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003722","type":"dois","attributes":{"doi":"10.0253/tuprints-00003722","updated":"2019-12-12T11:02:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003718","type":"dois","attributes":{"doi":"10.0253/tuprints-00003718","updated":"2019-12-12T11:02:39.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003719","type":"dois","attributes":{"doi":"10.0253/tuprints-00003719","updated":"2019-12-12T11:02:39.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003716","type":"dois","attributes":{"doi":"10.0253/tuprints-00003716","updated":"2019-12-12T11:02:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003717","type":"dois","attributes":{"doi":"10.0253/tuprints-00003717","updated":"2019-12-12T11:02:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003714","type":"dois","attributes":{"doi":"10.0253/tuprints-00003714","updated":"2019-12-12T11:02:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003712","type":"dois","attributes":{"doi":"10.0253/tuprints-00003712","updated":"2019-12-12T11:02:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003710","type":"dois","attributes":{"doi":"10.0253/tuprints-00003710","updated":"2019-12-12T11:02:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003706","type":"dois","attributes":{"doi":"10.0253/tuprints-00003706","updated":"2019-12-12T11:02:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003703","type":"dois","attributes":{"doi":"10.0253/tuprints-00003703","updated":"2019-12-12T11:02:35.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003704","type":"dois","attributes":{"doi":"10.0253/tuprints-00003704","updated":"2019-12-12T11:02:35.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003702","type":"dois","attributes":{"doi":"10.0253/tuprints-00003702","updated":"2019-12-12T11:02:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003701","type":"dois","attributes":{"doi":"10.0253/tuprints-00003701","updated":"2019-12-12T11:02:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003699","type":"dois","attributes":{"doi":"10.0253/tuprints-00003699","updated":"2019-12-12T11:02:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003698","type":"dois","attributes":{"doi":"10.0253/tuprints-00003698","updated":"2019-12-12T11:02:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003694","type":"dois","attributes":{"doi":"10.0253/tuprints-00003694","updated":"2019-12-12T11:02:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003696","type":"dois","attributes":{"doi":"10.0253/tuprints-00003696","updated":"2019-12-12T11:02:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003693","type":"dois","attributes":{"doi":"10.0253/tuprints-00003693","updated":"2019-12-12T11:02:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003692","type":"dois","attributes":{"doi":"10.0253/tuprints-00003692","updated":"2019-12-12T11:02:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003688","type":"dois","attributes":{"doi":"10.0253/tuprints-00003688","updated":"2019-12-12T11:02:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003690","type":"dois","attributes":{"doi":"10.0253/tuprints-00003690","updated":"2019-12-12T11:02:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003685","type":"dois","attributes":{"doi":"10.0253/tuprints-00003685","updated":"2019-12-12T11:02:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003686","type":"dois","attributes":{"doi":"10.0253/tuprints-00003686","updated":"2019-12-12T11:02:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003683","type":"dois","attributes":{"doi":"10.0253/tuprints-00003683","updated":"2019-12-12T11:02:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003684","type":"dois","attributes":{"doi":"10.0253/tuprints-00003684","updated":"2019-12-12T11:02:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003679","type":"dois","attributes":{"doi":"10.0253/tuprints-00003679","updated":"2019-12-12T11:02:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003681","type":"dois","attributes":{"doi":"10.0253/tuprints-00003681","updated":"2019-12-12T11:02:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003676","type":"dois","attributes":{"doi":"10.0253/tuprints-00003676","updated":"2019-12-12T11:02:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003677","type":"dois","attributes":{"doi":"10.0253/tuprints-00003677","updated":"2019-12-12T11:02:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003674","type":"dois","attributes":{"doi":"10.0253/tuprints-00003674","updated":"2019-12-12T11:02:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003675","type":"dois","attributes":{"doi":"10.0253/tuprints-00003675","updated":"2019-12-12T11:02:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003672","type":"dois","attributes":{"doi":"10.0253/tuprints-00003672","updated":"2019-12-12T11:02:24.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003673","type":"dois","attributes":{"doi":"10.0253/tuprints-00003673","updated":"2019-12-12T11:02:24.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003667","type":"dois","attributes":{"doi":"10.0253/tuprints-00003667","updated":"2019-12-12T11:02:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003668","type":"dois","attributes":{"doi":"10.0253/tuprints-00003668","updated":"2019-12-12T11:02:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003665","type":"dois","attributes":{"doi":"10.0253/tuprints-00003665","updated":"2019-12-12T11:02:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003666","type":"dois","attributes":{"doi":"10.0253/tuprints-00003666","updated":"2019-12-12T11:02:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003661","type":"dois","attributes":{"doi":"10.0253/tuprints-00003661","updated":"2019-12-12T11:02:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003663","type":"dois","attributes":{"doi":"10.0253/tuprints-00003663","updated":"2019-12-12T11:02:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003658","type":"dois","attributes":{"doi":"10.0253/tuprints-00003658","updated":"2019-12-12T11:02:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003657","type":"dois","attributes":{"doi":"10.0253/tuprints-00003657","updated":"2019-12-12T11:02:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003655","type":"dois","attributes":{"doi":"10.0253/tuprints-00003655","updated":"2019-12-12T11:02:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003654","type":"dois","attributes":{"doi":"10.0253/tuprints-00003654","updated":"2019-12-12T11:02:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003652","type":"dois","attributes":{"doi":"10.0253/tuprints-00003652","updated":"2019-12-12T11:02:18.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003653","type":"dois","attributes":{"doi":"10.0253/tuprints-00003653","updated":"2019-12-12T11:02:18.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003650","type":"dois","attributes":{"doi":"10.0253/tuprints-00003650","updated":"2019-12-12T11:02:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003651","type":"dois","attributes":{"doi":"10.0253/tuprints-00003651","updated":"2019-12-12T11:02:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003648","type":"dois","attributes":{"doi":"10.0253/tuprints-00003648","updated":"2019-12-12T11:02:16.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003647","type":"dois","attributes":{"doi":"10.0253/tuprints-00003647","updated":"2019-12-12T11:02:16.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003645","type":"dois","attributes":{"doi":"10.0253/tuprints-00003645","updated":"2019-12-12T11:02:15.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003644","type":"dois","attributes":{"doi":"10.0253/tuprints-00003644","updated":"2019-12-12T11:02:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003643","type":"dois","attributes":{"doi":"10.0253/tuprints-00003643","updated":"2019-12-12T11:02:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003641","type":"dois","attributes":{"doi":"10.0253/tuprints-00003641","updated":"2019-12-12T11:02:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003642","type":"dois","attributes":{"doi":"10.0253/tuprints-00003642","updated":"2019-12-12T11:02:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003639","type":"dois","attributes":{"doi":"10.0253/tuprints-00003639","updated":"2019-12-12T11:02:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003640","type":"dois","attributes":{"doi":"10.0253/tuprints-00003640","updated":"2019-12-12T11:02:12.000Z"},"relationships":{}},{"id":"10.1234/48g249535p.2","type":"dois","attributes":{"doi":"10.1234/48g249535p.2","updated":"2019-12-12T11:02:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003636","type":"dois","attributes":{"doi":"10.0253/tuprints-00003636","updated":"2019-12-12T11:02:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003638","type":"dois","attributes":{"doi":"10.0253/tuprints-00003638","updated":"2019-12-12T11:02:11.000Z"},"relationships":{}},{"id":"10.1234/48g249535p","type":"dois","attributes":{"doi":"10.1234/48g249535p","updated":"2019-12-12T11:02:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003635","type":"dois","attributes":{"doi":"10.0253/tuprints-00003635","updated":"2019-12-12T11:02:10.000Z"},"relationships":{}},{"id":"10.1234/48g249535p.1","type":"dois","attributes":{"doi":"10.1234/48g249535p.1","updated":"2019-12-12T11:02:10.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003634","type":"dois","attributes":{"doi":"10.0253/tuprints-00003634","updated":"2019-12-12T11:02:10.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003632","type":"dois","attributes":{"doi":"10.0253/tuprints-00003632","updated":"2019-12-12T11:02:09.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003633","type":"dois","attributes":{"doi":"10.0253/tuprints-00003633","updated":"2019-12-12T11:02:09.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003631","type":"dois","attributes":{"doi":"10.0253/tuprints-00003631","updated":"2019-12-12T11:02:08.000Z"},"relationships":{}},{"id":"10.1234/ykc8v9jfjf.1","type":"dois","attributes":{"doi":"10.1234/ykc8v9jfjf.1","updated":"2019-12-12T11:02:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003626","type":"dois","attributes":{"doi":"10.0253/tuprints-00003626","updated":"2019-12-12T11:02:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003746","type":"dois","attributes":{"doi":"10.0253/tuprints-00003746","updated":"2019-12-12T11:02:07.000Z"},"relationships":{}},{"id":"10.1234/ykc8v9jfjf","type":"dois","attributes":{"doi":"10.1234/ykc8v9jfjf","updated":"2019-12-12T11:02:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003859","type":"dois","attributes":{"doi":"10.0253/tuprints-00003859","updated":"2019-12-12T11:02:06.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003862","type":"dois","attributes":{"doi":"10.0253/tuprints-00003862","updated":"2019-12-12T11:02:06.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003858","type":"dois","attributes":{"doi":"10.0253/tuprints-00003858","updated":"2019-12-12T11:02:05.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003857","type":"dois","attributes":{"doi":"10.0253/tuprints-00003857","updated":"2019-12-12T11:02:05.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003851","type":"dois","attributes":{"doi":"10.0253/tuprints-00003851","updated":"2019-12-12T11:02:04.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003855","type":"dois","attributes":{"doi":"10.0253/tuprints-00003855","updated":"2019-12-12T11:02:04.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003847","type":"dois","attributes":{"doi":"10.0253/tuprints-00003847","updated":"2019-12-12T11:02:03.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003844","type":"dois","attributes":{"doi":"10.0253/tuprints-00003844","updated":"2019-12-12T11:02:03.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003839","type":"dois","attributes":{"doi":"10.0253/tuprints-00003839","updated":"2019-12-12T11:02:02.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003843","type":"dois","attributes":{"doi":"10.0253/tuprints-00003843","updated":"2019-12-12T11:02:02.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003833","type":"dois","attributes":{"doi":"10.0253/tuprints-00003833","updated":"2019-12-12T11:02:01.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003837","type":"dois","attributes":{"doi":"10.0253/tuprints-00003837","updated":"2019-12-12T11:02:01.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003832","type":"dois","attributes":{"doi":"10.0253/tuprints-00003832","updated":"2019-12-12T11:02:00.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003828","type":"dois","attributes":{"doi":"10.0253/tuprints-00003828","updated":"2019-12-12T11:02:00.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003825","type":"dois","attributes":{"doi":"10.0253/tuprints-00003825","updated":"2019-12-12T11:01:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003826","type":"dois","attributes":{"doi":"10.0253/tuprints-00003826","updated":"2019-12-12T11:01:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003824","type":"dois","attributes":{"doi":"10.0253/tuprints-00003824","updated":"2019-12-12T11:01:58.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003822","type":"dois","attributes":{"doi":"10.0253/tuprints-00003822","updated":"2019-12-12T11:01:58.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003815","type":"dois","attributes":{"doi":"10.0253/tuprints-00003815","updated":"2019-12-12T11:01:57.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003821","type":"dois","attributes":{"doi":"10.0253/tuprints-00003821","updated":"2019-12-12T11:01:57.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003812","type":"dois","attributes":{"doi":"10.0253/tuprints-00003812","updated":"2019-12-12T11:01:56.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003811","type":"dois","attributes":{"doi":"10.0253/tuprints-00003811","updated":"2019-12-12T11:01:56.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003808","type":"dois","attributes":{"doi":"10.0253/tuprints-00003808","updated":"2019-12-12T11:01:55.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003807","type":"dois","attributes":{"doi":"10.0253/tuprints-00003807","updated":"2019-12-12T11:01:55.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003805","type":"dois","attributes":{"doi":"10.0253/tuprints-00003805","updated":"2019-12-12T11:01:54.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003806","type":"dois","attributes":{"doi":"10.0253/tuprints-00003806","updated":"2019-12-12T11:01:54.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003803","type":"dois","attributes":{"doi":"10.0253/tuprints-00003803","updated":"2019-12-12T11:01:53.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003804","type":"dois","attributes":{"doi":"10.0253/tuprints-00003804","updated":"2019-12-12T11:01:53.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003802","type":"dois","attributes":{"doi":"10.0253/tuprints-00003802","updated":"2019-12-12T11:01:52.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003799","type":"dois","attributes":{"doi":"10.0253/tuprints-00003799","updated":"2019-12-12T11:01:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003801","type":"dois","attributes":{"doi":"10.0253/tuprints-00003801","updated":"2019-12-12T11:01:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003792","type":"dois","attributes":{"doi":"10.0253/tuprints-00003792","updated":"2019-12-12T11:01:50.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003788","type":"dois","attributes":{"doi":"10.0253/tuprints-00003788","updated":"2019-12-12T11:01:50.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003785","type":"dois","attributes":{"doi":"10.0253/tuprints-00003785","updated":"2019-12-12T11:01:49.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003787","type":"dois","attributes":{"doi":"10.0253/tuprints-00003787","updated":"2019-12-12T11:01:49.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003784","type":"dois","attributes":{"doi":"10.0253/tuprints-00003784","updated":"2019-12-12T11:01:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003783","type":"dois","attributes":{"doi":"10.0253/tuprints-00003783","updated":"2019-12-12T11:01:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003781","type":"dois","attributes":{"doi":"10.0253/tuprints-00003781","updated":"2019-12-12T11:01:47.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003782","type":"dois","attributes":{"doi":"10.0253/tuprints-00003782","updated":"2019-12-12T11:01:47.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003779","type":"dois","attributes":{"doi":"10.0253/tuprints-00003779","updated":"2019-12-12T11:01:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003780","type":"dois","attributes":{"doi":"10.0253/tuprints-00003780","updated":"2019-12-12T11:01:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003776","type":"dois","attributes":{"doi":"10.0253/tuprints-00003776","updated":"2019-12-12T11:01:45.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003774","type":"dois","attributes":{"doi":"10.0253/tuprints-00003774","updated":"2019-12-12T11:01:45.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003770","type":"dois","attributes":{"doi":"10.0253/tuprints-00003770","updated":"2019-12-12T11:01:44.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003773","type":"dois","attributes":{"doi":"10.0253/tuprints-00003773","updated":"2019-12-12T11:01:44.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003765","type":"dois","attributes":{"doi":"10.0253/tuprints-00003765","updated":"2019-12-12T11:01:43.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003769","type":"dois","attributes":{"doi":"10.0253/tuprints-00003769","updated":"2019-12-12T11:01:43.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003747","type":"dois","attributes":{"doi":"10.0253/tuprints-00003747","updated":"2019-12-12T11:01:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003766","type":"dois","attributes":{"doi":"10.0253/tuprints-00003766","updated":"2019-12-12T11:01:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003763","type":"dois","attributes":{"doi":"10.0253/tuprints-00003763","updated":"2019-12-12T11:01:41.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003757","type":"dois","attributes":{"doi":"10.0253/tuprints-00003757","updated":"2019-12-12T11:01:41.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003750","type":"dois","attributes":{"doi":"10.0253/tuprints-00003750","updated":"2019-12-12T11:01:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003755","type":"dois","attributes":{"doi":"10.0253/tuprints-00003755","updated":"2019-12-12T11:01:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00002833","type":"dois","attributes":{"doi":"10.0253/tuprints-00002833","updated":"2019-12-12T11:01:39.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003748","type":"dois","attributes":{"doi":"10.0253/tuprints-00003748","updated":"2019-12-12T11:01:39.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003875","type":"dois","attributes":{"doi":"10.0253/tuprints-00003875","updated":"2019-12-12T11:01:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003876","type":"dois","attributes":{"doi":"10.0253/tuprints-00003876","updated":"2019-12-12T11:01:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003878","type":"dois","attributes":{"doi":"10.0253/tuprints-00003878","updated":"2019-12-12T11:01:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003863","type":"dois","attributes":{"doi":"10.0253/tuprints-00003863","updated":"2019-12-12T11:01:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003865","type":"dois","attributes":{"doi":"10.0253/tuprints-00003865","updated":"2019-12-12T11:01:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003871","type":"dois","attributes":{"doi":"10.0253/tuprints-00003871","updated":"2019-12-12T11:01:35.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003869","type":"dois","attributes":{"doi":"10.0253/tuprints-00003869","updated":"2019-12-12T11:01:35.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003866","type":"dois","attributes":{"doi":"10.0253/tuprints-00003866","updated":"2019-12-12T11:01:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003872","type":"dois","attributes":{"doi":"10.0253/tuprints-00003872","updated":"2019-12-12T11:01:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003870","type":"dois","attributes":{"doi":"10.0253/tuprints-00003870","updated":"2019-12-12T11:01:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003868","type":"dois","attributes":{"doi":"10.0253/tuprints-00003868","updated":"2019-12-12T11:01:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003873","type":"dois","attributes":{"doi":"10.0253/tuprints-00003873","updated":"2019-12-12T11:01:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003867","type":"dois","attributes":{"doi":"10.0253/tuprints-00003867","updated":"2019-12-12T11:01:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003949","type":"dois","attributes":{"doi":"10.0253/tuprints-00003949","updated":"2019-12-12T11:01:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003880","type":"dois","attributes":{"doi":"10.0253/tuprints-00003880","updated":"2019-12-12T11:01:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003948","type":"dois","attributes":{"doi":"10.0253/tuprints-00003948","updated":"2019-12-12T11:01:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003947","type":"dois","attributes":{"doi":"10.0253/tuprints-00003947","updated":"2019-12-12T11:01:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003946","type":"dois","attributes":{"doi":"10.0253/tuprints-00003946","updated":"2019-12-12T11:01:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003945","type":"dois","attributes":{"doi":"10.0253/tuprints-00003945","updated":"2019-12-12T11:01:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003932","type":"dois","attributes":{"doi":"10.0253/tuprints-00003932","updated":"2019-12-12T11:01:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003934","type":"dois","attributes":{"doi":"10.0253/tuprints-00003934","updated":"2019-12-12T11:01:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003930","type":"dois","attributes":{"doi":"10.0253/tuprints-00003930","updated":"2019-12-12T11:01:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003931","type":"dois","attributes":{"doi":"10.0253/tuprints-00003931","updated":"2019-12-12T11:01:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003928","type":"dois","attributes":{"doi":"10.0253/tuprints-00003928","updated":"2019-12-12T11:01:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003929","type":"dois","attributes":{"doi":"10.0253/tuprints-00003929","updated":"2019-12-12T11:01:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003921","type":"dois","attributes":{"doi":"10.0253/tuprints-00003921","updated":"2019-12-12T11:01:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003926","type":"dois","attributes":{"doi":"10.0253/tuprints-00003926","updated":"2019-12-12T11:01:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003916","type":"dois","attributes":{"doi":"10.0253/tuprints-00003916","updated":"2019-12-12T11:01:24.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003918","type":"dois","attributes":{"doi":"10.0253/tuprints-00003918","updated":"2019-12-12T11:01:24.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003915","type":"dois","attributes":{"doi":"10.0253/tuprints-00003915","updated":"2019-12-12T11:01:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003914","type":"dois","attributes":{"doi":"10.0253/tuprints-00003914","updated":"2019-12-12T11:01:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003913","type":"dois","attributes":{"doi":"10.0253/tuprints-00003913","updated":"2019-12-12T11:01:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003912","type":"dois","attributes":{"doi":"10.0253/tuprints-00003912","updated":"2019-12-12T11:01:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003911","type":"dois","attributes":{"doi":"10.0253/tuprints-00003911","updated":"2019-12-12T11:01:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003909","type":"dois","attributes":{"doi":"10.0253/tuprints-00003909","updated":"2019-12-12T11:01:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003905","type":"dois","attributes":{"doi":"10.0253/tuprints-00003905","updated":"2019-12-12T11:01:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003906","type":"dois","attributes":{"doi":"10.0253/tuprints-00003906","updated":"2019-12-12T11:01:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003898","type":"dois","attributes":{"doi":"10.0253/tuprints-00003898","updated":"2019-12-12T11:01:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003902","type":"dois","attributes":{"doi":"10.0253/tuprints-00003902","updated":"2019-12-12T11:01:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003895","type":"dois","attributes":{"doi":"10.0253/tuprints-00003895","updated":"2019-12-12T11:01:18.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003884","type":"dois","attributes":{"doi":"10.0253/tuprints-00003884","updated":"2019-12-12T11:01:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003892","type":"dois","attributes":{"doi":"10.0253/tuprints-00003892","updated":"2019-12-12T11:01:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003894","type":"dois","attributes":{"doi":"10.0253/tuprints-00003894","updated":"2019-12-12T11:01:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003951","type":"dois","attributes":{"doi":"10.0253/tuprints-00003951","updated":"2019-12-12T11:01:16.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003984","type":"dois","attributes":{"doi":"10.0253/tuprints-00003984","updated":"2019-12-12T11:01:15.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003985","type":"dois","attributes":{"doi":"10.0253/tuprints-00003985","updated":"2019-12-12T11:01:15.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003988","type":"dois","attributes":{"doi":"10.0253/tuprints-00003988","updated":"2019-12-12T11:01:15.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003983","type":"dois","attributes":{"doi":"10.0253/tuprints-00003983","updated":"2019-12-12T11:01:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003981","type":"dois","attributes":{"doi":"10.0253/tuprints-00003981","updated":"2019-12-12T11:01:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003979","type":"dois","attributes":{"doi":"10.0253/tuprints-00003979","updated":"2019-12-12T11:01:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003978","type":"dois","attributes":{"doi":"10.0253/tuprints-00003978","updated":"2019-12-12T11:01:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003976","type":"dois","attributes":{"doi":"10.0253/tuprints-00003976","updated":"2019-12-12T11:01:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003977","type":"dois","attributes":{"doi":"10.0253/tuprints-00003977","updated":"2019-12-12T11:01:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003972","type":"dois","attributes":{"doi":"10.0253/tuprints-00003972","updated":"2019-12-12T11:01:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003973","type":"dois","attributes":{"doi":"10.0253/tuprints-00003973","updated":"2019-12-12T11:01:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003970","type":"dois","attributes":{"doi":"10.0253/tuprints-00003970","updated":"2019-12-12T11:01:10.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003965","type":"dois","attributes":{"doi":"10.0253/tuprints-00003965","updated":"2019-12-12T11:01:10.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003964","type":"dois","attributes":{"doi":"10.0253/tuprints-00003964","updated":"2019-12-12T11:01:09.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003963","type":"dois","attributes":{"doi":"10.0253/tuprints-00003963","updated":"2019-12-12T11:01:09.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003954","type":"dois","attributes":{"doi":"10.0253/tuprints-00003954","updated":"2019-12-12T11:01:08.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003962","type":"dois","attributes":{"doi":"10.0253/tuprints-00003962","updated":"2019-12-12T11:01:08.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004001","type":"dois","attributes":{"doi":"10.0253/tuprints-00004001","updated":"2019-12-12T11:01:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003953","type":"dois","attributes":{"doi":"10.0253/tuprints-00003953","updated":"2019-12-12T11:01:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003990","type":"dois","attributes":{"doi":"10.0253/tuprints-00003990","updated":"2019-12-12T11:01:06.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004000","type":"dois","attributes":{"doi":"10.0253/tuprints-00004000","updated":"2019-12-12T11:01:06.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003989","type":"dois","attributes":{"doi":"10.0253/tuprints-00003989","updated":"2019-12-12T11:01:05.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004006","type":"dois","attributes":{"doi":"10.0253/tuprints-00004006","updated":"2019-12-12T11:01:04.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004004","type":"dois","attributes":{"doi":"10.0253/tuprints-00004004","updated":"2019-12-12T11:01:04.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004040","type":"dois","attributes":{"doi":"10.0253/tuprints-00004040","updated":"2019-12-12T11:01:03.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004041","type":"dois","attributes":{"doi":"10.0253/tuprints-00004041","updated":"2019-12-12T11:01:03.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004038","type":"dois","attributes":{"doi":"10.0253/tuprints-00004038","updated":"2019-12-12T11:01:02.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004039","type":"dois","attributes":{"doi":"10.0253/tuprints-00004039","updated":"2019-12-12T11:01:02.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004037","type":"dois","attributes":{"doi":"10.0253/tuprints-00004037","updated":"2019-12-12T11:01:01.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004035","type":"dois","attributes":{"doi":"10.0253/tuprints-00004035","updated":"2019-12-12T11:01:01.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004034","type":"dois","attributes":{"doi":"10.0253/tuprints-00004034","updated":"2019-12-12T11:01:00.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004030","type":"dois","attributes":{"doi":"10.0253/tuprints-00004030","updated":"2019-12-12T11:01:00.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004026","type":"dois","attributes":{"doi":"10.0253/tuprints-00004026","updated":"2019-12-12T11:00:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004025","type":"dois","attributes":{"doi":"10.0253/tuprints-00004025","updated":"2019-12-12T11:00:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004021","type":"dois","attributes":{"doi":"10.0253/tuprints-00004021","updated":"2019-12-12T11:00:58.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004020","type":"dois","attributes":{"doi":"10.0253/tuprints-00004020","updated":"2019-12-12T11:00:58.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004019","type":"dois","attributes":{"doi":"10.0253/tuprints-00004019","updated":"2019-12-12T11:00:57.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004018","type":"dois","attributes":{"doi":"10.0253/tuprints-00004018","updated":"2019-12-12T11:00:57.000Z"},"relationships":{}},{"id":"10.1234/g6dvjxggtk","type":"dois","attributes":{"doi":"10.1234/g6dvjxggtk","updated":"2019-12-12T11:00:56.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004017","type":"dois","attributes":{"doi":"10.0253/tuprints-00004017","updated":"2019-12-12T11:00:56.000Z"},"relationships":{}},{"id":"10.1234/g6dvjxggtk.2","type":"dois","attributes":{"doi":"10.1234/g6dvjxggtk.2","updated":"2019-12-12T11:00:56.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004009","type":"dois","attributes":{"doi":"10.0253/tuprints-00004009","updated":"2019-12-12T11:00:55.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004016","type":"dois","attributes":{"doi":"10.0253/tuprints-00004016","updated":"2019-12-12T11:00:55.000Z"},"relationships":{}},{"id":"10.1234/g6dvjxggtk.1","type":"dois","attributes":{"doi":"10.1234/g6dvjxggtk.1","updated":"2019-12-12T11:00:55.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004008","type":"dois","attributes":{"doi":"10.0253/tuprints-00004008","updated":"2019-12-12T11:00:54.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004007","type":"dois","attributes":{"doi":"10.0253/tuprints-00004007","updated":"2019-12-12T11:00:54.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004046","type":"dois","attributes":{"doi":"10.0253/tuprints-00004046","updated":"2019-12-12T11:00:53.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004047","type":"dois","attributes":{"doi":"10.0253/tuprints-00004047","updated":"2019-12-12T11:00:53.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004045","type":"dois","attributes":{"doi":"10.0253/tuprints-00004045","updated":"2019-12-12T11:00:52.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004042","type":"dois","attributes":{"doi":"10.0253/tuprints-00004042","updated":"2019-12-12T11:00:52.000Z"},"relationships":{}},{"id":"10.1234/4fkdg43n8y","type":"dois","attributes":{"doi":"10.1234/4fkdg43n8y","updated":"2019-12-12T11:00:51.000Z"},"relationships":{}},{"id":"10.1234/4fkdg43n8y.1","type":"dois","attributes":{"doi":"10.1234/4fkdg43n8y.1","updated":"2019-12-12T11:00:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004082","type":"dois","attributes":{"doi":"10.0253/tuprints-00004082","updated":"2019-12-12T11:00:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004086","type":"dois","attributes":{"doi":"10.0253/tuprints-00004086","updated":"2019-12-12T11:00:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004080","type":"dois","attributes":{"doi":"10.0253/tuprints-00004080","updated":"2019-12-12T11:00:50.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004081","type":"dois","attributes":{"doi":"10.0253/tuprints-00004081","updated":"2019-12-12T11:00:50.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004079","type":"dois","attributes":{"doi":"10.0253/tuprints-00004079","updated":"2019-12-12T11:00:49.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004078","type":"dois","attributes":{"doi":"10.0253/tuprints-00004078","updated":"2019-12-12T11:00:49.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004076","type":"dois","attributes":{"doi":"10.0253/tuprints-00004076","updated":"2019-12-12T11:00:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004077","type":"dois","attributes":{"doi":"10.0253/tuprints-00004077","updated":"2019-12-12T11:00:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004075","type":"dois","attributes":{"doi":"10.0253/tuprints-00004075","updated":"2019-12-12T11:00:47.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004073","type":"dois","attributes":{"doi":"10.0253/tuprints-00004073","updated":"2019-12-12T11:00:47.000Z"},"relationships":{}},{"id":"10.1234/5v5v5v6ctt","type":"dois","attributes":{"doi":"10.1234/5v5v5v6ctt","updated":"2019-12-12T11:00:47.000Z"},"relationships":{}},{"id":"10.1234/5v5v5v6ctt.1","type":"dois","attributes":{"doi":"10.1234/5v5v5v6ctt.1","updated":"2019-12-12T11:00:47.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004072","type":"dois","attributes":{"doi":"10.0253/tuprints-00004072","updated":"2019-12-12T11:00:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004069","type":"dois","attributes":{"doi":"10.0253/tuprints-00004069","updated":"2019-12-12T11:00:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004068","type":"dois","attributes":{"doi":"10.0253/tuprints-00004068","updated":"2019-12-12T11:00:45.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004065","type":"dois","attributes":{"doi":"10.0253/tuprints-00004065","updated":"2019-12-12T11:00:45.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004064","type":"dois","attributes":{"doi":"10.0253/tuprints-00004064","updated":"2019-12-12T11:00:44.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004060","type":"dois","attributes":{"doi":"10.0253/tuprints-00004060","updated":"2019-12-12T11:00:43.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004059","type":"dois","attributes":{"doi":"10.0253/tuprints-00004059","updated":"2019-12-12T11:00:43.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004055","type":"dois","attributes":{"doi":"10.0253/tuprints-00004055","updated":"2019-12-12T11:00:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004056","type":"dois","attributes":{"doi":"10.0253/tuprints-00004056","updated":"2019-12-12T11:00:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004052","type":"dois","attributes":{"doi":"10.0253/tuprints-00004052","updated":"2019-12-12T11:00:41.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004053","type":"dois","attributes":{"doi":"10.0253/tuprints-00004053","updated":"2019-12-12T11:00:41.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004049","type":"dois","attributes":{"doi":"10.0253/tuprints-00004049","updated":"2019-12-12T11:00:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004051","type":"dois","attributes":{"doi":"10.0253/tuprints-00004051","updated":"2019-12-12T11:00:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004159","type":"dois","attributes":{"doi":"10.0253/tuprints-00004159","updated":"2019-12-12T11:00:39.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004160","type":"dois","attributes":{"doi":"10.0253/tuprints-00004160","updated":"2019-12-12T11:00:39.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004158","type":"dois","attributes":{"doi":"10.0253/tuprints-00004158","updated":"2019-12-12T11:00:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004155","type":"dois","attributes":{"doi":"10.0253/tuprints-00004155","updated":"2019-12-12T11:00:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004152","type":"dois","attributes":{"doi":"10.0253/tuprints-00004152","updated":"2019-12-12T11:00:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004154","type":"dois","attributes":{"doi":"10.0253/tuprints-00004154","updated":"2019-12-12T11:00:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004151","type":"dois","attributes":{"doi":"10.0253/tuprints-00004151","updated":"2019-12-12T11:00:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004150","type":"dois","attributes":{"doi":"10.0253/tuprints-00004150","updated":"2019-12-12T11:00:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004148","type":"dois","attributes":{"doi":"10.0253/tuprints-00004148","updated":"2019-12-12T11:00:35.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004146","type":"dois","attributes":{"doi":"10.0253/tuprints-00004146","updated":"2019-12-12T11:00:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004147","type":"dois","attributes":{"doi":"10.0253/tuprints-00004147","updated":"2019-12-12T11:00:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004144","type":"dois","attributes":{"doi":"10.0253/tuprints-00004144","updated":"2019-12-12T11:00:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004145","type":"dois","attributes":{"doi":"10.0253/tuprints-00004145","updated":"2019-12-12T11:00:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004141","type":"dois","attributes":{"doi":"10.0253/tuprints-00004141","updated":"2019-12-12T11:00:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004142","type":"dois","attributes":{"doi":"10.0253/tuprints-00004142","updated":"2019-12-12T11:00:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004137","type":"dois","attributes":{"doi":"10.0253/tuprints-00004137","updated":"2019-12-12T11:00:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004136","type":"dois","attributes":{"doi":"10.0253/tuprints-00004136","updated":"2019-12-12T11:00:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004133","type":"dois","attributes":{"doi":"10.0253/tuprints-00004133","updated":"2019-12-12T11:00:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004134","type":"dois","attributes":{"doi":"10.0253/tuprints-00004134","updated":"2019-12-12T11:00:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004132","type":"dois","attributes":{"doi":"10.0253/tuprints-00004132","updated":"2019-12-12T11:00:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004131","type":"dois","attributes":{"doi":"10.0253/tuprints-00004131","updated":"2019-12-12T11:00:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004128","type":"dois","attributes":{"doi":"10.0253/tuprints-00004128","updated":"2019-12-12T11:00:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004129","type":"dois","attributes":{"doi":"10.0253/tuprints-00004129","updated":"2019-12-12T11:00:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004126","type":"dois","attributes":{"doi":"10.0253/tuprints-00004126","updated":"2019-12-12T11:00:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004127","type":"dois","attributes":{"doi":"10.0253/tuprints-00004127","updated":"2019-12-12T11:00:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004122","type":"dois","attributes":{"doi":"10.0253/tuprints-00004122","updated":"2019-12-12T11:00:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004123","type":"dois","attributes":{"doi":"10.0253/tuprints-00004123","updated":"2019-12-12T11:00:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004121","type":"dois","attributes":{"doi":"10.0253/tuprints-00004121","updated":"2019-12-12T11:00:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004119","type":"dois","attributes":{"doi":"10.0253/tuprints-00004119","updated":"2019-12-12T11:00:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004117","type":"dois","attributes":{"doi":"10.0253/tuprints-00004117","updated":"2019-12-12T11:00:24.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004118","type":"dois","attributes":{"doi":"10.0253/tuprints-00004118","updated":"2019-12-12T11:00:24.000Z"},"relationships":{}},{"id":"10.1234/bypxmj76wb.1","type":"dois","attributes":{"doi":"10.1234/bypxmj76wb.1","updated":"2019-12-12T11:00:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004115","type":"dois","attributes":{"doi":"10.0253/tuprints-00004115","updated":"2019-12-12T11:00:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004113","type":"dois","attributes":{"doi":"10.0253/tuprints-00004113","updated":"2019-12-12T11:00:23.000Z"},"relationships":{}},{"id":"10.1234/bypxmj76wb","type":"dois","attributes":{"doi":"10.1234/bypxmj76wb","updated":"2019-12-12T11:00:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004112","type":"dois","attributes":{"doi":"10.0253/tuprints-00004112","updated":"2019-12-12T11:00:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004107","type":"dois","attributes":{"doi":"10.0253/tuprints-00004107","updated":"2019-12-12T11:00:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004108","type":"dois","attributes":{"doi":"10.0253/tuprints-00004108","updated":"2019-12-12T11:00:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004104","type":"dois","attributes":{"doi":"10.0253/tuprints-00004104","updated":"2019-12-12T11:00:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004103","type":"dois","attributes":{"doi":"10.0253/tuprints-00004103","updated":"2019-12-12T11:00:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004102","type":"dois","attributes":{"doi":"10.0253/tuprints-00004102","updated":"2019-12-12T11:00:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004100","type":"dois","attributes":{"doi":"10.0253/tuprints-00004100","updated":"2019-12-12T11:00:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004098","type":"dois","attributes":{"doi":"10.0253/tuprints-00004098","updated":"2019-12-12T11:00:18.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004097","type":"dois","attributes":{"doi":"10.0253/tuprints-00004097","updated":"2019-12-12T11:00:18.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004091","type":"dois","attributes":{"doi":"10.0253/tuprints-00004091","updated":"2019-12-12T11:00:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004092","type":"dois","attributes":{"doi":"10.0253/tuprints-00004092","updated":"2019-12-12T11:00:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004163","type":"dois","attributes":{"doi":"10.0253/tuprints-00004163","updated":"2019-12-12T11:00:16.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004162","type":"dois","attributes":{"doi":"10.0253/tuprints-00004162","updated":"2019-12-12T11:00:16.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004161","type":"dois","attributes":{"doi":"10.0253/tuprints-00004161","updated":"2019-12-12T11:00:15.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004170","type":"dois","attributes":{"doi":"10.0253/tuprints-00004170","updated":"2019-12-12T11:00:15.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004175","type":"dois","attributes":{"doi":"10.0253/tuprints-00004175","updated":"2019-12-12T11:00:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004167","type":"dois","attributes":{"doi":"10.0253/tuprints-00004167","updated":"2019-12-12T11:00:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004181","type":"dois","attributes":{"doi":"10.0253/tuprints-00004181","updated":"2019-12-12T11:00:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004171","type":"dois","attributes":{"doi":"10.0253/tuprints-00004171","updated":"2019-12-12T11:00:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004180","type":"dois","attributes":{"doi":"10.0253/tuprints-00004180","updated":"2019-12-12T11:00:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004178","type":"dois","attributes":{"doi":"10.0253/tuprints-00004178","updated":"2019-12-12T11:00:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004179","type":"dois","attributes":{"doi":"10.0253/tuprints-00004179","updated":"2019-12-12T11:00:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004188","type":"dois","attributes":{"doi":"10.0253/tuprints-00004188","updated":"2019-12-12T11:00:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004176","type":"dois","attributes":{"doi":"10.0253/tuprints-00004176","updated":"2019-12-12T11:00:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004182","type":"dois","attributes":{"doi":"10.0253/tuprints-00004182","updated":"2019-12-12T11:00:10.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004191","type":"dois","attributes":{"doi":"10.0253/tuprints-00004191","updated":"2019-12-12T11:00:10.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004192","type":"dois","attributes":{"doi":"10.0253/tuprints-00004192","updated":"2019-12-12T11:00:09.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004193","type":"dois","attributes":{"doi":"10.0253/tuprints-00004193","updated":"2019-12-12T11:00:08.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004195","type":"dois","attributes":{"doi":"10.0253/tuprints-00004195","updated":"2019-12-12T11:00:08.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004199","type":"dois","attributes":{"doi":"10.0253/tuprints-00004199","updated":"2019-12-12T11:00:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004197","type":"dois","attributes":{"doi":"10.0253/tuprints-00004197","updated":"2019-12-12T11:00:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004202","type":"dois","attributes":{"doi":"10.0253/tuprints-00004202","updated":"2019-12-12T11:00:06.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004204","type":"dois","attributes":{"doi":"10.0253/tuprints-00004204","updated":"2019-12-12T11:00:06.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004206","type":"dois","attributes":{"doi":"10.0253/tuprints-00004206","updated":"2019-12-12T11:00:05.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004207","type":"dois","attributes":{"doi":"10.0253/tuprints-00004207","updated":"2019-12-12T11:00:04.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004208","type":"dois","attributes":{"doi":"10.0253/tuprints-00004208","updated":"2019-12-12T11:00:04.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004209","type":"dois","attributes":{"doi":"10.0253/tuprints-00004209","updated":"2019-12-12T11:00:03.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004210","type":"dois","attributes":{"doi":"10.0253/tuprints-00004210","updated":"2019-12-12T11:00:03.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004212","type":"dois","attributes":{"doi":"10.0253/tuprints-00004212","updated":"2019-12-12T11:00:02.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004213","type":"dois","attributes":{"doi":"10.0253/tuprints-00004213","updated":"2019-12-12T11:00:02.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004216","type":"dois","attributes":{"doi":"10.0253/tuprints-00004216","updated":"2019-12-12T11:00:01.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004219","type":"dois","attributes":{"doi":"10.0253/tuprints-00004219","updated":"2019-12-12T11:00:00.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004217","type":"dois","attributes":{"doi":"10.0253/tuprints-00004217","updated":"2019-12-12T11:00:00.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004221","type":"dois","attributes":{"doi":"10.0253/tuprints-00004221","updated":"2019-12-12T10:59:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004223","type":"dois","attributes":{"doi":"10.0253/tuprints-00004223","updated":"2019-12-12T10:59:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004225","type":"dois","attributes":{"doi":"10.0253/tuprints-00004225","updated":"2019-12-12T10:59:58.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004224","type":"dois","attributes":{"doi":"10.0253/tuprints-00004224","updated":"2019-12-12T10:59:58.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004227","type":"dois","attributes":{"doi":"10.0253/tuprints-00004227","updated":"2019-12-12T10:59:57.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004226","type":"dois","attributes":{"doi":"10.0253/tuprints-00004226","updated":"2019-12-12T10:59:57.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004228","type":"dois","attributes":{"doi":"10.0253/tuprints-00004228","updated":"2019-12-12T10:59:56.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004232","type":"dois","attributes":{"doi":"10.0253/tuprints-00004232","updated":"2019-12-12T10:59:55.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004229","type":"dois","attributes":{"doi":"10.0253/tuprints-00004229","updated":"2019-12-12T10:59:55.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004235","type":"dois","attributes":{"doi":"10.0253/tuprints-00004235","updated":"2019-12-12T10:59:54.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004233","type":"dois","attributes":{"doi":"10.0253/tuprints-00004233","updated":"2019-12-12T10:59:54.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004237","type":"dois","attributes":{"doi":"10.0253/tuprints-00004237","updated":"2019-12-12T10:59:53.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004238","type":"dois","attributes":{"doi":"10.0253/tuprints-00004238","updated":"2019-12-12T10:59:53.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004242","type":"dois","attributes":{"doi":"10.0253/tuprints-00004242","updated":"2019-12-12T10:59:52.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004241","type":"dois","attributes":{"doi":"10.0253/tuprints-00004241","updated":"2019-12-12T10:59:52.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004243","type":"dois","attributes":{"doi":"10.0253/tuprints-00004243","updated":"2019-12-12T10:59:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004246","type":"dois","attributes":{"doi":"10.0253/tuprints-00004246","updated":"2019-12-12T10:59:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004250","type":"dois","attributes":{"doi":"10.0253/tuprints-00004250","updated":"2019-12-12T10:59:50.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004247","type":"dois","attributes":{"doi":"10.0253/tuprints-00004247","updated":"2019-12-12T10:59:50.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004248","type":"dois","attributes":{"doi":"10.0253/tuprints-00004248","updated":"2019-12-12T10:59:50.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004251","type":"dois","attributes":{"doi":"10.0253/tuprints-00004251","updated":"2019-12-12T10:59:49.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004252","type":"dois","attributes":{"doi":"10.0253/tuprints-00004252","updated":"2019-12-12T10:59:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004253","type":"dois","attributes":{"doi":"10.0253/tuprints-00004253","updated":"2019-12-12T10:59:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004262","type":"dois","attributes":{"doi":"10.0253/tuprints-00004262","updated":"2019-12-12T10:59:47.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004257","type":"dois","attributes":{"doi":"10.0253/tuprints-00004257","updated":"2019-12-12T10:59:47.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004272","type":"dois","attributes":{"doi":"10.0253/tuprints-00004272","updated":"2019-12-12T10:59:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004258","type":"dois","attributes":{"doi":"10.0253/tuprints-00004258","updated":"2019-12-12T10:59:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004273","type":"dois","attributes":{"doi":"10.0253/tuprints-00004273","updated":"2019-12-12T10:59:45.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004279","type":"dois","attributes":{"doi":"10.0253/tuprints-00004279","updated":"2019-12-12T10:59:45.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004281","type":"dois","attributes":{"doi":"10.0253/tuprints-00004281","updated":"2019-12-12T10:59:44.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004283","type":"dois","attributes":{"doi":"10.0253/tuprints-00004283","updated":"2019-12-12T10:59:44.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004285","type":"dois","attributes":{"doi":"10.0253/tuprints-00004285","updated":"2019-12-12T10:59:43.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004286","type":"dois","attributes":{"doi":"10.0253/tuprints-00004286","updated":"2019-12-12T10:59:43.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004288","type":"dois","attributes":{"doi":"10.0253/tuprints-00004288","updated":"2019-12-12T10:59:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004287","type":"dois","attributes":{"doi":"10.0253/tuprints-00004287","updated":"2019-12-12T10:59:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004290","type":"dois","attributes":{"doi":"10.0253/tuprints-00004290","updated":"2019-12-12T10:59:41.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004289","type":"dois","attributes":{"doi":"10.0253/tuprints-00004289","updated":"2019-12-12T10:59:41.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004294","type":"dois","attributes":{"doi":"10.0253/tuprints-00004294","updated":"2019-12-12T10:59:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004292","type":"dois","attributes":{"doi":"10.0253/tuprints-00004292","updated":"2019-12-12T10:59:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004298","type":"dois","attributes":{"doi":"10.0253/tuprints-00004298","updated":"2019-12-12T10:59:39.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004296","type":"dois","attributes":{"doi":"10.0253/tuprints-00004296","updated":"2019-12-12T10:59:39.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004302","type":"dois","attributes":{"doi":"10.0253/tuprints-00004302","updated":"2019-12-12T10:59:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004300","type":"dois","attributes":{"doi":"10.0253/tuprints-00004300","updated":"2019-12-12T10:59:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004303","type":"dois","attributes":{"doi":"10.0253/tuprints-00004303","updated":"2019-12-12T10:59:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004304","type":"dois","attributes":{"doi":"10.0253/tuprints-00004304","updated":"2019-12-12T10:59:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004307","type":"dois","attributes":{"doi":"10.0253/tuprints-00004307","updated":"2019-12-12T10:59:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004306","type":"dois","attributes":{"doi":"10.0253/tuprints-00004306","updated":"2019-12-12T10:59:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004308","type":"dois","attributes":{"doi":"10.0253/tuprints-00004308","updated":"2019-12-12T10:59:35.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004309","type":"dois","attributes":{"doi":"10.0253/tuprints-00004309","updated":"2019-12-12T10:59:35.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004310","type":"dois","attributes":{"doi":"10.0253/tuprints-00004310","updated":"2019-12-12T10:59:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004311","type":"dois","attributes":{"doi":"10.0253/tuprints-00004311","updated":"2019-12-12T10:59:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004315","type":"dois","attributes":{"doi":"10.0253/tuprints-00004315","updated":"2019-12-12T10:59:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004313","type":"dois","attributes":{"doi":"10.0253/tuprints-00004313","updated":"2019-12-12T10:59:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004316","type":"dois","attributes":{"doi":"10.0253/tuprints-00004316","updated":"2019-12-12T10:59:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004318","type":"dois","attributes":{"doi":"10.0253/tuprints-00004318","updated":"2019-12-12T10:59:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004320","type":"dois","attributes":{"doi":"10.0253/tuprints-00004320","updated":"2019-12-12T10:59:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004319","type":"dois","attributes":{"doi":"10.0253/tuprints-00004319","updated":"2019-12-12T10:59:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004321","type":"dois","attributes":{"doi":"10.0253/tuprints-00004321","updated":"2019-12-12T10:59:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004332","type":"dois","attributes":{"doi":"10.0253/tuprints-00004332","updated":"2019-12-12T10:59:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004322","type":"dois","attributes":{"doi":"10.0253/tuprints-00004322","updated":"2019-12-12T10:59:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004335","type":"dois","attributes":{"doi":"10.0253/tuprints-00004335","updated":"2019-12-12T10:59:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004333","type":"dois","attributes":{"doi":"10.0253/tuprints-00004333","updated":"2019-12-12T10:59:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004341","type":"dois","attributes":{"doi":"10.0253/tuprints-00004341","updated":"2019-12-12T10:59:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004342","type":"dois","attributes":{"doi":"10.0253/tuprints-00004342","updated":"2019-12-12T10:59:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004339","type":"dois","attributes":{"doi":"10.0253/tuprints-00004339","updated":"2019-12-12T10:59:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004338","type":"dois","attributes":{"doi":"10.0253/tuprints-00004338","updated":"2019-12-12T10:59:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004367","type":"dois","attributes":{"doi":"10.0253/tuprints-00004367","updated":"2019-12-12T10:59:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004366","type":"dois","attributes":{"doi":"10.0253/tuprints-00004366","updated":"2019-12-12T10:59:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004361","type":"dois","attributes":{"doi":"10.0253/tuprints-00004361","updated":"2019-12-12T10:59:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004355","type":"dois","attributes":{"doi":"10.0253/tuprints-00004355","updated":"2019-12-12T10:59:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004359","type":"dois","attributes":{"doi":"10.0253/tuprints-00004359","updated":"2019-12-12T10:59:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004354","type":"dois","attributes":{"doi":"10.0253/tuprints-00004354","updated":"2019-12-12T10:59:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004352","type":"dois","attributes":{"doi":"10.0253/tuprints-00004352","updated":"2019-12-12T10:59:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004349","type":"dois","attributes":{"doi":"10.0253/tuprints-00004349","updated":"2019-12-12T10:59:18.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004350","type":"dois","attributes":{"doi":"10.0253/tuprints-00004350","updated":"2019-12-12T10:59:18.000Z"},"relationships":{}},{"id":"10.33593/morressier.5aeb0ac507b0d6001a79a03b","type":"dois","attributes":{"doi":"10.33593/morressier.5aeb0ac507b0d6001a79a03b","updated":"2019-12-12T10:59:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004348","type":"dois","attributes":{"doi":"10.0253/tuprints-00004348","updated":"2019-12-12T10:59:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004347","type":"dois","attributes":{"doi":"10.0253/tuprints-00004347","updated":"2019-12-12T10:59:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004346","type":"dois","attributes":{"doi":"10.0253/tuprints-00004346","updated":"2019-12-12T10:59:16.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004383","type":"dois","attributes":{"doi":"10.0253/tuprints-00004383","updated":"2019-12-12T10:59:15.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004343","type":"dois","attributes":{"doi":"10.0253/tuprints-00004343","updated":"2019-12-12T10:59:15.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004380","type":"dois","attributes":{"doi":"10.0253/tuprints-00004380","updated":"2019-12-12T10:59:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004382","type":"dois","attributes":{"doi":"10.0253/tuprints-00004382","updated":"2019-12-12T10:59:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004379","type":"dois","attributes":{"doi":"10.0253/tuprints-00004379","updated":"2019-12-12T10:59:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004377","type":"dois","attributes":{"doi":"10.0253/tuprints-00004377","updated":"2019-12-12T10:59:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004369","type":"dois","attributes":{"doi":"10.0253/tuprints-00004369","updated":"2019-12-12T10:59:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004376","type":"dois","attributes":{"doi":"10.0253/tuprints-00004376","updated":"2019-12-12T10:59:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004430","type":"dois","attributes":{"doi":"10.0253/tuprints-00004430","updated":"2019-12-12T10:59:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004429","type":"dois","attributes":{"doi":"10.0253/tuprints-00004429","updated":"2019-12-12T10:59:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004428","type":"dois","attributes":{"doi":"10.0253/tuprints-00004428","updated":"2019-12-12T10:59:10.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004426","type":"dois","attributes":{"doi":"10.0253/tuprints-00004426","updated":"2019-12-12T10:59:09.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004427","type":"dois","attributes":{"doi":"10.0253/tuprints-00004427","updated":"2019-12-12T10:59:09.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004420","type":"dois","attributes":{"doi":"10.0253/tuprints-00004420","updated":"2019-12-12T10:59:08.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004423","type":"dois","attributes":{"doi":"10.0253/tuprints-00004423","updated":"2019-12-12T10:59:08.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004419","type":"dois","attributes":{"doi":"10.0253/tuprints-00004419","updated":"2019-12-12T10:59:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004415","type":"dois","attributes":{"doi":"10.0253/tuprints-00004415","updated":"2019-12-12T10:59:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004411","type":"dois","attributes":{"doi":"10.0253/tuprints-00004411","updated":"2019-12-12T10:59:06.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004412","type":"dois","attributes":{"doi":"10.0253/tuprints-00004412","updated":"2019-12-12T10:59:06.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004409","type":"dois","attributes":{"doi":"10.0253/tuprints-00004409","updated":"2019-12-12T10:59:05.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004405","type":"dois","attributes":{"doi":"10.0253/tuprints-00004405","updated":"2019-12-12T10:59:05.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004401","type":"dois","attributes":{"doi":"10.0253/tuprints-00004401","updated":"2019-12-12T10:59:04.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004402","type":"dois","attributes":{"doi":"10.0253/tuprints-00004402","updated":"2019-12-12T10:59:04.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004400","type":"dois","attributes":{"doi":"10.0253/tuprints-00004400","updated":"2019-12-12T10:59:03.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004399","type":"dois","attributes":{"doi":"10.0253/tuprints-00004399","updated":"2019-12-12T10:59:02.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004398","type":"dois","attributes":{"doi":"10.0253/tuprints-00004398","updated":"2019-12-12T10:59:02.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004397","type":"dois","attributes":{"doi":"10.0253/tuprints-00004397","updated":"2019-12-12T10:59:01.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004396","type":"dois","attributes":{"doi":"10.0253/tuprints-00004396","updated":"2019-12-12T10:59:01.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004391","type":"dois","attributes":{"doi":"10.0253/tuprints-00004391","updated":"2019-12-12T10:59:00.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004395","type":"dois","attributes":{"doi":"10.0253/tuprints-00004395","updated":"2019-12-12T10:59:00.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004390","type":"dois","attributes":{"doi":"10.0253/tuprints-00004390","updated":"2019-12-12T10:58:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004389","type":"dois","attributes":{"doi":"10.0253/tuprints-00004389","updated":"2019-12-12T10:58:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004387","type":"dois","attributes":{"doi":"10.0253/tuprints-00004387","updated":"2019-12-12T10:58:58.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004385","type":"dois","attributes":{"doi":"10.0253/tuprints-00004385","updated":"2019-12-12T10:58:58.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004449","type":"dois","attributes":{"doi":"10.0253/tuprints-00004449","updated":"2019-12-12T10:58:57.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004384","type":"dois","attributes":{"doi":"10.0253/tuprints-00004384","updated":"2019-12-12T10:58:57.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004447","type":"dois","attributes":{"doi":"10.0253/tuprints-00004447","updated":"2019-12-12T10:58:56.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004448","type":"dois","attributes":{"doi":"10.0253/tuprints-00004448","updated":"2019-12-12T10:58:56.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004446","type":"dois","attributes":{"doi":"10.0253/tuprints-00004446","updated":"2019-12-12T10:58:55.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004444","type":"dois","attributes":{"doi":"10.0253/tuprints-00004444","updated":"2019-12-12T10:58:54.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004443","type":"dois","attributes":{"doi":"10.0253/tuprints-00004443","updated":"2019-12-12T10:58:54.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004438","type":"dois","attributes":{"doi":"10.0253/tuprints-00004438","updated":"2019-12-12T10:58:53.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004442","type":"dois","attributes":{"doi":"10.0253/tuprints-00004442","updated":"2019-12-12T10:58:53.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004437","type":"dois","attributes":{"doi":"10.0253/tuprints-00004437","updated":"2019-12-12T10:58:52.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004432","type":"dois","attributes":{"doi":"10.0253/tuprints-00004432","updated":"2019-12-12T10:58:52.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004431","type":"dois","attributes":{"doi":"10.0253/tuprints-00004431","updated":"2019-12-12T10:58:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004458","type":"dois","attributes":{"doi":"10.0253/tuprints-00004458","updated":"2019-12-12T10:58:50.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004459","type":"dois","attributes":{"doi":"10.0253/tuprints-00004459","updated":"2019-12-12T10:58:50.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004457","type":"dois","attributes":{"doi":"10.0253/tuprints-00004457","updated":"2019-12-12T10:58:49.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004455","type":"dois","attributes":{"doi":"10.0253/tuprints-00004455","updated":"2019-12-12T10:58:49.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004453","type":"dois","attributes":{"doi":"10.0253/tuprints-00004453","updated":"2019-12-12T10:58:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004454","type":"dois","attributes":{"doi":"10.0253/tuprints-00004454","updated":"2019-12-12T10:58:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004463","type":"dois","attributes":{"doi":"10.0253/tuprints-00004463","updated":"2019-12-12T10:58:47.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004464","type":"dois","attributes":{"doi":"10.0253/tuprints-00004464","updated":"2019-12-12T10:58:47.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004462","type":"dois","attributes":{"doi":"10.0253/tuprints-00004462","updated":"2019-12-12T10:58:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004460","type":"dois","attributes":{"doi":"10.0253/tuprints-00004460","updated":"2019-12-12T10:58:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004479","type":"dois","attributes":{"doi":"10.0253/tuprints-00004479","updated":"2019-12-12T10:58:45.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004466","type":"dois","attributes":{"doi":"10.0253/tuprints-00004466","updated":"2019-12-12T10:58:45.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004478","type":"dois","attributes":{"doi":"10.0253/tuprints-00004478","updated":"2019-12-12T10:58:44.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004476","type":"dois","attributes":{"doi":"10.0253/tuprints-00004476","updated":"2019-12-12T10:58:44.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004475","type":"dois","attributes":{"doi":"10.0253/tuprints-00004475","updated":"2019-12-12T10:58:43.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004472","type":"dois","attributes":{"doi":"10.0253/tuprints-00004472","updated":"2019-12-12T10:58:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004471","type":"dois","attributes":{"doi":"10.0253/tuprints-00004471","updated":"2019-12-12T10:58:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004469","type":"dois","attributes":{"doi":"10.0253/tuprints-00004469","updated":"2019-12-12T10:58:41.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004470","type":"dois","attributes":{"doi":"10.0253/tuprints-00004470","updated":"2019-12-12T10:58:41.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004467","type":"dois","attributes":{"doi":"10.0253/tuprints-00004467","updated":"2019-12-12T10:58:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004468","type":"dois","attributes":{"doi":"10.0253/tuprints-00004468","updated":"2019-12-12T10:58:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004500","type":"dois","attributes":{"doi":"10.0253/tuprints-00004500","updated":"2019-12-12T10:58:39.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004492","type":"dois","attributes":{"doi":"10.0253/tuprints-00004492","updated":"2019-12-12T10:58:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004493","type":"dois","attributes":{"doi":"10.0253/tuprints-00004493","updated":"2019-12-12T10:58:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004491","type":"dois","attributes":{"doi":"10.0253/tuprints-00004491","updated":"2019-12-12T10:58:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004489","type":"dois","attributes":{"doi":"10.0253/tuprints-00004489","updated":"2019-12-12T10:58:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004486","type":"dois","attributes":{"doi":"10.0253/tuprints-00004486","updated":"2019-12-12T10:58:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004483","type":"dois","attributes":{"doi":"10.0253/tuprints-00004483","updated":"2019-12-12T10:58:35.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004484","type":"dois","attributes":{"doi":"10.0253/tuprints-00004484","updated":"2019-12-12T10:58:35.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004481","type":"dois","attributes":{"doi":"10.0253/tuprints-00004481","updated":"2019-12-12T10:58:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004480","type":"dois","attributes":{"doi":"10.0253/tuprints-00004480","updated":"2019-12-12T10:58:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004544","type":"dois","attributes":{"doi":"10.0253/tuprints-00004544","updated":"2019-12-12T10:58:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004543","type":"dois","attributes":{"doi":"10.0253/tuprints-00004543","updated":"2019-12-12T10:58:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004540","type":"dois","attributes":{"doi":"10.0253/tuprints-00004540","updated":"2019-12-12T10:58:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004542","type":"dois","attributes":{"doi":"10.0253/tuprints-00004542","updated":"2019-12-12T10:58:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004539","type":"dois","attributes":{"doi":"10.0253/tuprints-00004539","updated":"2019-12-12T10:58:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004538","type":"dois","attributes":{"doi":"10.0253/tuprints-00004538","updated":"2019-12-12T10:58:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004535","type":"dois","attributes":{"doi":"10.0253/tuprints-00004535","updated":"2019-12-12T10:58:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004536","type":"dois","attributes":{"doi":"10.0253/tuprints-00004536","updated":"2019-12-12T10:58:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004533","type":"dois","attributes":{"doi":"10.0253/tuprints-00004533","updated":"2019-12-12T10:58:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004534","type":"dois","attributes":{"doi":"10.0253/tuprints-00004534","updated":"2019-12-12T10:58:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004531","type":"dois","attributes":{"doi":"10.0253/tuprints-00004531","updated":"2019-12-12T10:58:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004526","type":"dois","attributes":{"doi":"10.0253/tuprints-00004526","updated":"2019-12-12T10:58:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004512","type":"dois","attributes":{"doi":"10.0253/tuprints-00004512","updated":"2019-12-12T10:58:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004576","type":"dois","attributes":{"doi":"10.0253/tuprints-00004576","updated":"2019-12-12T10:58:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004546","type":"dois","attributes":{"doi":"10.0253/tuprints-00004546","updated":"2019-12-12T10:58:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004574","type":"dois","attributes":{"doi":"10.0253/tuprints-00004574","updated":"2019-12-12T10:58:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004575","type":"dois","attributes":{"doi":"10.0253/tuprints-00004575","updated":"2019-12-12T10:58:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004573","type":"dois","attributes":{"doi":"10.0253/tuprints-00004573","updated":"2019-12-12T10:58:24.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004572","type":"dois","attributes":{"doi":"10.0253/tuprints-00004572","updated":"2019-12-12T10:58:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004571","type":"dois","attributes":{"doi":"10.0253/tuprints-00004571","updated":"2019-12-12T10:58:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004569","type":"dois","attributes":{"doi":"10.0253/tuprints-00004569","updated":"2019-12-12T10:58:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004568","type":"dois","attributes":{"doi":"10.0253/tuprints-00004568","updated":"2019-12-12T10:58:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004566","type":"dois","attributes":{"doi":"10.0253/tuprints-00004566","updated":"2019-12-12T10:58:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004564","type":"dois","attributes":{"doi":"10.0253/tuprints-00004564","updated":"2019-12-12T10:58:20.000Z"},"relationships":{}},{"id":"10.4124/y35zb29x3n.1","type":"dois","attributes":{"doi":"10.4124/y35zb29x3n.1","updated":"2019-12-12T10:58:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004562","type":"dois","attributes":{"doi":"10.0253/tuprints-00004562","updated":"2019-12-12T10:58:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004559","type":"dois","attributes":{"doi":"10.0253/tuprints-00004559","updated":"2019-12-12T10:58:19.000Z"},"relationships":{}},{"id":"10.4124/y35zb29x3n","type":"dois","attributes":{"doi":"10.4124/y35zb29x3n","updated":"2019-12-12T10:58:18.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004558","type":"dois","attributes":{"doi":"10.0253/tuprints-00004558","updated":"2019-12-12T10:58:18.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004555","type":"dois","attributes":{"doi":"10.0253/tuprints-00004555","updated":"2019-12-12T10:58:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004554","type":"dois","attributes":{"doi":"10.0253/tuprints-00004554","updated":"2019-12-12T10:58:16.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004549","type":"dois","attributes":{"doi":"10.0253/tuprints-00004549","updated":"2019-12-12T10:58:15.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004548","type":"dois","attributes":{"doi":"10.0253/tuprints-00004548","updated":"2019-12-12T10:58:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004585","type":"dois","attributes":{"doi":"10.0253/tuprints-00004585","updated":"2019-12-12T10:58:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004547","type":"dois","attributes":{"doi":"10.0253/tuprints-00004547","updated":"2019-12-12T10:58:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004583","type":"dois","attributes":{"doi":"10.0253/tuprints-00004583","updated":"2019-12-12T10:58:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004584","type":"dois","attributes":{"doi":"10.0253/tuprints-00004584","updated":"2019-12-12T10:58:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004580","type":"dois","attributes":{"doi":"10.0253/tuprints-00004580","updated":"2019-12-12T10:58:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004582","type":"dois","attributes":{"doi":"10.0253/tuprints-00004582","updated":"2019-12-12T10:58:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004578","type":"dois","attributes":{"doi":"10.0253/tuprints-00004578","updated":"2019-12-12T10:58:10.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004577","type":"dois","attributes":{"doi":"10.0253/tuprints-00004577","updated":"2019-12-12T10:58:09.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004588","type":"dois","attributes":{"doi":"10.0253/tuprints-00004588","updated":"2019-12-12T10:58:09.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004653","type":"dois","attributes":{"doi":"10.0253/tuprints-00004653","updated":"2019-12-12T10:58:08.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004587","type":"dois","attributes":{"doi":"10.0253/tuprints-00004587","updated":"2019-12-12T10:58:08.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004652","type":"dois","attributes":{"doi":"10.0253/tuprints-00004652","updated":"2019-12-12T10:58:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004651","type":"dois","attributes":{"doi":"10.0253/tuprints-00004651","updated":"2019-12-12T10:58:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004649","type":"dois","attributes":{"doi":"10.0253/tuprints-00004649","updated":"2019-12-12T10:58:06.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004646","type":"dois","attributes":{"doi":"10.0253/tuprints-00004646","updated":"2019-12-12T10:58:05.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004644","type":"dois","attributes":{"doi":"10.0253/tuprints-00004644","updated":"2019-12-12T10:58:05.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004640","type":"dois","attributes":{"doi":"10.0253/tuprints-00004640","updated":"2019-12-12T10:58:04.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004642","type":"dois","attributes":{"doi":"10.0253/tuprints-00004642","updated":"2019-12-12T10:58:04.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004636","type":"dois","attributes":{"doi":"10.0253/tuprints-00004636","updated":"2019-12-12T10:58:03.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004637","type":"dois","attributes":{"doi":"10.0253/tuprints-00004637","updated":"2019-12-12T10:58:03.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004634","type":"dois","attributes":{"doi":"10.0253/tuprints-00004634","updated":"2019-12-12T10:58:02.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004631","type":"dois","attributes":{"doi":"10.0253/tuprints-00004631","updated":"2019-12-12T10:58:01.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004633","type":"dois","attributes":{"doi":"10.0253/tuprints-00004633","updated":"2019-12-12T10:58:01.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004630","type":"dois","attributes":{"doi":"10.0253/tuprints-00004630","updated":"2019-12-12T10:58:00.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004629","type":"dois","attributes":{"doi":"10.0253/tuprints-00004629","updated":"2019-12-12T10:57:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004623","type":"dois","attributes":{"doi":"10.0253/tuprints-00004623","updated":"2019-12-12T10:57:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004622","type":"dois","attributes":{"doi":"10.0253/tuprints-00004622","updated":"2019-12-12T10:57:58.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004619","type":"dois","attributes":{"doi":"10.0253/tuprints-00004619","updated":"2019-12-12T10:57:57.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004620","type":"dois","attributes":{"doi":"10.0253/tuprints-00004620","updated":"2019-12-12T10:57:57.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004618","type":"dois","attributes":{"doi":"10.0253/tuprints-00004618","updated":"2019-12-12T10:57:56.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004617","type":"dois","attributes":{"doi":"10.0253/tuprints-00004617","updated":"2019-12-12T10:57:56.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004616","type":"dois","attributes":{"doi":"10.0253/tuprints-00004616","updated":"2019-12-12T10:57:55.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004613","type":"dois","attributes":{"doi":"10.0253/tuprints-00004613","updated":"2019-12-12T10:57:54.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004614","type":"dois","attributes":{"doi":"10.0253/tuprints-00004614","updated":"2019-12-12T10:57:54.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004612","type":"dois","attributes":{"doi":"10.0253/tuprints-00004612","updated":"2019-12-12T10:57:53.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004609","type":"dois","attributes":{"doi":"10.0253/tuprints-00004609","updated":"2019-12-12T10:57:52.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004611","type":"dois","attributes":{"doi":"10.0253/tuprints-00004611","updated":"2019-12-12T10:57:52.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004608","type":"dois","attributes":{"doi":"10.0253/tuprints-00004608","updated":"2019-12-12T10:57:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004607","type":"dois","attributes":{"doi":"10.0253/tuprints-00004607","updated":"2019-12-12T10:57:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004606","type":"dois","attributes":{"doi":"10.0253/tuprints-00004606","updated":"2019-12-12T10:57:50.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004604","type":"dois","attributes":{"doi":"10.0253/tuprints-00004604","updated":"2019-12-12T10:57:49.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004603","type":"dois","attributes":{"doi":"10.0253/tuprints-00004603","updated":"2019-12-12T10:57:49.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004602","type":"dois","attributes":{"doi":"10.0253/tuprints-00004602","updated":"2019-12-12T10:57:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004600","type":"dois","attributes":{"doi":"10.0253/tuprints-00004600","updated":"2019-12-12T10:57:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004599","type":"dois","attributes":{"doi":"10.0253/tuprints-00004599","updated":"2019-12-12T10:57:47.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004595","type":"dois","attributes":{"doi":"10.0253/tuprints-00004595","updated":"2019-12-12T10:57:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004597","type":"dois","attributes":{"doi":"10.0253/tuprints-00004597","updated":"2019-12-12T10:57:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004594","type":"dois","attributes":{"doi":"10.0253/tuprints-00004594","updated":"2019-12-12T10:57:45.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004592","type":"dois","attributes":{"doi":"10.0253/tuprints-00004592","updated":"2019-12-12T10:57:44.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004593","type":"dois","attributes":{"doi":"10.0253/tuprints-00004593","updated":"2019-12-12T10:57:44.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004591","type":"dois","attributes":{"doi":"10.0253/tuprints-00004591","updated":"2019-12-12T10:57:43.000Z"},"relationships":{}},{"id":"10.4124/878fkcfdw8.1","type":"dois","attributes":{"doi":"10.4124/878fkcfdw8.1","updated":"2019-12-12T10:57:43.000Z"},"relationships":{}},{"id":"10.4124/878fkcfdw8","type":"dois","attributes":{"doi":"10.4124/878fkcfdw8","updated":"2019-12-12T10:57:43.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004654","type":"dois","attributes":{"doi":"10.0253/tuprints-00004654","updated":"2019-12-12T10:57:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004655","type":"dois","attributes":{"doi":"10.0253/tuprints-00004655","updated":"2019-12-12T10:57:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004658","type":"dois","attributes":{"doi":"10.0253/tuprints-00004658","updated":"2019-12-12T10:57:41.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004662","type":"dois","attributes":{"doi":"10.0253/tuprints-00004662","updated":"2019-12-12T10:57:41.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004664","type":"dois","attributes":{"doi":"10.0253/tuprints-00004664","updated":"2019-12-12T10:57:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004663","type":"dois","attributes":{"doi":"10.0253/tuprints-00004663","updated":"2019-12-12T10:57:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004690","type":"dois","attributes":{"doi":"10.0253/tuprints-00004690","updated":"2019-12-12T10:57:39.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004689","type":"dois","attributes":{"doi":"10.0253/tuprints-00004689","updated":"2019-12-12T10:57:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004688","type":"dois","attributes":{"doi":"10.0253/tuprints-00004688","updated":"2019-12-12T10:57:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004679","type":"dois","attributes":{"doi":"10.0253/tuprints-00004679","updated":"2019-12-12T10:57:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004686","type":"dois","attributes":{"doi":"10.0253/tuprints-00004686","updated":"2019-12-12T10:57:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004677","type":"dois","attributes":{"doi":"10.0253/tuprints-00004677","updated":"2019-12-12T10:57:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004678","type":"dois","attributes":{"doi":"10.0253/tuprints-00004678","updated":"2019-12-12T10:57:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004675","type":"dois","attributes":{"doi":"10.0253/tuprints-00004675","updated":"2019-12-12T10:57:35.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004676","type":"dois","attributes":{"doi":"10.0253/tuprints-00004676","updated":"2019-12-12T10:57:35.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004673","type":"dois","attributes":{"doi":"10.0253/tuprints-00004673","updated":"2019-12-12T10:57:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004670","type":"dois","attributes":{"doi":"10.0253/tuprints-00004670","updated":"2019-12-12T10:57:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004671","type":"dois","attributes":{"doi":"10.0253/tuprints-00004671","updated":"2019-12-12T10:57:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004668","type":"dois","attributes":{"doi":"10.0253/tuprints-00004668","updated":"2019-12-12T10:57:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004669","type":"dois","attributes":{"doi":"10.0253/tuprints-00004669","updated":"2019-12-12T10:57:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004666","type":"dois","attributes":{"doi":"10.0253/tuprints-00004666","updated":"2019-12-12T10:57:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004712","type":"dois","attributes":{"doi":"10.0253/tuprints-00004712","updated":"2019-12-12T10:57:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004691","type":"dois","attributes":{"doi":"10.0253/tuprints-00004691","updated":"2019-12-12T10:57:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004710","type":"dois","attributes":{"doi":"10.0253/tuprints-00004710","updated":"2019-12-12T10:57:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004711","type":"dois","attributes":{"doi":"10.0253/tuprints-00004711","updated":"2019-12-12T10:57:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004709","type":"dois","attributes":{"doi":"10.0253/tuprints-00004709","updated":"2019-12-12T10:57:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004705","type":"dois","attributes":{"doi":"10.0253/tuprints-00004705","updated":"2019-12-12T10:57:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004704","type":"dois","attributes":{"doi":"10.0253/tuprints-00004704","updated":"2019-12-12T10:57:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004703","type":"dois","attributes":{"doi":"10.0253/tuprints-00004703","updated":"2019-12-12T10:57:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004701","type":"dois","attributes":{"doi":"10.0253/tuprints-00004701","updated":"2019-12-12T10:57:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004702","type":"dois","attributes":{"doi":"10.0253/tuprints-00004702","updated":"2019-12-12T10:57:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004700","type":"dois","attributes":{"doi":"10.0253/tuprints-00004700","updated":"2019-12-12T10:57:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004699","type":"dois","attributes":{"doi":"10.0253/tuprints-00004699","updated":"2019-12-12T10:57:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004696","type":"dois","attributes":{"doi":"10.0253/tuprints-00004696","updated":"2019-12-12T10:57:24.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004695","type":"dois","attributes":{"doi":"10.0253/tuprints-00004695","updated":"2019-12-12T10:57:24.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004716","type":"dois","attributes":{"doi":"10.0253/tuprints-00004716","updated":"2019-12-12T10:57:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004693","type":"dois","attributes":{"doi":"10.0253/tuprints-00004693","updated":"2019-12-12T10:57:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004715","type":"dois","attributes":{"doi":"10.0253/tuprints-00004715","updated":"2019-12-12T10:57:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004714","type":"dois","attributes":{"doi":"10.0253/tuprints-00004714","updated":"2019-12-12T10:57:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004713","type":"dois","attributes":{"doi":"10.0253/tuprints-00004713","updated":"2019-12-12T10:57:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005172","type":"dois","attributes":{"doi":"10.0253/tuprints-00005172","updated":"2019-12-12T10:57:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004717","type":"dois","attributes":{"doi":"10.0253/tuprints-00004717","updated":"2019-12-12T10:57:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005170","type":"dois","attributes":{"doi":"10.0253/tuprints-00005170","updated":"2019-12-12T10:57:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005169","type":"dois","attributes":{"doi":"10.0253/tuprints-00005169","updated":"2019-12-12T10:57:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005166","type":"dois","attributes":{"doi":"10.0253/tuprints-00005166","updated":"2019-12-12T10:57:18.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005167","type":"dois","attributes":{"doi":"10.0253/tuprints-00005167","updated":"2019-12-12T10:57:18.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005163","type":"dois","attributes":{"doi":"10.0253/tuprints-00005163","updated":"2019-12-12T10:57:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005162","type":"dois","attributes":{"doi":"10.0253/tuprints-00005162","updated":"2019-12-12T10:57:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005157","type":"dois","attributes":{"doi":"10.0253/tuprints-00005157","updated":"2019-12-12T10:57:16.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005154","type":"dois","attributes":{"doi":"10.0253/tuprints-00005154","updated":"2019-12-12T10:57:16.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005151","type":"dois","attributes":{"doi":"10.0253/tuprints-00005151","updated":"2019-12-12T10:57:15.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005145","type":"dois","attributes":{"doi":"10.0253/tuprints-00005145","updated":"2019-12-12T10:57:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005148","type":"dois","attributes":{"doi":"10.0253/tuprints-00005148","updated":"2019-12-12T10:57:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005144","type":"dois","attributes":{"doi":"10.0253/tuprints-00005144","updated":"2019-12-12T10:57:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005139","type":"dois","attributes":{"doi":"10.0253/tuprints-00005139","updated":"2019-12-12T10:57:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005143","type":"dois","attributes":{"doi":"10.0253/tuprints-00005143","updated":"2019-12-12T10:57:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005138","type":"dois","attributes":{"doi":"10.0253/tuprints-00005138","updated":"2019-12-12T10:57:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005137","type":"dois","attributes":{"doi":"10.0253/tuprints-00005137","updated":"2019-12-12T10:57:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005134","type":"dois","attributes":{"doi":"10.0253/tuprints-00005134","updated":"2019-12-12T10:57:10.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005136","type":"dois","attributes":{"doi":"10.0253/tuprints-00005136","updated":"2019-12-12T10:57:10.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005133","type":"dois","attributes":{"doi":"10.0253/tuprints-00005133","updated":"2019-12-12T10:57:09.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005131","type":"dois","attributes":{"doi":"10.0253/tuprints-00005131","updated":"2019-12-12T10:57:08.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005129","type":"dois","attributes":{"doi":"10.0253/tuprints-00005129","updated":"2019-12-12T10:57:08.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005126","type":"dois","attributes":{"doi":"10.0253/tuprints-00005126","updated":"2019-12-12T10:57:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005127","type":"dois","attributes":{"doi":"10.0253/tuprints-00005127","updated":"2019-12-12T10:57:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005125","type":"dois","attributes":{"doi":"10.0253/tuprints-00005125","updated":"2019-12-12T10:57:06.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005032","type":"dois","attributes":{"doi":"10.0253/tuprints-00005032","updated":"2019-12-12T10:57:05.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005030","type":"dois","attributes":{"doi":"10.0253/tuprints-00005030","updated":"2019-12-12T10:57:04.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005031","type":"dois","attributes":{"doi":"10.0253/tuprints-00005031","updated":"2019-12-12T10:57:04.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005025","type":"dois","attributes":{"doi":"10.0253/tuprints-00005025","updated":"2019-12-12T10:57:03.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005028","type":"dois","attributes":{"doi":"10.0253/tuprints-00005028","updated":"2019-12-12T10:57:03.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005023","type":"dois","attributes":{"doi":"10.0253/tuprints-00005023","updated":"2019-12-12T10:57:02.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005024","type":"dois","attributes":{"doi":"10.0253/tuprints-00005024","updated":"2019-12-12T10:57:02.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005022","type":"dois","attributes":{"doi":"10.0253/tuprints-00005022","updated":"2019-12-12T10:57:01.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005015","type":"dois","attributes":{"doi":"10.0253/tuprints-00005015","updated":"2019-12-12T10:57:00.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005016","type":"dois","attributes":{"doi":"10.0253/tuprints-00005016","updated":"2019-12-12T10:57:00.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005012","type":"dois","attributes":{"doi":"10.0253/tuprints-00005012","updated":"2019-12-12T10:56:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005014","type":"dois","attributes":{"doi":"10.0253/tuprints-00005014","updated":"2019-12-12T10:56:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005011","type":"dois","attributes":{"doi":"10.0253/tuprints-00005011","updated":"2019-12-12T10:56:58.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005010","type":"dois","attributes":{"doi":"10.0253/tuprints-00005010","updated":"2019-12-12T10:56:58.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005008","type":"dois","attributes":{"doi":"10.0253/tuprints-00005008","updated":"2019-12-12T10:56:57.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005009","type":"dois","attributes":{"doi":"10.0253/tuprints-00005009","updated":"2019-12-12T10:56:57.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005006","type":"dois","attributes":{"doi":"10.0253/tuprints-00005006","updated":"2019-12-12T10:56:56.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005007","type":"dois","attributes":{"doi":"10.0253/tuprints-00005007","updated":"2019-12-12T10:56:56.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005003","type":"dois","attributes":{"doi":"10.0253/tuprints-00005003","updated":"2019-12-12T10:56:55.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005005","type":"dois","attributes":{"doi":"10.0253/tuprints-00005005","updated":"2019-12-12T10:56:55.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004996","type":"dois","attributes":{"doi":"10.0253/tuprints-00004996","updated":"2019-12-12T10:56:54.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004995","type":"dois","attributes":{"doi":"10.0253/tuprints-00004995","updated":"2019-12-12T10:56:53.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004994","type":"dois","attributes":{"doi":"10.0253/tuprints-00004994","updated":"2019-12-12T10:56:53.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004992","type":"dois","attributes":{"doi":"10.0253/tuprints-00004992","updated":"2019-12-12T10:56:52.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004993","type":"dois","attributes":{"doi":"10.0253/tuprints-00004993","updated":"2019-12-12T10:56:52.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004989","type":"dois","attributes":{"doi":"10.0253/tuprints-00004989","updated":"2019-12-12T10:56:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004991","type":"dois","attributes":{"doi":"10.0253/tuprints-00004991","updated":"2019-12-12T10:56:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004988","type":"dois","attributes":{"doi":"10.0253/tuprints-00004988","updated":"2019-12-12T10:56:50.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004981","type":"dois","attributes":{"doi":"10.0253/tuprints-00004981","updated":"2019-12-12T10:56:49.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004985","type":"dois","attributes":{"doi":"10.0253/tuprints-00004985","updated":"2019-12-12T10:56:49.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004973","type":"dois","attributes":{"doi":"10.0253/tuprints-00004973","updated":"2019-12-12T10:56:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004977","type":"dois","attributes":{"doi":"10.0253/tuprints-00004977","updated":"2019-12-12T10:56:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004972","type":"dois","attributes":{"doi":"10.0253/tuprints-00004972","updated":"2019-12-12T10:56:47.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004971","type":"dois","attributes":{"doi":"10.0253/tuprints-00004971","updated":"2019-12-12T10:56:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004970","type":"dois","attributes":{"doi":"10.0253/tuprints-00004970","updated":"2019-12-12T10:56:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004969","type":"dois","attributes":{"doi":"10.0253/tuprints-00004969","updated":"2019-12-12T10:56:45.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004968","type":"dois","attributes":{"doi":"10.0253/tuprints-00004968","updated":"2019-12-12T10:56:45.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004967","type":"dois","attributes":{"doi":"10.0253/tuprints-00004967","updated":"2019-12-12T10:56:44.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004963","type":"dois","attributes":{"doi":"10.0253/tuprints-00004963","updated":"2019-12-12T10:56:43.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004964","type":"dois","attributes":{"doi":"10.0253/tuprints-00004964","updated":"2019-12-12T10:56:43.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004961","type":"dois","attributes":{"doi":"10.0253/tuprints-00004961","updated":"2019-12-12T10:56:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004962","type":"dois","attributes":{"doi":"10.0253/tuprints-00004962","updated":"2019-12-12T10:56:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004960","type":"dois","attributes":{"doi":"10.0253/tuprints-00004960","updated":"2019-12-12T10:56:41.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004959","type":"dois","attributes":{"doi":"10.0253/tuprints-00004959","updated":"2019-12-12T10:56:41.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004955","type":"dois","attributes":{"doi":"10.0253/tuprints-00004955","updated":"2019-12-12T10:56:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004950","type":"dois","attributes":{"doi":"10.0253/tuprints-00004950","updated":"2019-12-12T10:56:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004948","type":"dois","attributes":{"doi":"10.0253/tuprints-00004948","updated":"2019-12-12T10:56:39.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004947","type":"dois","attributes":{"doi":"10.0253/tuprints-00004947","updated":"2019-12-12T10:56:39.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004940","type":"dois","attributes":{"doi":"10.0253/tuprints-00004940","updated":"2019-12-12T10:56:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004944","type":"dois","attributes":{"doi":"10.0253/tuprints-00004944","updated":"2019-12-12T10:56:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004938","type":"dois","attributes":{"doi":"10.0253/tuprints-00004938","updated":"2019-12-12T10:56:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004937","type":"dois","attributes":{"doi":"10.0253/tuprints-00004937","updated":"2019-12-12T10:56:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004934","type":"dois","attributes":{"doi":"10.0253/tuprints-00004934","updated":"2019-12-12T10:56:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004931","type":"dois","attributes":{"doi":"10.0253/tuprints-00004931","updated":"2019-12-12T10:56:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004930","type":"dois","attributes":{"doi":"10.0253/tuprints-00004930","updated":"2019-12-12T10:56:35.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004928","type":"dois","attributes":{"doi":"10.0253/tuprints-00004928","updated":"2019-12-12T10:56:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004929","type":"dois","attributes":{"doi":"10.0253/tuprints-00004929","updated":"2019-12-12T10:56:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004926","type":"dois","attributes":{"doi":"10.0253/tuprints-00004926","updated":"2019-12-12T10:56:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004927","type":"dois","attributes":{"doi":"10.0253/tuprints-00004927","updated":"2019-12-12T10:56:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004925","type":"dois","attributes":{"doi":"10.0253/tuprints-00004925","updated":"2019-12-12T10:56:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004924","type":"dois","attributes":{"doi":"10.0253/tuprints-00004924","updated":"2019-12-12T10:56:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004826","type":"dois","attributes":{"doi":"10.0253/tuprints-00004826","updated":"2019-12-12T10:56:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004824","type":"dois","attributes":{"doi":"10.0253/tuprints-00004824","updated":"2019-12-12T10:56:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004822","type":"dois","attributes":{"doi":"10.0253/tuprints-00004822","updated":"2019-12-12T10:56:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004823","type":"dois","attributes":{"doi":"10.0253/tuprints-00004823","updated":"2019-12-12T10:56:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004820","type":"dois","attributes":{"doi":"10.0253/tuprints-00004820","updated":"2019-12-12T10:56:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004821","type":"dois","attributes":{"doi":"10.0253/tuprints-00004821","updated":"2019-12-12T10:56:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004818","type":"dois","attributes":{"doi":"10.0253/tuprints-00004818","updated":"2019-12-12T10:56:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004819","type":"dois","attributes":{"doi":"10.0253/tuprints-00004819","updated":"2019-12-12T10:56:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004817","type":"dois","attributes":{"doi":"10.0253/tuprints-00004817","updated":"2019-12-12T10:56:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004816","type":"dois","attributes":{"doi":"10.0253/tuprints-00004816","updated":"2019-12-12T10:56:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004815","type":"dois","attributes":{"doi":"10.0253/tuprints-00004815","updated":"2019-12-12T10:56:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004814","type":"dois","attributes":{"doi":"10.0253/tuprints-00004814","updated":"2019-12-12T10:56:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004813","type":"dois","attributes":{"doi":"10.0253/tuprints-00004813","updated":"2019-12-12T10:56:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004812","type":"dois","attributes":{"doi":"10.0253/tuprints-00004812","updated":"2019-12-12T10:56:24.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004811","type":"dois","attributes":{"doi":"10.0253/tuprints-00004811","updated":"2019-12-12T10:56:24.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004810","type":"dois","attributes":{"doi":"10.0253/tuprints-00004810","updated":"2019-12-12T10:56:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004809","type":"dois","attributes":{"doi":"10.0253/tuprints-00004809","updated":"2019-12-12T10:56:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004807","type":"dois","attributes":{"doi":"10.0253/tuprints-00004807","updated":"2019-12-12T10:56:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004808","type":"dois","attributes":{"doi":"10.0253/tuprints-00004808","updated":"2019-12-12T10:56:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004806","type":"dois","attributes":{"doi":"10.0253/tuprints-00004806","updated":"2019-12-12T10:56:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004805","type":"dois","attributes":{"doi":"10.0253/tuprints-00004805","updated":"2019-12-12T10:56:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004803","type":"dois","attributes":{"doi":"10.0253/tuprints-00004803","updated":"2019-12-12T10:56:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004804","type":"dois","attributes":{"doi":"10.0253/tuprints-00004804","updated":"2019-12-12T10:56:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004801","type":"dois","attributes":{"doi":"10.0253/tuprints-00004801","updated":"2019-12-12T10:56:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004802","type":"dois","attributes":{"doi":"10.0253/tuprints-00004802","updated":"2019-12-12T10:56:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004799","type":"dois","attributes":{"doi":"10.0253/tuprints-00004799","updated":"2019-12-12T10:56:18.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004800","type":"dois","attributes":{"doi":"10.0253/tuprints-00004800","updated":"2019-12-12T10:56:18.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004798","type":"dois","attributes":{"doi":"10.0253/tuprints-00004798","updated":"2019-12-12T10:56:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004796","type":"dois","attributes":{"doi":"10.0253/tuprints-00004796","updated":"2019-12-12T10:56:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004794","type":"dois","attributes":{"doi":"10.0253/tuprints-00004794","updated":"2019-12-12T10:56:16.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004795","type":"dois","attributes":{"doi":"10.0253/tuprints-00004795","updated":"2019-12-12T10:56:16.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004792","type":"dois","attributes":{"doi":"10.0253/tuprints-00004792","updated":"2019-12-12T10:56:15.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004793","type":"dois","attributes":{"doi":"10.0253/tuprints-00004793","updated":"2019-12-12T10:56:15.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004791","type":"dois","attributes":{"doi":"10.0253/tuprints-00004791","updated":"2019-12-12T10:56:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004789","type":"dois","attributes":{"doi":"10.0253/tuprints-00004789","updated":"2019-12-12T10:56:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004787","type":"dois","attributes":{"doi":"10.0253/tuprints-00004787","updated":"2019-12-12T10:56:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004788","type":"dois","attributes":{"doi":"10.0253/tuprints-00004788","updated":"2019-12-12T10:56:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004785","type":"dois","attributes":{"doi":"10.0253/tuprints-00004785","updated":"2019-12-12T10:56:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004786","type":"dois","attributes":{"doi":"10.0253/tuprints-00004786","updated":"2019-12-12T10:56:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004784","type":"dois","attributes":{"doi":"10.0253/tuprints-00004784","updated":"2019-12-12T10:56:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004783","type":"dois","attributes":{"doi":"10.0253/tuprints-00004783","updated":"2019-12-12T10:56:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004781","type":"dois","attributes":{"doi":"10.0253/tuprints-00004781","updated":"2019-12-12T10:56:10.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004782","type":"dois","attributes":{"doi":"10.0253/tuprints-00004782","updated":"2019-12-12T10:56:10.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004780","type":"dois","attributes":{"doi":"10.0253/tuprints-00004780","updated":"2019-12-12T10:56:09.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004779","type":"dois","attributes":{"doi":"10.0253/tuprints-00004779","updated":"2019-12-12T10:56:09.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004777","type":"dois","attributes":{"doi":"10.0253/tuprints-00004777","updated":"2019-12-12T10:56:08.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004778","type":"dois","attributes":{"doi":"10.0253/tuprints-00004778","updated":"2019-12-12T10:56:08.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004776","type":"dois","attributes":{"doi":"10.0253/tuprints-00004776","updated":"2019-12-12T10:56:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004775","type":"dois","attributes":{"doi":"10.0253/tuprints-00004775","updated":"2019-12-12T10:56:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004774","type":"dois","attributes":{"doi":"10.0253/tuprints-00004774","updated":"2019-12-12T10:56:06.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004773","type":"dois","attributes":{"doi":"10.0253/tuprints-00004773","updated":"2019-12-12T10:56:05.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004772","type":"dois","attributes":{"doi":"10.0253/tuprints-00004772","updated":"2019-12-12T10:56:05.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004771","type":"dois","attributes":{"doi":"10.0253/tuprints-00004771","updated":"2019-12-12T10:56:04.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004770","type":"dois","attributes":{"doi":"10.0253/tuprints-00004770","updated":"2019-12-12T10:56:03.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004769","type":"dois","attributes":{"doi":"10.0253/tuprints-00004769","updated":"2019-12-12T10:56:03.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004767","type":"dois","attributes":{"doi":"10.0253/tuprints-00004767","updated":"2019-12-12T10:56:02.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004768","type":"dois","attributes":{"doi":"10.0253/tuprints-00004768","updated":"2019-12-12T10:56:02.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004766","type":"dois","attributes":{"doi":"10.0253/tuprints-00004766","updated":"2019-12-12T10:56:01.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004765","type":"dois","attributes":{"doi":"10.0253/tuprints-00004765","updated":"2019-12-12T10:56:01.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004764","type":"dois","attributes":{"doi":"10.0253/tuprints-00004764","updated":"2019-12-12T10:56:00.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004763","type":"dois","attributes":{"doi":"10.0253/tuprints-00004763","updated":"2019-12-12T10:55:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004761","type":"dois","attributes":{"doi":"10.0253/tuprints-00004761","updated":"2019-12-12T10:55:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004760","type":"dois","attributes":{"doi":"10.0253/tuprints-00004760","updated":"2019-12-12T10:55:58.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004759","type":"dois","attributes":{"doi":"10.0253/tuprints-00004759","updated":"2019-12-12T10:55:58.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004758","type":"dois","attributes":{"doi":"10.0253/tuprints-00004758","updated":"2019-12-12T10:55:57.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004756","type":"dois","attributes":{"doi":"10.0253/tuprints-00004756","updated":"2019-12-12T10:55:56.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004757","type":"dois","attributes":{"doi":"10.0253/tuprints-00004757","updated":"2019-12-12T10:55:56.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004754","type":"dois","attributes":{"doi":"10.0253/tuprints-00004754","updated":"2019-12-12T10:55:55.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004755","type":"dois","attributes":{"doi":"10.0253/tuprints-00004755","updated":"2019-12-12T10:55:55.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004753","type":"dois","attributes":{"doi":"10.0253/tuprints-00004753","updated":"2019-12-12T10:55:54.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004752","type":"dois","attributes":{"doi":"10.0253/tuprints-00004752","updated":"2019-12-12T10:55:54.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004751","type":"dois","attributes":{"doi":"10.0253/tuprints-00004751","updated":"2019-12-12T10:55:53.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004749","type":"dois","attributes":{"doi":"10.0253/tuprints-00004749","updated":"2019-12-12T10:55:52.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004750","type":"dois","attributes":{"doi":"10.0253/tuprints-00004750","updated":"2019-12-12T10:55:52.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004747","type":"dois","attributes":{"doi":"10.0253/tuprints-00004747","updated":"2019-12-12T10:55:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004748","type":"dois","attributes":{"doi":"10.0253/tuprints-00004748","updated":"2019-12-12T10:55:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004746","type":"dois","attributes":{"doi":"10.0253/tuprints-00004746","updated":"2019-12-12T10:55:50.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004745","type":"dois","attributes":{"doi":"10.0253/tuprints-00004745","updated":"2019-12-12T10:55:49.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004744","type":"dois","attributes":{"doi":"10.0253/tuprints-00004744","updated":"2019-12-12T10:55:49.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004742","type":"dois","attributes":{"doi":"10.0253/tuprints-00004742","updated":"2019-12-12T10:55:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004743","type":"dois","attributes":{"doi":"10.0253/tuprints-00004743","updated":"2019-12-12T10:55:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004740","type":"dois","attributes":{"doi":"10.0253/tuprints-00004740","updated":"2019-12-12T10:55:47.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004741","type":"dois","attributes":{"doi":"10.0253/tuprints-00004741","updated":"2019-12-12T10:55:47.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004738","type":"dois","attributes":{"doi":"10.0253/tuprints-00004738","updated":"2019-12-12T10:55:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004739","type":"dois","attributes":{"doi":"10.0253/tuprints-00004739","updated":"2019-12-12T10:55:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004737","type":"dois","attributes":{"doi":"10.0253/tuprints-00004737","updated":"2019-12-12T10:55:45.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004736","type":"dois","attributes":{"doi":"10.0253/tuprints-00004736","updated":"2019-12-12T10:55:44.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004735","type":"dois","attributes":{"doi":"10.0253/tuprints-00004735","updated":"2019-12-12T10:55:44.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004733","type":"dois","attributes":{"doi":"10.0253/tuprints-00004733","updated":"2019-12-12T10:55:43.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004734","type":"dois","attributes":{"doi":"10.0253/tuprints-00004734","updated":"2019-12-12T10:55:43.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004732","type":"dois","attributes":{"doi":"10.0253/tuprints-00004732","updated":"2019-12-12T10:55:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004731","type":"dois","attributes":{"doi":"10.0253/tuprints-00004731","updated":"2019-12-12T10:55:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004730","type":"dois","attributes":{"doi":"10.0253/tuprints-00004730","updated":"2019-12-12T10:55:41.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004729","type":"dois","attributes":{"doi":"10.0253/tuprints-00004729","updated":"2019-12-12T10:55:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004728","type":"dois","attributes":{"doi":"10.0253/tuprints-00004728","updated":"2019-12-12T10:55:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004726","type":"dois","attributes":{"doi":"10.0253/tuprints-00004726","updated":"2019-12-12T10:55:39.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004727","type":"dois","attributes":{"doi":"10.0253/tuprints-00004727","updated":"2019-12-12T10:55:39.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004724","type":"dois","attributes":{"doi":"10.0253/tuprints-00004724","updated":"2019-12-12T10:55:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004725","type":"dois","attributes":{"doi":"10.0253/tuprints-00004725","updated":"2019-12-12T10:55:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004723","type":"dois","attributes":{"doi":"10.0253/tuprints-00004723","updated":"2019-12-12T10:55:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004721","type":"dois","attributes":{"doi":"10.0253/tuprints-00004721","updated":"2019-12-12T10:55:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004722","type":"dois","attributes":{"doi":"10.0253/tuprints-00004722","updated":"2019-12-12T10:55:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004720","type":"dois","attributes":{"doi":"10.0253/tuprints-00004720","updated":"2019-12-12T10:55:35.000Z"},"relationships":{}},{"id":"10.5282/ubm/digi.2097","type":"dois","attributes":{"doi":"10.5282/ubm/digi.2097","updated":"2019-12-12T10:55:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004719","type":"dois","attributes":{"doi":"10.0253/tuprints-00004719","updated":"2019-12-12T10:55:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004718","type":"dois","attributes":{"doi":"10.0253/tuprints-00004718","updated":"2019-12-12T10:55:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005173","type":"dois","attributes":{"doi":"10.0253/tuprints-00005173","updated":"2019-12-12T10:55:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005176","type":"dois","attributes":{"doi":"10.0253/tuprints-00005176","updated":"2019-12-12T10:55:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005180","type":"dois","attributes":{"doi":"10.0253/tuprints-00005180","updated":"2019-12-12T10:55:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005186","type":"dois","attributes":{"doi":"10.0253/tuprints-00005186","updated":"2019-12-12T10:55:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005188","type":"dois","attributes":{"doi":"10.0253/tuprints-00005188","updated":"2019-12-12T10:55:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005184","type":"dois","attributes":{"doi":"10.0253/tuprints-00005184","updated":"2019-12-12T10:55:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005181","type":"dois","attributes":{"doi":"10.0253/tuprints-00005181","updated":"2019-12-12T10:55:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005191","type":"dois","attributes":{"doi":"10.0253/tuprints-00005191","updated":"2019-12-12T10:55:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005192","type":"dois","attributes":{"doi":"10.0253/tuprints-00005192","updated":"2019-12-12T10:55:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005193","type":"dois","attributes":{"doi":"10.0253/tuprints-00005193","updated":"2019-12-12T10:55:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005194","type":"dois","attributes":{"doi":"10.0253/tuprints-00005194","updated":"2019-12-12T10:55:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005201","type":"dois","attributes":{"doi":"10.0253/tuprints-00005201","updated":"2019-12-12T10:55:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005200","type":"dois","attributes":{"doi":"10.0253/tuprints-00005200","updated":"2019-12-12T10:55:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005202","type":"dois","attributes":{"doi":"10.0253/tuprints-00005202","updated":"2019-12-12T10:55:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005207","type":"dois","attributes":{"doi":"10.0253/tuprints-00005207","updated":"2019-12-12T10:55:24.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005204","type":"dois","attributes":{"doi":"10.0253/tuprints-00005204","updated":"2019-12-12T10:55:24.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005205","type":"dois","attributes":{"doi":"10.0253/tuprints-00005205","updated":"2019-12-12T10:55:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005206","type":"dois","attributes":{"doi":"10.0253/tuprints-00005206","updated":"2019-12-12T10:55:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005211","type":"dois","attributes":{"doi":"10.0253/tuprints-00005211","updated":"2019-12-12T10:55:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005209","type":"dois","attributes":{"doi":"10.0253/tuprints-00005209","updated":"2019-12-12T10:55:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005214","type":"dois","attributes":{"doi":"10.0253/tuprints-00005214","updated":"2019-12-12T10:55:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005213","type":"dois","attributes":{"doi":"10.0253/tuprints-00005213","updated":"2019-12-12T10:55:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005221","type":"dois","attributes":{"doi":"10.0253/tuprints-00005221","updated":"2019-12-12T10:55:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005212","type":"dois","attributes":{"doi":"10.0253/tuprints-00005212","updated":"2019-12-12T10:55:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005219","type":"dois","attributes":{"doi":"10.0253/tuprints-00005219","updated":"2019-12-12T10:55:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005217","type":"dois","attributes":{"doi":"10.0253/tuprints-00005217","updated":"2019-12-12T10:55:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005216","type":"dois","attributes":{"doi":"10.0253/tuprints-00005216","updated":"2019-12-12T10:55:18.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005244","type":"dois","attributes":{"doi":"10.0253/tuprints-00005244","updated":"2019-12-12T10:55:18.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005238","type":"dois","attributes":{"doi":"10.0253/tuprints-00005238","updated":"2019-12-12T10:55:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005241","type":"dois","attributes":{"doi":"10.0253/tuprints-00005241","updated":"2019-12-12T10:55:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005236","type":"dois","attributes":{"doi":"10.0253/tuprints-00005236","updated":"2019-12-12T10:55:16.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005235","type":"dois","attributes":{"doi":"10.0253/tuprints-00005235","updated":"2019-12-12T10:55:16.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005234","type":"dois","attributes":{"doi":"10.0253/tuprints-00005234","updated":"2019-12-12T10:55:15.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005233","type":"dois","attributes":{"doi":"10.0253/tuprints-00005233","updated":"2019-12-12T10:55:15.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005229","type":"dois","attributes":{"doi":"10.0253/tuprints-00005229","updated":"2019-12-12T10:55:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005230","type":"dois","attributes":{"doi":"10.0253/tuprints-00005230","updated":"2019-12-12T10:55:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005225","type":"dois","attributes":{"doi":"10.0253/tuprints-00005225","updated":"2019-12-12T10:55:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005226","type":"dois","attributes":{"doi":"10.0253/tuprints-00005226","updated":"2019-12-12T10:55:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005222","type":"dois","attributes":{"doi":"10.0253/tuprints-00005222","updated":"2019-12-12T10:55:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005224","type":"dois","attributes":{"doi":"10.0253/tuprints-00005224","updated":"2019-12-12T10:55:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005245","type":"dois","attributes":{"doi":"10.0253/tuprints-00005245","updated":"2019-12-12T10:55:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005253","type":"dois","attributes":{"doi":"10.0253/tuprints-00005253","updated":"2019-12-12T10:55:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005252","type":"dois","attributes":{"doi":"10.0253/tuprints-00005252","updated":"2019-12-12T10:55:10.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005251","type":"dois","attributes":{"doi":"10.0253/tuprints-00005251","updated":"2019-12-12T10:55:10.000Z"},"relationships":{}},{"id":"10.5282/ubm/digi.2095","type":"dois","attributes":{"doi":"10.5282/ubm/digi.2095","updated":"2019-12-12T10:46:46.000Z"},"relationships":{}},{"id":"10.0135/kluedo/5769","type":"dois","attributes":{"doi":"10.0135/kluedo/5769","updated":"2019-12-12T10:44:03.000Z"},"relationships":{}},{"id":"10.5282/ubm/digi.2094","type":"dois","attributes":{"doi":"10.5282/ubm/digi.2094","updated":"2019-12-12T10:43:52.000Z"},"relationships":{}},{"id":"10.23729/1af2696c-7d40-46ee-94d1-2818b947258d","type":"dois","attributes":{"doi":"10.23729/1af2696c-7d40-46ee-94d1-2818b947258d","updated":"2019-12-12T10:35:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657738.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657738.v1","updated":"2019-12-12T10:18:37.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657738","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657738","updated":"2019-12-12T10:18:37.000Z"},"relationships":{}},{"id":"10.1234/52rr9b786p","type":"dois","attributes":{"doi":"10.1234/52rr9b786p","updated":"2019-12-12T10:18:20.000Z"},"relationships":{}},{"id":"10.1234/52rr9b786p.2","type":"dois","attributes":{"doi":"10.1234/52rr9b786p.2","updated":"2019-12-12T10:18:20.000Z"},"relationships":{}},{"id":"10.1234/52rr9b786p.1","type":"dois","attributes":{"doi":"10.1234/52rr9b786p.1","updated":"2019-12-12T10:18:17.000Z"},"relationships":{}},{"id":"10.1234/sck3643yr3.2","type":"dois","attributes":{"doi":"10.1234/sck3643yr3.2","updated":"2019-12-12T10:17:37.000Z"},"relationships":{}},{"id":"10.1234/sck3643yr3","type":"dois","attributes":{"doi":"10.1234/sck3643yr3","updated":"2019-12-12T10:17:37.000Z"},"relationships":{}},{"id":"10.1234/sck3643yr3.1","type":"dois","attributes":{"doi":"10.1234/sck3643yr3.1","updated":"2019-12-12T10:17:34.000Z"},"relationships":{}},{"id":"10.1234/4rtfcs55y5","type":"dois","attributes":{"doi":"10.1234/4rtfcs55y5","updated":"2019-12-12T10:16:26.000Z"},"relationships":{}},{"id":"10.1234/4rtfcs55y5.1","type":"dois","attributes":{"doi":"10.1234/4rtfcs55y5.1","updated":"2019-12-12T10:16:26.000Z"},"relationships":{}},{"id":"10.1234/k7jf6zv3rn.2","type":"dois","attributes":{"doi":"10.1234/k7jf6zv3rn.2","updated":"2019-12-12T10:15:11.000Z"},"relationships":{}},{"id":"10.1234/k7jf6zv3rn","type":"dois","attributes":{"doi":"10.1234/k7jf6zv3rn","updated":"2019-12-12T10:15:11.000Z"},"relationships":{}},{"id":"10.1234/k7jf6zv3rn.1","type":"dois","attributes":{"doi":"10.1234/k7jf6zv3rn.1","updated":"2019-12-12T10:15:10.000Z"},"relationships":{}},{"id":"10.1234/ttr5pd564b","type":"dois","attributes":{"doi":"10.1234/ttr5pd564b","updated":"2019-12-12T10:15:06.000Z"},"relationships":{}},{"id":"10.1234/ttr5pd564b.1","type":"dois","attributes":{"doi":"10.1234/ttr5pd564b.1","updated":"2019-12-12T10:15:06.000Z"},"relationships":{}},{"id":"10.1234/tmf3fzx96w.1","type":"dois","attributes":{"doi":"10.1234/tmf3fzx96w.1","updated":"2019-12-12T10:15:02.000Z"},"relationships":{}},{"id":"10.1234/tmf3fzx96w","type":"dois","attributes":{"doi":"10.1234/tmf3fzx96w","updated":"2019-12-12T10:15:01.000Z"},"relationships":{}},{"id":"10.1234/x8ndn356j2","type":"dois","attributes":{"doi":"10.1234/x8ndn356j2","updated":"2019-12-12T10:13:37.000Z"},"relationships":{}},{"id":"10.1234/x8ndn356j2.1","type":"dois","attributes":{"doi":"10.1234/x8ndn356j2.1","updated":"2019-12-12T10:13:37.000Z"},"relationships":{}},{"id":"10.1234/db869f9st3","type":"dois","attributes":{"doi":"10.1234/db869f9st3","updated":"2019-12-12T10:13:37.000Z"},"relationships":{}},{"id":"10.1234/db869f9st3.1","type":"dois","attributes":{"doi":"10.1234/db869f9st3.1","updated":"2019-12-12T10:13:37.000Z"},"relationships":{}},{"id":"10.1234/fwnvb93css","type":"dois","attributes":{"doi":"10.1234/fwnvb93css","updated":"2019-12-12T10:13:31.000Z"},"relationships":{}},{"id":"10.1234/fwnvb93css.2","type":"dois","attributes":{"doi":"10.1234/fwnvb93css.2","updated":"2019-12-12T10:13:31.000Z"},"relationships":{}},{"id":"10.1234/fwnvb93css.1","type":"dois","attributes":{"doi":"10.1234/fwnvb93css.1","updated":"2019-12-12T10:13:29.000Z"},"relationships":{}},{"id":"10.1234/y9vtnjng7f","type":"dois","attributes":{"doi":"10.1234/y9vtnjng7f","updated":"2019-12-12T10:13:26.000Z"},"relationships":{}},{"id":"10.1234/y9vtnjng7f.1","type":"dois","attributes":{"doi":"10.1234/y9vtnjng7f.1","updated":"2019-12-12T10:13:26.000Z"},"relationships":{}},{"id":"10.1234/km6372g6j8.1","type":"dois","attributes":{"doi":"10.1234/km6372g6j8.1","updated":"2019-12-12T10:13:24.000Z"},"relationships":{}},{"id":"10.1234/km6372g6j8","type":"dois","attributes":{"doi":"10.1234/km6372g6j8","updated":"2019-12-12T10:13:24.000Z"},"relationships":{}},{"id":"10.1234/f5kj9ccvr5","type":"dois","attributes":{"doi":"10.1234/f5kj9ccvr5","updated":"2019-12-12T10:13:21.000Z"},"relationships":{}},{"id":"10.1234/f5kj9ccvr5.1","type":"dois","attributes":{"doi":"10.1234/f5kj9ccvr5.1","updated":"2019-12-12T10:13:21.000Z"},"relationships":{}},{"id":"10.1234/cyv2t96836.2","type":"dois","attributes":{"doi":"10.1234/cyv2t96836.2","updated":"2019-12-12T10:11:51.000Z"},"relationships":{}},{"id":"10.1234/cyv2t96836","type":"dois","attributes":{"doi":"10.1234/cyv2t96836","updated":"2019-12-12T10:11:50.000Z"},"relationships":{}},{"id":"10.1234/cyv2t96836.1","type":"dois","attributes":{"doi":"10.1234/cyv2t96836.1","updated":"2019-12-12T10:11:49.000Z"},"relationships":{}},{"id":"10.1234/k848w5x3hw.1","type":"dois","attributes":{"doi":"10.1234/k848w5x3hw.1","updated":"2019-12-12T10:11:45.000Z"},"relationships":{}},{"id":"10.1234/k848w5x3hw","type":"dois","attributes":{"doi":"10.1234/k848w5x3hw","updated":"2019-12-12T10:11:45.000Z"},"relationships":{}},{"id":"10.1234/j2yjhxdkfk.1","type":"dois","attributes":{"doi":"10.1234/j2yjhxdkfk.1","updated":"2019-12-12T10:10:06.000Z"},"relationships":{}},{"id":"10.1234/j2yjhxdkfk","type":"dois","attributes":{"doi":"10.1234/j2yjhxdkfk","updated":"2019-12-12T10:10:04.000Z"},"relationships":{}},{"id":"10.4124/f9z7y4bpvf.1","type":"dois","attributes":{"doi":"10.4124/f9z7y4bpvf.1","updated":"2019-12-12T10:08:23.000Z"},"relationships":{}},{"id":"10.4124/f9z7y4bpvf","type":"dois","attributes":{"doi":"10.4124/f9z7y4bpvf","updated":"2019-12-12T10:08:22.000Z"},"relationships":{}},{"id":"10.4124/xvvgb4ywcj","type":"dois","attributes":{"doi":"10.4124/xvvgb4ywcj","updated":"2019-12-12T10:07:45.000Z"},"relationships":{}},{"id":"10.4124/xvvgb4ywcj.1","type":"dois","attributes":{"doi":"10.4124/xvvgb4ywcj.1","updated":"2019-12-12T10:07:45.000Z"},"relationships":{}},{"id":"10.70126/3xr7-zr06","type":"dois","attributes":{"doi":"10.70126/3xr7-zr06","updated":"2019-12-12T10:05:59.000Z"},"relationships":{}},{"id":"10.4124/853c9k2wvn.1","type":"dois","attributes":{"doi":"10.4124/853c9k2wvn.1","updated":"2019-12-12T09:44:51.000Z"},"relationships":{}},{"id":"10.21359/fk2/oo5fbd","type":"dois","attributes":{"doi":"10.21359/fk2/oo5fbd","updated":"2019-12-12T09:36:31.000Z"},"relationships":{}},{"id":"10.21359/fk2/xitelw","type":"dois","attributes":{"doi":"10.21359/fk2/xitelw","updated":"2019-12-12T09:34:55.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657724","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657724","updated":"2019-12-12T09:23:46.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657724.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657724.v1","updated":"2019-12-12T09:23:46.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794104","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794104","updated":"2019-12-12T06:41:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794104.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794104.v1","updated":"2019-12-12T06:41:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657672.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657672.v1","updated":"2019-12-12T06:38:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657672","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657672","updated":"2019-12-12T06:38:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794102","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794102","updated":"2019-12-12T06:36:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794102.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794102.v1","updated":"2019-12-12T06:36:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657670.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657670.v1","updated":"2019-12-12T06:35:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657670","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657670","updated":"2019-12-12T06:35:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794100","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794100","updated":"2019-12-12T06:34:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794100.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794100.v1","updated":"2019-12-12T06:34:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657668","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657668","updated":"2019-12-12T06:33:48.000Z"},"relationships":{}}],"meta":{"total":271420,"scroll-id":"DnF1ZXJ5VGhlbkZldGNoBQAAAAAAQ-3yFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAEPt8xZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhRAAAAAABD7fQWbFFhUy1BeGRSd2VkTWczN2lTNmI4UQAAAAAAQ-31FmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAEPt9hZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhR"},"links":{"self":"https://api.test.datacite.org/dois?exclude-registration-agencies=true&fields%5Bdois%5D=doi%2Cupdated&page%5Bscroll%5D=7m&page%5Bsize%5D=1000","next":"https://api.test.datacite.org/dois?page%5Bscroll%5D=7m&page%5Bsize%5D=1000&scroll-id=DnF1ZXJ5VGhlbkZldGNoBQAAAAAAQ-3yFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAEPt8xZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhRAAAAAABD7fQWbFFhUy1BeGRSd2VkTWczN2lTNmI4UQAAAAAAQ-31FmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAEPt9hZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhR"}}'
91
91
  http_version:
92
- recorded_at: Thu, 12 Dec 2019 09:06:43 GMT
92
+ recorded_at: Thu, 12 Dec 2019 11:03:42 GMT
93
93
  - request:
94
94
  method: put
95
95
  uri: https://s3.eu-west-1.amazonaws.com/search.test.datacite.org/sitemaps/sitemap.xml.gz
96
96
  body:
97
97
  encoding: ASCII-8BIT
98
98
  string: !binary |-
99
- H4sIACQD8l0AA9WdSZMjOZaY/0pbXWVw7Butpuam0+ikkZlMlzT4RjoXJ+nu3OLXCyCZURndGf44BwmPZdmdSzAyv+cO4C14y5//ft1t/3FuhrHb9//2By/YH/9o+mpfd/3y3/74X//534n749//+vM0bMdm+kf8bD8urmP3b3+spumwoPRyuRQXWeyHJRWMcfq//8d//M9q1ewC6fpxCn3V/PGP+PnFeP/D/9hXYbr/Q798+9hN8UuH8f6XPD430ucfUlb4f/wXPvvz18V1rP944P6X/q3n9yy6XVg2X75zud8vt01R7Xf//H3k/mHKC/7zu89d3exf/e77h3/97r65jK9+c/rsr9y7fdltXwZ/fJreX/rj+w9RkviVV/+C58d//Ruuq2m3/d3y4N57ev/qH/f19Nef2331V/rcGD84NmGoVsXUjFNRhylU8V+4f9ufNH3sz20Yp92+/ksw7gkX8cd/Mr9gZqHkf2NswVj83PMjf1ar0C+bdmiOf4XtJdzGP+kvf/TnYej2Qzfd/orUf9LP3/1J71Cvk132w2aknBWMG0PbjSjigo//SLccV2GID6wQ1ivO1IwIkZ8v0l/B2P/5vQSXptlsb99IwAr9/0WC4swhIZhHKoQx2horIBGkWyiLW4S35f+5jgAJ4g+BXQJwGSEW4rGMGCiCxr6Z2dvy/1xHgARqobHrBHgZIRbivoyMm+eXC+Vw84OvQOLVCQ8RzDy/WAisO/nJD74C9CKAxp2IlgXujTxvYePnn7eLIr9AbVIY0CpCIYKU2ku62w9DM45dMxS6qkJluKkqUVtfS+WsVBXzs6JwuZD5N7TkPL0N6uuy8V47Lnhb+1aFJjBtKyMby+qynBNFJ69NZRfFMs4djRDxZ2uKOcNIL4RaCImMeG7l4yM2bM7qufMyXLwW5M1+snzh1TO86m4P4OKdUz5qwaMVn92E/MI7p+xVOp61QcUrQV6NinfuPEubbSGyG1OJV9B92S4PcxpO3B0gFE9X0M0lnD9AWpnd43zQDnZ93NUgLZKV0Fx7UfcQLQ49LCjfNOVpC9FyFKdY3GVjWVZriDZ/wO1BW8lNs1qCtNk18Jw7xeaCIiJZELgjzAwIiryDCHNuSITnC5F9e87zg68AuQjaA3GpFFfDvYqiCG/OD8R1RIrr8OzewbwI783v5rz1yG8XEvUudsAdxTuIMK+OEz/qXexAdYxfBPgg0gud3byfF+HN+WF1HEXAvYoAdYyef94oTfwcN/8rSwi1CBbQBRr3fXvkf+EVIBcBPEgZanMCykR8AxGglAFxv5XJHhGaF+HN+QFdIKMIuPnBJYRYhEcOHHvBspYLhvo01cA+iPzZY/zz/K+8AtQiSFgEgeBOc14EkD/7LdzsKgKiLAJ5lEjDURaB4EJpVgTAshYLlv1qdJ7/hVeAXATYMuXIXWQNOAfY+RWsC7Df2yhAF6DnB5cQR72L1Su7GLcIEnBuIj/qKJGEnRvsIijwFeAOUahXXgFuESRs1EURUK8iCdjV6PkBo5QtNOookYSN0igCbl0AqGO2UKgtOgmrY+wiiPldwO1CovaOBbgLMIvwjDXC6VBcIajmgYR4WwnuK4kDO0HhrhiO/K8sItwigOcpF8hVGp9Xaej5geRYHj181FYdnByLXQTlQd8gioD62iOK8Ob8gC5A7htEfnAJoRcBMCfYQmC+dlIv2HToRYDVMVtw5CKA/FjzEB78sDpjuLNZ7iKAbwH15VkUAeTH6mHe+YFCA+ZxZ2YquNAgiYDaooDTiaII+cuZ50V4c/55iyLyo27mpOAsffQiQP0J7yKgLuBVs/0J34AfLrdhDncihQLKbfDzw7sAcb/XpwjvzQ8n6kcR8vdCmRfhzfkBo9QtOG5dBhulDncujgIqnhI/aosOrnjCLwJs1DnkMQoL2NXY+WdbBYs0hgDt/fGTHwqwvIUIwC7ALgJwfczkQqPeBfD1MXYR5At2tcQdJpKQXY2dX7/yChTm1Mwowtvy/yxdhE9TxEVbn0K8vQSARsBQtWUZF+LebPp0vYT+ABHjvqcBCqfTD9T3HHDhNHoRgFI/xhF0HJ7nB18Bx12wq+BSvygCx9yQSAGlfuj5gcR2xpBfuMKJ7ehF4EBgJe5iv1DIRXhrfjl7VRb5He62aBK6rXwDEWbznx78mK/KJJSC9g4iALvY4TaqJZTI+AYiQJO8klG6EJjtUjk7TO0N+Ge7sDz4sbrzT/5XlhBqEWabNySnBnf+loT6Z7yBCJBrdhcB9yqadc3egF8BB6nBfVsZ+V9YQshFAJYQ8kaxEurC8gYizDZvuPPnH6gzz//CK0AuAryRNe4yOTnbQuMd+AGLSOHOOZBQd8k3EGG2/8SDH3OwXab+E4A6ewcR4FWEWoTZePudH3UWoITi7e8gAhwsVbhvbeRsa7o34BfwKpLIN7IANjJ6flgjY5j+OC/Ce/NDiYypTexCoI5Xz+aSPvhR6wIOeJfI84gi/wtLCLcI0JzOKAJbcNQXZ7OjUvHzC6iPD18oj7s7oICGwbyJCPNGBXoRZrspvQH/7DyeBz/mYKkAkiiUQ88P7mLsIsyWfEd+izsJREBV9+8gAqzOLO5bDzFbU/DgxxyvFlAHkCiCwd3WTcw2YXkD/tli1wc/5rtXAdUbv4EIszVyd37UMSIBlSm+gQhQ4f1dBNTBUjHb++AN+KGS6SiCXkjMMQoxW3j/BvxwTmASAfP1qwDSMhM/6oNotuLvwY85Uiqgir83EAGa0nkXAfXdpZgdlPoG/Ab2LjXumVRRBJAftWsGJycrhTxMB+SH4+eH1bHCfWsj4ORe/CIAFgV6fsAvULh7PQs4OVnJhcC9kQFdgJ0fSItN/Kh1MZyZjF+El3YBaosCyGlEzw+nQkURcBt1QCpU5Ec9ekEI2CKSyNWxAMwJ7PxwoUoSAXWMBagVws//ykGEXYR5fhHt0tz8XFvLabdr1l3dnAtpKohZoj484YT2KAJyQxSIjmLnZ4AJxHHnwUZ+cAkhF4FDk+TuIqDOw+Szw/zegB++L5Z+IZGL8N78cCeoKEJ+d+xfVHCJn3n+sb85/7zZFvlR5xhwOFkIvQgaaI4fRbC4m8ZwOM3gDUQA+bP7L3P88AVrEgH1RgAuWNHzA3f0kR/5QQSfpehFAH0BaRYKtUaebU/9BvzwHXcUAfUMSA5cECd+zBFdDo24uIuAOtmGz464QML/L75MAJlx71zYhNB4R1o8RXhvfgn7AnohURui8HXSG4gA8qO2ghRweGrcQfXI/8ISQp3dweEEFYm8XRIHcoTw8wPumEQe0YUvhfGLAOiyyI/aIoJztPCLAOgCibsTL4fvuNGLAHcvjCIw1Gcp0AMz8eN+BcBBJHAPzOJw3zyJeNrgQwTgIBILhTooJOCDCLsIQNO2xI9al8F989CLAOe7RhFwG3VAvit6fgb2Q5bIs8440Hcu8aP2jtMrkO8tApB4H/nzG6X/EqD2IDPqwxNo2inT6GvM/HDHS5lGlWEWgcNBCeTDZzkwszLxozakOewLcOyGKKB/sfMz2IrjyA1RBpylyPkZPPMxioC6DpoBYzfR8wON8iTD3auQwb0K0YvwQvorw31ZyaAMZOz88OTWKAJqd5IBk1vx88OhOYbAHZsX4b35ofRphrsOnb2QwY5BhH/x6Ocfu/DI9RdwOxn5UdfOM/h2Er0I8L2GcMhXEXC1hJ4fcIcjP+o6dAZHJPCL8MouQJ3pEUV4b34gIhH5UWfdMzgolERA7NEbD9ShC4s6Lmc8UMQd+TG3Mkj84BLCLgJchx5FwNzKJonw3vxA+ZIwC436FIIryPCLABykBvlBCnd5RS8CXBCdREAcVEkivDc/XI0bRRCoz1KgGhc9P1yNJTTqsvokwpvzwxaRRm7UQWG6yI/5FTh4tp3A3Sg1ifC2/FUhrFfMwkcR4lapTyHg0sQkBFbb9CmEfmk7IBcCnoAtEPdMfQrxgm7AL4QFFLTA7aw5KGok8I43er4B6BqQvYEE4EZALMR9GcFZCFEEzN0AkwgQP8dqZDz4wX3AsdoXT/4XlhBuEQCHmXvUNQaJH3oFmEX4eZrO72Pu8JbrfkoAvgbEQtxXEjCsjFvUpR6JH3wF6EWAV5FdKNTGKdDLBzP/p7c5L4HCWy/6i7/8vkLclxHQDCfyo85McHAzHPwigFGXJAJWX/8pwpvzw/pA4Q7FOyAUj54fboCQREBt2AENEPDzwy6OQn6hA/QjSvxY1fHPi4SX9gHiFgjxJbykk7GK8PM9vLQZkPv7cMPnNxACSFt7BwngUwmrBM8NDfGjDf9+boR3lwBO2ElCYI26/CIE6CqgFeKxF2B+rN7m50t4Wwmeb+CVnYBaBPZK4IijdpmBAZdvwP/KKkItAlyhyeWC4bYsAL2MmP8zU2deArFQWD3O+xsAul4lfqye2pMf3ASIRXguohciL4gbmH4K8e4SQJchYiGx2qafErywkN5BCMC6QCzE41SCVTPi7MGnCO/ND5SNJ36sWuHJ/8oSwirCZ1o8KAFWnfB4Ca8oZtzXy0BPaPz8oFJGe5Xw5H9lCWEWwXrwKMU8/TXxv/AKkIsA7uL8cy/n+V95BbhFeGUjY88AfiFmJNBXDEJRI8QSPFfSm/PDsVOBOwnbengJ4eYHHWTk/C+dQ6hFcLBVwfEmYT9FeHN+wCriuFtARP5XlhBWEX4puAZOI473EuRTCFAC1MYp3LOe457ckER4c37YKuKoB5wnEUB+rIfRgx+w6jjuJHgL93lELwLczSWJgHoVAX0rEj9qXWBfsSpQJ0hFEd6c/xV1zLHaRE8R3pwf1GVoY3VP/leWEG4RXlFnaDt7PUV4b36g80niR62L4c4n+EUAdRlDfZDCg6zwiwCrY4Z6umcSAT8/t8552nCuPbOzD5zdxyZlPzm/AL8PLnOS2/PcgngAZzeR/36+zvPZIOEDOHu6/d/ATIuzIMJZ7t8JW1jzwsJAA8ysduL8wiNGdLalpQyfbYiAxaw3/cDNHpb8uoTl+wA/l/CcnY2N+K4+4Eec3ar+ehrDey67Dfr5hJmLwPATzh5G/LKIQdzswYYvzxc/rpCWO3qoywPl3th5C5NbBL1J/ol4/lBDQcyEYbTaF0JJCaZkpC2HYF1YxiWn6QM/6n33Q9ctt14Jbrj59szg/ylk6m0psmeG/ZZe+roMpgTpsyvB39E75rWV+tv9+aCXCMqBf08vgpLf23g/6fPnFP6O3ra1qxpWg/QoV45tnRPt9xG+B71YaKTPXlpVfq9JP+lxPvum0ZX6PpHzJ33+cWS/p/eqahvgvBcIsr9+T68kD+23kYaf9PmrNH9LX7esFt+7bJ/0OJ991LNK18CJyRcye/jv9/RScaG/tdI+6XGeOYHpKnx/qfZJn92z+y29F1aFpoLo8/fC+i29a4PwDXDep74tOOmr5LwC5z1HUAP1e3ofzUwOnjn570iY1JLWzbnZ7g+7pp8WoWzakgdJTGg8UXUwJPjgSG2j3dZ6ZzlrFkkQZpMM8xIyBI3t4/sRIl0T0ut5c6j2s8QMwzhW642hfsU0cavvR1BE3mjuKBz++fMJX3bxo9tZYhl/5H/Cn8SVnXZ+N0ss9EJnj9v8TdwfxorNE3O3kBh87yfxerrEQwUizh/d/eUZH3dsO84TWwS6ZyYDQsUV8H1I/S5CyoPIvkwgEea87bcQAeTPfvUJvYI5JR9FYAgcv1kR5vojRRH4QlvcE8DV95223oV//ix6ExHmNsJdhPz5xUJaZujoT/vLzMSgyBtNcwxxVim1s/S83rSEBT23zOMx4xAc9g/g9sMJcrjpucgGEmAupKLj6lK2t0Nd98XcIo7IGIIx0aOWVFn9fX3aJ2v2DfftmSGtt/Czzs4f17NRD1eoHVpzocO5PO4/8IOnG2xNt4JLAT7m/LfAkdVLutsPQzOOXTMU2tS6DMLWyojSMeFN5XXr30AULZygp3JH627ZFXxm2i0eZsEV47TS2peqAg7tyJs9aKWFZ5QLxvj3g2Dx0MbFHR3nlVSKbLerM37guIQN7cZuLJrnT8VQciuY+j6tCw99OrLl/chWH/vDbd5oSj+yb79/JqbN2I5DB4Kje9R0Mp1ZzWtHnOCbaar7Gwie/RL0YV+LtViTw/r7OTR3YIbhvj8aIMbSn1/7sdxHIDWXG/Xgzm5kc82Vofo29mSlZhPp7sD5x8z8dG0//LVzAC9H4NpGmyO6McZOKyJmetj9BM4f/vg7u9lre1aEM8OBhYwB+++wvW2r6nKly2jjbY8gePaTg2vlDT2cym23CVO374kQ8Q3gB49PnCva1WXdnInxaWAY/zEbHXuAZ79Fi8olnnlM3hrSSwev7ezA6UkLOnTV8roCaRGoFOVcdFvAwzk/quDeWrrxriIf7PuBfZ/A2cMdcenah0F33d+28Zze9u5k5zLI8YBL/Wt+TCkbzXjVSNlA9PkzBZjk/P7Uy5rLphSq5sG3pVGyDtx7VvI6KC6BUHsSJbv9lM4SRyNE1Jffl6rg4Y0Lhxu6/rhdPnaXuYQHJLz3B0tPJ8YJv2orAn7kf8ldkyZwV6pafT+J4pM+u6uouFC0Dd2QQu5dvyxWm347TvjBhTRa05brD7IxVoPA2e+QmNSMrpqwLcJpWhXdUEgmuAFN1fzk3Fnlab2vu5FIJ18497IjR9NEaTqehpZMQ1zV2rrKMOmJrataqtnan4cI+TNKnPa066dmOIftWKxXUpm5NGok2FwprSi/qivxDAi8owB2LGJSZphlb8H7d1Sy2q0+gFg7w1DVIJT0no4DZ7BCzA8rLdO09mIlLx4+JrLzWmEFXbYHSy7H2RQnJLyCy+iDca2951YY5hUMnT1YE41oET/Wj/uh6RMf1YUq3gA82f9xNY+HUDUEDC7l501xSH0/3Jrdum7m0ocfxNmjS1pEM/S0qQMZe+KEeuEpZ2dOcZBnOYe0m3VJj44d4euA/ODcRoOZDk17KrvTjggFW88YomRe/tyC9yohKNkGBTbjjtH9IQwhBahf0CzZiaNHaA2Vw6ElYYLjpwiAefSmaNiUu/qmZHMCibPHIYVS3NHlrbmRg+GwsZwfOD5iT6/n8Ugq//3ccUTAcRFrWlV1VVRjXbxgHOVHVkq4XwNgpq6k0L6tAhgpyJ9WE1eIt3S/PTdk26/AaHp+YG6ZMPfHTYap2ZOPXUvEptngJ0/5m5z23f6DqrGeOvCIzo/MuFV0tYmau9pI0BvMn7IkBGOW1tMpPjsgcxoHr7SCx18wyq2GwwP5gZnk0ZhbjsWu6fom/oJEM4KcuzruRB5PwpmpqZ9CZI+dS2kkp0M9xucvvh92jAdYMBm1Yrp2I4zxQKRUHHa08nOn60JLz2EaiR6BSowEnD1uzrm2jkbj496dwAtVgDcrCKA1V4w6GTZk6iXoEuYHFjyee3SnpCarDXxLiAHYO017QYbG9mTF4LSf/BOjbDwpoln6UUpiHXxnlR9YaGlE/Oc/whDP5YY1KjgivWdEsaYhrpSKBF2aUIqa16wt4IWTP9qrFLtXRhWnqt525Q9hmPp+zA8icKaYo+tRhrjcDaxqsgOzqBJpvx8Y0+4NcKOdpFMe8sVpOI6Qf3ZbtJiYpnC4MT+pSyk0VJjzEj9rSp35EjkoXSVtq2sewMSf/PQpcqDpTgohYO2SPXQen3VcF4fjVRBRz/bCQwKcLiksXatdSa4lh3Vd9nCu9drTeriFupj4kq8vH28AndKNBT2NdShCXUUv3MI5EPmp71lrSiprva2I52VFVFCWlG0dCHNNE+1r76SBIzbZRUmZSoY6b5QR0pii8MwS34Z6TP+r2xB/vv9Uz3V/egiTPRScCs8euZAJrgBzU/ITp8ozTutz/A03Bs6mQUAcLdPHFbm6rMfrhp634Xx8g8WhldK0G1K0L+oiL4FOJQxDU9CUeM9pM9UUVPH5YdPdkaVHSdyFrCYiTwToQYGC+n6WM5ZCkm+wICxjgtGNFyVxA9C6JgFnD1gLroSmx4M4E3mBSywwAEuv6CacJyJ4AA3V/MDpjBB0Y7kkBwdH8/IDJ1fA0Knr68KA4d38Q6+55lrQZbMvlHsD3JTtaun+0PR9cxr2RT0mdSd8cY62JhyzQyBAVCOKLj+unPhz9HDtcV01N3pY7w9qvt0Eik6SKQDCaHUc9+QmJ7CSJT9wyji2tPRuF+05eIFn57U+Wcze9Gyp3wGXcS7pfqjDIFL+HYGVdv6rAC6lpRt17ndgdSoCWsGYu3sk29PlutrQvp/0CszuQADOpfaPbOPLabvidNzf6gN4t5UfXLN4Qhujkic131LzAZw93B8P5WfRymZbj2t4UWcnThF/Q2GPBAGoVo6m204GL4TsQfMUIWJfqmXLtm4Zt252FhoS+pT/Gr2/cBon4s1q178BsjRO04pG7yR9YGxgiyg7c7QwHE1cPK7pglNYlWS/rXhMsWy7qUwRrria4b2Yn5lLY+hy1fQTUX41wBnoCJhFdKXorqm7MDQHkj4Zl7aBz+ns5ExGK78biOTwhXf+qQhRYUcLlJflkaw0nLCRH5gbzxRt+nMXv35fF/D1A88eE09dDJLpTHYfjSXNjoPM+ccdJRVuqG+4in5rRUxVcaKsE8Q5a0ip69Texah6djTrQ5bssQ7ulBG069pinJ1RhgQ3JQ4Kuhwv1/NyH2Dg7M431ym6f4u//bENlx/r/Wnow5bGPwQjB/nhk2XNaCtWS7JzAjy0UQBbR0/l2FHhwDAHy+7Gcsmlp/tt1dJ4mEjr4UWRn9mmIpZdV2+bghXwosgOnFaxoOPxOpKV+H4gPB7gaP0LWns29PsPsANl/hnN3HHNHjO6LuN2BUbI8xOnIvvHuIJSH3aXNb0dplsPWx7ZwYWScSn/HTyomqoqbajj0QFm+jAEXq1lVDklGbOp33GlgqtcdHG9KRvumNGyAr3G/GJoFp3zZbhdyK1k8IGd3e9KJS2cDpXnpGEWDCXkB44HtjY/GwZMqyFsOgI6YPmxUx8lR41drojfwPma+UcVRmAhqLQHS66Dh82l7M6ivIfyfjn+HHe1L4Nt4Hu4/PRaRPjQRlzOWlKHMnqNwUjijC2JjsDWSucE3Ec2vygpCKXuL4Ke+m7T9BNNy5kXBjavssOn4k9GdWVK05Y+6k9g9gxjCPrAxzMxJT2u1JpUAtqrSIDN19IGZkzZCmfaN3jc0QSXdPS12+81YIJjwE2zcxxtb7cjMQ1UjIFinrbzkjqzFuS8gYKrKHgZ41963HJvjDDSKcgCxECfahwYnfZD0da7YjqtVoXwgLsTubNH++JTl5xeNtqQw1HByzo7cIqmarqtxpJcq01TBbKZ6n0AkpAxkKfImaLwWs4OmrJjHd0fTiNRDF7DGEKSzNFTNQz3jjWAf4uBOOWLcVqFsTjzDtbVCHiZ/JJRYTSrZBWYgm5FMdAnn+ZXzVJ5pkvjvJM1UGwb6TGEKhUt/db61bTGj6uV9JRL6xXUgRADreAp2SaFKZfdrl8Dt12RGEF8UglL3XLypN9oeP1mB05nh6FiaRpyOUOFnxiAhUrdg9fCCSKmM6yv8wPLeBw/c2y2zq1K2BjKHuFN1r5+2BhAuBQDrWPMc5ocFPyscTWkXrDdWJ3GMX1kcTqRro6UkqgX9l/2IG9Kc4sqxHINr4zssNxZ/uiUeBpLyjwTHD6Ts1OnODqnu9u42p+2dTPQaX0cSqATNgbwFPLStDxNrd+DtNmj/yn58RGgk0aQE1eOLclyAPqOYCCPDopSvxr88T/f6mB8gJd3dvp7uW9pWd00vCWuKj1R3tckGK6JscJ7I71oGZA8hkYUGzR1l+sV1j7ZeVOYVNJ91wzmTKvb+lrD+zT7dUU8xIWmzApBjImKXrEXQnf5qXVU6WksaQF7Wip7/JyLdLHYmMtItNJVfdlFTwa0RvJzs1QlV9UjPXcfcVUXNhomTEHDwCJ59pC09cbTczOUgYTtoesDrYz/cQaNqvzkXHIlaRjbZgikasMD0RgoswIDO5PM0+EyTku+keqCHzgdI9GkCtOKMGYZeAWg8seno1Xl4i+cIWwJX9QiAFbpEHHG8KjOoxlSukBUGSriQ6lI4E6wRjbiBa2DQhZjfrUMtVHeelnqEugPFOmzh4Jt/PclLVt+JtbBnlp+4NTcVP4auy4Z46WWOrTwYslOH3WlF3QXhvTln4VU+LGlNNZ/vTAwqe1b3b6wZLLHtLl1kd5LHg0AqzjUqRUDMousNJRV3cBnSHbYdIZ8GZTNRJ2uO5iEuq9H+uzBYs51VJ7CCwsv5eyw9j6quf1Y3+uKqdgcxhq8o8mPndLf1CsnXXbSeFY4TxvOmNPiPKNRuF9oh2Ay6e87H1kOdj6KAii9UNm99s9B9aL0TFaVUso1ToimCdyaUkWztq2kdzOucRKFY7h3YjJlvTePT6bP3D9chbI49d2hLropIabcgZmtEKWRAsEYnuR0Krrt+iaMqX0kSJzdc7Neu5/NgK1Z1UP9BtDRJLSGai1V2TBDVDzgiWpLRgKTDWlY26rWhLZlM1FyLLKkRo2WLm/lRC6Dmd+xCTi78+YYU442O3YjGyZmYliIgLmh9bmnx0lX6xnrEAtxXBPxGBl7ysOPNCgLJM7u7aTLbX+PI6ezmou5lC4szKmjdbojFnMhZCyw/+pOiloKXqVKFJA+u8UVXRtL69WhTBOx4KednTcpGEb365FM61NJDGx6ZDekkkf5pZCj4o2rpVLV3ExcLPSpNR+nYVk01b4vlLYKPvSyQ6fCPE2r/sCT+6DgRZI9ryf5wuqRMSU8/ISz86b+kp4uD0O07+q5vCM0wEraaBxdm+INnu49L2DwG6NkyflcG5wncfbUHS2itzLup300jfRcPSAW4DQ5yFM1ekPWfK6C6gmcPfeCK5HuxSKGkmYuNfgBnL/XQoqTibmKmCdo9t2WQCXlc+mfT9TsiyAVw3h6ubmeLNXc8IAEzDGk4Me1yp/ZyxPfXTVwlmGIfD3ak9nWNlKJhjCd2pPVwhBfOUVqnmJ5jpVNA9gVGIYDpQsBTetmty+AnYjh+ln6uBHFzXmilnOTJp68SFZKKKUK2nFSe1YTFRU2CdGaI74pK81V2yo1f7QIjyFT5N7lZFzJntyOwNHCBYIuT4+HHx+vNJXiJASjiBJRn5dOMNI0wQTWcF3OFTkmWfhCZl/4v7/4MPaViw9mEZyZWklHTTksidjJeQubCQRJAEJLremqI3MNN56w2W1VrpWXdD5kjgI0zYUR6f5rP7ZFt6erkzzOdLh+YmdXkinrSdOun5ohfqjrlz8Op3k7JWFnv2xMTzslUl43xGzmBts8gGX2SzihNXept7UggsXXzqMvg5/aWu/oetmlulfFAFcRBbGQVjhainEVhqYw3qpSS1cpz5VnIghmdKMaaXxVlWHeiEUhT0p1osdjfRhmmvQ9YbPbUSn26GgQ0XOoV4AdhQKYWxZ1d2qfaubGUz9x85tKTDFDx9t5ReTNzhvWKIBTNz4H5r9hoRWGSU9v52pHhGDweshuyaU+84rW3dCN4Xr74CnRms1lcmIBT211Je2HSyBCmXknBQVwGqOnUunu3Mw/LLBp1zF62ShDPj7s/AVFAs7uzqa+PJ6ur1aRajfX3BwLcEo3sfTGN8uo6OYmrz6Bs/uoaf0ayq/HiQwfEn7C2YGFNoLRrurKZii6ceyLqKUNUcaBTmt++JRxx2m7n6kQfaJmvwAQkot4rrUjYeMLFlt23mRiKnrhy54c2vORsCs746eOCyKqj8NRj6QKc8VQWIDTY5a0HgWZbDOS42auGu0JnT0Eo6N2pqtw2ZDVakkVfwNke58UdM99eMGyyI/r4zKuy6mAfY/srMkKSrMmpn3bTQvuUwogSJ09Hse4MSmKWIxTiP9It3wGMoy0TMyPq3yIkD/fnEkhaLmtm3MRDocCSJpiGPKdU/eVx1CHqh1ac6HdkolhZhoFFvDUiMXSar/f/qj2fVuk4wSkzu5oa+EEPZW76Louu2jYgXG4/Mjpxs1SfeuPZHWWoE+VHziVZmu6FXy2Hg4LbfRPlKGTX/fEHwW8hLP72IIrxqlI44GMBx3A/LxxMXhJd/thaMYxtfvQptZlEL5WRpSOCW8qb9Rco2QsoqQes4p2dZnmkQsbtY22P15QjNmjBmlWvaGjH1vVzc2SwsKrhWeUpyRoID0eBe3Pik8eVSD8cLPHCFII1NBzZSvSBDiElB+YK2EdHfZ1tEfvH3sD5jSs634pTydxm6aO+uX1o1qC4Nn976heZDyunTuT4zg33BsLcLKgHzPqfXPsBkVPl/NhgA/l7G5iSjAxqUhs223C1O17IoR7QQ1mB/+st7bSurq0zDPZqlpVnOvQOqcaVfqWefjozu70Ri/GSlpvi3I8N5uZJr9ogKPXZeilv63JmcMXsSJ7vozmRsSP9eN+aPrERw/ihQM8O3ey9SJ4W577G0TLs0c+tNCanjZ1IGNPrDIEjPTmZxbcp67Kj4F50aJuttqB/jjPH/hIJci0nk7ReYWPOJ7dwY2P2WnaCyLGaPG1a/gSAAOzdJJuTv78cfKrFt6A+YmliTuQl4KTzdHDyzi7L5syz+8JSOoFNZIfN65ia2l7bgayaoESXhTAqdTty+wt47xvg6llC2a5cgQuLROPloSkPfUT+bj1pJeHE37yNMzjS+G3VlVolWor+QbPPQ20ejgz+3GzWl7o7jbV2wkEz+7vpu4Rmo6noSXT0C+LeLhUKamN+Kp1vJ5r44ZFhPjsuaG81bU8jqArgIJX6q+zKlnpnYqqCD7Qs9OnBg2CTofrkeyuQC17As4eZ0iel6ZVVVdFNdZFVfHhQ8OJ6fnBrbCCblQ9kap5wfjLHl5IifQ8/oJRbuVcH3Y0wDwiU7G0PXGDfIMnfO900IZuSFf8XTytN7fb5rTCD57uMTSt/YoPZgNrxfzRGpXSS8dBzzW3xwKbIh6WbqaxJ362aTkW4NRCgNOhHlP+PJzskR/YepNW7/HAphrebdlx00ijaBBJJhmDM3d59pAdd1Z5Wu/rbiTeS1hzZCeOzkqqzZvclYwtg42g7MDpjHD00dRurhnvg5fljzFqwzhVpYoHBHfEVHVNlHYyDQzgpPFtqi20NVeg1s4vS+pW5VLHFHBh52dlUnHa74c0/gJc1ix7TJc57R+lyOewHYt23HftFU41RQB+7+Z9OjFOTv322IJKEAGy1IyW111F1i2v6zCEABbZs+zx3RTO+zWsVIW2ccGXVaPB0EZ++lS+6Wg78A9SjUCjMBTAKQ72SJ84r7aHk6a2bJorWIjMsod9XdqR9BwO+FFTYqlOz5jw88GQ2+zsMCzQXKuUwTvWoQh1RbnXL6ju7NQpG0g/WtTX8sQHkDh7IDoVnHranup9NcYTrzrtmn76wR7/CfZCXCa/DClAKuiHtJI4JmFrNXtM9B6XYcylSDRImz2uKLQ0Iv7zH2EoKil0iCY2KWXNiGrrlvjAWlI3TiuvrZPcFWA2eH6ZmOSS1sux2DVd38RfkOiFk3NXN/tI6rmRYFyE5Y+SRVPFU1H5ioQznOCJAVjF43E1Xs5kOcE5+Pk7QqaiAUZ1I3rCa7gmIz9wqnNXVE+7DWHNCrwIzQ+cjJNHkmE1lc1qT922Dh1YcMsQREjSPIjdeTmQIQBNpVEAs3iO0+kU/6Z+GklS754DMxZQcKcxfvfKueJU1duu/CEMh4ZDoABPBTGc9t3+g9rm1g0Trc7C2+s8OV/o7FEdbp1/FCtuNk3ZBroMzWEEktoxgKfLZv91vlzrgjPGSyD2gIE+OcOWDrvLB/k4QxczGIB55GW0DsNpJMpqChizETl7VEpobVLJEZQLh4I1KnNNd8mrYQfil9DdDAbmR3P9epcSfYttdy5CVZw2VAFDwVCwW6/9cyjYhZ0nVbYwdPYIGhPK0nafxsR2Y/ochTwBDNSpmOdZNrW61kNDD73c7mHVmB2ciXh8VPtCcx7dXQa2S8DAbNPAp9Q4UQJtvxNt9hhaimE/YmjtprrcgA5HKIi5t45G7A+yCVB3BCTAylBdlxUTggshy2CV8mK7BdlRBPs4baaaCthCyk6buggbOnV9XQBTRVDgpmYfnNbn+BtuDFTkjIJYJIu/b06CM809fBpnD/4KaaWktW+1OlYX/LxWRC92LdeG3AYoFQQFb2omQIfLurts6aGujyNsVmSPR6eLo3sYbD/02zqEKqVjwco6O3caMmrp+ng53oDLLgy0KavJUGHKQKYNf4PHm/JgLS292pud3oG82QP8Sd1xKg+7kpTmCISfMQBzx6P7NO764l6yfL8AWkgocwIDeYo/S3od4lpe9i+YQtmBU7q/p7ytPC9ZS2RZBaJcWRGneUV4Xbd1yaNt5xpQluy3FmlAo6WrsWr2sAbPTxtPEUdPVRsfNH7aZODfGxTSW88vVzjqnD3QL6Rx9k5syv1NWBr9qe4AWx0YwK2gH5cwFB9BQEX5GIiTnRQXB1eOtB9Q2zkMwJqlcuZ1o8iu0uADVvlD+s5yTo+HXg6rCpguhIE3TZ7VlBtyPLagBZp/Bp9mhtHD9WwIHwW8HPJHiqLqUNFZXV/d2IJHscoeDkhd6AVdNvtCQW3cOYIRh+kAtlSzXU/6bg0acSq7Q5I8KE3r23gjlyWsMFAAs2h1RsPSe9H13TiBXkl+aK2FpsttKKZVM3ZjYVMLUPzY1htOt353uIgWdFbzz9P7/VhIKV8aC4lBgJSDzuj51Pdk32ugeQ4GYG6N9HRXrnfkDOYeYQBO8XBBx3EVatArzT9pMdqaihoT17CH+7hjAJbSMEM51KwAA2pSfJKma/ZBpNwGAocP80Mn80LR5ceVE3/2mtrjumpudC9KPQAplhzBCM64+7S/+9XN5bRdpfj45dTAVn528Hgwx2Oj2nb3wez35kpjxQV3BbxossMLwYR/tuuLv4fK3jiCEZap07GjXEilYTspP26qBmd0E05xYbDL8gMYXIgBOaVps18TK6UW3oUgHDB9PdFnT+xKATpNK+pJ+vrYAB1FMCBHW9rRxMU54wWn8LLOjpxaI7p4RhNzVWdy2VnQn83PzCSztBuIjB4iSJs9epSin4+87I+pa88rWk1XN4CuVn7wZEcbulwlfWg3OxfAFMX8zO4+OGvgV0ZuwsBrOXusLp3RhgbtWyN8TYTVnKiGBxJEaIm23JR102hjwFT4/LJw45miTX/u4tfvJhTUS5ojGNrJJY/+7X5btZQr4wSc9JyfOdlOjIbRKsKP0IhqJMDW0VM5ppnxsPGRPcbLnYrOQNe1xaZeb9b1Bowk5GeO1oegtd9av5rW+HGTy6Jo9Mrpqe82UcnQVNgooqENH9vZo6ap+5a7K/Vx3JyniW4urGJAX1IM4NZ5ScPmcCOWwwko+XlTSwlGnRPJUoVP5uy88u61/NKKxjPDq2CsqmFbNXvoNB7TTNNlpa5k2kFdJDAAp0GpKcRUHchhxd7gCacJuoKunPRETQo2j7KHI1Mrek7N4azIGeyUiQE4rmHh6M6qNalLBx9x2YGj3pZ09NeNrzug8WTEzR5q1Mw4upr6gbhKwws4Oy9zWlPl4ZWbnVQoqcSvuqNpmLNldP5K8Dnnn+9rvWW0qYRjnLO2qZkK0pUhmLoNdeVdK50Ag6b5xYiHh6a1k8YH0RJXakaU5ZyUygsSGmtl2Ya2htdTflFSveaXaQslN7wRpS8b8EoDxQxj7x4z0LlgYNZKfuDk4yoK9JvBAJqmcKT8xrEimwsc8M0/Bjg1V/0yroV7HY8TZbQDc6NR0Msv1zClK33dsta8Bz2Pz74KY3HmHYPvQhEMAvZG0dKHpjMV0JQSA27yuVKi/zDcL53BBJv8xFpJT7m0XkF9+zDQCp4ubtMHjqewpeeDc2RdQ+00OYLRxUl/P4rqj5t+XB5B4uwxvXRQ64fOdgZeyQh4uVJfGgfXLthKlxpORM4/XFdEI1VG+uu0HLp6MY6rI5wBmR+bOys0ZVYIYoznVDHYS88/VzdFfDnd3cbV/rStm4HummGwsEOTHVxIy+NxbTkcPs0PyzUXMo1dLgRMmz1yk+puHoP4TmNJz03U4F3dLU/98scuMjVDGMqmm370XbPrJvB2IL9ATGpJ79Ne94fUU3gRyqYteZDEhMYTVQdDgg+O1LY1pvVRftYskiBxO8sFbBxmlzBZA9GcLXdFKEpRifoVXzh7ZIhLriQ1tdoQ17+gmrID3zuK2aCpO96g+XEYeFkqDa7qkZ67j64ZCp7aaIPcGMY0y2eIJxoDgpy4cmxJlgOYLZIfnYt0U9aYy0i00vVlJ8Ae9xiwpTTW/9MFn2dt6ogL3pflH3yb+rLKX+nL1HxTVNLBWRn56VOnUElDNHZXXSDldr8k0eHAz51moakXWvzlH3GbWsMYWp97el3ujjVYPJp/gGYk9p5eGC+25fj8XHHaVtWjiWXCS+Xn8LPPbvtaryzdSXYlh8BBHZ9/Al1y9tXD2RfQUHWOYOxVKjWgO7tu+w/jN3MVpW4hGYLWplro1DYhUgzN89PWC6OLWihtZ5vhPiTIHjy+m4FV1W+Xw5yn/P+CNv3/2Ex//V/2Dut0gtwCAA==
99
+ H4sIAI4e8l0AA9WdW3NbyXVG/8qUXlMCTp++HpUsv+XJeYpTlcobCYIU7wqA4WV+fVrATCTT9Fl0VVJYHLum7BEoLZzps/f+uvf++vOfn25vfnlYb7aX93d/+hAWw4df1ner+7PLu4s/ffiPv/7rx/bhz18+/7q52a53v/TP3m0/PW0v//Th62737dNy+fj4uHiMi/vNxXIchrD8z3/7y7+vvq5vTz5e3m13J3er9Ydf+uc/bff/8C/3q5Pd/g/66ce3l7v+S9+2+9/k8Lnt8vd/uBwW0y//xGf/+N+Lp+3ZhwPuP/Vn/f4zny5vTy7Wf/OTF/f3Fzfrxer+9uXPfdx/eBkW4Y+ffrg8W9+/9af3H/75p+/Wj9u3/vD3z/7MfXt/ennzZvDDp5f7f+mHn//Wv0n/lbf+Br9//Off4enr7vbmteURpmla7n/1w349ffl8c7/68v1z2/7B7fpks/q62K23u8XZye5k1f+E/Y99Xn7/2Oebk+3u9v7syziE6WMY+3//GsKnIX5K478Mw6dh6J/7/SOfV19P7i7W55v1f385uXk8ed5+Xv70jz5/21zeby53z1869efl//6/z8s91NvJHu8319tlGBbDmONy92v/ne52249D/yumlgg8jov+yf96nftxvb6+ef4H3MMi//9x53fKHZE7CLnLOCL3oOTmdeLkDsQ9TkbuMCF3M3KPw/vkDg25q5K7IndRcmO+lHKXd8qN+XLMSm6OJ0nJjXneyT1w3olKbo7fTm6sq0Zj/V0GzjtObo6DSt0wcL50cnP9rdQNA8dvI3eeMH4Hpd4ZMM8rufOEeScY9U6esI4NRr2TJ8yXwVh/5wnzTjDW33nC+B2MdWxuHAeN9WCeOA4quRvWg8FYD+bG8dvJzXHQWA9mPieRcnP8VtaDjeO3kxvj4KCsByvmHSk3xsFBWcdWjIODso6tGE+k3BhPBmX9XVHPO7kL1lWDUjcUjidObo4nSr1TUM87uTOvb6Xeyfy8ndwcv5V6J3P8dnJzHavUOwl1mpSb14lS7yR+L5XcEfL8+Ckr9U6C99LKHSFfdm6lTouQL7Xc8F52bqVOi1DHWrlH0MWdW6nTRtj30XLz+lbqNOoztXJTn2nnVuo06kfWcnPeUeo06tfUckP93bmVOo36Hju3Uu8Ejt9K7oHfS6XeoT688VNS6gbqe+zcyvqb+sKk3DVh/Z2M9Xei/kEpd6V9n85trL8r7ftYuSOvE2P9XXm/SsqN+z7JWH9X3veRcnP8NtbfNXJ94uTm+sSoGyrvDzq5aZ67cx9dN6QwpuU2j7ebGK8iJ/ijA7+6QLiAPTr3iwe94DV9dORX1zRzGzVlJU8IKzfvZUajFq68lynlxloqKrUweRRoubGWikotzHuwUm5MlVGphXkvU8qNNXdUamHeg5Vy83up1MI0wy3lLryXGY1auNBMsZab30ujFi40C63l5vht1Gll4jio5KZZ0VHqgUczxVZumnEdpd59DeOJlBvjidO7j2aKrdw0KzpKPQdpptjKXfm9NOq0UnH/RMrN76VRpxWaKdZyY13l9BykWWgrN83mjlLPQZrN1XLze6nUaTSbq+XmPK/UaYXjiZI783up1Gk0w63lxnii9BwsGesqKTfWJ0qvxJIxnki5cd9H6fFYyKPAyp0wfiu9KUvC+C3l5vit1GnkrTA6PTVL4jjo5OZ4otQ7PNPg5ObZAKWnZmFPiONzhzGmZWoXY5pyzN8WvESOjvzqEkFJrLQBLTw+cnzuF0vED/zqg+bcfnRN+fJd5DRzdORXHzWXI05ujH1Kq9XCoy5Sblzfx7eI3b+Sz9er9jBdnV+d8yupdFktI6ZHJXdN74D7xRLxA7/yoFvGEltpZ9sKx2wlN2/NK+1sG2/NS7k5cBu3GhofKTi5eQtQaWfbeCvNyc1bJEo728ZbgE7uN9TcRhnc2PZBys153qgp28h53skNeSc47WwbCR0tN+Sd4LSzbTRqbuUOvL6VOo0sCazcNEIcnHa2jewQrdx0fXVw2tk2ugZay83xRKnTaNRcyw31d3Da2TYaNddyc/w26rRKI9vBaWfbaEReyl1pFDc4bXgrjeJquTHvKO2DK13vq+XG+O20D6ZRXC03xkGnfXDDOOjkphHiILUPput9rdw0Qhyk9sE0iqvl5nVi1DuVRlqt3DRiGaT2wYXjoJKbzl2D1D6YRlq13PxeKnUa9XFouTl+K3Ua9XE4uUc85w5Sa1sanZNyN7IKCU5r28Z1rNIitlVeJ0puzjtKi9jG9aCTu+I+hNIitnEdK+XmeGLUO40sk7TcWFcpLWIbWQ9ZuVnPKy1iG1lUSbmnxHHQqHca72squac31N9CvdO5eX07uTFfKi1iJ7LcsHJTP3JwWsRONJur5cY4qLSInWjG1cpNfevBaRE7jZjnpdy8Tow6beJ+eyc3XX0VnBaxE12RpuXmPG/UaRNd2aXlRn2ptIideE5Ays3xW6nTBs6XTm6OJ0qdxv32Su5GV0gFp0XsxH3rSu424fpWWsQ27o9VWq027luXcr/P5z2RH0dwWsROb1jfSr3DcwJSbs47Tm6sv5XWthP32zu5uW9daW07cf+JlBvrWKVP7ERXX2m5uT5R6jQ+55Zy43mD0sN04v4qKTfWVUoP04n78JzcdOVLEHivvvq8MQ4audPA89xKX9CJrqqxctMVxUHpC9rXybvk7roB62+jL2h/3ljHGv01OzfHbyU3XYkRlP6anZvjt5Kb7pcISn/Nzs3xxMmN+tLor9m5UTdIuTkOCvVO5+Y4qOSmfp9B6a/ZuWF9a7kh7wxKf83ODevbyh0g7wxKf83ODXnewL2/KOOinD1cPV1c7K4RWCh0+oOGBG/gfvGg6U43A/KrGoffRaWmpN5SA/fLJcJp5ujIry4RDntKGUw2t1ZuGjMalPalnZuft5Oby1alDKabZg3ch9sWz6/PLlK8a88IfHT9+wL4DTH76MivrQ2yRtRyc+xzcrMUU241UCuSlZtakQaltW3nxlpKyo3vpdHatnNjTSLlxprEaG3bueEo28C9T/H54ft/ymq3e3fAXJMcH/nVtYE1idE+OA1k76Tl5lyj3G+g9jotNxyTDUr74M6NtavRhjcNdJ2ylpvX99F1+6vcXAM6uTnvKDUltQVauckGbFDa8PbnzXWVkTtwHDTa8KbAecfJTdfKD0r74M6NeUfKjfHbaB/cubEelHJjHDTaB3dujidKbrJxHJT2wZ0b60GjDW/nxj1BKTfHE6PeCXy+KuXmOGjUO4HPhZ3c1NY9KG14OzfHQSc36kujDW/n5jjo5Mb30mjD27kxDjq5yV51UNrwdm7U81JujINGG97OjXlHys3xRKl3Rsw7Um6Og0qdxuMWUm5+L5U6jcdEjs+9byk4ff72dHtVy+MptxQYHXj7o0ZpKeXmEHh07hdLBIGVmpKsjq3cPLtgtAzu3Bz7nNyoKY2WwZ2bA4mTG99Lo2Vw58YzBiX3QNbSg9LquHNjHJRyY0FltAzu3PxeGrkDWcQNSqvjzs3P28nN61upKclyUsuNQsdoGdzXCcdvJTfPRRktg/s6eafcPD/n5OZ5LqPVcefGPUEnN1nVD0qr4/688WzEyc1zxEar4xTeUH87ufF5G62OOzfW30rL4EBXAGm5MX4bLYM7N9aDSu6R96uMlsGdG/c1pdyYL5VWxyPv2ystg0fet5dycxw06oYxoN6RcnMcNOqGkQ9cpdwcB426YeSeE6X17sg9J07u2d6k7767TuvdcbYXzMw9pxsO3EbdMI5z9aCZe+69PHArdcNsT6yZe64ePHArdcNsj/2BW6kbZnu+xdyzVxocuJW6YXb2xczNcVCpG2avSBFzz87SHbiVumF2dtHMze+lUu/MzkKLuWdn5g/cSr0zO8Nt5uY4qOSe9YTYcyt9S8dZ75ADt1LvzHo/ibln+9kO3Eq9kzGeOLlnPTUP3EqdNuuhJOae9bc9cCt12my/j5h7tg/vwK3UaY3XiZMb9bzSU3OcvTfAzM1xUKnTGudLJffsldUHbqVOm736Wcw94XmD0lNznO3DM3NjPFF6ao4Txm8ld5ztCztwG3VanJ1jNHNjXaX01IyzfXhmbszzSk/NONs/aObm+G3UaXG2D0/MPduHd+A26rQYUBdLuVFfKr1A42z/oJmb46BRp8VZDyUx9+yV7Aduo06Ls/2aYm7ue1R6gUbuU1J6asZZz0ExN/cpKT01I/cpObm5/0TpqRm538fJHTF+Kz01I/eFKb0p46yvhZkb60GlH16c9Zs5cCvrk9k7dw7cyvpk9k4pMzfusyn92SL3KTm5Z+96O3Ar6xPuezw+dy9ap7i8vd9s1tvt5XqzyCfr0+FklYd6OpyVYQgndToZ4pw16+GrKEsWboWUcmPql3Jj6ldazUVupVFatkVuZXdyz1pxHbiVW8uzVkVibm7NU1qfxcpxUMk9e537gVspgWYtxLzcKXI8MUq3xCOZUm6uq4zSLfGotNL6LPFoupQb30ul9VliywgnNx+xKa3PEh/ZS7lxy1BpfZZmLZbE3NwCpLRsSwOvbyc3r2+j3kncMivl5nyp1DuzVqEHbqNuiNzKLuXmetCoGyK34Eu5OQ4a9U6ctR42c0McbE7LtkgjVFpuiCfNadkWaZRUyp3oSLM5Ldtig6NvKXei87TmtJpLdH6p5YY835xWc/0v5FbqBjoHtHJTa15zWrYlauG0cpO1X3NatiVqZddyg25oTsu2RNY5zWkhlqilUMuN76XS+ixR66mWG/Ol0vosUeuplXv26tQDt1I3FH7eTm7Ml0rrs1Rw38fJTf1VzWl9lmhUw8o9eyXmgVupd6i/SsvNeV6pd8i6sjktxNLsFbtibup7bE4LsTR7ZbeYm0YEm9NCLBWO30buTOfzzWkhlshqrjmtuNLsla9mbozfSiuuxOeXUm6sq5RWXInmjprT0irxOaCUm99LZf1N81JS7sznaUpLq8znaVJuXidG3ZD5PM3JTZYozWlplfncVcqN+xBKK64cuT5xcmMcVFpx5Yh5R8qN9YnSiivTXF1zWlplmoOxcvM+stKKK3NfmJO7cjwx6p3M+/ZSbs47Sr3D5w2jUjfweYOTm88blFZzmfe/lVZzmc+Lpdwcv49ef6cwpuVzzL+djtNTvFvgK6l0a8vceuLk5tbB43O/WCIIrNQK3Fsq5cZaSunJlrlnUOnJlnlGSultlnlmR+kRlnmWTum1lXm2y8nNZ39Kr63MZ39SbjwbUXptZfIctHJzj6bSIyyT52Bzem1luuZVyl14FkPptZV5Zl7JXcgGvDm9tkpGQezk5jpW6bVVeK9e6VlVuOdEyo31idKzqnDvhpObz+SVXluFZ7il3PxeGnVD4TN5pWdV4d4NKTfHQaNuKOTlXJ3eT4W8brXckHeq0/upkEdvdXooFfJytnLTNa/V6aFUAuR5LTfUVdXp/VTo+uXq9FAqAeoqLTfHb2UdSx7U1elFVMir3Mo9cPxW1rEDx28nN8dvZf09YBxUehGVAfOOlBvjt9KLqNAMt5Q7k8d6dXoRZfKgrk5Pn0we61pujoPG+juTR0F1euNk8ijQcmM9eHxPn33DY6vt/Hp1fvbYqCdWiOwHfvWslWOIUitQj6aWm9eJUitQs7eWm9e3UuOQj6aVm+7zqE7fpEJ+ONXpP1SoF8zKTT6a1ek/VMh/yMpNvY7V6ZtUqLdUy431idI3qdC8uZYb86XSN6mQH2V1+g8VmiO2ctM8bnX6DxWaf9Zyczwx6obKZ5ZKH5/Cez1K7howDip9fCqftTq5+Wxb6T9U6X5lLTfuQyj9hyqfWUq5+b006obKZ61Sbo7fSt3AZ61SbqyrlL5Jhc+IldyVex2VvkmFzyyV3DXwOjHqnco9mlJuXidCnZYD+bBVgd/Tq88b92ON3P15Y54/vnnSa9y8fyLlxrxj9FDq3Li+pdwYB43eT50b46CTm+5DrUrPqs6NeV7KjbrY6LWVQ8J60Oi11bnxvEHKzetbqBtyoHsaqtKzqj9vzjtKbrpfoio9qzo35x0nN7+XSt1AHhxabnwvjV5bnRvzvNGzKgf2VpBy4/o2elZ1boyDUm6sB41eW3mIqNOMnlWdG/d9jN5PnZvjoJL7DevbWH8PI9aDUm7O88b6exixHpRycxw01t8Dn0sZPas6N9cnTm5YJ0XpWdW54b3UckO+LEqvrc4N9YmVmzxPitJrq3ODTtNyQxwsSq+tzg06TcsNdVVReoR1bsjzTu40UV9YcXqETdQXVpweYRN5cGi5ua4S6obOzfFEyU3zxcXpETbRPImVm+aii9PbbGr4vJUeYRPdKWXlprnR4vQIm2ieW8uNeUfpbTbRvGtxeoRN1K9p5aZ+zeL0NptovljLzfFEqRuoX7M4fbcm8iXScnMcVNbf1B+r5eb4ray/6ZJlLTfXsUrdkHmdKLmpP7Y4/cImuotWy43rROkXNlE/spWb+mOL0y9sov5YLTevE6XeoT4lLTfHE6XeoT6l4vQLm6g/VsuN51JKv7CJ+mO13FjHKv3CJupnk3K3N6xvo95pb3jeTm7U80qfs0Z9plpuzPNKn7M2Yl3l5Ka7DIvT56zRnZdabszzSp+zRn29Wm6sT5Q+Z437epV+YY38fbTcmOeVfmGN+6il3JznjXqncT+ylJvzjlLvcN+6lJvzpVLvcD+ylJvzjlLvkF+vlhvzjtHnrHNjnldyV/KPLUqfs/68Mc8rueuEecfoc9a5Me9IuTEOGn3OOjfmSyk3x0GjTqs8lyHl5nxp1GmV50mk3Kh3jL5ynZvzjpOb46BRp1W6Z0/LzfnSqNNq4/jt5Ob4bdRptXGed3KjbjD64aVK941quTFfGv3wOjfmSyk35h2jH17nxjwv5cZ8afTx69yYL40+fp0b846UG/O80cevc3O+VOoGnr+UcnO+VOoGnhuVcnO+VOqGwvnSyc35UqkbaE43K/3wOjfkHS035J2s9MNLleZGtdwQv7PSD69zQ/zOSl+5zg15XssN8Ts7feUqzUVruTnvKHVDBp2m5eZ8qdQNifOOsv6muX8rN83PZ6evXCW/Ai0353mlbqB737LTV66SX4GWG/OO0leu0v1pWm6M30o/vJowzzu5yY8jO/3wKt1rqOXGPK/0w6t0X112+uHVyPnSyc3xW6kbyG9Gy815XqkbyCdHy815XqkbyG8mO33lKvn7aLkx7yh95Sr55Gi5MX4rfeUq+ftouTHPK33lKvmIZKc/WyWfHC035svj+8rlsY3LX09vl2eXF5eLcZg4Biprb/Js0XJjjjdy50C9g1npKde5uTYR1t45UM+6lpuft1AzdG5+L53cXAsKNUPnxtrE6HGWA81earmxpjJ6nHVuzDtSbnwvjR5neSQvjqz0OOvcmC+l3PxeHl0zvMqNusHoFda5+b10cuPeidErrHNjPejkJi+8rPQK688bdbGTmzwqs9IrrHNzfaLk5r1Bo1dYf96cL53c+F4avcI6N+Z5KTfmHaNXWB65B8/JzT1KRq+w/rwxDjq5udfH6BXWubGOlXLze6nUadyj5OTmHg6jV1h/3rgP4eTms3mjV1jn5jjo5MY61ugV1rk5Diq5eSbD6BWWR54FlHLz+lbqNJ4FPD733/VwzK/tVAx99iHm5fXNr+uz+2Ump5aUBE4tf/eU5yNfioKpxTHWcVqGk/OxTGX1sZ6l4WMq6/XHKZ2Fj2ML7XT63ofXzma/S1RMeoVSlufX42K7O+l/yOXF9uvJZr0oJdca2+Jh/kUNzdCUN/sV/Pyhy55lHjeb6bS28o2Aj7/z9gJ4MZ+ElMi4rI+/H7FH3q6uY0nxeRPpKVfLSv6B/O6AaVlUQdvgHjltduerbc7P8zVJMNyV9gKYnrEG+bpenZffHuLmjl49gzp4gfzugGlZGBTBHnm32+RvZ7mkUwI+vj3pC2B+xhbk2/N4/tvTVB7fgHx0OfACGYEdr95Tuzu7i7lcQXCLljT9A5gWhQb57LSV6Xza7qAUEgK/m2d8/nj3cDrF1XaLwI4X7wcw1RVGZFwWx2/M3iM/Tw+7u6u7i3qOwI6c9wP4Dc/YgXx9W2IdL8pVewOyQzj9QH4nwOf5+mparR42oPSioAPuBfAbFoUDefX8MO6m0mKhiBwEHm4vkBHYIZt+esawLIJgV/wQK1pqj/kpfkUVEgRWRS+Q3wnw1fh89fXp7Pr8mp7xYBGnP5AR+OgpJIWxR+Tpt/qcTr89UGUxNMGYwAtkBD66/N8DPz08XJym58fV1TxwFbx4L4BpURiQ6xDGsoxPm/rxtw0MuwwG4/39M245rqbr8fFhdndzmL6fxB+/rhhDzNP3c9Tl/X0+P505u+7EsQi06Q/ip/5rNzM57ztxMviQzxxVz/V8df4xKvpL5vhnuwXkX2G1GOuUwtzg4lA+pSA4hqBvMP+vYf8lBDca/uOVVOpIXyE2g4ns7Fd4t/x/rCP4BsVgjQLfAJeR+EscltGAXyHbX+aZVn05/x/rCL5BEuyx0DfAZST+EvtlNHcL3nf++H/t4v7979v17sv/AMXYqUUU0QIA
100
100
  headers:
101
101
  Content-Type:
102
102
  - application/x-gzip
@@ -111,17 +111,17 @@ http_interactions:
111
111
  Expect:
112
112
  - 100-continue
113
113
  Content-Md5:
114
- - w51S63+1HQyz2xrspVFzTw==
114
+ - 2vH02K85ttkn0UoA+zS0KQ==
115
115
  X-Amz-Date:
116
- - 20191212T090644Z
116
+ - 20191212T110342Z
117
117
  X-Amz-Content-Sha256:
118
- - 8b27dcb6189c5304bbcd2183812d34c41eebc3a529ffefc8f47b92de782bc05c
118
+ - 8adcde22f2eec35463f6220ab44c44e16fb43dadbe0c4ae6ed412e0ea3fcb331
119
119
  Authorization:
120
120
  - AWS4-HMAC-SHA256 Credential=AKIAJAMMCXAR3IXMNCGQ/20191212/eu-west-1/s3/aws4_request,
121
121
  SignedHeaders=cache-control;content-md5;content-type;expect;host;user-agent;x-amz-acl;x-amz-content-sha256;x-amz-date,
122
- Signature=2f16a5b4e10c6b101d12be125177565a0df1e624c535cb4427b89a3a7cfb2bd3
122
+ Signature=897476ee693a126485e8cc0c9c5d7c8a52d461395e3e30f9d595affa3bdad492
123
123
  Content-Length:
124
- - '12430'
124
+ - '6429'
125
125
  Accept:
126
126
  - "*/*"
127
127
  response:
@@ -130,13 +130,13 @@ http_interactions:
130
130
  message: OK
131
131
  headers:
132
132
  X-Amz-Id-2:
133
- - za/vIiYwLTjAW2Nw+6Qiy6BoJfMik2R7KhGiFd9mJDOLPWw8gvyBuNFQ38a1IWIh43n5KkdgU8w=
133
+ - OpMlixpGCBvK0VLaDfAVtTwrq3CZDPKMXBmg0vGWo691Fj2cpmcJhiLQnznWcAR1wcvBqSZMNzA=
134
134
  X-Amz-Request-Id:
135
- - 647B28F89F0EC3FD
135
+ - BC0E135B826F92D8
136
136
  Date:
137
- - Thu, 12 Dec 2019 09:06:45 GMT
137
+ - Thu, 12 Dec 2019 11:03:44 GMT
138
138
  Etag:
139
- - '"c39d52eb7fb51d0cb3db1aeca551734f"'
139
+ - '"daf1f4d8af39b6d927d14a00fb34b429"'
140
140
  Content-Length:
141
141
  - '0'
142
142
  Server:
@@ -145,5 +145,5 @@ http_interactions:
145
145
  encoding: UTF-8
146
146
  string: ''
147
147
  http_version:
148
- recorded_at: Thu, 12 Dec 2019 09:06:44 GMT
148
+ recorded_at: Thu, 12 Dec 2019 11:03:43 GMT
149
149
  recorded_with: VCR 3.0.3
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: https://api.test.datacite.org/dois?fields%5Bdois%5D=doi,updated&page%5Bscroll%5D=7m&page%5Bsize%5D=1000
5
+ uri: https://api.test.datacite.org/dois?exclude-registration-agencies=true&fields%5Bdois%5D=doi,updated&page%5Bscroll%5D=7m&page%5Bsize%5D=1000
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -17,7 +17,7 @@ http_interactions:
17
17
  message: OK
18
18
  headers:
19
19
  Date:
20
- - Thu, 12 Dec 2019 09:06:27 GMT
20
+ - Thu, 12 Dec 2019 11:02:52 GMT
21
21
  Content-Type:
22
22
  - application/json; charset=utf-8
23
23
  Connection:
@@ -31,18 +31,18 @@ http_interactions:
31
31
  Vary:
32
32
  - Accept-Encoding, Origin
33
33
  X-Request-Id:
34
- - fd811c05-6831-4bdd-b945-763709bf2e31
34
+ - cae2578e-829b-4457-989f-841a64e2726e
35
35
  Etag:
36
- - W/"d3a17f80c11b8a8596c6c47434d69310"
36
+ - W/"5e9a8aa3e988d73ce0195a6e85bf0637"
37
37
  X-Runtime:
38
- - '2.560044'
38
+ - '15.349921'
39
39
  X-Powered-By:
40
40
  - Phusion Passenger 6.0.4
41
41
  Server:
42
42
  - nginx/1.17.3 + Phusion Passenger 6.0.4
43
43
  body:
44
44
  encoding: ASCII-8BIT
45
- string: '{"data":[{"id":"10.0166/fk2.stagefigshare.c.2794104","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794104","updated":"2019-12-12T06:41:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794104.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794104.v1","updated":"2019-12-12T06:41:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657672.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657672.v1","updated":"2019-12-12T06:38:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657672","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657672","updated":"2019-12-12T06:38:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794102","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794102","updated":"2019-12-12T06:36:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794102.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794102.v1","updated":"2019-12-12T06:36:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657670.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657670.v1","updated":"2019-12-12T06:35:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657670","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657670","updated":"2019-12-12T06:35:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794100","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794100","updated":"2019-12-12T06:34:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794100.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794100.v1","updated":"2019-12-12T06:34:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657668","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657668","updated":"2019-12-12T06:33:48.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657668.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657668.v1","updated":"2019-12-12T06:33:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657666","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657666","updated":"2019-12-12T06:32:29.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657666.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657666.v1","updated":"2019-12-12T06:32:29.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657664.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657664.v1","updated":"2019-12-12T06:28:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657664","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657664","updated":"2019-12-12T06:28:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657662","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657662","updated":"2019-12-12T06:28:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657662.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657662.v1","updated":"2019-12-12T06:28:22.000Z"},"relationships":{}},{"id":"10.33593/morressier.5ccac616cc2d79d348734c09","type":"dois","attributes":{"doi":"10.33593/morressier.5ccac616cc2d79d348734c09","updated":"2019-12-12T06:13:39.000Z"},"relationships":{}},{"id":"10.0311/fk2/9dbe9958121fd9f4aea057c63e70dbb9","type":"dois","attributes":{"doi":"10.0311/fk2/9dbe9958121fd9f4aea057c63e70dbb9","updated":"2019-12-12T05:41:49.000Z"},"relationships":{}},{"id":"10.70118/00001176.0","type":"dois","attributes":{"doi":"10.70118/00001176.0","updated":"2019-12-12T05:24:23.000Z"},"relationships":{}},{"id":"10.70118/00001176.1","type":"dois","attributes":{"doi":"10.70118/00001176.1","updated":"2019-12-12T05:24:23.000Z"},"relationships":{}},{"id":"10.70118/00001608","type":"dois","attributes":{"doi":"10.70118/00001608","updated":"2019-12-12T05:24:03.000Z"},"relationships":{}},{"id":"10.70118/00001607","type":"dois","attributes":{"doi":"10.70118/00001607","updated":"2019-12-12T05:24:02.000Z"},"relationships":{}},{"id":"10.70118/00001605","type":"dois","attributes":{"doi":"10.70118/00001605","updated":"2019-12-12T04:32:22.000Z"},"relationships":{}},{"id":"10.70118/00001602","type":"dois","attributes":{"doi":"10.70118/00001602","updated":"2019-12-12T04:14:57.000Z"},"relationships":{}},{"id":"10.70118/00001604","type":"dois","attributes":{"doi":"10.70118/00001604","updated":"2019-12-12T04:13:56.000Z"},"relationships":{}},{"id":"10.70118/00001603","type":"dois","attributes":{"doi":"10.70118/00001603","updated":"2019-12-12T04:13:55.000Z"},"relationships":{}},{"id":"10.70118/00001601","type":"dois","attributes":{"doi":"10.70118/00001601","updated":"2019-12-12T04:02:20.000Z"},"relationships":{}},{"id":"10.70112/obfgp9","type":"dois","attributes":{"doi":"10.70112/obfgp9","updated":"2019-12-12T02:33:45.000Z"},"relationships":{}},{"id":"10.70112/kwavz9","type":"dois","attributes":{"doi":"10.70112/kwavz9","updated":"2019-12-12T02:33:38.000Z"},"relationships":{}},{"id":"10.70112/r7jqmd","type":"dois","attributes":{"doi":"10.70112/r7jqmd","updated":"2019-12-12T02:33:30.000Z"},"relationships":{}},{"id":"10.70112/exn2dn","type":"dois","attributes":{"doi":"10.70112/exn2dn","updated":"2019-12-12T02:33:23.000Z"},"relationships":{}},{"id":"10.70112/1kebul","type":"dois","attributes":{"doi":"10.70112/1kebul","updated":"2019-12-12T02:33:16.000Z"},"relationships":{}},{"id":"10.70112/osbbcj","type":"dois","attributes":{"doi":"10.70112/osbbcj","updated":"2019-12-12T02:33:09.000Z"},"relationships":{}},{"id":"10.70112/c3kehg","type":"dois","attributes":{"doi":"10.70112/c3kehg","updated":"2019-12-12T02:33:02.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657606","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657606","updated":"2019-12-12T02:32:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657606.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657606.v1","updated":"2019-12-12T02:32:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657600","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657600","updated":"2019-12-12T02:31:26.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657600.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657600.v1","updated":"2019-12-12T02:31:26.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657594.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657594.v1","updated":"2019-12-12T02:29:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657594","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657594","updated":"2019-12-12T02:29:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657592.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657592.v1","updated":"2019-12-12T02:28:17.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657592","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657592","updated":"2019-12-12T02:28:17.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657588","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657588","updated":"2019-12-12T02:27:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657588.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657588.v1","updated":"2019-12-12T02:27:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657586","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657586","updated":"2019-12-12T02:27:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657586.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657586.v1","updated":"2019-12-12T02:27:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657582.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657582.v1","updated":"2019-12-12T02:25:53.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657582","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657582","updated":"2019-12-12T02:25:53.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657584.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657584.v1","updated":"2019-12-12T02:25:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657584","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657584","updated":"2019-12-12T02:25:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657580","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657580","updated":"2019-12-12T02:25:51.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657580.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657580.v1","updated":"2019-12-12T02:25:51.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657576","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657576","updated":"2019-12-12T02:25:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657576.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657576.v1","updated":"2019-12-12T02:25:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657572","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657572","updated":"2019-12-12T02:25:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657572.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657572.v1","updated":"2019-12-12T02:25:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657564.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657564.v1","updated":"2019-12-12T02:24:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657564","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657564","updated":"2019-12-12T02:24:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657560","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657560","updated":"2019-12-12T02:23:24.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657560.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657560.v1","updated":"2019-12-12T02:23:24.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794086.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794086.v1","updated":"2019-12-12T02:23:07.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657554","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657554","updated":"2019-12-12T02:23:00.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657554.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657554.v1","updated":"2019-12-12T02:23:00.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657534.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657534.v1","updated":"2019-12-12T02:22:56.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657534","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657534","updated":"2019-12-12T02:22:55.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657558","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657558","updated":"2019-12-12T02:22:17.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657558.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657558.v1","updated":"2019-12-12T02:22:16.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657556","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657556","updated":"2019-12-12T02:22:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657556.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657556.v1","updated":"2019-12-12T02:22:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657552.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657552.v1","updated":"2019-12-12T02:21:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657552","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657552","updated":"2019-12-12T02:21:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657544.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657544.v1","updated":"2019-12-12T02:21:26.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657544","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657544","updated":"2019-12-12T02:21:26.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657542","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657542","updated":"2019-12-12T02:21:18.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657542.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657542.v1","updated":"2019-12-12T02:21:18.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657530","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657530","updated":"2019-12-12T02:21:11.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657530.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657530.v1","updated":"2019-12-12T02:21:11.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657540","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657540","updated":"2019-12-12T02:21:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657540.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657540.v1","updated":"2019-12-12T02:21:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657538.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657538.v1","updated":"2019-12-12T02:21:01.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657538","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657538","updated":"2019-12-12T02:21:01.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657536","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657536","updated":"2019-12-12T02:20:59.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657536.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657536.v1","updated":"2019-12-12T02:20:58.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657532","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657532","updated":"2019-12-12T02:20:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657532.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657532.v1","updated":"2019-12-12T02:20:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657526","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657526","updated":"2019-12-12T02:17:37.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657526.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657526.v1","updated":"2019-12-12T02:17:37.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794094.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794094.v1","updated":"2019-12-12T02:14:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794094","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794094","updated":"2019-12-12T02:14:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657516","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657516","updated":"2019-12-12T02:14:48.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657516.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657516.v1","updated":"2019-12-12T02:14:48.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657512.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657512.v1","updated":"2019-12-12T02:12:58.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657512","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657512","updated":"2019-12-12T02:12:58.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657500","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657500","updated":"2019-12-12T02:11:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657500.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657500.v1","updated":"2019-12-12T02:11:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657498.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657498.v1","updated":"2019-12-12T02:11:00.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657498","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657498","updated":"2019-12-12T02:11:00.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657496","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657496","updated":"2019-12-12T02:10:59.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657496.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657496.v1","updated":"2019-12-12T02:10:59.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657494","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657494","updated":"2019-12-12T02:10:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657494.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657494.v1","updated":"2019-12-12T02:10:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657492.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657492.v1","updated":"2019-12-12T02:10:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657492","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657492","updated":"2019-12-12T02:10:14.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657490.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657490.v1","updated":"2019-12-12T02:10:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657490.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657490.v2","updated":"2019-12-12T02:10:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657490","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657490","updated":"2019-12-12T02:10:07.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657488","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657488","updated":"2019-12-12T02:09:51.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657488.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657488.v1","updated":"2019-12-12T02:09:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657486.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657486.v1","updated":"2019-12-12T02:09:45.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657486","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657486","updated":"2019-12-12T02:09:45.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657484","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657484","updated":"2019-12-12T02:09:29.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657484.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657484.v1","updated":"2019-12-12T02:09:29.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657470.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657470.v1","updated":"2019-12-12T02:09:02.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657470","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657470","updated":"2019-12-12T02:09:02.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657482.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657482.v1","updated":"2019-12-12T02:08:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657482","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657482","updated":"2019-12-12T02:08:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657480.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657480.v1","updated":"2019-12-12T02:08:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657480","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657480","updated":"2019-12-12T02:08:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657472.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657472.v1","updated":"2019-12-12T02:08:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657472","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657472","updated":"2019-12-12T02:08:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657478","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657478","updated":"2019-12-12T02:08:19.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657478.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657478.v1","updated":"2019-12-12T02:08:18.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657476","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657476","updated":"2019-12-12T02:08:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657476.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657476.v1","updated":"2019-12-12T02:08:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657474.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657474.v1","updated":"2019-12-12T02:08:14.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657474","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657474","updated":"2019-12-12T02:08:14.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657468","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657468","updated":"2019-12-12T02:06:37.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657468.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657468.v2","updated":"2019-12-12T02:06:37.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657468.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657468.v1","updated":"2019-12-12T02:06:37.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657416","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657416","updated":"2019-12-12T02:03:54.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657416.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657416.v1","updated":"2019-12-12T02:03:54.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657380.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657380.v1","updated":"2019-12-12T02:03:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657380","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657380","updated":"2019-12-12T02:03:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657350.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657350.v1","updated":"2019-12-12T02:03:46.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657350","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657350","updated":"2019-12-12T02:03:46.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794088.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794088.v1","updated":"2019-12-12T02:02:55.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794088","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794088","updated":"2019-12-12T02:02:55.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794086","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794086","updated":"2019-12-12T02:02:16.000Z"},"relationships":{}},{"id":"10.70122/fk2/uxwanp","type":"dois","attributes":{"doi":"10.70122/fk2/uxwanp","updated":"2019-12-12T02:02:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657460","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657460","updated":"2019-12-12T02:02:01.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657460.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657460.v1","updated":"2019-12-12T02:02:01.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657456","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657456","updated":"2019-12-12T02:01:57.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657456.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657456.v1","updated":"2019-12-12T02:01:56.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657452.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657452.v1","updated":"2019-12-12T02:01:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657452","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657452","updated":"2019-12-12T02:01:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657432","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657432","updated":"2019-12-12T02:00:51.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657432.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657432.v1","updated":"2019-12-12T02:00:51.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657414.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657414.v1","updated":"2019-12-12T01:59:41.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657414","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657414","updated":"2019-12-12T01:59:41.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657370","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657370","updated":"2019-12-12T01:58:53.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657370.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657370.v1","updated":"2019-12-12T01:58:53.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657392","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657392","updated":"2019-12-12T01:58:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657392.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657392.v1","updated":"2019-12-12T01:58:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657394","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657394","updated":"2019-12-12T01:58:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657394.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657394.v1","updated":"2019-12-12T01:58:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657366.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657366.v1","updated":"2019-12-12T01:57:27.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657366","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657366","updated":"2019-12-12T01:57:27.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657358","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657358","updated":"2019-12-12T01:57:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657358.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657358.v1","updated":"2019-12-12T01:57:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657344","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657344","updated":"2019-12-12T01:56:45.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657344.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657344.v1","updated":"2019-12-12T01:56:45.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657352.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657352.v1","updated":"2019-12-12T01:56:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657352","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657352","updated":"2019-12-12T01:56:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657346","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657346","updated":"2019-12-12T01:56:14.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657346.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657346.v1","updated":"2019-12-12T01:56:14.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657342","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657342","updated":"2019-12-12T01:55:51.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657342.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657342.v1","updated":"2019-12-12T01:55:51.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657338","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657338","updated":"2019-12-12T01:55:23.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657338.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657338.v1","updated":"2019-12-12T01:55:23.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657336.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657336.v1","updated":"2019-12-12T01:55:00.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657336","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657336","updated":"2019-12-12T01:55:00.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657334","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657334","updated":"2019-12-12T01:54:37.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657334.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657334.v1","updated":"2019-12-12T01:54:37.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657326","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657326","updated":"2019-12-12T01:54:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657326.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657326.v2","updated":"2019-12-12T01:54:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657326.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657326.v1","updated":"2019-12-12T01:54:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657332","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657332","updated":"2019-12-12T01:54:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657332.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657332.v1","updated":"2019-12-12T01:54:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657330.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657330.v1","updated":"2019-12-12T01:54:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657330","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657330","updated":"2019-12-12T01:54:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657322.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657322.v1","updated":"2019-12-12T01:53:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657322","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657322","updated":"2019-12-12T01:53:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657324.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657324.v1","updated":"2019-12-12T01:53:16.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657324","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657324","updated":"2019-12-12T01:53:16.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657316.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657316.v1","updated":"2019-12-12T01:52:28.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657316","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657316","updated":"2019-12-12T01:52:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657318","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657318","updated":"2019-12-12T01:52:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657318.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657318.v1","updated":"2019-12-12T01:52:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657306.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657306.v1","updated":"2019-12-12T01:50:12.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657306","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657306","updated":"2019-12-12T01:50:12.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657298.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657298.v1","updated":"2019-12-12T01:49:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657264.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657264.v1","updated":"2019-12-12T01:49:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657264.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657264.v2","updated":"2019-12-12T01:49:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657298","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657298","updated":"2019-12-12T01:49:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657264","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657264","updated":"2019-12-12T01:49:41.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657292","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657292","updated":"2019-12-12T01:48:41.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657292.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657292.v1","updated":"2019-12-12T01:48:41.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657282","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657282","updated":"2019-12-12T01:47:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657282.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657282.v1","updated":"2019-12-12T01:47:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657288.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657288.v1","updated":"2019-12-12T01:47:51.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657288","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657288","updated":"2019-12-12T01:47:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657284.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657284.v1","updated":"2019-12-12T01:46:59.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657284","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657284","updated":"2019-12-12T01:46:59.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657274","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657274","updated":"2019-12-12T01:46:54.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657274.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657274.v1","updated":"2019-12-12T01:46:54.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657280","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657280","updated":"2019-12-12T01:46:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657280.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657280.v1","updated":"2019-12-12T01:46:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657276.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657276.v1","updated":"2019-12-12T01:46:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657276","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657276","updated":"2019-12-12T01:46:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657268.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657268.v1","updated":"2019-12-12T01:45:38.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657268","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657268","updated":"2019-12-12T01:45:38.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657258.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657258.v1","updated":"2019-12-12T01:45:37.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657258","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657258","updated":"2019-12-12T01:45:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657260","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657260","updated":"2019-12-12T01:45:35.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657260.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657260.v1","updated":"2019-12-12T01:45:35.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657254.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657254.v1","updated":"2019-12-12T01:45:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657254","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657254","updated":"2019-12-12T01:45:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657262.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657262.v1","updated":"2019-12-12T01:45:11.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657262","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657262","updated":"2019-12-12T01:45:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657244.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657244.v1","updated":"2019-12-12T01:44:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657244","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657244","updated":"2019-12-12T01:44:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657248.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657248.v1","updated":"2019-12-12T01:44:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657246.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657246.v1","updated":"2019-12-12T01:44:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657248","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657248","updated":"2019-12-12T01:44:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657246","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657246","updated":"2019-12-12T01:44:07.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657242.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657242.v1","updated":"2019-12-12T01:43:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657242","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657242","updated":"2019-12-12T01:43:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657236","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657236","updated":"2019-12-12T01:43:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657236.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657236.v1","updated":"2019-12-12T01:43:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657232.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657232.v1","updated":"2019-12-12T01:43:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657232","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657232","updated":"2019-12-12T01:43:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657224.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657224.v1","updated":"2019-12-12T01:43:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657224","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657224","updated":"2019-12-12T01:43:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657228.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657228.v1","updated":"2019-12-12T01:43:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657228","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657228","updated":"2019-12-12T01:43:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657238.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657238.v1","updated":"2019-12-12T01:43:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657238","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657238","updated":"2019-12-12T01:43:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657234.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657234.v1","updated":"2019-12-12T01:43:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657234","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657234","updated":"2019-12-12T01:42:44.000Z"},"relationships":{}},{"id":"10.15771/imejidev.36c","type":"dois","attributes":{"doi":"10.15771/imejidev.36c","updated":"2019-12-12T01:42:39.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657230.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657230.v1","updated":"2019-12-12T01:42:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657230","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657230","updated":"2019-12-12T01:42:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657202","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657202","updated":"2019-12-12T01:41:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657202.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657202.v1","updated":"2019-12-12T01:41:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657196.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657196.v1","updated":"2019-12-12T01:41:12.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657196","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657196","updated":"2019-12-12T01:41:12.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657180.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657180.v1","updated":"2019-12-12T01:39:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657180","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657180","updated":"2019-12-12T01:39:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657170.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657170.v1","updated":"2019-12-12T01:39:20.000Z"},"relationships":{}},{"id":"10.15771/imejidev.36b","type":"dois","attributes":{"doi":"10.15771/imejidev.36b","updated":"2019-12-12T01:39:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657170","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657170","updated":"2019-12-12T01:39:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657174","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657174","updated":"2019-12-12T01:39:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657174.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657174.v1","updated":"2019-12-12T01:39:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657158.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657158.v2","updated":"2019-12-12T01:37:45.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657158.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657158.v1","updated":"2019-12-12T01:37:45.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657158","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657158","updated":"2019-12-12T01:37:44.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657162.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657162.v1","updated":"2019-12-12T01:37:43.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657162","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657162","updated":"2019-12-12T01:37:43.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657154","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657154","updated":"2019-12-12T01:37:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657154.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657154.v1","updated":"2019-12-12T01:37:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657156.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657156.v1","updated":"2019-12-12T01:36:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657156","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657156","updated":"2019-12-12T01:36:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657148.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657148.v1","updated":"2019-12-12T01:36:29.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657148","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657148","updated":"2019-12-12T01:36:28.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657150.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657150.v1","updated":"2019-12-12T01:36:11.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657150","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657150","updated":"2019-12-12T01:36:11.000Z"},"relationships":{}},{"id":"10.15771/imejidev.36a","type":"dois","attributes":{"doi":"10.15771/imejidev.36a","updated":"2019-12-12T01:36:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657142.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657142.v1","updated":"2019-12-12T01:35:55.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657142","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657142","updated":"2019-12-12T01:35:55.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657138.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657138.v2","updated":"2019-12-12T01:35:34.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657138.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657138.v1","updated":"2019-12-12T01:35:34.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657138","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657138","updated":"2019-12-12T01:35:33.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657140","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657140","updated":"2019-12-12T01:35:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657140.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657140.v1","updated":"2019-12-12T01:35:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657136.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657136.v1","updated":"2019-12-12T01:34:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657136","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657136","updated":"2019-12-12T01:34:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657134","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657134","updated":"2019-12-12T01:33:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657134.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657134.v1","updated":"2019-12-12T01:33:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657132","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657132","updated":"2019-12-12T01:33:30.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657132.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657132.v1","updated":"2019-12-12T01:33:30.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657130","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657130","updated":"2019-12-12T01:33:14.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657130.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657130.v1","updated":"2019-12-12T01:33:14.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657126.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657126.v1","updated":"2019-12-12T01:33:05.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657126","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657126","updated":"2019-12-12T01:33:04.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657122","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657122","updated":"2019-12-12T01:32:56.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657122.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657122.v1","updated":"2019-12-12T01:32:55.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657120","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657120","updated":"2019-12-12T01:32:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657120.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657120.v1","updated":"2019-12-12T01:32:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657116","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657116","updated":"2019-12-12T01:32:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657116.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657116.v1","updated":"2019-12-12T01:32:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657128.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657128.v1","updated":"2019-12-12T01:32:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657128","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657128","updated":"2019-12-12T01:32:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657106.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657106.v2","updated":"2019-12-12T01:32:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657106","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657106","updated":"2019-12-12T01:32:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657106.v3","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657106.v3","updated":"2019-12-12T01:32:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657124","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657124","updated":"2019-12-12T01:32:14.000Z"},"relationships":{}},{"id":"10.15771/imejidev.369","type":"dois","attributes":{"doi":"10.15771/imejidev.369","updated":"2019-12-12T01:32:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657118","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657118","updated":"2019-12-12T01:32:03.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657106.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657106.v1","updated":"2019-12-12T01:31:58.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657114.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657114.v1","updated":"2019-12-12T01:31:56.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657114","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657114","updated":"2019-12-12T01:31:55.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657112.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657112.v1","updated":"2019-12-12T01:31:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657112","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657112","updated":"2019-12-12T01:31:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657108.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657108.v1","updated":"2019-12-12T01:31:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657108","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657108","updated":"2019-12-12T01:31:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657094.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657094.v1","updated":"2019-12-12T01:31:07.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657094","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657094","updated":"2019-12-12T01:31:07.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657084","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657084","updated":"2019-12-12T01:30:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657084.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657084.v1","updated":"2019-12-12T01:30:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657074.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657074.v1","updated":"2019-12-12T01:30:33.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657074","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657074","updated":"2019-12-12T01:30:33.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657066.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657066.v1","updated":"2019-12-12T01:30:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657066","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657066","updated":"2019-12-12T01:30:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657060.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657060.v1","updated":"2019-12-12T01:30:14.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657060","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657060","updated":"2019-12-12T01:30:14.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657058","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657058","updated":"2019-12-12T01:30:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657058.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657058.v1","updated":"2019-12-12T01:30:09.000Z"},"relationships":{}},{"id":"10.15771/imejidev.368","type":"dois","attributes":{"doi":"10.15771/imejidev.368","updated":"2019-12-12T01:29:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657030","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657030","updated":"2019-12-12T01:29:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657030.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657030.v1","updated":"2019-12-12T01:29:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657020.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657020.v1","updated":"2019-12-12T01:28:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657020","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657020","updated":"2019-12-12T01:28:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657012","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657012","updated":"2019-12-12T01:28:39.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657012.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657012.v1","updated":"2019-12-12T01:28:39.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657010.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657010.v1","updated":"2019-12-12T01:28:30.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657010","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657010","updated":"2019-12-12T01:28:30.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657008","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657008","updated":"2019-12-12T01:28:28.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657008.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657008.v1","updated":"2019-12-12T01:28:27.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656996","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656996","updated":"2019-12-12T01:27:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656980","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656980","updated":"2019-12-12T01:27:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656980.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656980.v1","updated":"2019-12-12T01:27:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656970.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656970.v1","updated":"2019-12-12T01:27:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656970","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656970","updated":"2019-12-12T01:27:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656948","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656948","updated":"2019-12-12T01:26:57.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656948.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656948.v1","updated":"2019-12-12T01:26:57.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656946","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656946","updated":"2019-12-12T01:26:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656946.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656946.v1","updated":"2019-12-12T01:26:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656962.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656962.v1","updated":"2019-12-12T01:26:44.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656962","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656962","updated":"2019-12-12T01:26:44.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656956.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656956.v1","updated":"2019-12-12T01:26:26.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656956","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656956","updated":"2019-12-12T01:26:26.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656938.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656938.v1","updated":"2019-12-12T01:25:43.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656938","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656938","updated":"2019-12-12T01:25:43.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656930.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656930.v1","updated":"2019-12-12T01:25:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656930","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656930","updated":"2019-12-12T01:25:23.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656882.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656882.v1","updated":"2019-12-12T01:23:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656882","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656882","updated":"2019-12-12T01:23:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794078.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794078.v1","updated":"2019-12-12T01:23:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794040.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794040.v1","updated":"2019-12-12T01:23:07.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794052.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794052.v1","updated":"2019-12-12T01:23:07.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794018.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794018.v1","updated":"2019-12-12T01:23:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794030.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794030.v1","updated":"2019-12-12T01:23:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794078","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794078","updated":"2019-12-12T01:22:57.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656880","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656880","updated":"2019-12-12T01:22:35.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794068","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794068","updated":"2019-12-12T01:20:35.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794068.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794068.v1","updated":"2019-12-12T01:20:35.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656860.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656860.v1","updated":"2019-12-12T01:20:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656860","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656860","updated":"2019-12-12T01:20:19.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656868","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656868","updated":"2019-12-12T01:20:18.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656868.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656868.v1","updated":"2019-12-12T01:20:18.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656856","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656856","updated":"2019-12-12T01:19:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656856.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656856.v1","updated":"2019-12-12T01:19:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794060","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794060","updated":"2019-12-12T01:18:04.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794060.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794060.v1","updated":"2019-12-12T01:18:04.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656844","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656844","updated":"2019-12-12T01:17:58.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656844.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656844.v1","updated":"2019-12-12T01:17:58.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656840.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656840.v1","updated":"2019-12-12T01:17:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656840","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656840","updated":"2019-12-12T01:17:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794052","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794052","updated":"2019-12-12T01:14:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794052.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794052.v2","updated":"2019-12-12T01:14:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656834","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656834","updated":"2019-12-12T01:14:27.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656834.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656834.v1","updated":"2019-12-12T01:14:27.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656832.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656832.v1","updated":"2019-12-12T01:14:26.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656832","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656832","updated":"2019-12-12T01:14:26.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656830.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656830.v1","updated":"2019-12-12T01:14:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656830","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656830","updated":"2019-12-12T01:14:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656828.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656828.v1","updated":"2019-12-12T01:14:24.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656828","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656828","updated":"2019-12-12T01:14:24.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656826.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656826.v1","updated":"2019-12-12T01:14:23.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656826","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656826","updated":"2019-12-12T01:14:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794048.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794048.v1","updated":"2019-12-12T01:14:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656824.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656824.v1","updated":"2019-12-12T01:14:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794046.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794046.v1","updated":"2019-12-12T01:14:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794050.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794050.v1","updated":"2019-12-12T01:14:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794048","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794048","updated":"2019-12-12T01:14:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794046","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794046","updated":"2019-12-12T01:14:20.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656824","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656824","updated":"2019-12-12T01:14:19.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794050","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794050","updated":"2019-12-12T01:14:19.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794038.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794038.v1","updated":"2019-12-12T01:14:18.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794038.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794038.v2","updated":"2019-12-12T01:14:18.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656822","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656822","updated":"2019-12-12T01:14:17.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794038","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794038","updated":"2019-12-12T01:14:17.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656822.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656822.v1","updated":"2019-12-12T01:14:17.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656802.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656802.v2","updated":"2019-12-12T01:14:16.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656802","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656802","updated":"2019-12-12T01:14:16.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656802.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656802.v1","updated":"2019-12-12T01:14:16.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656820.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656820.v1","updated":"2019-12-12T01:13:00.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656820","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656820","updated":"2019-12-12T01:13:00.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794030","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794030","updated":"2019-12-12T01:12:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656814","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656814","updated":"2019-12-12T01:12:41.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656814.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656814.v1","updated":"2019-12-12T01:12:41.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794026.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794026.v1","updated":"2019-12-12T01:12:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794026","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794026","updated":"2019-12-12T01:12:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794034","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794034","updated":"2019-12-12T01:12:38.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794034.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794034.v1","updated":"2019-12-12T01:12:38.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794034.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794034.v2","updated":"2019-12-12T01:12:38.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656810.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656810.v1","updated":"2019-12-12T01:12:35.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656810","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656810","updated":"2019-12-12T01:12:35.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656808","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656808","updated":"2019-12-12T01:12:31.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656808.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656808.v1","updated":"2019-12-12T01:12:31.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794040","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794040","updated":"2019-12-12T01:12:30.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656806.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656806.v1","updated":"2019-12-12T01:12:27.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656806","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656806","updated":"2019-12-12T01:12:27.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656804","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656804","updated":"2019-12-12T01:12:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656804.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656804.v1","updated":"2019-12-12T01:12:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656798","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656798","updated":"2019-12-12T01:12:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656798.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656798.v1","updated":"2019-12-12T01:12:13.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656796","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656796","updated":"2019-12-12T01:12:11.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656796.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656796.v1","updated":"2019-12-12T01:12:11.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656794.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656794.v1","updated":"2019-12-12T01:12:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794020.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794020.v1","updated":"2019-12-12T01:12:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794020","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794020","updated":"2019-12-12T01:12:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656794","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656794","updated":"2019-12-12T01:12:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656792.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656792.v1","updated":"2019-12-12T01:12:04.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656790","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656790","updated":"2019-12-12T01:12:04.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656792","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656792","updated":"2019-12-12T01:12:04.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656790.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656790.v1","updated":"2019-12-12T01:12:04.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656788.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656788.v1","updated":"2019-12-12T01:11:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656788","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656788","updated":"2019-12-12T01:11:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656786","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656786","updated":"2019-12-12T01:11:43.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656786.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656786.v1","updated":"2019-12-12T01:11:43.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794018.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794018.v2","updated":"2019-12-12T01:11:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794018","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794018","updated":"2019-12-12T01:11:41.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656784.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656784.v1","updated":"2019-12-12T01:11:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656784","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656784","updated":"2019-12-12T01:11:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656782.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656782.v1","updated":"2019-12-12T01:11:34.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656782","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656782","updated":"2019-12-12T01:11:33.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656780","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656780","updated":"2019-12-12T01:11:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656780.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656780.v1","updated":"2019-12-12T01:11:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656778.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656778.v1","updated":"2019-12-12T01:11:23.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656778","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656778","updated":"2019-12-12T01:11:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656776.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656776.v1","updated":"2019-12-12T01:11:17.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656776","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656776","updated":"2019-12-12T01:11:17.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656774.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656774.v1","updated":"2019-12-12T01:11:12.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656774","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656774","updated":"2019-12-12T01:11:12.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656772","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656772","updated":"2019-12-12T01:11:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656772.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656772.v1","updated":"2019-12-12T01:11:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656770.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656770.v1","updated":"2019-12-12T01:11:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656770","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656770","updated":"2019-12-12T01:11:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656768","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656768","updated":"2019-12-12T01:11:03.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656768.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656768.v1","updated":"2019-12-12T01:11:03.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656766","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656766","updated":"2019-12-12T01:11:02.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656766.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656766.v1","updated":"2019-12-12T01:11:02.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656764.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656764.v1","updated":"2019-12-12T01:10:55.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656764","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656764","updated":"2019-12-12T01:10:55.000Z"},"relationships":{}},{"id":"10.17889/e115907v1","type":"dois","attributes":{"doi":"10.17889/e115907v1","updated":"2019-12-12T00:30:08.000Z"},"relationships":{}},{"id":"10.17889/e115907","type":"dois","attributes":{"doi":"10.17889/e115907","updated":"2019-12-12T00:30:08.000Z"},"relationships":{}},{"id":"10.17889/e108317v4","type":"dois","attributes":{"doi":"10.17889/e108317v4","updated":"2019-12-12T00:30:07.000Z"},"relationships":{}},{"id":"10.17889/e115891v2","type":"dois","attributes":{"doi":"10.17889/e115891v2","updated":"2019-12-12T00:30:06.000Z"},"relationships":{}},{"id":"10.17889/e115052v2-28719","type":"dois","attributes":{"doi":"10.17889/e115052v2-28719","updated":"2019-12-12T00:30:06.000Z"},"relationships":{}},{"id":"10.17889/e115276v4","type":"dois","attributes":{"doi":"10.17889/e115276v4","updated":"2019-12-12T00:30:06.000Z"},"relationships":{}},{"id":"10.17889/e107582v19","type":"dois","attributes":{"doi":"10.17889/e107582v19","updated":"2019-12-12T00:30:05.000Z"},"relationships":{}},{"id":"10.17889/e115891v1","type":"dois","attributes":{"doi":"10.17889/e115891v1","updated":"2019-12-12T00:30:05.000Z"},"relationships":{}},{"id":"10.17889/e115276","type":"dois","attributes":{"doi":"10.17889/e115276","updated":"2019-12-12T00:30:04.000Z"},"relationships":{}},{"id":"10.17889/e115276v3","type":"dois","attributes":{"doi":"10.17889/e115276v3","updated":"2019-12-12T00:30:04.000Z"},"relationships":{}},{"id":"10.17889/e107582v18","type":"dois","attributes":{"doi":"10.17889/e107582v18","updated":"2019-12-12T00:30:04.000Z"},"relationships":{}},{"id":"10.17889/e108317v3","type":"dois","attributes":{"doi":"10.17889/e108317v3","updated":"2019-12-12T00:30:03.000Z"},"relationships":{}},{"id":"10.17889/e115052v1","type":"dois","attributes":{"doi":"10.17889/e115052v1","updated":"2019-12-12T00:30:02.000Z"},"relationships":{}},{"id":"10.17889/e100852v3","type":"dois","attributes":{"doi":"10.17889/e100852v3","updated":"2019-12-12T00:30:01.000Z"},"relationships":{}},{"id":"10.17889/e107582","type":"dois","attributes":{"doi":"10.17889/e107582","updated":"2019-12-12T00:30:00.000Z"},"relationships":{}},{"id":"10.17889/e100852","type":"dois","attributes":{"doi":"10.17889/e100852","updated":"2019-12-12T00:30:00.000Z"},"relationships":{}},{"id":"10.23718/pdbp/19677","type":"dois","attributes":{"doi":"10.23718/pdbp/19677","updated":"2019-12-12T00:17:22.000Z"},"relationships":{}},{"id":"10.23718/pdbp/19678","type":"dois","attributes":{"doi":"10.23718/pdbp/19678","updated":"2019-12-12T00:17:22.000Z"},"relationships":{}},{"id":"10.0260/co.2433788.v1","type":"dois","attributes":{"doi":"10.0260/co.2433788.v1","updated":"2019-12-12T00:01:00.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df1794216163","type":"dois","attributes":{"doi":"10.70131/test_doi_5df1794216163","updated":"2019-12-11T23:18:29.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df17939dba6b","type":"dois","attributes":{"doi":"10.70131/test_doi_5df17939dba6b","updated":"2019-12-11T23:18:24.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df1780957357","type":"dois","attributes":{"doi":"10.70131/test_doi_5df1780957357","updated":"2019-12-11T23:13:16.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df17802a4376","type":"dois","attributes":{"doi":"10.70131/test_doi_5df17802a4376","updated":"2019-12-11T23:13:09.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177fd8ce0d","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177fd8ce0d","updated":"2019-12-11T23:13:04.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177f882f66","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177f882f66","updated":"2019-12-11T23:12:59.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177f374b52","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177f374b52","updated":"2019-12-11T23:12:54.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177ee5c490","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177ee5c490","updated":"2019-12-11T23:12:49.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177e94cfe3","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177e94cfe3","updated":"2019-12-11T23:12:43.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177e431af4","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177e431af4","updated":"2019-12-11T23:12:38.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177df0d218","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177df0d218","updated":"2019-12-11T23:12:33.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177a6b45dd","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177a6b45dd","updated":"2019-12-11T23:11:37.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177a341251","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177a341251","updated":"2019-12-11T23:11:34.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177a05ca68","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177a05ca68","updated":"2019-12-11T23:11:31.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df1779274aec","type":"dois","attributes":{"doi":"10.70131/test_doi_5df1779274aec","updated":"2019-12-11T23:11:19.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df1778fa29e0","type":"dois","attributes":{"doi":"10.70131/test_doi_5df1778fa29e0","updated":"2019-12-11T23:11:14.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df1778c78893","type":"dois","attributes":{"doi":"10.70131/test_doi_5df1778c78893","updated":"2019-12-11T23:11:11.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5df177898021d","type":"dois","attributes":{"doi":"10.70131/test_doi_5df177898021d","updated":"2019-12-11T23:11:08.000Z"},"relationships":{}},{"id":"10.0353/development:abefb1a3-6ae9-4da6-a9a8-d7f66f98710e:20190723:1","type":"dois","attributes":{"doi":"10.0353/development:abefb1a3-6ae9-4da6-a9a8-d7f66f98710e:20190723:1","updated":"2019-12-11T23:10:58.000Z"},"relationships":{}},{"id":"10.70122/fk2/xvkpco","type":"dois","attributes":{"doi":"10.70122/fk2/xvkpco","updated":"2019-12-11T23:06:49.000Z"},"relationships":{}},{"id":"10.7966/9h05-8h60","type":"dois","attributes":{"doi":"10.7966/9h05-8h60","updated":"2019-12-11T22:44:00.000Z"},"relationships":{}},{"id":"10.70122/fk2/wmrchl","type":"dois","attributes":{"doi":"10.70122/fk2/wmrchl","updated":"2019-12-11T22:32:39.000Z"},"relationships":{}},{"id":"10.70122/fk2/c7tm9m","type":"dois","attributes":{"doi":"10.70122/fk2/c7tm9m","updated":"2019-12-11T22:25:52.000Z"},"relationships":{}},{"id":"10.70122/fk2/npsc0m","type":"dois","attributes":{"doi":"10.70122/fk2/npsc0m","updated":"2019-12-11T22:18:36.000Z"},"relationships":{}},{"id":"10.70122/fk2/jtwbef","type":"dois","attributes":{"doi":"10.70122/fk2/jtwbef","updated":"2019-12-11T22:18:01.000Z"},"relationships":{}},{"id":"10.70122/fk2/nqm0ls","type":"dois","attributes":{"doi":"10.70122/fk2/nqm0ls","updated":"2019-12-11T22:17:11.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656436.v3","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656436.v3","updated":"2019-12-11T22:01:16.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656436.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656436.v2","updated":"2019-12-11T22:01:16.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656436","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656436","updated":"2019-12-11T22:01:15.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656436.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656436.v1","updated":"2019-12-11T22:00:33.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656434.v2","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656434.v2","updated":"2019-12-11T21:57:44.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656434","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656434","updated":"2019-12-11T21:57:44.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656434.v3","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656434.v3","updated":"2019-12-11T21:57:44.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6656434.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6656434.v1","updated":"2019-12-11T21:57:10.000Z"},"relationships":{}},{"id":"10.23706/s9uow052","type":"dois","attributes":{"doi":"10.23706/s9uow052","updated":"2019-12-11T20:52:59.000Z"},"relationships":{}},{"id":"10.33587/vjkf-0a54","type":"dois","attributes":{"doi":"10.33587/vjkf-0a54","updated":"2019-12-11T20:38:16.000Z"},"relationships":{}},{"id":"10.33587/fz82-py58","type":"dois","attributes":{"doi":"10.33587/fz82-py58","updated":"2019-12-11T20:38:16.000Z"},"relationships":{}},{"id":"10.1234/shwbfypddn.1","type":"dois","attributes":{"doi":"10.1234/shwbfypddn.1","updated":"2019-12-11T20:31:31.000Z"},"relationships":{}},{"id":"10.0133/47580","type":"dois","attributes":{"doi":"10.0133/47580","updated":"2019-12-11T20:31:30.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6637971","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6637971","updated":"2019-12-11T20:31:30.000Z"},"relationships":{}},{"id":"10.33564/fk2/cfrf6w/rvbqoz","type":"dois","attributes":{"doi":"10.33564/fk2/cfrf6w/rvbqoz","updated":"2019-12-11T20:31:30.000Z"},"relationships":{}},{"id":"10.24335/l21321","type":"dois","attributes":{"doi":"10.24335/l21321","updated":"2019-12-11T20:31:29.000Z"},"relationships":{}},{"id":"10.33593/morressier.56d5ba27d462b80296c95f91","type":"dois","attributes":{"doi":"10.33593/morressier.56d5ba27d462b80296c95f91","updated":"2019-12-11T20:31:29.000Z"},"relationships":{}},{"id":"10.5282/ubm/digi.1860","type":"dois","attributes":{"doi":"10.5282/ubm/digi.1860","updated":"2019-12-11T20:31:29.000Z"},"relationships":{}},{"id":"10.21401/c559b4c8","type":"dois","attributes":{"doi":"10.21401/c559b4c8","updated":"2019-12-11T20:31:28.000Z"},"relationships":{}},{"id":"10.5290/1200156","type":"dois","attributes":{"doi":"10.5290/1200156","updated":"2019-12-11T20:31:28.000Z"},"relationships":{}},{"id":"10.33522/h344-llhv","type":"dois","attributes":{"doi":"10.33522/h344-llhv","updated":"2019-12-11T20:31:28.000Z"},"relationships":{}},{"id":"10.5286/isis.e/isis.e.rb1720482","type":"dois","attributes":{"doi":"10.5286/isis.e/isis.e.rb1720482","updated":"2019-12-11T20:31:28.000Z"},"relationships":{}},{"id":"10.33563/fk2/4zopy4","type":"dois","attributes":{"doi":"10.33563/fk2/4zopy4","updated":"2019-12-11T20:20:29.000Z"},"relationships":{}},{"id":"10.33563/fk2/4zopy4/esfsri","type":"dois","attributes":{"doi":"10.33563/fk2/4zopy4/esfsri","updated":"2019-12-11T20:20:28.000Z"},"relationships":{}},{"id":"10.33563/fk2/4zopy4/t6i6hz","type":"dois","attributes":{"doi":"10.33563/fk2/4zopy4/t6i6hz","updated":"2019-12-11T20:20:28.000Z"},"relationships":{}},{"id":"10.33563/fk2/4zopy4/kttdny","type":"dois","attributes":{"doi":"10.33563/fk2/4zopy4/kttdny","updated":"2019-12-11T20:20:27.000Z"},"relationships":{}},{"id":"10.33587/2j2j-pj50","type":"dois","attributes":{"doi":"10.33587/2j2j-pj50","updated":"2019-12-11T20:02:43.000Z"},"relationships":{}},{"id":"10.21367/datacite_go.0047","type":"dois","attributes":{"doi":"10.21367/datacite_go.0047","updated":"2019-12-11T20:02:41.000Z"},"relationships":{}},{"id":"10.15146/5ysn-h463","type":"dois","attributes":{"doi":"10.15146/5ysn-h463","updated":"2019-12-11T20:02:18.000Z"},"relationships":{}},{"id":"10.23706/s9z9xi83","type":"dois","attributes":{"doi":"10.23706/s9z9xi83","updated":"2019-12-11T20:01:59.000Z"},"relationships":{}},{"id":"10.21433/67th-2794","type":"dois","attributes":{"doi":"10.21433/67th-2794","updated":"2019-12-11T20:01:44.000Z"},"relationships":{}},{"id":"10.17889/e107957v4-10617","type":"dois","attributes":{"doi":"10.17889/e107957v4-10617","updated":"2019-12-11T20:01:44.000Z"},"relationships":{}},{"id":"10.70122/fk2/7fccwx/gb4clq","type":"dois","attributes":{"doi":"10.70122/fk2/7fccwx/gb4clq","updated":"2019-12-11T20:01:43.000Z"},"relationships":{}},{"id":"10.15496/publikation-22889","type":"dois","attributes":{"doi":"10.15496/publikation-22889","updated":"2019-12-11T20:01:43.000Z"},"relationships":{}},{"id":"10.70114/idbdev-6994051_v1","type":"dois","attributes":{"doi":"10.70114/idbdev-6994051_v1","updated":"2019-12-11T20:01:42.000Z"},"relationships":{}},{"id":"10.33546/03ye-n387","type":"dois","attributes":{"doi":"10.33546/03ye-n387","updated":"2019-12-11T20:01:42.000Z"},"relationships":{}},{"id":"10.70112/ricgxh","type":"dois","attributes":{"doi":"10.70112/ricgxh","updated":"2019-12-11T20:01:41.000Z"},"relationships":{}},{"id":"10.15488/123","type":"dois","attributes":{"doi":"10.15488/123","updated":"2019-12-11T20:01:41.000Z"},"relationships":{}},{"id":"10.21977/k98c-z024","type":"dois","attributes":{"doi":"10.21977/k98c-z024","updated":"2019-12-11T20:01:40.000Z"},"relationships":{}},{"id":"10.33573/fk2/xoyl89/ln8u7b","type":"dois","attributes":{"doi":"10.33573/fk2/xoyl89/ln8u7b","updated":"2019-12-11T20:01:40.000Z"},"relationships":{}},{"id":"10.33535/test_doi_5db3e501ce33e","type":"dois","attributes":{"doi":"10.33535/test_doi_5db3e501ce33e","updated":"2019-12-11T20:01:39.000Z"},"relationships":{}},{"id":"10.0311/fk2/bd13eb24d1a9fb643da1990b1da41352","type":"dois","attributes":{"doi":"10.0311/fk2/bd13eb24d1a9fb643da1990b1da41352","updated":"2019-12-11T20:01:38.000Z"},"relationships":{}},{"id":"10.70118/00001278","type":"dois","attributes":{"doi":"10.70118/00001278","updated":"2019-12-11T20:01:38.000Z"},"relationships":{}},{"id":"10.33516/jzywzmwm","type":"dois","attributes":{"doi":"10.33516/jzywzmwm","updated":"2019-12-11T20:01:38.000Z"},"relationships":{}},{"id":"10.00012/uu01-1x572a","type":"dois","attributes":{"doi":"10.00012/uu01-1x572a","updated":"2019-12-11T20:01:38.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d36a18b4d440","type":"dois","attributes":{"doi":"10.70131/test_doi_5d36a18b4d440","updated":"2019-12-11T20:01:37.000Z"},"relationships":{}},{"id":"10.4124/fairsharing.hknlst","type":"dois","attributes":{"doi":"10.4124/fairsharing.hknlst","updated":"2019-12-11T20:01:37.000Z"},"relationships":{}},{"id":"10.23655/f15z-k675","type":"dois","attributes":{"doi":"10.23655/f15z-k675","updated":"2019-12-11T20:01:36.000Z"},"relationships":{}},{"id":"10.0350/heal.auth.ir.302169","type":"dois","attributes":{"doi":"10.0350/heal.auth.ir.302169","updated":"2019-12-11T20:01:36.000Z"},"relationships":{}},{"id":"10.18749/dodis-38378","type":"dois","attributes":{"doi":"10.18749/dodis-38378","updated":"2019-12-11T20:01:36.000Z"},"relationships":{}},{"id":"10.21945/surf-trng.578c6039-7dcd340d","type":"dois","attributes":{"doi":"10.21945/surf-trng.578c6039-7dcd340d","updated":"2019-12-11T20:01:35.000Z"},"relationships":{}},{"id":"10.0859/intervals.jh346c","type":"dois","attributes":{"doi":"10.0859/intervals.jh346c","updated":"2019-12-11T20:01:35.000Z"},"relationships":{}},{"id":"10.14454/1x4x-9056","type":"dois","attributes":{"doi":"10.14454/1x4x-9056","updated":"2019-12-11T20:01:35.000Z"},"relationships":{}},{"id":"10.80056/06070056","type":"dois","attributes":{"doi":"10.80056/06070056","updated":"2019-12-11T20:01:35.000Z"},"relationships":{}},{"id":"10.33563/fk2/cmhz82","type":"dois","attributes":{"doi":"10.33563/fk2/cmhz82","updated":"2019-12-11T20:01:34.000Z"},"relationships":{}},{"id":"10.24399/sr100","type":"dois","attributes":{"doi":"10.24399/sr100","updated":"2019-12-11T20:01:34.000Z"},"relationships":{}},{"id":"10.23705/d92h3w9d","type":"dois","attributes":{"doi":"10.23705/d92h3w9d","updated":"2019-12-11T20:01:34.000Z"},"relationships":{}},{"id":"10.7272/gfp7-wq34","type":"dois","attributes":{"doi":"10.7272/gfp7-wq34","updated":"2019-12-11T20:01:34.000Z"},"relationships":{}},{"id":"10.21373/1559917260944","type":"dois","attributes":{"doi":"10.21373/1559917260944","updated":"2019-12-11T20:01:33.000Z"},"relationships":{}},{"id":"10.5162/sensoren2019/5.4.4","type":"dois","attributes":{"doi":"10.5162/sensoren2019/5.4.4","updated":"2019-12-11T20:01:33.000Z"},"relationships":{}},{"id":"10.33515/dspace-1","type":"dois","attributes":{"doi":"10.33515/dspace-1","updated":"2019-12-11T20:01:33.000Z"},"relationships":{}},{"id":"10.70125/fk2/emjdes","type":"dois","attributes":{"doi":"10.70125/fk2/emjdes","updated":"2019-12-11T20:01:32.000Z"},"relationships":{}},{"id":"10.5255/ukda-sn-824-1","type":"dois","attributes":{"doi":"10.5255/ukda-sn-824-1","updated":"2019-12-11T20:01:32.000Z"},"relationships":{}},{"id":"10.33572/fk2/x37kjb/q80q83","type":"dois","attributes":{"doi":"10.33572/fk2/x37kjb/q80q83","updated":"2019-12-11T20:01:32.000Z"},"relationships":{}},{"id":"10.17169/refubium-249","type":"dois","attributes":{"doi":"10.17169/refubium-249","updated":"2019-12-11T20:01:31.000Z"},"relationships":{}},{"id":"10.21993/dspace-devel321","type":"dois","attributes":{"doi":"10.21993/dspace-devel321","updated":"2019-12-11T20:01:31.000Z"},"relationships":{}},{"id":"10.0180/oparadev-34","type":"dois","attributes":{"doi":"10.0180/oparadev-34","updated":"2019-12-11T20:01:31.000Z"},"relationships":{}},{"id":"10.23676/3rpf-at23","type":"dois","attributes":{"doi":"10.23676/3rpf-at23","updated":"2019-12-11T20:01:31.000Z"},"relationships":{}},{"id":"10.21383/akbmdy43eu","type":"dois","attributes":{"doi":"10.21383/akbmdy43eu","updated":"2019-12-11T20:01:30.000Z"},"relationships":{}},{"id":"10.24418/gyey-p616","type":"dois","attributes":{"doi":"10.24418/gyey-p616","updated":"2019-12-11T20:01:30.000Z"},"relationships":{}},{"id":"10.21389/xvsq-c914","type":"dois","attributes":{"doi":"10.21389/xvsq-c914","updated":"2019-12-11T20:01:30.000Z"},"relationships":{}},{"id":"10.23675/ccdc.csd.44","type":"dois","attributes":{"doi":"10.23675/ccdc.csd.44","updated":"2019-12-11T20:01:30.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d6dc3259fca8","type":"dois","attributes":{"doi":"10.24428/test_doi_5d6dc3259fca8","updated":"2019-12-11T20:01:29.000Z"},"relationships":{}},{"id":"10.21397/olve-lnhe","type":"dois","attributes":{"doi":"10.21397/olve-lnhe","updated":"2019-12-11T20:01:29.000Z"},"relationships":{}},{"id":"10.17026/test-rteo-zmf-2kek","type":"dois","attributes":{"doi":"10.17026/test-rteo-zmf-2kek","updated":"2019-12-11T20:01:29.000Z"},"relationships":{}},{"id":"10.33591/nioz/4sdti3","type":"dois","attributes":{"doi":"10.33591/nioz/4sdti3","updated":"2019-12-11T20:01:29.000Z"},"relationships":{}},{"id":"10.0174/hkce-ck3d","type":"dois","attributes":{"doi":"10.0174/hkce-ck3d","updated":"2019-12-11T20:01:28.000Z"},"relationships":{}},{"id":"10.22007/dtu:2971","type":"dois","attributes":{"doi":"10.22007/dtu:2971","updated":"2019-12-11T20:01:28.000Z"},"relationships":{}},{"id":"10.23721/100/17500","type":"dois","attributes":{"doi":"10.23721/100/17500","updated":"2019-12-11T20:01:28.000Z"},"relationships":{}},{"id":"10.0313/dgs.meinedgs-1.0-video-1244796","type":"dois","attributes":{"doi":"10.0313/dgs.meinedgs-1.0-video-1244796","updated":"2019-12-11T20:01:27.000Z"},"relationships":{}},{"id":"10.33631/rds.23204","type":"dois","attributes":{"doi":"10.33631/rds.23204","updated":"2019-12-11T20:01:27.000Z"},"relationships":{}},{"id":"10.20375/0000-001a-3341-1","type":"dois","attributes":{"doi":"10.20375/0000-001a-3341-1","updated":"2019-12-11T20:01:27.000Z"},"relationships":{}},{"id":"10.70117/vats-5s80","type":"dois","attributes":{"doi":"10.70117/vats-5s80","updated":"2019-12-11T20:01:26.000Z"},"relationships":{}},{"id":"10.11578/dc.20190924.5","type":"dois","attributes":{"doi":"10.11578/dc.20190924.5","updated":"2019-12-11T20:01:26.000Z"},"relationships":{}},{"id":"10.15140/83ak-tn39","type":"dois","attributes":{"doi":"10.15140/83ak-tn39","updated":"2019-12-11T20:01:26.000Z"},"relationships":{}},{"id":"10.21237/m435-hk40","type":"dois","attributes":{"doi":"10.21237/m435-hk40","updated":"2019-12-11T20:01:26.000Z"},"relationships":{}},{"id":"10.21985/n2-re7n-h087","type":"dois","attributes":{"doi":"10.21985/n2-re7n-h087","updated":"2019-12-11T20:01:25.000Z"},"relationships":{}},{"id":"10.70018/tzb3-7878","type":"dois","attributes":{"doi":"10.70018/tzb3-7878","updated":"2019-12-11T20:01:25.000Z"},"relationships":{}},{"id":"10.25362/lazar.23e0e4a8-3990-40ee-8b34-a5b6ab2d1d0f.0","type":"dois","attributes":{"doi":"10.25362/lazar.23e0e4a8-3990-40ee-8b34-a5b6ab2d1d0f.0","updated":"2019-12-11T20:01:24.000Z"},"relationships":{}},{"id":"10.24404/fk2.ucdlib_260474","type":"dois","attributes":{"doi":"10.24404/fk2.ucdlib_260474","updated":"2019-12-11T20:01:24.000Z"},"relationships":{}},{"id":"10.20408/js3a-h061","type":"dois","attributes":{"doi":"10.20408/js3a-h061","updated":"2019-12-11T20:01:24.000Z"},"relationships":{}},{"id":"10.0341/nor00581","type":"dois","attributes":{"doi":"10.0341/nor00581","updated":"2019-12-11T20:01:24.000Z"},"relationships":{}},{"id":"10.7965/s9zw8516","type":"dois","attributes":{"doi":"10.7965/s9zw8516","updated":"2019-12-11T20:01:23.000Z"},"relationships":{}},{"id":"10.33605/49","type":"dois","attributes":{"doi":"10.33605/49","updated":"2019-12-11T20:01:23.000Z"},"relationships":{}},{"id":"10.80001/26vg","type":"dois","attributes":{"doi":"10.80001/26vg","updated":"2019-12-11T20:01:23.000Z"},"relationships":{}},{"id":"10.70138/test_doi_5db8c37f5d1aa","type":"dois","attributes":{"doi":"10.70138/test_doi_5db8c37f5d1aa","updated":"2019-12-11T20:01:23.000Z"},"relationships":{}},{"id":"10.21395/m32228","type":"dois","attributes":{"doi":"10.21395/m32228","updated":"2019-12-11T20:01:22.000Z"},"relationships":{}},{"id":"10.70101/pqx2-2d51","type":"dois","attributes":{"doi":"10.70101/pqx2-2d51","updated":"2019-12-11T20:01:22.000Z"},"relationships":{}},{"id":"10.33577/j4mb-xb10","type":"dois","attributes":{"doi":"10.33577/j4mb-xb10","updated":"2019-12-11T20:01:21.000Z"},"relationships":{}},{"id":"10.7959/dryad.t1g1jwz0","type":"dois","attributes":{"doi":"10.7959/dryad.t1g1jwz0","updated":"2019-12-11T20:01:21.000Z"},"relationships":{}},{"id":"10.15482/usda.adc/17756","type":"dois","attributes":{"doi":"10.15482/usda.adc/17756","updated":"2019-12-11T20:01:21.000Z"},"relationships":{}},{"id":"10.4124/4347797c-91bc-4a47-bfda-08ee2379836d","type":"dois","attributes":{"doi":"10.4124/4347797c-91bc-4a47-bfda-08ee2379836d","updated":"2019-12-11T20:01:21.000Z"},"relationships":{}},{"id":"10.21946/896462366..907-9fadsfadsdfasfasdfasdf","type":"dois","attributes":{"doi":"10.21946/896462366..907-9fadsfadsdfasfasdfasdf","updated":"2019-12-11T20:01:20.000Z"},"relationships":{}},{"id":"10.33581/test2019.2","type":"dois","attributes":{"doi":"10.33581/test2019.2","updated":"2019-12-11T20:01:20.000Z"},"relationships":{}},{"id":"10.21361/dvs/116682","type":"dois","attributes":{"doi":"10.21361/dvs/116682","updated":"2019-12-11T20:01:20.000Z"},"relationships":{}},{"id":"10.20405/fk2/4wjsxk/vlavqf","type":"dois","attributes":{"doi":"10.20405/fk2/4wjsxk/vlavqf","updated":"2019-12-11T20:01:20.000Z"},"relationships":{}},{"id":"10.5445/ir/1000109354","type":"dois","attributes":{"doi":"10.5445/ir/1000109354","updated":"2019-12-11T20:01:19.000Z"},"relationships":{}},{"id":"10.33531/etd/8","type":"dois","attributes":{"doi":"10.33531/etd/8","updated":"2019-12-11T20:01:19.000Z"},"relationships":{}},{"id":"10.23677/q3-8w-ht-3u-oz","type":"dois","attributes":{"doi":"10.23677/q3-8w-ht-3u-oz","updated":"2019-12-11T20:01:19.000Z"},"relationships":{}},{"id":"10.4124/0036314","type":"dois","attributes":{"doi":"10.4124/0036314","updated":"2019-12-11T20:01:19.000Z"},"relationships":{}},{"id":"10.70020/k92b-8r58","type":"dois","attributes":{"doi":"10.70020/k92b-8r58","updated":"2019-12-11T20:01:18.000Z"},"relationships":{}},{"id":"10.21425/qp2v-3w52","type":"dois","attributes":{"doi":"10.21425/qp2v-3w52","updated":"2019-12-11T20:01:18.000Z"},"relationships":{}},{"id":"10.21394/kavt-21a1","type":"dois","attributes":{"doi":"10.21394/kavt-21a1","updated":"2019-12-11T20:01:18.000Z"},"relationships":{}},{"id":"10.33532/k713-p840","type":"dois","attributes":{"doi":"10.33532/k713-p840","updated":"2019-12-11T20:01:18.000Z"},"relationships":{}},{"id":"10.70106/tind.65","type":"dois","attributes":{"doi":"10.70106/tind.65","updated":"2019-12-11T20:01:17.000Z"},"relationships":{}},{"id":"10.15152/geo.485","type":"dois","attributes":{"doi":"10.15152/geo.485","updated":"2019-12-11T20:01:17.000Z"},"relationships":{}},{"id":"10.24397/openneuro.ds001029.v1.0.0","type":"dois","attributes":{"doi":"10.24397/openneuro.ds001029.v1.0.0","updated":"2019-12-11T20:01:17.000Z"},"relationships":{}},{"id":"10.23674/gzx1-9v95/7qjcey/pjop4i","type":"dois","attributes":{"doi":"10.23674/gzx1-9v95/7qjcey/pjop4i","updated":"2019-12-11T20:01:16.000Z"},"relationships":{}},{"id":"10.80000/cqso-y3tt","type":"dois","attributes":{"doi":"10.80000/cqso-y3tt","updated":"2019-12-11T20:01:16.000Z"},"relationships":{}},{"id":"10.23707/b98mwjs5","type":"dois","attributes":{"doi":"10.23707/b98mwjs5","updated":"2019-12-11T20:01:16.000Z"},"relationships":{}},{"id":"10.7961/d96n0g55","type":"dois","attributes":{"doi":"10.7961/d96n0g55","updated":"2019-12-11T20:01:16.000Z"},"relationships":{}},{"id":"10.70113/ordar2-dev-8","type":"dois","attributes":{"doi":"10.70113/ordar2-dev-8","updated":"2019-12-11T20:01:15.000Z"},"relationships":{}},{"id":"10.21337/k4vnmb","type":"dois","attributes":{"doi":"10.21337/k4vnmb","updated":"2019-12-11T20:01:15.000Z"},"relationships":{}},{"id":"10.22008/fk2/luwxhk/nnt5h3","type":"dois","attributes":{"doi":"10.22008/fk2/luwxhk/nnt5h3","updated":"2019-12-11T20:01:15.000Z"},"relationships":{}},{"id":"10.21359/fk2/ewulh1/soydp7","type":"dois","attributes":{"doi":"10.21359/fk2/ewulh1/soydp7","updated":"2019-12-11T20:01:15.000Z"},"relationships":{}},{"id":"10.5074/6640001.v1","type":"dois","attributes":{"doi":"10.5074/6640001.v1","updated":"2019-12-11T20:01:14.000Z"},"relationships":{}},{"id":"10.80063/fk2/kldsjb","type":"dois","attributes":{"doi":"10.80063/fk2/kldsjb","updated":"2019-12-11T20:01:14.000Z"},"relationships":{}},{"id":"10.33606/4","type":"dois","attributes":{"doi":"10.33606/4","updated":"2019-12-11T20:01:14.000Z"},"relationships":{}},{"id":"10.33548/700101","type":"dois","attributes":{"doi":"10.33548/700101","updated":"2019-12-11T20:01:13.000Z"},"relationships":{}},{"id":"10.33580/test_doi_5d3bfdf017857","type":"dois","attributes":{"doi":"10.33580/test_doi_5d3bfdf017857","updated":"2019-12-11T20:01:13.000Z"},"relationships":{}},{"id":"10.24410/kaust-96hmn","type":"dois","attributes":{"doi":"10.24410/kaust-96hmn","updated":"2019-12-11T20:01:13.000Z"},"relationships":{}},{"id":"10.23685/c/13-dataset","type":"dois","attributes":{"doi":"10.23685/c/13-dataset","updated":"2019-12-11T20:01:13.000Z"},"relationships":{}},{"id":"10.7968/20191101.1/3","type":"dois","attributes":{"doi":"10.7968/20191101.1/3","updated":"2019-12-11T20:01:12.000Z"},"relationships":{}},{"id":"10.23718/fitbir/17851","type":"dois","attributes":{"doi":"10.23718/fitbir/17851","updated":"2019-12-11T20:01:12.000Z"},"relationships":{}},{"id":"10.21366/ghent-49hreu","type":"dois","attributes":{"doi":"10.21366/ghent-49hreu","updated":"2019-12-11T20:01:12.000Z"},"relationships":{}},{"id":"10.22029/mediarep-test/1364","type":"dois","attributes":{"doi":"10.22029/mediarep-test/1364","updated":"2019-12-11T20:01:12.000Z"},"relationships":{}},{"id":"10.0307/ir-3116","type":"dois","attributes":{"doi":"10.0307/ir-3116","updated":"2019-12-11T20:01:11.000Z"},"relationships":{}},{"id":"10.80037/1bbq-h574","type":"dois","attributes":{"doi":"10.80037/1bbq-h574","updated":"2019-12-11T20:01:11.000Z"},"relationships":{}},{"id":"10.16904/envidat-test.2","type":"dois","attributes":{"doi":"10.16904/envidat-test.2","updated":"2019-12-11T20:01:10.000Z"},"relationships":{}},{"id":"10.23658/fk-mze7-em12","type":"dois","attributes":{"doi":"10.23658/fk-mze7-em12","updated":"2019-12-11T20:01:08.000Z"},"relationships":{}},{"id":"10.33586/9e14707c-6cc1-4782-8876-b5dd1a964d6b","type":"dois","attributes":{"doi":"10.33586/9e14707c-6cc1-4782-8876-b5dd1a964d6b","updated":"2019-12-11T20:01:07.000Z"},"relationships":{}},{"id":"10.18462/iif.sec","type":"dois","attributes":{"doi":"10.18462/iif.sec","updated":"2019-12-11T20:01:07.000Z"},"relationships":{}},{"id":"10.21232/gswxvgoac","type":"dois","attributes":{"doi":"10.21232/gswxvgoac","updated":"2019-12-11T20:01:06.000Z"},"relationships":{}},{"id":"10.15124/york_law_journal/1245","type":"dois","attributes":{"doi":"10.15124/york_law_journal/1245","updated":"2019-12-11T20:01:06.000Z"},"relationships":{}},{"id":"10.33540/f2hg-m826","type":"dois","attributes":{"doi":"10.33540/f2hg-m826","updated":"2019-12-11T20:01:06.000Z"},"relationships":{}},{"id":"10.33578/ubsi/288","type":"dois","attributes":{"doi":"10.33578/ubsi/288","updated":"2019-12-11T20:01:05.000Z"},"relationships":{}},{"id":"10.13139/olcf/1473795","type":"dois","attributes":{"doi":"10.13139/olcf/1473795","updated":"2019-12-11T20:01:05.000Z"},"relationships":{}},{"id":"10.17591/midle.0.6","type":"dois","attributes":{"doi":"10.17591/midle.0.6","updated":"2019-12-11T20:01:05.000Z"},"relationships":{}},{"id":"10.33542/sqxs-h277","type":"dois","attributes":{"doi":"10.33542/sqxs-h277","updated":"2019-12-11T20:01:05.000Z"},"relationships":{}},{"id":"10.7962/d90rnozq","type":"dois","attributes":{"doi":"10.7962/d90rnozq","updated":"2019-12-11T20:01:04.000Z"},"relationships":{}},{"id":"10.18150/fk2/jwslhi","type":"dois","attributes":{"doi":"10.18150/fk2/jwslhi","updated":"2019-12-11T20:01:04.000Z"},"relationships":{}},{"id":"10.70124/fk2/b5pmwj/yptyn2","type":"dois","attributes":{"doi":"10.70124/fk2/b5pmwj/yptyn2","updated":"2019-12-11T20:01:04.000Z"},"relationships":{}},{"id":"10.24342/test_doi_5ceccb7ad737d","type":"dois","attributes":{"doi":"10.24342/test_doi_5ceccb7ad737d","updated":"2019-12-11T20:01:03.000Z"},"relationships":{}},{"id":"10.7970/48430071367c4a8c811096be180653c1","type":"dois","attributes":{"doi":"10.7970/48430071367c4a8c811096be180653c1","updated":"2019-12-11T20:01:03.000Z"},"relationships":{}},{"id":"10.5068/gayw-yb05","type":"dois","attributes":{"doi":"10.5068/gayw-yb05","updated":"2019-12-11T20:01:02.000Z"},"relationships":{}},{"id":"10.11571/rc91-e073","type":"dois","attributes":{"doi":"10.11571/rc91-e073","updated":"2019-12-11T20:01:02.000Z"},"relationships":{}},{"id":"10.33556/dspace-thraki-4","type":"dois","attributes":{"doi":"10.33556/dspace-thraki-4","updated":"2019-12-11T20:01:02.000Z"},"relationships":{}},{"id":"10.80058/67gh-9k10","type":"dois","attributes":{"doi":"10.80058/67gh-9k10","updated":"2019-12-11T20:01:01.000Z"},"relationships":{}},{"id":"10.80022/37p7-xr98","type":"dois","attributes":{"doi":"10.80022/37p7-xr98","updated":"2019-12-11T20:01:00.000Z"},"relationships":{}},{"id":"10.33685/test_doi_5c818d9ba7e55","type":"dois","attributes":{"doi":"10.33685/test_doi_5c818d9ba7e55","updated":"2019-12-11T20:01:00.000Z"},"relationships":{}},{"id":"10.5285/afba710f-dab1-4a63-867b-520177388224","type":"dois","attributes":{"doi":"10.5285/afba710f-dab1-4a63-867b-520177388224","updated":"2019-12-11T20:01:00.000Z"},"relationships":{}},{"id":"10.22024/test/unikent/01.01.67","type":"dois","attributes":{"doi":"10.22024/test/unikent/01.01.67","updated":"2019-12-11T20:01:00.000Z"},"relationships":{}},{"id":"10.33630/5c6b6fb9cb760","type":"dois","attributes":{"doi":"10.33630/5c6b6fb9cb760","updated":"2019-12-11T20:00:59.000Z"},"relationships":{}},{"id":"10.33505/fh4j-c298","type":"dois","attributes":{"doi":"10.33505/fh4j-c298","updated":"2019-12-11T20:00:59.000Z"},"relationships":{}},{"id":"10.33568/test_doi_5db066bf286f0","type":"dois","attributes":{"doi":"10.33568/test_doi_5db066bf286f0","updated":"2019-12-11T20:00:59.000Z"},"relationships":{}},{"id":"10.7963/s9d8oo5q","type":"dois","attributes":{"doi":"10.7963/s9d8oo5q","updated":"2019-12-11T20:00:59.000Z"},"relationships":{}},{"id":"10.33528/fyyq-6e28","type":"dois","attributes":{"doi":"10.33528/fyyq-6e28","updated":"2019-12-11T20:00:58.000Z"},"relationships":{}},{"id":"10.7893/86j2-vk74","type":"dois","attributes":{"doi":"10.7893/86j2-vk74","updated":"2019-12-11T20:00:58.000Z"},"relationships":{}},{"id":"10.70011/test_doi_5d19662638405","type":"dois","attributes":{"doi":"10.70011/test_doi_5d19662638405","updated":"2019-12-11T20:00:58.000Z"},"relationships":{}},{"id":"10.15480/tor.fdm.tuhh.292","type":"dois","attributes":{"doi":"10.15480/tor.fdm.tuhh.292","updated":"2019-12-11T20:00:57.000Z"},"relationships":{}},{"id":"10.70031/wk56-pq48","type":"dois","attributes":{"doi":"10.70031/wk56-pq48","updated":"2019-12-11T20:00:57.000Z"},"relationships":{}},{"id":"10.18465/lcsb-xckeca-ktdoaz","type":"dois","attributes":{"doi":"10.18465/lcsb-xckeca-ktdoaz","updated":"2019-12-11T20:00:57.000Z"},"relationships":{}},{"id":"10.33574/5","type":"dois","attributes":{"doi":"10.33574/5","updated":"2019-12-11T20:00:57.000Z"},"relationships":{}},{"id":"10.21398/opus-402","type":"dois","attributes":{"doi":"10.21398/opus-402","updated":"2019-12-11T20:00:56.000Z"},"relationships":{}},{"id":"10.33508/ucrrtest-1","type":"dois","attributes":{"doi":"10.33508/ucrrtest-1","updated":"2019-12-11T20:00:56.000Z"},"relationships":{}},{"id":"10.70111/cas.v1i0","type":"dois","attributes":{"doi":"10.70111/cas.v1i0","updated":"2019-12-11T20:00:56.000Z"},"relationships":{}},{"id":"10.70030/test_doi_5d650c3ca0464","type":"dois","attributes":{"doi":"10.70030/test_doi_5d650c3ca0464","updated":"2019-12-11T20:00:56.000Z"},"relationships":{}},{"id":"10.33681/test_doi_5c905b68983d9","type":"dois","attributes":{"doi":"10.33681/test_doi_5c905b68983d9","updated":"2019-12-11T20:00:55.000Z"},"relationships":{}},{"id":"10.7964/b9l79htj","type":"dois","attributes":{"doi":"10.7964/b9l79htj","updated":"2019-12-11T20:00:55.000Z"},"relationships":{}},{"id":"10.5439/1379421","type":"dois","attributes":{"doi":"10.5439/1379421","updated":"2019-12-11T20:00:55.000Z"},"relationships":{}},{"id":"10.21410/fk2/gimnjc","type":"dois","attributes":{"doi":"10.21410/fk2/gimnjc","updated":"2019-12-11T20:00:54.000Z"},"relationships":{}},{"id":"10.24427/8gt9-nk59","type":"dois","attributes":{"doi":"10.24427/8gt9-nk59","updated":"2019-12-11T20:00:54.000Z"},"relationships":{}},{"id":"10.70036/2g6e-wv56","type":"dois","attributes":{"doi":"10.70036/2g6e-wv56","updated":"2019-12-11T20:00:54.000Z"},"relationships":{}},{"id":"10.24373/j282-2tv5","type":"dois","attributes":{"doi":"10.24373/j282-2tv5","updated":"2019-12-11T20:00:54.000Z"},"relationships":{}},{"id":"10.23650/ghent-l88hbz","type":"dois","attributes":{"doi":"10.23650/ghent-l88hbz","updated":"2019-12-11T20:00:53.000Z"},"relationships":{}},{"id":"10.70015/opus-3","type":"dois","attributes":{"doi":"10.70015/opus-3","updated":"2019-12-11T20:00:53.000Z"},"relationships":{}},{"id":"10.80091/0011","type":"dois","attributes":{"doi":"10.80091/0011","updated":"2019-12-11T20:00:53.000Z"},"relationships":{}},{"id":"10.23693/discussdata:uu-id-123-456","type":"dois","attributes":{"doi":"10.23693/discussdata:uu-id-123-456","updated":"2019-12-11T20:00:52.000Z"},"relationships":{}},{"id":"10.23719/17153","type":"dois","attributes":{"doi":"10.23719/17153","updated":"2019-12-11T20:00:52.000Z"},"relationships":{}},{"id":"10.18716/testusb/090219","type":"dois","attributes":{"doi":"10.18716/testusb/090219","updated":"2019-12-11T20:00:52.000Z"},"relationships":{}},{"id":"10.80051/myshoulder/tjqrbs","type":"dois","attributes":{"doi":"10.80051/myshoulder/tjqrbs","updated":"2019-12-11T20:00:52.000Z"},"relationships":{}},{"id":"10.33565/butf9o","type":"dois","attributes":{"doi":"10.33565/butf9o","updated":"2019-12-11T20:00:51.000Z"},"relationships":{}},{"id":"10.21368/test362-u1480g-gra","type":"dois","attributes":{"doi":"10.21368/test362-u1480g-gra","updated":"2019-12-11T20:00:51.000Z"},"relationships":{}},{"id":"10.70144/test_doi_5dddd9f5a69a9","type":"dois","attributes":{"doi":"10.70144/test_doi_5dddd9f5a69a9","updated":"2019-12-11T20:00:51.000Z"},"relationships":{}},{"id":"10.4124/b70dee1f-8cb9-499d-a615-672996392f0b","type":"dois","attributes":{"doi":"10.4124/b70dee1f-8cb9-499d-a615-672996392f0b","updated":"2019-12-11T20:00:51.000Z"},"relationships":{}},{"id":"10.4124/7a5/8wxx1","type":"dois","attributes":{"doi":"10.4124/7a5/8wxx1","updated":"2019-12-11T20:00:51.000Z"},"relationships":{}},{"id":"10.33523/oier6v/cyjxdo","type":"dois","attributes":{"doi":"10.33523/oier6v/cyjxdo","updated":"2019-12-11T20:00:50.000Z"},"relationships":{}},{"id":"10.18725/0722-6691/4092","type":"dois","attributes":{"doi":"10.18725/0722-6691/4092","updated":"2019-12-11T20:00:50.000Z"},"relationships":{}},{"id":"10.15123/pub.21","type":"dois","attributes":{"doi":"10.15123/pub.21","updated":"2019-12-11T20:00:49.000Z"},"relationships":{}},{"id":"10.12685/e6ws-545cdwm2446","type":"dois","attributes":{"doi":"10.12685/e6ws-545cdwm2446","updated":"2019-12-11T20:00:49.000Z"},"relationships":{}},{"id":"10.0337/cds/vizier.71710475","type":"dois","attributes":{"doi":"10.0337/cds/vizier.71710475","updated":"2019-12-11T20:00:48.000Z"},"relationships":{}},{"id":"10.7969/verba-alpina/c69_v3","type":"dois","attributes":{"doi":"10.7969/verba-alpina/c69_v3","updated":"2019-12-11T20:00:48.000Z"},"relationships":{}},{"id":"10.13143/asfera-cfa2019-16673","type":"dois","attributes":{"doi":"10.13143/asfera-cfa2019-16673","updated":"2019-12-11T20:00:48.000Z"},"relationships":{}},{"id":"10.0309/rwstg1k34w","type":"dois","attributes":{"doi":"10.0309/rwstg1k34w","updated":"2019-12-11T20:00:48.000Z"},"relationships":{}},{"id":"10.15125/bath-00708","type":"dois","attributes":{"doi":"10.15125/bath-00708","updated":"2019-12-11T20:00:47.000Z"},"relationships":{}},{"id":"10.23688/1086-0g98","type":"dois","attributes":{"doi":"10.23688/1086-0g98","updated":"2019-12-11T20:00:47.000Z"},"relationships":{}},{"id":"10.24337/8661412d-ab8a-4bac-9ab4-a1820e3e2092","type":"dois","attributes":{"doi":"10.24337/8661412d-ab8a-4bac-9ab4-a1820e3e2092","updated":"2019-12-11T20:00:47.000Z"},"relationships":{}},{"id":"10.24366/test_doi_5d5649793b5bf","type":"dois","attributes":{"doi":"10.24366/test_doi_5d5649793b5bf","updated":"2019-12-11T20:00:46.000Z"},"relationships":{}},{"id":"10.70003/bf1v-7819","type":"dois","attributes":{"doi":"10.70003/bf1v-7819","updated":"2019-12-11T20:00:46.000Z"},"relationships":{}},{"id":"10.24403/test_doi_5cb001b535af2","type":"dois","attributes":{"doi":"10.24403/test_doi_5cb001b535af2","updated":"2019-12-11T20:00:46.000Z"},"relationships":{}},{"id":"10.17192/mardata-test/13","type":"dois","attributes":{"doi":"10.17192/mardata-test/13","updated":"2019-12-11T20:00:46.000Z"},"relationships":{}},{"id":"10.33679/test_doi_5c906bfdadf19","type":"dois","attributes":{"doi":"10.33679/test_doi_5c906bfdadf19","updated":"2019-12-11T20:00:45.000Z"},"relationships":{}},{"id":"10.17879/93179674181","type":"dois","attributes":{"doi":"10.17879/93179674181","updated":"2019-12-11T20:00:45.000Z"},"relationships":{}},{"id":"10.0179/abcdef","type":"dois","attributes":{"doi":"10.0179/abcdef","updated":"2019-12-11T20:00:45.000Z"},"relationships":{}},{"id":"10.70005/test_doi_5d02d79420380","type":"dois","attributes":{"doi":"10.70005/test_doi_5d02d79420380","updated":"2019-12-11T20:00:44.000Z"},"relationships":{}},{"id":"10.11588/29279","type":"dois","attributes":{"doi":"10.11588/29279","updated":"2019-12-11T20:00:44.000Z"},"relationships":{}},{"id":"10.70012/fzj-data/2kpsdc","type":"dois","attributes":{"doi":"10.70012/fzj-data/2kpsdc","updated":"2019-12-11T20:00:44.000Z"},"relationships":{}},{"id":"10.33634/13","type":"dois","attributes":{"doi":"10.33634/13","updated":"2019-12-11T20:00:44.000Z"},"relationships":{}},{"id":"10.17889/e100852v2","type":"dois","attributes":{"doi":"10.17889/e100852v2","updated":"2019-12-11T19:58:35.000Z"},"relationships":{}},{"id":"10.24397/openneuro.ds001071.v1.0.0","type":"dois","attributes":{"doi":"10.24397/openneuro.ds001071.v1.0.0","updated":"2019-12-11T19:45:40.000Z"},"relationships":{}},{"id":"10.0311/fk2/2b903cc4448e822eea176b4108fc3986","type":"dois","attributes":{"doi":"10.0311/fk2/2b903cc4448e822eea176b4108fc3986","updated":"2019-12-11T19:41:54.000Z"},"relationships":{}},{"id":"10.20371/researchdatatest.cab.unipd.it.00000303","type":"dois","attributes":{"doi":"10.20371/researchdatatest.cab.unipd.it.00000303","updated":"2019-12-11T19:32:29.000Z"},"relationships":{}},{"id":"10.13144/lineas1000","type":"dois","attributes":{"doi":"10.13144/lineas1000","updated":"2019-12-11T19:32:28.000Z"},"relationships":{}},{"id":"10.7958/dryad.t76hdrd0","type":"dois","attributes":{"doi":"10.7958/dryad.t76hdrd0","updated":"2019-12-11T19:32:28.000Z"},"relationships":{}},{"id":"10.17176/5534be06-4012-4fb0-a03e-e0ff4f6aff0a","type":"dois","attributes":{"doi":"10.17176/5534be06-4012-4fb0-a03e-e0ff4f6aff0a","updated":"2019-12-11T19:32:28.000Z"},"relationships":{}},{"id":"10.70027/gybt-wr66","type":"dois","attributes":{"doi":"10.70027/gybt-wr66","updated":"2019-12-11T19:32:27.000Z"},"relationships":{}},{"id":"10.80048/em0y-k025","type":"dois","attributes":{"doi":"10.80048/em0y-k025","updated":"2019-12-11T19:32:27.000Z"},"relationships":{}},{"id":"10.80016/dvn/qt5cjf","type":"dois","attributes":{"doi":"10.80016/dvn/qt5cjf","updated":"2019-12-11T19:32:27.000Z"},"relationships":{}},{"id":"10.70044/sn/1a_2007","type":"dois","attributes":{"doi":"10.70044/sn/1a_2007","updated":"2019-12-11T19:32:26.000Z"},"relationships":{}},{"id":"10.80099/pub.00001264","type":"dois","attributes":{"doi":"10.80099/pub.00001264","updated":"2019-12-11T19:32:26.000Z"},"relationships":{}},{"id":"10.21949/17246","type":"dois","attributes":{"doi":"10.21949/17246","updated":"2019-12-11T19:32:26.000Z"},"relationships":{}},{"id":"10.33679/test_doi_5c92d321c8822","type":"dois","attributes":{"doi":"10.33679/test_doi_5c92d321c8822","updated":"2019-12-11T19:32:25.000Z"},"relationships":{}},{"id":"10.7947/dhpb-3346","type":"dois","attributes":{"doi":"10.7947/dhpb-3346","updated":"2019-12-11T19:32:25.000Z"},"relationships":{}},{"id":"10.17170/ojs-tjub-63","type":"dois","attributes":{"doi":"10.17170/ojs-tjub-63","updated":"2019-12-11T19:32:24.000Z"},"relationships":{}},{"id":"10.70008/test_doi_5dc1e8d344c34","type":"dois","attributes":{"doi":"10.70008/test_doi_5dc1e8d344c34","updated":"2019-12-11T19:32:24.000Z"},"relationships":{}},{"id":"10.22001/ag.econ.45747","type":"dois","attributes":{"doi":"10.22001/ag.econ.45747","updated":"2019-12-11T19:32:24.000Z"},"relationships":{}},{"id":"10.80025/cnp1010743","type":"dois","attributes":{"doi":"10.80025/cnp1010743","updated":"2019-12-11T19:32:23.000Z"},"relationships":{}},{"id":"10.70014/opus-297","type":"dois","attributes":{"doi":"10.70014/opus-297","updated":"2019-12-11T19:32:23.000Z"},"relationships":{}},{"id":"10.21339/gpr2-4d56","type":"dois","attributes":{"doi":"10.21339/gpr2-4d56","updated":"2019-12-11T19:32:23.000Z"},"relationships":{}},{"id":"10.24378/exe.7","type":"dois","attributes":{"doi":"10.24378/exe.7","updated":"2019-12-11T19:32:23.000Z"},"relationships":{}},{"id":"10.4124/r9k643b116b","type":"dois","attributes":{"doi":"10.4124/r9k643b116b","updated":"2019-12-11T19:32:22.000Z"},"relationships":{}},{"id":"10.5258/soton/1560","type":"dois","attributes":{"doi":"10.5258/soton/1560","updated":"2019-12-11T19:32:22.000Z"},"relationships":{}},{"id":"10.70139/4s96-j174","type":"dois","attributes":{"doi":"10.70139/4s96-j174","updated":"2019-12-11T19:32:21.000Z"},"relationships":{}},{"id":"10.14288/1.0043659","type":"dois","attributes":{"doi":"10.14288/1.0043659","updated":"2019-12-11T19:32:04.000Z"},"relationships":{}},{"id":"10.33632/5","type":"dois","attributes":{"doi":"10.33632/5","updated":"2019-12-11T19:32:03.000Z"},"relationships":{}},{"id":"10.33633/111","type":"dois","attributes":{"doi":"10.33633/111","updated":"2019-12-11T19:32:01.000Z"},"relationships":{}},{"id":"10.33509/wy8n-g458","type":"dois","attributes":{"doi":"10.33509/wy8n-g458","updated":"2019-12-11T19:31:55.000Z"},"relationships":{}},{"id":"10.23651/ghent-t1mx5b","type":"dois","attributes":{"doi":"10.23651/ghent-t1mx5b","updated":"2019-12-11T19:31:54.000Z"},"relationships":{}},{"id":"10.33586/7f7e342e-05c1-4d26-9c84-d1ea1780bee3","type":"dois","attributes":{"doi":"10.33586/7f7e342e-05c1-4d26-9c84-d1ea1780bee3","updated":"2019-12-11T19:31:21.000Z"},"relationships":{}},{"id":"10.11585/demo.5","type":"dois","attributes":{"doi":"10.11585/demo.5","updated":"2019-12-11T19:30:47.000Z"},"relationships":{}},{"id":"10.3933/2y89-4g52","type":"dois","attributes":{"doi":"10.3933/2y89-4g52","updated":"2019-12-11T19:30:44.000Z"},"relationships":{}},{"id":"10.33586/ab34a581-d90d-4116-a014-9ebc514ff441","type":"dois","attributes":{"doi":"10.33586/ab34a581-d90d-4116-a014-9ebc514ff441","updated":"2019-12-11T19:29:48.000Z"},"relationships":{}},{"id":"10.11571/sh3n-yq58","type":"dois","attributes":{"doi":"10.11571/sh3n-yq58","updated":"2019-12-11T19:12:05.000Z"},"relationships":{}},{"id":"10.33586/4ff36c41-aa64-4296-b820-eea6a0e15b02","type":"dois","attributes":{"doi":"10.33586/4ff36c41-aa64-4296-b820-eea6a0e15b02","updated":"2019-12-11T19:11:37.000Z"},"relationships":{}},{"id":"10.24397/openneuro.ds001067.v1.0.0","type":"dois","attributes":{"doi":"10.24397/openneuro.ds001067.v1.0.0","updated":"2019-12-11T19:07:54.000Z"},"relationships":{}},{"id":"10.5438/6brg-2m37","type":"dois","attributes":{"doi":"10.5438/6brg-2m37","updated":"2019-12-11T19:02:46.000Z"},"relationships":{}},{"id":"10.25355/hi-67","type":"dois","attributes":{"doi":"10.25355/hi-67","updated":"2019-12-11T19:02:42.000Z"},"relationships":{}},{"id":"10.15493/a","type":"dois","attributes":{"doi":"10.15493/a","updated":"2019-12-11T19:02:42.000Z"},"relationships":{}},{"id":"10.70102/fk2osf.io/hu3qn","type":"dois","attributes":{"doi":"10.70102/fk2osf.io/hu3qn","updated":"2019-12-11T19:02:41.000Z"},"relationships":{}},{"id":"10.24365/interesting_pub","type":"dois","attributes":{"doi":"10.24365/interesting_pub","updated":"2019-12-11T19:02:40.000Z"},"relationships":{}},{"id":"10.70103/asxk-6k85","type":"dois","attributes":{"doi":"10.70103/asxk-6k85","updated":"2019-12-11T19:02:39.000Z"},"relationships":{}},{"id":"10.25518/1782-2041.1004","type":"dois","attributes":{"doi":"10.25518/1782-2041.1004","updated":"2019-12-11T19:02:39.000Z"},"relationships":{}},{"id":"10.7798/jgi/1374074","type":"dois","attributes":{"doi":"10.7798/jgi/1374074","updated":"2019-12-11T19:02:39.000Z"},"relationships":{}},{"id":"10.23728/b2share.6974b538c4914902a2065e4e369ccba3","type":"dois","attributes":{"doi":"10.23728/b2share.6974b538c4914902a2065e4e369ccba3","updated":"2019-12-11T19:02:39.000Z"},"relationships":{}},{"id":"10.7967/qqdprd","type":"dois","attributes":{"doi":"10.7967/qqdprd","updated":"2019-12-11T19:02:38.000Z"},"relationships":{}},{"id":"10.80028/a22e-dh58","type":"dois","attributes":{"doi":"10.80028/a22e-dh58","updated":"2019-12-11T19:02:38.000Z"},"relationships":{}},{"id":"10.17038/1473649","type":"dois","attributes":{"doi":"10.17038/1473649","updated":"2019-12-11T19:02:37.000Z"},"relationships":{}},{"id":"10.20406/syvh-3y71","type":"dois","attributes":{"doi":"10.20406/syvh-3y71","updated":"2019-12-11T19:02:37.000Z"},"relationships":{}},{"id":"10.33558/abcdef","type":"dois","attributes":{"doi":"10.33558/abcdef","updated":"2019-12-11T19:02:37.000Z"},"relationships":{}},{"id":"10.26039/yvcm-2209","type":"dois","attributes":{"doi":"10.26039/yvcm-2209","updated":"2019-12-11T19:02:36.000Z"},"relationships":{}},{"id":"10.80034/dirisaxyz12092019","type":"dois","attributes":{"doi":"10.80034/dirisaxyz12092019","updated":"2019-12-11T19:02:36.000Z"},"relationships":{}},{"id":"10.33543/nrwa-2462","type":"dois","attributes":{"doi":"10.33543/nrwa-2462","updated":"2019-12-11T19:02:36.000Z"},"relationships":{}},{"id":"10.15154/17165","type":"dois","attributes":{"doi":"10.15154/17165","updated":"2019-12-11T19:02:36.000Z"},"relationships":{}},{"id":"10.33550/wk46-zz76","type":"dois","attributes":{"doi":"10.33550/wk46-zz76","updated":"2019-12-11T19:02:35.000Z"},"relationships":{}},{"id":"10.21399/jx74-cm45","type":"dois","attributes":{"doi":"10.21399/jx74-cm45","updated":"2019-12-11T19:02:35.000Z"},"relationships":{}},{"id":"10.80047/y1kg-dh14","type":"dois","attributes":{"doi":"10.80047/y1kg-dh14","updated":"2019-12-11T19:02:34.000Z"},"relationships":{}},{"id":"10.15156/1xqt-rz35","type":"dois","attributes":{"doi":"10.15156/1xqt-rz35","updated":"2019-12-11T19:02:34.000Z"},"relationships":{}},{"id":"10.25620/iciber.issn.1476-4687","type":"dois","attributes":{"doi":"10.25620/iciber.issn.1476-4687","updated":"2019-12-11T19:02:34.000Z"},"relationships":{}},{"id":"10.13141/foo","type":"dois","attributes":{"doi":"10.13141/foo","updated":"2019-12-11T19:02:33.000Z"},"relationships":{}},{"id":"10.2312/17fs-0s58","type":"dois","attributes":{"doi":"10.2312/17fs-0s58","updated":"2019-12-11T19:02:33.000Z"},"relationships":{}},{"id":"10.80024/w1gn-pfvq-0x0v","type":"dois","attributes":{"doi":"10.80024/w1gn-pfvq-0x0v","updated":"2019-12-11T19:02:33.000Z"},"relationships":{}},{"id":"10.13154/pq5s-ca92","type":"dois","attributes":{"doi":"10.13154/pq5s-ca92","updated":"2019-12-11T19:02:33.000Z"},"relationships":{}},{"id":"10.80023/ds2-t7es-qk98","type":"dois","attributes":{"doi":"10.80023/ds2-t7es-qk98","updated":"2019-12-11T19:02:32.000Z"},"relationships":{}},{"id":"10.5165/hawk-hhg/418","type":"dois","attributes":{"doi":"10.5165/hawk-hhg/418","updated":"2019-12-11T19:02:32.000Z"},"relationships":{}},{"id":"10.70037/opus-65","type":"dois","attributes":{"doi":"10.70037/opus-65","updated":"2019-12-11T19:02:32.000Z"},"relationships":{}},{"id":"10.7954/dbt.1","type":"dois","attributes":{"doi":"10.7954/dbt.1","updated":"2019-12-11T19:02:32.000Z"},"relationships":{}},{"id":"10.33551/mitofit:190001","type":"dois","attributes":{"doi":"10.33551/mitofit:190001","updated":"2019-12-11T19:02:31.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6637021.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6637021.v1","updated":"2019-12-11T19:02:29.000Z"},"relationships":{}},{"id":"10.0322/bldev.app.47","type":"dois","attributes":{"doi":"10.0322/bldev.app.47","updated":"2019-12-11T19:02:28.000Z"},"relationships":{}},{"id":"10.33564/fk2/cfrf6w/ig02ri","type":"dois","attributes":{"doi":"10.33564/fk2/cfrf6w/ig02ri","updated":"2019-12-11T19:02:28.000Z"},"relationships":{}},{"id":"10.21367/cool_conf.0037","type":"dois","attributes":{"doi":"10.21367/cool_conf.0037","updated":"2019-12-11T19:02:27.000Z"},"relationships":{}},{"id":"10.5282/ubm/digi.143","type":"dois","attributes":{"doi":"10.5282/ubm/digi.143","updated":"2019-12-11T19:02:27.000Z"},"relationships":{}},{"id":"10.33587/5ynq-hv36","type":"dois","attributes":{"doi":"10.33587/5ynq-hv36","updated":"2019-12-11T19:02:27.000Z"},"relationships":{}},{"id":"10.24335/l21279","type":"dois","attributes":{"doi":"10.24335/l21279","updated":"2019-12-11T19:02:27.000Z"},"relationships":{}},{"id":"10.15146/t9jn-9q27","type":"dois","attributes":{"doi":"10.15146/t9jn-9q27","updated":"2019-12-11T19:02:26.000Z"},"relationships":{}},{"id":"10.21401/23542694","type":"dois","attributes":{"doi":"10.21401/23542694","updated":"2019-12-11T19:02:26.000Z"},"relationships":{}},{"id":"10.33593/morressier.56d5ba29d462b80296c96448","type":"dois","attributes":{"doi":"10.33593/morressier.56d5ba29d462b80296c96448","updated":"2019-12-11T19:02:26.000Z"},"relationships":{}},{"id":"10.70114/idbdev-2732257_v1","type":"dois","attributes":{"doi":"10.70114/idbdev-2732257_v1","updated":"2019-12-11T19:02:25.000Z"},"relationships":{}},{"id":"10.23706/s9sf4i77","type":"dois","attributes":{"doi":"10.23706/s9sf4i77","updated":"2019-12-11T19:02:25.000Z"},"relationships":{}},{"id":"10.5290/1200146","type":"dois","attributes":{"doi":"10.5290/1200146","updated":"2019-12-11T19:02:25.000Z"},"relationships":{}},{"id":"10.17889/e110377","type":"dois","attributes":{"doi":"10.17889/e110377","updated":"2019-12-11T19:02:24.000Z"},"relationships":{}},{"id":"10.33546/vc7c-ea14","type":"dois","attributes":{"doi":"10.33546/vc7c-ea14","updated":"2019-12-11T19:02:24.000Z"},"relationships":{}},{"id":"10.14278/rodaretest.4","type":"dois","attributes":{"doi":"10.14278/rodaretest.4","updated":"2019-12-11T19:02:24.000Z"},"relationships":{}},{"id":"10.70122/fk2/t2ytti/9gxzcg","type":"dois","attributes":{"doi":"10.70122/fk2/t2ytti/9gxzcg","updated":"2019-12-11T19:02:23.000Z"},"relationships":{}},{"id":"10.21433/m88v-qs57","type":"dois","attributes":{"doi":"10.21433/m88v-qs57","updated":"2019-12-11T19:02:23.000Z"},"relationships":{}},{"id":"10.33563/fk2/9eqir4/uwvpr1","type":"dois","attributes":{"doi":"10.33563/fk2/9eqir4/uwvpr1","updated":"2019-12-11T19:02:22.000Z"},"relationships":{}},{"id":"10.15496/publikation-22848","type":"dois","attributes":{"doi":"10.15496/publikation-22848","updated":"2019-12-11T19:02:22.000Z"},"relationships":{}},{"id":"10.0311/fk2/7378db70903f4d4c115af884e4b9f096","type":"dois","attributes":{"doi":"10.0311/fk2/7378db70903f4d4c115af884e4b9f096","updated":"2019-12-11T19:02:21.000Z"},"relationships":{}},{"id":"10.21373/dl.bsvekz","type":"dois","attributes":{"doi":"10.21373/dl.bsvekz","updated":"2019-12-11T19:02:21.000Z"},"relationships":{}},{"id":"10.23676/wnyj-v171","type":"dois","attributes":{"doi":"10.23676/wnyj-v171","updated":"2019-12-11T19:02:20.000Z"},"relationships":{}},{"id":"10.5162/sensoren2019/p2.4","type":"dois","attributes":{"doi":"10.5162/sensoren2019/p2.4","updated":"2019-12-11T19:02:20.000Z"},"relationships":{}},{"id":"10.70112/sfbvny","type":"dois","attributes":{"doi":"10.70112/sfbvny","updated":"2019-12-11T19:02:19.000Z"},"relationships":{}},{"id":"10.5255/ukda-sn-746-2","type":"dois","attributes":{"doi":"10.5255/ukda-sn-746-2","updated":"2019-12-11T19:02:19.000Z"},"relationships":{}},{"id":"10.21993/dspace-devel583","type":"dois","attributes":{"doi":"10.21993/dspace-devel583","updated":"2019-12-11T19:02:18.000Z"},"relationships":{}},{"id":"10.22007/dtu:2796","type":"dois","attributes":{"doi":"10.22007/dtu:2796","updated":"2019-12-11T19:02:17.000Z"},"relationships":{}},{"id":"10.21985/n2-2s7c-fj92","type":"dois","attributes":{"doi":"10.21985/n2-2s7c-fj92","updated":"2019-12-11T19:02:17.000Z"},"relationships":{}},{"id":"10.21383/ku9vzu9hfy","type":"dois","attributes":{"doi":"10.21383/ku9vzu9hfy","updated":"2019-12-11T19:02:17.000Z"},"relationships":{}},{"id":"10.23655/1b21-kq93","type":"dois","attributes":{"doi":"10.23655/1b21-kq93","updated":"2019-12-11T19:02:16.000Z"},"relationships":{}},{"id":"10.11578/1474171","type":"dois","attributes":{"doi":"10.11578/1474171","updated":"2019-12-11T19:02:16.000Z"},"relationships":{}},{"id":"10.21977/fver-hf34","type":"dois","attributes":{"doi":"10.21977/fver-hf34","updated":"2019-12-11T19:02:16.000Z"},"relationships":{}},{"id":"10.70131/test_doi_5d6899fa6d3fb","type":"dois","attributes":{"doi":"10.70131/test_doi_5d6899fa6d3fb","updated":"2019-12-11T19:02:15.000Z"},"relationships":{}},{"id":"10.17026/test-funt-zyn-n3pu","type":"dois","attributes":{"doi":"10.17026/test-funt-zyn-n3pu","updated":"2019-12-11T19:02:15.000Z"},"relationships":{}},{"id":"10.24428/test_doi_5d54caf44fc3b","type":"dois","attributes":{"doi":"10.24428/test_doi_5d54caf44fc3b","updated":"2019-12-11T19:02:15.000Z"},"relationships":{}},{"id":"10.33573/fk2/oskhgw/mytdlt","type":"dois","attributes":{"doi":"10.33573/fk2/oskhgw/mytdlt","updated":"2019-12-11T19:02:14.000Z"},"relationships":{}},{"id":"10.21945/surf-trng.578c6039-9cf81d80","type":"dois","attributes":{"doi":"10.21945/surf-trng.578c6039-9cf81d80","updated":"2019-12-11T19:02:14.000Z"},"relationships":{}},{"id":"10.33516/1f5d3qsz","type":"dois","attributes":{"doi":"10.33516/1f5d3qsz","updated":"2019-12-11T19:02:14.000Z"},"relationships":{}},{"id":"10.33535/test_doi_5db00b9842361","type":"dois","attributes":{"doi":"10.33535/test_doi_5db00b9842361","updated":"2019-12-11T19:02:14.000Z"},"relationships":{}},{"id":"10.70002/tpxq-mx56","type":"dois","attributes":{"doi":"10.70002/tpxq-mx56","updated":"2019-12-11T19:02:13.000Z"},"relationships":{}},{"id":"10.23675/ccdc.csd.cc1rz574","type":"dois","attributes":{"doi":"10.23675/ccdc.csd.cc1rz574","updated":"2019-12-11T19:02:13.000Z"},"relationships":{}},{"id":"10.7272/k4dt-ce92","type":"dois","attributes":{"doi":"10.7272/k4dt-ce92","updated":"2019-12-11T19:02:12.000Z"},"relationships":{}},{"id":"10.23721/100/17321","type":"dois","attributes":{"doi":"10.23721/100/17321","updated":"2019-12-11T19:02:12.000Z"},"relationships":{}},{"id":"10.21237/2g7n-8r32","type":"dois","attributes":{"doi":"10.21237/2g7n-8r32","updated":"2019-12-11T19:02:12.000Z"},"relationships":{}},{"id":"10.4124/fairsharing.kyykuh","type":"dois","attributes":{"doi":"10.4124/fairsharing.kyykuh","updated":"2019-12-11T19:02:12.000Z"},"relationships":{}},{"id":"10.23705/d9h1r6kt","type":"dois","attributes":{"doi":"10.23705/d9h1r6kt","updated":"2019-12-11T19:02:11.000Z"},"relationships":{}},{"id":"10.24399/sr575","type":"dois","attributes":{"doi":"10.24399/sr575","updated":"2019-12-11T19:02:11.000Z"},"relationships":{}},{"id":"10.70117/ktsn-9708","type":"dois","attributes":{"doi":"10.70117/ktsn-9708","updated":"2019-12-11T19:02:11.000Z"},"relationships":{}},{"id":"10.33631/rds.26047","type":"dois","attributes":{"doi":"10.33631/rds.26047","updated":"2019-12-11T19:02:11.000Z"},"relationships":{}},{"id":"10.7965/d9qp0tdh","type":"dois","attributes":{"doi":"10.7965/d9qp0tdh","updated":"2019-12-11T19:02:11.000Z"},"relationships":{}},{"id":"10.80056/13030035","type":"dois","attributes":{"doi":"10.80056/13030035","updated":"2019-12-11T19:02:10.000Z"},"relationships":{}},{"id":"10.18749/dodis-9931","type":"dois","attributes":{"doi":"10.18749/dodis-9931","updated":"2019-12-11T19:02:10.000Z"},"relationships":{}},{"id":"10.24418/1t8x-sf06","type":"dois","attributes":{"doi":"10.24418/1t8x-sf06","updated":"2019-12-11T19:02:10.000Z"},"relationships":{}},{"id":"10.70118/00001213","type":"dois","attributes":{"doi":"10.70118/00001213","updated":"2019-12-11T19:02:09.000Z"},"relationships":{}},{"id":"10.25601/4b460418-6cdd-4583-ab81-e9f40747d142","type":"dois","attributes":{"doi":"10.25601/4b460418-6cdd-4583-ab81-e9f40747d142","updated":"2019-12-11T19:02:09.000Z"},"relationships":{}},{"id":"10.70018/1111","type":"dois","attributes":{"doi":"10.70018/1111","updated":"2019-12-11T19:02:09.000Z"},"relationships":{}},{"id":"10.0341/nor00706","type":"dois","attributes":{"doi":"10.0341/nor00706","updated":"2019-12-11T19:02:08.000Z"},"relationships":{}},{"id":"10.0859/intervals.fsoifx.1","type":"dois","attributes":{"doi":"10.0859/intervals.fsoifx.1","updated":"2019-12-11T19:02:08.000Z"},"relationships":{}},{"id":"10.00012/uu01-unlqf7","type":"dois","attributes":{"doi":"10.00012/uu01-unlqf7","updated":"2019-12-11T19:02:08.000Z"},"relationships":{}},{"id":"10.0350/bxmc-jf1ddaraaa","type":"dois","attributes":{"doi":"10.0350/bxmc-jf1ddaraaa","updated":"2019-12-11T19:02:07.000Z"},"relationships":{}},{"id":"10.70138/test_doi_5cafe8a9bce50","type":"dois","attributes":{"doi":"10.70138/test_doi_5cafe8a9bce50","updated":"2019-12-11T19:02:07.000Z"},"relationships":{}},{"id":"10.20408/fr1z-cs60","type":"dois","attributes":{"doi":"10.20408/fr1z-cs60","updated":"2019-12-11T19:02:07.000Z"},"relationships":{}},{"id":"10.33572/fk2/vhlpu5/7beexd","type":"dois","attributes":{"doi":"10.33572/fk2/vhlpu5/7beexd","updated":"2019-12-11T19:02:06.000Z"},"relationships":{}},{"id":"10.80001/vap","type":"dois","attributes":{"doi":"10.80001/vap","updated":"2019-12-11T19:02:06.000Z"},"relationships":{}},{"id":"10.33585/fk2-1vp6-y446","type":"dois","attributes":{"doi":"10.33585/fk2-1vp6-y446","updated":"2019-12-11T19:02:06.000Z"},"relationships":{}},{"id":"10.15482/usda.adc/19542","type":"dois","attributes":{"doi":"10.15482/usda.adc/19542","updated":"2019-12-11T19:02:06.000Z"},"relationships":{}},{"id":"10.70125/fk2/2d3u1r","type":"dois","attributes":{"doi":"10.70125/fk2/2d3u1r","updated":"2019-12-11T19:02:05.000Z"},"relationships":{}},{"id":"10.17169/fudocs_document_000000020321","type":"dois","attributes":{"doi":"10.17169/fudocs_document_000000020321","updated":"2019-12-11T19:02:05.000Z"},"relationships":{}},{"id":"10.33532/z373-8033","type":"dois","attributes":{"doi":"10.33532/z373-8033","updated":"2019-12-11T19:02:04.000Z"},"relationships":{}},{"id":"10.4124/0083351","type":"dois","attributes":{"doi":"10.4124/0083351","updated":"2019-12-11T19:02:03.000Z"},"relationships":{}},{"id":"10.25362/lazar.c325a041-b3d0-4fdf-9a0f-de8549578318.9","type":"dois","attributes":{"doi":"10.25362/lazar.c325a041-b3d0-4fdf-9a0f-de8549578318.9","updated":"2019-12-11T19:02:03.000Z"},"relationships":{}},{"id":"10.0313/dgs.meinedgs-1.0-video-1291638","type":"dois","attributes":{"doi":"10.0313/dgs.meinedgs-1.0-video-1291638","updated":"2019-12-11T19:02:02.000Z"},"relationships":{}},{"id":"10.21389/2c9c-av14","type":"dois","attributes":{"doi":"10.21389/2c9c-av14","updated":"2019-12-11T19:02:02.000Z"},"relationships":{}},{"id":"10.21425/hswv-gt27","type":"dois","attributes":{"doi":"10.21425/hswv-gt27","updated":"2019-12-11T19:02:01.000Z"},"relationships":{}},{"id":"10.15140/5e2n-1d36","type":"dois","attributes":{"doi":"10.15140/5e2n-1d36","updated":"2019-12-11T19:02:01.000Z"},"relationships":{}},{"id":"10.21394/5tmk-0ehb","type":"dois","attributes":{"doi":"10.21394/5tmk-0ehb","updated":"2019-12-11T19:02:01.000Z"},"relationships":{}},{"id":"10.33581/fk2/ctbeho/8ldaiv","type":"dois","attributes":{"doi":"10.33581/fk2/ctbeho/8ldaiv","updated":"2019-12-11T19:02:00.000Z"},"relationships":{}},{"id":"10.70048/mvgr-ra97","type":"dois","attributes":{"doi":"10.70048/mvgr-ra97","updated":"2019-12-11T19:02:00.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00009107","type":"dois","attributes":{"doi":"10.0253/tuprints-00009107","updated":"2019-12-11T19:02:00.000Z"},"relationships":{}},{"id":"10.24404/fk2.ucdlib_261007","type":"dois","attributes":{"doi":"10.24404/fk2.ucdlib_261007","updated":"2019-12-11T19:02:00.000Z"},"relationships":{}},{"id":"10.33591/nioz/7eyirt/cv297x","type":"dois","attributes":{"doi":"10.33591/nioz/7eyirt/cv297x","updated":"2019-12-11T19:01:59.000Z"},"relationships":{}},{"id":"10.17894/fk2/kkebfa/gaepsg","type":"dois","attributes":{"doi":"10.17894/fk2/kkebfa/gaepsg","updated":"2019-12-11T19:01:59.000Z"},"relationships":{}},{"id":"10.70009/test_doi_5d02f8a86693a","type":"dois","attributes":{"doi":"10.70009/test_doi_5d02f8a86693a","updated":"2019-12-11T19:01:59.000Z"},"relationships":{}},{"id":"10.33577/rmwz-zv08","type":"dois","attributes":{"doi":"10.33577/rmwz-zv08","updated":"2019-12-11T19:01:59.000Z"},"relationships":{}},{"id":"10.15770/darus-475/1","type":"dois","attributes":{"doi":"10.15770/darus-475/1","updated":"2019-12-11T19:01:58.000Z"},"relationships":{}},{"id":"10.25560/1271","type":"dois","attributes":{"doi":"10.25560/1271","updated":"2019-12-11T19:01:58.000Z"},"relationships":{}},{"id":"10.21395/m3-800p-9g35","type":"dois","attributes":{"doi":"10.21395/m3-800p-9g35","updated":"2019-12-11T19:01:58.000Z"},"relationships":{}},{"id":"10.4124/rdm-dev.liv.ac.uk/400","type":"dois","attributes":{"doi":"10.4124/rdm-dev.liv.ac.uk/400","updated":"2019-12-11T19:01:58.000Z"},"relationships":{}},{"id":"10.7959/dryad.w0vt4bf0","type":"dois","attributes":{"doi":"10.7959/dryad.w0vt4bf0","updated":"2019-12-11T19:01:57.000Z"},"relationships":{}},{"id":"10.0247/fordatistest/14","type":"dois","attributes":{"doi":"10.0247/fordatistest/14","updated":"2019-12-11T19:01:57.000Z"},"relationships":{}},{"id":"10.33562/fk2/thxdre/pn3lox","type":"dois","attributes":{"doi":"10.33562/fk2/thxdre/pn3lox","updated":"2019-12-11T19:01:57.000Z"},"relationships":{}},{"id":"10.0260/co.5119570.v1","type":"dois","attributes":{"doi":"10.0260/co.5119570.v1","updated":"2019-12-11T19:01:57.000Z"},"relationships":{}},{"id":"10.7949/0028352","type":"dois","attributes":{"doi":"10.7949/0028352","updated":"2019-12-11T19:01:56.000Z"},"relationships":{}},{"id":"10.20405/fk2/fkcwyo","type":"dois","attributes":{"doi":"10.20405/fk2/fkcwyo","updated":"2019-12-11T19:01:56.000Z"},"relationships":{}},{"id":"10.21978/040z-ka37","type":"dois","attributes":{"doi":"10.21978/040z-ka37","updated":"2019-12-11T19:01:56.000Z"},"relationships":{}},{"id":"10.21946/5dbc0221223ba74492ll","type":"dois","attributes":{"doi":"10.21946/5dbc0221223ba74492ll","updated":"2019-12-11T19:01:55.000Z"},"relationships":{}},{"id":"10.33531/etd/28","type":"dois","attributes":{"doi":"10.33531/etd/28","updated":"2019-12-11T19:01:55.000Z"},"relationships":{}},{"id":"10.70106/tind.59","type":"dois","attributes":{"doi":"10.70106/tind.59","updated":"2019-12-11T19:01:55.000Z"},"relationships":{}},{"id":"10.21361/dvs/116677","type":"dois","attributes":{"doi":"10.21361/dvs/116677","updated":"2019-12-11T19:01:55.000Z"},"relationships":{}},{"id":"10.22009/neu2105191","type":"dois","attributes":{"doi":"10.22009/neu2105191","updated":"2019-12-11T19:01:54.000Z"},"relationships":{}},{"id":"10.23733/d9f54qcw","type":"dois","attributes":{"doi":"10.23733/d9f54qcw","updated":"2019-12-11T19:01:54.000Z"},"relationships":{}},{"id":"10.7291/j3j6-yr13","type":"dois","attributes":{"doi":"10.7291/j3j6-yr13","updated":"2019-12-11T19:01:54.000Z"},"relationships":{}},{"id":"10.70146/rwjiwl/pddqsx","type":"dois","attributes":{"doi":"10.70146/rwjiwl/pddqsx","updated":"2019-12-11T19:01:53.000Z"},"relationships":{}},{"id":"10.70121/fk2ornldaac/1302","type":"dois","attributes":{"doi":"10.70121/fk2ornldaac/1302","updated":"2019-12-11T19:01:53.000Z"},"relationships":{}},{"id":"10.80017/jqwqyr","type":"dois","attributes":{"doi":"10.80017/jqwqyr","updated":"2019-12-11T19:01:53.000Z"},"relationships":{}},{"id":"10.70116/26ba-tk12","type":"dois","attributes":{"doi":"10.70116/26ba-tk12","updated":"2019-12-11T19:01:53.000Z"},"relationships":{}},{"id":"10.23707/b94o6m5m","type":"dois","attributes":{"doi":"10.23707/b94o6m5m","updated":"2019-12-11T19:01:52.000Z"},"relationships":{}},{"id":"10.70101/3pmb-b6qb","type":"dois","attributes":{"doi":"10.70101/3pmb-b6qb","updated":"2019-12-11T19:01:52.000Z"},"relationships":{}},{"id":"10.18147/smn.2019/video:360","type":"dois","attributes":{"doi":"10.18147/smn.2019/video:360","updated":"2019-12-11T19:01:52.000Z"},"relationships":{}},{"id":"10.70043/xrba-gn28","type":"dois","attributes":{"doi":"10.70043/xrba-gn28","updated":"2019-12-11T19:01:52.000Z"},"relationships":{}},{"id":"10.23729/1fc91b0f-3bca-48bc-851c-1ddfdb15318e","type":"dois","attributes":{"doi":"10.23729/1fc91b0f-3bca-48bc-851c-1ddfdb15318e","updated":"2019-12-11T19:01:51.000Z"},"relationships":{}},{"id":"10.21337/hsceow","type":"dois","attributes":{"doi":"10.21337/hsceow","updated":"2019-12-11T19:01:51.000Z"},"relationships":{}},{"id":"10.23708/ucf51c","type":"dois","attributes":{"doi":"10.23708/ucf51c","updated":"2019-12-11T19:01:51.000Z"},"relationships":{}},{"id":"10.33536/fk2/yn1wxg","type":"dois","attributes":{"doi":"10.33536/fk2/yn1wxg","updated":"2019-12-11T19:01:50.000Z"},"relationships":{}},{"id":"10.23687/fk2/6boy27/3baipx","type":"dois","attributes":{"doi":"10.23687/fk2/6boy27/3baipx","updated":"2019-12-11T19:01:50.000Z"},"relationships":{}},{"id":"10.23672/zwar.za283","type":"dois","attributes":{"doi":"10.23672/zwar.za283","updated":"2019-12-11T19:01:50.000Z"},"relationships":{}},{"id":"10.70126/f148-fz79","type":"dois","attributes":{"doi":"10.70126/f148-fz79","updated":"2019-12-11T19:01:50.000Z"},"relationships":{}},{"id":"10.5077/fje4-mc53","type":"dois","attributes":{"doi":"10.5077/fje4-mc53","updated":"2019-12-11T19:01:49.000Z"},"relationships":{}},{"id":"10.18711/qpn3rhcn","type":"dois","attributes":{"doi":"10.18711/qpn3rhcn","updated":"2019-12-11T19:01:49.000Z"},"relationships":{}},{"id":"10.24375/16-qqfr","type":"dois","attributes":{"doi":"10.24375/16-qqfr","updated":"2019-12-11T19:01:47.000Z"},"relationships":{}},{"id":"10.5060/pxv6-1s23","type":"dois","attributes":{"doi":"10.5060/pxv6-1s23","updated":"2019-12-11T19:01:46.000Z"},"relationships":{}},{"id":"10.23704/d9jx8sfg","type":"dois","attributes":{"doi":"10.23704/d9jx8sfg","updated":"2019-12-11T19:01:45.000Z"},"relationships":{}},{"id":"10.15152/geo.487","type":"dois","attributes":{"doi":"10.15152/geo.487","updated":"2019-12-11T19:01:44.000Z"},"relationships":{}},{"id":"10.23677/50mn-nij8","type":"dois","attributes":{"doi":"10.23677/50mn-nij8","updated":"2019-12-11T19:01:43.000Z"},"relationships":{}},{"id":"10.70115/dysy-wg83","type":"dois","attributes":{"doi":"10.70115/dysy-wg83","updated":"2019-12-11T19:01:43.000Z"},"relationships":{}},{"id":"10.70109/1153992inistb","type":"dois","attributes":{"doi":"10.70109/1153992inistb","updated":"2019-12-11T19:01:43.000Z"},"relationships":{}},{"id":"10.5525/gla.thesis.74269","type":"dois","attributes":{"doi":"10.5525/gla.thesis.74269","updated":"2019-12-11T19:01:43.000Z"},"relationships":{}},{"id":"10.7961/l9mpw2fm","type":"dois","attributes":{"doi":"10.7961/l9mpw2fm","updated":"2019-12-11T19:01:42.000Z"},"relationships":{}},{"id":"10.24397/openneuro.ds001033.v1.0.0","type":"dois","attributes":{"doi":"10.24397/openneuro.ds001033.v1.0.0","updated":"2019-12-11T19:01:42.000Z"},"relationships":{}},{"id":"10.80000/vunn-on5y","type":"dois","attributes":{"doi":"10.80000/vunn-on5y","updated":"2019-12-11T19:01:42.000Z"},"relationships":{}},{"id":"10.17639/mbjm-v107","type":"dois","attributes":{"doi":"10.17639/mbjm-v107","updated":"2019-12-11T19:01:42.000Z"},"relationships":{}},{"id":"10.21362/sshade","type":"dois","attributes":{"doi":"10.21362/sshade","updated":"2019-12-11T19:01:41.000Z"},"relationships":{}},{"id":"10.5074/6610391.v1","type":"dois","attributes":{"doi":"10.5074/6610391.v1","updated":"2019-12-11T19:01:41.000Z"},"relationships":{}},{"id":"10.33606/192","type":"dois","attributes":{"doi":"10.33606/192","updated":"2019-12-11T19:01:41.000Z"},"relationships":{}},{"id":"10.70113/ordar2-dev-12","type":"dois","attributes":{"doi":"10.70113/ordar2-dev-12","updated":"2019-12-11T19:01:41.000Z"},"relationships":{}},{"id":"10.23674/gzx1-9v95/7qjcey/o2b5rv","type":"dois","attributes":{"doi":"10.23674/gzx1-9v95/7qjcey/o2b5rv","updated":"2019-12-11T19:01:40.000Z"},"relationships":{}},{"id":"10.21359/fk2/ewulh1/fkwuer","type":"dois","attributes":{"doi":"10.21359/fk2/ewulh1/fkwuer","updated":"2019-12-11T19:01:40.000Z"},"relationships":{}},{"id":"10.80062/client-test-fsc1218.2","type":"dois","attributes":{"doi":"10.80062/client-test-fsc1218.2","updated":"2019-12-11T19:01:40.000Z"},"relationships":{}},{"id":"10.22029/dspace/1050","type":"dois","attributes":{"doi":"10.22029/dspace/1050","updated":"2019-12-11T19:01:39.000Z"},"relationships":{}},{"id":"10.33548/1234569","type":"dois","attributes":{"doi":"10.33548/1234569","updated":"2019-12-11T19:01:39.000Z"},"relationships":{}},{"id":"10.24410/kaust-0wgzf","type":"dois","attributes":{"doi":"10.24410/kaust-0wgzf","updated":"2019-12-11T19:01:39.000Z"},"relationships":{}},{"id":"10.33580/test_doi_5d35298aa2841","type":"dois","attributes":{"doi":"10.33580/test_doi_5d35298aa2841","updated":"2019-12-11T19:01:38.000Z"},"relationships":{}},{"id":"10.23685/c/9-dataset","type":"dois","attributes":{"doi":"10.23685/c/9-dataset","updated":"2019-12-11T19:01:38.000Z"},"relationships":{}},{"id":"10.7968/20191101.1/9","type":"dois","attributes":{"doi":"10.7968/20191101.1/9","updated":"2019-12-11T19:01:38.000Z"},"relationships":{}},{"id":"10.23658/fk-6x4v-wm78","type":"dois","attributes":{"doi":"10.23658/fk-6x4v-wm78","updated":"2019-12-11T19:01:38.000Z"},"relationships":{}},{"id":"10.0307/ir-3115","type":"dois","attributes":{"doi":"10.0307/ir-3115","updated":"2019-12-11T19:01:37.000Z"},"relationships":{}},{"id":"10.70124/fk2/ztifvh/ctx8rm","type":"dois","attributes":{"doi":"10.70124/fk2/ztifvh/ctx8rm","updated":"2019-12-11T19:01:37.000Z"},"relationships":{}},{"id":"10.21366/ghent-7km8a4","type":"dois","attributes":{"doi":"10.21366/ghent-7km8a4","updated":"2019-12-11T19:01:37.000Z"},"relationships":{}},{"id":"10.80037/r1x0-y268","type":"dois","attributes":{"doi":"10.80037/r1x0-y268","updated":"2019-12-11T19:01:36.000Z"},"relationships":{}},{"id":"10.33586/a59f629d-2751-4e1a-a2af-5716bdee566a","type":"dois","attributes":{"doi":"10.33586/a59f629d-2751-4e1a-a2af-5716bdee566a","updated":"2019-12-11T19:01:36.000Z"},"relationships":{}},{"id":"10.16904/envidat-test.4","type":"dois","attributes":{"doi":"10.16904/envidat-test.4","updated":"2019-12-11T19:01:35.000Z"},"relationships":{}},{"id":"10.13139/olcf/1468200","type":"dois","attributes":{"doi":"10.13139/olcf/1468200","updated":"2019-12-11T19:01:35.000Z"},"relationships":{}},{"id":"10.33540/as74-1q49","type":"dois","attributes":{"doi":"10.33540/as74-1q49","updated":"2019-12-11T19:01:35.000Z"},"relationships":{}},{"id":"10.33578/ubsi/131","type":"dois","attributes":{"doi":"10.33578/ubsi/131","updated":"2019-12-11T19:01:34.000Z"},"relationships":{}},{"id":"10.18462/iif.kdjkjdke","type":"dois","attributes":{"doi":"10.18462/iif.kdjkjdke","updated":"2019-12-11T19:01:34.000Z"},"relationships":{}},{"id":"10.7962/d9l79htj","type":"dois","attributes":{"doi":"10.7962/d9l79htj","updated":"2019-12-11T19:01:34.000Z"},"relationships":{}},{"id":"10.22024/dev/unikent/01.02.248","type":"dois","attributes":{"doi":"10.22024/dev/unikent/01.02.248","updated":"2019-12-11T19:01:33.000Z"},"relationships":{}},{"id":"10.80058/fk2/sskvtt/kw0c0z","type":"dois","attributes":{"doi":"10.80058/fk2/sskvtt/kw0c0z","updated":"2019-12-11T19:01:33.000Z"},"relationships":{}},{"id":"10.7893/akpy-7128","type":"dois","attributes":{"doi":"10.7893/akpy-7128","updated":"2019-12-11T19:01:33.000Z"},"relationships":{}},{"id":"10.15480/882.2360","type":"dois","attributes":{"doi":"10.15480/882.2360","updated":"2019-12-11T19:01:33.000Z"},"relationships":{}},{"id":"10.33685/test_doi_5c9061ca674d5","type":"dois","attributes":{"doi":"10.33685/test_doi_5c9061ca674d5","updated":"2019-12-11T19:01:32.000Z"},"relationships":{}},{"id":"10.33505/gc4x-tm21","type":"dois","attributes":{"doi":"10.33505/gc4x-tm21","updated":"2019-12-11T19:01:32.000Z"},"relationships":{}},{"id":"10.70031/fkcp-ph05","type":"dois","attributes":{"doi":"10.70031/fkcp-ph05","updated":"2019-12-11T19:01:32.000Z"},"relationships":{}},{"id":"10.80022/h839-4t44","type":"dois","attributes":{"doi":"10.80022/h839-4t44","updated":"2019-12-11T19:01:31.000Z"},"relationships":{}},{"id":"10.11571/6pv4-v575","type":"dois","attributes":{"doi":"10.11571/6pv4-v575","updated":"2019-12-11T19:01:31.000Z"},"relationships":{}},{"id":"10.33528/m74j-db88","type":"dois","attributes":{"doi":"10.33528/m74j-db88","updated":"2019-12-11T19:01:31.000Z"},"relationships":{}},{"id":"10.7963/s9xk9dih","type":"dois","attributes":{"doi":"10.7963/s9xk9dih","updated":"2019-12-11T19:01:30.000Z"},"relationships":{}},{"id":"10.5068/htnr-8c54","type":"dois","attributes":{"doi":"10.5068/htnr-8c54","updated":"2019-12-11T19:01:30.000Z"},"relationships":{}},{"id":"10.0855/495","type":"dois","attributes":{"doi":"10.0855/495","updated":"2019-12-11T19:01:30.000Z"},"relationships":{}},{"id":"10.24342/test_doi_5cee087b566b4","type":"dois","attributes":{"doi":"10.24342/test_doi_5cee087b566b4","updated":"2019-12-11T19:01:29.000Z"},"relationships":{}},{"id":"10.7970/ec280110fed04a38baa6dfadc98f382f","type":"dois","attributes":{"doi":"10.7970/ec280110fed04a38baa6dfadc98f382f","updated":"2019-12-11T19:01:29.000Z"},"relationships":{}},{"id":"10.5285/d8369a2f-8b50-4711-b492-ae773bfafd95","type":"dois","attributes":{"doi":"10.5285/d8369a2f-8b50-4711-b492-ae773bfafd95","updated":"2019-12-11T19:01:29.000Z"},"relationships":{}},{"id":"10.33568/test_doi_5db161e2b9be2","type":"dois","attributes":{"doi":"10.33568/test_doi_5db161e2b9be2","updated":"2019-12-11T19:01:28.000Z"},"relationships":{}},{"id":"10.21398/opus-1203","type":"dois","attributes":{"doi":"10.21398/opus-1203","updated":"2019-12-11T19:01:28.000Z"},"relationships":{}},{"id":"10.33574/6","type":"dois","attributes":{"doi":"10.33574/6","updated":"2019-12-11T19:01:28.000Z"},"relationships":{}},{"id":"10.24427/fjsc-kw78","type":"dois","attributes":{"doi":"10.24427/fjsc-kw78","updated":"2019-12-11T19:01:27.000Z"},"relationships":{}},{"id":"10.70011/test_doi_5d195f384658c","type":"dois","attributes":{"doi":"10.70011/test_doi_5d195f384658c","updated":"2019-12-11T19:01:27.000Z"},"relationships":{}},{"id":"10.70030/test_doi_5db8b9df0f68c","type":"dois","attributes":{"doi":"10.70030/test_doi_5db8b9df0f68c","updated":"2019-12-11T19:01:27.000Z"},"relationships":{}},{"id":"10.70111/cas.v1i0.2","type":"dois","attributes":{"doi":"10.70111/cas.v1i0.2","updated":"2019-12-11T19:01:26.000Z"},"relationships":{}},{"id":"10.7964/b9aei6cd","type":"dois","attributes":{"doi":"10.7964/b9aei6cd","updated":"2019-12-11T19:01:26.000Z"},"relationships":{}},{"id":"10.33508/ucrrtest-7","type":"dois","attributes":{"doi":"10.33508/ucrrtest-7","updated":"2019-12-11T19:01:26.000Z"},"relationships":{}},{"id":"10.5439/1379433","type":"dois","attributes":{"doi":"10.5439/1379433","updated":"2019-12-11T19:01:26.000Z"},"relationships":{}},{"id":"10.21410/testqual/vp88-jd46","type":"dois","attributes":{"doi":"10.21410/testqual/vp88-jd46","updated":"2019-12-11T19:01:25.000Z"},"relationships":{}},{"id":"10.33565/fk2/qknsgq","type":"dois","attributes":{"doi":"10.33565/fk2/qknsgq","updated":"2019-12-11T19:01:24.000Z"},"relationships":{}},{"id":"10.70015/opus-867","type":"dois","attributes":{"doi":"10.70015/opus-867","updated":"2019-12-11T19:01:24.000Z"},"relationships":{}},{"id":"10.70144/test_doi_5cad8a7c5b587","type":"dois","attributes":{"doi":"10.70144/test_doi_5cad8a7c5b587","updated":"2019-12-11T19:01:23.000Z"},"relationships":{}},{"id":"10.23693/textgrid:sshq.0","type":"dois","attributes":{"doi":"10.23693/textgrid:sshq.0","updated":"2019-12-11T19:01:23.000Z"},"relationships":{}},{"id":"10.18725/0722-6691/4088","type":"dois","attributes":{"doi":"10.18725/0722-6691/4088","updated":"2019-12-11T19:01:22.000Z"},"relationships":{}},{"id":"10.80051/myshoulder/merr7f","type":"dois","attributes":{"doi":"10.80051/myshoulder/merr7f","updated":"2019-12-11T19:01:22.000Z"},"relationships":{}},{"id":"10.23719/17160","type":"dois","attributes":{"doi":"10.23719/17160","updated":"2019-12-11T19:01:22.000Z"},"relationships":{}},{"id":"10.15123/pub.20","type":"dois","attributes":{"doi":"10.15123/pub.20","updated":"2019-12-11T19:01:21.000Z"},"relationships":{}},{"id":"10.18716/testusb/verteidigung_masterarbeit_niemitz","type":"dois","attributes":{"doi":"10.18716/testusb/verteidigung_masterarbeit_niemitz","updated":"2019-12-11T19:01:21.000Z"},"relationships":{}},{"id":"10.0353/development:abefb1a3-6ae9-4da6-a9a8-d7f66f98710e:20190723:2","type":"dois","attributes":{"doi":"10.0353/development:abefb1a3-6ae9-4da6-a9a8-d7f66f98710e:20190723:2","updated":"2019-12-11T19:01:21.000Z"},"relationships":{}},{"id":"10.21411/cbm.a.b2c2dbe2","type":"dois","attributes":{"doi":"10.21411/cbm.a.b2c2dbe2","updated":"2019-12-11T19:01:20.000Z"},"relationships":{}},{"id":"10.13143/6d4k-8n87","type":"dois","attributes":{"doi":"10.13143/6d4k-8n87","updated":"2019-12-11T19:01:20.000Z"},"relationships":{}},{"id":"10.4124/7a5/8qy56","type":"dois","attributes":{"doi":"10.4124/7a5/8qy56","updated":"2019-12-11T19:01:20.000Z"},"relationships":{}},{"id":"10.0337/cds/vizier.102036","type":"dois","attributes":{"doi":"10.0337/cds/vizier.102036","updated":"2019-12-11T19:01:19.000Z"},"relationships":{}},{"id":"10.21368/test2362-u1480g-gra","type":"dois","attributes":{"doi":"10.21368/test2362-u1480g-gra","updated":"2019-12-11T19:01:19.000Z"},"relationships":{}},{"id":"10.12685/e6ws-545dwm2446","type":"dois","attributes":{"doi":"10.12685/e6ws-545dwm2446","updated":"2019-12-11T19:01:19.000Z"},"relationships":{}},{"id":"10.33679/test_doi_5c90690f35811","type":"dois","attributes":{"doi":"10.33679/test_doi_5c90690f35811","updated":"2019-12-11T19:01:16.000Z"},"relationships":{}},{"id":"10.24403/test_doi_5cb00092c3831","type":"dois","attributes":{"doi":"10.24403/test_doi_5cb00092c3831","updated":"2019-12-11T19:01:16.000Z"},"relationships":{}},{"id":"10.70003/aridhia-blog-001","type":"dois","attributes":{"doi":"10.70003/aridhia-blog-001","updated":"2019-12-11T19:01:16.000Z"},"relationships":{}},{"id":"10.33634/14","type":"dois","attributes":{"doi":"10.33634/14","updated":"2019-12-11T19:01:15.000Z"},"relationships":{}},{"id":"10.80016/dvn/xgmqdg","type":"dois","attributes":{"doi":"10.80016/dvn/xgmqdg","updated":"2019-12-11T19:01:13.000Z"},"relationships":{}},{"id":"10.80099/w01.lbstest.da.ulcc.ac.uk.00001264","type":"dois","attributes":{"doi":"10.80099/w01.lbstest.da.ulcc.ac.uk.00001264","updated":"2019-12-11T19:01:12.000Z"},"relationships":{}},{"id":"10.7947/m30x-pa17","type":"dois","attributes":{"doi":"10.7947/m30x-pa17","updated":"2019-12-11T19:01:11.000Z"},"relationships":{}},{"id":"10.70014/opus-293","type":"dois","attributes":{"doi":"10.70014/opus-293","updated":"2019-12-11T19:01:09.000Z"},"relationships":{}},{"id":"10.1234/m7jfnz69kb","type":"dois","attributes":{"doi":"10.1234/m7jfnz69kb","updated":"2019-12-11T18:30:58.000Z"},"relationships":{}},{"id":"10.5256/f1000research.79265.d245771","type":"dois","attributes":{"doi":"10.5256/f1000research.79265.d245771","updated":"2019-12-11T18:30:57.000Z"},"relationships":{}},{"id":"10.4124/ccnlgrf","type":"dois","attributes":{"doi":"10.4124/ccnlgrf","updated":"2019-12-11T18:30:57.000Z"},"relationships":{}}],"meta":{"total":896469,"scroll-id":"DnF1ZXJ5VGhlbkZldGNoBQAAAAAAQ2MtFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAENjLxZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhRAAAAAABDYy4WbFFhUy1BeGRSd2VkTWczN2lTNmI4UQAAAAAAQ2MwFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAENjMRZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhR"},"links":{"self":"https://api.test.datacite.org/dois?fields%5Bdois%5D=doi%2Cupdated&page%5Bscroll%5D=7m&page%5Bsize%5D=1000","next":"https://api.test.datacite.org/dois?page%5Bscroll%5D=7m&page%5Bsize%5D=1000&scroll-id=DnF1ZXJ5VGhlbkZldGNoBQAAAAAAQ2MtFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAENjLxZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhRAAAAAABDYy4WbFFhUy1BeGRSd2VkTWczN2lTNmI4UQAAAAAAQ2MwFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAENjMRZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhR"}}'
45
+ string: '{"data":[{"id":"10.0253/tuprints-00003731","type":"dois","attributes":{"doi":"10.0253/tuprints-00003731","updated":"2019-12-12T11:02:42.000Z"},"relationships":{}},{"id":"10.4124/s52mr33j32.1","type":"dois","attributes":{"doi":"10.4124/s52mr33j32.1","updated":"2019-12-12T11:02:41.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003721","type":"dois","attributes":{"doi":"10.0253/tuprints-00003721","updated":"2019-12-12T11:02:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003722","type":"dois","attributes":{"doi":"10.0253/tuprints-00003722","updated":"2019-12-12T11:02:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003718","type":"dois","attributes":{"doi":"10.0253/tuprints-00003718","updated":"2019-12-12T11:02:39.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003719","type":"dois","attributes":{"doi":"10.0253/tuprints-00003719","updated":"2019-12-12T11:02:39.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003716","type":"dois","attributes":{"doi":"10.0253/tuprints-00003716","updated":"2019-12-12T11:02:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003717","type":"dois","attributes":{"doi":"10.0253/tuprints-00003717","updated":"2019-12-12T11:02:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003714","type":"dois","attributes":{"doi":"10.0253/tuprints-00003714","updated":"2019-12-12T11:02:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003712","type":"dois","attributes":{"doi":"10.0253/tuprints-00003712","updated":"2019-12-12T11:02:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003710","type":"dois","attributes":{"doi":"10.0253/tuprints-00003710","updated":"2019-12-12T11:02:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003706","type":"dois","attributes":{"doi":"10.0253/tuprints-00003706","updated":"2019-12-12T11:02:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003703","type":"dois","attributes":{"doi":"10.0253/tuprints-00003703","updated":"2019-12-12T11:02:35.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003704","type":"dois","attributes":{"doi":"10.0253/tuprints-00003704","updated":"2019-12-12T11:02:35.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003702","type":"dois","attributes":{"doi":"10.0253/tuprints-00003702","updated":"2019-12-12T11:02:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003701","type":"dois","attributes":{"doi":"10.0253/tuprints-00003701","updated":"2019-12-12T11:02:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003699","type":"dois","attributes":{"doi":"10.0253/tuprints-00003699","updated":"2019-12-12T11:02:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003698","type":"dois","attributes":{"doi":"10.0253/tuprints-00003698","updated":"2019-12-12T11:02:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003694","type":"dois","attributes":{"doi":"10.0253/tuprints-00003694","updated":"2019-12-12T11:02:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003696","type":"dois","attributes":{"doi":"10.0253/tuprints-00003696","updated":"2019-12-12T11:02:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003693","type":"dois","attributes":{"doi":"10.0253/tuprints-00003693","updated":"2019-12-12T11:02:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003692","type":"dois","attributes":{"doi":"10.0253/tuprints-00003692","updated":"2019-12-12T11:02:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003688","type":"dois","attributes":{"doi":"10.0253/tuprints-00003688","updated":"2019-12-12T11:02:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003690","type":"dois","attributes":{"doi":"10.0253/tuprints-00003690","updated":"2019-12-12T11:02:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003685","type":"dois","attributes":{"doi":"10.0253/tuprints-00003685","updated":"2019-12-12T11:02:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003686","type":"dois","attributes":{"doi":"10.0253/tuprints-00003686","updated":"2019-12-12T11:02:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003683","type":"dois","attributes":{"doi":"10.0253/tuprints-00003683","updated":"2019-12-12T11:02:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003684","type":"dois","attributes":{"doi":"10.0253/tuprints-00003684","updated":"2019-12-12T11:02:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003679","type":"dois","attributes":{"doi":"10.0253/tuprints-00003679","updated":"2019-12-12T11:02:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003681","type":"dois","attributes":{"doi":"10.0253/tuprints-00003681","updated":"2019-12-12T11:02:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003676","type":"dois","attributes":{"doi":"10.0253/tuprints-00003676","updated":"2019-12-12T11:02:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003677","type":"dois","attributes":{"doi":"10.0253/tuprints-00003677","updated":"2019-12-12T11:02:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003674","type":"dois","attributes":{"doi":"10.0253/tuprints-00003674","updated":"2019-12-12T11:02:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003675","type":"dois","attributes":{"doi":"10.0253/tuprints-00003675","updated":"2019-12-12T11:02:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003672","type":"dois","attributes":{"doi":"10.0253/tuprints-00003672","updated":"2019-12-12T11:02:24.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003673","type":"dois","attributes":{"doi":"10.0253/tuprints-00003673","updated":"2019-12-12T11:02:24.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003667","type":"dois","attributes":{"doi":"10.0253/tuprints-00003667","updated":"2019-12-12T11:02:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003668","type":"dois","attributes":{"doi":"10.0253/tuprints-00003668","updated":"2019-12-12T11:02:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003665","type":"dois","attributes":{"doi":"10.0253/tuprints-00003665","updated":"2019-12-12T11:02:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003666","type":"dois","attributes":{"doi":"10.0253/tuprints-00003666","updated":"2019-12-12T11:02:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003661","type":"dois","attributes":{"doi":"10.0253/tuprints-00003661","updated":"2019-12-12T11:02:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003663","type":"dois","attributes":{"doi":"10.0253/tuprints-00003663","updated":"2019-12-12T11:02:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003658","type":"dois","attributes":{"doi":"10.0253/tuprints-00003658","updated":"2019-12-12T11:02:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003657","type":"dois","attributes":{"doi":"10.0253/tuprints-00003657","updated":"2019-12-12T11:02:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003655","type":"dois","attributes":{"doi":"10.0253/tuprints-00003655","updated":"2019-12-12T11:02:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003654","type":"dois","attributes":{"doi":"10.0253/tuprints-00003654","updated":"2019-12-12T11:02:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003652","type":"dois","attributes":{"doi":"10.0253/tuprints-00003652","updated":"2019-12-12T11:02:18.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003653","type":"dois","attributes":{"doi":"10.0253/tuprints-00003653","updated":"2019-12-12T11:02:18.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003650","type":"dois","attributes":{"doi":"10.0253/tuprints-00003650","updated":"2019-12-12T11:02:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003651","type":"dois","attributes":{"doi":"10.0253/tuprints-00003651","updated":"2019-12-12T11:02:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003648","type":"dois","attributes":{"doi":"10.0253/tuprints-00003648","updated":"2019-12-12T11:02:16.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003647","type":"dois","attributes":{"doi":"10.0253/tuprints-00003647","updated":"2019-12-12T11:02:16.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003645","type":"dois","attributes":{"doi":"10.0253/tuprints-00003645","updated":"2019-12-12T11:02:15.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003644","type":"dois","attributes":{"doi":"10.0253/tuprints-00003644","updated":"2019-12-12T11:02:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003643","type":"dois","attributes":{"doi":"10.0253/tuprints-00003643","updated":"2019-12-12T11:02:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003641","type":"dois","attributes":{"doi":"10.0253/tuprints-00003641","updated":"2019-12-12T11:02:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003642","type":"dois","attributes":{"doi":"10.0253/tuprints-00003642","updated":"2019-12-12T11:02:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003639","type":"dois","attributes":{"doi":"10.0253/tuprints-00003639","updated":"2019-12-12T11:02:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003640","type":"dois","attributes":{"doi":"10.0253/tuprints-00003640","updated":"2019-12-12T11:02:12.000Z"},"relationships":{}},{"id":"10.1234/48g249535p.2","type":"dois","attributes":{"doi":"10.1234/48g249535p.2","updated":"2019-12-12T11:02:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003636","type":"dois","attributes":{"doi":"10.0253/tuprints-00003636","updated":"2019-12-12T11:02:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003638","type":"dois","attributes":{"doi":"10.0253/tuprints-00003638","updated":"2019-12-12T11:02:11.000Z"},"relationships":{}},{"id":"10.1234/48g249535p","type":"dois","attributes":{"doi":"10.1234/48g249535p","updated":"2019-12-12T11:02:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003635","type":"dois","attributes":{"doi":"10.0253/tuprints-00003635","updated":"2019-12-12T11:02:10.000Z"},"relationships":{}},{"id":"10.1234/48g249535p.1","type":"dois","attributes":{"doi":"10.1234/48g249535p.1","updated":"2019-12-12T11:02:10.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003634","type":"dois","attributes":{"doi":"10.0253/tuprints-00003634","updated":"2019-12-12T11:02:10.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003632","type":"dois","attributes":{"doi":"10.0253/tuprints-00003632","updated":"2019-12-12T11:02:09.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003633","type":"dois","attributes":{"doi":"10.0253/tuprints-00003633","updated":"2019-12-12T11:02:09.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003631","type":"dois","attributes":{"doi":"10.0253/tuprints-00003631","updated":"2019-12-12T11:02:08.000Z"},"relationships":{}},{"id":"10.1234/ykc8v9jfjf.1","type":"dois","attributes":{"doi":"10.1234/ykc8v9jfjf.1","updated":"2019-12-12T11:02:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003626","type":"dois","attributes":{"doi":"10.0253/tuprints-00003626","updated":"2019-12-12T11:02:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003746","type":"dois","attributes":{"doi":"10.0253/tuprints-00003746","updated":"2019-12-12T11:02:07.000Z"},"relationships":{}},{"id":"10.1234/ykc8v9jfjf","type":"dois","attributes":{"doi":"10.1234/ykc8v9jfjf","updated":"2019-12-12T11:02:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003859","type":"dois","attributes":{"doi":"10.0253/tuprints-00003859","updated":"2019-12-12T11:02:06.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003862","type":"dois","attributes":{"doi":"10.0253/tuprints-00003862","updated":"2019-12-12T11:02:06.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003858","type":"dois","attributes":{"doi":"10.0253/tuprints-00003858","updated":"2019-12-12T11:02:05.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003857","type":"dois","attributes":{"doi":"10.0253/tuprints-00003857","updated":"2019-12-12T11:02:05.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003851","type":"dois","attributes":{"doi":"10.0253/tuprints-00003851","updated":"2019-12-12T11:02:04.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003855","type":"dois","attributes":{"doi":"10.0253/tuprints-00003855","updated":"2019-12-12T11:02:04.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003847","type":"dois","attributes":{"doi":"10.0253/tuprints-00003847","updated":"2019-12-12T11:02:03.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003844","type":"dois","attributes":{"doi":"10.0253/tuprints-00003844","updated":"2019-12-12T11:02:03.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003839","type":"dois","attributes":{"doi":"10.0253/tuprints-00003839","updated":"2019-12-12T11:02:02.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003843","type":"dois","attributes":{"doi":"10.0253/tuprints-00003843","updated":"2019-12-12T11:02:02.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003833","type":"dois","attributes":{"doi":"10.0253/tuprints-00003833","updated":"2019-12-12T11:02:01.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003837","type":"dois","attributes":{"doi":"10.0253/tuprints-00003837","updated":"2019-12-12T11:02:01.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003832","type":"dois","attributes":{"doi":"10.0253/tuprints-00003832","updated":"2019-12-12T11:02:00.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003828","type":"dois","attributes":{"doi":"10.0253/tuprints-00003828","updated":"2019-12-12T11:02:00.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003825","type":"dois","attributes":{"doi":"10.0253/tuprints-00003825","updated":"2019-12-12T11:01:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003826","type":"dois","attributes":{"doi":"10.0253/tuprints-00003826","updated":"2019-12-12T11:01:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003824","type":"dois","attributes":{"doi":"10.0253/tuprints-00003824","updated":"2019-12-12T11:01:58.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003822","type":"dois","attributes":{"doi":"10.0253/tuprints-00003822","updated":"2019-12-12T11:01:58.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003815","type":"dois","attributes":{"doi":"10.0253/tuprints-00003815","updated":"2019-12-12T11:01:57.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003821","type":"dois","attributes":{"doi":"10.0253/tuprints-00003821","updated":"2019-12-12T11:01:57.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003812","type":"dois","attributes":{"doi":"10.0253/tuprints-00003812","updated":"2019-12-12T11:01:56.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003811","type":"dois","attributes":{"doi":"10.0253/tuprints-00003811","updated":"2019-12-12T11:01:56.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003808","type":"dois","attributes":{"doi":"10.0253/tuprints-00003808","updated":"2019-12-12T11:01:55.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003807","type":"dois","attributes":{"doi":"10.0253/tuprints-00003807","updated":"2019-12-12T11:01:55.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003805","type":"dois","attributes":{"doi":"10.0253/tuprints-00003805","updated":"2019-12-12T11:01:54.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003806","type":"dois","attributes":{"doi":"10.0253/tuprints-00003806","updated":"2019-12-12T11:01:54.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003803","type":"dois","attributes":{"doi":"10.0253/tuprints-00003803","updated":"2019-12-12T11:01:53.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003804","type":"dois","attributes":{"doi":"10.0253/tuprints-00003804","updated":"2019-12-12T11:01:53.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003802","type":"dois","attributes":{"doi":"10.0253/tuprints-00003802","updated":"2019-12-12T11:01:52.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003799","type":"dois","attributes":{"doi":"10.0253/tuprints-00003799","updated":"2019-12-12T11:01:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003801","type":"dois","attributes":{"doi":"10.0253/tuprints-00003801","updated":"2019-12-12T11:01:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003792","type":"dois","attributes":{"doi":"10.0253/tuprints-00003792","updated":"2019-12-12T11:01:50.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003788","type":"dois","attributes":{"doi":"10.0253/tuprints-00003788","updated":"2019-12-12T11:01:50.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003785","type":"dois","attributes":{"doi":"10.0253/tuprints-00003785","updated":"2019-12-12T11:01:49.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003787","type":"dois","attributes":{"doi":"10.0253/tuprints-00003787","updated":"2019-12-12T11:01:49.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003784","type":"dois","attributes":{"doi":"10.0253/tuprints-00003784","updated":"2019-12-12T11:01:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003783","type":"dois","attributes":{"doi":"10.0253/tuprints-00003783","updated":"2019-12-12T11:01:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003781","type":"dois","attributes":{"doi":"10.0253/tuprints-00003781","updated":"2019-12-12T11:01:47.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003782","type":"dois","attributes":{"doi":"10.0253/tuprints-00003782","updated":"2019-12-12T11:01:47.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003779","type":"dois","attributes":{"doi":"10.0253/tuprints-00003779","updated":"2019-12-12T11:01:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003780","type":"dois","attributes":{"doi":"10.0253/tuprints-00003780","updated":"2019-12-12T11:01:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003776","type":"dois","attributes":{"doi":"10.0253/tuprints-00003776","updated":"2019-12-12T11:01:45.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003774","type":"dois","attributes":{"doi":"10.0253/tuprints-00003774","updated":"2019-12-12T11:01:45.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003770","type":"dois","attributes":{"doi":"10.0253/tuprints-00003770","updated":"2019-12-12T11:01:44.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003773","type":"dois","attributes":{"doi":"10.0253/tuprints-00003773","updated":"2019-12-12T11:01:44.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003765","type":"dois","attributes":{"doi":"10.0253/tuprints-00003765","updated":"2019-12-12T11:01:43.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003769","type":"dois","attributes":{"doi":"10.0253/tuprints-00003769","updated":"2019-12-12T11:01:43.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003747","type":"dois","attributes":{"doi":"10.0253/tuprints-00003747","updated":"2019-12-12T11:01:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003766","type":"dois","attributes":{"doi":"10.0253/tuprints-00003766","updated":"2019-12-12T11:01:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003763","type":"dois","attributes":{"doi":"10.0253/tuprints-00003763","updated":"2019-12-12T11:01:41.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003757","type":"dois","attributes":{"doi":"10.0253/tuprints-00003757","updated":"2019-12-12T11:01:41.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003750","type":"dois","attributes":{"doi":"10.0253/tuprints-00003750","updated":"2019-12-12T11:01:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003755","type":"dois","attributes":{"doi":"10.0253/tuprints-00003755","updated":"2019-12-12T11:01:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00002833","type":"dois","attributes":{"doi":"10.0253/tuprints-00002833","updated":"2019-12-12T11:01:39.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003748","type":"dois","attributes":{"doi":"10.0253/tuprints-00003748","updated":"2019-12-12T11:01:39.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003875","type":"dois","attributes":{"doi":"10.0253/tuprints-00003875","updated":"2019-12-12T11:01:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003876","type":"dois","attributes":{"doi":"10.0253/tuprints-00003876","updated":"2019-12-12T11:01:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003878","type":"dois","attributes":{"doi":"10.0253/tuprints-00003878","updated":"2019-12-12T11:01:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003863","type":"dois","attributes":{"doi":"10.0253/tuprints-00003863","updated":"2019-12-12T11:01:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003865","type":"dois","attributes":{"doi":"10.0253/tuprints-00003865","updated":"2019-12-12T11:01:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003871","type":"dois","attributes":{"doi":"10.0253/tuprints-00003871","updated":"2019-12-12T11:01:35.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003869","type":"dois","attributes":{"doi":"10.0253/tuprints-00003869","updated":"2019-12-12T11:01:35.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003866","type":"dois","attributes":{"doi":"10.0253/tuprints-00003866","updated":"2019-12-12T11:01:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003872","type":"dois","attributes":{"doi":"10.0253/tuprints-00003872","updated":"2019-12-12T11:01:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003870","type":"dois","attributes":{"doi":"10.0253/tuprints-00003870","updated":"2019-12-12T11:01:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003868","type":"dois","attributes":{"doi":"10.0253/tuprints-00003868","updated":"2019-12-12T11:01:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003873","type":"dois","attributes":{"doi":"10.0253/tuprints-00003873","updated":"2019-12-12T11:01:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003867","type":"dois","attributes":{"doi":"10.0253/tuprints-00003867","updated":"2019-12-12T11:01:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003949","type":"dois","attributes":{"doi":"10.0253/tuprints-00003949","updated":"2019-12-12T11:01:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003880","type":"dois","attributes":{"doi":"10.0253/tuprints-00003880","updated":"2019-12-12T11:01:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003948","type":"dois","attributes":{"doi":"10.0253/tuprints-00003948","updated":"2019-12-12T11:01:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003947","type":"dois","attributes":{"doi":"10.0253/tuprints-00003947","updated":"2019-12-12T11:01:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003946","type":"dois","attributes":{"doi":"10.0253/tuprints-00003946","updated":"2019-12-12T11:01:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003945","type":"dois","attributes":{"doi":"10.0253/tuprints-00003945","updated":"2019-12-12T11:01:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003932","type":"dois","attributes":{"doi":"10.0253/tuprints-00003932","updated":"2019-12-12T11:01:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003934","type":"dois","attributes":{"doi":"10.0253/tuprints-00003934","updated":"2019-12-12T11:01:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003930","type":"dois","attributes":{"doi":"10.0253/tuprints-00003930","updated":"2019-12-12T11:01:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003931","type":"dois","attributes":{"doi":"10.0253/tuprints-00003931","updated":"2019-12-12T11:01:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003928","type":"dois","attributes":{"doi":"10.0253/tuprints-00003928","updated":"2019-12-12T11:01:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003929","type":"dois","attributes":{"doi":"10.0253/tuprints-00003929","updated":"2019-12-12T11:01:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003921","type":"dois","attributes":{"doi":"10.0253/tuprints-00003921","updated":"2019-12-12T11:01:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003926","type":"dois","attributes":{"doi":"10.0253/tuprints-00003926","updated":"2019-12-12T11:01:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003916","type":"dois","attributes":{"doi":"10.0253/tuprints-00003916","updated":"2019-12-12T11:01:24.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003918","type":"dois","attributes":{"doi":"10.0253/tuprints-00003918","updated":"2019-12-12T11:01:24.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003915","type":"dois","attributes":{"doi":"10.0253/tuprints-00003915","updated":"2019-12-12T11:01:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003914","type":"dois","attributes":{"doi":"10.0253/tuprints-00003914","updated":"2019-12-12T11:01:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003913","type":"dois","attributes":{"doi":"10.0253/tuprints-00003913","updated":"2019-12-12T11:01:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003912","type":"dois","attributes":{"doi":"10.0253/tuprints-00003912","updated":"2019-12-12T11:01:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003911","type":"dois","attributes":{"doi":"10.0253/tuprints-00003911","updated":"2019-12-12T11:01:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003909","type":"dois","attributes":{"doi":"10.0253/tuprints-00003909","updated":"2019-12-12T11:01:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003905","type":"dois","attributes":{"doi":"10.0253/tuprints-00003905","updated":"2019-12-12T11:01:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003906","type":"dois","attributes":{"doi":"10.0253/tuprints-00003906","updated":"2019-12-12T11:01:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003898","type":"dois","attributes":{"doi":"10.0253/tuprints-00003898","updated":"2019-12-12T11:01:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003902","type":"dois","attributes":{"doi":"10.0253/tuprints-00003902","updated":"2019-12-12T11:01:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003895","type":"dois","attributes":{"doi":"10.0253/tuprints-00003895","updated":"2019-12-12T11:01:18.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003884","type":"dois","attributes":{"doi":"10.0253/tuprints-00003884","updated":"2019-12-12T11:01:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003892","type":"dois","attributes":{"doi":"10.0253/tuprints-00003892","updated":"2019-12-12T11:01:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003894","type":"dois","attributes":{"doi":"10.0253/tuprints-00003894","updated":"2019-12-12T11:01:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003951","type":"dois","attributes":{"doi":"10.0253/tuprints-00003951","updated":"2019-12-12T11:01:16.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003984","type":"dois","attributes":{"doi":"10.0253/tuprints-00003984","updated":"2019-12-12T11:01:15.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003985","type":"dois","attributes":{"doi":"10.0253/tuprints-00003985","updated":"2019-12-12T11:01:15.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003988","type":"dois","attributes":{"doi":"10.0253/tuprints-00003988","updated":"2019-12-12T11:01:15.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003983","type":"dois","attributes":{"doi":"10.0253/tuprints-00003983","updated":"2019-12-12T11:01:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003981","type":"dois","attributes":{"doi":"10.0253/tuprints-00003981","updated":"2019-12-12T11:01:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003979","type":"dois","attributes":{"doi":"10.0253/tuprints-00003979","updated":"2019-12-12T11:01:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003978","type":"dois","attributes":{"doi":"10.0253/tuprints-00003978","updated":"2019-12-12T11:01:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003976","type":"dois","attributes":{"doi":"10.0253/tuprints-00003976","updated":"2019-12-12T11:01:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003977","type":"dois","attributes":{"doi":"10.0253/tuprints-00003977","updated":"2019-12-12T11:01:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003972","type":"dois","attributes":{"doi":"10.0253/tuprints-00003972","updated":"2019-12-12T11:01:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003973","type":"dois","attributes":{"doi":"10.0253/tuprints-00003973","updated":"2019-12-12T11:01:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003970","type":"dois","attributes":{"doi":"10.0253/tuprints-00003970","updated":"2019-12-12T11:01:10.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003965","type":"dois","attributes":{"doi":"10.0253/tuprints-00003965","updated":"2019-12-12T11:01:10.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003964","type":"dois","attributes":{"doi":"10.0253/tuprints-00003964","updated":"2019-12-12T11:01:09.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003963","type":"dois","attributes":{"doi":"10.0253/tuprints-00003963","updated":"2019-12-12T11:01:09.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003954","type":"dois","attributes":{"doi":"10.0253/tuprints-00003954","updated":"2019-12-12T11:01:08.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003962","type":"dois","attributes":{"doi":"10.0253/tuprints-00003962","updated":"2019-12-12T11:01:08.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004001","type":"dois","attributes":{"doi":"10.0253/tuprints-00004001","updated":"2019-12-12T11:01:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003953","type":"dois","attributes":{"doi":"10.0253/tuprints-00003953","updated":"2019-12-12T11:01:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003990","type":"dois","attributes":{"doi":"10.0253/tuprints-00003990","updated":"2019-12-12T11:01:06.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004000","type":"dois","attributes":{"doi":"10.0253/tuprints-00004000","updated":"2019-12-12T11:01:06.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00003989","type":"dois","attributes":{"doi":"10.0253/tuprints-00003989","updated":"2019-12-12T11:01:05.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004006","type":"dois","attributes":{"doi":"10.0253/tuprints-00004006","updated":"2019-12-12T11:01:04.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004004","type":"dois","attributes":{"doi":"10.0253/tuprints-00004004","updated":"2019-12-12T11:01:04.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004040","type":"dois","attributes":{"doi":"10.0253/tuprints-00004040","updated":"2019-12-12T11:01:03.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004041","type":"dois","attributes":{"doi":"10.0253/tuprints-00004041","updated":"2019-12-12T11:01:03.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004038","type":"dois","attributes":{"doi":"10.0253/tuprints-00004038","updated":"2019-12-12T11:01:02.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004039","type":"dois","attributes":{"doi":"10.0253/tuprints-00004039","updated":"2019-12-12T11:01:02.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004037","type":"dois","attributes":{"doi":"10.0253/tuprints-00004037","updated":"2019-12-12T11:01:01.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004035","type":"dois","attributes":{"doi":"10.0253/tuprints-00004035","updated":"2019-12-12T11:01:01.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004034","type":"dois","attributes":{"doi":"10.0253/tuprints-00004034","updated":"2019-12-12T11:01:00.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004030","type":"dois","attributes":{"doi":"10.0253/tuprints-00004030","updated":"2019-12-12T11:01:00.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004026","type":"dois","attributes":{"doi":"10.0253/tuprints-00004026","updated":"2019-12-12T11:00:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004025","type":"dois","attributes":{"doi":"10.0253/tuprints-00004025","updated":"2019-12-12T11:00:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004021","type":"dois","attributes":{"doi":"10.0253/tuprints-00004021","updated":"2019-12-12T11:00:58.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004020","type":"dois","attributes":{"doi":"10.0253/tuprints-00004020","updated":"2019-12-12T11:00:58.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004019","type":"dois","attributes":{"doi":"10.0253/tuprints-00004019","updated":"2019-12-12T11:00:57.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004018","type":"dois","attributes":{"doi":"10.0253/tuprints-00004018","updated":"2019-12-12T11:00:57.000Z"},"relationships":{}},{"id":"10.1234/g6dvjxggtk","type":"dois","attributes":{"doi":"10.1234/g6dvjxggtk","updated":"2019-12-12T11:00:56.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004017","type":"dois","attributes":{"doi":"10.0253/tuprints-00004017","updated":"2019-12-12T11:00:56.000Z"},"relationships":{}},{"id":"10.1234/g6dvjxggtk.2","type":"dois","attributes":{"doi":"10.1234/g6dvjxggtk.2","updated":"2019-12-12T11:00:56.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004009","type":"dois","attributes":{"doi":"10.0253/tuprints-00004009","updated":"2019-12-12T11:00:55.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004016","type":"dois","attributes":{"doi":"10.0253/tuprints-00004016","updated":"2019-12-12T11:00:55.000Z"},"relationships":{}},{"id":"10.1234/g6dvjxggtk.1","type":"dois","attributes":{"doi":"10.1234/g6dvjxggtk.1","updated":"2019-12-12T11:00:55.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004008","type":"dois","attributes":{"doi":"10.0253/tuprints-00004008","updated":"2019-12-12T11:00:54.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004007","type":"dois","attributes":{"doi":"10.0253/tuprints-00004007","updated":"2019-12-12T11:00:54.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004046","type":"dois","attributes":{"doi":"10.0253/tuprints-00004046","updated":"2019-12-12T11:00:53.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004047","type":"dois","attributes":{"doi":"10.0253/tuprints-00004047","updated":"2019-12-12T11:00:53.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004045","type":"dois","attributes":{"doi":"10.0253/tuprints-00004045","updated":"2019-12-12T11:00:52.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004042","type":"dois","attributes":{"doi":"10.0253/tuprints-00004042","updated":"2019-12-12T11:00:52.000Z"},"relationships":{}},{"id":"10.1234/4fkdg43n8y","type":"dois","attributes":{"doi":"10.1234/4fkdg43n8y","updated":"2019-12-12T11:00:51.000Z"},"relationships":{}},{"id":"10.1234/4fkdg43n8y.1","type":"dois","attributes":{"doi":"10.1234/4fkdg43n8y.1","updated":"2019-12-12T11:00:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004082","type":"dois","attributes":{"doi":"10.0253/tuprints-00004082","updated":"2019-12-12T11:00:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004086","type":"dois","attributes":{"doi":"10.0253/tuprints-00004086","updated":"2019-12-12T11:00:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004080","type":"dois","attributes":{"doi":"10.0253/tuprints-00004080","updated":"2019-12-12T11:00:50.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004081","type":"dois","attributes":{"doi":"10.0253/tuprints-00004081","updated":"2019-12-12T11:00:50.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004079","type":"dois","attributes":{"doi":"10.0253/tuprints-00004079","updated":"2019-12-12T11:00:49.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004078","type":"dois","attributes":{"doi":"10.0253/tuprints-00004078","updated":"2019-12-12T11:00:49.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004076","type":"dois","attributes":{"doi":"10.0253/tuprints-00004076","updated":"2019-12-12T11:00:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004077","type":"dois","attributes":{"doi":"10.0253/tuprints-00004077","updated":"2019-12-12T11:00:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004075","type":"dois","attributes":{"doi":"10.0253/tuprints-00004075","updated":"2019-12-12T11:00:47.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004073","type":"dois","attributes":{"doi":"10.0253/tuprints-00004073","updated":"2019-12-12T11:00:47.000Z"},"relationships":{}},{"id":"10.1234/5v5v5v6ctt","type":"dois","attributes":{"doi":"10.1234/5v5v5v6ctt","updated":"2019-12-12T11:00:47.000Z"},"relationships":{}},{"id":"10.1234/5v5v5v6ctt.1","type":"dois","attributes":{"doi":"10.1234/5v5v5v6ctt.1","updated":"2019-12-12T11:00:47.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004072","type":"dois","attributes":{"doi":"10.0253/tuprints-00004072","updated":"2019-12-12T11:00:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004069","type":"dois","attributes":{"doi":"10.0253/tuprints-00004069","updated":"2019-12-12T11:00:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004068","type":"dois","attributes":{"doi":"10.0253/tuprints-00004068","updated":"2019-12-12T11:00:45.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004065","type":"dois","attributes":{"doi":"10.0253/tuprints-00004065","updated":"2019-12-12T11:00:45.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004064","type":"dois","attributes":{"doi":"10.0253/tuprints-00004064","updated":"2019-12-12T11:00:44.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004060","type":"dois","attributes":{"doi":"10.0253/tuprints-00004060","updated":"2019-12-12T11:00:43.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004059","type":"dois","attributes":{"doi":"10.0253/tuprints-00004059","updated":"2019-12-12T11:00:43.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004055","type":"dois","attributes":{"doi":"10.0253/tuprints-00004055","updated":"2019-12-12T11:00:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004056","type":"dois","attributes":{"doi":"10.0253/tuprints-00004056","updated":"2019-12-12T11:00:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004052","type":"dois","attributes":{"doi":"10.0253/tuprints-00004052","updated":"2019-12-12T11:00:41.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004053","type":"dois","attributes":{"doi":"10.0253/tuprints-00004053","updated":"2019-12-12T11:00:41.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004049","type":"dois","attributes":{"doi":"10.0253/tuprints-00004049","updated":"2019-12-12T11:00:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004051","type":"dois","attributes":{"doi":"10.0253/tuprints-00004051","updated":"2019-12-12T11:00:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004159","type":"dois","attributes":{"doi":"10.0253/tuprints-00004159","updated":"2019-12-12T11:00:39.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004160","type":"dois","attributes":{"doi":"10.0253/tuprints-00004160","updated":"2019-12-12T11:00:39.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004158","type":"dois","attributes":{"doi":"10.0253/tuprints-00004158","updated":"2019-12-12T11:00:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004155","type":"dois","attributes":{"doi":"10.0253/tuprints-00004155","updated":"2019-12-12T11:00:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004152","type":"dois","attributes":{"doi":"10.0253/tuprints-00004152","updated":"2019-12-12T11:00:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004154","type":"dois","attributes":{"doi":"10.0253/tuprints-00004154","updated":"2019-12-12T11:00:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004151","type":"dois","attributes":{"doi":"10.0253/tuprints-00004151","updated":"2019-12-12T11:00:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004150","type":"dois","attributes":{"doi":"10.0253/tuprints-00004150","updated":"2019-12-12T11:00:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004148","type":"dois","attributes":{"doi":"10.0253/tuprints-00004148","updated":"2019-12-12T11:00:35.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004146","type":"dois","attributes":{"doi":"10.0253/tuprints-00004146","updated":"2019-12-12T11:00:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004147","type":"dois","attributes":{"doi":"10.0253/tuprints-00004147","updated":"2019-12-12T11:00:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004144","type":"dois","attributes":{"doi":"10.0253/tuprints-00004144","updated":"2019-12-12T11:00:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004145","type":"dois","attributes":{"doi":"10.0253/tuprints-00004145","updated":"2019-12-12T11:00:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004141","type":"dois","attributes":{"doi":"10.0253/tuprints-00004141","updated":"2019-12-12T11:00:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004142","type":"dois","attributes":{"doi":"10.0253/tuprints-00004142","updated":"2019-12-12T11:00:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004137","type":"dois","attributes":{"doi":"10.0253/tuprints-00004137","updated":"2019-12-12T11:00:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004136","type":"dois","attributes":{"doi":"10.0253/tuprints-00004136","updated":"2019-12-12T11:00:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004133","type":"dois","attributes":{"doi":"10.0253/tuprints-00004133","updated":"2019-12-12T11:00:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004134","type":"dois","attributes":{"doi":"10.0253/tuprints-00004134","updated":"2019-12-12T11:00:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004132","type":"dois","attributes":{"doi":"10.0253/tuprints-00004132","updated":"2019-12-12T11:00:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004131","type":"dois","attributes":{"doi":"10.0253/tuprints-00004131","updated":"2019-12-12T11:00:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004128","type":"dois","attributes":{"doi":"10.0253/tuprints-00004128","updated":"2019-12-12T11:00:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004129","type":"dois","attributes":{"doi":"10.0253/tuprints-00004129","updated":"2019-12-12T11:00:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004126","type":"dois","attributes":{"doi":"10.0253/tuprints-00004126","updated":"2019-12-12T11:00:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004127","type":"dois","attributes":{"doi":"10.0253/tuprints-00004127","updated":"2019-12-12T11:00:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004122","type":"dois","attributes":{"doi":"10.0253/tuprints-00004122","updated":"2019-12-12T11:00:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004123","type":"dois","attributes":{"doi":"10.0253/tuprints-00004123","updated":"2019-12-12T11:00:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004121","type":"dois","attributes":{"doi":"10.0253/tuprints-00004121","updated":"2019-12-12T11:00:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004119","type":"dois","attributes":{"doi":"10.0253/tuprints-00004119","updated":"2019-12-12T11:00:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004117","type":"dois","attributes":{"doi":"10.0253/tuprints-00004117","updated":"2019-12-12T11:00:24.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004118","type":"dois","attributes":{"doi":"10.0253/tuprints-00004118","updated":"2019-12-12T11:00:24.000Z"},"relationships":{}},{"id":"10.1234/bypxmj76wb.1","type":"dois","attributes":{"doi":"10.1234/bypxmj76wb.1","updated":"2019-12-12T11:00:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004115","type":"dois","attributes":{"doi":"10.0253/tuprints-00004115","updated":"2019-12-12T11:00:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004113","type":"dois","attributes":{"doi":"10.0253/tuprints-00004113","updated":"2019-12-12T11:00:23.000Z"},"relationships":{}},{"id":"10.1234/bypxmj76wb","type":"dois","attributes":{"doi":"10.1234/bypxmj76wb","updated":"2019-12-12T11:00:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004112","type":"dois","attributes":{"doi":"10.0253/tuprints-00004112","updated":"2019-12-12T11:00:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004107","type":"dois","attributes":{"doi":"10.0253/tuprints-00004107","updated":"2019-12-12T11:00:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004108","type":"dois","attributes":{"doi":"10.0253/tuprints-00004108","updated":"2019-12-12T11:00:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004104","type":"dois","attributes":{"doi":"10.0253/tuprints-00004104","updated":"2019-12-12T11:00:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004103","type":"dois","attributes":{"doi":"10.0253/tuprints-00004103","updated":"2019-12-12T11:00:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004102","type":"dois","attributes":{"doi":"10.0253/tuprints-00004102","updated":"2019-12-12T11:00:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004100","type":"dois","attributes":{"doi":"10.0253/tuprints-00004100","updated":"2019-12-12T11:00:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004098","type":"dois","attributes":{"doi":"10.0253/tuprints-00004098","updated":"2019-12-12T11:00:18.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004097","type":"dois","attributes":{"doi":"10.0253/tuprints-00004097","updated":"2019-12-12T11:00:18.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004091","type":"dois","attributes":{"doi":"10.0253/tuprints-00004091","updated":"2019-12-12T11:00:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004092","type":"dois","attributes":{"doi":"10.0253/tuprints-00004092","updated":"2019-12-12T11:00:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004163","type":"dois","attributes":{"doi":"10.0253/tuprints-00004163","updated":"2019-12-12T11:00:16.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004162","type":"dois","attributes":{"doi":"10.0253/tuprints-00004162","updated":"2019-12-12T11:00:16.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004161","type":"dois","attributes":{"doi":"10.0253/tuprints-00004161","updated":"2019-12-12T11:00:15.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004170","type":"dois","attributes":{"doi":"10.0253/tuprints-00004170","updated":"2019-12-12T11:00:15.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004175","type":"dois","attributes":{"doi":"10.0253/tuprints-00004175","updated":"2019-12-12T11:00:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004167","type":"dois","attributes":{"doi":"10.0253/tuprints-00004167","updated":"2019-12-12T11:00:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004181","type":"dois","attributes":{"doi":"10.0253/tuprints-00004181","updated":"2019-12-12T11:00:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004171","type":"dois","attributes":{"doi":"10.0253/tuprints-00004171","updated":"2019-12-12T11:00:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004180","type":"dois","attributes":{"doi":"10.0253/tuprints-00004180","updated":"2019-12-12T11:00:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004178","type":"dois","attributes":{"doi":"10.0253/tuprints-00004178","updated":"2019-12-12T11:00:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004179","type":"dois","attributes":{"doi":"10.0253/tuprints-00004179","updated":"2019-12-12T11:00:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004188","type":"dois","attributes":{"doi":"10.0253/tuprints-00004188","updated":"2019-12-12T11:00:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004176","type":"dois","attributes":{"doi":"10.0253/tuprints-00004176","updated":"2019-12-12T11:00:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004182","type":"dois","attributes":{"doi":"10.0253/tuprints-00004182","updated":"2019-12-12T11:00:10.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004191","type":"dois","attributes":{"doi":"10.0253/tuprints-00004191","updated":"2019-12-12T11:00:10.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004192","type":"dois","attributes":{"doi":"10.0253/tuprints-00004192","updated":"2019-12-12T11:00:09.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004193","type":"dois","attributes":{"doi":"10.0253/tuprints-00004193","updated":"2019-12-12T11:00:08.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004195","type":"dois","attributes":{"doi":"10.0253/tuprints-00004195","updated":"2019-12-12T11:00:08.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004199","type":"dois","attributes":{"doi":"10.0253/tuprints-00004199","updated":"2019-12-12T11:00:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004197","type":"dois","attributes":{"doi":"10.0253/tuprints-00004197","updated":"2019-12-12T11:00:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004202","type":"dois","attributes":{"doi":"10.0253/tuprints-00004202","updated":"2019-12-12T11:00:06.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004204","type":"dois","attributes":{"doi":"10.0253/tuprints-00004204","updated":"2019-12-12T11:00:06.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004206","type":"dois","attributes":{"doi":"10.0253/tuprints-00004206","updated":"2019-12-12T11:00:05.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004207","type":"dois","attributes":{"doi":"10.0253/tuprints-00004207","updated":"2019-12-12T11:00:04.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004208","type":"dois","attributes":{"doi":"10.0253/tuprints-00004208","updated":"2019-12-12T11:00:04.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004209","type":"dois","attributes":{"doi":"10.0253/tuprints-00004209","updated":"2019-12-12T11:00:03.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004210","type":"dois","attributes":{"doi":"10.0253/tuprints-00004210","updated":"2019-12-12T11:00:03.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004212","type":"dois","attributes":{"doi":"10.0253/tuprints-00004212","updated":"2019-12-12T11:00:02.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004213","type":"dois","attributes":{"doi":"10.0253/tuprints-00004213","updated":"2019-12-12T11:00:02.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004216","type":"dois","attributes":{"doi":"10.0253/tuprints-00004216","updated":"2019-12-12T11:00:01.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004219","type":"dois","attributes":{"doi":"10.0253/tuprints-00004219","updated":"2019-12-12T11:00:00.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004217","type":"dois","attributes":{"doi":"10.0253/tuprints-00004217","updated":"2019-12-12T11:00:00.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004221","type":"dois","attributes":{"doi":"10.0253/tuprints-00004221","updated":"2019-12-12T10:59:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004223","type":"dois","attributes":{"doi":"10.0253/tuprints-00004223","updated":"2019-12-12T10:59:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004225","type":"dois","attributes":{"doi":"10.0253/tuprints-00004225","updated":"2019-12-12T10:59:58.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004224","type":"dois","attributes":{"doi":"10.0253/tuprints-00004224","updated":"2019-12-12T10:59:58.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004227","type":"dois","attributes":{"doi":"10.0253/tuprints-00004227","updated":"2019-12-12T10:59:57.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004226","type":"dois","attributes":{"doi":"10.0253/tuprints-00004226","updated":"2019-12-12T10:59:57.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004228","type":"dois","attributes":{"doi":"10.0253/tuprints-00004228","updated":"2019-12-12T10:59:56.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004232","type":"dois","attributes":{"doi":"10.0253/tuprints-00004232","updated":"2019-12-12T10:59:55.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004229","type":"dois","attributes":{"doi":"10.0253/tuprints-00004229","updated":"2019-12-12T10:59:55.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004235","type":"dois","attributes":{"doi":"10.0253/tuprints-00004235","updated":"2019-12-12T10:59:54.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004233","type":"dois","attributes":{"doi":"10.0253/tuprints-00004233","updated":"2019-12-12T10:59:54.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004237","type":"dois","attributes":{"doi":"10.0253/tuprints-00004237","updated":"2019-12-12T10:59:53.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004238","type":"dois","attributes":{"doi":"10.0253/tuprints-00004238","updated":"2019-12-12T10:59:53.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004242","type":"dois","attributes":{"doi":"10.0253/tuprints-00004242","updated":"2019-12-12T10:59:52.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004241","type":"dois","attributes":{"doi":"10.0253/tuprints-00004241","updated":"2019-12-12T10:59:52.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004243","type":"dois","attributes":{"doi":"10.0253/tuprints-00004243","updated":"2019-12-12T10:59:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004246","type":"dois","attributes":{"doi":"10.0253/tuprints-00004246","updated":"2019-12-12T10:59:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004250","type":"dois","attributes":{"doi":"10.0253/tuprints-00004250","updated":"2019-12-12T10:59:50.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004247","type":"dois","attributes":{"doi":"10.0253/tuprints-00004247","updated":"2019-12-12T10:59:50.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004248","type":"dois","attributes":{"doi":"10.0253/tuprints-00004248","updated":"2019-12-12T10:59:50.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004251","type":"dois","attributes":{"doi":"10.0253/tuprints-00004251","updated":"2019-12-12T10:59:49.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004252","type":"dois","attributes":{"doi":"10.0253/tuprints-00004252","updated":"2019-12-12T10:59:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004253","type":"dois","attributes":{"doi":"10.0253/tuprints-00004253","updated":"2019-12-12T10:59:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004262","type":"dois","attributes":{"doi":"10.0253/tuprints-00004262","updated":"2019-12-12T10:59:47.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004257","type":"dois","attributes":{"doi":"10.0253/tuprints-00004257","updated":"2019-12-12T10:59:47.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004272","type":"dois","attributes":{"doi":"10.0253/tuprints-00004272","updated":"2019-12-12T10:59:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004258","type":"dois","attributes":{"doi":"10.0253/tuprints-00004258","updated":"2019-12-12T10:59:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004273","type":"dois","attributes":{"doi":"10.0253/tuprints-00004273","updated":"2019-12-12T10:59:45.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004279","type":"dois","attributes":{"doi":"10.0253/tuprints-00004279","updated":"2019-12-12T10:59:45.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004281","type":"dois","attributes":{"doi":"10.0253/tuprints-00004281","updated":"2019-12-12T10:59:44.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004283","type":"dois","attributes":{"doi":"10.0253/tuprints-00004283","updated":"2019-12-12T10:59:44.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004285","type":"dois","attributes":{"doi":"10.0253/tuprints-00004285","updated":"2019-12-12T10:59:43.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004286","type":"dois","attributes":{"doi":"10.0253/tuprints-00004286","updated":"2019-12-12T10:59:43.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004288","type":"dois","attributes":{"doi":"10.0253/tuprints-00004288","updated":"2019-12-12T10:59:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004287","type":"dois","attributes":{"doi":"10.0253/tuprints-00004287","updated":"2019-12-12T10:59:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004290","type":"dois","attributes":{"doi":"10.0253/tuprints-00004290","updated":"2019-12-12T10:59:41.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004289","type":"dois","attributes":{"doi":"10.0253/tuprints-00004289","updated":"2019-12-12T10:59:41.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004294","type":"dois","attributes":{"doi":"10.0253/tuprints-00004294","updated":"2019-12-12T10:59:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004292","type":"dois","attributes":{"doi":"10.0253/tuprints-00004292","updated":"2019-12-12T10:59:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004298","type":"dois","attributes":{"doi":"10.0253/tuprints-00004298","updated":"2019-12-12T10:59:39.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004296","type":"dois","attributes":{"doi":"10.0253/tuprints-00004296","updated":"2019-12-12T10:59:39.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004302","type":"dois","attributes":{"doi":"10.0253/tuprints-00004302","updated":"2019-12-12T10:59:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004300","type":"dois","attributes":{"doi":"10.0253/tuprints-00004300","updated":"2019-12-12T10:59:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004303","type":"dois","attributes":{"doi":"10.0253/tuprints-00004303","updated":"2019-12-12T10:59:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004304","type":"dois","attributes":{"doi":"10.0253/tuprints-00004304","updated":"2019-12-12T10:59:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004307","type":"dois","attributes":{"doi":"10.0253/tuprints-00004307","updated":"2019-12-12T10:59:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004306","type":"dois","attributes":{"doi":"10.0253/tuprints-00004306","updated":"2019-12-12T10:59:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004308","type":"dois","attributes":{"doi":"10.0253/tuprints-00004308","updated":"2019-12-12T10:59:35.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004309","type":"dois","attributes":{"doi":"10.0253/tuprints-00004309","updated":"2019-12-12T10:59:35.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004310","type":"dois","attributes":{"doi":"10.0253/tuprints-00004310","updated":"2019-12-12T10:59:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004311","type":"dois","attributes":{"doi":"10.0253/tuprints-00004311","updated":"2019-12-12T10:59:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004315","type":"dois","attributes":{"doi":"10.0253/tuprints-00004315","updated":"2019-12-12T10:59:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004313","type":"dois","attributes":{"doi":"10.0253/tuprints-00004313","updated":"2019-12-12T10:59:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004316","type":"dois","attributes":{"doi":"10.0253/tuprints-00004316","updated":"2019-12-12T10:59:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004318","type":"dois","attributes":{"doi":"10.0253/tuprints-00004318","updated":"2019-12-12T10:59:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004320","type":"dois","attributes":{"doi":"10.0253/tuprints-00004320","updated":"2019-12-12T10:59:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004319","type":"dois","attributes":{"doi":"10.0253/tuprints-00004319","updated":"2019-12-12T10:59:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004321","type":"dois","attributes":{"doi":"10.0253/tuprints-00004321","updated":"2019-12-12T10:59:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004332","type":"dois","attributes":{"doi":"10.0253/tuprints-00004332","updated":"2019-12-12T10:59:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004322","type":"dois","attributes":{"doi":"10.0253/tuprints-00004322","updated":"2019-12-12T10:59:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004335","type":"dois","attributes":{"doi":"10.0253/tuprints-00004335","updated":"2019-12-12T10:59:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004333","type":"dois","attributes":{"doi":"10.0253/tuprints-00004333","updated":"2019-12-12T10:59:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004341","type":"dois","attributes":{"doi":"10.0253/tuprints-00004341","updated":"2019-12-12T10:59:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004342","type":"dois","attributes":{"doi":"10.0253/tuprints-00004342","updated":"2019-12-12T10:59:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004339","type":"dois","attributes":{"doi":"10.0253/tuprints-00004339","updated":"2019-12-12T10:59:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004338","type":"dois","attributes":{"doi":"10.0253/tuprints-00004338","updated":"2019-12-12T10:59:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004367","type":"dois","attributes":{"doi":"10.0253/tuprints-00004367","updated":"2019-12-12T10:59:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004366","type":"dois","attributes":{"doi":"10.0253/tuprints-00004366","updated":"2019-12-12T10:59:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004361","type":"dois","attributes":{"doi":"10.0253/tuprints-00004361","updated":"2019-12-12T10:59:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004355","type":"dois","attributes":{"doi":"10.0253/tuprints-00004355","updated":"2019-12-12T10:59:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004359","type":"dois","attributes":{"doi":"10.0253/tuprints-00004359","updated":"2019-12-12T10:59:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004354","type":"dois","attributes":{"doi":"10.0253/tuprints-00004354","updated":"2019-12-12T10:59:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004352","type":"dois","attributes":{"doi":"10.0253/tuprints-00004352","updated":"2019-12-12T10:59:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004349","type":"dois","attributes":{"doi":"10.0253/tuprints-00004349","updated":"2019-12-12T10:59:18.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004350","type":"dois","attributes":{"doi":"10.0253/tuprints-00004350","updated":"2019-12-12T10:59:18.000Z"},"relationships":{}},{"id":"10.33593/morressier.5aeb0ac507b0d6001a79a03b","type":"dois","attributes":{"doi":"10.33593/morressier.5aeb0ac507b0d6001a79a03b","updated":"2019-12-12T10:59:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004348","type":"dois","attributes":{"doi":"10.0253/tuprints-00004348","updated":"2019-12-12T10:59:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004347","type":"dois","attributes":{"doi":"10.0253/tuprints-00004347","updated":"2019-12-12T10:59:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004346","type":"dois","attributes":{"doi":"10.0253/tuprints-00004346","updated":"2019-12-12T10:59:16.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004383","type":"dois","attributes":{"doi":"10.0253/tuprints-00004383","updated":"2019-12-12T10:59:15.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004343","type":"dois","attributes":{"doi":"10.0253/tuprints-00004343","updated":"2019-12-12T10:59:15.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004380","type":"dois","attributes":{"doi":"10.0253/tuprints-00004380","updated":"2019-12-12T10:59:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004382","type":"dois","attributes":{"doi":"10.0253/tuprints-00004382","updated":"2019-12-12T10:59:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004379","type":"dois","attributes":{"doi":"10.0253/tuprints-00004379","updated":"2019-12-12T10:59:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004377","type":"dois","attributes":{"doi":"10.0253/tuprints-00004377","updated":"2019-12-12T10:59:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004369","type":"dois","attributes":{"doi":"10.0253/tuprints-00004369","updated":"2019-12-12T10:59:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004376","type":"dois","attributes":{"doi":"10.0253/tuprints-00004376","updated":"2019-12-12T10:59:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004430","type":"dois","attributes":{"doi":"10.0253/tuprints-00004430","updated":"2019-12-12T10:59:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004429","type":"dois","attributes":{"doi":"10.0253/tuprints-00004429","updated":"2019-12-12T10:59:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004428","type":"dois","attributes":{"doi":"10.0253/tuprints-00004428","updated":"2019-12-12T10:59:10.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004426","type":"dois","attributes":{"doi":"10.0253/tuprints-00004426","updated":"2019-12-12T10:59:09.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004427","type":"dois","attributes":{"doi":"10.0253/tuprints-00004427","updated":"2019-12-12T10:59:09.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004420","type":"dois","attributes":{"doi":"10.0253/tuprints-00004420","updated":"2019-12-12T10:59:08.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004423","type":"dois","attributes":{"doi":"10.0253/tuprints-00004423","updated":"2019-12-12T10:59:08.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004419","type":"dois","attributes":{"doi":"10.0253/tuprints-00004419","updated":"2019-12-12T10:59:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004415","type":"dois","attributes":{"doi":"10.0253/tuprints-00004415","updated":"2019-12-12T10:59:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004411","type":"dois","attributes":{"doi":"10.0253/tuprints-00004411","updated":"2019-12-12T10:59:06.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004412","type":"dois","attributes":{"doi":"10.0253/tuprints-00004412","updated":"2019-12-12T10:59:06.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004409","type":"dois","attributes":{"doi":"10.0253/tuprints-00004409","updated":"2019-12-12T10:59:05.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004405","type":"dois","attributes":{"doi":"10.0253/tuprints-00004405","updated":"2019-12-12T10:59:05.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004401","type":"dois","attributes":{"doi":"10.0253/tuprints-00004401","updated":"2019-12-12T10:59:04.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004402","type":"dois","attributes":{"doi":"10.0253/tuprints-00004402","updated":"2019-12-12T10:59:04.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004400","type":"dois","attributes":{"doi":"10.0253/tuprints-00004400","updated":"2019-12-12T10:59:03.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004399","type":"dois","attributes":{"doi":"10.0253/tuprints-00004399","updated":"2019-12-12T10:59:02.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004398","type":"dois","attributes":{"doi":"10.0253/tuprints-00004398","updated":"2019-12-12T10:59:02.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004397","type":"dois","attributes":{"doi":"10.0253/tuprints-00004397","updated":"2019-12-12T10:59:01.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004396","type":"dois","attributes":{"doi":"10.0253/tuprints-00004396","updated":"2019-12-12T10:59:01.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004391","type":"dois","attributes":{"doi":"10.0253/tuprints-00004391","updated":"2019-12-12T10:59:00.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004395","type":"dois","attributes":{"doi":"10.0253/tuprints-00004395","updated":"2019-12-12T10:59:00.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004390","type":"dois","attributes":{"doi":"10.0253/tuprints-00004390","updated":"2019-12-12T10:58:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004389","type":"dois","attributes":{"doi":"10.0253/tuprints-00004389","updated":"2019-12-12T10:58:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004387","type":"dois","attributes":{"doi":"10.0253/tuprints-00004387","updated":"2019-12-12T10:58:58.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004385","type":"dois","attributes":{"doi":"10.0253/tuprints-00004385","updated":"2019-12-12T10:58:58.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004449","type":"dois","attributes":{"doi":"10.0253/tuprints-00004449","updated":"2019-12-12T10:58:57.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004384","type":"dois","attributes":{"doi":"10.0253/tuprints-00004384","updated":"2019-12-12T10:58:57.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004447","type":"dois","attributes":{"doi":"10.0253/tuprints-00004447","updated":"2019-12-12T10:58:56.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004448","type":"dois","attributes":{"doi":"10.0253/tuprints-00004448","updated":"2019-12-12T10:58:56.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004446","type":"dois","attributes":{"doi":"10.0253/tuprints-00004446","updated":"2019-12-12T10:58:55.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004444","type":"dois","attributes":{"doi":"10.0253/tuprints-00004444","updated":"2019-12-12T10:58:54.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004443","type":"dois","attributes":{"doi":"10.0253/tuprints-00004443","updated":"2019-12-12T10:58:54.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004438","type":"dois","attributes":{"doi":"10.0253/tuprints-00004438","updated":"2019-12-12T10:58:53.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004442","type":"dois","attributes":{"doi":"10.0253/tuprints-00004442","updated":"2019-12-12T10:58:53.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004437","type":"dois","attributes":{"doi":"10.0253/tuprints-00004437","updated":"2019-12-12T10:58:52.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004432","type":"dois","attributes":{"doi":"10.0253/tuprints-00004432","updated":"2019-12-12T10:58:52.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004431","type":"dois","attributes":{"doi":"10.0253/tuprints-00004431","updated":"2019-12-12T10:58:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004458","type":"dois","attributes":{"doi":"10.0253/tuprints-00004458","updated":"2019-12-12T10:58:50.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004459","type":"dois","attributes":{"doi":"10.0253/tuprints-00004459","updated":"2019-12-12T10:58:50.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004457","type":"dois","attributes":{"doi":"10.0253/tuprints-00004457","updated":"2019-12-12T10:58:49.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004455","type":"dois","attributes":{"doi":"10.0253/tuprints-00004455","updated":"2019-12-12T10:58:49.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004453","type":"dois","attributes":{"doi":"10.0253/tuprints-00004453","updated":"2019-12-12T10:58:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004454","type":"dois","attributes":{"doi":"10.0253/tuprints-00004454","updated":"2019-12-12T10:58:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004463","type":"dois","attributes":{"doi":"10.0253/tuprints-00004463","updated":"2019-12-12T10:58:47.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004464","type":"dois","attributes":{"doi":"10.0253/tuprints-00004464","updated":"2019-12-12T10:58:47.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004462","type":"dois","attributes":{"doi":"10.0253/tuprints-00004462","updated":"2019-12-12T10:58:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004460","type":"dois","attributes":{"doi":"10.0253/tuprints-00004460","updated":"2019-12-12T10:58:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004479","type":"dois","attributes":{"doi":"10.0253/tuprints-00004479","updated":"2019-12-12T10:58:45.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004466","type":"dois","attributes":{"doi":"10.0253/tuprints-00004466","updated":"2019-12-12T10:58:45.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004478","type":"dois","attributes":{"doi":"10.0253/tuprints-00004478","updated":"2019-12-12T10:58:44.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004476","type":"dois","attributes":{"doi":"10.0253/tuprints-00004476","updated":"2019-12-12T10:58:44.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004475","type":"dois","attributes":{"doi":"10.0253/tuprints-00004475","updated":"2019-12-12T10:58:43.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004472","type":"dois","attributes":{"doi":"10.0253/tuprints-00004472","updated":"2019-12-12T10:58:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004471","type":"dois","attributes":{"doi":"10.0253/tuprints-00004471","updated":"2019-12-12T10:58:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004469","type":"dois","attributes":{"doi":"10.0253/tuprints-00004469","updated":"2019-12-12T10:58:41.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004470","type":"dois","attributes":{"doi":"10.0253/tuprints-00004470","updated":"2019-12-12T10:58:41.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004467","type":"dois","attributes":{"doi":"10.0253/tuprints-00004467","updated":"2019-12-12T10:58:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004468","type":"dois","attributes":{"doi":"10.0253/tuprints-00004468","updated":"2019-12-12T10:58:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004500","type":"dois","attributes":{"doi":"10.0253/tuprints-00004500","updated":"2019-12-12T10:58:39.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004492","type":"dois","attributes":{"doi":"10.0253/tuprints-00004492","updated":"2019-12-12T10:58:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004493","type":"dois","attributes":{"doi":"10.0253/tuprints-00004493","updated":"2019-12-12T10:58:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004491","type":"dois","attributes":{"doi":"10.0253/tuprints-00004491","updated":"2019-12-12T10:58:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004489","type":"dois","attributes":{"doi":"10.0253/tuprints-00004489","updated":"2019-12-12T10:58:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004486","type":"dois","attributes":{"doi":"10.0253/tuprints-00004486","updated":"2019-12-12T10:58:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004483","type":"dois","attributes":{"doi":"10.0253/tuprints-00004483","updated":"2019-12-12T10:58:35.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004484","type":"dois","attributes":{"doi":"10.0253/tuprints-00004484","updated":"2019-12-12T10:58:35.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004481","type":"dois","attributes":{"doi":"10.0253/tuprints-00004481","updated":"2019-12-12T10:58:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004480","type":"dois","attributes":{"doi":"10.0253/tuprints-00004480","updated":"2019-12-12T10:58:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004544","type":"dois","attributes":{"doi":"10.0253/tuprints-00004544","updated":"2019-12-12T10:58:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004543","type":"dois","attributes":{"doi":"10.0253/tuprints-00004543","updated":"2019-12-12T10:58:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004540","type":"dois","attributes":{"doi":"10.0253/tuprints-00004540","updated":"2019-12-12T10:58:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004542","type":"dois","attributes":{"doi":"10.0253/tuprints-00004542","updated":"2019-12-12T10:58:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004539","type":"dois","attributes":{"doi":"10.0253/tuprints-00004539","updated":"2019-12-12T10:58:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004538","type":"dois","attributes":{"doi":"10.0253/tuprints-00004538","updated":"2019-12-12T10:58:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004535","type":"dois","attributes":{"doi":"10.0253/tuprints-00004535","updated":"2019-12-12T10:58:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004536","type":"dois","attributes":{"doi":"10.0253/tuprints-00004536","updated":"2019-12-12T10:58:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004533","type":"dois","attributes":{"doi":"10.0253/tuprints-00004533","updated":"2019-12-12T10:58:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004534","type":"dois","attributes":{"doi":"10.0253/tuprints-00004534","updated":"2019-12-12T10:58:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004531","type":"dois","attributes":{"doi":"10.0253/tuprints-00004531","updated":"2019-12-12T10:58:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004526","type":"dois","attributes":{"doi":"10.0253/tuprints-00004526","updated":"2019-12-12T10:58:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004512","type":"dois","attributes":{"doi":"10.0253/tuprints-00004512","updated":"2019-12-12T10:58:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004576","type":"dois","attributes":{"doi":"10.0253/tuprints-00004576","updated":"2019-12-12T10:58:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004546","type":"dois","attributes":{"doi":"10.0253/tuprints-00004546","updated":"2019-12-12T10:58:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004574","type":"dois","attributes":{"doi":"10.0253/tuprints-00004574","updated":"2019-12-12T10:58:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004575","type":"dois","attributes":{"doi":"10.0253/tuprints-00004575","updated":"2019-12-12T10:58:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004573","type":"dois","attributes":{"doi":"10.0253/tuprints-00004573","updated":"2019-12-12T10:58:24.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004572","type":"dois","attributes":{"doi":"10.0253/tuprints-00004572","updated":"2019-12-12T10:58:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004571","type":"dois","attributes":{"doi":"10.0253/tuprints-00004571","updated":"2019-12-12T10:58:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004569","type":"dois","attributes":{"doi":"10.0253/tuprints-00004569","updated":"2019-12-12T10:58:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004568","type":"dois","attributes":{"doi":"10.0253/tuprints-00004568","updated":"2019-12-12T10:58:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004566","type":"dois","attributes":{"doi":"10.0253/tuprints-00004566","updated":"2019-12-12T10:58:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004564","type":"dois","attributes":{"doi":"10.0253/tuprints-00004564","updated":"2019-12-12T10:58:20.000Z"},"relationships":{}},{"id":"10.4124/y35zb29x3n.1","type":"dois","attributes":{"doi":"10.4124/y35zb29x3n.1","updated":"2019-12-12T10:58:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004562","type":"dois","attributes":{"doi":"10.0253/tuprints-00004562","updated":"2019-12-12T10:58:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004559","type":"dois","attributes":{"doi":"10.0253/tuprints-00004559","updated":"2019-12-12T10:58:19.000Z"},"relationships":{}},{"id":"10.4124/y35zb29x3n","type":"dois","attributes":{"doi":"10.4124/y35zb29x3n","updated":"2019-12-12T10:58:18.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004558","type":"dois","attributes":{"doi":"10.0253/tuprints-00004558","updated":"2019-12-12T10:58:18.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004555","type":"dois","attributes":{"doi":"10.0253/tuprints-00004555","updated":"2019-12-12T10:58:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004554","type":"dois","attributes":{"doi":"10.0253/tuprints-00004554","updated":"2019-12-12T10:58:16.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004549","type":"dois","attributes":{"doi":"10.0253/tuprints-00004549","updated":"2019-12-12T10:58:15.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004548","type":"dois","attributes":{"doi":"10.0253/tuprints-00004548","updated":"2019-12-12T10:58:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004585","type":"dois","attributes":{"doi":"10.0253/tuprints-00004585","updated":"2019-12-12T10:58:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004547","type":"dois","attributes":{"doi":"10.0253/tuprints-00004547","updated":"2019-12-12T10:58:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004583","type":"dois","attributes":{"doi":"10.0253/tuprints-00004583","updated":"2019-12-12T10:58:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004584","type":"dois","attributes":{"doi":"10.0253/tuprints-00004584","updated":"2019-12-12T10:58:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004580","type":"dois","attributes":{"doi":"10.0253/tuprints-00004580","updated":"2019-12-12T10:58:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004582","type":"dois","attributes":{"doi":"10.0253/tuprints-00004582","updated":"2019-12-12T10:58:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004578","type":"dois","attributes":{"doi":"10.0253/tuprints-00004578","updated":"2019-12-12T10:58:10.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004577","type":"dois","attributes":{"doi":"10.0253/tuprints-00004577","updated":"2019-12-12T10:58:09.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004588","type":"dois","attributes":{"doi":"10.0253/tuprints-00004588","updated":"2019-12-12T10:58:09.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004653","type":"dois","attributes":{"doi":"10.0253/tuprints-00004653","updated":"2019-12-12T10:58:08.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004587","type":"dois","attributes":{"doi":"10.0253/tuprints-00004587","updated":"2019-12-12T10:58:08.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004652","type":"dois","attributes":{"doi":"10.0253/tuprints-00004652","updated":"2019-12-12T10:58:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004651","type":"dois","attributes":{"doi":"10.0253/tuprints-00004651","updated":"2019-12-12T10:58:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004649","type":"dois","attributes":{"doi":"10.0253/tuprints-00004649","updated":"2019-12-12T10:58:06.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004646","type":"dois","attributes":{"doi":"10.0253/tuprints-00004646","updated":"2019-12-12T10:58:05.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004644","type":"dois","attributes":{"doi":"10.0253/tuprints-00004644","updated":"2019-12-12T10:58:05.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004640","type":"dois","attributes":{"doi":"10.0253/tuprints-00004640","updated":"2019-12-12T10:58:04.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004642","type":"dois","attributes":{"doi":"10.0253/tuprints-00004642","updated":"2019-12-12T10:58:04.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004636","type":"dois","attributes":{"doi":"10.0253/tuprints-00004636","updated":"2019-12-12T10:58:03.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004637","type":"dois","attributes":{"doi":"10.0253/tuprints-00004637","updated":"2019-12-12T10:58:03.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004634","type":"dois","attributes":{"doi":"10.0253/tuprints-00004634","updated":"2019-12-12T10:58:02.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004631","type":"dois","attributes":{"doi":"10.0253/tuprints-00004631","updated":"2019-12-12T10:58:01.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004633","type":"dois","attributes":{"doi":"10.0253/tuprints-00004633","updated":"2019-12-12T10:58:01.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004630","type":"dois","attributes":{"doi":"10.0253/tuprints-00004630","updated":"2019-12-12T10:58:00.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004629","type":"dois","attributes":{"doi":"10.0253/tuprints-00004629","updated":"2019-12-12T10:57:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004623","type":"dois","attributes":{"doi":"10.0253/tuprints-00004623","updated":"2019-12-12T10:57:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004622","type":"dois","attributes":{"doi":"10.0253/tuprints-00004622","updated":"2019-12-12T10:57:58.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004619","type":"dois","attributes":{"doi":"10.0253/tuprints-00004619","updated":"2019-12-12T10:57:57.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004620","type":"dois","attributes":{"doi":"10.0253/tuprints-00004620","updated":"2019-12-12T10:57:57.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004618","type":"dois","attributes":{"doi":"10.0253/tuprints-00004618","updated":"2019-12-12T10:57:56.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004617","type":"dois","attributes":{"doi":"10.0253/tuprints-00004617","updated":"2019-12-12T10:57:56.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004616","type":"dois","attributes":{"doi":"10.0253/tuprints-00004616","updated":"2019-12-12T10:57:55.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004613","type":"dois","attributes":{"doi":"10.0253/tuprints-00004613","updated":"2019-12-12T10:57:54.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004614","type":"dois","attributes":{"doi":"10.0253/tuprints-00004614","updated":"2019-12-12T10:57:54.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004612","type":"dois","attributes":{"doi":"10.0253/tuprints-00004612","updated":"2019-12-12T10:57:53.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004609","type":"dois","attributes":{"doi":"10.0253/tuprints-00004609","updated":"2019-12-12T10:57:52.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004611","type":"dois","attributes":{"doi":"10.0253/tuprints-00004611","updated":"2019-12-12T10:57:52.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004608","type":"dois","attributes":{"doi":"10.0253/tuprints-00004608","updated":"2019-12-12T10:57:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004607","type":"dois","attributes":{"doi":"10.0253/tuprints-00004607","updated":"2019-12-12T10:57:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004606","type":"dois","attributes":{"doi":"10.0253/tuprints-00004606","updated":"2019-12-12T10:57:50.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004604","type":"dois","attributes":{"doi":"10.0253/tuprints-00004604","updated":"2019-12-12T10:57:49.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004603","type":"dois","attributes":{"doi":"10.0253/tuprints-00004603","updated":"2019-12-12T10:57:49.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004602","type":"dois","attributes":{"doi":"10.0253/tuprints-00004602","updated":"2019-12-12T10:57:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004600","type":"dois","attributes":{"doi":"10.0253/tuprints-00004600","updated":"2019-12-12T10:57:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004599","type":"dois","attributes":{"doi":"10.0253/tuprints-00004599","updated":"2019-12-12T10:57:47.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004595","type":"dois","attributes":{"doi":"10.0253/tuprints-00004595","updated":"2019-12-12T10:57:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004597","type":"dois","attributes":{"doi":"10.0253/tuprints-00004597","updated":"2019-12-12T10:57:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004594","type":"dois","attributes":{"doi":"10.0253/tuprints-00004594","updated":"2019-12-12T10:57:45.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004592","type":"dois","attributes":{"doi":"10.0253/tuprints-00004592","updated":"2019-12-12T10:57:44.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004593","type":"dois","attributes":{"doi":"10.0253/tuprints-00004593","updated":"2019-12-12T10:57:44.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004591","type":"dois","attributes":{"doi":"10.0253/tuprints-00004591","updated":"2019-12-12T10:57:43.000Z"},"relationships":{}},{"id":"10.4124/878fkcfdw8.1","type":"dois","attributes":{"doi":"10.4124/878fkcfdw8.1","updated":"2019-12-12T10:57:43.000Z"},"relationships":{}},{"id":"10.4124/878fkcfdw8","type":"dois","attributes":{"doi":"10.4124/878fkcfdw8","updated":"2019-12-12T10:57:43.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004654","type":"dois","attributes":{"doi":"10.0253/tuprints-00004654","updated":"2019-12-12T10:57:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004655","type":"dois","attributes":{"doi":"10.0253/tuprints-00004655","updated":"2019-12-12T10:57:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004658","type":"dois","attributes":{"doi":"10.0253/tuprints-00004658","updated":"2019-12-12T10:57:41.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004662","type":"dois","attributes":{"doi":"10.0253/tuprints-00004662","updated":"2019-12-12T10:57:41.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004664","type":"dois","attributes":{"doi":"10.0253/tuprints-00004664","updated":"2019-12-12T10:57:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004663","type":"dois","attributes":{"doi":"10.0253/tuprints-00004663","updated":"2019-12-12T10:57:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004690","type":"dois","attributes":{"doi":"10.0253/tuprints-00004690","updated":"2019-12-12T10:57:39.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004689","type":"dois","attributes":{"doi":"10.0253/tuprints-00004689","updated":"2019-12-12T10:57:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004688","type":"dois","attributes":{"doi":"10.0253/tuprints-00004688","updated":"2019-12-12T10:57:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004679","type":"dois","attributes":{"doi":"10.0253/tuprints-00004679","updated":"2019-12-12T10:57:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004686","type":"dois","attributes":{"doi":"10.0253/tuprints-00004686","updated":"2019-12-12T10:57:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004677","type":"dois","attributes":{"doi":"10.0253/tuprints-00004677","updated":"2019-12-12T10:57:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004678","type":"dois","attributes":{"doi":"10.0253/tuprints-00004678","updated":"2019-12-12T10:57:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004675","type":"dois","attributes":{"doi":"10.0253/tuprints-00004675","updated":"2019-12-12T10:57:35.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004676","type":"dois","attributes":{"doi":"10.0253/tuprints-00004676","updated":"2019-12-12T10:57:35.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004673","type":"dois","attributes":{"doi":"10.0253/tuprints-00004673","updated":"2019-12-12T10:57:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004670","type":"dois","attributes":{"doi":"10.0253/tuprints-00004670","updated":"2019-12-12T10:57:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004671","type":"dois","attributes":{"doi":"10.0253/tuprints-00004671","updated":"2019-12-12T10:57:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004668","type":"dois","attributes":{"doi":"10.0253/tuprints-00004668","updated":"2019-12-12T10:57:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004669","type":"dois","attributes":{"doi":"10.0253/tuprints-00004669","updated":"2019-12-12T10:57:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004666","type":"dois","attributes":{"doi":"10.0253/tuprints-00004666","updated":"2019-12-12T10:57:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004712","type":"dois","attributes":{"doi":"10.0253/tuprints-00004712","updated":"2019-12-12T10:57:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004691","type":"dois","attributes":{"doi":"10.0253/tuprints-00004691","updated":"2019-12-12T10:57:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004710","type":"dois","attributes":{"doi":"10.0253/tuprints-00004710","updated":"2019-12-12T10:57:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004711","type":"dois","attributes":{"doi":"10.0253/tuprints-00004711","updated":"2019-12-12T10:57:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004709","type":"dois","attributes":{"doi":"10.0253/tuprints-00004709","updated":"2019-12-12T10:57:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004705","type":"dois","attributes":{"doi":"10.0253/tuprints-00004705","updated":"2019-12-12T10:57:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004704","type":"dois","attributes":{"doi":"10.0253/tuprints-00004704","updated":"2019-12-12T10:57:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004703","type":"dois","attributes":{"doi":"10.0253/tuprints-00004703","updated":"2019-12-12T10:57:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004701","type":"dois","attributes":{"doi":"10.0253/tuprints-00004701","updated":"2019-12-12T10:57:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004702","type":"dois","attributes":{"doi":"10.0253/tuprints-00004702","updated":"2019-12-12T10:57:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004700","type":"dois","attributes":{"doi":"10.0253/tuprints-00004700","updated":"2019-12-12T10:57:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004699","type":"dois","attributes":{"doi":"10.0253/tuprints-00004699","updated":"2019-12-12T10:57:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004696","type":"dois","attributes":{"doi":"10.0253/tuprints-00004696","updated":"2019-12-12T10:57:24.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004695","type":"dois","attributes":{"doi":"10.0253/tuprints-00004695","updated":"2019-12-12T10:57:24.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004716","type":"dois","attributes":{"doi":"10.0253/tuprints-00004716","updated":"2019-12-12T10:57:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004693","type":"dois","attributes":{"doi":"10.0253/tuprints-00004693","updated":"2019-12-12T10:57:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004715","type":"dois","attributes":{"doi":"10.0253/tuprints-00004715","updated":"2019-12-12T10:57:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004714","type":"dois","attributes":{"doi":"10.0253/tuprints-00004714","updated":"2019-12-12T10:57:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004713","type":"dois","attributes":{"doi":"10.0253/tuprints-00004713","updated":"2019-12-12T10:57:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005172","type":"dois","attributes":{"doi":"10.0253/tuprints-00005172","updated":"2019-12-12T10:57:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004717","type":"dois","attributes":{"doi":"10.0253/tuprints-00004717","updated":"2019-12-12T10:57:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005170","type":"dois","attributes":{"doi":"10.0253/tuprints-00005170","updated":"2019-12-12T10:57:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005169","type":"dois","attributes":{"doi":"10.0253/tuprints-00005169","updated":"2019-12-12T10:57:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005166","type":"dois","attributes":{"doi":"10.0253/tuprints-00005166","updated":"2019-12-12T10:57:18.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005167","type":"dois","attributes":{"doi":"10.0253/tuprints-00005167","updated":"2019-12-12T10:57:18.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005163","type":"dois","attributes":{"doi":"10.0253/tuprints-00005163","updated":"2019-12-12T10:57:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005162","type":"dois","attributes":{"doi":"10.0253/tuprints-00005162","updated":"2019-12-12T10:57:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005157","type":"dois","attributes":{"doi":"10.0253/tuprints-00005157","updated":"2019-12-12T10:57:16.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005154","type":"dois","attributes":{"doi":"10.0253/tuprints-00005154","updated":"2019-12-12T10:57:16.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005151","type":"dois","attributes":{"doi":"10.0253/tuprints-00005151","updated":"2019-12-12T10:57:15.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005145","type":"dois","attributes":{"doi":"10.0253/tuprints-00005145","updated":"2019-12-12T10:57:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005148","type":"dois","attributes":{"doi":"10.0253/tuprints-00005148","updated":"2019-12-12T10:57:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005144","type":"dois","attributes":{"doi":"10.0253/tuprints-00005144","updated":"2019-12-12T10:57:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005139","type":"dois","attributes":{"doi":"10.0253/tuprints-00005139","updated":"2019-12-12T10:57:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005143","type":"dois","attributes":{"doi":"10.0253/tuprints-00005143","updated":"2019-12-12T10:57:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005138","type":"dois","attributes":{"doi":"10.0253/tuprints-00005138","updated":"2019-12-12T10:57:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005137","type":"dois","attributes":{"doi":"10.0253/tuprints-00005137","updated":"2019-12-12T10:57:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005134","type":"dois","attributes":{"doi":"10.0253/tuprints-00005134","updated":"2019-12-12T10:57:10.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005136","type":"dois","attributes":{"doi":"10.0253/tuprints-00005136","updated":"2019-12-12T10:57:10.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005133","type":"dois","attributes":{"doi":"10.0253/tuprints-00005133","updated":"2019-12-12T10:57:09.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005131","type":"dois","attributes":{"doi":"10.0253/tuprints-00005131","updated":"2019-12-12T10:57:08.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005129","type":"dois","attributes":{"doi":"10.0253/tuprints-00005129","updated":"2019-12-12T10:57:08.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005126","type":"dois","attributes":{"doi":"10.0253/tuprints-00005126","updated":"2019-12-12T10:57:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005127","type":"dois","attributes":{"doi":"10.0253/tuprints-00005127","updated":"2019-12-12T10:57:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005125","type":"dois","attributes":{"doi":"10.0253/tuprints-00005125","updated":"2019-12-12T10:57:06.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005032","type":"dois","attributes":{"doi":"10.0253/tuprints-00005032","updated":"2019-12-12T10:57:05.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005030","type":"dois","attributes":{"doi":"10.0253/tuprints-00005030","updated":"2019-12-12T10:57:04.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005031","type":"dois","attributes":{"doi":"10.0253/tuprints-00005031","updated":"2019-12-12T10:57:04.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005025","type":"dois","attributes":{"doi":"10.0253/tuprints-00005025","updated":"2019-12-12T10:57:03.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005028","type":"dois","attributes":{"doi":"10.0253/tuprints-00005028","updated":"2019-12-12T10:57:03.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005023","type":"dois","attributes":{"doi":"10.0253/tuprints-00005023","updated":"2019-12-12T10:57:02.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005024","type":"dois","attributes":{"doi":"10.0253/tuprints-00005024","updated":"2019-12-12T10:57:02.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005022","type":"dois","attributes":{"doi":"10.0253/tuprints-00005022","updated":"2019-12-12T10:57:01.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005015","type":"dois","attributes":{"doi":"10.0253/tuprints-00005015","updated":"2019-12-12T10:57:00.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005016","type":"dois","attributes":{"doi":"10.0253/tuprints-00005016","updated":"2019-12-12T10:57:00.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005012","type":"dois","attributes":{"doi":"10.0253/tuprints-00005012","updated":"2019-12-12T10:56:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005014","type":"dois","attributes":{"doi":"10.0253/tuprints-00005014","updated":"2019-12-12T10:56:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005011","type":"dois","attributes":{"doi":"10.0253/tuprints-00005011","updated":"2019-12-12T10:56:58.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005010","type":"dois","attributes":{"doi":"10.0253/tuprints-00005010","updated":"2019-12-12T10:56:58.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005008","type":"dois","attributes":{"doi":"10.0253/tuprints-00005008","updated":"2019-12-12T10:56:57.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005009","type":"dois","attributes":{"doi":"10.0253/tuprints-00005009","updated":"2019-12-12T10:56:57.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005006","type":"dois","attributes":{"doi":"10.0253/tuprints-00005006","updated":"2019-12-12T10:56:56.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005007","type":"dois","attributes":{"doi":"10.0253/tuprints-00005007","updated":"2019-12-12T10:56:56.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005003","type":"dois","attributes":{"doi":"10.0253/tuprints-00005003","updated":"2019-12-12T10:56:55.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005005","type":"dois","attributes":{"doi":"10.0253/tuprints-00005005","updated":"2019-12-12T10:56:55.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004996","type":"dois","attributes":{"doi":"10.0253/tuprints-00004996","updated":"2019-12-12T10:56:54.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004995","type":"dois","attributes":{"doi":"10.0253/tuprints-00004995","updated":"2019-12-12T10:56:53.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004994","type":"dois","attributes":{"doi":"10.0253/tuprints-00004994","updated":"2019-12-12T10:56:53.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004992","type":"dois","attributes":{"doi":"10.0253/tuprints-00004992","updated":"2019-12-12T10:56:52.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004993","type":"dois","attributes":{"doi":"10.0253/tuprints-00004993","updated":"2019-12-12T10:56:52.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004989","type":"dois","attributes":{"doi":"10.0253/tuprints-00004989","updated":"2019-12-12T10:56:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004991","type":"dois","attributes":{"doi":"10.0253/tuprints-00004991","updated":"2019-12-12T10:56:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004988","type":"dois","attributes":{"doi":"10.0253/tuprints-00004988","updated":"2019-12-12T10:56:50.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004981","type":"dois","attributes":{"doi":"10.0253/tuprints-00004981","updated":"2019-12-12T10:56:49.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004985","type":"dois","attributes":{"doi":"10.0253/tuprints-00004985","updated":"2019-12-12T10:56:49.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004973","type":"dois","attributes":{"doi":"10.0253/tuprints-00004973","updated":"2019-12-12T10:56:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004977","type":"dois","attributes":{"doi":"10.0253/tuprints-00004977","updated":"2019-12-12T10:56:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004972","type":"dois","attributes":{"doi":"10.0253/tuprints-00004972","updated":"2019-12-12T10:56:47.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004971","type":"dois","attributes":{"doi":"10.0253/tuprints-00004971","updated":"2019-12-12T10:56:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004970","type":"dois","attributes":{"doi":"10.0253/tuprints-00004970","updated":"2019-12-12T10:56:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004969","type":"dois","attributes":{"doi":"10.0253/tuprints-00004969","updated":"2019-12-12T10:56:45.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004968","type":"dois","attributes":{"doi":"10.0253/tuprints-00004968","updated":"2019-12-12T10:56:45.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004967","type":"dois","attributes":{"doi":"10.0253/tuprints-00004967","updated":"2019-12-12T10:56:44.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004963","type":"dois","attributes":{"doi":"10.0253/tuprints-00004963","updated":"2019-12-12T10:56:43.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004964","type":"dois","attributes":{"doi":"10.0253/tuprints-00004964","updated":"2019-12-12T10:56:43.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004961","type":"dois","attributes":{"doi":"10.0253/tuprints-00004961","updated":"2019-12-12T10:56:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004962","type":"dois","attributes":{"doi":"10.0253/tuprints-00004962","updated":"2019-12-12T10:56:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004960","type":"dois","attributes":{"doi":"10.0253/tuprints-00004960","updated":"2019-12-12T10:56:41.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004959","type":"dois","attributes":{"doi":"10.0253/tuprints-00004959","updated":"2019-12-12T10:56:41.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004955","type":"dois","attributes":{"doi":"10.0253/tuprints-00004955","updated":"2019-12-12T10:56:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004950","type":"dois","attributes":{"doi":"10.0253/tuprints-00004950","updated":"2019-12-12T10:56:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004948","type":"dois","attributes":{"doi":"10.0253/tuprints-00004948","updated":"2019-12-12T10:56:39.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004947","type":"dois","attributes":{"doi":"10.0253/tuprints-00004947","updated":"2019-12-12T10:56:39.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004940","type":"dois","attributes":{"doi":"10.0253/tuprints-00004940","updated":"2019-12-12T10:56:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004944","type":"dois","attributes":{"doi":"10.0253/tuprints-00004944","updated":"2019-12-12T10:56:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004938","type":"dois","attributes":{"doi":"10.0253/tuprints-00004938","updated":"2019-12-12T10:56:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004937","type":"dois","attributes":{"doi":"10.0253/tuprints-00004937","updated":"2019-12-12T10:56:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004934","type":"dois","attributes":{"doi":"10.0253/tuprints-00004934","updated":"2019-12-12T10:56:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004931","type":"dois","attributes":{"doi":"10.0253/tuprints-00004931","updated":"2019-12-12T10:56:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004930","type":"dois","attributes":{"doi":"10.0253/tuprints-00004930","updated":"2019-12-12T10:56:35.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004928","type":"dois","attributes":{"doi":"10.0253/tuprints-00004928","updated":"2019-12-12T10:56:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004929","type":"dois","attributes":{"doi":"10.0253/tuprints-00004929","updated":"2019-12-12T10:56:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004926","type":"dois","attributes":{"doi":"10.0253/tuprints-00004926","updated":"2019-12-12T10:56:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004927","type":"dois","attributes":{"doi":"10.0253/tuprints-00004927","updated":"2019-12-12T10:56:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004925","type":"dois","attributes":{"doi":"10.0253/tuprints-00004925","updated":"2019-12-12T10:56:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004924","type":"dois","attributes":{"doi":"10.0253/tuprints-00004924","updated":"2019-12-12T10:56:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004826","type":"dois","attributes":{"doi":"10.0253/tuprints-00004826","updated":"2019-12-12T10:56:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004824","type":"dois","attributes":{"doi":"10.0253/tuprints-00004824","updated":"2019-12-12T10:56:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004822","type":"dois","attributes":{"doi":"10.0253/tuprints-00004822","updated":"2019-12-12T10:56:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004823","type":"dois","attributes":{"doi":"10.0253/tuprints-00004823","updated":"2019-12-12T10:56:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004820","type":"dois","attributes":{"doi":"10.0253/tuprints-00004820","updated":"2019-12-12T10:56:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004821","type":"dois","attributes":{"doi":"10.0253/tuprints-00004821","updated":"2019-12-12T10:56:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004818","type":"dois","attributes":{"doi":"10.0253/tuprints-00004818","updated":"2019-12-12T10:56:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004819","type":"dois","attributes":{"doi":"10.0253/tuprints-00004819","updated":"2019-12-12T10:56:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004817","type":"dois","attributes":{"doi":"10.0253/tuprints-00004817","updated":"2019-12-12T10:56:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004816","type":"dois","attributes":{"doi":"10.0253/tuprints-00004816","updated":"2019-12-12T10:56:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004815","type":"dois","attributes":{"doi":"10.0253/tuprints-00004815","updated":"2019-12-12T10:56:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004814","type":"dois","attributes":{"doi":"10.0253/tuprints-00004814","updated":"2019-12-12T10:56:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004813","type":"dois","attributes":{"doi":"10.0253/tuprints-00004813","updated":"2019-12-12T10:56:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004812","type":"dois","attributes":{"doi":"10.0253/tuprints-00004812","updated":"2019-12-12T10:56:24.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004811","type":"dois","attributes":{"doi":"10.0253/tuprints-00004811","updated":"2019-12-12T10:56:24.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004810","type":"dois","attributes":{"doi":"10.0253/tuprints-00004810","updated":"2019-12-12T10:56:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004809","type":"dois","attributes":{"doi":"10.0253/tuprints-00004809","updated":"2019-12-12T10:56:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004807","type":"dois","attributes":{"doi":"10.0253/tuprints-00004807","updated":"2019-12-12T10:56:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004808","type":"dois","attributes":{"doi":"10.0253/tuprints-00004808","updated":"2019-12-12T10:56:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004806","type":"dois","attributes":{"doi":"10.0253/tuprints-00004806","updated":"2019-12-12T10:56:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004805","type":"dois","attributes":{"doi":"10.0253/tuprints-00004805","updated":"2019-12-12T10:56:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004803","type":"dois","attributes":{"doi":"10.0253/tuprints-00004803","updated":"2019-12-12T10:56:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004804","type":"dois","attributes":{"doi":"10.0253/tuprints-00004804","updated":"2019-12-12T10:56:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004801","type":"dois","attributes":{"doi":"10.0253/tuprints-00004801","updated":"2019-12-12T10:56:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004802","type":"dois","attributes":{"doi":"10.0253/tuprints-00004802","updated":"2019-12-12T10:56:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004799","type":"dois","attributes":{"doi":"10.0253/tuprints-00004799","updated":"2019-12-12T10:56:18.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004800","type":"dois","attributes":{"doi":"10.0253/tuprints-00004800","updated":"2019-12-12T10:56:18.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004798","type":"dois","attributes":{"doi":"10.0253/tuprints-00004798","updated":"2019-12-12T10:56:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004796","type":"dois","attributes":{"doi":"10.0253/tuprints-00004796","updated":"2019-12-12T10:56:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004794","type":"dois","attributes":{"doi":"10.0253/tuprints-00004794","updated":"2019-12-12T10:56:16.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004795","type":"dois","attributes":{"doi":"10.0253/tuprints-00004795","updated":"2019-12-12T10:56:16.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004792","type":"dois","attributes":{"doi":"10.0253/tuprints-00004792","updated":"2019-12-12T10:56:15.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004793","type":"dois","attributes":{"doi":"10.0253/tuprints-00004793","updated":"2019-12-12T10:56:15.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004791","type":"dois","attributes":{"doi":"10.0253/tuprints-00004791","updated":"2019-12-12T10:56:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004789","type":"dois","attributes":{"doi":"10.0253/tuprints-00004789","updated":"2019-12-12T10:56:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004787","type":"dois","attributes":{"doi":"10.0253/tuprints-00004787","updated":"2019-12-12T10:56:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004788","type":"dois","attributes":{"doi":"10.0253/tuprints-00004788","updated":"2019-12-12T10:56:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004785","type":"dois","attributes":{"doi":"10.0253/tuprints-00004785","updated":"2019-12-12T10:56:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004786","type":"dois","attributes":{"doi":"10.0253/tuprints-00004786","updated":"2019-12-12T10:56:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004784","type":"dois","attributes":{"doi":"10.0253/tuprints-00004784","updated":"2019-12-12T10:56:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004783","type":"dois","attributes":{"doi":"10.0253/tuprints-00004783","updated":"2019-12-12T10:56:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004781","type":"dois","attributes":{"doi":"10.0253/tuprints-00004781","updated":"2019-12-12T10:56:10.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004782","type":"dois","attributes":{"doi":"10.0253/tuprints-00004782","updated":"2019-12-12T10:56:10.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004780","type":"dois","attributes":{"doi":"10.0253/tuprints-00004780","updated":"2019-12-12T10:56:09.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004779","type":"dois","attributes":{"doi":"10.0253/tuprints-00004779","updated":"2019-12-12T10:56:09.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004777","type":"dois","attributes":{"doi":"10.0253/tuprints-00004777","updated":"2019-12-12T10:56:08.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004778","type":"dois","attributes":{"doi":"10.0253/tuprints-00004778","updated":"2019-12-12T10:56:08.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004776","type":"dois","attributes":{"doi":"10.0253/tuprints-00004776","updated":"2019-12-12T10:56:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004775","type":"dois","attributes":{"doi":"10.0253/tuprints-00004775","updated":"2019-12-12T10:56:07.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004774","type":"dois","attributes":{"doi":"10.0253/tuprints-00004774","updated":"2019-12-12T10:56:06.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004773","type":"dois","attributes":{"doi":"10.0253/tuprints-00004773","updated":"2019-12-12T10:56:05.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004772","type":"dois","attributes":{"doi":"10.0253/tuprints-00004772","updated":"2019-12-12T10:56:05.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004771","type":"dois","attributes":{"doi":"10.0253/tuprints-00004771","updated":"2019-12-12T10:56:04.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004770","type":"dois","attributes":{"doi":"10.0253/tuprints-00004770","updated":"2019-12-12T10:56:03.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004769","type":"dois","attributes":{"doi":"10.0253/tuprints-00004769","updated":"2019-12-12T10:56:03.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004767","type":"dois","attributes":{"doi":"10.0253/tuprints-00004767","updated":"2019-12-12T10:56:02.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004768","type":"dois","attributes":{"doi":"10.0253/tuprints-00004768","updated":"2019-12-12T10:56:02.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004766","type":"dois","attributes":{"doi":"10.0253/tuprints-00004766","updated":"2019-12-12T10:56:01.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004765","type":"dois","attributes":{"doi":"10.0253/tuprints-00004765","updated":"2019-12-12T10:56:01.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004764","type":"dois","attributes":{"doi":"10.0253/tuprints-00004764","updated":"2019-12-12T10:56:00.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004763","type":"dois","attributes":{"doi":"10.0253/tuprints-00004763","updated":"2019-12-12T10:55:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004761","type":"dois","attributes":{"doi":"10.0253/tuprints-00004761","updated":"2019-12-12T10:55:59.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004760","type":"dois","attributes":{"doi":"10.0253/tuprints-00004760","updated":"2019-12-12T10:55:58.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004759","type":"dois","attributes":{"doi":"10.0253/tuprints-00004759","updated":"2019-12-12T10:55:58.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004758","type":"dois","attributes":{"doi":"10.0253/tuprints-00004758","updated":"2019-12-12T10:55:57.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004756","type":"dois","attributes":{"doi":"10.0253/tuprints-00004756","updated":"2019-12-12T10:55:56.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004757","type":"dois","attributes":{"doi":"10.0253/tuprints-00004757","updated":"2019-12-12T10:55:56.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004754","type":"dois","attributes":{"doi":"10.0253/tuprints-00004754","updated":"2019-12-12T10:55:55.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004755","type":"dois","attributes":{"doi":"10.0253/tuprints-00004755","updated":"2019-12-12T10:55:55.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004753","type":"dois","attributes":{"doi":"10.0253/tuprints-00004753","updated":"2019-12-12T10:55:54.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004752","type":"dois","attributes":{"doi":"10.0253/tuprints-00004752","updated":"2019-12-12T10:55:54.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004751","type":"dois","attributes":{"doi":"10.0253/tuprints-00004751","updated":"2019-12-12T10:55:53.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004749","type":"dois","attributes":{"doi":"10.0253/tuprints-00004749","updated":"2019-12-12T10:55:52.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004750","type":"dois","attributes":{"doi":"10.0253/tuprints-00004750","updated":"2019-12-12T10:55:52.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004747","type":"dois","attributes":{"doi":"10.0253/tuprints-00004747","updated":"2019-12-12T10:55:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004748","type":"dois","attributes":{"doi":"10.0253/tuprints-00004748","updated":"2019-12-12T10:55:51.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004746","type":"dois","attributes":{"doi":"10.0253/tuprints-00004746","updated":"2019-12-12T10:55:50.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004745","type":"dois","attributes":{"doi":"10.0253/tuprints-00004745","updated":"2019-12-12T10:55:49.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004744","type":"dois","attributes":{"doi":"10.0253/tuprints-00004744","updated":"2019-12-12T10:55:49.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004742","type":"dois","attributes":{"doi":"10.0253/tuprints-00004742","updated":"2019-12-12T10:55:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004743","type":"dois","attributes":{"doi":"10.0253/tuprints-00004743","updated":"2019-12-12T10:55:48.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004740","type":"dois","attributes":{"doi":"10.0253/tuprints-00004740","updated":"2019-12-12T10:55:47.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004741","type":"dois","attributes":{"doi":"10.0253/tuprints-00004741","updated":"2019-12-12T10:55:47.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004738","type":"dois","attributes":{"doi":"10.0253/tuprints-00004738","updated":"2019-12-12T10:55:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004739","type":"dois","attributes":{"doi":"10.0253/tuprints-00004739","updated":"2019-12-12T10:55:46.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004737","type":"dois","attributes":{"doi":"10.0253/tuprints-00004737","updated":"2019-12-12T10:55:45.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004736","type":"dois","attributes":{"doi":"10.0253/tuprints-00004736","updated":"2019-12-12T10:55:44.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004735","type":"dois","attributes":{"doi":"10.0253/tuprints-00004735","updated":"2019-12-12T10:55:44.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004733","type":"dois","attributes":{"doi":"10.0253/tuprints-00004733","updated":"2019-12-12T10:55:43.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004734","type":"dois","attributes":{"doi":"10.0253/tuprints-00004734","updated":"2019-12-12T10:55:43.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004732","type":"dois","attributes":{"doi":"10.0253/tuprints-00004732","updated":"2019-12-12T10:55:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004731","type":"dois","attributes":{"doi":"10.0253/tuprints-00004731","updated":"2019-12-12T10:55:42.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004730","type":"dois","attributes":{"doi":"10.0253/tuprints-00004730","updated":"2019-12-12T10:55:41.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004729","type":"dois","attributes":{"doi":"10.0253/tuprints-00004729","updated":"2019-12-12T10:55:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004728","type":"dois","attributes":{"doi":"10.0253/tuprints-00004728","updated":"2019-12-12T10:55:40.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004726","type":"dois","attributes":{"doi":"10.0253/tuprints-00004726","updated":"2019-12-12T10:55:39.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004727","type":"dois","attributes":{"doi":"10.0253/tuprints-00004727","updated":"2019-12-12T10:55:39.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004724","type":"dois","attributes":{"doi":"10.0253/tuprints-00004724","updated":"2019-12-12T10:55:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004725","type":"dois","attributes":{"doi":"10.0253/tuprints-00004725","updated":"2019-12-12T10:55:38.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004723","type":"dois","attributes":{"doi":"10.0253/tuprints-00004723","updated":"2019-12-12T10:55:37.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004721","type":"dois","attributes":{"doi":"10.0253/tuprints-00004721","updated":"2019-12-12T10:55:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004722","type":"dois","attributes":{"doi":"10.0253/tuprints-00004722","updated":"2019-12-12T10:55:36.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004720","type":"dois","attributes":{"doi":"10.0253/tuprints-00004720","updated":"2019-12-12T10:55:35.000Z"},"relationships":{}},{"id":"10.5282/ubm/digi.2097","type":"dois","attributes":{"doi":"10.5282/ubm/digi.2097","updated":"2019-12-12T10:55:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004719","type":"dois","attributes":{"doi":"10.0253/tuprints-00004719","updated":"2019-12-12T10:55:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00004718","type":"dois","attributes":{"doi":"10.0253/tuprints-00004718","updated":"2019-12-12T10:55:34.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005173","type":"dois","attributes":{"doi":"10.0253/tuprints-00005173","updated":"2019-12-12T10:55:33.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005176","type":"dois","attributes":{"doi":"10.0253/tuprints-00005176","updated":"2019-12-12T10:55:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005180","type":"dois","attributes":{"doi":"10.0253/tuprints-00005180","updated":"2019-12-12T10:55:32.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005186","type":"dois","attributes":{"doi":"10.0253/tuprints-00005186","updated":"2019-12-12T10:55:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005188","type":"dois","attributes":{"doi":"10.0253/tuprints-00005188","updated":"2019-12-12T10:55:31.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005184","type":"dois","attributes":{"doi":"10.0253/tuprints-00005184","updated":"2019-12-12T10:55:30.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005181","type":"dois","attributes":{"doi":"10.0253/tuprints-00005181","updated":"2019-12-12T10:55:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005191","type":"dois","attributes":{"doi":"10.0253/tuprints-00005191","updated":"2019-12-12T10:55:29.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005192","type":"dois","attributes":{"doi":"10.0253/tuprints-00005192","updated":"2019-12-12T10:55:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005193","type":"dois","attributes":{"doi":"10.0253/tuprints-00005193","updated":"2019-12-12T10:55:28.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005194","type":"dois","attributes":{"doi":"10.0253/tuprints-00005194","updated":"2019-12-12T10:55:27.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005201","type":"dois","attributes":{"doi":"10.0253/tuprints-00005201","updated":"2019-12-12T10:55:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005200","type":"dois","attributes":{"doi":"10.0253/tuprints-00005200","updated":"2019-12-12T10:55:26.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005202","type":"dois","attributes":{"doi":"10.0253/tuprints-00005202","updated":"2019-12-12T10:55:25.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005207","type":"dois","attributes":{"doi":"10.0253/tuprints-00005207","updated":"2019-12-12T10:55:24.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005204","type":"dois","attributes":{"doi":"10.0253/tuprints-00005204","updated":"2019-12-12T10:55:24.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005205","type":"dois","attributes":{"doi":"10.0253/tuprints-00005205","updated":"2019-12-12T10:55:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005206","type":"dois","attributes":{"doi":"10.0253/tuprints-00005206","updated":"2019-12-12T10:55:23.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005211","type":"dois","attributes":{"doi":"10.0253/tuprints-00005211","updated":"2019-12-12T10:55:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005209","type":"dois","attributes":{"doi":"10.0253/tuprints-00005209","updated":"2019-12-12T10:55:22.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005214","type":"dois","attributes":{"doi":"10.0253/tuprints-00005214","updated":"2019-12-12T10:55:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005213","type":"dois","attributes":{"doi":"10.0253/tuprints-00005213","updated":"2019-12-12T10:55:21.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005221","type":"dois","attributes":{"doi":"10.0253/tuprints-00005221","updated":"2019-12-12T10:55:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005212","type":"dois","attributes":{"doi":"10.0253/tuprints-00005212","updated":"2019-12-12T10:55:20.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005219","type":"dois","attributes":{"doi":"10.0253/tuprints-00005219","updated":"2019-12-12T10:55:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005217","type":"dois","attributes":{"doi":"10.0253/tuprints-00005217","updated":"2019-12-12T10:55:19.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005216","type":"dois","attributes":{"doi":"10.0253/tuprints-00005216","updated":"2019-12-12T10:55:18.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005244","type":"dois","attributes":{"doi":"10.0253/tuprints-00005244","updated":"2019-12-12T10:55:18.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005238","type":"dois","attributes":{"doi":"10.0253/tuprints-00005238","updated":"2019-12-12T10:55:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005241","type":"dois","attributes":{"doi":"10.0253/tuprints-00005241","updated":"2019-12-12T10:55:17.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005236","type":"dois","attributes":{"doi":"10.0253/tuprints-00005236","updated":"2019-12-12T10:55:16.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005235","type":"dois","attributes":{"doi":"10.0253/tuprints-00005235","updated":"2019-12-12T10:55:16.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005234","type":"dois","attributes":{"doi":"10.0253/tuprints-00005234","updated":"2019-12-12T10:55:15.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005233","type":"dois","attributes":{"doi":"10.0253/tuprints-00005233","updated":"2019-12-12T10:55:15.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005229","type":"dois","attributes":{"doi":"10.0253/tuprints-00005229","updated":"2019-12-12T10:55:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005230","type":"dois","attributes":{"doi":"10.0253/tuprints-00005230","updated":"2019-12-12T10:55:14.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005225","type":"dois","attributes":{"doi":"10.0253/tuprints-00005225","updated":"2019-12-12T10:55:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005226","type":"dois","attributes":{"doi":"10.0253/tuprints-00005226","updated":"2019-12-12T10:55:13.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005222","type":"dois","attributes":{"doi":"10.0253/tuprints-00005222","updated":"2019-12-12T10:55:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005224","type":"dois","attributes":{"doi":"10.0253/tuprints-00005224","updated":"2019-12-12T10:55:12.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005245","type":"dois","attributes":{"doi":"10.0253/tuprints-00005245","updated":"2019-12-12T10:55:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005253","type":"dois","attributes":{"doi":"10.0253/tuprints-00005253","updated":"2019-12-12T10:55:11.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005252","type":"dois","attributes":{"doi":"10.0253/tuprints-00005252","updated":"2019-12-12T10:55:10.000Z"},"relationships":{}},{"id":"10.0253/tuprints-00005251","type":"dois","attributes":{"doi":"10.0253/tuprints-00005251","updated":"2019-12-12T10:55:10.000Z"},"relationships":{}},{"id":"10.5282/ubm/digi.2095","type":"dois","attributes":{"doi":"10.5282/ubm/digi.2095","updated":"2019-12-12T10:46:46.000Z"},"relationships":{}},{"id":"10.0135/kluedo/5769","type":"dois","attributes":{"doi":"10.0135/kluedo/5769","updated":"2019-12-12T10:44:03.000Z"},"relationships":{}},{"id":"10.5282/ubm/digi.2094","type":"dois","attributes":{"doi":"10.5282/ubm/digi.2094","updated":"2019-12-12T10:43:52.000Z"},"relationships":{}},{"id":"10.23729/1af2696c-7d40-46ee-94d1-2818b947258d","type":"dois","attributes":{"doi":"10.23729/1af2696c-7d40-46ee-94d1-2818b947258d","updated":"2019-12-12T10:35:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657738.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657738.v1","updated":"2019-12-12T10:18:37.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657738","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657738","updated":"2019-12-12T10:18:37.000Z"},"relationships":{}},{"id":"10.1234/52rr9b786p","type":"dois","attributes":{"doi":"10.1234/52rr9b786p","updated":"2019-12-12T10:18:20.000Z"},"relationships":{}},{"id":"10.1234/52rr9b786p.2","type":"dois","attributes":{"doi":"10.1234/52rr9b786p.2","updated":"2019-12-12T10:18:20.000Z"},"relationships":{}},{"id":"10.1234/52rr9b786p.1","type":"dois","attributes":{"doi":"10.1234/52rr9b786p.1","updated":"2019-12-12T10:18:17.000Z"},"relationships":{}},{"id":"10.1234/sck3643yr3.2","type":"dois","attributes":{"doi":"10.1234/sck3643yr3.2","updated":"2019-12-12T10:17:37.000Z"},"relationships":{}},{"id":"10.1234/sck3643yr3","type":"dois","attributes":{"doi":"10.1234/sck3643yr3","updated":"2019-12-12T10:17:37.000Z"},"relationships":{}},{"id":"10.1234/sck3643yr3.1","type":"dois","attributes":{"doi":"10.1234/sck3643yr3.1","updated":"2019-12-12T10:17:34.000Z"},"relationships":{}},{"id":"10.1234/4rtfcs55y5","type":"dois","attributes":{"doi":"10.1234/4rtfcs55y5","updated":"2019-12-12T10:16:26.000Z"},"relationships":{}},{"id":"10.1234/4rtfcs55y5.1","type":"dois","attributes":{"doi":"10.1234/4rtfcs55y5.1","updated":"2019-12-12T10:16:26.000Z"},"relationships":{}},{"id":"10.1234/k7jf6zv3rn.2","type":"dois","attributes":{"doi":"10.1234/k7jf6zv3rn.2","updated":"2019-12-12T10:15:11.000Z"},"relationships":{}},{"id":"10.1234/k7jf6zv3rn","type":"dois","attributes":{"doi":"10.1234/k7jf6zv3rn","updated":"2019-12-12T10:15:11.000Z"},"relationships":{}},{"id":"10.1234/k7jf6zv3rn.1","type":"dois","attributes":{"doi":"10.1234/k7jf6zv3rn.1","updated":"2019-12-12T10:15:10.000Z"},"relationships":{}},{"id":"10.1234/ttr5pd564b","type":"dois","attributes":{"doi":"10.1234/ttr5pd564b","updated":"2019-12-12T10:15:06.000Z"},"relationships":{}},{"id":"10.1234/ttr5pd564b.1","type":"dois","attributes":{"doi":"10.1234/ttr5pd564b.1","updated":"2019-12-12T10:15:06.000Z"},"relationships":{}},{"id":"10.1234/tmf3fzx96w.1","type":"dois","attributes":{"doi":"10.1234/tmf3fzx96w.1","updated":"2019-12-12T10:15:02.000Z"},"relationships":{}},{"id":"10.1234/tmf3fzx96w","type":"dois","attributes":{"doi":"10.1234/tmf3fzx96w","updated":"2019-12-12T10:15:01.000Z"},"relationships":{}},{"id":"10.1234/x8ndn356j2","type":"dois","attributes":{"doi":"10.1234/x8ndn356j2","updated":"2019-12-12T10:13:37.000Z"},"relationships":{}},{"id":"10.1234/x8ndn356j2.1","type":"dois","attributes":{"doi":"10.1234/x8ndn356j2.1","updated":"2019-12-12T10:13:37.000Z"},"relationships":{}},{"id":"10.1234/db869f9st3","type":"dois","attributes":{"doi":"10.1234/db869f9st3","updated":"2019-12-12T10:13:37.000Z"},"relationships":{}},{"id":"10.1234/db869f9st3.1","type":"dois","attributes":{"doi":"10.1234/db869f9st3.1","updated":"2019-12-12T10:13:37.000Z"},"relationships":{}},{"id":"10.1234/fwnvb93css","type":"dois","attributes":{"doi":"10.1234/fwnvb93css","updated":"2019-12-12T10:13:31.000Z"},"relationships":{}},{"id":"10.1234/fwnvb93css.2","type":"dois","attributes":{"doi":"10.1234/fwnvb93css.2","updated":"2019-12-12T10:13:31.000Z"},"relationships":{}},{"id":"10.1234/fwnvb93css.1","type":"dois","attributes":{"doi":"10.1234/fwnvb93css.1","updated":"2019-12-12T10:13:29.000Z"},"relationships":{}},{"id":"10.1234/y9vtnjng7f","type":"dois","attributes":{"doi":"10.1234/y9vtnjng7f","updated":"2019-12-12T10:13:26.000Z"},"relationships":{}},{"id":"10.1234/y9vtnjng7f.1","type":"dois","attributes":{"doi":"10.1234/y9vtnjng7f.1","updated":"2019-12-12T10:13:26.000Z"},"relationships":{}},{"id":"10.1234/km6372g6j8.1","type":"dois","attributes":{"doi":"10.1234/km6372g6j8.1","updated":"2019-12-12T10:13:24.000Z"},"relationships":{}},{"id":"10.1234/km6372g6j8","type":"dois","attributes":{"doi":"10.1234/km6372g6j8","updated":"2019-12-12T10:13:24.000Z"},"relationships":{}},{"id":"10.1234/f5kj9ccvr5","type":"dois","attributes":{"doi":"10.1234/f5kj9ccvr5","updated":"2019-12-12T10:13:21.000Z"},"relationships":{}},{"id":"10.1234/f5kj9ccvr5.1","type":"dois","attributes":{"doi":"10.1234/f5kj9ccvr5.1","updated":"2019-12-12T10:13:21.000Z"},"relationships":{}},{"id":"10.1234/cyv2t96836.2","type":"dois","attributes":{"doi":"10.1234/cyv2t96836.2","updated":"2019-12-12T10:11:51.000Z"},"relationships":{}},{"id":"10.1234/cyv2t96836","type":"dois","attributes":{"doi":"10.1234/cyv2t96836","updated":"2019-12-12T10:11:50.000Z"},"relationships":{}},{"id":"10.1234/cyv2t96836.1","type":"dois","attributes":{"doi":"10.1234/cyv2t96836.1","updated":"2019-12-12T10:11:49.000Z"},"relationships":{}},{"id":"10.1234/k848w5x3hw.1","type":"dois","attributes":{"doi":"10.1234/k848w5x3hw.1","updated":"2019-12-12T10:11:45.000Z"},"relationships":{}},{"id":"10.1234/k848w5x3hw","type":"dois","attributes":{"doi":"10.1234/k848w5x3hw","updated":"2019-12-12T10:11:45.000Z"},"relationships":{}},{"id":"10.1234/j2yjhxdkfk.1","type":"dois","attributes":{"doi":"10.1234/j2yjhxdkfk.1","updated":"2019-12-12T10:10:06.000Z"},"relationships":{}},{"id":"10.1234/j2yjhxdkfk","type":"dois","attributes":{"doi":"10.1234/j2yjhxdkfk","updated":"2019-12-12T10:10:04.000Z"},"relationships":{}},{"id":"10.4124/f9z7y4bpvf.1","type":"dois","attributes":{"doi":"10.4124/f9z7y4bpvf.1","updated":"2019-12-12T10:08:23.000Z"},"relationships":{}},{"id":"10.4124/f9z7y4bpvf","type":"dois","attributes":{"doi":"10.4124/f9z7y4bpvf","updated":"2019-12-12T10:08:22.000Z"},"relationships":{}},{"id":"10.4124/xvvgb4ywcj","type":"dois","attributes":{"doi":"10.4124/xvvgb4ywcj","updated":"2019-12-12T10:07:45.000Z"},"relationships":{}},{"id":"10.4124/xvvgb4ywcj.1","type":"dois","attributes":{"doi":"10.4124/xvvgb4ywcj.1","updated":"2019-12-12T10:07:45.000Z"},"relationships":{}},{"id":"10.70126/3xr7-zr06","type":"dois","attributes":{"doi":"10.70126/3xr7-zr06","updated":"2019-12-12T10:05:59.000Z"},"relationships":{}},{"id":"10.4124/853c9k2wvn.1","type":"dois","attributes":{"doi":"10.4124/853c9k2wvn.1","updated":"2019-12-12T09:44:51.000Z"},"relationships":{}},{"id":"10.21359/fk2/oo5fbd","type":"dois","attributes":{"doi":"10.21359/fk2/oo5fbd","updated":"2019-12-12T09:36:31.000Z"},"relationships":{}},{"id":"10.21359/fk2/xitelw","type":"dois","attributes":{"doi":"10.21359/fk2/xitelw","updated":"2019-12-12T09:34:55.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657724","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657724","updated":"2019-12-12T09:23:46.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657724.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657724.v1","updated":"2019-12-12T09:23:46.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794104","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794104","updated":"2019-12-12T06:41:10.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794104.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794104.v1","updated":"2019-12-12T06:41:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657672.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657672.v1","updated":"2019-12-12T06:38:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657672","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657672","updated":"2019-12-12T06:38:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794102","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794102","updated":"2019-12-12T06:36:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794102.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794102.v1","updated":"2019-12-12T06:36:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657670.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657670.v1","updated":"2019-12-12T06:35:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657670","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657670","updated":"2019-12-12T06:35:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794100","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794100","updated":"2019-12-12T06:34:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794100.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794100.v1","updated":"2019-12-12T06:34:50.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657668","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657668","updated":"2019-12-12T06:33:48.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657668.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657668.v1","updated":"2019-12-12T06:33:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657666","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657666","updated":"2019-12-12T06:32:29.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657666.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657666.v1","updated":"2019-12-12T06:32:29.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657664.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657664.v1","updated":"2019-12-12T06:28:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657664","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657664","updated":"2019-12-12T06:28:40.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657662","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657662","updated":"2019-12-12T06:28:22.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657662.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657662.v1","updated":"2019-12-12T06:28:22.000Z"},"relationships":{}},{"id":"10.33593/morressier.5ccac616cc2d79d348734c09","type":"dois","attributes":{"doi":"10.33593/morressier.5ccac616cc2d79d348734c09","updated":"2019-12-12T06:13:39.000Z"},"relationships":{}},{"id":"10.0311/fk2/9dbe9958121fd9f4aea057c63e70dbb9","type":"dois","attributes":{"doi":"10.0311/fk2/9dbe9958121fd9f4aea057c63e70dbb9","updated":"2019-12-12T05:41:49.000Z"},"relationships":{}},{"id":"10.70118/00001176.0","type":"dois","attributes":{"doi":"10.70118/00001176.0","updated":"2019-12-12T05:24:23.000Z"},"relationships":{}},{"id":"10.70118/00001176.1","type":"dois","attributes":{"doi":"10.70118/00001176.1","updated":"2019-12-12T05:24:23.000Z"},"relationships":{}},{"id":"10.70118/00001608","type":"dois","attributes":{"doi":"10.70118/00001608","updated":"2019-12-12T05:24:03.000Z"},"relationships":{}},{"id":"10.70118/00001607","type":"dois","attributes":{"doi":"10.70118/00001607","updated":"2019-12-12T05:24:02.000Z"},"relationships":{}},{"id":"10.70118/00001605","type":"dois","attributes":{"doi":"10.70118/00001605","updated":"2019-12-12T04:32:22.000Z"},"relationships":{}},{"id":"10.70118/00001602","type":"dois","attributes":{"doi":"10.70118/00001602","updated":"2019-12-12T04:14:57.000Z"},"relationships":{}},{"id":"10.70118/00001604","type":"dois","attributes":{"doi":"10.70118/00001604","updated":"2019-12-12T04:13:56.000Z"},"relationships":{}},{"id":"10.70118/00001603","type":"dois","attributes":{"doi":"10.70118/00001603","updated":"2019-12-12T04:13:55.000Z"},"relationships":{}},{"id":"10.70118/00001601","type":"dois","attributes":{"doi":"10.70118/00001601","updated":"2019-12-12T04:02:20.000Z"},"relationships":{}},{"id":"10.70112/obfgp9","type":"dois","attributes":{"doi":"10.70112/obfgp9","updated":"2019-12-12T02:33:45.000Z"},"relationships":{}},{"id":"10.70112/kwavz9","type":"dois","attributes":{"doi":"10.70112/kwavz9","updated":"2019-12-12T02:33:38.000Z"},"relationships":{}},{"id":"10.70112/r7jqmd","type":"dois","attributes":{"doi":"10.70112/r7jqmd","updated":"2019-12-12T02:33:30.000Z"},"relationships":{}},{"id":"10.70112/exn2dn","type":"dois","attributes":{"doi":"10.70112/exn2dn","updated":"2019-12-12T02:33:23.000Z"},"relationships":{}},{"id":"10.70112/1kebul","type":"dois","attributes":{"doi":"10.70112/1kebul","updated":"2019-12-12T02:33:16.000Z"},"relationships":{}},{"id":"10.70112/osbbcj","type":"dois","attributes":{"doi":"10.70112/osbbcj","updated":"2019-12-12T02:33:09.000Z"},"relationships":{}},{"id":"10.70112/c3kehg","type":"dois","attributes":{"doi":"10.70112/c3kehg","updated":"2019-12-12T02:33:02.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657606","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657606","updated":"2019-12-12T02:32:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657606.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657606.v1","updated":"2019-12-12T02:32:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657600","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657600","updated":"2019-12-12T02:31:26.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657600.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657600.v1","updated":"2019-12-12T02:31:26.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657594.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657594.v1","updated":"2019-12-12T02:29:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657594","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657594","updated":"2019-12-12T02:29:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657592.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657592.v1","updated":"2019-12-12T02:28:17.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657592","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657592","updated":"2019-12-12T02:28:17.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657588","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657588","updated":"2019-12-12T02:27:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657588.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657588.v1","updated":"2019-12-12T02:27:36.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657586","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657586","updated":"2019-12-12T02:27:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657586.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657586.v1","updated":"2019-12-12T02:27:32.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657582.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657582.v1","updated":"2019-12-12T02:25:53.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657582","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657582","updated":"2019-12-12T02:25:53.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657584.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657584.v1","updated":"2019-12-12T02:25:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657584","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657584","updated":"2019-12-12T02:25:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657580","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657580","updated":"2019-12-12T02:25:51.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657580.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657580.v1","updated":"2019-12-12T02:25:51.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657576","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657576","updated":"2019-12-12T02:25:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657576.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657576.v1","updated":"2019-12-12T02:25:47.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657572","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657572","updated":"2019-12-12T02:25:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657572.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657572.v1","updated":"2019-12-12T02:25:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657564.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657564.v1","updated":"2019-12-12T02:24:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657564","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657564","updated":"2019-12-12T02:24:09.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657560","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657560","updated":"2019-12-12T02:23:24.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657560.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657560.v1","updated":"2019-12-12T02:23:24.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794086.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794086.v1","updated":"2019-12-12T02:23:07.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657554","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657554","updated":"2019-12-12T02:23:00.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657554.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657554.v1","updated":"2019-12-12T02:23:00.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657534.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657534.v1","updated":"2019-12-12T02:22:56.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657534","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657534","updated":"2019-12-12T02:22:55.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657558","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657558","updated":"2019-12-12T02:22:17.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657558.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657558.v1","updated":"2019-12-12T02:22:16.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657556","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657556","updated":"2019-12-12T02:22:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657556.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657556.v1","updated":"2019-12-12T02:22:08.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657552.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657552.v1","updated":"2019-12-12T02:21:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657552","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657552","updated":"2019-12-12T02:21:52.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657544.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657544.v1","updated":"2019-12-12T02:21:26.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657544","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657544","updated":"2019-12-12T02:21:26.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657542","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657542","updated":"2019-12-12T02:21:18.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657542.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657542.v1","updated":"2019-12-12T02:21:18.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657530","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657530","updated":"2019-12-12T02:21:11.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657530.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657530.v1","updated":"2019-12-12T02:21:11.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657540","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657540","updated":"2019-12-12T02:21:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657540.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657540.v1","updated":"2019-12-12T02:21:06.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657538.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657538.v1","updated":"2019-12-12T02:21:01.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657538","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657538","updated":"2019-12-12T02:21:01.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657536","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657536","updated":"2019-12-12T02:20:59.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657536.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657536.v1","updated":"2019-12-12T02:20:58.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657532","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657532","updated":"2019-12-12T02:20:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657532.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657532.v1","updated":"2019-12-12T02:20:42.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657526","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657526","updated":"2019-12-12T02:17:37.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657526.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657526.v1","updated":"2019-12-12T02:17:37.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794094.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794094.v1","updated":"2019-12-12T02:14:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.c.2794094","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794094","updated":"2019-12-12T02:14:49.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657516","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657516","updated":"2019-12-12T02:14:48.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657516.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657516.v1","updated":"2019-12-12T02:14:48.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657512.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657512.v1","updated":"2019-12-12T02:12:58.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657512","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657512","updated":"2019-12-12T02:12:58.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657500","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657500","updated":"2019-12-12T02:11:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657500.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657500.v1","updated":"2019-12-12T02:11:21.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657498.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657498.v1","updated":"2019-12-12T02:11:00.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657498","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657498","updated":"2019-12-12T02:11:00.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657496","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657496","updated":"2019-12-12T02:10:59.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657496.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657496.v1","updated":"2019-12-12T02:10:59.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657494","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657494","updated":"2019-12-12T02:10:25.000Z"},"relationships":{}},{"id":"10.0166/fk2.stagefigshare.6657494.v1","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.6657494.v1","updated":"2019-12-12T02:10:25.000Z"},"relationships":{}}],"meta":{"total":271419,"scroll-id":"DnF1ZXJ5VGhlbkZldGNoBQAAAAAAQ-0-FmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAEPtPxZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhRAAAAAABD7UAWbFFhUy1BeGRSd2VkTWczN2lTNmI4UQAAAAAAQ-1BFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAEPtQhZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhR"},"links":{"self":"https://api.test.datacite.org/dois?exclude-registration-agencies=true&fields%5Bdois%5D=doi%2Cupdated&page%5Bscroll%5D=7m&page%5Bsize%5D=1000","next":"https://api.test.datacite.org/dois?page%5Bscroll%5D=7m&page%5Bsize%5D=1000&scroll-id=DnF1ZXJ5VGhlbkZldGNoBQAAAAAAQ-0-FmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAEPtPxZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhRAAAAAABD7UAWbFFhUy1BeGRSd2VkTWczN2lTNmI4UQAAAAAAQ-1BFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAEPtQhZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhR"}}'
46
46
  http_version:
47
- recorded_at: Thu, 12 Dec 2019 09:06:28 GMT
47
+ recorded_at: Thu, 12 Dec 2019 11:02:57 GMT
48
48
  recorded_with: VCR 3.0.3
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: https://api.test.datacite.org/dois?fields%5Bdois%5D=doi,updated&page%5Bscroll%5D=7m&page%5Bsize%5D=1
5
+ uri: https://api.test.datacite.org/dois?exclude-registration-agencies=true&fields%5Bdois%5D=doi,updated&page%5Bscroll%5D=7m&page%5Bsize%5D=1
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -17,7 +17,7 @@ http_interactions:
17
17
  message: OK
18
18
  headers:
19
19
  Date:
20
- - Thu, 12 Dec 2019 09:06:36 GMT
20
+ - Thu, 12 Dec 2019 11:02:37 GMT
21
21
  Content-Type:
22
22
  - application/json; charset=utf-8
23
23
  Connection:
@@ -31,18 +31,18 @@ http_interactions:
31
31
  Vary:
32
32
  - Accept-Encoding, Origin
33
33
  X-Request-Id:
34
- - fcec311e-00c5-48ef-8b92-d6e1468a2550
34
+ - 64f44f76-3eec-4359-9e16-ffc10a5de258
35
35
  Etag:
36
- - W/"ea0b7e2bc42fcf4af625bb971571e5ac"
36
+ - W/"ac234645bd6eba83ff40b03c286651c5"
37
37
  X-Runtime:
38
- - '1.223651'
38
+ - '7.529971'
39
39
  X-Powered-By:
40
40
  - Phusion Passenger 6.0.4
41
41
  Server:
42
42
  - nginx/1.17.3 + Phusion Passenger 6.0.4
43
43
  body:
44
44
  encoding: ASCII-8BIT
45
- string: '{"data":[{"id":"10.0166/fk2.stagefigshare.c.2794104","type":"dois","attributes":{"doi":"10.0166/fk2.stagefigshare.c.2794104","updated":"2019-12-12T06:41:10.000Z"},"relationships":{}}],"meta":{"total":896469,"scroll-id":"DnF1ZXJ5VGhlbkZldGNoBQAAAAAAQ2M8FmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAENjPRZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhRAAAAAABDYz4WbFFhUy1BeGRSd2VkTWczN2lTNmI4UQAAAAAAQ2M_FmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAENjQBZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhR"},"links":{"self":"https://api.test.datacite.org/dois?fields%5Bdois%5D=doi%2Cupdated&page%5Bscroll%5D=7m&page%5Bsize%5D=1","next":"https://api.test.datacite.org/dois?page%5Bscroll%5D=7m&page%5Bsize%5D=1&scroll-id=DnF1ZXJ5VGhlbkZldGNoBQAAAAAAQ2M8FmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAENjPRZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhRAAAAAABDYz4WbFFhUy1BeGRSd2VkTWczN2lTNmI4UQAAAAAAQ2M_FmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAENjQBZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhR"}}'
45
+ string: '{"data":[{"id":"10.0253/tuprints-00003688","type":"dois","attributes":{"doi":"10.0253/tuprints-00003688","updated":"2019-12-12T11:02:30.000Z"},"relationships":{}}],"meta":{"total":271418,"scroll-id":"DnF1ZXJ5VGhlbkZldGNoBQAAAAAAQ-0gFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAEPtIRZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhRAAAAAABD7SIWbFFhUy1BeGRSd2VkTWczN2lTNmI4UQAAAAAAQ-0jFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAEPtJBZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhR"},"links":{"self":"https://api.test.datacite.org/dois?exclude-registration-agencies=true&fields%5Bdois%5D=doi%2Cupdated&page%5Bscroll%5D=7m&page%5Bsize%5D=1","next":"https://api.test.datacite.org/dois?page%5Bscroll%5D=7m&page%5Bsize%5D=1&scroll-id=DnF1ZXJ5VGhlbkZldGNoBQAAAAAAQ-0gFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAEPtIRZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhRAAAAAABD7SIWbFFhUy1BeGRSd2VkTWczN2lTNmI4UQAAAAAAQ-0jFmxRYVMtQXhkUndlZE1nMzdpUzZiOFEAAAAAAEPtJBZsUWFTLUF4ZFJ3ZWRNZzM3aVM2YjhR"}}'
46
46
  http_version:
47
- recorded_at: Thu, 12 Dec 2019 09:06:36 GMT
47
+ recorded_at: Thu, 12 Dec 2019 11:02:37 GMT
48
48
  recorded_with: VCR 3.0.3
@@ -6,7 +6,7 @@ http_interactions:
6
6
  body:
7
7
  encoding: ASCII-8BIT
8
8
  string: !binary |-
9
- H4sIABwD8l0AA5WSPW+DMBBA/wryWuGPRIoKcpytUzo1lbq6xgVLxqacG8i/r2NIRasORGIwd+/dneXjh7G12Vn3YLzbI4YpyrRTvjKu3qPX01P+iA6Cf/UWdMgi66AcwexRE0JXEjIMAx622Pc12VDKyNvz8UU1upW5cRCkUxplkS8hBY9eyZAaLXQwIaY6SEUmDsgcJBQX2R3s7YxHqNA07l29Zqc0raz1L7P2vrYaK9/+9fIEE4bZzT6bSvu1doKXttMDrJWv7HLu1r8bu3rwiSbp0Se/izeJmbUFZnxZYWxCa/9bD1YUBUlZlPZJcOuVuHIQQdCyVw0OGgKuZJAqdkgaJ1eMWwmh9ZXYUFbkbBO/Ey1Kuiu3uwdKS0ojNyNcNdLV+qPXn0LaQV6Ak0WId73xvQkXEafm5OePkzQUmVZdfAPnBJxRGQMAAA==
9
+ H4sIAEIe8l0AA5WSTU+EMBBA/wrp1dAPTIyQbvfmaT25Jl5rqdCktMjUhf33dgtr0HhgEw5l5r2ZaTp8P3U2O+kBjHc7xDBFmXbK18Y1O/R6fMof0V7wr8GCDllkHVQTmB1qQ+grQsZxxOM99kNDCkoZeXs+vKhWdzI3DoJ0SqMs8hWk4MErGVKjlQ4mxFQPqcjMAVmChOIyu4G9nvEENZrHvanX4lSmk43+ZTbeN1Zj5bu/Xp5gwjC72idTa7/VTvDadnqErfKFXc/d+XdjNw8+0yQ9+uz38SYxs7XAgq8rTG3o7H/rwcqyJCmL0j4Jbr0SFw4iCFoOqsVBQ8C1DFLFDknj5IJxKyF0vhYFZWXOivgdGatoURUPd5RWlEZuQbhqpWv0x6A/hbSjPAMnqxDvB+MHE84iTs3Jzx8naSgyr7r4BlEhfrsZAwAA
10
10
  headers:
11
11
  Content-Type:
12
12
  - application/x-gzip
@@ -21,17 +21,17 @@ http_interactions:
21
21
  Expect:
22
22
  - 100-continue
23
23
  Content-Md5:
24
- - lhTLVsFpe94/XkiAzcc6NQ==
24
+ - Jdq2ulvsN6RJ2MRP2Mzb6A==
25
25
  X-Amz-Date:
26
- - 20191212T090636Z
26
+ - 20191212T110226Z
27
27
  X-Amz-Content-Sha256:
28
- - c6c4c31ab7b6e66b72930348cb97c79e32ac71d38501ed2b1405de579d362f09
28
+ - acc6e89fbab191a1364a50076ee97ec4b777b54b24bec16d8bede6c1f1b93955
29
29
  Authorization:
30
30
  - AWS4-HMAC-SHA256 Credential=AKIAJAMMCXAR3IXMNCGQ/20191212/eu-west-1/s3/aws4_request,
31
31
  SignedHeaders=cache-control;content-md5;content-type;expect;host;user-agent;x-amz-acl;x-amz-content-sha256;x-amz-date,
32
- Signature=0ebe9df559d80b14a0a0946105edd642af86cfe18529f2a1d5d9988918f10bd2
32
+ Signature=682bf570c79b97f95d69502de8428161653ce23536dc79b7d84fa64db4ae6e05
33
33
  Content-Length:
34
- - '334'
34
+ - '333'
35
35
  Accept:
36
36
  - "*/*"
37
37
  response:
@@ -40,13 +40,13 @@ http_interactions:
40
40
  message: OK
41
41
  headers:
42
42
  X-Amz-Id-2:
43
- - MTjXYSYueuml9Oq75rciKl74yK9BeuCfBFv3jXH4vmtwyCpmzxrximDOXLWXMRpfqilYpVoBKo0=
43
+ - kMOzieZk+6B2/bmJ4NrmMsh9hrdcPibtn7ZC/2yuOgSRR15sEq2YyFnGqwgHrS+mn1vYbJyHjSE=
44
44
  X-Amz-Request-Id:
45
- - 68D708DBF7A27389
45
+ - 976D448C5A70EAF9
46
46
  Date:
47
- - Thu, 12 Dec 2019 09:06:38 GMT
47
+ - Thu, 12 Dec 2019 11:02:27 GMT
48
48
  Etag:
49
- - '"9614cb56c1697bde3f5e4880cdc73a35"'
49
+ - '"25dab6ba5bec37a449d8c44fd8ccdbe8"'
50
50
  Content-Length:
51
51
  - '0'
52
52
  Server:
@@ -55,5 +55,5 @@ http_interactions:
55
55
  encoding: UTF-8
56
56
  string: ''
57
57
  http_version:
58
- recorded_at: Thu, 12 Dec 2019 09:06:37 GMT
58
+ recorded_at: Thu, 12 Dec 2019 11:02:26 GMT
59
59
  recorded_with: VCR 3.0.3
@@ -0,0 +1,59 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: put
5
+ uri: https://s3.eu-west-1.amazonaws.com/search.test.datacite.org/sitemaps/sitemap.xml.gz
6
+ body:
7
+ encoding: ASCII-8BIT
8
+ string: !binary |-
9
+ H4sIAEMe8l0AA5WSTU+EMBBA/wrp1dAPPCik2715Wk+uiddaKjQpLTJ1Yf+93cIaNB7YhEOZeW9mmg7fT53NTnoA490OMUxRpp3ytXHNDr0en/JHtBf8a7CgQxZZB9UEZofaEPqKkHEc8XiP/dCQglJG3p4PL6rVncyNgyCd0iiLfAUpePBKhtRopYMJMdVDKjJzQJYgobjMbmCvZzxBjeZxb+q1OJXpZKN/mY33jdVY+e6vlyeYMMyu9snU2m+1E7y2nR5hq3xh13N3/t3YzYPPNEmPPvt9vEnMbC2w4OsKUxs6+996sLIsScqitE+CW6/EhYMIgpaDanHQEHAtg1SxQ9I4uWDcSgidr0VBWZmzIn5HxipaVMXDHaUVpZFbEK5a6Rr9MehPIe0oz8DJKsT7wfjBhLOIU3Py88dJGorMqy6+ASUdgxYZAwAA
10
+ headers:
11
+ Content-Type:
12
+ - application/x-gzip
13
+ Accept-Encoding:
14
+ - ''
15
+ User-Agent:
16
+ - aws-sdk-ruby3/3.85.1 ruby/2.6.3 universal.x86_64-darwin19 aws-sdk-s3/1.59.0
17
+ X-Amz-Acl:
18
+ - public-read
19
+ Cache-Control:
20
+ - private, max-age=0, no-cache
21
+ Expect:
22
+ - 100-continue
23
+ Content-Md5:
24
+ - dhsZJ+renB9eZnaojhiFwQ==
25
+ X-Amz-Date:
26
+ - 20191212T110227Z
27
+ X-Amz-Content-Sha256:
28
+ - 163f7886c74bf1588d9ad1bc3a6dabd44aa038589c638f19fb9bb5eaca7262f5
29
+ Authorization:
30
+ - AWS4-HMAC-SHA256 Credential=AKIAJAMMCXAR3IXMNCGQ/20191212/eu-west-1/s3/aws4_request,
31
+ SignedHeaders=cache-control;content-md5;content-type;expect;host;user-agent;x-amz-acl;x-amz-content-sha256;x-amz-date,
32
+ Signature=d2bd801bf6a358cdf738c2974775e7a5f41e36c353a2a1a39f4aabd7ea343ca7
33
+ Content-Length:
34
+ - '333'
35
+ Accept:
36
+ - "*/*"
37
+ response:
38
+ status:
39
+ code: 200
40
+ message: OK
41
+ headers:
42
+ X-Amz-Id-2:
43
+ - N5ClwfpUPrAlFTUlkwFx5yO6bililqT2MLEdzBpzlXOTud07MEYU2wBMoKBSFyWqnpNdSSTBEOQ=
44
+ X-Amz-Request-Id:
45
+ - A30EA07ED1C5592A
46
+ Date:
47
+ - Thu, 12 Dec 2019 11:02:28 GMT
48
+ Etag:
49
+ - '"761b1927eade9c1f5e6676a88e1885c1"'
50
+ Content-Length:
51
+ - '0'
52
+ Server:
53
+ - AmazonS3
54
+ body:
55
+ encoding: UTF-8
56
+ string: ''
57
+ http_version:
58
+ recorded_at: Thu, 12 Dec 2019 11:02:27 GMT
59
+ recorded_with: VCR 3.0.3
@@ -6,7 +6,7 @@ http_interactions:
6
6
  body:
7
7
  encoding: ASCII-8BIT
8
8
  string: !binary |-
9
- H4sIAB0D8l0AA5WSO2+DMBCA/wryWuFHIrUFOWTrlE5Npa6uccGSH5RzA/n3dQypaNWBSAzm7vvuzvLx/WhNdlI9aO92iGGKMuWkr7Vrduj1+JQ/on3Fv3oDKmSRdVCOoHeoDaErCRmGAQ9b7PuGbChl5O358CJbZUWuHQThpEJZ5EtIwYOXIqRGCx10iKkOUpGJAzIHCcVFdgN7PeMRajSNe1Ov2Sm1FY36ZTbeN0Zh6e1fL08wYZhd7ZOulV9rJ3hpOzXAWvnCLue2/l2b1YNPNEmPPvldvEnMrC0w48sKYxus+W89WFEUJGVR2qeKGy+rCwcRBCV62eKgIOBaBCFjh6RxcsG4ERCsr6sNZUXONvE70qKk9+X24Y7SktLIzQiXrXCN+ujVZyXMIM7AySLEu177XodzFafm5OePkzQUmVa9+gaTOGH8GQMAAA==
9
+ H4sIAEMe8l0AA5WSTU+EMBBA/wrp1dAPPCik2715Wk+uiddaKjQpLTJ1Yf+93cIaNB7YhEOZeW9mmg7fT53NTnoA490OMUxRpp3ytXHNDr0en/JHtBf8a7CgQxZZB9UEZofaEPqKkHEc8XiP/dCQglJG3p4PL6rVncyNgyCd0iiLfAUpePBKhtRopYMJMdVDKjJzQJYgobjMbmCvZzxBjeZxb+q1OJXpZKN/mY33jdVY+e6vlyeYMMyu9snU2m+1E7y2nR5hq3xh13N3/t3YzYPPNEmPPvt9vEnMbC2w4OsKUxs6+996sLIsScqitE+CW6/EhYMIgpaDanHQEHAtg1SxQ9I4uWDcSgidr0VBWZmzIn5HxipaVMXDHaUVpZFbEK5a6Rr9MehPIe0oz8DJKsT7wfjBhLOIU3Py88dJGorMqy6+ASUdgxYZAwAA
10
10
  headers:
11
11
  Content-Type:
12
12
  - application/x-gzip
@@ -21,17 +21,17 @@ http_interactions:
21
21
  Expect:
22
22
  - 100-continue
23
23
  Content-Md5:
24
- - loYDKhPpwUU1+HWEynN0qw==
24
+ - dhsZJ+renB9eZnaojhiFwQ==
25
25
  X-Amz-Date:
26
- - 20191212T090638Z
26
+ - 20191212T110227Z
27
27
  X-Amz-Content-Sha256:
28
- - 5749a802e120b4402257a51eb5c27584ac345350feba6e1fa397f3fe5ddd291d
28
+ - 163f7886c74bf1588d9ad1bc3a6dabd44aa038589c638f19fb9bb5eaca7262f5
29
29
  Authorization:
30
30
  - AWS4-HMAC-SHA256 Credential=AKIAJAMMCXAR3IXMNCGQ/20191212/eu-west-1/s3/aws4_request,
31
31
  SignedHeaders=cache-control;content-md5;content-type;expect;host;user-agent;x-amz-acl;x-amz-content-sha256;x-amz-date,
32
- Signature=7c39c757b2fc63f754aa92295e76033c68304b534c48bb2e4554751ca15418b4
32
+ Signature=d2bd801bf6a358cdf738c2974775e7a5f41e36c353a2a1a39f4aabd7ea343ca7
33
33
  Content-Length:
34
- - '334'
34
+ - '333'
35
35
  Accept:
36
36
  - "*/*"
37
37
  response:
@@ -40,13 +40,13 @@ http_interactions:
40
40
  message: OK
41
41
  headers:
42
42
  X-Amz-Id-2:
43
- - GpoEsJgEk6NV0OxU9e2j2i5xlgsrswKMv+aBYzGt2lKaAFvNXkodCj5nDXSNzrMT3M2pNU7yX6w=
43
+ - 90tvvC4mWTcWx3G/eQzJD5CK3Y3tqU/KjA79dEqP+2xbd+eZX90aGrRtk3ZhGDEzS849b/xMRMc=
44
44
  X-Amz-Request-Id:
45
- - 6061D9D47AEBFEB2
45
+ - 4B349BE79091D267
46
46
  Date:
47
- - Thu, 12 Dec 2019 09:06:39 GMT
47
+ - Thu, 12 Dec 2019 11:02:29 GMT
48
48
  Etag:
49
- - '"9686032a13e9c14535f87584ca7374ab"'
49
+ - '"761b1927eade9c1f5e6676a88e1885c1"'
50
50
  Content-Length:
51
51
  - '0'
52
52
  Server:
@@ -55,5 +55,5 @@ http_interactions:
55
55
  encoding: UTF-8
56
56
  string: ''
57
57
  http_version:
58
- recorded_at: Thu, 12 Dec 2019 09:06:38 GMT
58
+ recorded_at: Thu, 12 Dec 2019 11:02:28 GMT
59
59
  recorded_with: VCR 3.0.3