turbot 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,3 @@
1
1
  module Turbot
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -35,9 +35,27 @@
35
35
  "registry_url": {
36
36
  "type": "string"
37
37
  },
38
+ "website": {
39
+ "type": "string",
40
+ "minLength": 5
41
+ },
42
+ "telephone_number": {
43
+ "type": "string",
44
+ "minLength": 4
45
+ },
46
+ "fax_number": {
47
+ "type": "string",
48
+ "minLength": 4
49
+ },
38
50
  "registered_address": {
39
51
  "$ref": "includes/address.json"
40
52
  },
53
+ "headquarters_address": {
54
+ "$ref": "includes/address.json"
55
+ },
56
+ "mailing_address": {
57
+ "$ref": "includes/address.json"
58
+ },
41
59
  "officers": {
42
60
  "type": "array",
43
61
  "items": {
@@ -115,6 +133,42 @@
115
133
  "type": "number",
116
134
  "description": "The number of employees",
117
135
  "minimum": 0
136
+ },
137
+ "merged_into": {
138
+ "type": "object",
139
+ "description": "Information on the merger of this company into a 'survivor' company",
140
+ "properties": {
141
+ "surviving_company": {
142
+ "type": ["object"],
143
+ "description": "the surviving_company that this has been merged into",
144
+ "properties": {
145
+ "name": {
146
+ "type": "string",
147
+ "description": "The legal name of the surviving company",
148
+ "minLength": 1
149
+ },
150
+ "company_number": {
151
+ "type": "string",
152
+ "description": "The company_number of the surviving company, if known",
153
+ "minLength": 1
154
+ },
155
+ "jurisdiction": {
156
+ "type": "string",
157
+ "description": "The jurisdiction of incorporation of the surviving company",
158
+ "minLength": 2
159
+ }
160
+ },
161
+ "anyOf": [{"required": ["name"]},
162
+ {"required": ["company_number"]}]
163
+ },
164
+ "effective_date": {
165
+ "type": "string",
166
+ "format": "date",
167
+ "description": "The date of the merger"
168
+ }
169
+ },
170
+ "additionalProperties": false,
171
+ "required": ["surviving_company"]
118
172
  }
119
173
  }
120
174
  }
@@ -8,6 +8,6 @@
8
8
  "language": { "type": "string", "minLength": 2, "maxLength": 2 },
9
9
  "type": { "type": "string", "enum": ["trading", "abbreviation", "legal"] }
10
10
  },
11
- "required": [ "company_name" ]
11
+ "required": [ "company_name", "type" ]
12
12
  }
13
13
 
@@ -11,7 +11,7 @@
11
11
  "type": "object",
