bio-svgenes 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,291 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # untitled
4
+ #
5
+ # Created by Dan MacLean (TSL) on 2012-09-28.
6
+ # Copyright (c) . All rights reserved.
7
+ ###################################################
8
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
9
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
10
+
11
+ require 'bio-svgenes'
12
+
13
+ p = Page.new(:width => 800,
14
+ :height => 200,
15
+ :number_of_intervals => 10)
16
+
17
+
18
+ generic_track = p.add_track(:glyph => :generic,
19
+ :name => 'generic_features',
20
+ :label => true )
21
+
22
+ feature1 = MiniFeature.new(:start => 923, :end => 2212, :strand => '+', :id => "MyFeature")
23
+ generic_track.add(feature1)
24
+ feature2 = MiniFeature.new(:start => 467, :end => 1234)
25
+ generic_track.add(feature2)
26
+ feature2 = MiniFeature.new(:start => 12000, :end => 12030)
27
+ generic_track.add(feature2)
28
+ feature2 = MiniFeature.new(:start => 12000, :end => 12030)
29
+ generic_track.add(feature2)
30
+ feature2 = MiniFeature.new(:start => 12000, :end => 12030)
31
+ generic_track.add(feature2)
32
+ feature2 = MiniFeature.new(:start => 12000, :end => 12030)
33
+ generic_track.add(feature2)
34
+
35
+
36
+
37
+ generic_track = p.add_track(:glyph => :generic, :name => 'more_generic_features', :label => true, :fill_color => 'green' )
38
+
39
+ feature1 = MiniFeature.new(:start => 923, :end => 2212)
40
+ generic_track.add(feature1)
41
+ feature1 = MiniFeature.new(:start => 3935, :end => 4212)
42
+ generic_track.add(feature1)
43
+ feature1 = MiniFeature.new(:start => 467, :end => 15000)
44
+ generic_track.add(feature1)
45
+
46
+
47
+ generic_track = p.add_track(:glyph => :generic,
48
+ :name => 'yet_more_generic_features',
49
+ :label => true,
50
+ :fill_color => 'yellow',
51
+ :stroke_width => '1',
52
+ :x_round => 10 )
53
+
54
+
55
+ feature1 = MiniFeature.new(:start => 923, :end => 2212)
56
+ generic_track.add(feature1)
57
+ feature2 = MiniFeature.new(:start => 467, :end => 1234)
58
+ generic_track.add(feature2)
59
+ feature2 = MiniFeature.new(:start => 12000, :end => 12030)
60
+ generic_track.add(feature2)
61
+ feature2 = MiniFeature.new(:start => 12000, :end => 12030)
62
+ generic_track.add(feature2)
63
+ feature1 = MiniFeature.new(:start => 467, :end => 15000)
64
+ generic_track.add(feature1)
65
+
66
+ directed_track = p.add_track(:glyph => :directed,
67
+ :name => 'directed_features gradient',
68
+ :label => true,
69
+ :fill_color => :red_white_h )
70
+
71
+ feature2 = MiniFeature.new(:start => 467, :end => 1234, :strand => '+')
72
+ directed_track.add(feature2)
73
+ feature1 = MiniFeature.new(:start => 923, :end => 2212, :strand => '-')
74
+ directed_track.add(feature1)
75
+
76
+
77
+ generic_track = p.add_track(:glyph => :generic,
78
+ :name => 'generic_features',
79
+ :label => true )
80
+
81
+ feature1 = MiniFeature.new(:start => 923, :end => 2212, :strand => '+')
82
+ generic_track.add(feature1) # will be Bio::Feature object
83
+ feature2 = MiniFeature.new(:start => 467, :end => 1234)
84
+ generic_track.add(feature2)
85
+ feature2 = MiniFeature.new(:start => 12000, :end => 2030)
86
+ generic_track.add(feature2)
87
+ feature2 = MiniFeature.new(:start => 12000, :end => 12030)
88
+ generic_track.add(feature2)
89
+ feature2 = MiniFeature.new(:start => 12000, :end => 12030)
90
+ generic_track.add(feature2)
91
+ feature2 = MiniFeature.new(:start => 12000, :end => 12030)
92
+ generic_track.add(feature2)
93
+
94
+
95
+
96
+ generic_track = p.add_track(:glyph => :generic,
97
+ :name => 'more_generic_features',
98
+ :label => true,
99
+ :fill_color => 'green' )
100
+
101
+ feature1 = MiniFeature.new(:start => 923, :end => 2212)
102
+ generic_track.add(feature1)
103
+ feature1 = MiniFeature.new(:start => 3935, :end => 4212)
104
+ generic_track.add(feature1)
105
+ feature1 = MiniFeature.new(:start => 467, :end => 15000)
106
+ generic_track.add(feature1)
107
+
108
+
109
+ generic_track = p.add_track(:glyph => :generic,
110
+ :name => 'yet_more_generic_features',
111
+ :label => true,
112
+ :fill_color => 'yellow',
113
+ :stroke_width => '1',
114
+ :x_round => 1 )
115
+
116
+ feature1 = MiniFeature.new(:start => 923, :end => 2212)
117
+ generic_track.add(feature1) # will be Bio::Feature object
118
+ feature2 = MiniFeature.new(:start => 467, :end => 1234)
119
+ generic_track.add(feature2)
120
+ feature2 = MiniFeature.new(:start => 12000, :end => 12030)
121
+ generic_track.add(feature2)
122
+ feature2 = MiniFeature.new(:start => 12000, :end => 12030)
123
+ generic_track.add(feature2)
124
+ feature1 = MiniFeature.new(:start => 467, :end => 15000)
125
+ generic_track.add(feature1)
126
+
127
+ directed_track = p.add_track(:glyph => :directed,
128
+ :name => 'directed_features',
129
+ :label => true )
130
+
131
+ feature2 = MiniFeature.new(:start => 467, :end => 1234, :strand => '+')
132
+ directed_track.add(feature2)
133
+ feature1 = MiniFeature.new(:start => 923, :end => 2212, :strand => '-')
134
+ directed_track.add(feature1)
135
+
136
+
137
+ generic_track = p.add_track(:glyph => :generic,
138
+ :name => 'generic_features',
139
+ :label => true )
140
+
141
+ feature1 = MiniFeature.new(:start => 923, :end => 2212, :strand => '+')
142
+ generic_track.add(feature1) # will be Bio::Feature object
143
+ feature2 = MiniFeature.new(:start => 467, :end => 1234)
144
+ generic_track.add(feature2)
145
+ feature2 = MiniFeature.new(:start => 12000, :end => 12030)
146
+ generic_track.add(feature2)
147
+ feature2 = MiniFeature.new(:start => 12000, :end => 12030)
148
+ generic_track.add(feature2)
149
+ feature2 = MiniFeature.new(:start => 12000, :end => 12030)
150
+ generic_track.add(feature2)
151
+ feature2 = MiniFeature.new(:start => 12000, :end => 12030)
152
+ generic_track.add(feature2)
153
+
154
+
155
+
156
+ generic_track = p.add_track(:glyph => :generic,
157
+ :name => 'more_generic_features',
158
+ :label => true,
159
+ :fill_color => 'green' )
160
+
161
+ feature1 = MiniFeature.new(:start => 923, :end => 2212)
162
+ generic_track.add(feature1)
163
+ feature1 = MiniFeature.new(:start => 3935, :end => 4212)
164
+ generic_track.add(feature1)
165
+ feature1 = MiniFeature.new(:start => 467, :end => 15000)
166
+ generic_track.add(feature1)
167
+
168
+
169
+ generic_track = p.add_track(:glyph => :generic,
170
+ :name => 'yet_more_generic_features',
171
+ :label => true,
172
+ :fill_color => :yellow_white_radial,
173
+ :stroke_width => '1',
174
+ :x_round => 4 )
175
+
176
+ feature1 = MiniFeature.new(:start => 923, :end => 2212)
177
+ generic_track.add(feature1) # will be Bio::Feature object
178
+ feature2 = MiniFeature.new(:start => 467, :end => 1234)
179
+ generic_track.add(feature2)
180
+ feature2 = MiniFeature.new(:start => 12000, :end => 12030)
181
+ generic_track.add(feature2)
182
+ feature2 = MiniFeature.new(:start => 12000, :end => 12030)
183
+ generic_track.add(feature2)
184
+ feature1 = MiniFeature.new(:start => 467, :end => 15000)
185
+ generic_track.add(feature1)
186
+
187
+ directed_track = p.add_track(:glyph => :directed,
188
+ :name => 'directed_features fat ones',
189
+ :label => true,
190
+ :feature_height => 32,
191
+ :fill_color => :red_white_h)
192
+
193
+ feature2 = MiniFeature.new(:start => 467, :end => 1234, :strand => '+' )
194
+ directed_track.add(feature2)
195
+ feature1 = MiniFeature.new(:start => 923, :end => 2212, :strand => '-')
196
+ directed_track.add(feature1)
197
+ feature2 = MiniFeature.new(:start => 467, :end => 1234, :strand => '+')
198
+ directed_track.add(feature2)
199
+ feature1 = MiniFeature.new(:start => 923, :end => 2212, :strand => '-')
200
+ directed_track.add(feature1)
201
+
202
+ transcript_track = p.add_track(:glyph => :transcript,
203
+ :name => 'transcripts (grouped models)',
204
+ :label => true,
205
+ :exon_fill_color => 'green',
206
+ :utr_fill_color => {:type => :radial, :id => :custom, :cx => 5, :cy => 5, :r => 50, :fx => 50, :fy => 50, :stops => [ {:offset => 0, :color => 'rgb(255,255,255)', :opacity => 0}, {:offset => 100, :color => 'rgb(0,127,200)', :opacity => 1},]},
207
+ :line_color => 'black',
208
+ :feature_height => 20 )
209
+
210
+ feature3 = MiniFeature.new(:start => 923,
211
+ :end => 2345,
212
+ :strand => '-',
213
+ :exons => [1000,1200,1800,2000],
214
+ :utrs => [923,1000,2000,2345])
215
+ transcript_track.add(feature3)
216
+
217
+ feature1 = MiniFeature.new(:start => 467,
218
+ :end => 15000,
219
+ :exons => [1500,2500, 3000,7000, 9000,12000],
220
+ :utrs => [467, 1000, 13500,14000, 14400, 14900],
221
+ :id => 'MyTranscript')
222
+ transcript_track.add(feature1)
223
+
224
+
225
+ transcript_track = p.add_track(:glyph => :transcript,
226
+ :name => 'transcripts (grouped models)',
227
+ :label => true,
228
+ :exon_fill_color => :green_white_h,
229
+ :utr_fill_color => :blue_white_h,
230
+ :line_color => 'black',
231
+ :gap_marker => 'angled',
232
+ :feature_height => 20 )
233
+
234
+ feature3 = MiniFeature.new(:start => 923,
235
+ :end => 2345,
236
+ :strand => '-',
237
+ :exons => [1000,1200,1800,2000],
238
+ :utrs => [923,1000,2000,2345])
239
+ transcript_track.add(feature3)
240
+
241
+ feature1 = MiniFeature.new(:start => 467,
242
+ :end => 15000,
243
+ :exons => [1500,2500, 3000,7000, 9000,12000],
244
+ :utrs => [467, 1000, 13500,14000])
245
+ transcript_track.add(feature1)
246
+
247
+ data_track = p.add_track(:glyph => :histogram, #might also be :density or heatmap ##page doesn't know how to deal with individual file types, rather page object takes a list of values (e.g bar heights) from pre-processed data source and renders those
248
+ :stroke_color => 'black',
249
+ :fill_color => 'gold',
250
+ :track_height => 150,
251
+ :name => 'data track',
252
+ :label => true,
253
+ :stroke_width => '1',
254
+ :x_round => 1,
255
+ :y_round => 1
256
+
257
+ )
258
+ ##generate a load of data, each data point becomes a feature...
259
+ data = (400..25000).step(1000) do |start|
260
+ data_feature = MiniFeature.new(:start => start,
261
+ :end => start + 999,
262
+ :segment_height => rand(30)
263
+ )
264
+ data_track.add(data_feature)
265
+
266
+ end
267
+
268
+
269
+ data_track1 = p.add_track(:glyph => :histogram, #might also be :density or heatmap ##page doesn't know how to deal with individual file types, rather page object takes a list of values (e.g bar heights) from pre-processed data source and renders those
270
+ :stroke_color => 'black',
271
+ :fill_color => :red_white_radial,
272
+ :track_height => 150,
273
+ :name => 'data track',
274
+ :label => true,
275
+ :stroke_width => '1',
276
+ :x_round => 1,
277
+ :y_round => 1
278
+
279
+ )
280
+ ##generate a load of data, each data point becomes a feature...
281
+ data = (400..25000).step(200) do |start|
282
+ data_feature = MiniFeature.new(:start => start,
283
+ :end => start + 200,
284
+ :segment_height => rand(30)
285
+ )
286
+ data_track1.add(data_feature)
287
+
288
+ end
289
+
290
+
291
+ p.draw
@@ -0,0 +1,301 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="1000" height="2266" style="" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+
3
+ <defs>
4
+
5
+ <linearGradient id="red_white_h" x1="0%" x2="0%" y1="0%" y2="100%">
6
+ <stop offset="0%" style="stop-color:red;stop-opacity:1" />
7
+ <stop offset="100%" style="stop-color:white;stop-opacity:1" /></linearGradient>
8
+ <radialGradient id="yellow_white_radial" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
9
+ <stop offset="0%" style="stop-color:white;stop-opacity:0" />
10
+ <stop offset="100%" style="stop-color:yellow;stop-opacity:1" /></radialGradient>
11
+ <linearGradient id="red_white_h" x1="0%" x2="0%" y1="0%" y2="100%">
12
+ <stop offset="0%" style="stop-color:red;stop-opacity:1" />
13
+ <stop offset="100%" style="stop-color:white;stop-opacity:1" /></linearGradient>
14
+ <radialGradient id="custom" cx="5%" cy="5%" r="50%" fx="50%" fy="50%">
15
+ <stop offset="0%" style="stop-color:rgb(255,255,255);stop-opacity:0" />
16
+ <stop offset="100%" style="stop-color:rgb(0,127,200);stop-opacity:1" /></radialGradient>
17
+ <linearGradient id="green_white_h" x1="0%" x2="0%" y1="0%" y2="100%">
18
+ <stop offset="0%" style="stop-color:green;stop-opacity:1" />
19
+ <stop offset="100%" style="stop-color:white;stop-opacity:1" /></linearGradient>
20
+ <linearGradient id="blue_white_h" x1="0%" x2="0%" y1="0%" y2="100%">
21
+ <stop offset="0%" style="stop-color:blue;stop-opacity:1" />
22
+ <stop offset="100%" style="stop-color:white;stop-opacity:1" /></linearGradient>
23
+ <radialGradient id="red_white_radial" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
24
+ <stop offset="0%" style="stop-color:white;stop-opacity:0" />
25
+ <stop offset="100%" style="stop-color:red;stop-opacity:1" /></radialGradient>
26
+
27
+ </defs>
28
+
29
+ <line x1="1" y1="20" x2="880.0" y2="20" stroke="black" stroke-width="1" style=""/>
30
+ <rect x="0.0" y="20" width="1" height="5" fill="" rx="" ry="" stroke="black" stroke-width="1" style=""/>
31
+ <text x="0.0" y="40" fill="black" transform="" style="font-family:Arial;font-style:italic">400</text>
32
+ <rect x="80.6129032258064" y="20" width="1" height="5" fill="" rx="" ry="" stroke="black" stroke-width="1" style=""/>
33
+ <text x="80.6129032258064" y="40" fill="black" transform="" style="font-family:Arial;font-style:italic">2899</text>
34
+ <rect x="161.225806451613" y="20" width="1" height="5" fill="" rx="" ry="" stroke="black" stroke-width="1" style=""/>
35
+ <text x="161.225806451613" y="40" fill="black" transform="" style="font-family:Arial;font-style:italic">5398</text>
36
+ <rect x="241.838709677419" y="20" width="1" height="5" fill="" rx="" ry="" stroke="black" stroke-width="1" style=""/>
37
+ <text x="241.838709677419" y="40" fill="black" transform="" style="font-family:Arial;font-style:italic">7897</text>
38
+ <rect x="322.451612903226" y="20" width="1" height="5" fill="" rx="" ry="" stroke="black" stroke-width="1" style=""/>
39
+ <text x="322.451612903226" y="40" fill="black" transform="" style="font-family:Arial;font-style:italic">10396</text>
40
+ <rect x="403.064516129032" y="20" width="1" height="5" fill="" rx="" ry="" stroke="black" stroke-width="1" style=""/>
41
+ <text x="403.064516129032" y="40" fill="black" transform="" style="font-family:Arial;font-style:italic">12895</text>
42
+ <rect x="483.677419354839" y="20" width="1" height="5" fill="" rx="" ry="" stroke="black" stroke-width="1" style=""/>
43
+ <text x="483.677419354839" y="40" fill="black" transform="" style="font-family:Arial;font-style:italic">15394</text>
44
+ <rect x="564.290322580645" y="20" width="1" height="5" fill="" rx="" ry="" stroke="black" stroke-width="1" style=""/>
45
+ <text x="564.290322580645" y="40" fill="black" transform="" style="font-family:Arial;font-style:italic">17893</text>
46
+ <rect x="644.903225806452" y="20" width="1" height="5" fill="" rx="" ry="" stroke="black" stroke-width="1" style=""/>
47
+ <text x="644.903225806452" y="40" fill="black" transform="" style="font-family:Arial;font-style:italic">20392</text>
48
+ <rect x="725.516129032258" y="20" width="1" height="5" fill="" rx="" ry="" stroke="black" stroke-width="1" style=""/>
49
+ <text x="725.516129032258" y="40" fill="black" transform="" style="font-family:Arial;font-style:italic">22891</text>
50
+ <rect x="806.129032258065" y="20" width="1" height="5" fill="" rx="" ry="" stroke="black" stroke-width="1" style=""/>
51
+ <text x="806.129032258065" y="40" fill="black" transform="" style="font-family:Arial;font-style:italic">25390</text>
52
+ <text x="3" y="60" fill="black" transform="" style="font-family:monospace;">generic_features</text>
53
+ <rect x="16.7366694667787" y="100" width="41.2496499859994" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
54
+ <text x="59.9863194527781" y="100" fill="black" transform="" style="font-family:monospace;">MyFeature</text>
55
+ <rect x="2.14408576343054" y="80" width="24.544981799272" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
56
+ <rect x="371.214848593944" y="140" width="0.960038401536061" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
57
+ <rect x="371.214848593944" y="120" width="0.960038401536061" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
58
+ <rect x="371.214848593944" y="100" width="0.960038401536061" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
59
+ <rect x="371.214848593944" y="80" width="0.960038401536061" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
60
+ <text x="3" y="190" fill="black" transform="" style="font-family:monospace;">more_generic_features</text>
61
+ <rect x="16.7366694667787" y="230" width="41.2496499859994" height="10" fill="green" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
62
+ <rect x="113.124524980999" y="230" width="8.86435457418297" height="10" fill="green" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
63
+ <rect x="2.14408576343054" y="210" width="465.074602984119" height="10" fill="green" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
64
+ <text x="3" y="280" fill="black" transform="" style="font-family:monospace;">yet_more_generic_features</text>
65
+ <rect x="16.7366694667787" y="340" width="41.2496499859994" height="10" fill="yellow" rx="10" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
66
+ <rect x="2.14408576343054" y="320" width="24.544981799272" height="10" fill="yellow" rx="10" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
67
+ <rect x="371.214848593944" y="340" width="0.960038401536061" height="10" fill="yellow" rx="10" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
68
+ <rect x="371.214848593944" y="320" width="0.960038401536061" height="10" fill="yellow" rx="10" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
69
+ <rect x="2.14408576343054" y="300" width="465.074602984119" height="10" fill="yellow" rx="10" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
70
+ <text x="3" y="390" fill="black" transform="" style="font-family:monospace;">directed_features gradient</text>
71
+ <polygon points="2.14408576343054,430 24.6890675627025,430 26.6890675627025,435 24.6890675627025,440 2.14408576343054,440" fill="url(#red_white_h)" stroke="black" stroke-width="1" style="fill-opacity:0.4;" />
72
+ <polygon points="16.7366694667787,410 57.9863194527781,410 57.9863194527781,420 16.7366694667787,420 14.7366694667787,415" fill="url(#red_white_h)" stroke="black" stroke-width="1" style="fill-opacity:0.4;" />
73
+ <text x="3" y="480" fill="black" transform="" style="font-family:monospace;">generic_features</text>
74
+ <rect x="16.7366694667787" y="520" width="41.2496499859994" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
75
+ <rect x="2.14408576343054" y="500" width="24.544981799272" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
76
+ <rect x="371.214848593944" y="560" width="-319.052762110484" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
77
+ <rect x="371.214848593944" y="540" width="0.960038401536061" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
78
+ <rect x="371.214848593944" y="520" width="0.960038401536061" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
79
+ <rect x="371.214848593944" y="500" width="0.960038401536061" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
80
+ <text x="3" y="610" fill="black" transform="" style="font-family:monospace;">more_generic_features</text>
81
+ <rect x="16.7366694667787" y="650" width="41.2496499859994" height="10" fill="green" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
82
+ <rect x="113.124524980999" y="650" width="8.86435457418297" height="10" fill="green" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
83
+ <rect x="2.14408576343054" y="630" width="465.074602984119" height="10" fill="green" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
84
+ <text x="3" y="700" fill="black" transform="" style="font-family:monospace;">yet_more_generic_features</text>
85
+ <rect x="16.7366694667787" y="760" width="41.2496499859994" height="10" fill="yellow" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
86
+ <rect x="2.14408576343054" y="740" width="24.544981799272" height="10" fill="yellow" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
87
+ <rect x="371.214848593944" y="760" width="0.960038401536061" height="10" fill="yellow" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
88
+ <rect x="371.214848593944" y="740" width="0.960038401536061" height="10" fill="yellow" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
89
+ <rect x="2.14408576343054" y="720" width="465.074602984119" height="10" fill="yellow" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
90
+ <text x="3" y="810" fill="black" transform="" style="font-family:monospace;">directed_features</text>
91
+ <polygon points="2.14408576343054,850 24.6890675627025,850 26.6890675627025,855 24.6890675627025,860 2.14408576343054,860" fill="red" stroke="black" stroke-width="1" style="fill-opacity:0.4;" />
92
+ <polygon points="16.7366694667787,830 57.9863194527781,830 57.9863194527781,840 16.7366694667787,840 14.7366694667787,835" fill="red" stroke="black" stroke-width="1" style="fill-opacity:0.4;" />
93
+ <text x="3" y="900" fill="black" transform="" style="font-family:monospace;">generic_features</text>
94
+ <rect x="16.7366694667787" y="940" width="41.2496499859994" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
95
+ <rect x="2.14408576343054" y="920" width="24.544981799272" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
96
+ <rect x="371.214848593944" y="980" width="0.960038401536061" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
97
+ <rect x="371.214848593944" y="960" width="0.960038401536061" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
98
+ <rect x="371.214848593944" y="940" width="0.960038401536061" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
99
+ <rect x="371.214848593944" y="920" width="0.960038401536061" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
100
+ <text x="3" y="1030" fill="black" transform="" style="font-family:monospace;">more_generic_features</text>
101
+ <rect x="16.7366694667787" y="1070" width="41.2496499859994" height="10" fill="green" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
102
+ <rect x="113.124524980999" y="1070" width="8.86435457418297" height="10" fill="green" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
103
+ <rect x="2.14408576343054" y="1050" width="465.074602984119" height="10" fill="green" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
104
+ <text x="3" y="1120" fill="black" transform="" style="font-family:monospace;">yet_more_generic_features</text>
105
+ <rect x="16.7366694667787" y="1180" width="41.2496499859994" height="10" fill="url(#yellow_white_radial)" rx="4" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
106
+ <rect x="2.14408576343054" y="1160" width="24.544981799272" height="10" fill="url(#yellow_white_radial)" rx="4" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
107
+ <rect x="371.214848593944" y="1180" width="0.960038401536061" height="10" fill="url(#yellow_white_radial)" rx="4" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
108
+ <rect x="371.214848593944" y="1160" width="0.960038401536061" height="10" fill="url(#yellow_white_radial)" rx="4" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
109
+ <rect x="2.14408576343054" y="1140" width="465.074602984119" height="10" fill="url(#yellow_white_radial)" rx="4" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
110
+ <text x="3" y="1230" fill="black" transform="" style="font-family:monospace;">directed_features fat ones</text>
111
+ <polygon points="2.14408576343054,1486 20.2890675627025,1486 26.6890675627025,1502 20.2890675627025,1518 2.14408576343054,1518" fill="url(#red_white_h)" stroke="black" stroke-width="1" style="fill-opacity:0.4;" />
112
+ <polygon points="16.7366694667787,1422 57.9863194527781,1422 57.9863194527781,1454 16.7366694667787,1454 10.3366694667787,1438" fill="url(#red_white_h)" stroke="black" stroke-width="1" style="fill-opacity:0.4;" />
113
+ <polygon points="2.14408576343054,1358 20.2890675627025,1358 26.6890675627025,1374 20.2890675627025,1390 2.14408576343054,1390" fill="url(#red_white_h)" stroke="black" stroke-width="1" style="fill-opacity:0.4;" />
114
+ <polygon points="16.7366694667787,1294 57.9863194527781,1294 57.9863194527781,1326 16.7366694667787,1326 10.3366694667787,1310" fill="url(#red_white_h)" stroke="black" stroke-width="1" style="fill-opacity:0.4;" />
115
+ <text x="3" y="1536" fill="black" transform="" style="font-family:monospace;">transcripts (grouped models)</text>
116
+ <polygon points="16.7366694667787,1616 19.2007680307212,1616 19.2007680307212,1636 16.7366694667787,1636 12.7366694667787,1626" fill="url(#custom)" stroke="black" stroke-width="1" style="" />
117
+ <rect x="51.2020480819233" y="1616" width="11.0404416176647" height="20" fill="url(#custom)" rx="" ry="" stroke="black" stroke-width="1" style=""/>
118
+ <rect x="19.2007680307212" y="1616" width="6.40025601024041" height="20" fill="green" rx="" ry="" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
119
+ <rect x="44.8017920716829" y="1616" width="6.40025601024041" height="20" fill="green" rx="" ry="" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
120
+ <line x1="16.7366694667787" y1="1626" x2="62.242489699588" y2="1626" stroke="black" stroke-width="1" style=""/>
121
+ <polygon points="448.017920716829,1576 460.01856074243,1576 464.01856074243,1586 460.01856074243,1596 448.017920716829,1596" fill="url(#custom)" stroke="black" stroke-width="1" style="" />
122
+ <rect x="2.14408576343054" y="1576" width="17.0566822672907" height="20" fill="url(#custom)" rx="" ry="" stroke="black" stroke-width="1" style=""/>
123
+ <rect x="419.216768670747" y="1576" width="16.000640025601" height="20" fill="url(#custom)" rx="" ry="" stroke="black" stroke-width="1" style=""/>
124
+ <rect x="35.2014080563223" y="1576" width="32.001280051202" height="20" fill="green" rx="" ry="" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
125
+ <rect x="83.2033281331253" y="1576" width="128.005120204808" height="20" fill="green" rx="" ry="" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
126
+ <rect x="275.211008440338" y="1576" width="96.0038401536061" height="20" fill="green" rx="" ry="" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
127
+ <line x1="2.14408576343054" y1="1586" x2="467.21868874755" y2="1586" stroke="black" stroke-width="1" style=""/>
128
+ <text x="469.21868874755" y="1576" fill="black" transform="" style="font-family:monospace;">MyTranscript</text>
129
+ <text x="3" y="1666" fill="black" transform="" style="font-family:monospace;">transcripts (grouped models)</text>
130
+ <polygon points="16.7366694667787,1746 19.2007680307212,1746 19.2007680307212,1766 16.7366694667787,1766 12.7366694667787,1756" fill="url(#blue_white_h)" stroke="black" stroke-width="1" style="" />
131
+ <rect x="51.2020480819233" y="1746" width="11.0404416176647" height="20" fill="url(#blue_white_h)" rx="" ry="" stroke="black" stroke-width="1" style=""/>
132
+ <rect x="19.2007680307212" y="1746" width="6.40025601024041" height="20" fill="url(#green_white_h)" rx="" ry="" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
133
+ <rect x="44.8017920716829" y="1746" width="6.40025601024041" height="20" fill="url(#green_white_h)" rx="" ry="" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
134
+ <polyline points="25.6010240409616,1756 35.2014080563223,1746 44.8017920716829,1756" fill="none" stroke="black" stroke-width="1" style="" />
135
+ <polygon points="419.216768670747,1706 431.217408696348,1706 435.217408696348,1716 431.217408696348,1726 419.216768670747,1726" fill="url(#blue_white_h)" stroke="black" stroke-width="1" style="" />
136
+ <rect x="2.14408576343054" y="1706" width="17.0566822672907" height="20" fill="url(#blue_white_h)" rx="" ry="" stroke="black" stroke-width="1" style=""/>
137
+ <rect x="35.2014080563223" y="1706" width="32.001280051202" height="20" fill="url(#green_white_h)" rx="" ry="" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
138
+ <rect x="83.2033281331253" y="1706" width="128.005120204808" height="20" fill="url(#green_white_h)" rx="" ry="" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
139
+ <rect x="275.211008440338" y="1706" width="96.0038401536061" height="20" fill="url(#green_white_h)" rx="" ry="" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
140
+ <polyline points="19.2007680307212,1716 27.2010880435217,1706 35.2014080563223,1716" fill="none" stroke="black" stroke-width="1" style="" />
141
+ <polyline points="67.2026881075243,1716 75.2030081203248,1706 83.2033281331253,1716" fill="none" stroke="black" stroke-width="1" style="" />
142
+ <polyline points="211.208448337934,1716 243.209728389136,1706 275.211008440338,1716" fill="none" stroke="black" stroke-width="1" style="" />
143
+ <polyline points="371.214848593944,1716 395.215808632345,1706 419.216768670747,1716" fill="none" stroke="black" stroke-width="1" style="" />
144
+ <text x="3" y="1796" fill="black" transform="" style="font-family:monospace;">data track</text>
145
+ <text x="805.0" y="1801" fill="black" transform="" style="font-family:monospace;">29</text>
146
+ <text x="805.0" y="1951" fill="black" transform="" style="font-family:monospace;">0</text>
147
+ <rect x="0.0" y="1821.68965517241" width="31.9692787711508" height="129.310344827586" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
148
+ <rect x="32.001280051202" y="1930.31034482759" width="31.9692787711508" height="20.6896551724138" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
149
+ <rect x="64.0025601024041" y="1816.51724137931" width="31.9692787711508" height="134.48275862069" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
150
+ <rect x="96.0038401536061" y="1801.0" width="31.9692787711508" height="150.0" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
151
+ <rect x="128.005120204808" y="1806.1724137931" width="31.9692787711508" height="144.827586206897" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
152
+ <rect x="160.00640025601" y="1801.0" width="31.9692787711508" height="150.0" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
153
+ <rect x="192.007680307212" y="1863.06896551724" width="31.9692787711508" height="87.9310344827586" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
154
+ <rect x="224.008960358414" y="1868.24137931034" width="31.9692787711508" height="82.7586206896552" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
155
+ <rect x="256.010240409616" y="1930.31034482759" width="31.9692787711508" height="20.6896551724138" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
156
+ <rect x="288.011520460818" y="1883.75862068966" width="31.9692787711508" height="67.2413793103448" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
157
+ <rect x="320.01280051202" y="1842.37931034483" width="31.9692787711508" height="108.620689655172" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
158
+ <rect x="352.014080563223" y="1826.86206896552" width="31.9692787711508" height="124.137931034483" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
159
+ <rect x="384.015360614425" y="1816.51724137931" width="31.9692787711508" height="134.48275862069" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
160
+ <rect x="416.016640665627" y="1899.27586206897" width="31.9692787711508" height="51.7241379310345" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
161
+ <rect x="448.017920716829" y="1919.96551724138" width="31.9692787711508" height="31.0344827586207" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
162
+ <rect x="480.019200768031" y="1832.03448275862" width="31.9692787711508" height="118.965517241379" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
163
+ <rect x="512.020480819233" y="1811.34482758621" width="31.9692787711508" height="139.655172413793" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
164
+ <rect x="544.021760870435" y="1945.8275862069" width="31.9692787711508" height="5.17241379310345" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
165
+ <rect x="576.023040921637" y="1945.8275862069" width="31.9692787711508" height="5.17241379310345" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
166
+ <rect x="608.024320972839" y="1811.34482758621" width="31.9692787711508" height="139.655172413793" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
167
+ <rect x="640.025601024041" y="1930.31034482759" width="31.9692787711508" height="20.6896551724138" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
168
+ <rect x="672.026881075243" y="1873.41379310345" width="31.9692787711508" height="77.5862068965517" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
169
+ <rect x="704.028161126445" y="1806.1724137931" width="31.9692787711508" height="144.827586206897" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
170
+ <rect x="736.029441177647" y="1930.31034482759" width="31.9692787711508" height="20.6896551724138" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
171
+ <rect x="768.030721228849" y="1873.41379310345" width="31.9692787711508" height="77.5862068965517" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
172
+ <text x="3" y="1996" fill="black" transform="" style="font-family:monospace;">data track</text>
173
+ <text x="805.0" y="2001" fill="black" transform="" style="font-family:monospace;">29</text>
174
+ <text x="805.0" y="2151" fill="black" transform="" style="font-family:monospace;">0</text>
175
+ <rect x="0.0" y="2073.41379310345" width="6.40025601024041" height="77.5862068965517" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
176
+ <rect x="6.40025601024041" y="2114.79310344828" width="6.40025601024041" height="36.2068965517241" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
177
+ <rect x="12.8005120204808" y="2135.48275862069" width="6.40025601024041" height="15.5172413793103" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
178
+ <rect x="19.2007680307212" y="2073.41379310345" width="6.40025601024041" height="77.5862068965517" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
179
+ <rect x="25.6010240409616" y="2001.0" width="6.40025601024041" height="150.0" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
180
+ <rect x="32.001280051202" y="2063.06896551724" width="6.40025601024041" height="87.9310344827586" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
181
+ <rect x="38.4015360614425" y="2099.27586206897" width="6.40025601024041" height="51.7241379310345" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
182
+ <rect x="44.8017920716829" y="2026.86206896552" width="6.40025601024041" height="124.137931034483" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
183
+ <rect x="51.2020480819233" y="2073.41379310345" width="6.40025601024041" height="77.5862068965517" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
184
+ <rect x="57.6023040921637" y="2109.62068965517" width="6.40025601024041" height="41.3793103448276" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
185
+ <rect x="64.0025601024041" y="2042.37931034483" width="6.40025601024041" height="108.620689655172" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
186
+ <rect x="70.4028161126445" y="2016.51724137931" width="6.40025601024041" height="134.48275862069" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
187
+ <rect x="76.8030721228849" y="2063.06896551724" width="6.40025601024041" height="87.9310344827586" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
188
+ <rect x="83.2033281331253" y="2052.72413793103" width="6.40025601024041" height="98.2758620689655" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
189
+ <rect x="89.6035841433657" y="2114.79310344828" width="6.40025601024041" height="36.2068965517241" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
190
+ <rect x="96.0038401536061" y="2016.51724137931" width="6.40025601024041" height="134.48275862069" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
191
+ <rect x="102.404096163847" y="2140.65517241379" width="6.40025601024041" height="10.3448275862069" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
192
+ <rect x="108.804352174087" y="2073.41379310345" width="6.40025601024041" height="77.5862068965517" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
193
+ <rect x="115.204608184327" y="2057.89655172414" width="6.40025601024041" height="93.1034482758621" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
194
+ <rect x="121.604864194568" y="2047.55172413793" width="6.40025601024041" height="103.448275862069" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
195
+ <rect x="128.005120204808" y="2011.34482758621" width="6.40025601024041" height="139.655172413793" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
196
+ <rect x="134.405376215049" y="2047.55172413793" width="6.40025601024041" height="103.448275862069" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
197
+ <rect x="140.805632225289" y="2094.10344827586" width="6.40025601024041" height="56.8965517241379" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
198
+ <rect x="147.205888235529" y="2021.68965517241" width="6.40025601024041" height="129.310344827586" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
199
+ <rect x="153.60614424577" y="2119.96551724138" width="6.40025601024041" height="31.0344827586207" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
200
+ <rect x="160.00640025601" y="2073.41379310345" width="6.40025601024041" height="77.5862068965517" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
201
+ <rect x="166.406656266251" y="2094.10344827586" width="6.40025601024041" height="56.8965517241379" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
202
+ <rect x="172.806912276491" y="2135.48275862069" width="6.40025601024041" height="15.5172413793103" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
203
+ <rect x="179.207168286731" y="2026.86206896552" width="6.40025601024041" height="124.137931034483" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
204
+ <rect x="185.607424296972" y="2078.58620689655" width="6.40025601024041" height="72.4137931034483" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
205
+ <rect x="192.007680307212" y="2135.48275862069" width="6.40025601024041" height="15.5172413793103" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
206
+ <rect x="198.407936317453" y="2021.68965517241" width="6.40025601024041" height="129.310344827586" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
207
+ <rect x="204.808192327693" y="2006.1724137931" width="6.40025601024041" height="144.827586206897" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
208
+ <rect x="211.208448337934" y="2037.20689655172" width="6.40025601024041" height="113.793103448276" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
209
+ <rect x="217.608704348174" y="2119.96551724138" width="6.40025601024041" height="31.0344827586207" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
210
+ <rect x="224.008960358414" y="2032.03448275862" width="6.40025601024041" height="118.965517241379" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
211
+ <rect x="230.409216368655" y="2057.89655172414" width="6.40025601024041" height="93.1034482758621" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
212
+ <rect x="236.809472378895" y="2083.75862068966" width="6.40025601024041" height="67.2413793103448" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
213
+ <rect x="243.209728389136" y="2078.58620689655" width="6.40025601024041" height="72.4137931034483" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
214
+ <rect x="249.609984399376" y="2016.51724137931" width="6.40025601024041" height="134.48275862069" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
215
+ <rect x="256.010240409616" y="2068.24137931034" width="6.40025601024041" height="82.7586206896552" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
216
+ <rect x="262.410496419857" y="2151.0" width="6.40025601024041" height="0.0" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
217
+ <rect x="268.810752430097" y="2021.68965517241" width="6.40025601024041" height="129.310344827586" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
218
+ <rect x="275.211008440338" y="2145.8275862069" width="6.40025601024041" height="5.17241379310345" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
219
+ <rect x="281.611264450578" y="2094.10344827586" width="6.40025601024041" height="56.8965517241379" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
220
+ <rect x="288.011520460818" y="2145.8275862069" width="6.40025601024041" height="5.17241379310345" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
221
+ <rect x="294.411776471059" y="2145.8275862069" width="6.40025601024041" height="5.17241379310345" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
222
+ <rect x="300.812032481299" y="2119.96551724138" width="6.40025601024041" height="31.0344827586207" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
223
+ <rect x="307.21228849154" y="2094.10344827586" width="6.40025601024041" height="56.8965517241379" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
224
+ <rect x="313.61254450178" y="2099.27586206897" width="6.40025601024041" height="51.7241379310345" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
225
+ <rect x="320.01280051202" y="2021.68965517241" width="6.40025601024041" height="129.310344827586" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
226
+ <rect x="326.413056522261" y="2088.93103448276" width="6.40025601024041" height="62.0689655172414" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
227
+ <rect x="332.813312532501" y="2125.13793103448" width="6.40025601024041" height="25.8620689655172" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
228
+ <rect x="339.213568542742" y="2078.58620689655" width="6.40025601024041" height="72.4137931034483" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
229
+ <rect x="345.613824552982" y="2037.20689655172" width="6.40025601024041" height="113.793103448276" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
230
+ <rect x="352.014080563223" y="2063.06896551724" width="6.40025601024041" height="87.9310344827586" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
231
+ <rect x="358.414336573463" y="2078.58620689655" width="6.40025601024041" height="72.4137931034483" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
232
+ <rect x="364.814592583703" y="2068.24137931034" width="6.40025601024041" height="82.7586206896552" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
233
+ <rect x="371.214848593944" y="2016.51724137931" width="6.40025601024041" height="134.48275862069" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
234
+ <rect x="377.615104604184" y="2037.20689655172" width="6.40025601024041" height="113.793103448276" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
235
+ <rect x="384.015360614425" y="2114.79310344828" width="6.40025601024041" height="36.2068965517241" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
236
+ <rect x="390.415616624665" y="2119.96551724138" width="6.40025601024041" height="31.0344827586207" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
237
+ <rect x="396.815872634905" y="2125.13793103448" width="6.40025601024041" height="25.8620689655172" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
238
+ <rect x="403.216128645146" y="2125.13793103448" width="6.40025601024041" height="25.8620689655172" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
239
+ <rect x="409.616384655386" y="2109.62068965517" width="6.40025601024041" height="41.3793103448276" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
240
+ <rect x="416.016640665627" y="2063.06896551724" width="6.40025601024041" height="87.9310344827586" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
241
+ <rect x="422.416896675867" y="2073.41379310345" width="6.40025601024041" height="77.5862068965517" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
242
+ <rect x="428.817152686107" y="2063.06896551724" width="6.40025601024041" height="87.9310344827586" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
243
+ <rect x="435.217408696348" y="2078.58620689655" width="6.40025601024041" height="72.4137931034483" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
244
+ <rect x="441.617664706588" y="2088.93103448276" width="6.40025601024041" height="62.0689655172414" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
245
+ <rect x="448.017920716829" y="2032.03448275862" width="6.40025601024041" height="118.965517241379" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
246
+ <rect x="454.418176727069" y="2078.58620689655" width="6.40025601024041" height="72.4137931034483" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
247
+ <rect x="460.818432737309" y="2068.24137931034" width="6.40025601024041" height="82.7586206896552" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
248
+ <rect x="467.21868874755" y="2057.89655172414" width="6.40025601024041" height="93.1034482758621" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
249
+ <rect x="473.61894475779" y="2151.0" width="6.40025601024041" height="0.0" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
250
+ <rect x="480.019200768031" y="2130.31034482759" width="6.40025601024041" height="20.6896551724138" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
251
+ <rect x="486.419456778271" y="2125.13793103448" width="6.40025601024041" height="25.8620689655172" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
252
+ <rect x="492.819712788512" y="2151.0" width="6.40025601024041" height="0.0" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
253
+ <rect x="499.219968798752" y="2104.44827586207" width="6.40025601024041" height="46.551724137931" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
254
+ <rect x="505.620224808992" y="2114.79310344828" width="6.40025601024041" height="36.2068965517241" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
255
+ <rect x="512.020480819233" y="2001.0" width="6.40025601024041" height="150.0" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
256
+ <rect x="518.420736829473" y="2057.89655172414" width="6.40025601024041" height="93.1034482758621" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
257
+ <rect x="524.820992839714" y="2057.89655172414" width="6.40025601024041" height="93.1034482758621" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
258
+ <rect x="531.221248849954" y="2042.37931034483" width="6.40025601024041" height="108.620689655172" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
259
+ <rect x="537.621504860194" y="2083.75862068966" width="6.40025601024041" height="67.2413793103448" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
260
+ <rect x="544.021760870435" y="2032.03448275862" width="6.40025601024041" height="118.965517241379" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
261
+ <rect x="550.422016880675" y="2016.51724137931" width="6.40025601024041" height="134.48275862069" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
262
+ <rect x="556.822272890916" y="2151.0" width="6.40025601024041" height="0.0" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
263
+ <rect x="563.222528901156" y="2083.75862068966" width="6.40025601024041" height="67.2413793103448" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
264
+ <rect x="569.622784911396" y="2006.1724137931" width="6.40025601024041" height="144.827586206897" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
265
+ <rect x="576.023040921637" y="2001.0" width="6.40025601024041" height="150.0" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
266
+ <rect x="582.423296931877" y="2078.58620689655" width="6.40025601024041" height="72.4137931034483" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
267
+ <rect x="588.823552942118" y="2042.37931034483" width="6.40025601024041" height="108.620689655172" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
268
+ <rect x="595.223808952358" y="2104.44827586207" width="6.40025601024041" height="46.551724137931" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
269
+ <rect x="601.624064962598" y="2073.41379310345" width="6.40025601024041" height="77.5862068965517" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
270
+ <rect x="608.024320972839" y="2151.0" width="6.40025601024041" height="0.0" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
271
+ <rect x="614.424576983079" y="2032.03448275862" width="6.40025601024041" height="118.965517241379" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
272
+ <rect x="620.82483299332" y="2099.27586206897" width="6.40025601024041" height="51.7241379310345" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
273
+ <rect x="627.22508900356" y="2135.48275862069" width="6.40025601024041" height="15.5172413793103" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
274
+ <rect x="633.6253450138" y="2125.13793103448" width="6.40025601024041" height="25.8620689655172" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
275
+ <rect x="640.025601024041" y="2114.79310344828" width="6.40025601024041" height="36.2068965517241" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
276
+ <rect x="646.425857034281" y="2119.96551724138" width="6.40025601024041" height="31.0344827586207" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
277
+ <rect x="652.826113044522" y="2094.10344827586" width="6.40025601024041" height="56.8965517241379" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
278
+ <rect x="659.226369054762" y="2037.20689655172" width="6.40025601024041" height="113.793103448276" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
279
+ <rect x="665.626625065003" y="2114.79310344828" width="6.40025601024041" height="36.2068965517241" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
280
+ <rect x="672.026881075243" y="2094.10344827586" width="6.40025601024041" height="56.8965517241379" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
281
+ <rect x="678.427137085483" y="2083.75862068966" width="6.40025601024041" height="67.2413793103448" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
282
+ <rect x="684.827393095724" y="2073.41379310345" width="6.40025601024041" height="77.5862068965517" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
283
+ <rect x="691.227649105964" y="2104.44827586207" width="6.40025601024041" height="46.551724137931" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
284
+ <rect x="697.627905116205" y="2057.89655172414" width="6.40025601024041" height="93.1034482758621" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
285
+ <rect x="704.028161126445" y="2088.93103448276" width="6.40025601024041" height="62.0689655172414" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
286
+ <rect x="710.428417136685" y="2078.58620689655" width="6.40025601024041" height="72.4137931034483" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
287
+ <rect x="716.828673146926" y="2073.41379310345" width="6.40025601024041" height="77.5862068965517" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
288
+ <rect x="723.228929157166" y="2094.10344827586" width="6.40025601024041" height="56.8965517241379" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
289
+ <rect x="729.629185167407" y="2125.13793103448" width="6.40025601024041" height="25.8620689655172" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
290
+ <rect x="736.029441177647" y="2073.41379310345" width="6.40025601024041" height="77.5862068965517" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
291
+ <rect x="742.429697187888" y="2006.1724137931" width="6.40025601024041" height="144.827586206897" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
292
+ <rect x="748.829953198128" y="2130.31034482759" width="6.40025601024041" height="20.6896551724138" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
293
+ <rect x="755.230209208368" y="2140.65517241379" width="6.40025601024041" height="10.3448275862069" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
294
+ <rect x="761.630465218609" y="2135.48275862069" width="6.40025601024041" height="15.5172413793103" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
295
+ <rect x="768.030721228849" y="2140.65517241379" width="6.40025601024041" height="10.3448275862069" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
296
+ <rect x="774.43097723909" y="2114.79310344828" width="6.40025601024041" height="36.2068965517241" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
297
+ <rect x="780.83123324933" y="2114.79310344828" width="6.40025601024041" height="36.2068965517241" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
298
+ <rect x="787.23148925957" y="2104.44827586207" width="6.40025601024041" height="46.551724137931" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
299
+
300
+ </svg>
301
+