goodot 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,74 @@
1
+ require 'bundler/gem_tasks'
2
+
3
+ begin
4
+ require 'rspec/core/rake_task'
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ task default: :spec
9
+ rescue LoadError
10
+ puts 'rspec not installed, skipping ...'
11
+ end
12
+
13
+ desc 'Run Rubocop'
14
+ task :cop do
15
+ exec 'rubocop -D lib/ goodot.gemspec Rakefile'
16
+ end
17
+
18
+ namespace :license do
19
+ desc 'Show license report'
20
+ task :info do
21
+ Bundler::CLI.start(['exec', 'license_finder', '--decisions-file', 'dependency_decisions.yml'])
22
+ end
23
+
24
+ desc 'Generate licenses report - DEPENDENCIES.md'
25
+ task :report do
26
+ `bundle exec license_finder report --decisions-file dependency_decisions.yml --format=markdown > DEPENDENCIES.md`
27
+ end
28
+
29
+ desc 'Check if DEPENDENCIES.md is up to date'
30
+ task :check do
31
+ Rake::Task['license:report'].invoke
32
+ res = `git diff --stat DEPENDENCIES.md`
33
+ fail 'License check error' unless res.include?('1 file changed, 1 insertion(+), 1 deletion(-)')
34
+
35
+ puts 'All licenses seem to be OK'
36
+ end
37
+
38
+ desc 'Add license header to each file'
39
+ task :add do
40
+ spec = Gem::Specification.load('goodot.gemspec')
41
+ license = File.readlines(File.expand_path('../LICENSE.rb', __FILE__))
42
+ license << "\n"
43
+ license_lines = license.length
44
+
45
+ spec.files.each do |path|
46
+ next if path == 'LICENSE.rb'
47
+ next unless path.end_with?('.rb')
48
+
49
+ puts "Processing #{path}"
50
+
51
+ content = File.read(path)
52
+ content_lines = content.lines
53
+
54
+ update = content_lines.length < license_lines
55
+
56
+ if update == false
57
+ content_with_license = (license + content_lines[license_lines..-1]).join
58
+ update = content != content_with_license
59
+ end
60
+
61
+ next unless update
62
+
63
+ puts "Updating #{path}"
64
+
65
+ if content_lines.length > 0 && content_lines[0].downcase.strip == '# encoding: utf-8'
66
+ content_lines.slice!(0)
67
+ content_lines.slice!(0) if content_lines[0] == "\n"
68
+ end
69
+
70
+ new_content = (license + content_lines).join
71
+ File.open(path, 'w') { |file| file.write(new_content) }
72
+ end
73
+ end
74
+ end
@@ -0,0 +1,24 @@
1
+ #! /usr/bin/env ruby
2
+
3
+ # Copyright (c) 2015, Tomas Korcak <korczis@gmail.com>
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in
13
+ # all copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ # THE SOFTWARE.
22
+
23
+
24
+ require_relative '../lib/goodot/cli/cli'
@@ -0,0 +1,104 @@
1
+ ---
2
+ - - :whitelist
3
+ - MIT
4
+ - :who:
5
+ :why:
6
+ :when: 2015-07-17 19:58:05.941481000 Z
7
+ - - :add_package
8
+ - rake
9
+ -
10
+ - &1
11
+ :who:
12
+ :why:
13
+ :when: 2015-07-17 20:06:59.009509000 Z
14
+ - - :license
15
+ - rake
16
+ - MIT
17
+ - *1
18
+ - - :add_package
19
+ - colored
20
+ -
21
+ - &2
22
+ :who:
23
+ :why:
24
+ :when: 2015-07-17 20:07:00.038919000 Z
25
+ - - :license
26
+ - colored
27
+ - MIT
28
+ - *2
29
+ - - :add_package
30
+ - pmap
31
+ -
32
+ - &3
33
+ :who:
34
+ :why:
35
+ :when: 2015-07-17 20:07:01.179721000 Z
36
+ - - :license
37
+ - pmap
38
+ - Apache 2.0
39
+ - *3
40
+ - - :add_package
41
+ - mime-types
42
+ -
43
+ - &4
44
+ :who:
45
+ :why:
46
+ :when: 2015-07-17 20:07:02.216723000 Z
47
+ - - :license
48
+ - mime-types
49
+ - MIT
50
+ - *4
51
+ - - :add_package
52
+ - diff-lcs
53
+ -
54
+ - &5
55
+ :who:
56
+ :why:
57
+ :when: 2015-07-17 20:07:03.248925000 Z
58
+ - - :license
59
+ - diff-lcs
60
+ - MIT
61
+ - *5
62
+ - - :add_package
63
+ - rubyzip
64
+ -
65
+ - &6
66
+ :who:
67
+ :why:
68
+ :when: 2015-07-17 20:07:04.296985000 Z
69
+ - - :license
70
+ - rubyzip
71
+ - ruby
72
+ - *6
73
+ - - :whitelist
74
+ - MIT
75
+ - :who:
76
+ :why:
77
+ :when: 2015-07-17 20:07:05.347602000 Z
78
+ - - :whitelist
79
+ - Apache 2.0
80
+ - :who:
81
+ :why:
82
+ :when: 2015-07-17 20:07:06.371393000 Z
83
+ - - :whitelist
84
+ - ruby
85
+ - :who:
86
+ :why:
87
+ :when: 2015-07-17 20:07:07.417378000 Z
88
+ - - :whitelist
89
+ - BSD
90
+ - :who:
91
+ :why:
92
+ :when: 2015-07-17 20:07:08.448183000 Z
93
+ - - :whitelist
94
+ - GPL-2
95
+ - :who:
96
+ :why:
97
+ :when: 2015-07-17 20:07:12.266179000 Z
98
+ - - :approve
99
+ - bundler
100
+ - :who:
101
+ :why:
102
+ :when: 2015-08-03 10:50:05.464030000 Z
103
+
104
+
@@ -0,0 +1,31 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'goodot/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'goodot'
8
+ spec.version = GoodData::Goodot::VERSION
9
+ spec.authors = ['Tomas Svarovsky']
10
+ spec.email = ['svarovsky@gooddata.com']
11
+ spec.summary = 'Goodot is about doing a project in GD in a programmatic way'
12
+ spec.description = 'Uaa, not right now'
13
+ spec.homepage = ''
14
+ spec.license = 'MIT'
15
+ spec.executables = ['goodot']
16
+
17
+ spec.files = `git ls-files -z`.split("\x0")
18
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
19
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
20
+ spec.require_paths = ['lib']
21
+
22
+ spec.add_development_dependency 'bundler', '~> 1.7'
23
+ spec.add_development_dependency 'license_finder', '~> 2.0', '>= 2.0.4'
24
+ spec.add_development_dependency 'rake', '~> 10.0'
25
+ spec.add_development_dependency 'rspec'
26
+ spec.add_development_dependency 'rubocop'
27
+ spec.add_development_dependency 'simplecov', '~> 0.11'
28
+
29
+ spec.add_dependency 'gli'
30
+ spec.add_dependency 'gooddata', '> 0.6.24'
31
+ end
@@ -0,0 +1,710 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>ActiveLayerIndex</key>
6
+ <integer>0</integer>
7
+ <key>ApplicationVersion</key>
8
+ <array>
9
+ <string>com.omnigroup.OmniGraffle</string>
10
+ <string>139.18.0.187838</string>
11
+ </array>
12
+ <key>AutoAdjust</key>
13
+ <true/>
14
+ <key>BackgroundGraphic</key>
15
+ <dict>
16
+ <key>Bounds</key>
17
+ <string>{{0, 0}, {575.99999904632568, 733}}</string>
18
+ <key>Class</key>
19
+ <string>SolidGraphic</string>
20
+ <key>ID</key>
21
+ <integer>2</integer>
22
+ <key>Style</key>
23
+ <dict>
24
+ <key>shadow</key>
25
+ <dict>
26
+ <key>Draws</key>
27
+ <string>NO</string>
28
+ </dict>
29
+ <key>stroke</key>
30
+ <dict>
31
+ <key>Draws</key>
32
+ <string>NO</string>
33
+ </dict>
34
+ </dict>
35
+ </dict>
36
+ <key>BaseZoom</key>
37
+ <integer>0</integer>
38
+ <key>CanvasOrigin</key>
39
+ <string>{0, 0}</string>
40
+ <key>ColumnAlign</key>
41
+ <integer>1</integer>
42
+ <key>ColumnSpacing</key>
43
+ <real>36</real>
44
+ <key>CreationDate</key>
45
+ <string>2016-03-09 18:28:22 +0000</string>
46
+ <key>Creator</key>
47
+ <string>Tomas Svarovsky</string>
48
+ <key>DisplayScale</key>
49
+ <string>1 0/72 in = 1.0000 in</string>
50
+ <key>GraphDocumentVersion</key>
51
+ <integer>8</integer>
52
+ <key>GraphicsList</key>
53
+ <array>
54
+ <dict>
55
+ <key>Class</key>
56
+ <string>LineGraphic</string>
57
+ <key>Head</key>
58
+ <dict>
59
+ <key>ID</key>
60
+ <integer>4</integer>
61
+ </dict>
62
+ <key>ID</key>
63
+ <integer>18</integer>
64
+ <key>Points</key>
65
+ <array>
66
+ <string>{149, 66}</string>
67
+ <string>{185, 66}</string>
68
+ </array>
69
+ <key>Style</key>
70
+ <dict>
71
+ <key>stroke</key>
72
+ <dict>
73
+ <key>HeadArrow</key>
74
+ <string>FilledArrow</string>
75
+ <key>Legacy</key>
76
+ <true/>
77
+ <key>LineType</key>
78
+ <integer>1</integer>
79
+ <key>TailArrow</key>
80
+ <string>0</string>
81
+ </dict>
82
+ </dict>
83
+ <key>Tail</key>
84
+ <dict>
85
+ <key>ID</key>
86
+ <integer>15</integer>
87
+ </dict>
88
+ </dict>
89
+ <dict>
90
+ <key>Class</key>
91
+ <string>LineGraphic</string>
92
+ <key>Head</key>
93
+ <dict>
94
+ <key>ID</key>
95
+ <integer>5</integer>
96
+ </dict>
97
+ <key>ID</key>
98
+ <integer>17</integer>
99
+ <key>Points</key>
100
+ <array>
101
+ <string>{149, 185}</string>
102
+ <string>{185, 185}</string>
103
+ </array>
104
+ <key>Style</key>
105
+ <dict>
106
+ <key>stroke</key>
107
+ <dict>
108
+ <key>HeadArrow</key>
109
+ <string>FilledArrow</string>
110
+ <key>Legacy</key>
111
+ <true/>
112
+ <key>LineType</key>
113
+ <integer>1</integer>
114
+ <key>TailArrow</key>
115
+ <string>0</string>
116
+ </dict>
117
+ </dict>
118
+ <key>Tail</key>
119
+ <dict>
120
+ <key>ID</key>
121
+ <integer>16</integer>
122
+ </dict>
123
+ </dict>
124
+ <dict>
125
+ <key>Bounds</key>
126
+ <string>{{68, 161}, {81, 48}}</string>
127
+ <key>Class</key>
128
+ <string>ShapedGraphic</string>
129
+ <key>ID</key>
130
+ <integer>16</integer>
131
+ <key>Magnets</key>
132
+ <array>
133
+ <string>{0, 1}</string>
134
+ <string>{0, -1}</string>
135
+ <string>{1, 0}</string>
136
+ <string>{-1, 0}</string>
137
+ </array>
138
+ <key>Shape</key>
139
+ <string>Rectangle</string>
140
+ <key>Style</key>
141
+ <dict>
142
+ <key>stroke</key>
143
+ <dict>
144
+ <key>CornerRadius</key>
145
+ <real>5</real>
146
+ </dict>
147
+ </dict>
148
+ <key>Text</key>
149
+ <dict>
150
+ <key>Text</key>
151
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1343\cocoasubrtf160
152
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
153
+ {\colortbl;\red255\green255\blue255;}
154
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
155
+
156
+ \f0\fs24 \cf0 Premium Master}</string>
157
+ </dict>
158
+ </dict>
159
+ <dict>
160
+ <key>Bounds</key>
161
+ <string>{{68, 42}, {81, 48}}</string>
162
+ <key>Class</key>
163
+ <string>ShapedGraphic</string>
164
+ <key>ID</key>
165
+ <integer>15</integer>
166
+ <key>Magnets</key>
167
+ <array>
168
+ <string>{0, 1}</string>
169
+ <string>{0, -1}</string>
170
+ <string>{1, 0}</string>
171
+ <string>{-1, 0}</string>
172
+ </array>
173
+ <key>Shape</key>
174
+ <string>Rectangle</string>
175
+ <key>Style</key>
176
+ <dict>
177
+ <key>stroke</key>
178
+ <dict>
179
+ <key>CornerRadius</key>
180
+ <real>5</real>
181
+ </dict>
182
+ </dict>
183
+ <key>Text</key>
184
+ <dict>
185
+ <key>Text</key>
186
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1343\cocoasubrtf160
187
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
188
+ {\colortbl;\red255\green255\blue255;}
189
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
190
+
191
+ \f0\fs24 \cf0 Basic Master}</string>
192
+ </dict>
193
+ </dict>
194
+ <dict>
195
+ <key>Class</key>
196
+ <string>LineGraphic</string>
197
+ <key>Head</key>
198
+ <dict>
199
+ <key>ID</key>
200
+ <integer>10</integer>
201
+ </dict>
202
+ <key>ID</key>
203
+ <integer>14</integer>
204
+ <key>Points</key>
205
+ <array>
206
+ <string>{266, 185}</string>
207
+ <string>{343, 212.5}</string>
208
+ </array>
209
+ <key>Style</key>
210
+ <dict>
211
+ <key>stroke</key>
212
+ <dict>
213
+ <key>HeadArrow</key>
214
+ <string>FilledArrow</string>
215
+ <key>Legacy</key>
216
+ <true/>
217
+ <key>LineType</key>
218
+ <integer>1</integer>
219
+ <key>TailArrow</key>
220
+ <string>0</string>
221
+ </dict>
222
+ </dict>
223
+ <key>Tail</key>
224
+ <dict>
225
+ <key>ID</key>
226
+ <integer>5</integer>
227
+ </dict>
228
+ </dict>
229
+ <dict>
230
+ <key>Class</key>
231
+ <string>LineGraphic</string>
232
+ <key>Head</key>
233
+ <dict>
234
+ <key>ID</key>
235
+ <integer>9</integer>
236
+ </dict>
237
+ <key>ID</key>
238
+ <integer>13</integer>
239
+ <key>Points</key>
240
+ <array>
241
+ <string>{266, 185}</string>
242
+ <string>{343, 160.5}</string>
243
+ </array>
244
+ <key>Style</key>
245
+ <dict>
246
+ <key>stroke</key>
247
+ <dict>
248
+ <key>HeadArrow</key>
249
+ <string>FilledArrow</string>
250
+ <key>Legacy</key>
251
+ <true/>
252
+ <key>LineType</key>
253
+ <integer>1</integer>
254
+ <key>TailArrow</key>
255
+ <string>0</string>
256
+ </dict>
257
+ </dict>
258
+ <key>Tail</key>
259
+ <dict>
260
+ <key>ID</key>
261
+ <integer>5</integer>
262
+ </dict>
263
+ </dict>
264
+ <dict>
265
+ <key>Class</key>
266
+ <string>LineGraphic</string>
267
+ <key>Head</key>
268
+ <dict>
269
+ <key>ID</key>
270
+ <integer>8</integer>
271
+ </dict>
272
+ <key>ID</key>
273
+ <integer>12</integer>
274
+ <key>Points</key>
275
+ <array>
276
+ <string>{266, 66}</string>
277
+ <string>{343, 92.5}</string>
278
+ </array>
279
+ <key>Style</key>
280
+ <dict>
281
+ <key>stroke</key>
282
+ <dict>
283
+ <key>HeadArrow</key>
284
+ <string>FilledArrow</string>
285
+ <key>Legacy</key>
286
+ <true/>
287
+ <key>LineType</key>
288
+ <integer>1</integer>
289
+ <key>TailArrow</key>
290
+ <string>0</string>
291
+ </dict>
292
+ </dict>
293
+ <key>Tail</key>
294
+ <dict>
295
+ <key>ID</key>
296
+ <integer>4</integer>
297
+ </dict>
298
+ </dict>
299
+ <dict>
300
+ <key>Class</key>
301
+ <string>LineGraphic</string>
302
+ <key>Head</key>
303
+ <dict>
304
+ <key>ID</key>
305
+ <integer>6</integer>
306
+ </dict>
307
+ <key>ID</key>
308
+ <integer>11</integer>
309
+ <key>Points</key>
310
+ <array>
311
+ <string>{266, 66}</string>
312
+ <string>{343, 38.5}</string>
313
+ </array>
314
+ <key>Style</key>
315
+ <dict>
316
+ <key>stroke</key>
317
+ <dict>
318
+ <key>HeadArrow</key>
319
+ <string>FilledArrow</string>
320
+ <key>Legacy</key>
321
+ <true/>
322
+ <key>LineType</key>
323
+ <integer>1</integer>
324
+ <key>TailArrow</key>
325
+ <string>0</string>
326
+ </dict>
327
+ </dict>
328
+ <key>Tail</key>
329
+ <dict>
330
+ <key>ID</key>
331
+ <integer>4</integer>
332
+ </dict>
333
+ </dict>
334
+ <dict>
335
+ <key>Bounds</key>
336
+ <string>{{343, 195}, {73, 35}}</string>
337
+ <key>Class</key>
338
+ <string>ShapedGraphic</string>
339
+ <key>ID</key>
340
+ <integer>10</integer>
341
+ <key>Magnets</key>
342
+ <array>
343
+ <string>{0, 1}</string>
344
+ <string>{0, -1}</string>
345
+ <string>{1, 0}</string>
346
+ <string>{-1, 0}</string>
347
+ </array>
348
+ <key>Shape</key>
349
+ <string>Rectangle</string>
350
+ <key>Style</key>
351
+ <dict>
352
+ <key>stroke</key>
353
+ <dict>
354
+ <key>CornerRadius</key>
355
+ <real>5</real>
356
+ </dict>
357
+ </dict>
358
+ <key>Text</key>
359
+ <dict>
360
+ <key>Text</key>
361
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1343\cocoasubrtf160
362
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
363
+ {\colortbl;\red255\green255\blue255;}
364
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
365
+
366
+ \f0\fs24 \cf0 Zen Table}</string>
367
+ </dict>
368
+ </dict>
369
+ <dict>
370
+ <key>Bounds</key>
371
+ <string>{{343, 143}, {73, 35}}</string>
372
+ <key>Class</key>
373
+ <string>ShapedGraphic</string>
374
+ <key>ID</key>
375
+ <integer>9</integer>
376
+ <key>Magnets</key>
377
+ <array>
378
+ <string>{0, 1}</string>
379
+ <string>{0, -1}</string>
380
+ <string>{1, 0}</string>
381
+ <string>{-1, 0}</string>
382
+ </array>
383
+ <key>Shape</key>
384
+ <string>Rectangle</string>
385
+ <key>Style</key>
386
+ <dict>
387
+ <key>stroke</key>
388
+ <dict>
389
+ <key>CornerRadius</key>
390
+ <real>5</real>
391
+ </dict>
392
+ </dict>
393
+ <key>Text</key>
394
+ <dict>
395
+ <key>Text</key>
396
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1343\cocoasubrtf160
397
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
398
+ {\colortbl;\red255\green255\blue255;}
399
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
400
+
401
+ \f0\fs24 \cf0 Best Foods}</string>
402
+ </dict>
403
+ </dict>
404
+ <dict>
405
+ <key>Bounds</key>
406
+ <string>{{343, 75}, {73, 35}}</string>
407
+ <key>Class</key>
408
+ <string>ShapedGraphic</string>
409
+ <key>ID</key>
410
+ <integer>8</integer>
411
+ <key>Magnets</key>
412
+ <array>
413
+ <string>{0, 1}</string>
414
+ <string>{0, -1}</string>
415
+ <string>{1, 0}</string>
416
+ <string>{-1, 0}</string>
417
+ </array>
418
+ <key>Shape</key>
419
+ <string>Rectangle</string>
420
+ <key>Style</key>
421
+ <dict>
422
+ <key>stroke</key>
423
+ <dict>
424
+ <key>CornerRadius</key>
425
+ <real>5</real>
426
+ </dict>
427
+ </dict>
428
+ <key>Text</key>
429
+ <dict>
430
+ <key>Text</key>
431
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1343\cocoasubrtf160
432
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
433
+ {\colortbl;\red255\green255\blue255;}
434
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
435
+
436
+ \f0\fs24 \cf0 Air Titan Airlines}</string>
437
+ </dict>
438
+ </dict>
439
+ <dict>
440
+ <key>Bounds</key>
441
+ <string>{{343, 21}, {73, 35}}</string>
442
+ <key>Class</key>
443
+ <string>ShapedGraphic</string>
444
+ <key>ID</key>
445
+ <integer>6</integer>
446
+ <key>Magnets</key>
447
+ <array>
448
+ <string>{0, 1}</string>
449
+ <string>{0, -1}</string>
450
+ <string>{1, 0}</string>
451
+ <string>{-1, 0}</string>
452
+ </array>
453
+ <key>Shape</key>
454
+ <string>Rectangle</string>
455
+ <key>Style</key>
456
+ <dict>
457
+ <key>stroke</key>
458
+ <dict>
459
+ <key>CornerRadius</key>
460
+ <real>5</real>
461
+ </dict>
462
+ </dict>
463
+ <key>Text</key>
464
+ <dict>
465
+ <key>Text</key>
466
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1343\cocoasubrtf160
467
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
468
+ {\colortbl;\red255\green255\blue255;}
469
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
470
+
471
+ \f0\fs24 \cf0 Acme}</string>
472
+ </dict>
473
+ </dict>
474
+ <dict>
475
+ <key>Bounds</key>
476
+ <string>{{185, 161}, {81, 48}}</string>
477
+ <key>Class</key>
478
+ <string>ShapedGraphic</string>
479
+ <key>ID</key>
480
+ <integer>5</integer>
481
+ <key>Magnets</key>
482
+ <array>
483
+ <string>{0, 1}</string>
484
+ <string>{0, -1}</string>
485
+ <string>{1, 0}</string>
486
+ <string>{-1, 0}</string>
487
+ </array>
488
+ <key>Shape</key>
489
+ <string>Rectangle</string>
490
+ <key>Style</key>
491
+ <dict>
492
+ <key>stroke</key>
493
+ <dict>
494
+ <key>CornerRadius</key>
495
+ <real>5</real>
496
+ </dict>
497
+ </dict>
498
+ <key>Text</key>
499
+ <dict>
500
+ <key>Text</key>
501
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1343\cocoasubrtf160
502
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
503
+ {\colortbl;\red255\green255\blue255;}
504
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
505
+
506
+ \f0\fs24 \cf0 Premium Segment}</string>
507
+ </dict>
508
+ </dict>
509
+ <dict>
510
+ <key>Bounds</key>
511
+ <string>{{185, 42}, {81, 48}}</string>
512
+ <key>Class</key>
513
+ <string>ShapedGraphic</string>
514
+ <key>ID</key>
515
+ <integer>4</integer>
516
+ <key>Magnets</key>
517
+ <array>
518
+ <string>{0, 1}</string>
519
+ <string>{0, -1}</string>
520
+ <string>{1, 0}</string>
521
+ <string>{-1, 0}</string>
522
+ </array>
523
+ <key>Shape</key>
524
+ <string>Rectangle</string>
525
+ <key>Style</key>
526
+ <dict>
527
+ <key>stroke</key>
528
+ <dict>
529
+ <key>CornerRadius</key>
530
+ <real>5</real>
531
+ </dict>
532
+ </dict>
533
+ <key>Text</key>
534
+ <dict>
535
+ <key>Text</key>
536
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1343\cocoasubrtf160
537
+ \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
538
+ {\colortbl;\red255\green255\blue255;}
539
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
540
+
541
+ \f0\fs24 \cf0 Basic Segment}</string>
542
+ </dict>
543
+ </dict>
544
+ </array>
545
+ <key>GridInfo</key>
546
+ <dict/>
547
+ <key>GuidesLocked</key>
548
+ <string>NO</string>
549
+ <key>GuidesVisible</key>
550
+ <string>YES</string>
551
+ <key>HPages</key>
552
+ <integer>1</integer>
553
+ <key>ImageCounter</key>
554
+ <integer>1</integer>
555
+ <key>KeepToScale</key>
556
+ <false/>
557
+ <key>Layers</key>
558
+ <array>
559
+ <dict>
560
+ <key>Lock</key>
561
+ <string>NO</string>
562
+ <key>Name</key>
563
+ <string>Layer 1</string>
564
+ <key>Print</key>
565
+ <string>YES</string>
566
+ <key>View</key>
567
+ <string>YES</string>
568
+ </dict>
569
+ </array>
570
+ <key>LayoutInfo</key>
571
+ <dict>
572
+ <key>Animate</key>
573
+ <string>NO</string>
574
+ <key>circoMinDist</key>
575
+ <real>18</real>
576
+ <key>circoSeparation</key>
577
+ <real>0.0</real>
578
+ <key>layoutEngine</key>
579
+ <string>dot</string>
580
+ <key>neatoSeparation</key>
581
+ <real>0.0</real>
582
+ <key>twopiSeparation</key>
583
+ <real>0.0</real>
584
+ </dict>
585
+ <key>LinksVisible</key>
586
+ <string>NO</string>
587
+ <key>MagnetsVisible</key>
588
+ <string>NO</string>
589
+ <key>MasterSheets</key>
590
+ <array/>
591
+ <key>ModificationDate</key>
592
+ <string>2016-03-09 18:42:46 +0000</string>
593
+ <key>Modifier</key>
594
+ <string>Tomas Svarovsky</string>
595
+ <key>NotesVisible</key>
596
+ <string>NO</string>
597
+ <key>Orientation</key>
598
+ <integer>2</integer>
599
+ <key>OriginVisible</key>
600
+ <string>NO</string>
601
+ <key>PageBreaks</key>
602
+ <string>YES</string>
603
+ <key>PrintInfo</key>
604
+ <dict>
605
+ <key>NSBottomMargin</key>
606
+ <array>
607
+ <string>float</string>
608
+ <string>41</string>
609
+ </array>
610
+ <key>NSHorizonalPagination</key>
611
+ <array>
612
+ <string>coded</string>
613
+ <string>BAtzdHJlYW10eXBlZIHoA4QBQISEhAhOU051bWJlcgCEhAdOU1ZhbHVlAISECE5TT2JqZWN0AIWEASqEhAFxlwCG</string>
614
+ </array>
615
+ <key>NSLeftMargin</key>
616
+ <array>
617
+ <string>float</string>
618
+ <string>18</string>
619
+ </array>
620
+ <key>NSPaperSize</key>
621
+ <array>
622
+ <string>size</string>
623
+ <string>{611.99999904632568, 792}</string>
624
+ </array>
625
+ <key>NSPrintReverseOrientation</key>
626
+ <array>
627
+ <string>int</string>
628
+ <string>0</string>
629
+ </array>
630
+ <key>NSPrinter</key>
631
+ <array>
632
+ <string>coded</string>
633
+ <string>BAtzdHJlYW10eXBlZIHoA4QBQISEhAlOU1ByaW50ZXIAhIQITlNPYmplY3QAhZKEhIQITlNTdHJpbmcBlIQBKxBIUCBCVyAtIFBSRyAtIE1ThoY=</string>
634
+ </array>
635
+ <key>NSPrinterName</key>
636
+ <array>
637
+ <string>string</string>
638
+ <string>HP BW - PRG - MS</string>
639
+ </array>
640
+ <key>NSRightMargin</key>
641
+ <array>
642
+ <string>float</string>
643
+ <string>18</string>
644
+ </array>
645
+ <key>NSTopMargin</key>
646
+ <array>
647
+ <string>float</string>
648
+ <string>18</string>
649
+ </array>
650
+ </dict>
651
+ <key>PrintOnePage</key>
652
+ <false/>
653
+ <key>ReadOnly</key>
654
+ <string>NO</string>
655
+ <key>RowAlign</key>
656
+ <integer>1</integer>
657
+ <key>RowSpacing</key>
658
+ <real>36</real>
659
+ <key>SheetTitle</key>
660
+ <string>Canvas 1</string>
661
+ <key>SmartAlignmentGuidesActive</key>
662
+ <string>YES</string>
663
+ <key>SmartDistanceGuidesActive</key>
664
+ <string>YES</string>
665
+ <key>UniqueID</key>
666
+ <integer>1</integer>
667
+ <key>UseEntirePage</key>
668
+ <false/>
669
+ <key>VPages</key>
670
+ <integer>1</integer>
671
+ <key>WindowInfo</key>
672
+ <dict>
673
+ <key>CurrentSheet</key>
674
+ <integer>0</integer>
675
+ <key>ExpandedCanvases</key>
676
+ <array>
677
+ <dict>
678
+ <key>name</key>
679
+ <string>Canvas 1</string>
680
+ </dict>
681
+ </array>
682
+ <key>Frame</key>
683
+ <string>{{132, 26}, {710, 751}}</string>
684
+ <key>ListView</key>
685
+ <true/>
686
+ <key>OutlineWidth</key>
687
+ <integer>142</integer>
688
+ <key>RightSidebar</key>
689
+ <false/>
690
+ <key>ShowRuler</key>
691
+ <true/>
692
+ <key>Sidebar</key>
693
+ <true/>
694
+ <key>SidebarWidth</key>
695
+ <integer>120</integer>
696
+ <key>VisibleRegion</key>
697
+ <string>{{0, 15.5}, {575, 609}}</string>
698
+ <key>Zoom</key>
699
+ <real>1</real>
700
+ <key>ZoomValues</key>
701
+ <array>
702
+ <array>
703
+ <string>Canvas 1</string>
704
+ <real>1</real>
705
+ <real>1</real>
706
+ </array>
707
+ </array>
708
+ </dict>
709
+ </dict>
710
+ </plist>