12
12
  "properties": {
13
13
  "value": {
14
- "description": "The regulating body that issued the licence",
14
+ "description": "The amount transacted (e.g. 19.95)",
15
15
  "type": "string"},
16
16
  "payee_name": {
17
17
  "description": "The name of the payee (the entity that received the money)",
@@ -4,7 +4,7 @@
4
4
  "type": "object",
5
5
  "properties": { "name": { "type": "string" },
6
6
  "code": { "type": "string" },
7
- "code_scheme_id": { "type": "string", "enum": ["eu_nace_2", "uk_sic_2003", "uk_sic_2007", "us_naics_2002", "us_naics_2007", "be_nace_2008"] },
7
+ "code_scheme_id": { "type": "string", "enum": ["eu_nace_2", "uk_sic_2003", "uk_sic_2007", "us_naics_2002", "us_naics_2007", "be_nace_2008", "dk_db_2007"] },
8
8
  "start_date": { "type": "date" },
9
9
  "end_date": { "type": "date" }
10
10
  },
@@ -20,7 +20,8 @@
20
20
  "description": "The jurisdiction for which licence was issued",
21
21
  "type": "string"},
22
22
  "licence_number": {
23
- "type": "string"},
23
+ "description": "Licence number or code (can be null)",
24
+ "type": ["string",null]},
24
25
  "jurisdiction_classification": {
25
26
  "type": "array",
26
27
  "description": "The local classification given by the regulator",
@@ -3,11 +3,43 @@
3
3
  "description": "An officer (director, senior executive) of a company",
4
4
  "type": "object",
5
5
  "properties": { "name": { "type": "string", "minLength": 1 },
6
- "start_date": { "type": "date" },
7
- "end_date": { "type": "date" },
6
+ "start_date": {
7
+ "type": "string",
8
+ "format": "date"
9
+ },
10
+ "end_date": {
11
+ "type": "string",
12
+ "format": "date"
13
+ },
8
14
  "position": { "type": "string" },
9
- "other_attributes": { "type": "object" },
10
- "uid": { "type": "string" }
15
+ "other_attributes": {
16
+ "type": "object",
17
+ "properties": {
18
+ "date_of_birth": {
19
+ "type": "string",
20
+ "format": "date"
21
+ },
22
+ "nationality": {
23
+ "type": "string"
24
+ },
25
+ "person_uid": {
26
+ "type": "string",
27
+ "description": "a unique identifier given to the individual (as opposed to the officership)"
28
+ },
29
+ "address": {
30
+ "type": "string"
31
+ },
32
+ "type": {
33
+ "type": "string",
34
+ "enum": ["Person", "Company"],
35
+ "description": "The type of entity that is the officer (either 'Person' or 'Company')"
36
+ }
37
+ }
38
+ },
39
+ "uid": {
40
+ "type": "string",
41
+ "description": "a unique identifier given to the officership"
42
+ }
11
43
  },
12
44
  "required": [ "name" ]
13
45
  }
@@ -3,7 +3,10 @@
3
3
  "description": "A previous name of a company",
4
4
  "type": "object",
5
5
  "properties": { "company_name": { "type": "string", "minLength": 1 },
6
- "con_date": { "type": "date" },
6
+ "con_date": {
7
+ "type": "date",
8
+ "description": "The end (conversion) date of the name"
9
+ },
7
10
  "start_date": { "type": "date" }
8
11
  },
9
12
  "required": [ "company_name" ]
@@ -13,7 +13,7 @@
13
13
  "type": "boolean"},
14
14
  "percentage_controlled": {
15
15
  "description": "Percentage controlled, either directly or indirectly",
16
- "type": "number"},
16
+ "type": "string"},
17
17
  "significant": {
18
18
  "description": "Does the source define the control as somehow significant?",
19
19
  "type": "boolean"},
@@ -0,0 +1,85 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-04/schema#",
3
+ "title": "Simple Financial Payment",
4
+ "description": "A Financial Payment is a payment from government to a recipient",
5
+ "type": "object",
6
+ "properties": {
7
+ "source_url": {
8
+ "description": "Place where this fact can be verified",
9
+ "type": "string"
10
+ },
11
+ "sample_date": {
12
+ "description": "Date on which this fact was known to be true",
13
+ "type": "string"
14
+ },
15
+ "confidence": {
16
+ "description": "Confidence in accuracy of data",
17
+ "type": "string",
18
+ "enum": ["HIGH", "MEDIUM", "LOW"]
19
+ },
20
+ "company_name": {
21
+ "description": "Name of the company that received the money",
22
+ "type": "string"
23
+ },
24
+ "company_jurisdiction": {
25
+ "description": "Jurisdiction where company is based",
26
+ "type": "string"
27
+ },
28
+ "value": {
29
+ "description": "The amount transacted (e.g. 19.95)",
30
+ "type": "string"
31
+ },
32
+ "payee_name": {
33
+ "description": "The name of the payee (the entity that received the money)",
34
+ "type": "string"
35
+ },
36
+ "currency": {
37
+ "description": "The currency of the payment (three letter symbol, e.g. USD, GBP, EUR)",
38
+ "type": "string"
39
+ },
40
+ "date": {
41
+ "description": "The date on which the payment was made",
42
+ "type": "date"
43
+ },
44
+ "transaction_number": {
45
+ "description": "The unique identifier for the transaction, scoped to this bot",
46
+ "type": "string"
47
+ },
48
+ "jurisdiction": {
49
+ "description": "The jurisdiction of the body that made the payment, eg. UK, France, Delaware, Manchester",
50
+ "type": "string"
51
+ },
52
+ "more_details_url": {
53
+ "description": "A url from which more details can be seen (may be the same as the source_url)",
54
+ "type": ["string",null]
55
+ },
56
+ "description": {
57
+ "description": "The description of the transaction as given in the raw data",
58
+ "type": ["string",null]
59
+ },
60
+ "expense_type": {
61
+ "description": "The type of expense -- can be either capital, revenue (i.e. current expenditure) or null",
62
+ "enum": ["capital","revenue",null]
63
+ },
64
+ "expense_area": {
65
+ "description": "category (in words) of the expenditure",
66
+ "type": ["string",null]
67
+ },
68
+ "entity_name": {
69
+ "description": "The name of the government entity that made the payment, e.g. Environment Agency",
70
+ "type": "string"
71
+ },
72
+ "entity_uri": {
73
+ "description": "A unique URL (ideally a dereferencable URI) for the government entity",
74
+ "type": ["string",null]
75
+ },
76
+ "department_name": {
77
+ "description": "The name of the government department which the entity belongs to (if relevant), e.g. Department of Health",
78
+ "type": ["string",null]
79
+ },
80
+ "csv_line_number": {
81
+ "description": "If the source for the data is a CSV file, you can optionally include the line number of the CSV from which this data was retrieved",
82
+ "type": ["string",null]}
83
+ },
84
+ "required": ["source_url", "sample_date", "company_name", "company_jurisdiction", "value", "payee_name", "date", "currency"]
85
+ }
@@ -5,11 +5,13 @@
5
5
  "properties": {
6
6
  "source_url": {
7
7
  "description": "Place where this fact can be verified",
8
- "type": "string"
8
+ "type": "string",
9
+ "minLength": 1
9
10
  },
10
11
  "sample_date": {
11
12
  "description": "Date on which this fact was known to be true",
12
- "type": "string"
13
+ "type": "date",
14
+ "minLength": 1
13
15
  },
14
16
  "confidence": {
15
17
  "description": "Confidence in accuracy of data",
@@ -18,11 +20,13 @@
18
20
  },
19
21
  "company_name": {
20
22
  "description": "Name of the company holding the licence",
21
- "type": "string"
23
+ "type": "string",
24
+ "minLength": 1
22
25
  },
23
26
  "company_jurisdiction": {
24
27
  "description": "Jurisdiction where company is based",
25
- "type": "string"
28
+ "type": "string",
29
+ "minLength": 1
26
30
  },
27
31
  "licence_number": {
28
32
  "description": "Licence number or code",
@@ -38,7 +42,8 @@
38
42
  },
39
43
  "licence_jurisdiction": {
40
44
  "description": "Jurisdiction for which licence is issued",
41
- "type": "string"
45
+ "type": "string",
46
+ "minLength": 1
42
47
  },
43
48
  "status": {
44
49
  "description": "Status of the licence",
@@ -0,0 +1,68 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-04/schema#",
3
+ "title": "Simple Subsidiary Schema",
4
+ "type": "object",
5
+ "properties": {
6
+ "source_url": {
7
+ "description": "Place where this fact can be verified",
8
+ "type": "string",
9
+ "minLength": 1
10
+ },
11
+ "sample_date": {
12
+ "description": "Date on which this fact was known to be true",
13
+ "type": "string",
14
+ "minLength": 1
15
+ },
16
+ "start_date": {
17
+ "description": "Earliest known date this was known to be a subsidiary",
18
+ "type": "string"
19
+ },
20
+ "end_date": {
21
+ "description": "Latest known date this was known to be a subsidiary",
22
+ "type": "string"
23
+ },
24
+ "confidence": {
25
+ "description": "Confidence in accuracy of data",
26
+ "type": "string",
27
+ "enum": ["HIGH", "MEDIUM", "LOW"]
28
+ },
29
+ "parent_name": {
30
+ "description": "Name of the controlling company",
31
+ "type": "string",
32
+ "minLength": 1
33
+ },
34
+ "parent_jurisdiction": {
35
+ "description": "Jurisdiction where controlling company is based",
36
+ "type": "string",
37
+ "minLength": 1
38
+ },
39
+ "parent_identifier": {
40
+ "description": "Any unique ID for the controlling company",
41
+ "type": "string"
42
+ },
43
+ "direct": {
44
+ "description": "Is the control relationship direct or indirect (if unknown, leave blank)?",
45
+ "type": "boolean"
46
+ },
47
+ "percentage_controlled": {
48
+ "description": "Percentage of the subsidiary that is controlled (if known), either directly or indirectly",
49
+ "type": "string",
50
+ "pattern": "^[0-9]{1,2}[.]?[0-9]{0,2}$"
51
+ },
52
+ "subsidiary_name": {
53
+ "description": "The name of the subsidiary",
54
+ "type": "string",
55
+ "minLength": 1
56
+ },
57
+ "subsidiary_jurisdiction": {
58
+ "description": "Jurisdiction of the subsidiary",
59
+ "type": "string",
60
+ "minLength": 1
61
+ },
62
+ "subsidiary_identifier": {
63
+ "description": "Any unique id for the subsidiary that might be provided in the source",
64
+ "type": "string"
65
+ }
66
+ },
67
+ "required": ["source_url", "sample_date", "parent_name", "parent_jurisdiction", "subsidiary_name", "subsidiary_jurisdiction"]
68
+ }
metadata CHANGED
@@ -1,18 +1,20 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: turbot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
+ prerelease:
5
6
  platform: ruby
6
7
  authors:
7
8
  - Turbot
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2014-08-08 00:00:00.000000000 Z
12
+ date: 2014-09-17 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: netrc
15
16
  requirement: !ruby/object:Gem::Requirement
17
+ none: false
16
18
  requirements:
17
19
  - - ~>
18
20
  - !ruby/object:Gem::Version
@@ -20,6 +22,7 @@ dependencies:
20
22
  type: :runtime
21
23
  prerelease: false
22
24
  version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
23
26
  requirements:
24
27
  - - ~>
25
28
  - !ruby/object:Gem::Version
@@ -27,6 +30,7 @@ dependencies:
27
30
  - !ruby/object:Gem::Dependency
28
31
  name: rest-client
29
32
  requirement: !ruby/object:Gem::Requirement
33
+ none: false
30
34
  requirements:
31
35
  - - ~>
32
36
  - !ruby/object:Gem::Version
@@ -34,6 +38,7 @@ dependencies:
34
38
  type: :runtime
35
39
  prerelease: false
36
40
  version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
37
42
  requirements:
38
43
  - - ~>
39
44
  - !ruby/object:Gem::Version
@@ -41,6 +46,7 @@ dependencies:
41
46
  - !ruby/object:Gem::Dependency
42
47
  name: launchy
43
48
  requirement: !ruby/object:Gem::Requirement
49
+ none: false
44
50
  requirements:
45
51
  - - ! '>='
46
52
  - !ruby/object:Gem::Version
@@ -48,6 +54,7 @@ dependencies:
48
54
  type: :runtime
49
55
  prerelease: false
50
56
  version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
51
58
  requirements:
52
59
  - - ! '>='
53
60
  - !ruby/object:Gem::Version
@@ -55,6 +62,7 @@ dependencies:
55
62
  - !ruby/object:Gem::Dependency
56
63
  name: rubyzip
57
64
  requirement: !ruby/object:Gem::Requirement
65
+ none: false
58
66
  requirements:
59
67
  - - ! '>='
60
68
  - !ruby/object:Gem::Version
@@ -62,6 +70,7 @@ dependencies:
62
70
  type: :runtime
63
71
  prerelease: false
64
72
  version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
65
74
  requirements:
66
75
  - - ! '>='
67
76
  - !ruby/object:Gem::Version
@@ -69,6 +78,7 @@ dependencies:
69
78
  - !ruby/object:Gem::Dependency
70
79
  name: json-schema
71
80
  requirement: !ruby/object:Gem::Requirement
81
+ none: false
72
82
  requirements:
73
83
  - - ! '>='
74
84
  - !ruby/object:Gem::Version
@@ -76,6 +86,7 @@ dependencies:
76
86
  type: :runtime
77
87
  prerelease: false
78
88
  version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
79
90
  requirements:
80
91
  - - ! '>='
81
92
  - !ruby/object:Gem::Version
@@ -83,6 +94,7 @@ dependencies:
83
94
  - !ruby/object:Gem::Dependency
84
95
  name: activesupport
85
96
  requirement: !ruby/object:Gem::Requirement
97
+ none: false
86
98
  requirements:
87
99
  - - '='
88
100
  - !ruby/object:Gem::Version
@@ -90,6 +102,7 @@ dependencies:
90
102
  type: :runtime
91
103
  prerelease: false
92
104
  version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
93
106
  requirements:
94
107
  - - '='
95
108
  - !ruby/object:Gem::Version
@@ -97,6 +110,7 @@ dependencies:
97
110
  - !ruby/object:Gem::Dependency
98
111
  name: turbot-api
99
112
  requirement: !ruby/object:Gem::Requirement
113
+ none: false
100
114
  requirements:
101
115
  - - '='
102
116
  - !ruby/object:Gem::Version
@@ -104,6 +118,7 @@ dependencies:
104
118
  type: :runtime
105
119
  prerelease: false
106
120
  version_requirements: !ruby/object:Gem::Requirement
121
+ none: false
107
122
  requirements:
108
123
  - - '='
109
124
  - !ruby/object:Gem::Version
@@ -111,20 +126,23 @@ dependencies:
111
126
  - !ruby/object:Gem::Dependency
112
127
  name: turbot-runner
113
128
  requirement: !ruby/object:Gem::Requirement
129
+ none: false
114
130
  requirements:
115
131
  - - '='
116
132
  - !ruby/object:Gem::Version
117
- version: 0.1.4
133
+ version: 0.1.8
118
134
  type: :runtime
119
135
  prerelease: false
120
136
  version_requirements: !ruby/object:Gem::Requirement
137
+ none: false
121
138
  requirements:
122
139
  - - '='
123
140
  - !ruby/object:Gem::Version
124
- version: 0.1.4
141
+ version: 0.1.8
125
142
  - !ruby/object:Gem::Dependency
126
143
  name: excon
127
144
  requirement: !ruby/object:Gem::Requirement
145
+ none: false
128
146
  requirements:
129
147
  - - ! '>='
130
148
  - !ruby/object:Gem::Version
@@ -132,6 +150,7 @@ dependencies:
132
150
  type: :runtime
133
151
  prerelease: false
134
152
  version_requirements: !ruby/object:Gem::Requirement
153
+ none: false
135
154
  requirements:
136
155
  - - ! '>='
137
156
  - !ruby/object:Gem::Version
@@ -175,26 +194,6 @@ files:
175
194
  - lib/turbot/updater.rb
176
195
  - lib/turbot/version.rb
177
196
  - lib/vendor/turbot/okjson.rb
178
- - schema/schemas/company-schema.json
179
- - schema/schemas/financial-payment-schema.json
180
- - schema/schemas/includes/address.json
181
- - schema/schemas/includes/alternative_name.json
182
- - schema/schemas/includes/company.json
183
- - schema/schemas/includes/filing.json
184
- - schema/schemas/includes/financial-payment-data-object.json
185
- - schema/schemas/includes/industry_code.json
186
- - schema/schemas/includes/licence-data-object.json
187
- - schema/schemas/includes/officer.json
188
- - schema/schemas/includes/previous_name.json
189
- - schema/schemas/includes/share-parcel-data.json
190
- - schema/schemas/includes/share-parcel.json
191
- - schema/schemas/includes/subsidiary-relationship-data.json
192
- - schema/schemas/includes/total-shares.json
193
- - schema/schemas/licence-schema.json
194
- - schema/schemas/primary-data-schema.json
195
- - schema/schemas/share-parcel-schema.json
196
- - schema/schemas/simple-licence-schema.json
197
- - schema/schemas/subsidiary-relationship-schema.json
198
197
  - spec/helper/legacy_help.rb
199
198
  - spec/helper/pg_dump_restore_spec.rb
200
199
  - spec/schemas/dummy_schema.json
@@ -228,29 +227,51 @@ files:
228
227
  - templates/manifest.json
229
228
  - templates/python/scraper.py
230
229
  - templates/ruby/scraper.rb
230
+ - schema/schemas/company-schema.json
231
+ - schema/schemas/financial-payment-schema.json
232
+ - schema/schemas/includes/address.json
233
+ - schema/schemas/includes/alternative_name.json
234
+ - schema/schemas/includes/company.json
235
+ - schema/schemas/includes/filing.json
236
+ - schema/schemas/includes/financial-payment-data-object.json
237
+ - schema/schemas/includes/industry_code.json
238
+ - schema/schemas/includes/licence-data-object.json
239
+ - schema/schemas/includes/officer.json
240
+ - schema/schemas/includes/previous_name.json
241
+ - schema/schemas/includes/share-parcel-data.json
242
+ - schema/schemas/includes/share-parcel.json
243
+ - schema/schemas/includes/subsidiary-relationship-data.json
244
+ - schema/schemas/includes/total-shares.json
245
+ - schema/schemas/licence-schema.json
246
+ - schema/schemas/primary-data-schema.json
247
+ - schema/schemas/share-parcel-schema.json
248
+ - schema/schemas/simple-financial-payment-schema.json
249
+ - schema/schemas/simple-licence-schema.json
250
+ - schema/schemas/simple-subsidiary-schema.json
251
+ - schema/schemas/subsidiary-relationship-schema.json
231
252
  homepage: http://turbot.com/
232
253
  licenses:
233
254
  - MIT
234
- metadata: {}
235
255
  post_install_message:
236
256
  rdoc_options: []
237
257
  require_paths:
238
258
  - lib
239
259
  required_ruby_version: !ruby/object:Gem::Requirement
260
+ none: false
240
261
  requirements:
241
262
  - - ! '>='
242
263
  - !ruby/object:Gem::Version
243
264
  version: 1.9.2
244
265
  required_rubygems_version: !ruby/object:Gem::Requirement
266
+ none: false
245
267
  requirements:
246
268
  - - ! '>='
247
269
  - !ruby/object:Gem::Version
248
270
  version: '0'
249
271
  requirements: []
250
272
  rubyforge_project:
251
- rubygems_version: 2.2.2
273
+ rubygems_version: 1.8.23
252
274
  signing_key:
253
- specification_version: 4
275
+ specification_version: 3
254
276
  summary: Client library and CLI to deploy apps on Turbot.
255
277
  test_files: []
256
- has_rdoc:
checksums.yaml DELETED
@@ -1,15 +0,0 @@
1
- ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- NmExMjA4OTczZWFmMzMxYTQxMDg1YjU2OGVmMGI3NWYwNDQ4NDhkOQ==
5
- data.tar.gz: !binary |-
6
- MGJhYzJlMDkwNjI0M2Q5M2ZmZWIwYjE0NmJiYmU0YWYxNjRmZGQ3NA==
7
- SHA512:
8
- metadata.gz: !binary |-
9
- NTY1YWM4ZDhjM2QxN2YyMjNmMjQxYTc0YWFkOTcyNTA5MWVkM2M4MWYwM2I2
10
- NDA2ZDhkNTRhZmVkYzZjZjlmMTJmNjRlZDMxNDdhOTBjOTQ5NWM4YzdlNDJl
11
- YjU3MTA4YWRmMTBiZWVhMzg0YzQ1NmRiMGRkYzAxMzgzOWJlNWM=
12
- data.tar.gz: !binary |-
13
- NGJmYzIzYzgwMDA3Y2M4Y2NmMTM3ZWQ4NGYyNDg0ZTJmOTIwY2FiYmM4YjNk
14
- NTZiYmVlNTIyZWQxMzFmMzNjMmFiYjFkZTRmNzEzZGU4ZmNlNGJjNTdiNjYz
15
- M2ZlMzVkZmJkYTdmYTllN2Q4MTQxNDI2M2RkMzA4OTBkMTlmZTg=