Commit 532751eab88bdce2f901a454ed42ba3b7cfdc3bb

Authored by Melissa Wen
1 parent 2db71eb3

[i3eSW] Shortening some pipeline sections and relocating editable files to a figures' subfolder

ieeeSW/releaseEng3/IEEE_ThemeIssue_ReleaseEng_CD.md
1 --- 1 ---
2 -title: "Continuous Delivery: Building Trust in a Large-scale, complex government organization" 2 +title: "Continuous Delivery: Building Trust in a Large-scale, Complex Government Organization"
3 papersize: a4 3 papersize: a4
4 geometry: "left=1in,right=1.5in" 4 geometry: "left=1in,right=1.5in"
5 --- 5 ---
@@ -133,20 +133,19 @@ project, we became active participants in the deploy operations. @@ -133,20 +133,19 @@ project, we became active participants in the deploy operations.
133 SPB portal is a CDE with additional social features. We built system-of-systems 133 SPB portal is a CDE with additional social features. We built system-of-systems
134 adapting and integrating five existing OSS projects: Colab 134 adapting and integrating five existing OSS projects: Colab
135 (www.github.com/colab), Noosfero (www.noosfero.org), Gitlab (www.gitlab.com), 135 (www.github.com/colab), Noosfero (www.noosfero.org), Gitlab (www.gitlab.com),
136 -Mezuro (www.mezuro.org), and Mailman (www.list.org). Colab orchestrates these 136 +Mezuro (www.mezuro.org), and Mailman (www.list.org). Colab orchestrates these
137 multiple components and allowed us to smoothly provide a unified interface for 137 multiple components and allowed us to smoothly provide a unified interface for
138 -final users, including single sign-on and global searches [1]. All integrated 138 +final users, including single sign-on and global searches [1]. All these integrated
139 system represents a total of 106.253 commits and 1.347.421 lines of code. 139 system represents a total of 106.253 commits and 1.347.421 lines of code.
140 140
141 ![The SPB Deployment Pipeline.](figures/pipeline.png) 141 ![The SPB Deployment Pipeline.](figures/pipeline.png)
142 142
143 -The SPB portal deployment follows a typical CD pipeline [3], adapted to the 143 +The portal deployment follows a typical CD pipeline [3], adapted to the
144 technical and organizational context of our project and the use of OSS best 144 technical and organizational context of our project and the use of OSS best
145 practices, as presented in Figure 1. It started when new code arrived; and when 145 practices, as presented in Figure 1. It started when new code arrived; and when
146 it reach the production environment, we would restart the pipeline to release 146 it reach the production environment, we would restart the pipeline to release
147 new versions. 147 new versions.
148 148
149 -  
150 ### Automated Tests 149 ### Automated Tests
151 150
152 Each integrated system had to be tested with its own test suite. This checking 151 Each integrated system had to be tested with its own test suite. This checking
@@ -159,10 +158,10 @@ step of release preparation. @@ -159,10 +158,10 @@ step of release preparation.
159 158
160 ### Preparing a New Release 159 ### Preparing a New Release
161 160
162 -Each software component was hosted in a separate Git repository. A new release  
163 -of a component was tagged referencing a specific new feature or bug fix. SPB 161 +Each software component was hosted in a separate Git repository. A new component
  162 +release was tagged referencing a specific new feature or bug fix. SPB
164 had its own Git repository (www.softwarepublico.gov.br/gitlab/softwarepublico). 163 had its own Git repository (www.softwarepublico.gov.br/gitlab/softwarepublico).
165 -An SPB portal release was an aggregate of versions of all of its components. 164 +An SPB portal release was an aggregate of versions of all its components.
166 When a new component release passed all of the SPB integration tests, we 165 When a new component release passed all of the SPB integration tests, we
167 manually created a corresponding new tag in its repository. Therefore, a new 166 manually created a corresponding new tag in its repository. Therefore, a new
168 tag on any software component yielded a new SPB portal release. At the end of 167 tag on any software component yielded a new SPB portal release. At the end of
@@ -170,37 +169,32 @@ this process, we started packaging. @@ -170,37 +169,32 @@ this process, we started packaging.
170 169
171 ### Packaging 170 ### Packaging
172 171
173 -Our packaging software approach involves three steps: writing the script for  
174 -the specific environment, building the package, and uploading it to a package  
175 -repository. We decided to create separate packages for each system. Packaging  
176 -brings portability, simplifies deployment, and enables configuration and  
177 -permission control.  
178 -  
179 -After creating a new tag for a system, the developers informed our DevOps  
180 -team, and the packaging process began. A set of scripts fully automated the  
181 -three packaging steps aforementioned. When all of them ran successfully, the  
182 -new packages would be ready and available for our deployment scripts. 172 +After creating a new tag for a system, DevOps team starts the packaging process.
  173 +Packaging brings portability, simplifies deployment, and enables configuration
  174 +and permission control. Our packaging software approach involves building
  175 +separate packages for each system in three steps: writing the script for the
  176 +specific environment, building the package, and uploading it to a package
  177 +repository. A set of scripts fully automated these steps. When all of them ran
  178 +successfully, the new packages would be ready and available for our deployment
  179 +scripts.
183 180
184 ### Validation Environment Deployment 181 ### Validation Environment Deployment
185 182
186 The Validation Environment (VE) is a replica of the Production Environment (PE) 183 The Validation Environment (VE) is a replica of the Production Environment (PE)
187 with anonymised data, and access restricted to Ministry staff and our DevOps 184 with anonymised data, and access restricted to Ministry staff and our DevOps
188 -team. To configure this environment, we used Chef (www.chef.io) and Chake, a  
189 -serverless configuration tool created by our team 185 +team. To configure this environment, we used Chef (www.chef.io) and Chake, a
  186 +serverless configuration tool created by our team
190 (www.github.com/terceiro/chake). This tool maintained environment consistency, 187 (www.github.com/terceiro/chake). This tool maintained environment consistency,
191 simplifying the deployment process. 188 simplifying the deployment process.
192 189
193 -The Ministry staff used the VE to validate new features and required changes.  
194 -The VE also was used to verify the integrity of the entire portal as part of  
195 -the next step in the pipeline.  
196 -  
197 ### Acceptance Tests 190 ### Acceptance Tests
198 191
199 -After a new SPB portal deployment in the VE, the Ministry was responsible for  
200 -checking the required features and bug fixes. If they identified a problem,  
201 -they would notify the developers via comments on the SPB portal's issue  
202 -tracker, prompting the team to fix it and restart the pipeline. Otherwise, we  
203 -could move forward. 192 +After a new SPB portal deployment in the VE, we used the environment to verify
  193 +the integrity of the entire portal. In this step, Ministry staff also checked
  194 +the new features, required changes and bug fixes. If they identified a problem,
  195 +they would notify the developers via comments on the SPB portal's issue tracker,
  196 +prompting the team to fix it and restart the pipeline. Otherwise, we could move
  197 +forward.
204 198
205 ### Production Environment Deployment 199 ### Production Environment Deployment
206 200
ieeeSW/releaseEng3/figures/CD-Evolution.svg
@@ -1,1033 +0,0 @@ @@ -1,1033 +0,0 @@
1 -<?xml version="1.0" encoding="UTF-8" standalone="no"?>  
2 -<svg  
3 - xmlns:dc="http://purl.org/dc/elements/1.1/"  
4 - xmlns:cc="http://creativecommons.org/ns#"  
5 - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"  
6 - xmlns:svg="http://www.w3.org/2000/svg"  
7 - xmlns="http://www.w3.org/2000/svg"  
8 - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"  
9 - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"  
10 - version="1.1"  
11 - class="highcharts-root"  
12 - style="font-family:&quot;Lucida Grande&quot;, &quot;Lucida Sans Unicode&quot;, Arial, Helvetica, sans-serif;font-size:12px;"  
13 - width="600"  
14 - height="400"  
15 - viewBox="0 0 600 400"  
16 - id="svg1941"  
17 - sodipodi:docname="CD-Evolution.svg"  
18 - inkscape:export-filename="/home/melissawen/Downloads/CD-Evolution.png"  
19 - inkscape:export-xdpi="96"  
20 - inkscape:export-ydpi="96"  
21 - inkscape:version="0.92.1 r15371">  
22 - <metadata  
23 - id="metadata1945">  
24 - <rdf:RDF>  
25 - <cc:Work  
26 - rdf:about="">  
27 - <dc:format>image/svg+xml</dc:format>  
28 - <dc:type  
29 - rdf:resource="http://purl.org/dc/dcmitype/StillImage" />  
30 - </cc:Work>  
31 - </rdf:RDF>  
32 - </metadata>  
33 - <sodipodi:namedview  
34 - pagecolor="#ffffff"  
35 - bordercolor="#666666"  
36 - borderopacity="1"  
37 - objecttolerance="10"  
38 - gridtolerance="10"  
39 - guidetolerance="10"  
40 - inkscape:pageopacity="0"  
41 - inkscape:pageshadow="2"  
42 - inkscape:window-width="1024"  
43 - inkscape:window-height="536"  
44 - id="namedview1943"  
45 - showgrid="false"  
46 - inkscape:zoom="0.60634407"  
47 - inkscape:cx="738.22052"  
48 - inkscape:cy="183.8162"  
49 - inkscape:window-x="0"  
50 - inkscape:window-y="27"  
51 - inkscape:window-maximized="1"  
52 - inkscape:current-layer="svg1941" />  
53 - <desc  
54 - id="desc1600">Created with Highcharts 6.0.3</desc>  
55 - <defs  
56 - id="defs1605">  
57 - <clipPath  
58 - id="highcharts-y8ybklq-8">  
59 - <rect  
60 - x="0"  
61 - y="0"  
62 - width="523"  
63 - height="250"  
64 - fill="none"  
65 - id="rect1602" />  
66 - </clipPath>  
67 - <clipPath  
68 - id="highcharts-c510wzc-7">  
69 - <rect  
70 - style="fill:none"  
71 - x="0"  
72 - y="0"  
73 - width="529"  
74 - height="250"  
75 - id="rect2510" />  
76 - </clipPath>  
77 - <clipPath  
78 - id="clipPath6728">  
79 - <rect  
80 - style="fill:none"  
81 - x="0"  
82 - y="0"  
83 - width="529"  
84 - height="250"  
85 - id="rect6726" />  
86 - </clipPath>  
87 - </defs>  
88 - <rect  
89 - style="fill:#ffffff;fill-opacity:1;stroke:#b3b3b3;stroke-width:0.87296581"  
90 - id="rect8481"  
91 - width="1354.0166"  
92 - height="465.08243"  
93 - x="-20.424543"  
94 - y="-40.344048"  
95 - inkscape:export-xdpi="150.02475"  
96 - inkscape:export-ydpi="150.02475"  
97 - inkscape:export-filename="/home/melissawen/articles/ieeeSW/releaseEng3/figures/CDReleaseandTeamEvolution.png" />  
98 - <rect  
99 - class="highcharts-background"  
100 - x="0"  
101 - y="0"  
102 - width="600"  
103 - height="400"  
104 - rx="0"  
105 - ry="0"  
106 - id="rect1607"  
107 - fill="#ffffff" />  
108 - <rect  
109 - x="96.706413"  
110 - y="298.70642"  
111 - width="40"  
112 - height="9.587182"  
113 - class="highcharts-point highcharts-color-1"  
114 - id="rect1845"  
115 - style="fill:#4e9a06;stroke:none;stroke-width:3.26380515" />  
116 - <rect  
117 - fill="none"  
118 - class="highcharts-plot-background"  
119 - x="67"  
120 - y="59"  
121 - width="523"  
122 - height="250"  
123 - id="rect1609" />  
124 - <g  
125 - class="highcharts-grid highcharts-xaxis-grid "  
126 - id="g1621">  
127 - <path  
128 - fill="none"  
129 - class="highcharts-grid-line"  
130 - d="M 117.5 59 L 117.5 309"  
131 - opacity="1"  
132 - id="path1611" />  
133 - <path  
134 - fill="none"  
135 - class="highcharts-grid-line"  
136 - d="M 235.5 59 L 235.5 309"  
137 - opacity="1"  
138 - id="path1613" />  
139 - <path  
140 - fill="none"  
141 - class="highcharts-grid-line"  
142 - d="M 350.5 59 L 350.5 309"  
143 - opacity="1"  
144 - id="path1615" />  
145 - <path  
146 - fill="none"  
147 - class="highcharts-grid-line"  
148 - d="M 467.5 59 L 467.5 309"  
149 - opacity="1"  
150 - id="path1617" />  
151 - <path  
152 - fill="none"  
153 - class="highcharts-grid-line"  
154 - d="M 584.5 59 L 584.5 309"  
155 - opacity="1"  
156 - id="path1619" />  
157 - </g>  
158 - <path  
159 - style="opacity:1;fill:none;stroke:#e6e6e6;stroke-width:1"  
160 - inkscape:connector-curvature="0"  
161 - id="path1623"  
162 - d="M 67,309.5 H 590"  
163 - class="highcharts-grid-line" />  
164 - <path  
165 - style="opacity:1;fill:none;stroke:#e6e6e6;stroke-width:1"  
166 - inkscape:connector-curvature="0"  
167 - id="path1625"  
168 - d="M 67,247.5 H 590"  
169 - class="highcharts-grid-line" />  
170 - <path  
171 - style="opacity:1;fill:none;stroke:#e6e6e6;stroke-width:1"  
172 - inkscape:connector-curvature="0"  
173 - id="path1627"  
174 - d="M 67,184.5 H 590"  
175 - class="highcharts-grid-line" />  
176 - <path  
177 - style="opacity:1;fill:none;stroke:#e6e6e6;stroke-width:1"  
178 - inkscape:connector-curvature="0"  
179 - id="path1629"  
180 - d="M 67,122.5 H 590"  
181 - class="highcharts-grid-line" />  
182 - <path  
183 - style="opacity:1;fill:none;stroke:#e6e6e6;stroke-width:1"  
184 - inkscape:connector-curvature="0"  
185 - id="path1631"  
186 - d="M 67,58.5 H 590"  
187 - class="highcharts-grid-line" />  
188 - <rect  
189 - fill="none"  
190 - class="highcharts-plot-border"  
191 - x="67"  
192 - y="59"  
193 - width="523"  
194 - height="250"  
195 - id="rect1635" />  
196 - <g  
197 - class="highcharts-axis highcharts-xaxis "  
198 - id="g1653">  
199 - <path  
200 - fill="none"  
201 - class="highcharts-tick"  
202 - stroke="#ccd6eb"  
203 - stroke-width="1"  
204 - d="M 117.5 309 L 117.5 319"  
205 - opacity="1"  
206 - id="path1637" />  
207 - <path  
208 - fill="none"  
209 - class="highcharts-tick"  
210 - stroke="#ccd6eb"  
211 - stroke-width="1"  
212 - d="M 235.5 309 L 235.5 319"  
213 - opacity="1"  
214 - id="path1639" />  
215 - <path  
216 - fill="none"  
217 - class="highcharts-tick"  
218 - stroke="#ccd6eb"  
219 - stroke-width="1"  
220 - d="M 350.5 309 L 350.5 319"  
221 - opacity="1"  
222 - id="path1641" />  
223 - <path  
224 - fill="none"  
225 - class="highcharts-tick"  
226 - stroke="#ccd6eb"  
227 - stroke-width="1"  
228 - d="M 467.5 309 L 467.5 319"  
229 - opacity="1"  
230 - id="path1643" />  
231 - <path  
232 - fill="none"  
233 - class="highcharts-tick"  
234 - stroke="#ccd6eb"  
235 - stroke-width="1"  
236 - d="M 584.5 309 L 584.5 319"  
237 - opacity="1"  
238 - id="path1645" />  
239 - <text  
240 - x="328.5"  
241 - text-anchor="middle"  
242 - transform="translate(0,0)"  
243 - class="highcharts-axis-title"  
244 - style="color:#666666;fill:#666666;"  
245 - y="346"  
246 - id="text1649">  
247 - <tspan  
248 - id="tspan1647">Date</tspan>  
249 - </text>  
250 - <path  
251 - fill="none"  
252 - class="highcharts-axis-line"  
253 - stroke="#ccd6eb"  
254 - stroke-width="1"  
255 - d="M 67 309.5 L 590 309.5"  
256 - id="path1651" />  
257 - </g>  
258 - <path  
259 - style="fill:none"  
260 - inkscape:connector-curvature="0"  
261 - id="path1659"  
262 - d="M 67,59 V 309"  
263 - class="highcharts-axis-line" />  
264 - <path  
265 - d="m 72.440078,306.5 c 0,0 12.244957,-1.1087 20.408262,-2.5 3.571446,-0.6087 5.357169,-1.96154 8.92862,-2.5 9.69392,-1.46154 14.54088,-0.81111 24.23481,-2.5 1.78572,-0.31111 2.67858,-2.25439 4.4643,-2.5 12.75517,-1.75439 19.13275,-0.74561 31.88792,-2.5 1.78572,-0.24561 2.67858,-1.42308 4.4643,-2.5 1.53062,-0.92308 2.29593,-2.05556 3.82655,-2.5 5.35717,-1.55556 8.03576,-0.5 13.39292,-2.5 0,0 0,-2.5 0,-2.5 9.94903,-2 14.92355,-0.64286 24.87258,-2.5 0.7653,-0.14286 1.14796,-2.2931 1.91327,-2.5 6.63269,-1.7931 9.94903,-1.39362 16.58171,-2.5 5.35717,-0.89362 8.03576,-1.26471 13.39293,-2.5 3.31634,-0.76471 4.97451,-1.77778 8.29085,-2.5 5.86738,-1.27778 8.80107,-1.25676 14.66844,-2.5 3.57145,-0.75676 5.35717,-0.63333 8.92862,-2.5 0.2551,-0.13333 0.38265,-2.21429 0.63775,-2.5 1.53062,-1.71429 2.29593,-2.03846 3.82655,-2.5 5.10207,-1.53846 7.6531,-1.12069 12.75517,-2.5 2.29593,-0.62069 3.44389,-1.11538 5.73982,-2.5 1.02042,-0.61538 1.53062,-1.83333 2.55103,-2.5 2.04083,-1.33333 3.06124,-0.9 5.10207,-2.5 0.51021,-0.4 0.76531,-2.1 1.27552,-2.5 2.04082,-1.6 3.06124,-1.43333 5.10206,-2.5 1.78573,-0.93333 2.67859,-2.13158 4.46431,-2.5 7.9082,-1.63158 11.8623,-1.725 19.7705,-2.5 12.50007,-1.225 18.7501,-0.71818 31.25016,-2.5 1.53062,-0.21818 2.29593,-0.5 3.82655,-2.5 0,0 0,-2.5 0,-2.5 3.82655,-2 5.73982,-1.3 9.56637,-2.5 2.55103,-0.8 3.82655,-1.07143 6.37758,-2.5 1.02041,-0.57143 1.53062,-1.96667 2.55103,-2.5 2.80614,-1.46667 4.20921,-1.03333 7.01535,-2.5 1.02041,-0.53333 1.53061,-2.05556 2.55103,-2.5 3.57144,-1.55556 5.35717,-0.85294 8.92861,-2.5 0.76531,-0.35294 1.14797,-1.5 1.91328,-2.5 0.76531,-1 1.14796,-2.03846 1.91327,-2.5 2.55103,-1.53846 3.82655,-0.5 6.37758,-2.5 0,0 0,-2.5 0,-2.5 1.02042,-2 1.53062,-0.5 2.55104,-2.5 0,0 0,-1.5 0,-2.5 0,-1 0,-1.5 0,-2.5 0,-1 0,-1.5 0,-2.5 0,-1 0,-2.5 0,-2.5 0.76531,-2 1.14796,-1.95455 1.91327,-2.5 2.04083,-1.45455 3.06124,-1.43333 5.10207,-2.5 1.78572,-0.93333 2.67858,-1.42308 4.4643,-2.5 1.53062,-0.92308 2.29593,-1.40909 3.82655,-2.5 1.27552,-0.90909 1.91328,-0.83333 3.1888,-2.5 0.2551,-0.33333 0.38265,-1.5 0.63775,-2.5 0.25511,-1 0.38266,-2.42 0.63776,-2.5 6.12248,-1.92 9.18372,-1.61111 15.3062,-2.5 7.6531,-1.11111 11.47965,-0.56452 19.13275,-2.5 0.2551,-0.0645 0.38265,-2.16667 0.63775,-2.5 1.27552,-1.66667 1.91328,-0.83333 3.18879,-2.5 0.25511,-0.33333 0.38266,-2.41667 0.63776,-2.5 5.86738,-1.91667 8.80107,-0.5 14.66844,-2.5 0,0 0,-2.5 0,-2.5 1.27552,-2 1.91328,-1.66667 3.18879,-2.5 1.78573,-1.16667 2.67859,-0.5 4.46431,-2.5 0,0 0,-2.5 0,-2.5 0.51021,-2 0.76531,-1.83333 1.27552,-2.5 1.02041,-1.33333 1.53062,-1.16667 2.55103,-2.5 0.51021,-0.66667 0.76531,-2.28947 1.27552,-2.5 4.33675,-1.78947 6.50513,-0.61111 10.84189,-2.5 0.2551,-0.11111 0.38265,-2.25 0.63775,-2.5 1.78573,-1.75 2.67859,-0.94444 4.46431,-2.5 0.51021,-0.44444 0.76531,-0.5 1.27552,-2.5 0,0 0,-1.5 0,-2.5 0,-1 0,-2.5 0,-2.5 2.04082,-2 3.06124,-2.3 5.10206,-2.5 18.36744,-1.8 27.55116,-0.58 45.91859,-2.5 0.76531,-0.08 1.14797,-2.5 1.91328,-2.5 0,0 0,-2.5 0,-2.5 0.2551,-2 0.38265,-1.5 0.63776,-2.5 0.2551,-1 0.38265,-0.5 0.63776,-2.5 0,0 0,-1.5 0,-2.5 0,-1 0,-2.5 0,-2.5 0.2551,-2 0.38265,-2.16667 0.63775,-2.5 1.27552,-1.66667 1.91328,-1.66667 3.18879,-2.5 1.78573,-1.16667 2.67859,-0.5 4.46431,-2.5 0,0 0,-1.5 0,-2.5 0,-1 0,-2.5 0,-2.5"  
266 - class="highcharts-graph"  
267 - id="path1663"  
268 - inkscape:connector-curvature="0"  
269 - style="fill:none;stroke:#7cb5ec;stroke-width:2;stroke-linecap:round;stroke-linejoin:round" />  
270 - <path  
271 - d="m 122,299 a 4,4 0 1 1 0,-0.004 z"  
272 - class="highcharts-point highcharts-color-0"  
273 - id="path1683"  
274 - inkscape:connector-curvature="0"  
275 - style="fill:#7cb5ec" />  
276 - <path  
277 - d="m 238,276 a 4,4 0 1 1 0,-0.004 z"  
278 - class="highcharts-point highcharts-color-0"  
279 - id="path1701"  
280 - inkscape:connector-curvature="0"  
281 - style="fill:#7cb5ec" />  
282 - <rect  
283 - x="214.83084"  
284 - y="285.66467"  
285 - width="40"  
286 - height="22.670641"  
287 - class="highcharts-point highcharts-color-1"  
288 - id="rect1847"  
289 - style="fill:#4e9a06;stroke:none;stroke-width:3.47721291" />  
290 - <rect  
291 - x="330.5"  
292 - y="272.5"  
293 - width="40"  
294 - height="37"  
295 - class="highcharts-point highcharts-color-1"  
296 - id="rect1849"  
297 - style="fill:#4e9a06;stroke:none;stroke-width:3.65148377" />  
298 - <rect  
299 - x="446.71384"  
300 - y="243.71384"  
301 - width="40"  
302 - height="64.572311"  
303 - class="highcharts-point highcharts-color-1"  
304 - id="rect1851"  
305 - style="fill:#4e9a06;stroke:none;stroke-width:3.58471894" />  
306 - <text  
307 - x="300"  
308 - class="highcharts-title"  
309 - style="color:#333333;font-size:18px;text-anchor:middle;fill:#333333"  
310 - y="24"  
311 - id="text1863">  
312 - <tspan  
313 - id="tspan1861">Release Evolution</tspan>  
314 - </text>  
315 - <text  
316 - x="300"  
317 - class="highcharts-subtitle"  
318 - style="color:#666666;text-anchor:middle;fill:#666666"  
319 - y="44"  
320 - id="text1867">  
321 - <tspan  
322 - id="tspan1865">From Jan/2014 to Mai/2016</tspan>  
323 - </text>  
324 - <rect  
325 - style="visibility:visible;fill:none"  
326 - id="rect1869"  
327 - visibility="visible"  
328 - height="25"  
329 - width="247"  
330 - y="360"  
331 - x="177"  
332 - ry="0"  
333 - rx="0"  
334 - class="highcharts-legend-box" />  
335 - <g  
336 - id="g1879"  
337 - transform="translate(185,363)"  
338 - class="highcharts-legend-item highcharts-spline-series highcharts-color-0 highcharts-series-0">  
339 - <path  
340 - style="fill:none;stroke:#7cb5ec;stroke-width:2"  
341 - inkscape:connector-curvature="0"  
342 - id="path1871"  
343 - class="highcharts-graph"  
344 - d="M 0,11 H 16" />  
345 - <path  
346 - style="fill:#7cb5ec"  
347 - inkscape:connector-curvature="0"  
348 - id="path1873"  
349 - class="highcharts-point"  
350 - d="m 12,11 a 4,4 0 1 1 -2e-6,-0.004 z" />  
351 - <text  
352 - id="text1877"  
353 - y="15"  
354 - style="color:#333333;font-weight:bold;font-size:12px;text-anchor:start;fill:#333333"  
355 - x="21">  
356 - <tspan  
357 - id="tspan1875">Release #</tspan>  
358 - </text>  
359 - </g>  
360 - <text  
361 - x="304"  
362 - y="378"  
363 - style="color:#333333;font-weight:bold;font-size:12px;text-anchor:start;fill:#333333"  
364 - id="text1883">  
365 - <tspan  
366 - id="tspan1881">Amount of releases</tspan>  
367 - </text>  
368 - <rect  
369 - x="285"  
370 - y="367"  
371 - width="12"  
372 - height="12"  
373 - rx="6"  
374 - ry="6"  
375 - class="highcharts-point"  
376 - id="rect1885"  
377 - style="fill:#4e9a06" />  
378 - <g  
379 - class="highcharts-axis-labels highcharts-xaxis-labels "  
380 - id="g1915">  
381 - <text  
382 - x="118.35866887788698"  
383 - style="color:#666666;cursor:default;font-size:11px;fill:#666666;"  
384 - text-anchor="middle"  
385 - transform="translate(0,0)"  
386 - y="328"  
387 - opacity="1"  
388 - id="text1897">  
389 - <tspan  
390 - id="tspan1895">Jul '14</tspan>  
391 - </text>  
392 - <text  
393 - x="235.70618003560716"  
394 - style="color:#666666;cursor:default;font-size:11px;fill:#666666;"  
395 - text-anchor="middle"  
396 - transform="translate(0,0)"  
397 - y="328"  
398 - opacity="1"  
399 - id="text1901">  
400 - <tspan  
401 - id="tspan1899">Jan '15</tspan>  
402 - </text>  
403 - <text  
404 - x="351.1404165548862"  
405 - style="color:#666666;cursor:default;font-size:11px;fill:#666666;"  
406 - text-anchor="middle"  
407 - transform="translate(0,0)"  
408 - y="328"  
409 - opacity="1"  
410 - id="text1905">  
411 - <tspan  
412 - id="tspan1903">Jul '15</tspan>  
413 - </text>  
414 - <text  
415 - x="468.48792771260634"  
416 - style="color:#666666;cursor:default;font-size:11px;fill:#666666;"  
417 - text-anchor="middle"  
418 - transform="translate(0,0)"  
419 - y="328"  
420 - opacity="1"  
421 - id="text1909">  
422 - <tspan  
423 - id="tspan1907">Jan '16</tspan>  
424 - </text>  
425 - <text  
426 - x="574.5"  
427 - style="color:#666666;cursor:default;font-size:11px;fill:#666666;"  
428 - text-anchor="middle"  
429 - transform="translate(0,0)"  
430 - y="328"  
431 - opacity="1"  
432 - id="text1913">  
433 - <tspan  
434 - id="tspan1911">Jul '16</tspan>  
435 - </text>  
436 - </g>  
437 - <text  
438 - id="text1919"  
439 - y="314"  
440 - style="color:#666666;font-size:11px;text-anchor:end;opacity:1;fill:#666666"  
441 - x="52">  
442 - <tspan  
443 - id="tspan1917">0</tspan>  
444 - </text>  
445 - <text  
446 - id="text1923"  
447 - y="252"  
448 - style="color:#666666;font-size:11px;text-anchor:end;opacity:1;fill:#666666"  
449 - x="52">  
450 - <tspan  
451 - id="tspan1921">25</tspan>  
452 - </text>  
453 - <text  
454 - id="text1927"  
455 - y="189"  
456 - style="color:#666666;font-size:11px;text-anchor:end;opacity:1;fill:#666666"  
457 - x="52">  
458 - <tspan  
459 - id="tspan1925">50</tspan>  
460 - </text>  
461 - <text  
462 - id="text1931"  
463 - y="127"  
464 - style="color:#666666;font-size:11px;text-anchor:end;opacity:1;fill:#666666"  
465 - x="52">  
466 - <tspan  
467 - id="tspan1929">75</tspan>  
468 - </text>  
469 - <text  
470 - id="text1935"  
471 - y="64"  
472 - style="color:#666666;font-size:11px;text-anchor:end;opacity:1;fill:#666666"  
473 - x="52">  
474 - <tspan  
475 - id="tspan1933">100</tspan>  
476 - </text>  
477 - <rect  
478 - style="font-size:12px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#ffffff"  
479 - class="highcharts-background"  
480 - x="703.48688"  
481 - y="2.1049576"  
482 - width="600"  
483 - height="400"  
484 - rx="0"  
485 - ry="0"  
486 - id="rect2515" />  
487 - <rect  
488 - style="font-size:12px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:none"  
489 - class="highcharts-plot-background"  
490 - x="764.48688"  
491 - y="61.104958"  
492 - width="529"  
493 - height="250"  
494 - id="rect2517" />  
495 - <g  
496 - style="font-size:12px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif"  
497 - class="highcharts-grid highcharts-xaxis-grid "  
498 - id="g2529"  
499 - transform="translate(703.48688,2.104956)">  
500 - <path  
501 - style="opacity:1;fill:none"  
502 - inkscape:connector-curvature="0"  
503 - class="highcharts-grid-line"  
504 - d="M 112.5,59 V 309"  
505 - id="path2519" />  
506 - <path  
507 - style="opacity:1;fill:none"  
508 - inkscape:connector-curvature="0"  
509 - class="highcharts-grid-line"  
510 - d="M 231.5,59 V 309"  
511 - id="path2521" />  
512 - <path  
513 - style="opacity:1;fill:none"  
514 - inkscape:connector-curvature="0"  
515 - class="highcharts-grid-line"  
516 - d="M 347.5,59 V 309"  
517 - id="path2523" />  
518 - <path  
519 - style="opacity:1;fill:none"  
520 - inkscape:connector-curvature="0"  
521 - class="highcharts-grid-line"  
522 - d="M 466.5,59 V 309"  
523 - id="path2525" />  
524 - <path  
525 - style="opacity:1;fill:none"  
526 - inkscape:connector-curvature="0"  
527 - class="highcharts-grid-line"  
528 - d="M 584.5,59 V 309"  
529 - id="path2527" />  
530 - </g>  
531 - <g  
532 - style="font-size:12px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif"  
533 - class="highcharts-grid highcharts-yaxis-grid "  
534 - id="g2543"  
535 - transform="translate(703.48688,2.104956)">  
536 - <path  
537 - style="opacity:1;fill:none;stroke:#e6e6e6;stroke-width:1"  
538 - inkscape:connector-curvature="0"  
539 - class="highcharts-grid-line"  
540 - d="M 61,309.5 H 590"  
541 - id="path2531" />  
542 - <path  
543 - style="opacity:1;fill:none;stroke:#e6e6e6;stroke-width:1"  
544 - inkscape:connector-curvature="0"  
545 - class="highcharts-grid-line"  
546 - d="M 61,259.5 H 590"  
547 - id="path2533" />  
548 - <path  
549 - style="opacity:1;fill:none;stroke:#e6e6e6;stroke-width:1"  
550 - inkscape:connector-curvature="0"  
551 - class="highcharts-grid-line"  
552 - d="M 61,209.5 H 590"  
553 - id="path2535" />  
554 - <path  
555 - style="opacity:1;fill:none;stroke:#e6e6e6;stroke-width:1"  
556 - inkscape:connector-curvature="0"  
557 - class="highcharts-grid-line"  
558 - d="M 61,159.5 H 590"  
559 - id="path2537" />  
560 - <path  
561 - style="opacity:1;fill:none;stroke:#e6e6e6;stroke-width:1"  
562 - inkscape:connector-curvature="0"  
563 - class="highcharts-grid-line"  
564 - d="M 61,109.5 H 590"  
565 - id="path2539" />  
566 - <path  
567 - style="opacity:1;fill:none;stroke:#e6e6e6;stroke-width:1"  
568 - inkscape:connector-curvature="0"  
569 - class="highcharts-grid-line"  
570 - d="M 61,58.5 H 590"  
571 - id="path2541" />  
572 - </g>  
573 - <rect  
574 - style="font-size:12px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:none"  
575 - class="highcharts-plot-border"  
576 - x="764.48688"  
577 - y="61.104958"  
578 - width="529"  
579 - height="250"  
580 - id="rect2545" />  
581 - <g  
582 - style="font-size:12px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif"  
583 - class="highcharts-axis highcharts-xaxis "  
584 - id="g2563"  
585 - transform="translate(703.48688,2.104956)">  
586 - <path  
587 - style="opacity:1;fill:none;stroke:#ccd6eb;stroke-width:1"  
588 - inkscape:connector-curvature="0"  
589 - class="highcharts-tick"  
590 - d="m 112.5,309 v 10"  
591 - id="path2547" />  
592 - <path  
593 - style="opacity:1;fill:none;stroke:#ccd6eb;stroke-width:1"  
594 - inkscape:connector-curvature="0"  
595 - class="highcharts-tick"  
596 - d="m 231.5,309 v 10"  
597 - id="path2549" />  
598 - <path  
599 - style="opacity:1;fill:none;stroke:#ccd6eb;stroke-width:1"  
600 - inkscape:connector-curvature="0"  
601 - class="highcharts-tick"  
602 - d="m 347.5,309 v 10"  
603 - id="path2551" />  
604 - <path  
605 - style="opacity:1;fill:none;stroke:#ccd6eb;stroke-width:1"  
606 - inkscape:connector-curvature="0"  
607 - class="highcharts-tick"  
608 - d="m 466.5,309 v 10"  
609 - id="path2553" />  
610 - <path  
611 - style="opacity:1;fill:none;stroke:#ccd6eb;stroke-width:1"  
612 - inkscape:connector-curvature="0"  
613 - class="highcharts-tick"  
614 - d="m 584.5,309 v 10"  
615 - id="path2555" />  
616 - <text  
617 - x="325.5"  
618 - class="highcharts-axis-title"  
619 - style="color:#666666;text-anchor:middle;fill:#666666"  
620 - y="346"  
621 - id="text2559">  
622 - <tspan  
623 - id="tspan2557">Date</tspan>  
624 - </text>  
625 - <path  
626 - style="fill:none;stroke:#ccd6eb;stroke-width:1"  
627 - inkscape:connector-curvature="0"  
628 - class="highcharts-axis-line"  
629 - d="M 61,309.5 H 590"  
630 - id="path2561" />  
631 - </g>  
632 - <path  
633 - id="path2569"  
634 - d="M 764.48688,61.104956 V 311.10496"  
635 - class="highcharts-axis-line"  
636 - inkscape:connector-curvature="0"  
637 - style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:none" />  
638 - <path  
639 - style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:none;stroke:#5c3566;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"  
640 - inkscape:connector-curvature="0"  
641 - d="m 769.67315,176.10496 h 20.6676 9.04207 24.54277 4.52104 32.29311 4.52104 3.87517 13.56311 v 0 h 25.18863 1.93759 16.79242 13.56311 8.39621 14.85483 9.04208 0.64586 3.87517 12.91725 5.81276 2.58345 5.16688 1.2917 5.1669 4.5211 20.0217 c 12.6589,0 18.9884,-95.000004 31.6473,-95.000004 h 3.8751 v 0 h 9.688 6.4586 2.5834 7.1045 2.5835 9.0421 1.9375 1.9376 6.4587 v 0 h 2.5834 v 0 0 0 0 h 1.9376 5.1669 4.521 3.8752 3.2293 0.6459 0.6458 15.5007 19.3759 0.6459 3.2293 0.6458 c 5.942,0 8.9129,115.000004 14.8549,115.000004 v 0 h 3.2293 4.521 v 0 h 1.2917 2.5835 1.2917 -11.0203 0.6458 4.5211 1.2917 v 0 0 h 5.1669 c 18.6008,0 9.9013,85 28.5021,85 h 1.9376 v 0 h 0.6458 0.6459 v 0 0 h 0.6459 3.2293 4.521 v 0 0"  
642 - class="highcharts-graph"  
643 - id="path2573"  
644 - sodipodi:nodetypes="ccccccccccccccccccccccccccssccccccccccccccccccccccccccccsccccccccccccccssccccccccccc" />  
645 - <path  
646 - style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#5c3566;stroke:none"  
647 - inkscape:connector-curvature="0"  
648 - d="m 773.48688,176.10496 a 4,4 0 1 1 0,-0.004 z"  
649 - class="highcharts-point highcharts-color-0"  
650 - id="path2585" />  
651 - <path  
652 - style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#5c3566;stroke:none"  
653 - inkscape:connector-curvature="0"  
654 - d="m 1069.4869,81.104956 a 4,4 0 1 1 0,-0.004 z"  
655 - class="highcharts-point highcharts-color-0"  
656 - id="path2639" />  
657 - <path  
658 - style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#7cb5ec;stroke:#5c3566"  
659 - inkscape:connector-curvature="0"  
660 - d="m 1198.4869,196.10496 a 4,4 0 1 1 0,-0.004 z"  
661 - class="highcharts-point highcharts-color-0"  
662 - id="path2699" />  
663 - <path  
664 - style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#5c3566;stroke:none"  
665 - inkscape:connector-curvature="0"  
666 - d="m 1198.4869,196.10496 a 4,4 0 1 1 0,-0.004 z"  
667 - class="highcharts-point highcharts-color-0"  
668 - id="path2701" />  
669 - <path  
670 - style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#5c3566"  
671 - inkscape:connector-curvature="0"  
672 - d="m 1234.4869,279.10496 a 4,4 0 1 1 0,-0.004 z"  
673 - class="highcharts-point highcharts-color-0"  
674 - id="path2729" />  
675 - <path  
676 - style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:none;stroke:#f57900;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"  
677 - inkscape:connector-curvature="0"  
678 - d="m 769.67315,311.10496 c 0,0 12.40056,0 20.6676,0 3.61683,0 5.42524,0 9.04207,0 9.81711,0 14.72566,0 24.54277,0 1.80842,0 2.71262,0 4.52104,0 12.91724,0 19.37587,0 32.29311,0 1.80842,0 2.71262,0 4.52104,0 1.55007,0 2.3251,0 3.87517,0 5.42525,0 8.13787,0 13.56311,0 0,0 0,0 0,0 10.07545,0 15.11318,0 25.18863,0 0.77504,0 1.16256,0 1.93759,0 6.71697,0 10.07545,0 16.79242,0 5.42524,0 8.13787,0 13.56311,0 3.35848,0 5.03773,0 8.39621,0 5.94193,0 8.9129,0 14.85483,0 3.61683,0 5.42525,0 9.04208,0 0.25834,0 0.38751,0 0.64586,0 1.55007,0 2.3251,0 3.87517,0 5.1669,0 7.75035,0 12.91725,0 2.3251,0 3.48766,0 5.81276,0 1.03338,0 1.55007,0 2.58345,0 2.06678,0 3.10018,0 5.16688,0 0.5167,0 0.7751,0 1.2917,0 2.0668,0 3.1002,0 5.1669,0 1.8085,0 2.7127,0 4.5211,0 8.0087,0 12.013,0 20.0217,0 12.6589,0 18.9884,-30 31.6473,-30 1.55,0 2.3251,0 3.8751,0 0,0 0,0 0,0 3.8752,0 5.8128,0 9.688,0 2.5834,0 3.8752,0 6.4586,0 1.0334,0 1.5501,0 2.5834,0 2.8418,0 4.2627,0 7.1045,0 1.0334,0 1.5501,-15 2.5835,-15 3.6168,0 5.4252,0 9.0421,0 0.775,0 1.1625,0 1.9375,0 0.7751,0 1.1626,0 1.9376,0 2.5835,0 3.8752,-10 6.4587,-10 0,0 0,0 0,0 1.0333,0 1.55,0 2.5834,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0.775,0 1.1626,0 1.9376,0 2.0668,0 3.1001,0 5.1669,0 1.8084,0 2.7126,0 4.521,0 1.5501,0 2.3251,0 3.8752,0 1.2917,0 1.9376,0 3.2293,0 0.2584,0 0.3875,0 0.6459,0 0.2583,0 0.3875,0 0.6458,0 6.2003,0 9.3005,0 15.5007,0 7.7504,0 11.6256,0 19.3759,0 0.2583,0 0.3875,0 0.6459,0 1.2917,0 1.9376,0 3.2293,0 0.2583,0 0.3875,0 0.6458,0 5.942,0 8.9129,0 14.8549,0 0,0 0,0 0,0 1.2917,0 1.9376,0 3.2293,0 1.8084,0 2.7126,0 4.521,0 0,0 0,0 0,0 0.5167,0 0.7751,0 1.2917,0 1.0334,0 1.5501,0 2.5835,0 0.5167,0 0.775,0 1.2917,0 4.3919,0 6.5878,0 10.9797,0 0.2583,0 0.3875,0 0.6458,0 1.8085,0 2.7127,0 4.5211,0 0.5167,0 0.775,0 1.2917,0 0,0 0,0 0,0 0,0 0,0 0,0 2.0668,0 3.1001,25 5.1669,25 18.6008,0 27.9013,0 46.5021,0 0.775,0 1.1625,0 1.9376,0 0,0 0,0 0,0 0.2583,0 0.3875,0 0.6458,0 0.2584,0 0.3876,0 0.6459,0 0,0 0,0 0,0 0,0 0,0 0,0 0.2583,0 0.3875,0 0.6459,0 1.2917,0 1.9375,0 3.2293,0 1.8084,0 2.7126,0 4.521,0 0,0 0,0 0,0 0,0 0,0 0,0"  
679 - class="highcharts-graph"  
680 - id="path2755" />  
681 - <path  
682 - style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#f57900;stroke:#f57900"  
683 - inkscape:connector-curvature="0"  
684 - d="m 769.48688,307.10496 4,4 -4,4 -4,-4 z"  
685 - class="highcharts-point highcharts-color-1"  
686 - id="path2767" />  
687 - <path  
688 - style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#f57900;stroke:#f57900"  
689 - inkscape:connector-curvature="0"  
690 - d="m 1065.4869,277.10496 4,4 -4,4 -4,-4 z"  
691 - class="highcharts-point highcharts-color-1"  
692 - id="path2821" />  
693 - <path  
694 - style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#f57900;stroke:#f57900"  
695 - inkscape:connector-curvature="0"  
696 - d="m 1097.4869,262.10496 4,4 -4,4 -4,-4 z"  
697 - class="highcharts-point highcharts-color-1"  
698 - id="path2835" />  
699 - <path  
700 - style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#434348;stroke:#f57900"  
701 - inkscape:connector-curvature="0"  
702 - d="m 1117.4869,252.10496 4,4 -4,4 -4,-4 z"  
703 - class="highcharts-point highcharts-color-1"  
704 - id="path2843" />  
705 - <path  
706 - style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#f57900;stroke:#f57900"  
707 - inkscape:connector-curvature="0"  
708 - d="m 1117.4869,252.10496 4,4 -4,4 -4,-4 z"  
709 - class="highcharts-point highcharts-color-1"  
710 - id="path2845" />  
711 - <path  
712 - style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#f57900;stroke:#f57900"  
713 - inkscape:connector-curvature="0"  
714 - d="m 1229.4869,277.10496 4,4 -4,4 -4,-4 z"  
715 - class="highcharts-point highcharts-color-1"  
716 - id="path2909" />  
717 - <text  
718 - x="1003.4869"  
719 - class="highcharts-title"  
720 - style="color:#333333;font-size:18px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:middle;fill:#333333"  
721 - y="26.104956"  
722 - id="text2941">  
723 - <tspan  
724 - id="tspan2939">Team Members Distribution</tspan>  
725 - </text>  
726 - <text  
727 - x="1003.4869"  
728 - class="highcharts-subtitle"  
729 - style="color:#666666;font-size:12px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:middle;fill:#666666"  
730 - y="46.104958"  
731 - id="text2945">  
732 - <tspan  
733 - id="tspan2943">From Jan/2014 to Mai/2016</tspan>  
734 - </text>  
735 - <rect  
736 - id="rect2947"  
737 - visibility="visible"  
738 - height="25"  
739 - width="388"  
740 - y="362.10495"  
741 - x="809.48688"  
742 - ry="0"  
743 - rx="0"  
744 - class="highcharts-legend-box"  
745 - style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;visibility:visible;fill:none" />  
746 - <path  
747 - style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#5c3566;stroke:#5c3566;stroke-width:2"  
748 - inkscape:connector-curvature="0"  
749 - d="m 817.48688,376.10496 h 16"  
750 - class="highcharts-graph"  
751 - id="path2949" />  
752 - <path  
753 - style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#5c3566;stroke:#5c3566"  
754 - inkscape:connector-curvature="0"  
755 - d="m 829.48688,376.10496 a 4,4 0 1 1 0,-0.004 z"  
756 - class="highcharts-point"  
757 - id="path2951" />  
758 - <text  
759 - x="838.48688"  
760 - style="color:#333333;font-weight:bold;font-size:12px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:start;fill:#333333"  
761 - y="380.10495"  
762 - id="text2955">  
763 - <tspan  
764 - id="tspan2953"># Members Development Team</tspan>  
765 - </text>  
766 - <path  
767 - style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#f57900;stroke:#f57900;stroke-width:2"  
768 - inkscape:connector-curvature="0"  
769 - d="m 1035.5963,376.10496 h 16"  
770 - class="highcharts-graph"  
771 - id="path2959" />  
772 - <path  
773 - style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#f57900;stroke:#f57900"  
774 - inkscape:connector-curvature="0"  
775 - d="m 1043.5963,372.10496 4,4 -4,4 -4,-4 z"  
776 - class="highcharts-point"  
777 - id="path2961" />  
778 - <text  
779 - x="1056.5962"  
780 - y="380.10495"  
781 - style="color:#333333;font-weight:bold;font-size:12px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:start;fill:#333333"  
782 - id="text2965">  
783 - <tspan  
784 - id="tspan2963">Qt of DevOps Members</tspan>  
785 - </text>  
786 - <g  
787 - style="font-size:12px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif"  
788 - class="highcharts-axis-labels highcharts-xaxis-labels "  
789 - id="g2995"  
790 - transform="translate(703.48688,2.104956)">  
791 - <text  
792 - x="112.68836"  
793 - style="color:#666666;font-size:11px;text-anchor:middle;opacity:1;fill:#666666"  
794 - y="328"  
795 - id="text2977">  
796 - <tspan  
797 - id="tspan2975">Jul '14</tspan>  
798 - </text>  
799 - <text  
800 - x="231.52704"  
801 - style="color:#666666;font-size:11px;text-anchor:middle;opacity:1;fill:#666666"  
802 - y="328"  
803 - id="text2981">  
804 - <tspan  
805 - id="tspan2979">Jan '15</tspan>  
806 - </text>  
807 - <text  
808 - x="348.4281"  
809 - style="color:#666666;font-size:11px;text-anchor:middle;opacity:1;fill:#666666"  
810 - y="328"  
811 - id="text2985">  
812 - <tspan  
813 - id="tspan2983">Jul '15</tspan>  
814 - </text>  
815 - <text  
816 - x="467.26678"  
817 - style="color:#666666;font-size:11px;text-anchor:middle;opacity:1;fill:#666666"  
818 - y="328"  
819 - id="text2989">  
820 - <tspan  
821 - id="tspan2987">Jan '16</tspan>  
822 - </text>  
823 - <text  
824 - x="574.5"  
825 - style="color:#666666;font-size:11px;text-anchor:middle;opacity:1;fill:#666666"  
826 - y="328"  
827 - id="text2993">  
828 - <tspan  
829 - id="tspan2991">Jul '16</tspan>  
830 - </text>  
831 - </g>  
832 - <text  
833 - id="text2999"  
834 - y="316.10495"  
835 - style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#666666"  
836 - x="749.48688">  
837 - <tspan  
838 - id="tspan2997">0</tspan>  
839 - </text>  
840 - <text  
841 - id="text3003"  
842 - y="266.10495"  
843 - style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#666666"  
844 - x="749.48688">  
845 - <tspan  
846 - id="tspan3001">10</tspan>  
847 - </text>  
848 - <text  
849 - id="text3007"  
850 - y="216.10495"  
851 - style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#666666"  
852 - x="749.48688">  
853 - <tspan  
854 - id="tspan3005">20</tspan>  
855 - </text>  
856 - <text  
857 - id="text3011"  
858 - y="166.10495"  
859 - style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#666666"  
860 - x="749.48688">  
861 - <tspan  
862 - id="tspan3009">30</tspan>  
863 - </text>  
864 - <text  
865 - id="text3015"  
866 - y="116.10496"  
867 - style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#666666"  
868 - x="749.48688">  
869 - <tspan  
870 - id="tspan3013">40</tspan>  
871 - </text>  
872 - <text  
873 - id="text3019"  
874 - y="66.104958"  
875 - style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#666666"  
876 - x="749.48688">  
877 - <tspan  
878 - id="tspan3017">50</tspan>  
879 - </text>  
880 - <text  
881 - id="text3011-3"  
882 - y="169.59616"  
883 - style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#5c3566;fill-opacity:1;stroke:none"  
884 - x="790.93018">  
885 - <tspan  
886 - id="tspan3009-6"  
887 - style="fill:#5c3566;fill-opacity:1;stroke:none">27</tspan>  
888 - </text>  
889 - <text  
890 - id="text3011-3-7"  
891 - y="73.994606"  
892 - style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#5c3566;fill-opacity:1;stroke:none"  
893 - x="1077.8906">  
894 - <tspan  
895 - id="tspan3009-6-5"  
896 - style="fill:#5c3566;fill-opacity:1;stroke:none">46</tspan>  
897 - </text>  
898 - <text  
899 - id="text3011-3-7-3"  
900 - y="191.03613"  
901 - style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#5c3566;fill-opacity:1;stroke:none"  
902 - x="1211.5936">  
903 - <tspan  
904 - id="tspan3009-6-5-5"  
905 - style="fill:#5c3566;fill-opacity:1;stroke:none">23</tspan>  
906 - </text>  
907 - <text  
908 - id="text3011-3-7-3-6"  
909 - y="272.32217"  
910 - style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#5c3566;fill-opacity:1;stroke:none"  
911 - x="1238.8339">  
912 - <tspan  
913 - id="tspan3009-6-5-5-2"  
914 - style="fill:#5c3566;fill-opacity:1;stroke:none">6</tspan>  
915 - </text>  
916 - <text  
917 - id="text3011-3-7-3-9"  
918 - y="303.18369"  
919 - style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#f57900;fill-opacity:1;stroke:none"  
920 - x="791.69611">  
921 - <tspan  
922 - id="tspan3009-6-5-5-1"  
923 - style="fill:#f57900;fill-opacity:1;stroke:none">0</tspan>  
924 - </text>  
925 - <text  
926 - id="text3011-3-7-3-9-2"  
927 - y="272.67294"  
928 - style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#f57900;fill-opacity:1;stroke:none"  
929 - x="1073.1799">  
930 - <tspan  
931 - id="tspan3009-6-5-5-1-7"  
932 - style="fill:#f57900;fill-opacity:1;stroke:none">6</tspan>  
933 - </text>  
934 - <text  
935 - id="text3011-3-7-3-9-0"  
936 - y="258.65451"  
937 - style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#f57900;fill-opacity:1;stroke:none"  
938 - x="1097.9182">  
939 - <tspan  
940 - id="tspan3009-6-5-5-1-9"  
941 - style="fill:#f57900;fill-opacity:1;stroke:none">9</tspan>  
942 - </text>  
943 - <text  
944 - id="text3011-3-7-3-9-3"  
945 - y="247.93451"  
946 - style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#f57900;fill-opacity:1;stroke:none"  
947 - x="1121.8322">  
948 - <tspan  
949 - id="tspan3009-6-5-5-1-6"  
950 - style="fill:#f57900;fill-opacity:1;stroke:none">11</tspan>  
951 - </text>  
952 - <text  
953 - id="text3011-3-7-3-9-3-0"  
954 - y="295.75946"  
955 - style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#f57900;fill-opacity:1;stroke:none"  
956 - x="1226.9954">  
957 - <tspan  
958 - id="tspan3009-6-5-5-1-6-6"  
959 - style="fill:#f57900;fill-opacity:1;stroke:none">6</tspan>  
960 - </text>  
961 - <path  
962 - style="fill:#7cb5ec"  
963 - inkscape:connector-curvature="0"  
964 - id="path8221"  
965 - class="highcharts-point highcharts-color-0"  
966 - d="m 358,240 a 4,4 0 1 1 0,-0.004 z" />  
967 - <path  
968 - d="m 472,174 a 4,4 0 1 1 0,-0.004 z"  
969 - class="highcharts-point highcharts-color-0"  
970 - id="path8223"  
971 - inkscape:connector-curvature="0"  
972 - style="fill:#7cb5ec" />  
973 - <path  
974 - style="fill:#7cb5ec"  
975 - inkscape:connector-curvature="0"  
976 - id="path8225"  
977 - class="highcharts-point highcharts-color-0"  
978 - d="m 590,96 a 4,4 0 1 1 0,-0.004 z" />  
979 - <text  
980 - id="text1923-2"  
981 - y="288.33472"  
982 - style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#666666"  
983 - x="123.86433">  
984 - <tspan  
985 - id="tspan1921-6">5</tspan>  
986 - </text>  
987 - <text  
988 - id="text1923-1"  
989 - y="260.34637"  
990 - style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#666666"  
991 - x="238.15005">  
992 - <tspan  
993 - id="tspan1921-8">15</tspan>  
994 - </text>  
995 - <text  
996 - id="text1923-7"  
997 - y="225.36096"  
998 - style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#666666"  
999 - x="358.26666">  
1000 - <tspan  
1001 - id="tspan1921-9">30</tspan>  
1002 - </text>  
1003 - <text  
1004 - id="text1923-20"  
1005 - y="158.88866"  
1006 - style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#666666"  
1007 - x="469.05383">  
1008 - <tspan  
1009 - id="tspan1921-2">57</tspan>  
1010 - </text>  
1011 - <text  
1012 - id="text1923-3"  
1013 - y="86.585457"  
1014 - style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#666666"  
1015 - x="588.00427">  
1016 - <tspan  
1017 - id="tspan1921-7">84</tspan>  
1018 - </text>  
1019 - <path  
1020 - style="font-size:12px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;opacity:1;fill:none;stroke:#b3b3b3;stroke-width:0.8217054"  
1021 - inkscape:connector-curvature="0"  
1022 - id="path1631-5"  
1023 - d="M 668.63914,22.3216 V 375.45105"  
1024 - class="highcharts-grid-line" />  
1025 - <rect  
1026 - x="553.5"  
1027 - y="242.5"  
1028 - width="40"  
1029 - height="67"  
1030 - class="highcharts-point highcharts-color-1"  
1031 - id="rect1853"  
1032 - style="fill:#4e9a06;stroke:none;stroke-width:3.65148377" />  
1033 -</svg>  
ieeeSW/releaseEng3/figures/pipeline.svg
@@ -1,1691 +0,0 @@ @@ -1,1691 +0,0 @@
1 -<?xml version="1.0" encoding="UTF-8" standalone="no"?>  
2 -<!-- Created with Inkscape (http://www.inkscape.org/) -->  
3 -  
4 -<svg  
5 - xmlns:dc="http://purl.org/dc/elements/1.1/"  
6 - xmlns:cc="http://creativecommons.org/ns#"  
7 - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"  
8 - xmlns:svg="http://www.w3.org/2000/svg"  
9 - xmlns="http://www.w3.org/2000/svg"  
10 - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"  
11 - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"  
12 - width="210mm"  
13 - height="297mm"  
14 - viewBox="0 0 210 297"  
15 - version="1.1"  
16 - id="svg8"  
17 - inkscape:version="0.92.2 5c3e80d, 2017-08-06"  
18 - sodipodi:docname="drawing.svg"  
19 - inkscape:export-filename="/home/melissawen/Estudos/Artigos/SPB/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
20 - inkscape:export-xdpi="90"  
21 - inkscape:export-ydpi="90">  
22 - <defs  
23 - id="defs2">  
24 - <marker  
25 - inkscape:stockid="Arrow2Lend"  
26 - orient="auto"  
27 - refY="0.0"  
28 - refX="0.0"  
29 - id="marker2874"  
30 - style="overflow:visible;"  
31 - inkscape:isstock="true">  
32 - <path  
33 - id="path2872"  
34 - style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#c66e00;stroke-opacity:1;fill:#c66e00;fill-opacity:1"  
35 - d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "  
36 - transform="scale(1.1) rotate(180) translate(1,0)" />  
37 - </marker>  
38 - <marker  
39 - inkscape:stockid="Arrow2Lend"  
40 - orient="auto"  
41 - refY="0.0"  
42 - refX="0.0"  
43 - id="marker2712"  
44 - style="overflow:visible;"  
45 - inkscape:isstock="true">  
46 - <path  
47 - id="path2710"  
48 - style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#c66e00;stroke-opacity:1;fill:#c66e00;fill-opacity:1"  
49 - d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "  
50 - transform="scale(1.1) rotate(180) translate(1,0)" />  
51 - </marker>  
52 - <marker  
53 - inkscape:stockid="Arrow2Lend"  
54 - orient="auto"  
55 - refY="0.0"  
56 - refX="0.0"  
57 - id="marker2558"  
58 - style="overflow:visible;"  
59 - inkscape:isstock="true">  
60 - <path  
61 - id="path2556"  
62 - style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#c66e00;stroke-opacity:1;fill:#c66e00;fill-opacity:1"  
63 - d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "  
64 - transform="scale(1.1) rotate(180) translate(1,0)" />  
65 - </marker>  
66 - <marker  
67 - inkscape:stockid="Arrow2Lend"  
68 - orient="auto"  
69 - refY="0"  
70 - refX="0"  
71 - id="marker2362"  
72 - style="overflow:visible"  
73 - inkscape:isstock="true">  
74 - <path  
75 - id="path2360"  
76 - style="fill:#c66e00;fill-opacity:1;fill-rule:evenodd;stroke:#c66e00;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"  
77 - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"  
78 - transform="matrix(-1.1,0,0,-1.1,-1.1,0)"  
79 - inkscape:connector-curvature="0" />  
80 - </marker>  
81 - <marker  
82 - inkscape:stockid="Arrow2Lend"  
83 - orient="auto"  
84 - refY="0"  
85 - refX="0"  
86 - id="marker2214"  
87 - style="overflow:visible"  
88 - inkscape:isstock="true">  
89 - <path  
90 - id="path2212"  
91 - style="fill:#c66e00;fill-opacity:1;fill-rule:evenodd;stroke:#c66e00;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"  
92 - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"  
93 - transform="matrix(-1.1,0,0,-1.1,-1.1,0)"  
94 - inkscape:connector-curvature="0" />  
95 - </marker>  
96 - <marker  
97 - inkscape:stockid="Arrow2Lend"  
98 - orient="auto"  
99 - refY="0"  
100 - refX="0"  
101 - id="marker1280"  
102 - style="overflow:visible"  
103 - inkscape:isstock="true">  
104 - <path  
105 - id="path1278"  
106 - style="fill:#c66e00;fill-opacity:1;fill-rule:evenodd;stroke:#c66e00;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"  
107 - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"  
108 - transform="matrix(-1.1,0,0,-1.1,-1.1,0)"  
109 - inkscape:connector-curvature="0" />  
110 - </marker>  
111 - <marker  
112 - inkscape:stockid="Arrow2Lend"  
113 - orient="auto"  
114 - refY="0.0"  
115 - refX="0.0"  
116 - id="marker22202"  
117 - style="overflow:visible;"  
118 - inkscape:isstock="true">  
119 - <path  
120 - id="path22200"  
121 - style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"  
122 - d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "  
123 - transform="scale(1.1) rotate(180) translate(1,0)" />  
124 - </marker>  
125 - <marker  
126 - inkscape:stockid="Arrow2Lend"  
127 - orient="auto"  
128 - refY="0.0"  
129 - refX="0.0"  
130 - id="marker21792"  
131 - style="overflow:visible;"  
132 - inkscape:isstock="true">  
133 - <path  
134 - id="path21790"  
135 - style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#c66e00;stroke-opacity:1;fill:#c66e00;fill-opacity:1"  
136 - d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "  
137 - transform="scale(1.1) rotate(180) translate(1,0)" />  
138 - </marker>  
139 - <marker  
140 - inkscape:isstock="true"  
141 - style="overflow:visible;"  
142 - id="marker21254"  
143 - refX="0.0"  
144 - refY="0.0"  
145 - orient="auto"  
146 - inkscape:stockid="Arrow2Lend"  
147 - inkscape:collect="always">  
148 - <path  
149 - transform="scale(1.1) rotate(180) translate(1,0)"  
150 - d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "  
151 - style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"  
152 - id="path21252" />  
153 - </marker>  
154 - <marker  
155 - inkscape:isstock="true"  
156 - style="overflow:visible;"  
157 - id="marker14950"  
158 - refX="0.0"  
159 - refY="0.0"  
160 - orient="auto"  
161 - inkscape:stockid="Arrow2Lend">  
162 - <path  
163 - transform="scale(1.1) rotate(180) translate(1,0)"  
164 - d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "  
165 - style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"  
166 - id="path14948" />  
167 - </marker>  
168 - <marker  
169 - inkscape:stockid="Arrow2Lend"  
170 - orient="auto"  
171 - refY="0.0"  
172 - refX="0.0"  
173 - id="marker14790"  
174 - style="overflow:visible;"  
175 - inkscape:isstock="true">  
176 - <path  
177 - id="path14788"  
178 - style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"  
179 - d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "  
180 - transform="scale(1.1) rotate(180) translate(1,0)" />  
181 - </marker>  
182 - <marker  
183 - inkscape:stockid="Arrow2Lend"  
184 - orient="auto"  
185 - refY="0.0"  
186 - refX="0.0"  
187 - id="marker14146"  
188 - style="overflow:visible;"  
189 - inkscape:isstock="true">  
190 - <path  
191 - id="path14144"  
192 - style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"  
193 - d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "  
194 - transform="scale(1.1) rotate(180) translate(1,0)" />  
195 - </marker>  
196 - <marker  
197 - inkscape:stockid="Arrow2Lend"  
198 - orient="auto"  
199 - refY="0.0"  
200 - refX="0.0"  
201 - id="marker12622"  
202 - style="overflow:visible;"  
203 - inkscape:isstock="true"  
204 - inkscape:collect="always">  
205 - <path  
206 - id="path12620"  
207 - style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"  
208 - d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "  
209 - transform="scale(1.1) rotate(180) translate(1,0)" />  
210 - </marker>  
211 - <marker  
212 - inkscape:stockid="Arrow2Lend"  
213 - orient="auto"  
214 - refY="0.0"  
215 - refX="0.0"  
216 - id="marker10918"  
217 - style="overflow:visible;"  
218 - inkscape:isstock="true">  
219 - <path  
220 - id="path10916"  
221 - style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"  
222 - d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "  
223 - transform="scale(1.1) rotate(180) translate(1,0)" />  
224 - </marker>  
225 - <marker  
226 - inkscape:isstock="true"  
227 - style="overflow:visible;"  
228 - id="marker9384"  
229 - refX="0.0"  
230 - refY="0.0"  
231 - orient="auto"  
232 - inkscape:stockid="Arrow2Lend">  
233 - <path  
234 - transform="scale(1.1) rotate(180) translate(1,0)"  
235 - d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "  
236 - style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"  
237 - id="path9382" />  
238 - </marker>  
239 - <marker  
240 - inkscape:stockid="Arrow2Lend"  
241 - orient="auto"  
242 - refY="0.0"  
243 - refX="0.0"  
244 - id="marker7488"  
245 - style="overflow:visible;"  
246 - inkscape:isstock="true">  
247 - <path  
248 - id="path7486"  
249 - style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"  
250 - d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "  
251 - transform="scale(1.1) rotate(180) translate(1,0)" />  
252 - </marker>  
253 - <marker  
254 - inkscape:isstock="true"  
255 - style="overflow:visible;"  
256 - id="marker5298"  
257 - refX="0.0"  
258 - refY="0.0"  
259 - orient="auto"  
260 - inkscape:stockid="Arrow2Lend"  
261 - inkscape:collect="always">  
262 - <path  
263 - transform="scale(1.1) rotate(180) translate(1,0)"  
264 - d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "  
265 - style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#c66e00;stroke-opacity:1;fill:#c66e00;fill-opacity:1"  
266 - id="path5296" />  
267 - </marker>  
268 - <marker  
269 - inkscape:stockid="Arrow2Lend"  
270 - orient="auto"  
271 - refY="0.0"  
272 - refX="0.0"  
273 - id="marker5226"  
274 - style="overflow:visible;"  
275 - inkscape:isstock="true"  
276 - inkscape:collect="always">  
277 - <path  
278 - id="path5224"  
279 - style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#c66e00;stroke-opacity:1;fill:#c66e00;fill-opacity:1"  
280 - d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "  
281 - transform="scale(1.1) rotate(180) translate(1,0)" />  
282 - </marker>  
283 - <marker  
284 - inkscape:stockid="Arrow2Lend"  
285 - orient="auto"  
286 - refY="0.0"  
287 - refX="0.0"  
288 - id="Arrow2Lend"  
289 - style="overflow:visible;"  
290 - inkscape:isstock="true"  
291 - inkscape:collect="always">  
292 - <path  
293 - id="path4815"  
294 - style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"  
295 - d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "  
296 - transform="scale(1.1) rotate(180) translate(1,0)" />  
297 - </marker>  
298 - <marker  
299 - inkscape:stockid="Arrow1Lend"  
300 - orient="auto"  
301 - refY="0.0"  
302 - refX="0.0"  
303 - id="marker5118"  
304 - style="overflow:visible;"  
305 - inkscape:isstock="true">  
306 - <path  
307 - id="path5116"  
308 - d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "  
309 - style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"  
310 - transform="scale(0.8) rotate(180) translate(12.5,0)" />  
311 - </marker>  
312 - <marker  
313 - inkscape:stockid="Arrow1Lend"  
314 - orient="auto"  
315 - refY="0.0"  
316 - refX="0.0"  
317 - id="marker5084"  
318 - style="overflow:visible;"  
319 - inkscape:isstock="true">  
320 - <path  
321 - id="path5082"  
322 - d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "  
323 - style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"  
324 - transform="scale(0.8) rotate(180) translate(12.5,0)" />  
325 - </marker>  
326 - <marker  
327 - inkscape:stockid="Arrow1Lend"  
328 - orient="auto"  
329 - refY="0.0"  
330 - refX="0.0"  
331 - id="Arrow1Lend"  
332 - style="overflow:visible;"  
333 - inkscape:isstock="true">  
334 - <path  
335 - id="path4797"  
336 - d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "  
337 - style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"  
338 - transform="scale(0.8) rotate(180) translate(12.5,0)" />  
339 - </marker>  
340 - <marker  
341 - inkscape:isstock="true"  
342 - style="overflow:visible"  
343 - id="marker13378"  
344 - refX="0"  
345 - refY="0"  
346 - orient="auto"  
347 - inkscape:stockid="Arrow2Lend"  
348 - inkscape:collect="always">  
349 - <path  
350 - inkscape:connector-curvature="0"  
351 - transform="matrix(-1.1,0,0,-1.1,-1.1,0)"  
352 - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"  
353 - style="fill:#c66e00;fill-opacity:1;fill-rule:evenodd;stroke:#c66e00;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"  
354 - id="path13376" />  
355 - </marker>  
356 - <marker  
357 - inkscape:stockid="Arrow2Lend"  
358 - orient="auto"  
359 - refY="0"  
360 - refX="0"  
361 - id="marker12622-7"  
362 - style="overflow:visible"  
363 - inkscape:isstock="true"  
364 - inkscape:collect="always">  
365 - <path  
366 - inkscape:connector-curvature="0"  
367 - id="path12620-1"  
368 - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"  
369 - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"  
370 - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />  
371 - </marker>  
372 - </defs>  
373 - <sodipodi:namedview  
374 - id="base"  
375 - pagecolor="#ffffff"  
376 - bordercolor="#666666"  
377 - borderopacity="1.0"  
378 - inkscape:pageopacity="0.0"  
379 - inkscape:pageshadow="2"  
380 - inkscape:zoom="0.24748737"  
381 - inkscape:cx="661.11287"  
382 - inkscape:cy="1338.1495"  
383 - inkscape:document-units="mm"  
384 - inkscape:current-layer="layer1"  
385 - showgrid="false"  
386 - inkscape:window-width="1366"  
387 - inkscape:window-height="695"  
388 - inkscape:window-x="0"  
389 - inkscape:window-y="27"  
390 - inkscape:window-maximized="1"  
391 - inkscape:object-nodes="false"  
392 - showguides="true"  
393 - inkscape:guide-bbox="true">  
394 - <sodipodi:guide  
395 - position="355.29762,554.86906"  
396 - orientation="0,1"  
397 - id="guide1216"  
398 - inkscape:locked="false" />  
399 - </sodipodi:namedview>  
400 - <metadata  
401 - id="metadata5">  
402 - <rdf:RDF>  
403 - <cc:Work  
404 - rdf:about="">  
405 - <dc:format>image/svg+xml</dc:format>  
406 - <dc:type  
407 - rdf:resource="http://purl.org/dc/dcmitype/StillImage" />  
408 - <dc:title />  
409 - </cc:Work>  
410 - </rdf:RDF>  
411 - </metadata>  
412 - <g  
413 - inkscape:label="Layer 1"  
414 - inkscape:groupmode="layer"  
415 - id="layer1">  
416 - <rect  
417 - y="-100.85773"  
418 - x="-370.03882"  
419 - height="365.88095"  
420 - width="1138.4642"  
421 - id="rect4774-7"  
422 - style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.44747961px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"  
423 - inkscape:export-filename="/home/melissawen/Estudos/Artigos/SPB/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
424 - inkscape:export-xdpi="59.993629"  
425 - inkscape:export-ydpi="59.993629" />  
426 - <flowRoot  
427 - xml:space="preserve"  
428 - id="flowRoot4764"  
429 - style="fill:black;stroke:none;stroke-opacity:1;stroke-width:1px;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;font-family:'Open Sans';font-style:normal;font-weight:normal;font-size:40px;line-height:23px;letter-spacing:0px;word-spacing:0px;-inkscape-font-specification:'Open Sans';font-stretch:normal;font-variant:normal"  
430 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
431 - inkscape:export-xdpi="59.993629"  
432 - inkscape:export-ydpi="59.993629"><flowRegion  
433 - id="flowRegion4766"><rect  
434 - id="rect4768"  
435 - width="3168.5715"  
436 - height="311.42856"  
437 - x="-908.57141"  
438 - y="-280.33746" /></flowRegion><flowPara  
439 - id="flowPara4770" /></flowRoot> <path  
440 - style="fill:#c66e00;fill-rule:evenodd;stroke:#c66e00;stroke-width:1.39996815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.79993637, 1.39996819000000006;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker5226);fill-opacity:1"  
441 - d="m 697.18892,-73.663744 h 42.55854"  
442 - id="path4790"  
443 - inkscape:connector-curvature="0"  
444 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
445 - inkscape:export-xdpi="59.993629"  
446 - inkscape:export-ydpi="59.993629" />  
447 - <text  
448 - id="text5280"  
449 - y="-70.280861"  
450 - x="662.47571"  
451 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.5269537px;line-height:14.09282303px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.31317383px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
452 - xml:space="preserve"  
453 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
454 - inkscape:export-xdpi="59.993629"  
455 - inkscape:export-ydpi="59.993629"><tspan  
456 - id="tspan5278"  
457 - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:12.69999981px;line-height:14.09282303px;font-family:Courier;-inkscape-font-specification:'Courier Bold';text-align:center;text-anchor:middle;stroke-width:0.31317383px"  
458 - y="-70.280861"  
459 - x="662.47571"  
460 - sodipodi:role="line">Manually</tspan></text>  
461 - <path  
462 - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.36668432;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend)"  
463 - d="m 555.00665,-73.66433 h 41.45362"  
464 - id="path4792"  
465 - inkscape:connector-curvature="0"  
466 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
467 - inkscape:export-xdpi="59.993629"  
468 - inkscape:export-ydpi="59.993629" />  
469 - <text  
470 - xml:space="preserve"  
471 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.5269537px;line-height:14.09282303px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.31317383px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
472 - x="515.08429"  
473 - y="-68.987915"  
474 - id="text5286"  
475 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
476 - inkscape:export-xdpi="59.993629"  
477 - inkscape:export-ydpi="59.993629"><tspan  
478 - sodipodi:role="line"  
479 - x="515.08429"  
480 - y="-68.987915"  
481 - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:12.69999981px;line-height:14.09282303px;font-family:Courier;-inkscape-font-specification:'Courier Bold';text-align:center;text-anchor:middle;stroke-width:0.31317383px"  
482 - id="tspan5284">Automated</tspan></text>  
483 - <path  
484 - inkscape:connector-curvature="0"  
485 - id="path5294"  
486 - d="M -324.68247,75.785663 V 19.752935 h 72.49512"  
487 - style="fill:none;fill-rule:evenodd;stroke:#c66e00;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.00000007, 1.00000003999999998;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker2558)"  
488 - sodipodi:nodetypes="ccc"  
489 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
490 - inkscape:export-xdpi="59.993629"  
491 - inkscape:export-ydpi="59.993629" />  
492 - <text  
493 - xml:space="preserve"  
494 - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:6.08541679px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
495 - x="264.44788"  
496 - y="-29.855127"  
497 - id="text4548"  
498 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
499 - inkscape:export-xdpi="59.993629"  
500 - inkscape:export-ydpi="59.993629"><tspan  
501 - sodipodi:role="line"  
502 - id="tspan4546"  
503 - x="264.44788"  
504 - y="-29.855127"  
505 - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px">Packaging</tspan></text>  
506 - <rect  
507 - ry="8.2461615"  
508 - y="-0.01368895"  
509 - x="221.27118"  
510 - height="199.57143"  
511 - width="87.690483"  
512 - id="rect4774"  
513 - style="opacity:1;vector-effect:none;fill:#e9ddaf;fill-opacity:1;stroke:none;stroke-width:0.29669365px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"  
514 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
515 - inkscape:export-xdpi="59.993629"  
516 - inkscape:export-ydpi="59.993629"  
517 - rx="9.0033846" />  
518 - <rect  
519 - style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#554400;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:8.99999995, 3;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"  
520 - id="rect20602"  
521 - width="103.40431"  
522 - height="256.45126"  
523 - x="213.03629"  
524 - y="-48.821728"  
525 - ry="10.5964"  
526 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
527 - inkscape:export-xdpi="59.993629"  
528 - inkscape:export-ydpi="59.993629"  
529 - rx="10.5964" />  
530 - <path  
531 - style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#554400;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"  
532 - d="m 56.916332,208.30829 v 21.64883 H 324.18601 v -21.64883"  
533 - id="path21024"  
534 - inkscape:connector-curvature="0"  
535 - sodipodi:nodetypes="cccc"  
536 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
537 - inkscape:export-xdpi="59.993629"  
538 - inkscape:export-ydpi="59.993629" />  
539 - <text  
540 - inkscape:export-ydpi="59.993629"  
541 - inkscape:export-xdpi="59.993629"  
542 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
543 - id="text21042"  
544 - y="248.02782"  
545 - x="190.5383"  
546 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
547 - xml:space="preserve"><tspan  
548 - id="tspan21040"  
549 - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:12.69999981px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier Bold';text-align:center;text-anchor:middle;stroke-width:0.26458332px"  
550 - y="248.02782"  
551 - x="190.5383"  
552 - sodipodi:role="line">SPB release</tspan></text>  
553 - <path  
554 - inkscape:export-ydpi="59.993629"  
555 - inkscape:export-xdpi="59.993629"  
556 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
557 - sodipodi:nodetypes="cc"  
558 - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker21254)"  
559 - d="m 321.58526,79.421519 h 30.23808"  
560 - id="path21250"  
561 - inkscape:connector-curvature="0" />  
562 - <text  
563 - xml:space="preserve"  
564 - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
565 - x="408.14767"  
566 - y="-29.855127"  
567 - id="text4552"  
568 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
569 - inkscape:export-xdpi="59.993629"  
570 - inkscape:export-ydpi="59.993629"><tspan  
571 - sodipodi:role="line"  
572 - id="tspan4550"  
573 - x="408.14767"  
574 - y="-29.855127"  
575 - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px">Validation</tspan><tspan  
576 - sodipodi:role="line"  
577 - x="408.14767"  
578 - y="-17.948877"  
579 - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px"  
580 - id="tspan4772">Environment</tspan><tspan  
581 - sodipodi:role="line"  
582 - x="408.14767"  
583 - y="-6.0426283"  
584 - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px"  
585 - id="tspan4554">Deployment</tspan></text>  
586 - <rect  
587 - rx="10.5964"  
588 - inkscape:export-ydpi="59.993629"  
589 - inkscape:export-xdpi="59.993629"  
590 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
591 - ry="10.5964"  
592 - y="-48.821728"  
593 - x="356.8555"  
594 - height="256.45126"  
595 - width="103.40431"  
596 - id="rect21044"  
597 - style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#554400;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:8.99999995, 3;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />  
598 - <rect  
599 - rx="9.0033846"  
600 - inkscape:export-ydpi="59.993629"  
601 - inkscape:export-xdpi="59.993629"  
602 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
603 - style="opacity:1;vector-effect:none;fill:#e9ddaf;fill-opacity:1;stroke:none;stroke-width:0.29669365px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"  
604 - id="rect1359"  
605 - width="87.690483"  
606 - height="199.57143"  
607 - x="364.7124"  
608 - y="-0.01368895"  
609 - ry="8.2461615" />  
610 - <text  
611 - inkscape:export-ydpi="59.993629"  
612 - inkscape:export-xdpi="59.993629"  
613 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
614 - id="text21572"  
615 - y="88.349464"  
616 - x="408.44601"  
617 - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:17.63888931px;line-height:6.08541679px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"  
618 - xml:space="preserve"><tspan  
619 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;line-height:15.875px;font-family:Roboto;-inkscape-font-specification:Roboto;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"  
620 - y="88.349464"  
621 - x="408.44601"  
622 - sodipodi:role="line"  
623 - id="tspan21570">New</tspan><tspan  
624 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;line-height:15.875px;font-family:Roboto;-inkscape-font-specification:Roboto;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"  
625 - y="104.22446"  
626 - x="408.44601"  
627 - sodipodi:role="line"  
628 - id="tspan21576">feature</tspan><tspan  
629 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;line-height:15.875px;font-family:Roboto;-inkscape-font-specification:Roboto;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"  
630 - y="120.09946"  
631 - x="408.44601"  
632 - sodipodi:role="line"  
633 - id="tspan21580">available</tspan></text>  
634 - <path  
635 - inkscape:export-ydpi="59.993629"  
636 - inkscape:export-xdpi="59.993629"  
637 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
638 - inkscape:connector-curvature="0"  
639 - id="path21788"  
640 - d="m 464.75925,79.421519 h 30.23808"  
641 - style="fill:#c66e00;fill-rule:evenodd;stroke:#c66e00;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.00000006, 1.00000003000000004;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker21792);fill-opacity:1"  
642 - sodipodi:nodetypes="cc" />  
643 - <path  
644 - inkscape:connector-curvature="0"  
645 - id="path22198"  
646 - d="m 608.76818,79.421519 h 30.23808"  
647 - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker22202)"  
648 - sodipodi:nodetypes="cc"  
649 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
650 - inkscape:export-xdpi="59.993629"  
651 - inkscape:export-ydpi="59.993629" />  
652 - <text  
653 - xml:space="preserve"  
654 - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:6.08541679px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
655 - x="552.68695"  
656 - y="-30.797043"  
657 - id="text4558"  
658 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
659 - inkscape:export-xdpi="59.993629"  
660 - inkscape:export-ydpi="59.993629"><tspan  
661 - sodipodi:role="line"  
662 - id="tspan4556"  
663 - x="552.68695"  
664 - y="-30.797043"  
665 - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px">Acceptance</tspan><tspan  
666 - sodipodi:role="line"  
667 - x="552.68695"  
668 - y="-18.890793"  
669 - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px"  
670 - id="tspan4564">Tests</tspan></text>  
671 - <rect  
672 - rx="10.5964"  
673 - style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#554400;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:8.99999995, 3;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"  
674 - id="rect22184"  
675 - width="103.40431"  
676 - height="256.45126"  
677 - x="500.67474"  
678 - y="-48.821728"  
679 - ry="10.5964"  
680 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
681 - inkscape:export-xdpi="59.993629"  
682 - inkscape:export-ydpi="59.993629" />  
683 - <rect  
684 - ry="8.2461615"  
685 - y="-0.01368895"  
686 - x="508.53165"  
687 - height="199.57143"  
688 - width="87.690483"  
689 - id="rect1361"  
690 - style="opacity:1;vector-effect:none;fill:#e9ddaf;fill-opacity:1;stroke:none;stroke-width:0.29669365px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"  
691 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
692 - inkscape:export-xdpi="59.993629"  
693 - inkscape:export-ydpi="59.993629"  
694 - rx="9.0033846" />  
695 - <text  
696 - xml:space="preserve"  
697 - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:17.63888931px;line-height:6.08541679px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"  
698 - x="552.20325"  
699 - y="80.473976"  
700 - id="text22618"  
701 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
702 - inkscape:export-xdpi="59.993629"  
703 - inkscape:export-ydpi="59.993629"><tspan  
704 - id="tspan22616"  
705 - sodipodi:role="line"  
706 - x="552.20325"  
707 - y="80.473976"  
708 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;line-height:15.875px;font-family:Roboto;-inkscape-font-specification:Roboto;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">Wait</tspan><tspan  
709 - sodipodi:role="line"  
710 - x="552.20325"  
711 - y="96.348976"  
712 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;line-height:15.875px;font-family:Roboto;-inkscape-font-specification:Roboto;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"  
713 - id="tspan22627">for</tspan><tspan  
714 - sodipodi:role="line"  
715 - x="552.20325"  
716 - y="112.22398"  
717 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;line-height:15.875px;font-family:Roboto;-inkscape-font-specification:Roboto;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"  
718 - id="tspan22625">Analysts</tspan><tspan  
719 - sodipodi:role="line"  
720 - x="552.20325"  
721 - y="128.09897"  
722 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;line-height:15.875px;font-family:Roboto;-inkscape-font-specification:Roboto;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"  
723 - id="tspan22629">feedback</tspan></text>  
724 - <text  
725 - xml:space="preserve"  
726 - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:6.08541679px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
727 - x="695.78613"  
728 - y="-29.855127"  
729 - id="text4562"  
730 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
731 - inkscape:export-xdpi="59.993629"  
732 - inkscape:export-ydpi="59.993629"><tspan  
733 - sodipodi:role="line"  
734 - id="tspan4560"  
735 - x="695.78613"  
736 - y="-29.855127"  
737 - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px">Production</tspan><tspan  
738 - sodipodi:role="line"  
739 - x="695.78613"  
740 - y="-17.948877"  
741 - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px"  
742 - id="tspan4566">Environment</tspan></text>  
743 - <rect  
744 - inkscape:export-ydpi="59.993629"  
745 - inkscape:export-xdpi="59.993629"  
746 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
747 - ry="10.5964"  
748 - y="-48.821728"  
749 - x="644.49396"  
750 - height="256.45126"  
751 - width="103.40431"  
752 - id="rect22631"  
753 - style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#554400;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:8.99999995, 3;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"  
754 - rx="10.5964" />  
755 - <rect  
756 - rx="9.0033846"  
757 - inkscape:export-ydpi="59.993629"  
758 - inkscape:export-xdpi="59.993629"  
759 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
760 - style="opacity:1;vector-effect:none;fill:#e9ddaf;fill-opacity:1;stroke:none;stroke-width:0.29669365px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"  
761 - id="rect1363"  
762 - width="87.690483"  
763 - height="199.57143"  
764 - x="652.35089"  
765 - y="-0.01368895"  
766 - ry="8.2461615" />  
767 - <text  
768 - inkscape:export-ydpi="59.993629"  
769 - inkscape:export-xdpi="59.993629"  
770 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
771 - id="text22641"  
772 - y="88.349464"  
773 - x="696.08453"  
774 - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:17.63888931px;line-height:6.08541679px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"  
775 - xml:space="preserve"><tspan  
776 - id="tspan22639"  
777 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;line-height:15.875px;font-family:Roboto;-inkscape-font-specification:Roboto;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"  
778 - y="88.349464"  
779 - x="696.08453"  
780 - sodipodi:role="line">New</tspan><tspan  
781 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;line-height:15.875px;font-family:Roboto;-inkscape-font-specification:Roboto;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"  
782 - y="104.22446"  
783 - x="696.08453"  
784 - sodipodi:role="line"  
785 - id="tspan22652">feature</tspan><tspan  
786 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;line-height:15.875px;font-family:Roboto;-inkscape-font-specification:Roboto;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"  
787 - y="120.09946"  
788 - x="696.08453"  
789 - sodipodi:role="line"  
790 - id="tspan22654">available</tspan></text>  
791 - <text  
792 - xml:space="preserve"  
793 - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
794 - x="-39.728462"  
795 - y="-30.109127"  
796 - id="text4536"  
797 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
798 - inkscape:export-xdpi="59.993629"  
799 - inkscape:export-ydpi="59.993629"><tspan  
800 - sodipodi:role="line"  
801 - id="tspan4534"  
802 - x="-39.728462"  
803 - y="-30.109127"  
804 - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px">Automated</tspan><tspan  
805 - sodipodi:role="line"  
806 - x="-39.728462"  
807 - y="-18.202877"  
808 - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px"  
809 - id="tspan4538">testing</tspan></text>  
810 - <rect  
811 - style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#554400;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:9.00000005, 3.00000005;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"  
812 - id="rect19358"  
813 - width="132.13049"  
814 - height="256.45126"  
815 - x="-103.32832"  
816 - y="-48.821728"  
817 - ry="10.5964"  
818 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
819 - inkscape:export-xdpi="59.993629"  
820 - inkscape:export-ydpi="59.993629"  
821 - rx="10.5964" />  
822 - <rect  
823 - style="opacity:1;vector-effect:none;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.26458335px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"  
824 - id="rect465"  
825 - width="86.410423"  
826 - height="204.74899"  
827 - x="-97.82"  
828 - y="-3.4685135"  
829 - ry="9.91994"  
830 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
831 - inkscape:export-xdpi="59.993629"  
832 - inkscape:export-ydpi="59.993629"  
833 - rx="9.9199409" />  
834 - <g  
835 - id="g738"  
836 - transform="translate(1.5243757)"  
837 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
838 - inkscape:export-xdpi="59.993629"  
839 - inkscape:export-ydpi="59.993629">  
840 - <rect  
841 - style="opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"  
842 - id="rect270"  
843 - width="79.984833"  
844 - height="38.061478"  
845 - x="-96.131584"  
846 - y="-0.14233224"  
847 - ry="9.91994"  
848 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
849 - inkscape:export-xdpi="293.84"  
850 - inkscape:export-ydpi="293.84"  
851 - rx="9.91994" />  
852 - <text  
853 - xml:space="preserve"  
854 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.74834156px;line-height:5.03029633px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
855 - x="-56.254425"  
856 - y="17.063866"  
857 - id="text274"  
858 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
859 - inkscape:export-xdpi="293.84"  
860 - inkscape:export-ydpi="293.84"><tspan  
861 - id="tspan311"  
862 - sodipodi:role="line"  
863 - x="-56.254425"  
864 - y="17.063866"  
865 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px">System 1</tspan><tspan  
866 - id="tspan315"  
867 - sodipodi:role="line"  
868 - x="-56.254425"  
869 - y="29.674088"  
870 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px">unit tests</tspan></text>  
871 - </g>  
872 - <rect  
873 - rx="9.91994"  
874 - style="opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"  
875 - id="rect323"  
876 - width="79.984833"  
877 - height="38.061478"  
878 - x="-94.607208"  
879 - y="41.982311"  
880 - ry="9.91994"  
881 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
882 - inkscape:export-xdpi="59.993629"  
883 - inkscape:export-ydpi="59.993629" />  
884 - <text  
885 - xml:space="preserve"  
886 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.74834156px;line-height:5.03029633px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
887 - x="-54.730049"  
888 - y="59.188511"  
889 - id="text329"  
890 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
891 - inkscape:export-xdpi="59.993629"  
892 - inkscape:export-ydpi="59.993629"><tspan  
893 - id="tspan325"  
894 - sodipodi:role="line"  
895 - x="-54.730049"  
896 - y="59.188511"  
897 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px">System 2</tspan><tspan  
898 - id="tspan327"  
899 - sodipodi:role="line"  
900 - x="-54.730049"  
901 - y="71.798729"  
902 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px">unit tests</tspan></text>  
903 - <rect  
904 - rx="9.91994"  
905 - inkscape:export-ydpi="59.993629"  
906 - inkscape:export-xdpi="59.993629"  
907 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
908 - ry="9.91994"  
909 - y="84.106926"  
910 - x="-94.607208"  
911 - height="38.061478"  
912 - width="79.984833"  
913 - id="rect333"  
914 - style="opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />  
915 - <text  
916 - inkscape:export-ydpi="59.993629"  
917 - inkscape:export-xdpi="59.993629"  
918 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
919 - id="text339"  
920 - y="101.31312"  
921 - x="-54.730049"  
922 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.74834156px;line-height:5.03029633px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
923 - xml:space="preserve"><tspan  
924 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px"  
925 - y="101.31312"  
926 - x="-54.730049"  
927 - sodipodi:role="line"  
928 - id="tspan4197">System 3</tspan><tspan  
929 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px"  
930 - y="113.92334"  
931 - x="-54.730049"  
932 - sodipodi:role="line"  
933 - id="tspan337">unit tests</tspan></text>  
934 - <rect  
935 - rx="9.91994"  
936 - style="opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"  
937 - id="rect343"  
938 - width="79.984833"  
939 - height="38.061478"  
940 - x="-94.607208"  
941 - y="126.23154"  
942 - ry="9.91994"  
943 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
944 - inkscape:export-xdpi="59.993629"  
945 - inkscape:export-ydpi="59.993629" />  
946 - <text  
947 - xml:space="preserve"  
948 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.74834156px;line-height:5.03029633px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
949 - x="-54.730049"  
950 - y="143.43774"  
951 - id="text349"  
952 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
953 - inkscape:export-xdpi="59.993629"  
954 - inkscape:export-ydpi="59.993629"><tspan  
955 - id="tspan345"  
956 - sodipodi:role="line"  
957 - x="-54.730049"  
958 - y="143.43774"  
959 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px">System 4</tspan><tspan  
960 - id="tspan347"  
961 - sodipodi:role="line"  
962 - x="-54.730049"  
963 - y="156.04796"  
964 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px">unit tests</tspan></text>  
965 - <rect  
966 - rx="9.9199409"  
967 - inkscape:export-ydpi="59.993629"  
968 - inkscape:export-xdpi="59.993629"  
969 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
970 - ry="9.91994"  
971 - y="-3.4685135"  
972 - x="-9.6003361"  
973 - height="204"  
974 - width="33.493755"  
975 - id="rect479"  
976 - style="opacity:1;vector-effect:none;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.26458335px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />  
977 - <text  
978 - xml:space="preserve"  
979 - style="font-style:normal;font-weight:normal;font-size:3.30729151px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
980 - x="-132.01781"  
981 - y="10.588192"  
982 - id="text483"  
983 - transform="rotate(-90)"  
984 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
985 - inkscape:export-xdpi="59.993629"  
986 - inkscape:export-ydpi="59.993629"><tspan  
987 - sodipodi:role="line"  
988 - id="tspan481"  
989 - x="-132.01781"  
990 - y="10.588192"  
991 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;font-family:Roboto;-inkscape-font-specification:Roboto;stroke-width:0.26458332px">Plugin tests</tspan></text>  
992 - <flowRoot  
993 - xml:space="preserve"  
994 - id="flowRoot377-8"  
995 - style="font-style:normal;font-weight:normal;font-size:12.5px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.29665077px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
996 - transform="matrix(0,0.20405135,0.20405135,0,-237.01334,447.38408)"  
997 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
998 - inkscape:export-xdpi="59.993629"  
999 - inkscape:export-ydpi="59.993629"><flowRegion  
1000 - style="stroke-width:1.29665077px"  
1001 - id="flowRegion373-1"><rect  
1002 - style="stroke-width:1.29665077px"  
1003 - id="rect371-0"  
1004 - width="222.85715"  
1005 - height="205.71429"  
1006 - x="-1328.5714"  
1007 - y="868.23395" /></flowRegion><flowPara  
1008 - id="flowPara375-5"  
1009 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:85.33333588px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';stroke-width:1.29665077px">...</flowPara></flowRoot> <path  
1010 - inkscape:export-ydpi="59.993629"  
1011 - inkscape:export-xdpi="59.993629"  
1012 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1013 - sodipodi:nodetypes="ccc"  
1014 - style="fill:none;fill-rule:evenodd;stroke:#c66e00;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.00000005, 1.00000004999999992;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker2712)"  
1015 - d="M -297.56291,75.785663 V 58.605335 h 45.91193"  
1016 - id="path505"  
1017 - inkscape:connector-curvature="0" />  
1018 - <path  
1019 - inkscape:export-ydpi="293.84"  
1020 - inkscape:export-xdpi="293.84"  
1021 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1022 - sodipodi:nodetypes="ccc"  
1023 - style="fill:none;fill-rule:evenodd;stroke:#c66e00;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.00000007, 1.00000004;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker5298)"  
1024 - d="M -324.68247,86.939177 V 142.9719 h 72.49512"  
1025 - id="path507"  
1026 - inkscape:connector-curvature="0" />  
1027 - <path  
1028 - inkscape:connector-curvature="0"  
1029 - id="path509"  
1030 - d="m -297.56291,86.939177 v 17.180333 h 45.91193"  
1031 - style="fill:none;fill-rule:evenodd;stroke:#c66e00;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.00000005, 1.00000004999999992;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker2874)"  
1032 - sodipodi:nodetypes="ccc"  
1033 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1034 - inkscape:export-xdpi="293.84"  
1035 - inkscape:export-ydpi="293.84" />  
1036 - <g  
1037 - id="g258-0"  
1038 - transform="matrix(0.95321363,0,0,0.95321363,-128.68254,61.598651)"  
1039 - style="stroke-width:1.04908276"  
1040 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1041 - inkscape:export-xdpi="59.993629"  
1042 - inkscape:export-ydpi="59.993629">  
1043 - <rect  
1044 - inkscape:export-ydpi="293.84"  
1045 - inkscape:export-xdpi="293.84"  
1046 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1047 - ry="6.6633935"  
1048 - y="7.6060753"  
1049 - x="-237.8222"  
1050 - height="25.566545"  
1051 - width="83.910713"  
1052 - id="rect4664-2"  
1053 - style="opacity:1;vector-effect:none;fill:#b7bec8;fill-opacity:1;stroke:none;stroke-width:0.2775698px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"  
1054 - rx="6.6633935" />  
1055 - <text  
1056 - inkscape:export-ydpi="293.84"  
1057 - inkscape:export-xdpi="293.84"  
1058 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1059 - id="text4510-5"  
1060 - y="25.089836"  
1061 - x="-212.25964"  
1062 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.17773438px;line-height:5.27719736px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.2775698px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
1063 - xml:space="preserve"><tspan  
1064 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;font-family:Roboto;-inkscape-font-specification:Roboto;stroke-width:0.2775698px"  
1065 - y="25.089836"  
1066 - x="-212.25964"  
1067 - id="tspan4508-8"  
1068 - sodipodi:role="line">Colab</tspan></text>  
1069 - </g>  
1070 - <rect  
1071 - rx="10.5964"  
1072 - inkscape:export-ydpi="59.993629"  
1073 - inkscape:export-xdpi="59.993629"  
1074 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1075 - ry="10.5964"  
1076 - y="-48.821728"  
1077 - x="-247.14754"  
1078 - height="256.45126"  
1079 - width="103.40431"  
1080 - id="rect15120"  
1081 - style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#554400;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:8.99999995, 3;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />  
1082 - <g  
1083 - id="g258"  
1084 - transform="matrix(0.95321363,0,0,0.95321363,-5.4136992,-0.54699733)"  
1085 - style="stroke-width:1.04908276"  
1086 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1087 - inkscape:export-xdpi="59.993629"  
1088 - inkscape:export-ydpi="59.993629">  
1089 - <rect  
1090 - inkscape:export-ydpi="293.84"  
1091 - inkscape:export-xdpi="293.84"  
1092 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1093 - ry="6.6633935"  
1094 - y="7.6060753"  
1095 - x="-237.8222"  
1096 - height="25.566545"  
1097 - width="83.910713"  
1098 - id="rect4664"  
1099 - style="opacity:1;vector-effect:none;fill:#b7bec8;fill-opacity:1;stroke:none;stroke-width:0.2775698px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"  
1100 - rx="6.6633935" />  
1101 - <text  
1102 - inkscape:export-ydpi="293.84"  
1103 - inkscape:export-xdpi="293.84"  
1104 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1105 - id="text4510"  
1106 - y="25.089836"  
1107 - x="-212.25964"  
1108 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.17773438px;line-height:5.27719736px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.2775698px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
1109 - xml:space="preserve"><tspan  
1110 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;font-family:Roboto;-inkscape-font-specification:Roboto;stroke-width:0.2775698px"  
1111 - y="25.089836"  
1112 - x="-212.25964"  
1113 - id="tspan4508"  
1114 - sodipodi:role="line">Colab</tspan></text>  
1115 - </g>  
1116 - <text  
1117 - xml:space="preserve"  
1118 - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
1119 - x="-196.59196"  
1120 - y="-30.109127"  
1121 - id="text4530"  
1122 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1123 - inkscape:export-xdpi="59.993629"  
1124 - inkscape:export-ydpi="59.993629"><tspan  
1125 - sodipodi:role="line"  
1126 - id="tspan4528"  
1127 - x="-196.59196"  
1128 - y="-30.109127"  
1129 - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px">Implemented</tspan><tspan  
1130 - sodipodi:role="line"  
1131 - x="-196.59196"  
1132 - y="-18.202877"  
1133 - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px"  
1134 - id="tspan4532">Code</tspan></text>  
1135 - <flowRoot  
1136 - xml:space="preserve"  
1137 - id="flowRoot377"  
1138 - style="font-style:normal;font-weight:normal;font-size:12.5px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.29665077px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
1139 - transform="matrix(0,0.20405135,0.20405135,0,-378.94618,447.38408)"  
1140 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1141 - inkscape:export-xdpi="59.993629"  
1142 - inkscape:export-ydpi="59.993629"><flowRegion  
1143 - style="stroke-width:1.29665077px"  
1144 - id="flowRegion373"><rect  
1145 - style="stroke-width:1.29665077px"  
1146 - id="rect371"  
1147 - width="222.85715"  
1148 - height="205.71429"  
1149 - x="-1328.5714"  
1150 - y="868.23395" /></flowRegion><flowPara  
1151 - id="flowPara375"  
1152 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:85.33333588px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';stroke-width:1.29665077px">...</flowPara></flowRoot> <flowRoot  
1153 - transform="matrix(0,0.20405135,0.20405135,0,-378.94618,447.38408)"  
1154 - style="font-style:normal;font-weight:normal;font-size:12.5px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.29665077px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
1155 - id="flowRoot491"  
1156 - xml:space="preserve"  
1157 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1158 - inkscape:export-xdpi="59.993629"  
1159 - inkscape:export-ydpi="59.993629"><flowRegion  
1160 - id="flowRegion487"  
1161 - style="stroke-width:1.29665077px"><rect  
1162 - y="868.23395"  
1163 - x="-1328.5714"  
1164 - height="205.71429"  
1165 - width="222.85715"  
1166 - id="rect485"  
1167 - style="stroke-width:1.29665077px" /></flowRegion><flowPara  
1168 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:85.33333588px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';stroke-width:1.29665077px"  
1169 - id="flowPara489">...</flowPara></flowRoot> <rect  
1170 - rx="6.3516374"  
1171 - inkscape:export-ydpi="59.993629"  
1172 - inkscape:export-xdpi="59.993629"  
1173 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1174 - ry="6.3516374"  
1175 - y="48.827862"  
1176 - x="-232.10907"  
1177 - height="24.37038"  
1178 - width="79.984833"  
1179 - id="rect187"  
1180 - style="opacity:1;vector-effect:none;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />  
1181 - <text  
1182 - inkscape:export-ydpi="59.993629"  
1183 - inkscape:export-xdpi="59.993629"  
1184 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1185 - id="text191"  
1186 - y="64.51088"  
1187 - x="-217.0757"  
1188 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.74834156px;line-height:5.03029633px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
1189 - xml:space="preserve"><tspan  
1190 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;font-family:Roboto;-inkscape-font-specification:Roboto;stroke-width:0.26458332px"  
1191 - y="64.51088"  
1192 - x="-217.0757"  
1193 - id="tspan189"  
1194 - sodipodi:role="line">System 2</tspan></text>  
1195 - <rect  
1196 - rx="6.3516374"  
1197 - style="opacity:1;vector-effect:none;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"  
1198 - id="rect195"  
1199 - width="79.984833"  
1200 - height="24.37038"  
1201 - x="-232.10907"  
1202 - y="90.952477"  
1203 - ry="6.3516374"  
1204 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1205 - inkscape:export-xdpi="59.993629"  
1206 - inkscape:export-ydpi="59.993629" />  
1207 - <text  
1208 - xml:space="preserve"  
1209 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.74834156px;line-height:5.03029633px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
1210 - x="-218.08525"  
1211 - y="106.6355"  
1212 - id="text199"  
1213 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1214 - inkscape:export-xdpi="59.993629"  
1215 - inkscape:export-ydpi="59.993629"><tspan  
1216 - sodipodi:role="line"  
1217 - id="tspan197"  
1218 - x="-218.08525"  
1219 - y="106.6355"  
1220 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;font-family:Roboto;-inkscape-font-specification:Roboto;stroke-width:0.26458332px">System 3</tspan></text>  
1221 - <rect  
1222 - rx="6.3516374"  
1223 - inkscape:export-ydpi="59.993629"  
1224 - inkscape:export-xdpi="59.993629"  
1225 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1226 - ry="6.3516374"  
1227 - y="133.07709"  
1228 - x="-232.10907"  
1229 - height="24.37038"  
1230 - width="79.984833"  
1231 - id="rect244"  
1232 - style="opacity:1;vector-effect:none;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />  
1233 - <text  
1234 - inkscape:export-ydpi="59.993629"  
1235 - inkscape:export-xdpi="59.993629"  
1236 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1237 - id="text248"  
1238 - y="149.27576"  
1239 - x="-217.43069"  
1240 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.74834156px;line-height:5.03029633px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
1241 - xml:space="preserve"><tspan  
1242 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;font-family:Roboto;-inkscape-font-specification:Roboto;stroke-width:0.26458332px"  
1243 - y="149.27576"  
1244 - x="-217.43069"  
1245 - id="tspan246"  
1246 - sodipodi:role="line">System 4</tspan></text>  
1247 - <g  
1248 - id="g875"  
1249 - transform="translate(4.4504802e-6)"  
1250 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1251 - inkscape:export-xdpi="59.993629"  
1252 - inkscape:export-ydpi="59.993629">  
1253 - <rect  
1254 - rx="6.3516374"  
1255 - style="opacity:1;vector-effect:none;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"  
1256 - id="rect515"  
1257 - width="79.984833"  
1258 - height="24.37038"  
1259 - x="-232.10907"  
1260 - y="6.703217"  
1261 - ry="6.3516374"  
1262 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1263 - inkscape:export-xdpi="293.84"  
1264 - inkscape:export-ydpi="293.84" />  
1265 - <text  
1266 - xml:space="preserve"  
1267 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.74834156px;line-height:5.03029633px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
1268 - x="-216.36026"  
1269 - y="22.839809"  
1270 - id="text519"  
1271 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1272 - inkscape:export-xdpi="293.84"  
1273 - inkscape:export-ydpi="293.84"><tspan  
1274 - sodipodi:role="line"  
1275 - id="tspan517"  
1276 - x="-216.36026"  
1277 - y="22.839809"  
1278 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;font-family:Roboto;-inkscape-font-specification:Roboto;stroke-width:0.26458332px">System 1</tspan></text>  
1279 - </g>  
1280 - <rect  
1281 - inkscape:export-ydpi="59.993629"  
1282 - inkscape:export-xdpi="59.993629"  
1283 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1284 - ry="6.3516374"  
1285 - y="68.848862"  
1286 - x="-355.37796"  
1287 - height="24.37038"  
1288 - width="79.984833"  
1289 - id="rect515-1"  
1290 - style="opacity:1;vector-effect:none;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"  
1291 - rx="6.3516374" />  
1292 - <text  
1293 - inkscape:export-ydpi="59.993629"  
1294 - inkscape:export-xdpi="59.993629"  
1295 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1296 - id="text519-6"  
1297 - y="85.278183"  
1298 - x="-336.07419"  
1299 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.74834156px;line-height:5.03029633px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
1300 - xml:space="preserve"><tspan  
1301 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;font-family:Roboto;-inkscape-font-specification:Roboto;stroke-width:0.26458332px"  
1302 - y="85.278183"  
1303 - x="-336.07419"  
1304 - id="tspan517-9"  
1305 - sodipodi:role="line">Feature</tspan></text>  
1306 - <text  
1307 - xml:space="preserve"  
1308 - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
1309 - x="120.67804"  
1310 - y="-29.855127"  
1311 - id="text4542"  
1312 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1313 - inkscape:export-xdpi="59.993629"  
1314 - inkscape:export-ydpi="59.993629"><tspan  
1315 - sodipodi:role="line"  
1316 - id="tspan4540"  
1317 - x="120.67804"  
1318 - y="-29.855127"  
1319 - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px">Preparing</tspan><tspan  
1320 - sodipodi:role="line"  
1321 - x="120.67804"  
1322 - y="-17.948877"  
1323 - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px"  
1324 - id="tspan4544">new Release</tspan></text>  
1325 - <rect  
1326 - inkscape:export-ydpi="59.993629"  
1327 - inkscape:export-xdpi="59.993629"  
1328 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1329 - ry="10.5964"  
1330 - y="-48.821728"  
1331 - x="69.217072"  
1332 - height="256.45126"  
1333 - width="103.40431"  
1334 - id="rect20220"  
1335 - style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#554400;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:8.99999995, 3;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"  
1336 - rx="10.5964" />  
1337 - <flowRoot  
1338 - xml:space="preserve"  
1339 - id="flowRoot377-1"  
1340 - style="font-style:normal;font-weight:normal;font-size:12.5px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.29665077px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
1341 - transform="matrix(0,0.20405135,0.20405135,0,-59.435038,447.38408)"  
1342 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1343 - inkscape:export-xdpi="59.993629"  
1344 - inkscape:export-ydpi="59.993629"><flowRegion  
1345 - style="stroke-width:1.29665077px"  
1346 - id="flowRegion373-9"><rect  
1347 - style="stroke-width:1.29665077px"  
1348 - id="rect371-9"  
1349 - width="222.85715"  
1350 - height="205.71429"  
1351 - x="-1328.5714"  
1352 - y="868.23395" /></flowRegion><flowPara  
1353 - id="flowPara375-3"  
1354 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:85.33333588px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';stroke-width:1.29665077px">...</flowPara></flowRoot> <rect  
1355 - style="opacity:1;vector-effect:none;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"  
1356 - id="rect740"  
1357 - width="79.984833"  
1358 - height="38.061478"  
1359 - x="79.644897"  
1360 - y="-0.14233224"  
1361 - ry="9.91994"  
1362 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1363 - inkscape:export-xdpi="59.993629"  
1364 - inkscape:export-ydpi="59.993629"  
1365 - rx="9.91994" />  
1366 - <text  
1367 - xml:space="preserve"  
1368 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.74834156px;line-height:5.03029633px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
1369 - x="119.52205"  
1370 - y="17.063866"  
1371 - id="text746"  
1372 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1373 - inkscape:export-xdpi="59.993629"  
1374 - inkscape:export-ydpi="59.993629"><tspan  
1375 - id="tspan742"  
1376 - sodipodi:role="line"  
1377 - x="119.52205"  
1378 - y="17.063866"  
1379 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px">System 1</tspan><tspan  
1380 - id="tspan744"  
1381 - sodipodi:role="line"  
1382 - x="119.52205"  
1383 - y="29.674088"  
1384 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px">release</tspan></text>  
1385 - <rect  
1386 - rx="9.91994"  
1387 - inkscape:export-ydpi="59.993629"  
1388 - inkscape:export-xdpi="59.993629"  
1389 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1390 - ry="9.91994"  
1391 - y="41.982311"  
1392 - x="79.644897"  
1393 - height="38.061478"  
1394 - width="79.984833"  
1395 - id="rect814"  
1396 - style="opacity:1;vector-effect:none;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />  
1397 - <text  
1398 - inkscape:export-ydpi="59.993629"  
1399 - inkscape:export-xdpi="59.993629"  
1400 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1401 - id="text820"  
1402 - y="59.188511"  
1403 - x="119.52205"  
1404 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.74834156px;line-height:5.03029633px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
1405 - xml:space="preserve"><tspan  
1406 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px"  
1407 - y="59.188511"  
1408 - x="119.52205"  
1409 - sodipodi:role="line"  
1410 - id="tspan816">System 2</tspan><tspan  
1411 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px"  
1412 - y="71.798729"  
1413 - x="119.52205"  
1414 - sodipodi:role="line"  
1415 - id="tspan818">release</tspan></text>  
1416 - <rect  
1417 - style="opacity:1;vector-effect:none;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"  
1418 - id="rect824"  
1419 - width="79.984833"  
1420 - height="38.061478"  
1421 - x="79.644897"  
1422 - y="84.106926"  
1423 - ry="9.91994"  
1424 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1425 - inkscape:export-xdpi="59.993629"  
1426 - inkscape:export-ydpi="59.993629"  
1427 - rx="9.91994" />  
1428 - <text  
1429 - xml:space="preserve"  
1430 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.74834156px;line-height:5.03029633px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
1431 - x="119.52205"  
1432 - y="101.31313"  
1433 - id="text830"  
1434 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1435 - inkscape:export-xdpi="59.993629"  
1436 - inkscape:export-ydpi="59.993629"><tspan  
1437 - id="tspan826"  
1438 - sodipodi:role="line"  
1439 - x="119.52205"  
1440 - y="101.31313"  
1441 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px">System 3</tspan><tspan  
1442 - id="tspan828"  
1443 - sodipodi:role="line"  
1444 - x="119.52205"  
1445 - y="113.92336"  
1446 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px">release</tspan></text>  
1447 - <rect  
1448 - rx="9.91994"  
1449 - inkscape:export-ydpi="59.993629"  
1450 - inkscape:export-xdpi="59.993629"  
1451 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1452 - ry="9.91994"  
1453 - y="126.23154"  
1454 - x="79.644897"  
1455 - height="38.061478"  
1456 - width="79.984833"  
1457 - id="rect834"  
1458 - style="opacity:1;vector-effect:none;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />  
1459 - <text  
1460 - inkscape:export-ydpi="59.993629"  
1461 - inkscape:export-xdpi="59.993629"  
1462 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1463 - id="text840"  
1464 - y="143.43773"  
1465 - x="119.52205"  
1466 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.74834156px;line-height:5.03029633px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"  
1467 - xml:space="preserve"><tspan  
1468 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px"  
1469 - y="143.43773"  
1470 - x="119.52205"  
1471 - sodipodi:role="line"  
1472 - id="tspan836">System 4</tspan><tspan  
1473 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px"  
1474 - y="156.04794"  
1475 - x="119.52205"  
1476 - sodipodi:role="line"  
1477 - id="tspan838">release</tspan></text>  
1478 - <path  
1479 - inkscape:connector-curvature="0"  
1480 - id="path13368"  
1481 - d="M 31.529599,18.906023 H 65.042642"  
1482 - style="fill:none;fill-rule:evenodd;stroke:#c66e00;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.00000006, 1.00000003000000004;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker1280);fill-opacity:1"  
1483 - sodipodi:nodetypes="cc"  
1484 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1485 - inkscape:export-xdpi="59.993629"  
1486 - inkscape:export-ydpi="59.993629" />  
1487 - <path  
1488 - inkscape:export-ydpi="59.993629"  
1489 - inkscape:export-xdpi="59.993629"  
1490 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1491 - sodipodi:nodetypes="cc"  
1492 - style="fill:#c66e00;fill-rule:evenodd;stroke:#c66e00;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.00000006, 1.00000003000000004;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker2214);fill-opacity:1"  
1493 - d="M 31.529599,61.030667 H 65.042642"  
1494 - id="path914"  
1495 - inkscape:connector-curvature="0" />  
1496 - <path  
1497 - inkscape:connector-curvature="0"  
1498 - id="path916"  
1499 - d="M 31.529599,103.15528 H 65.042642"  
1500 - style="fill:none;fill-rule:evenodd;stroke:#c66e00;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.00000006, 1.00000003000000004;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker2362)"  
1501 - sodipodi:nodetypes="cc"  
1502 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1503 - inkscape:export-xdpi="59.993629"  
1504 - inkscape:export-ydpi="59.993629" />  
1505 - <path  
1506 - inkscape:export-ydpi="59.993629"  
1507 - inkscape:export-xdpi="59.993629"  
1508 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1509 - sodipodi:nodetypes="cc"  
1510 - style="fill:#c66e00;fill-rule:evenodd;stroke:#c66e00;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.00000006, 1.00000003000000004;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker13378);fill-opacity:1"  
1511 - d="M 31.529599,145.27989 H 65.042642"  
1512 - id="path918"  
1513 - inkscape:connector-curvature="0" />  
1514 - <g  
1515 - id="g1184"  
1516 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1517 - inkscape:export-xdpi="59.993629"  
1518 - inkscape:export-ydpi="59.993629">  
1519 - <path  
1520 - inkscape:export-ydpi="293.84"  
1521 - inkscape:export-xdpi="293.84"  
1522 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1523 - inkscape:connector-curvature="0"  
1524 - id="path12618"  
1525 - d="m -140.42752,18.906023 h 32.01688"  
1526 - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622)"  
1527 - sodipodi:nodetypes="cc" />  
1528 - <path  
1529 - sodipodi:nodetypes="cc"  
1530 - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622)"  
1531 - d="m -140.42752,61.030667 h 32.01688"  
1532 - id="path638"  
1533 - inkscape:connector-curvature="0"  
1534 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1535 - inkscape:export-xdpi="293.84"  
1536 - inkscape:export-ydpi="293.84" />  
1537 - <path  
1538 - inkscape:export-ydpi="293.84"  
1539 - inkscape:export-xdpi="293.84"  
1540 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1541 - inkscape:connector-curvature="0"  
1542 - id="path640"  
1543 - d="m -140.42752,103.15528 h 32.01688"  
1544 - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622)"  
1545 - sodipodi:nodetypes="cc" />  
1546 - <path  
1547 - sodipodi:nodetypes="cc"  
1548 - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622)"  
1549 - d="m -140.42752,145.27989 h 32.01688"  
1550 - id="path642"  
1551 - inkscape:connector-curvature="0"  
1552 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1553 - inkscape:export-xdpi="293.84"  
1554 - inkscape:export-ydpi="293.84" />  
1555 - <path  
1556 - sodipodi:nodetypes="cc"  
1557 - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622)"  
1558 - d="m -140.42752,18.906023 h 32.01688"  
1559 - id="path1050"  
1560 - inkscape:connector-curvature="0"  
1561 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1562 - inkscape:export-xdpi="293.84"  
1563 - inkscape:export-ydpi="293.84" />  
1564 - <path  
1565 - inkscape:export-ydpi="293.84"  
1566 - inkscape:export-xdpi="293.84"  
1567 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1568 - inkscape:connector-curvature="0"  
1569 - id="path1052"  
1570 - d="m -140.42752,61.030667 h 32.01688"  
1571 - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622)"  
1572 - sodipodi:nodetypes="cc" />  
1573 - <path  
1574 - sodipodi:nodetypes="cc"  
1575 - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622)"  
1576 - d="m -140.42752,103.15528 h 32.01688"  
1577 - id="path1054"  
1578 - inkscape:connector-curvature="0"  
1579 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1580 - inkscape:export-xdpi="293.84"  
1581 - inkscape:export-ydpi="293.84" />  
1582 - <path  
1583 - inkscape:export-ydpi="293.84"  
1584 - inkscape:export-xdpi="293.84"  
1585 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1586 - inkscape:connector-curvature="0"  
1587 - id="path1056"  
1588 - d="m -140.42752,145.27989 h 32.01688"  
1589 - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622)"  
1590 - sodipodi:nodetypes="cc" />  
1591 - </g>  
1592 - <g  
1593 - id="g1174"  
1594 - transform="translate(-7.4083337,-3.938397)"  
1595 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1596 - inkscape:export-xdpi="59.993629"  
1597 - inkscape:export-ydpi="59.993629">  
1598 - <path  
1599 - inkscape:export-ydpi="293.84"  
1600 - inkscape:export-xdpi="293.84"  
1601 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1602 - inkscape:connector-curvature="0"  
1603 - id="path12618-5"  
1604 - d="m 182.72714,22.844377 h 32.01688"  
1605 - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622-7)"  
1606 - sodipodi:nodetypes="cc" />  
1607 - <path  
1608 - sodipodi:nodetypes="cc"  
1609 - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622-7)"  
1610 - d="m 182.72714,64.969022 h 32.01688"  
1611 - id="path638-9"  
1612 - inkscape:connector-curvature="0"  
1613 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1614 - inkscape:export-xdpi="293.84"  
1615 - inkscape:export-ydpi="293.84" />  
1616 - <path  
1617 - inkscape:export-ydpi="293.84"  
1618 - inkscape:export-xdpi="293.84"  
1619 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1620 - inkscape:connector-curvature="0"  
1621 - id="path640-4"  
1622 - d="m 182.72714,107.09367 h 32.01688"  
1623 - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622-7)"  
1624 - sodipodi:nodetypes="cc" />  
1625 - <path  
1626 - sodipodi:nodetypes="cc"  
1627 - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622-7)"  
1628 - d="m 182.72714,149.21833 h 32.01688"  
1629 - id="path642-4"  
1630 - inkscape:connector-curvature="0"  
1631 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1632 - inkscape:export-xdpi="293.84"  
1633 - inkscape:export-ydpi="293.84" />  
1634 - <path  
1635 - sodipodi:nodetypes="cc"  
1636 - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622-7)"  
1637 - d="m 182.72714,22.844377 h 32.01688"  
1638 - id="path1050-2"  
1639 - inkscape:connector-curvature="0"  
1640 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1641 - inkscape:export-xdpi="293.84"  
1642 - inkscape:export-ydpi="293.84" />  
1643 - <path  
1644 - inkscape:export-ydpi="293.84"  
1645 - inkscape:export-xdpi="293.84"  
1646 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1647 - inkscape:connector-curvature="0"  
1648 - id="path1052-0"  
1649 - d="m 182.72714,64.969022 h 32.01688"  
1650 - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622-7)"  
1651 - sodipodi:nodetypes="cc" />  
1652 - <path  
1653 - sodipodi:nodetypes="cc"  
1654 - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622-7)"  
1655 - d="m 182.72714,107.09367 h 32.01688"  
1656 - id="path1054-0"  
1657 - inkscape:connector-curvature="0"  
1658 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1659 - inkscape:export-xdpi="293.84"  
1660 - inkscape:export-ydpi="293.84" />  
1661 - <path  
1662 - inkscape:export-ydpi="293.84"  
1663 - inkscape:export-xdpi="293.84"  
1664 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1665 - inkscape:connector-curvature="0"  
1666 - id="path1056-0"  
1667 - d="m 182.72714,149.21833 h 32.01688"  
1668 - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622-7)"  
1669 - sodipodi:nodetypes="cc" />  
1670 - </g>  
1671 - <text  
1672 - xml:space="preserve"  
1673 - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:17.63888931px;line-height:6.08541679px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"  
1674 - x="262.54721"  
1675 - y="88.349464"  
1676 - id="text4799"  
1677 - inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"  
1678 - inkscape:export-xdpi="59.993629"  
1679 - inkscape:export-ydpi="59.993629"><tspan  
1680 - sodipodi:role="line"  
1681 - x="262.54721"  
1682 - y="88.349464"  
1683 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;line-height:15.875px;font-family:Roboto;-inkscape-font-specification:Roboto;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"  
1684 - id="tspan4806">Package</tspan><tspan  
1685 - sodipodi:role="line"  
1686 - x="262.54721"  
1687 - y="104.22446"  
1688 - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;line-height:15.875px;font-family:Roboto;-inkscape-font-specification:Roboto;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"  
1689 - id="tspan4810">Set</tspan></text>  
1690 - </g>  
1691 -</svg>  
ieeeSW/releaseEng3/figures/raw/CD-Evolution.svg 0 → 100644
@@ -0,0 +1,1033 @@ @@ -0,0 +1,1033 @@
  1 +<?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2 +<svg
  3 + xmlns:dc="http://purl.org/dc/elements/1.1/"
  4 + xmlns:cc="http://creativecommons.org/ns#"
  5 + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  6 + xmlns:svg="http://www.w3.org/2000/svg"
  7 + xmlns="http://www.w3.org/2000/svg"
  8 + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
  9 + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
  10 + version="1.1"
  11 + class="highcharts-root"
  12 + style="font-family:&quot;Lucida Grande&quot;, &quot;Lucida Sans Unicode&quot;, Arial, Helvetica, sans-serif;font-size:12px;"
  13 + width="600"
  14 + height="400"
  15 + viewBox="0 0 600 400"
  16 + id="svg1941"
  17 + sodipodi:docname="CD-Evolution.svg"
  18 + inkscape:export-filename="/home/melissawen/Downloads/CD-Evolution.png"
  19 + inkscape:export-xdpi="96"
  20 + inkscape:export-ydpi="96"
  21 + inkscape:version="0.92.1 r15371">
  22 + <metadata
  23 + id="metadata1945">
  24 + <rdf:RDF>
  25 + <cc:Work
  26 + rdf:about="">
  27 + <dc:format>image/svg+xml</dc:format>
  28 + <dc:type
  29 + rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
  30 + </cc:Work>
  31 + </rdf:RDF>
  32 + </metadata>
  33 + <sodipodi:namedview
  34 + pagecolor="#ffffff"
  35 + bordercolor="#666666"
  36 + borderopacity="1"
  37 + objecttolerance="10"
  38 + gridtolerance="10"
  39 + guidetolerance="10"
  40 + inkscape:pageopacity="0"
  41 + inkscape:pageshadow="2"
  42 + inkscape:window-width="1024"
  43 + inkscape:window-height="536"
  44 + id="namedview1943"
  45 + showgrid="false"
  46 + inkscape:zoom="0.60634407"
  47 + inkscape:cx="738.22052"
  48 + inkscape:cy="183.8162"
  49 + inkscape:window-x="0"
  50 + inkscape:window-y="27"
  51 + inkscape:window-maximized="1"
  52 + inkscape:current-layer="svg1941" />
  53 + <desc
  54 + id="desc1600">Created with Highcharts 6.0.3</desc>
  55 + <defs
  56 + id="defs1605">
  57 + <clipPath
  58 + id="highcharts-y8ybklq-8">
  59 + <rect
  60 + x="0"
  61 + y="0"
  62 + width="523"
  63 + height="250"
  64 + fill="none"
  65 + id="rect1602" />
  66 + </clipPath>
  67 + <clipPath
  68 + id="highcharts-c510wzc-7">
  69 + <rect
  70 + style="fill:none"
  71 + x="0"
  72 + y="0"
  73 + width="529"
  74 + height="250"
  75 + id="rect2510" />
  76 + </clipPath>
  77 + <clipPath
  78 + id="clipPath6728">
  79 + <rect
  80 + style="fill:none"
  81 + x="0"
  82 + y="0"
  83 + width="529"
  84 + height="250"
  85 + id="rect6726" />
  86 + </clipPath>
  87 + </defs>
  88 + <rect
  89 + style="fill:#ffffff;fill-opacity:1;stroke:#b3b3b3;stroke-width:0.87296581"
  90 + id="rect8481"
  91 + width="1354.0166"
  92 + height="465.08243"
  93 + x="-20.424543"
  94 + y="-40.344048"
  95 + inkscape:export-xdpi="150.02475"
  96 + inkscape:export-ydpi="150.02475"
  97 + inkscape:export-filename="/home/melissawen/articles/ieeeSW/releaseEng3/figures/CDReleaseandTeamEvolution.png" />
  98 + <rect
  99 + class="highcharts-background"
  100 + x="0"
  101 + y="0"
  102 + width="600"
  103 + height="400"
  104 + rx="0"
  105 + ry="0"
  106 + id="rect1607"
  107 + fill="#ffffff" />
  108 + <rect
  109 + x="96.706413"
  110 + y="298.70642"
  111 + width="40"
  112 + height="9.587182"
  113 + class="highcharts-point highcharts-color-1"
  114 + id="rect1845"
  115 + style="fill:#4e9a06;stroke:none;stroke-width:3.26380515" />
  116 + <rect
  117 + fill="none"
  118 + class="highcharts-plot-background"
  119 + x="67"
  120 + y="59"
  121 + width="523"
  122 + height="250"
  123 + id="rect1609" />
  124 + <g
  125 + class="highcharts-grid highcharts-xaxis-grid "
  126 + id="g1621">
  127 + <path
  128 + fill="none"
  129 + class="highcharts-grid-line"
  130 + d="M 117.5 59 L 117.5 309"
  131 + opacity="1"
  132 + id="path1611" />
  133 + <path
  134 + fill="none"
  135 + class="highcharts-grid-line"
  136 + d="M 235.5 59 L 235.5 309"
  137 + opacity="1"
  138 + id="path1613" />
  139 + <path
  140 + fill="none"
  141 + class="highcharts-grid-line"
  142 + d="M 350.5 59 L 350.5 309"
  143 + opacity="1"
  144 + id="path1615" />
  145 + <path
  146 + fill="none"
  147 + class="highcharts-grid-line"
  148 + d="M 467.5 59 L 467.5 309"
  149 + opacity="1"
  150 + id="path1617" />
  151 + <path
  152 + fill="none"
  153 + class="highcharts-grid-line"
  154 + d="M 584.5 59 L 584.5 309"
  155 + opacity="1"
  156 + id="path1619" />
  157 + </g>
  158 + <path
  159 + style="opacity:1;fill:none;stroke:#e6e6e6;stroke-width:1"
  160 + inkscape:connector-curvature="0"
  161 + id="path1623"
  162 + d="M 67,309.5 H 590"
  163 + class="highcharts-grid-line" />
  164 + <path
  165 + style="opacity:1;fill:none;stroke:#e6e6e6;stroke-width:1"
  166 + inkscape:connector-curvature="0"
  167 + id="path1625"
  168 + d="M 67,247.5 H 590"
  169 + class="highcharts-grid-line" />
  170 + <path
  171 + style="opacity:1;fill:none;stroke:#e6e6e6;stroke-width:1"
  172 + inkscape:connector-curvature="0"
  173 + id="path1627"
  174 + d="M 67,184.5 H 590"
  175 + class="highcharts-grid-line" />
  176 + <path
  177 + style="opacity:1;fill:none;stroke:#e6e6e6;stroke-width:1"
  178 + inkscape:connector-curvature="0"
  179 + id="path1629"
  180 + d="M 67,122.5 H 590"
  181 + class="highcharts-grid-line" />
  182 + <path
  183 + style="opacity:1;fill:none;stroke:#e6e6e6;stroke-width:1"
  184 + inkscape:connector-curvature="0"
  185 + id="path1631"
  186 + d="M 67,58.5 H 590"
  187 + class="highcharts-grid-line" />
  188 + <rect
  189 + fill="none"
  190 + class="highcharts-plot-border"
  191 + x="67"
  192 + y="59"
  193 + width="523"
  194 + height="250"
  195 + id="rect1635" />
  196 + <g
  197 + class="highcharts-axis highcharts-xaxis "
  198 + id="g1653">
  199 + <path
  200 + fill="none"
  201 + class="highcharts-tick"
  202 + stroke="#ccd6eb"
  203 + stroke-width="1"
  204 + d="M 117.5 309 L 117.5 319"
  205 + opacity="1"
  206 + id="path1637" />
  207 + <path
  208 + fill="none"
  209 + class="highcharts-tick"
  210 + stroke="#ccd6eb"
  211 + stroke-width="1"
  212 + d="M 235.5 309 L 235.5 319"
  213 + opacity="1"
  214 + id="path1639" />
  215 + <path
  216 + fill="none"
  217 + class="highcharts-tick"
  218 + stroke="#ccd6eb"
  219 + stroke-width="1"
  220 + d="M 350.5 309 L 350.5 319"
  221 + opacity="1"
  222 + id="path1641" />
  223 + <path
  224 + fill="none"
  225 + class="highcharts-tick"
  226 + stroke="#ccd6eb"
  227 + stroke-width="1"
  228 + d="M 467.5 309 L 467.5 319"
  229 + opacity="1"
  230 + id="path1643" />
  231 + <path
  232 + fill="none"
  233 + class="highcharts-tick"
  234 + stroke="#ccd6eb"
  235 + stroke-width="1"
  236 + d="M 584.5 309 L 584.5 319"
  237 + opacity="1"
  238 + id="path1645" />
  239 + <text
  240 + x="328.5"
  241 + text-anchor="middle"
  242 + transform="translate(0,0)"
  243 + class="highcharts-axis-title"
  244 + style="color:#666666;fill:#666666;"
  245 + y="346"
  246 + id="text1649">
  247 + <tspan
  248 + id="tspan1647">Date</tspan>
  249 + </text>
  250 + <path
  251 + fill="none"
  252 + class="highcharts-axis-line"
  253 + stroke="#ccd6eb"
  254 + stroke-width="1"
  255 + d="M 67 309.5 L 590 309.5"
  256 + id="path1651" />
  257 + </g>
  258 + <path
  259 + style="fill:none"
  260 + inkscape:connector-curvature="0"
  261 + id="path1659"
  262 + d="M 67,59 V 309"
  263 + class="highcharts-axis-line" />
  264 + <path
  265 + d="m 72.440078,306.5 c 0,0 12.244957,-1.1087 20.408262,-2.5 3.571446,-0.6087 5.357169,-1.96154 8.92862,-2.5 9.69392,-1.46154 14.54088,-0.81111 24.23481,-2.5 1.78572,-0.31111 2.67858,-2.25439 4.4643,-2.5 12.75517,-1.75439 19.13275,-0.74561 31.88792,-2.5 1.78572,-0.24561 2.67858,-1.42308 4.4643,-2.5 1.53062,-0.92308 2.29593,-2.05556 3.82655,-2.5 5.35717,-1.55556 8.03576,-0.5 13.39292,-2.5 0,0 0,-2.5 0,-2.5 9.94903,-2 14.92355,-0.64286 24.87258,-2.5 0.7653,-0.14286 1.14796,-2.2931 1.91327,-2.5 6.63269,-1.7931 9.94903,-1.39362 16.58171,-2.5 5.35717,-0.89362 8.03576,-1.26471 13.39293,-2.5 3.31634,-0.76471 4.97451,-1.77778 8.29085,-2.5 5.86738,-1.27778 8.80107,-1.25676 14.66844,-2.5 3.57145,-0.75676 5.35717,-0.63333 8.92862,-2.5 0.2551,-0.13333 0.38265,-2.21429 0.63775,-2.5 1.53062,-1.71429 2.29593,-2.03846 3.82655,-2.5 5.10207,-1.53846 7.6531,-1.12069 12.75517,-2.5 2.29593,-0.62069 3.44389,-1.11538 5.73982,-2.5 1.02042,-0.61538 1.53062,-1.83333 2.55103,-2.5 2.04083,-1.33333 3.06124,-0.9 5.10207,-2.5 0.51021,-0.4 0.76531,-2.1 1.27552,-2.5 2.04082,-1.6 3.06124,-1.43333 5.10206,-2.5 1.78573,-0.93333 2.67859,-2.13158 4.46431,-2.5 7.9082,-1.63158 11.8623,-1.725 19.7705,-2.5 12.50007,-1.225 18.7501,-0.71818 31.25016,-2.5 1.53062,-0.21818 2.29593,-0.5 3.82655,-2.5 0,0 0,-2.5 0,-2.5 3.82655,-2 5.73982,-1.3 9.56637,-2.5 2.55103,-0.8 3.82655,-1.07143 6.37758,-2.5 1.02041,-0.57143 1.53062,-1.96667 2.55103,-2.5 2.80614,-1.46667 4.20921,-1.03333 7.01535,-2.5 1.02041,-0.53333 1.53061,-2.05556 2.55103,-2.5 3.57144,-1.55556 5.35717,-0.85294 8.92861,-2.5 0.76531,-0.35294 1.14797,-1.5 1.91328,-2.5 0.76531,-1 1.14796,-2.03846 1.91327,-2.5 2.55103,-1.53846 3.82655,-0.5 6.37758,-2.5 0,0 0,-2.5 0,-2.5 1.02042,-2 1.53062,-0.5 2.55104,-2.5 0,0 0,-1.5 0,-2.5 0,-1 0,-1.5 0,-2.5 0,-1 0,-1.5 0,-2.5 0,-1 0,-2.5 0,-2.5 0.76531,-2 1.14796,-1.95455 1.91327,-2.5 2.04083,-1.45455 3.06124,-1.43333 5.10207,-2.5 1.78572,-0.93333 2.67858,-1.42308 4.4643,-2.5 1.53062,-0.92308 2.29593,-1.40909 3.82655,-2.5 1.27552,-0.90909 1.91328,-0.83333 3.1888,-2.5 0.2551,-0.33333 0.38265,-1.5 0.63775,-2.5 0.25511,-1 0.38266,-2.42 0.63776,-2.5 6.12248,-1.92 9.18372,-1.61111 15.3062,-2.5 7.6531,-1.11111 11.47965,-0.56452 19.13275,-2.5 0.2551,-0.0645 0.38265,-2.16667 0.63775,-2.5 1.27552,-1.66667 1.91328,-0.83333 3.18879,-2.5 0.25511,-0.33333 0.38266,-2.41667 0.63776,-2.5 5.86738,-1.91667 8.80107,-0.5 14.66844,-2.5 0,0 0,-2.5 0,-2.5 1.27552,-2 1.91328,-1.66667 3.18879,-2.5 1.78573,-1.16667 2.67859,-0.5 4.46431,-2.5 0,0 0,-2.5 0,-2.5 0.51021,-2 0.76531,-1.83333 1.27552,-2.5 1.02041,-1.33333 1.53062,-1.16667 2.55103,-2.5 0.51021,-0.66667 0.76531,-2.28947 1.27552,-2.5 4.33675,-1.78947 6.50513,-0.61111 10.84189,-2.5 0.2551,-0.11111 0.38265,-2.25 0.63775,-2.5 1.78573,-1.75 2.67859,-0.94444 4.46431,-2.5 0.51021,-0.44444 0.76531,-0.5 1.27552,-2.5 0,0 0,-1.5 0,-2.5 0,-1 0,-2.5 0,-2.5 2.04082,-2 3.06124,-2.3 5.10206,-2.5 18.36744,-1.8 27.55116,-0.58 45.91859,-2.5 0.76531,-0.08 1.14797,-2.5 1.91328,-2.5 0,0 0,-2.5 0,-2.5 0.2551,-2 0.38265,-1.5 0.63776,-2.5 0.2551,-1 0.38265,-0.5 0.63776,-2.5 0,0 0,-1.5 0,-2.5 0,-1 0,-2.5 0,-2.5 0.2551,-2 0.38265,-2.16667 0.63775,-2.5 1.27552,-1.66667 1.91328,-1.66667 3.18879,-2.5 1.78573,-1.16667 2.67859,-0.5 4.46431,-2.5 0,0 0,-1.5 0,-2.5 0,-1 0,-2.5 0,-2.5"
  266 + class="highcharts-graph"
  267 + id="path1663"
  268 + inkscape:connector-curvature="0"
  269 + style="fill:none;stroke:#7cb5ec;stroke-width:2;stroke-linecap:round;stroke-linejoin:round" />
  270 + <path
  271 + d="m 122,299 a 4,4 0 1 1 0,-0.004 z"
  272 + class="highcharts-point highcharts-color-0"
  273 + id="path1683"
  274 + inkscape:connector-curvature="0"
  275 + style="fill:#7cb5ec" />
  276 + <path
  277 + d="m 238,276 a 4,4 0 1 1 0,-0.004 z"
  278 + class="highcharts-point highcharts-color-0"
  279 + id="path1701"
  280 + inkscape:connector-curvature="0"
  281 + style="fill:#7cb5ec" />
  282 + <rect
  283 + x="214.83084"
  284 + y="285.66467"
  285 + width="40"
  286 + height="22.670641"
  287 + class="highcharts-point highcharts-color-1"
  288 + id="rect1847"
  289 + style="fill:#4e9a06;stroke:none;stroke-width:3.47721291" />
  290 + <rect
  291 + x="330.5"
  292 + y="272.5"
  293 + width="40"
  294 + height="37"
  295 + class="highcharts-point highcharts-color-1"
  296 + id="rect1849"
  297 + style="fill:#4e9a06;stroke:none;stroke-width:3.65148377" />
  298 + <rect
  299 + x="446.71384"
  300 + y="243.71384"
  301 + width="40"
  302 + height="64.572311"
  303 + class="highcharts-point highcharts-color-1"
  304 + id="rect1851"
  305 + style="fill:#4e9a06;stroke:none;stroke-width:3.58471894" />
  306 + <text
  307 + x="300"
  308 + class="highcharts-title"
  309 + style="color:#333333;font-size:18px;text-anchor:middle;fill:#333333"
  310 + y="24"
  311 + id="text1863">
  312 + <tspan
  313 + id="tspan1861">Release Evolution</tspan>
  314 + </text>
  315 + <text
  316 + x="300"
  317 + class="highcharts-subtitle"
  318 + style="color:#666666;text-anchor:middle;fill:#666666"
  319 + y="44"
  320 + id="text1867">
  321 + <tspan
  322 + id="tspan1865">From Jan/2014 to Mai/2016</tspan>
  323 + </text>
  324 + <rect
  325 + style="visibility:visible;fill:none"
  326 + id="rect1869"
  327 + visibility="visible"
  328 + height="25"
  329 + width="247"
  330 + y="360"
  331 + x="177"
  332 + ry="0"
  333 + rx="0"
  334 + class="highcharts-legend-box" />
  335 + <g
  336 + id="g1879"
  337 + transform="translate(185,363)"
  338 + class="highcharts-legend-item highcharts-spline-series highcharts-color-0 highcharts-series-0">
  339 + <path
  340 + style="fill:none;stroke:#7cb5ec;stroke-width:2"
  341 + inkscape:connector-curvature="0"
  342 + id="path1871"
  343 + class="highcharts-graph"
  344 + d="M 0,11 H 16" />
  345 + <path
  346 + style="fill:#7cb5ec"
  347 + inkscape:connector-curvature="0"
  348 + id="path1873"
  349 + class="highcharts-point"
  350 + d="m 12,11 a 4,4 0 1 1 -2e-6,-0.004 z" />
  351 + <text
  352 + id="text1877"
  353 + y="15"
  354 + style="color:#333333;font-weight:bold;font-size:12px;text-anchor:start;fill:#333333"
  355 + x="21">
  356 + <tspan
  357 + id="tspan1875">Release #</tspan>
  358 + </text>
  359 + </g>
  360 + <text
  361 + x="304"
  362 + y="378"
  363 + style="color:#333333;font-weight:bold;font-size:12px;text-anchor:start;fill:#333333"
  364 + id="text1883">
  365 + <tspan
  366 + id="tspan1881">Amount of releases</tspan>
  367 + </text>
  368 + <rect
  369 + x="285"
  370 + y="367"
  371 + width="12"
  372 + height="12"
  373 + rx="6"
  374 + ry="6"
  375 + class="highcharts-point"
  376 + id="rect1885"
  377 + style="fill:#4e9a06" />
  378 + <g
  379 + class="highcharts-axis-labels highcharts-xaxis-labels "
  380 + id="g1915">
  381 + <text
  382 + x="118.35866887788698"
  383 + style="color:#666666;cursor:default;font-size:11px;fill:#666666;"
  384 + text-anchor="middle"
  385 + transform="translate(0,0)"
  386 + y="328"
  387 + opacity="1"
  388 + id="text1897">
  389 + <tspan
  390 + id="tspan1895">Jul '14</tspan>
  391 + </text>
  392 + <text
  393 + x="235.70618003560716"
  394 + style="color:#666666;cursor:default;font-size:11px;fill:#666666;"
  395 + text-anchor="middle"
  396 + transform="translate(0,0)"
  397 + y="328"
  398 + opacity="1"
  399 + id="text1901">
  400 + <tspan
  401 + id="tspan1899">Jan '15</tspan>
  402 + </text>
  403 + <text
  404 + x="351.1404165548862"
  405 + style="color:#666666;cursor:default;font-size:11px;fill:#666666;"
  406 + text-anchor="middle"
  407 + transform="translate(0,0)"
  408 + y="328"
  409 + opacity="1"
  410 + id="text1905">
  411 + <tspan
  412 + id="tspan1903">Jul '15</tspan>
  413 + </text>
  414 + <text
  415 + x="468.48792771260634"
  416 + style="color:#666666;cursor:default;font-size:11px;fill:#666666;"
  417 + text-anchor="middle"
  418 + transform="translate(0,0)"
  419 + y="328"
  420 + opacity="1"
  421 + id="text1909">
  422 + <tspan
  423 + id="tspan1907">Jan '16</tspan>
  424 + </text>
  425 + <text
  426 + x="574.5"
  427 + style="color:#666666;cursor:default;font-size:11px;fill:#666666;"
  428 + text-anchor="middle"
  429 + transform="translate(0,0)"
  430 + y="328"
  431 + opacity="1"
  432 + id="text1913">
  433 + <tspan
  434 + id="tspan1911">Jul '16</tspan>
  435 + </text>
  436 + </g>
  437 + <text
  438 + id="text1919"
  439 + y="314"
  440 + style="color:#666666;font-size:11px;text-anchor:end;opacity:1;fill:#666666"
  441 + x="52">
  442 + <tspan
  443 + id="tspan1917">0</tspan>
  444 + </text>
  445 + <text
  446 + id="text1923"
  447 + y="252"
  448 + style="color:#666666;font-size:11px;text-anchor:end;opacity:1;fill:#666666"
  449 + x="52">
  450 + <tspan
  451 + id="tspan1921">25</tspan>
  452 + </text>
  453 + <text
  454 + id="text1927"
  455 + y="189"
  456 + style="color:#666666;font-size:11px;text-anchor:end;opacity:1;fill:#666666"
  457 + x="52">
  458 + <tspan
  459 + id="tspan1925">50</tspan>
  460 + </text>
  461 + <text
  462 + id="text1931"
  463 + y="127"
  464 + style="color:#666666;font-size:11px;text-anchor:end;opacity:1;fill:#666666"
  465 + x="52">
  466 + <tspan
  467 + id="tspan1929">75</tspan>
  468 + </text>
  469 + <text
  470 + id="text1935"
  471 + y="64"
  472 + style="color:#666666;font-size:11px;text-anchor:end;opacity:1;fill:#666666"
  473 + x="52">
  474 + <tspan
  475 + id="tspan1933">100</tspan>
  476 + </text>
  477 + <rect
  478 + style="font-size:12px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#ffffff"
  479 + class="highcharts-background"
  480 + x="703.48688"
  481 + y="2.1049576"
  482 + width="600"
  483 + height="400"
  484 + rx="0"
  485 + ry="0"
  486 + id="rect2515" />
  487 + <rect
  488 + style="font-size:12px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:none"
  489 + class="highcharts-plot-background"
  490 + x="764.48688"
  491 + y="61.104958"
  492 + width="529"
  493 + height="250"
  494 + id="rect2517" />
  495 + <g
  496 + style="font-size:12px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif"
  497 + class="highcharts-grid highcharts-xaxis-grid "
  498 + id="g2529"
  499 + transform="translate(703.48688,2.104956)">
  500 + <path
  501 + style="opacity:1;fill:none"
  502 + inkscape:connector-curvature="0"
  503 + class="highcharts-grid-line"
  504 + d="M 112.5,59 V 309"
  505 + id="path2519" />
  506 + <path
  507 + style="opacity:1;fill:none"
  508 + inkscape:connector-curvature="0"
  509 + class="highcharts-grid-line"
  510 + d="M 231.5,59 V 309"
  511 + id="path2521" />
  512 + <path
  513 + style="opacity:1;fill:none"
  514 + inkscape:connector-curvature="0"
  515 + class="highcharts-grid-line"
  516 + d="M 347.5,59 V 309"
  517 + id="path2523" />
  518 + <path
  519 + style="opacity:1;fill:none"
  520 + inkscape:connector-curvature="0"
  521 + class="highcharts-grid-line"
  522 + d="M 466.5,59 V 309"
  523 + id="path2525" />
  524 + <path
  525 + style="opacity:1;fill:none"
  526 + inkscape:connector-curvature="0"
  527 + class="highcharts-grid-line"
  528 + d="M 584.5,59 V 309"
  529 + id="path2527" />
  530 + </g>
  531 + <g
  532 + style="font-size:12px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif"
  533 + class="highcharts-grid highcharts-yaxis-grid "
  534 + id="g2543"
  535 + transform="translate(703.48688,2.104956)">
  536 + <path
  537 + style="opacity:1;fill:none;stroke:#e6e6e6;stroke-width:1"
  538 + inkscape:connector-curvature="0"
  539 + class="highcharts-grid-line"
  540 + d="M 61,309.5 H 590"
  541 + id="path2531" />
  542 + <path
  543 + style="opacity:1;fill:none;stroke:#e6e6e6;stroke-width:1"
  544 + inkscape:connector-curvature="0"
  545 + class="highcharts-grid-line"
  546 + d="M 61,259.5 H 590"
  547 + id="path2533" />
  548 + <path
  549 + style="opacity:1;fill:none;stroke:#e6e6e6;stroke-width:1"
  550 + inkscape:connector-curvature="0"
  551 + class="highcharts-grid-line"
  552 + d="M 61,209.5 H 590"
  553 + id="path2535" />
  554 + <path
  555 + style="opacity:1;fill:none;stroke:#e6e6e6;stroke-width:1"
  556 + inkscape:connector-curvature="0"
  557 + class="highcharts-grid-line"
  558 + d="M 61,159.5 H 590"
  559 + id="path2537" />
  560 + <path
  561 + style="opacity:1;fill:none;stroke:#e6e6e6;stroke-width:1"
  562 + inkscape:connector-curvature="0"
  563 + class="highcharts-grid-line"
  564 + d="M 61,109.5 H 590"
  565 + id="path2539" />
  566 + <path
  567 + style="opacity:1;fill:none;stroke:#e6e6e6;stroke-width:1"
  568 + inkscape:connector-curvature="0"
  569 + class="highcharts-grid-line"
  570 + d="M 61,58.5 H 590"
  571 + id="path2541" />
  572 + </g>
  573 + <rect
  574 + style="font-size:12px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:none"
  575 + class="highcharts-plot-border"
  576 + x="764.48688"
  577 + y="61.104958"
  578 + width="529"
  579 + height="250"
  580 + id="rect2545" />
  581 + <g
  582 + style="font-size:12px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif"
  583 + class="highcharts-axis highcharts-xaxis "
  584 + id="g2563"
  585 + transform="translate(703.48688,2.104956)">
  586 + <path
  587 + style="opacity:1;fill:none;stroke:#ccd6eb;stroke-width:1"
  588 + inkscape:connector-curvature="0"
  589 + class="highcharts-tick"
  590 + d="m 112.5,309 v 10"
  591 + id="path2547" />
  592 + <path
  593 + style="opacity:1;fill:none;stroke:#ccd6eb;stroke-width:1"
  594 + inkscape:connector-curvature="0"
  595 + class="highcharts-tick"
  596 + d="m 231.5,309 v 10"
  597 + id="path2549" />
  598 + <path
  599 + style="opacity:1;fill:none;stroke:#ccd6eb;stroke-width:1"
  600 + inkscape:connector-curvature="0"
  601 + class="highcharts-tick"
  602 + d="m 347.5,309 v 10"
  603 + id="path2551" />
  604 + <path
  605 + style="opacity:1;fill:none;stroke:#ccd6eb;stroke-width:1"
  606 + inkscape:connector-curvature="0"
  607 + class="highcharts-tick"
  608 + d="m 466.5,309 v 10"
  609 + id="path2553" />
  610 + <path
  611 + style="opacity:1;fill:none;stroke:#ccd6eb;stroke-width:1"
  612 + inkscape:connector-curvature="0"
  613 + class="highcharts-tick"
  614 + d="m 584.5,309 v 10"
  615 + id="path2555" />
  616 + <text
  617 + x="325.5"
  618 + class="highcharts-axis-title"
  619 + style="color:#666666;text-anchor:middle;fill:#666666"
  620 + y="346"
  621 + id="text2559">
  622 + <tspan
  623 + id="tspan2557">Date</tspan>
  624 + </text>
  625 + <path
  626 + style="fill:none;stroke:#ccd6eb;stroke-width:1"
  627 + inkscape:connector-curvature="0"
  628 + class="highcharts-axis-line"
  629 + d="M 61,309.5 H 590"
  630 + id="path2561" />
  631 + </g>
  632 + <path
  633 + id="path2569"
  634 + d="M 764.48688,61.104956 V 311.10496"
  635 + class="highcharts-axis-line"
  636 + inkscape:connector-curvature="0"
  637 + style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:none" />
  638 + <path
  639 + style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:none;stroke:#5c3566;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
  640 + inkscape:connector-curvature="0"
  641 + d="m 769.67315,176.10496 h 20.6676 9.04207 24.54277 4.52104 32.29311 4.52104 3.87517 13.56311 v 0 h 25.18863 1.93759 16.79242 13.56311 8.39621 14.85483 9.04208 0.64586 3.87517 12.91725 5.81276 2.58345 5.16688 1.2917 5.1669 4.5211 20.0217 c 12.6589,0 18.9884,-95.000004 31.6473,-95.000004 h 3.8751 v 0 h 9.688 6.4586 2.5834 7.1045 2.5835 9.0421 1.9375 1.9376 6.4587 v 0 h 2.5834 v 0 0 0 0 h 1.9376 5.1669 4.521 3.8752 3.2293 0.6459 0.6458 15.5007 19.3759 0.6459 3.2293 0.6458 c 5.942,0 8.9129,115.000004 14.8549,115.000004 v 0 h 3.2293 4.521 v 0 h 1.2917 2.5835 1.2917 -11.0203 0.6458 4.5211 1.2917 v 0 0 h 5.1669 c 18.6008,0 9.9013,85 28.5021,85 h 1.9376 v 0 h 0.6458 0.6459 v 0 0 h 0.6459 3.2293 4.521 v 0 0"
  642 + class="highcharts-graph"
  643 + id="path2573"
  644 + sodipodi:nodetypes="ccccccccccccccccccccccccccssccccccccccccccccccccccccccccsccccccccccccccssccccccccccc" />
  645 + <path
  646 + style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#5c3566;stroke:none"
  647 + inkscape:connector-curvature="0"
  648 + d="m 773.48688,176.10496 a 4,4 0 1 1 0,-0.004 z"
  649 + class="highcharts-point highcharts-color-0"
  650 + id="path2585" />
  651 + <path
  652 + style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#5c3566;stroke:none"
  653 + inkscape:connector-curvature="0"
  654 + d="m 1069.4869,81.104956 a 4,4 0 1 1 0,-0.004 z"
  655 + class="highcharts-point highcharts-color-0"
  656 + id="path2639" />
  657 + <path
  658 + style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#7cb5ec;stroke:#5c3566"
  659 + inkscape:connector-curvature="0"
  660 + d="m 1198.4869,196.10496 a 4,4 0 1 1 0,-0.004 z"
  661 + class="highcharts-point highcharts-color-0"
  662 + id="path2699" />
  663 + <path
  664 + style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#5c3566;stroke:none"
  665 + inkscape:connector-curvature="0"
  666 + d="m 1198.4869,196.10496 a 4,4 0 1 1 0,-0.004 z"
  667 + class="highcharts-point highcharts-color-0"
  668 + id="path2701" />
  669 + <path
  670 + style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#5c3566"
  671 + inkscape:connector-curvature="0"
  672 + d="m 1234.4869,279.10496 a 4,4 0 1 1 0,-0.004 z"
  673 + class="highcharts-point highcharts-color-0"
  674 + id="path2729" />
  675 + <path
  676 + style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:none;stroke:#f57900;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
  677 + inkscape:connector-curvature="0"
  678 + d="m 769.67315,311.10496 c 0,0 12.40056,0 20.6676,0 3.61683,0 5.42524,0 9.04207,0 9.81711,0 14.72566,0 24.54277,0 1.80842,0 2.71262,0 4.52104,0 12.91724,0 19.37587,0 32.29311,0 1.80842,0 2.71262,0 4.52104,0 1.55007,0 2.3251,0 3.87517,0 5.42525,0 8.13787,0 13.56311,0 0,0 0,0 0,0 10.07545,0 15.11318,0 25.18863,0 0.77504,0 1.16256,0 1.93759,0 6.71697,0 10.07545,0 16.79242,0 5.42524,0 8.13787,0 13.56311,0 3.35848,0 5.03773,0 8.39621,0 5.94193,0 8.9129,0 14.85483,0 3.61683,0 5.42525,0 9.04208,0 0.25834,0 0.38751,0 0.64586,0 1.55007,0 2.3251,0 3.87517,0 5.1669,0 7.75035,0 12.91725,0 2.3251,0 3.48766,0 5.81276,0 1.03338,0 1.55007,0 2.58345,0 2.06678,0 3.10018,0 5.16688,0 0.5167,0 0.7751,0 1.2917,0 2.0668,0 3.1002,0 5.1669,0 1.8085,0 2.7127,0 4.5211,0 8.0087,0 12.013,0 20.0217,0 12.6589,0 18.9884,-30 31.6473,-30 1.55,0 2.3251,0 3.8751,0 0,0 0,0 0,0 3.8752,0 5.8128,0 9.688,0 2.5834,0 3.8752,0 6.4586,0 1.0334,0 1.5501,0 2.5834,0 2.8418,0 4.2627,0 7.1045,0 1.0334,0 1.5501,-15 2.5835,-15 3.6168,0 5.4252,0 9.0421,0 0.775,0 1.1625,0 1.9375,0 0.7751,0 1.1626,0 1.9376,0 2.5835,0 3.8752,-10 6.4587,-10 0,0 0,0 0,0 1.0333,0 1.55,0 2.5834,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0.775,0 1.1626,0 1.9376,0 2.0668,0 3.1001,0 5.1669,0 1.8084,0 2.7126,0 4.521,0 1.5501,0 2.3251,0 3.8752,0 1.2917,0 1.9376,0 3.2293,0 0.2584,0 0.3875,0 0.6459,0 0.2583,0 0.3875,0 0.6458,0 6.2003,0 9.3005,0 15.5007,0 7.7504,0 11.6256,0 19.3759,0 0.2583,0 0.3875,0 0.6459,0 1.2917,0 1.9376,0 3.2293,0 0.2583,0 0.3875,0 0.6458,0 5.942,0 8.9129,0 14.8549,0 0,0 0,0 0,0 1.2917,0 1.9376,0 3.2293,0 1.8084,0 2.7126,0 4.521,0 0,0 0,0 0,0 0.5167,0 0.7751,0 1.2917,0 1.0334,0 1.5501,0 2.5835,0 0.5167,0 0.775,0 1.2917,0 4.3919,0 6.5878,0 10.9797,0 0.2583,0 0.3875,0 0.6458,0 1.8085,0 2.7127,0 4.5211,0 0.5167,0 0.775,0 1.2917,0 0,0 0,0 0,0 0,0 0,0 0,0 2.0668,0 3.1001,25 5.1669,25 18.6008,0 27.9013,0 46.5021,0 0.775,0 1.1625,0 1.9376,0 0,0 0,0 0,0 0.2583,0 0.3875,0 0.6458,0 0.2584,0 0.3876,0 0.6459,0 0,0 0,0 0,0 0,0 0,0 0,0 0.2583,0 0.3875,0 0.6459,0 1.2917,0 1.9375,0 3.2293,0 1.8084,0 2.7126,0 4.521,0 0,0 0,0 0,0 0,0 0,0 0,0"
  679 + class="highcharts-graph"
  680 + id="path2755" />
  681 + <path
  682 + style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#f57900;stroke:#f57900"
  683 + inkscape:connector-curvature="0"
  684 + d="m 769.48688,307.10496 4,4 -4,4 -4,-4 z"
  685 + class="highcharts-point highcharts-color-1"
  686 + id="path2767" />
  687 + <path
  688 + style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#f57900;stroke:#f57900"
  689 + inkscape:connector-curvature="0"
  690 + d="m 1065.4869,277.10496 4,4 -4,4 -4,-4 z"
  691 + class="highcharts-point highcharts-color-1"
  692 + id="path2821" />
  693 + <path
  694 + style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#f57900;stroke:#f57900"
  695 + inkscape:connector-curvature="0"
  696 + d="m 1097.4869,262.10496 4,4 -4,4 -4,-4 z"
  697 + class="highcharts-point highcharts-color-1"
  698 + id="path2835" />
  699 + <path
  700 + style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#434348;stroke:#f57900"
  701 + inkscape:connector-curvature="0"
  702 + d="m 1117.4869,252.10496 4,4 -4,4 -4,-4 z"
  703 + class="highcharts-point highcharts-color-1"
  704 + id="path2843" />
  705 + <path
  706 + style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#f57900;stroke:#f57900"
  707 + inkscape:connector-curvature="0"
  708 + d="m 1117.4869,252.10496 4,4 -4,4 -4,-4 z"
  709 + class="highcharts-point highcharts-color-1"
  710 + id="path2845" />
  711 + <path
  712 + style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#f57900;stroke:#f57900"
  713 + inkscape:connector-curvature="0"
  714 + d="m 1229.4869,277.10496 4,4 -4,4 -4,-4 z"
  715 + class="highcharts-point highcharts-color-1"
  716 + id="path2909" />
  717 + <text
  718 + x="1003.4869"
  719 + class="highcharts-title"
  720 + style="color:#333333;font-size:18px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:middle;fill:#333333"
  721 + y="26.104956"
  722 + id="text2941">
  723 + <tspan
  724 + id="tspan2939">Team Members Distribution</tspan>
  725 + </text>
  726 + <text
  727 + x="1003.4869"
  728 + class="highcharts-subtitle"
  729 + style="color:#666666;font-size:12px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:middle;fill:#666666"
  730 + y="46.104958"
  731 + id="text2945">
  732 + <tspan
  733 + id="tspan2943">From Jan/2014 to Mai/2016</tspan>
  734 + </text>
  735 + <rect
  736 + id="rect2947"
  737 + visibility="visible"
  738 + height="25"
  739 + width="388"
  740 + y="362.10495"
  741 + x="809.48688"
  742 + ry="0"
  743 + rx="0"
  744 + class="highcharts-legend-box"
  745 + style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;visibility:visible;fill:none" />
  746 + <path
  747 + style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#5c3566;stroke:#5c3566;stroke-width:2"
  748 + inkscape:connector-curvature="0"
  749 + d="m 817.48688,376.10496 h 16"
  750 + class="highcharts-graph"
  751 + id="path2949" />
  752 + <path
  753 + style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#5c3566;stroke:#5c3566"
  754 + inkscape:connector-curvature="0"
  755 + d="m 829.48688,376.10496 a 4,4 0 1 1 0,-0.004 z"
  756 + class="highcharts-point"
  757 + id="path2951" />
  758 + <text
  759 + x="838.48688"
  760 + style="color:#333333;font-weight:bold;font-size:12px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:start;fill:#333333"
  761 + y="380.10495"
  762 + id="text2955">
  763 + <tspan
  764 + id="tspan2953"># Members Development Team</tspan>
  765 + </text>
  766 + <path
  767 + style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#f57900;stroke:#f57900;stroke-width:2"
  768 + inkscape:connector-curvature="0"
  769 + d="m 1035.5963,376.10496 h 16"
  770 + class="highcharts-graph"
  771 + id="path2959" />
  772 + <path
  773 + style="font-size:medium;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;fill:#f57900;stroke:#f57900"
  774 + inkscape:connector-curvature="0"
  775 + d="m 1043.5963,372.10496 4,4 -4,4 -4,-4 z"
  776 + class="highcharts-point"
  777 + id="path2961" />
  778 + <text
  779 + x="1056.5962"
  780 + y="380.10495"
  781 + style="color:#333333;font-weight:bold;font-size:12px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:start;fill:#333333"
  782 + id="text2965">
  783 + <tspan
  784 + id="tspan2963">Qt of DevOps Members</tspan>
  785 + </text>
  786 + <g
  787 + style="font-size:12px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif"
  788 + class="highcharts-axis-labels highcharts-xaxis-labels "
  789 + id="g2995"
  790 + transform="translate(703.48688,2.104956)">
  791 + <text
  792 + x="112.68836"
  793 + style="color:#666666;font-size:11px;text-anchor:middle;opacity:1;fill:#666666"
  794 + y="328"
  795 + id="text2977">
  796 + <tspan
  797 + id="tspan2975">Jul '14</tspan>
  798 + </text>
  799 + <text
  800 + x="231.52704"
  801 + style="color:#666666;font-size:11px;text-anchor:middle;opacity:1;fill:#666666"
  802 + y="328"
  803 + id="text2981">
  804 + <tspan
  805 + id="tspan2979">Jan '15</tspan>
  806 + </text>
  807 + <text
  808 + x="348.4281"
  809 + style="color:#666666;font-size:11px;text-anchor:middle;opacity:1;fill:#666666"
  810 + y="328"
  811 + id="text2985">
  812 + <tspan
  813 + id="tspan2983">Jul '15</tspan>
  814 + </text>
  815 + <text
  816 + x="467.26678"
  817 + style="color:#666666;font-size:11px;text-anchor:middle;opacity:1;fill:#666666"
  818 + y="328"
  819 + id="text2989">
  820 + <tspan
  821 + id="tspan2987">Jan '16</tspan>
  822 + </text>
  823 + <text
  824 + x="574.5"
  825 + style="color:#666666;font-size:11px;text-anchor:middle;opacity:1;fill:#666666"
  826 + y="328"
  827 + id="text2993">
  828 + <tspan
  829 + id="tspan2991">Jul '16</tspan>
  830 + </text>
  831 + </g>
  832 + <text
  833 + id="text2999"
  834 + y="316.10495"
  835 + style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#666666"
  836 + x="749.48688">
  837 + <tspan
  838 + id="tspan2997">0</tspan>
  839 + </text>
  840 + <text
  841 + id="text3003"
  842 + y="266.10495"
  843 + style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#666666"
  844 + x="749.48688">
  845 + <tspan
  846 + id="tspan3001">10</tspan>
  847 + </text>
  848 + <text
  849 + id="text3007"
  850 + y="216.10495"
  851 + style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#666666"
  852 + x="749.48688">
  853 + <tspan
  854 + id="tspan3005">20</tspan>
  855 + </text>
  856 + <text
  857 + id="text3011"
  858 + y="166.10495"
  859 + style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#666666"
  860 + x="749.48688">
  861 + <tspan
  862 + id="tspan3009">30</tspan>
  863 + </text>
  864 + <text
  865 + id="text3015"
  866 + y="116.10496"
  867 + style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#666666"
  868 + x="749.48688">
  869 + <tspan
  870 + id="tspan3013">40</tspan>
  871 + </text>
  872 + <text
  873 + id="text3019"
  874 + y="66.104958"
  875 + style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#666666"
  876 + x="749.48688">
  877 + <tspan
  878 + id="tspan3017">50</tspan>
  879 + </text>
  880 + <text
  881 + id="text3011-3"
  882 + y="169.59616"
  883 + style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#5c3566;fill-opacity:1;stroke:none"
  884 + x="790.93018">
  885 + <tspan
  886 + id="tspan3009-6"
  887 + style="fill:#5c3566;fill-opacity:1;stroke:none">27</tspan>
  888 + </text>
  889 + <text
  890 + id="text3011-3-7"
  891 + y="73.994606"
  892 + style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#5c3566;fill-opacity:1;stroke:none"
  893 + x="1077.8906">
  894 + <tspan
  895 + id="tspan3009-6-5"
  896 + style="fill:#5c3566;fill-opacity:1;stroke:none">46</tspan>
  897 + </text>
  898 + <text
  899 + id="text3011-3-7-3"
  900 + y="191.03613"
  901 + style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#5c3566;fill-opacity:1;stroke:none"
  902 + x="1211.5936">
  903 + <tspan
  904 + id="tspan3009-6-5-5"
  905 + style="fill:#5c3566;fill-opacity:1;stroke:none">23</tspan>
  906 + </text>
  907 + <text
  908 + id="text3011-3-7-3-6"
  909 + y="272.32217"
  910 + style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#5c3566;fill-opacity:1;stroke:none"
  911 + x="1238.8339">
  912 + <tspan
  913 + id="tspan3009-6-5-5-2"
  914 + style="fill:#5c3566;fill-opacity:1;stroke:none">6</tspan>
  915 + </text>
  916 + <text
  917 + id="text3011-3-7-3-9"
  918 + y="303.18369"
  919 + style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#f57900;fill-opacity:1;stroke:none"
  920 + x="791.69611">
  921 + <tspan
  922 + id="tspan3009-6-5-5-1"
  923 + style="fill:#f57900;fill-opacity:1;stroke:none">0</tspan>
  924 + </text>
  925 + <text
  926 + id="text3011-3-7-3-9-2"
  927 + y="272.67294"
  928 + style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#f57900;fill-opacity:1;stroke:none"
  929 + x="1073.1799">
  930 + <tspan
  931 + id="tspan3009-6-5-5-1-7"
  932 + style="fill:#f57900;fill-opacity:1;stroke:none">6</tspan>
  933 + </text>
  934 + <text
  935 + id="text3011-3-7-3-9-0"
  936 + y="258.65451"
  937 + style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#f57900;fill-opacity:1;stroke:none"
  938 + x="1097.9182">
  939 + <tspan
  940 + id="tspan3009-6-5-5-1-9"
  941 + style="fill:#f57900;fill-opacity:1;stroke:none">9</tspan>
  942 + </text>
  943 + <text
  944 + id="text3011-3-7-3-9-3"
  945 + y="247.93451"
  946 + style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#f57900;fill-opacity:1;stroke:none"
  947 + x="1121.8322">
  948 + <tspan
  949 + id="tspan3009-6-5-5-1-6"
  950 + style="fill:#f57900;fill-opacity:1;stroke:none">11</tspan>
  951 + </text>
  952 + <text
  953 + id="text3011-3-7-3-9-3-0"
  954 + y="295.75946"
  955 + style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#f57900;fill-opacity:1;stroke:none"
  956 + x="1226.9954">
  957 + <tspan
  958 + id="tspan3009-6-5-5-1-6-6"
  959 + style="fill:#f57900;fill-opacity:1;stroke:none">6</tspan>
  960 + </text>
  961 + <path
  962 + style="fill:#7cb5ec"
  963 + inkscape:connector-curvature="0"
  964 + id="path8221"
  965 + class="highcharts-point highcharts-color-0"
  966 + d="m 358,240 a 4,4 0 1 1 0,-0.004 z" />
  967 + <path
  968 + d="m 472,174 a 4,4 0 1 1 0,-0.004 z"
  969 + class="highcharts-point highcharts-color-0"
  970 + id="path8223"
  971 + inkscape:connector-curvature="0"
  972 + style="fill:#7cb5ec" />
  973 + <path
  974 + style="fill:#7cb5ec"
  975 + inkscape:connector-curvature="0"
  976 + id="path8225"
  977 + class="highcharts-point highcharts-color-0"
  978 + d="m 590,96 a 4,4 0 1 1 0,-0.004 z" />
  979 + <text
  980 + id="text1923-2"
  981 + y="288.33472"
  982 + style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#666666"
  983 + x="123.86433">
  984 + <tspan
  985 + id="tspan1921-6">5</tspan>
  986 + </text>
  987 + <text
  988 + id="text1923-1"
  989 + y="260.34637"
  990 + style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#666666"
  991 + x="238.15005">
  992 + <tspan
  993 + id="tspan1921-8">15</tspan>
  994 + </text>
  995 + <text
  996 + id="text1923-7"
  997 + y="225.36096"
  998 + style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#666666"
  999 + x="358.26666">
  1000 + <tspan
  1001 + id="tspan1921-9">30</tspan>
  1002 + </text>
  1003 + <text
  1004 + id="text1923-20"
  1005 + y="158.88866"
  1006 + style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#666666"
  1007 + x="469.05383">
  1008 + <tspan
  1009 + id="tspan1921-2">57</tspan>
  1010 + </text>
  1011 + <text
  1012 + id="text1923-3"
  1013 + y="86.585457"
  1014 + style="color:#666666;font-size:11px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;text-anchor:end;opacity:1;fill:#666666"
  1015 + x="588.00427">
  1016 + <tspan
  1017 + id="tspan1921-7">84</tspan>
  1018 + </text>
  1019 + <path
  1020 + style="font-size:12px;font-family:'Lucida Grande', 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;opacity:1;fill:none;stroke:#b3b3b3;stroke-width:0.8217054"
  1021 + inkscape:connector-curvature="0"
  1022 + id="path1631-5"
  1023 + d="M 668.63914,22.3216 V 375.45105"
  1024 + class="highcharts-grid-line" />
  1025 + <rect
  1026 + x="553.5"
  1027 + y="242.5"
  1028 + width="40"
  1029 + height="67"
  1030 + class="highcharts-point highcharts-color-1"
  1031 + id="rect1853"
  1032 + style="fill:#4e9a06;stroke:none;stroke-width:3.65148377" />
  1033 +</svg>
ieeeSW/releaseEng3/figures/raw/pipeline.svg 0 → 100644
@@ -0,0 +1,1691 @@ @@ -0,0 +1,1691 @@
  1 +<?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2 +<!-- Created with Inkscape (http://www.inkscape.org/) -->
  3 +
  4 +<svg
  5 + xmlns:dc="http://purl.org/dc/elements/1.1/"
  6 + xmlns:cc="http://creativecommons.org/ns#"
  7 + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  8 + xmlns:svg="http://www.w3.org/2000/svg"
  9 + xmlns="http://www.w3.org/2000/svg"
  10 + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
  11 + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
  12 + width="210mm"
  13 + height="297mm"
  14 + viewBox="0 0 210 297"
  15 + version="1.1"
  16 + id="svg8"
  17 + inkscape:version="0.92.2 5c3e80d, 2017-08-06"
  18 + sodipodi:docname="drawing.svg"
  19 + inkscape:export-filename="/home/melissawen/Estudos/Artigos/SPB/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  20 + inkscape:export-xdpi="90"
  21 + inkscape:export-ydpi="90">
  22 + <defs
  23 + id="defs2">
  24 + <marker
  25 + inkscape:stockid="Arrow2Lend"
  26 + orient="auto"
  27 + refY="0.0"
  28 + refX="0.0"
  29 + id="marker2874"
  30 + style="overflow:visible;"
  31 + inkscape:isstock="true">
  32 + <path
  33 + id="path2872"
  34 + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#c66e00;stroke-opacity:1;fill:#c66e00;fill-opacity:1"
  35 + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
  36 + transform="scale(1.1) rotate(180) translate(1,0)" />
  37 + </marker>
  38 + <marker
  39 + inkscape:stockid="Arrow2Lend"
  40 + orient="auto"
  41 + refY="0.0"
  42 + refX="0.0"
  43 + id="marker2712"
  44 + style="overflow:visible;"
  45 + inkscape:isstock="true">
  46 + <path
  47 + id="path2710"
  48 + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#c66e00;stroke-opacity:1;fill:#c66e00;fill-opacity:1"
  49 + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
  50 + transform="scale(1.1) rotate(180) translate(1,0)" />
  51 + </marker>
  52 + <marker
  53 + inkscape:stockid="Arrow2Lend"
  54 + orient="auto"
  55 + refY="0.0"
  56 + refX="0.0"
  57 + id="marker2558"
  58 + style="overflow:visible;"
  59 + inkscape:isstock="true">
  60 + <path
  61 + id="path2556"
  62 + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#c66e00;stroke-opacity:1;fill:#c66e00;fill-opacity:1"
  63 + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
  64 + transform="scale(1.1) rotate(180) translate(1,0)" />
  65 + </marker>
  66 + <marker
  67 + inkscape:stockid="Arrow2Lend"
  68 + orient="auto"
  69 + refY="0"
  70 + refX="0"
  71 + id="marker2362"
  72 + style="overflow:visible"
  73 + inkscape:isstock="true">
  74 + <path
  75 + id="path2360"
  76 + style="fill:#c66e00;fill-opacity:1;fill-rule:evenodd;stroke:#c66e00;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
  77 + d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
  78 + transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
  79 + inkscape:connector-curvature="0" />
  80 + </marker>
  81 + <marker
  82 + inkscape:stockid="Arrow2Lend"
  83 + orient="auto"
  84 + refY="0"
  85 + refX="0"
  86 + id="marker2214"
  87 + style="overflow:visible"
  88 + inkscape:isstock="true">
  89 + <path
  90 + id="path2212"
  91 + style="fill:#c66e00;fill-opacity:1;fill-rule:evenodd;stroke:#c66e00;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
  92 + d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
  93 + transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
  94 + inkscape:connector-curvature="0" />
  95 + </marker>
  96 + <marker
  97 + inkscape:stockid="Arrow2Lend"
  98 + orient="auto"
  99 + refY="0"
  100 + refX="0"
  101 + id="marker1280"
  102 + style="overflow:visible"
  103 + inkscape:isstock="true">
  104 + <path
  105 + id="path1278"
  106 + style="fill:#c66e00;fill-opacity:1;fill-rule:evenodd;stroke:#c66e00;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
  107 + d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
  108 + transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
  109 + inkscape:connector-curvature="0" />
  110 + </marker>
  111 + <marker
  112 + inkscape:stockid="Arrow2Lend"
  113 + orient="auto"
  114 + refY="0.0"
  115 + refX="0.0"
  116 + id="marker22202"
  117 + style="overflow:visible;"
  118 + inkscape:isstock="true">
  119 + <path
  120 + id="path22200"
  121 + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"
  122 + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
  123 + transform="scale(1.1) rotate(180) translate(1,0)" />
  124 + </marker>
  125 + <marker
  126 + inkscape:stockid="Arrow2Lend"
  127 + orient="auto"
  128 + refY="0.0"
  129 + refX="0.0"
  130 + id="marker21792"
  131 + style="overflow:visible;"
  132 + inkscape:isstock="true">
  133 + <path
  134 + id="path21790"
  135 + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#c66e00;stroke-opacity:1;fill:#c66e00;fill-opacity:1"
  136 + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
  137 + transform="scale(1.1) rotate(180) translate(1,0)" />
  138 + </marker>
  139 + <marker
  140 + inkscape:isstock="true"
  141 + style="overflow:visible;"
  142 + id="marker21254"
  143 + refX="0.0"
  144 + refY="0.0"
  145 + orient="auto"
  146 + inkscape:stockid="Arrow2Lend"
  147 + inkscape:collect="always">
  148 + <path
  149 + transform="scale(1.1) rotate(180) translate(1,0)"
  150 + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
  151 + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"
  152 + id="path21252" />
  153 + </marker>
  154 + <marker
  155 + inkscape:isstock="true"
  156 + style="overflow:visible;"
  157 + id="marker14950"
  158 + refX="0.0"
  159 + refY="0.0"
  160 + orient="auto"
  161 + inkscape:stockid="Arrow2Lend">
  162 + <path
  163 + transform="scale(1.1) rotate(180) translate(1,0)"
  164 + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
  165 + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"
  166 + id="path14948" />
  167 + </marker>
  168 + <marker
  169 + inkscape:stockid="Arrow2Lend"
  170 + orient="auto"
  171 + refY="0.0"
  172 + refX="0.0"
  173 + id="marker14790"
  174 + style="overflow:visible;"
  175 + inkscape:isstock="true">
  176 + <path
  177 + id="path14788"
  178 + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"
  179 + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
  180 + transform="scale(1.1) rotate(180) translate(1,0)" />
  181 + </marker>
  182 + <marker
  183 + inkscape:stockid="Arrow2Lend"
  184 + orient="auto"
  185 + refY="0.0"
  186 + refX="0.0"
  187 + id="marker14146"
  188 + style="overflow:visible;"
  189 + inkscape:isstock="true">
  190 + <path
  191 + id="path14144"
  192 + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"
  193 + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
  194 + transform="scale(1.1) rotate(180) translate(1,0)" />
  195 + </marker>
  196 + <marker
  197 + inkscape:stockid="Arrow2Lend"
  198 + orient="auto"
  199 + refY="0.0"
  200 + refX="0.0"
  201 + id="marker12622"
  202 + style="overflow:visible;"
  203 + inkscape:isstock="true"
  204 + inkscape:collect="always">
  205 + <path
  206 + id="path12620"
  207 + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"
  208 + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
  209 + transform="scale(1.1) rotate(180) translate(1,0)" />
  210 + </marker>
  211 + <marker
  212 + inkscape:stockid="Arrow2Lend"
  213 + orient="auto"
  214 + refY="0.0"
  215 + refX="0.0"
  216 + id="marker10918"
  217 + style="overflow:visible;"
  218 + inkscape:isstock="true">
  219 + <path
  220 + id="path10916"
  221 + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"
  222 + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
  223 + transform="scale(1.1) rotate(180) translate(1,0)" />
  224 + </marker>
  225 + <marker
  226 + inkscape:isstock="true"
  227 + style="overflow:visible;"
  228 + id="marker9384"
  229 + refX="0.0"
  230 + refY="0.0"
  231 + orient="auto"
  232 + inkscape:stockid="Arrow2Lend">
  233 + <path
  234 + transform="scale(1.1) rotate(180) translate(1,0)"
  235 + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
  236 + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"
  237 + id="path9382" />
  238 + </marker>
  239 + <marker
  240 + inkscape:stockid="Arrow2Lend"
  241 + orient="auto"
  242 + refY="0.0"
  243 + refX="0.0"
  244 + id="marker7488"
  245 + style="overflow:visible;"
  246 + inkscape:isstock="true">
  247 + <path
  248 + id="path7486"
  249 + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"
  250 + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
  251 + transform="scale(1.1) rotate(180) translate(1,0)" />
  252 + </marker>
  253 + <marker
  254 + inkscape:isstock="true"
  255 + style="overflow:visible;"
  256 + id="marker5298"
  257 + refX="0.0"
  258 + refY="0.0"
  259 + orient="auto"
  260 + inkscape:stockid="Arrow2Lend"
  261 + inkscape:collect="always">
  262 + <path
  263 + transform="scale(1.1) rotate(180) translate(1,0)"
  264 + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
  265 + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#c66e00;stroke-opacity:1;fill:#c66e00;fill-opacity:1"
  266 + id="path5296" />
  267 + </marker>
  268 + <marker
  269 + inkscape:stockid="Arrow2Lend"
  270 + orient="auto"
  271 + refY="0.0"
  272 + refX="0.0"
  273 + id="marker5226"
  274 + style="overflow:visible;"
  275 + inkscape:isstock="true"
  276 + inkscape:collect="always">
  277 + <path
  278 + id="path5224"
  279 + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#c66e00;stroke-opacity:1;fill:#c66e00;fill-opacity:1"
  280 + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
  281 + transform="scale(1.1) rotate(180) translate(1,0)" />
  282 + </marker>
  283 + <marker
  284 + inkscape:stockid="Arrow2Lend"
  285 + orient="auto"
  286 + refY="0.0"
  287 + refX="0.0"
  288 + id="Arrow2Lend"
  289 + style="overflow:visible;"
  290 + inkscape:isstock="true"
  291 + inkscape:collect="always">
  292 + <path
  293 + id="path4815"
  294 + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"
  295 + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
  296 + transform="scale(1.1) rotate(180) translate(1,0)" />
  297 + </marker>
  298 + <marker
  299 + inkscape:stockid="Arrow1Lend"
  300 + orient="auto"
  301 + refY="0.0"
  302 + refX="0.0"
  303 + id="marker5118"
  304 + style="overflow:visible;"
  305 + inkscape:isstock="true">
  306 + <path
  307 + id="path5116"
  308 + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
  309 + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
  310 + transform="scale(0.8) rotate(180) translate(12.5,0)" />
  311 + </marker>
  312 + <marker
  313 + inkscape:stockid="Arrow1Lend"
  314 + orient="auto"
  315 + refY="0.0"
  316 + refX="0.0"
  317 + id="marker5084"
  318 + style="overflow:visible;"
  319 + inkscape:isstock="true">
  320 + <path
  321 + id="path5082"
  322 + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
  323 + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
  324 + transform="scale(0.8) rotate(180) translate(12.5,0)" />
  325 + </marker>
  326 + <marker
  327 + inkscape:stockid="Arrow1Lend"
  328 + orient="auto"
  329 + refY="0.0"
  330 + refX="0.0"
  331 + id="Arrow1Lend"
  332 + style="overflow:visible;"
  333 + inkscape:isstock="true">
  334 + <path
  335 + id="path4797"
  336 + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
  337 + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
  338 + transform="scale(0.8) rotate(180) translate(12.5,0)" />
  339 + </marker>
  340 + <marker
  341 + inkscape:isstock="true"
  342 + style="overflow:visible"
  343 + id="marker13378"
  344 + refX="0"
  345 + refY="0"
  346 + orient="auto"
  347 + inkscape:stockid="Arrow2Lend"
  348 + inkscape:collect="always">
  349 + <path
  350 + inkscape:connector-curvature="0"
  351 + transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
  352 + d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
  353 + style="fill:#c66e00;fill-opacity:1;fill-rule:evenodd;stroke:#c66e00;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
  354 + id="path13376" />
  355 + </marker>
  356 + <marker
  357 + inkscape:stockid="Arrow2Lend"
  358 + orient="auto"
  359 + refY="0"
  360 + refX="0"
  361 + id="marker12622-7"
  362 + style="overflow:visible"
  363 + inkscape:isstock="true"
  364 + inkscape:collect="always">
  365 + <path
  366 + inkscape:connector-curvature="0"
  367 + id="path12620-1"
  368 + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
  369 + d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
  370 + transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
  371 + </marker>
  372 + </defs>
  373 + <sodipodi:namedview
  374 + id="base"
  375 + pagecolor="#ffffff"
  376 + bordercolor="#666666"
  377 + borderopacity="1.0"
  378 + inkscape:pageopacity="0.0"
  379 + inkscape:pageshadow="2"
  380 + inkscape:zoom="0.24748737"
  381 + inkscape:cx="661.11287"
  382 + inkscape:cy="1338.1495"
  383 + inkscape:document-units="mm"
  384 + inkscape:current-layer="layer1"
  385 + showgrid="false"
  386 + inkscape:window-width="1366"
  387 + inkscape:window-height="695"
  388 + inkscape:window-x="0"
  389 + inkscape:window-y="27"
  390 + inkscape:window-maximized="1"
  391 + inkscape:object-nodes="false"
  392 + showguides="true"
  393 + inkscape:guide-bbox="true">
  394 + <sodipodi:guide
  395 + position="355.29762,554.86906"
  396 + orientation="0,1"
  397 + id="guide1216"
  398 + inkscape:locked="false" />
  399 + </sodipodi:namedview>
  400 + <metadata
  401 + id="metadata5">
  402 + <rdf:RDF>
  403 + <cc:Work
  404 + rdf:about="">
  405 + <dc:format>image/svg+xml</dc:format>
  406 + <dc:type
  407 + rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
  408 + <dc:title />
  409 + </cc:Work>
  410 + </rdf:RDF>
  411 + </metadata>
  412 + <g
  413 + inkscape:label="Layer 1"
  414 + inkscape:groupmode="layer"
  415 + id="layer1">
  416 + <rect
  417 + y="-100.85773"
  418 + x="-370.03882"
  419 + height="365.88095"
  420 + width="1138.4642"
  421 + id="rect4774-7"
  422 + style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.44747961px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
  423 + inkscape:export-filename="/home/melissawen/Estudos/Artigos/SPB/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  424 + inkscape:export-xdpi="59.993629"
  425 + inkscape:export-ydpi="59.993629" />
  426 + <flowRoot
  427 + xml:space="preserve"
  428 + id="flowRoot4764"
  429 + style="fill:black;stroke:none;stroke-opacity:1;stroke-width:1px;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;font-family:'Open Sans';font-style:normal;font-weight:normal;font-size:40px;line-height:23px;letter-spacing:0px;word-spacing:0px;-inkscape-font-specification:'Open Sans';font-stretch:normal;font-variant:normal"
  430 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  431 + inkscape:export-xdpi="59.993629"
  432 + inkscape:export-ydpi="59.993629"><flowRegion
  433 + id="flowRegion4766"><rect
  434 + id="rect4768"
  435 + width="3168.5715"
  436 + height="311.42856"
  437 + x="-908.57141"
  438 + y="-280.33746" /></flowRegion><flowPara
  439 + id="flowPara4770" /></flowRoot> <path
  440 + style="fill:#c66e00;fill-rule:evenodd;stroke:#c66e00;stroke-width:1.39996815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.79993637, 1.39996819000000006;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker5226);fill-opacity:1"
  441 + d="m 697.18892,-73.663744 h 42.55854"
  442 + id="path4790"
  443 + inkscape:connector-curvature="0"
  444 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  445 + inkscape:export-xdpi="59.993629"
  446 + inkscape:export-ydpi="59.993629" />
  447 + <text
  448 + id="text5280"
  449 + y="-70.280861"
  450 + x="662.47571"
  451 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.5269537px;line-height:14.09282303px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.31317383px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  452 + xml:space="preserve"
  453 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  454 + inkscape:export-xdpi="59.993629"
  455 + inkscape:export-ydpi="59.993629"><tspan
  456 + id="tspan5278"
  457 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:12.69999981px;line-height:14.09282303px;font-family:Courier;-inkscape-font-specification:'Courier Bold';text-align:center;text-anchor:middle;stroke-width:0.31317383px"
  458 + y="-70.280861"
  459 + x="662.47571"
  460 + sodipodi:role="line">Manually</tspan></text>
  461 + <path
  462 + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.36668432;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend)"
  463 + d="m 555.00665,-73.66433 h 41.45362"
  464 + id="path4792"
  465 + inkscape:connector-curvature="0"
  466 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  467 + inkscape:export-xdpi="59.993629"
  468 + inkscape:export-ydpi="59.993629" />
  469 + <text
  470 + xml:space="preserve"
  471 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.5269537px;line-height:14.09282303px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.31317383px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  472 + x="515.08429"
  473 + y="-68.987915"
  474 + id="text5286"
  475 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  476 + inkscape:export-xdpi="59.993629"
  477 + inkscape:export-ydpi="59.993629"><tspan
  478 + sodipodi:role="line"
  479 + x="515.08429"
  480 + y="-68.987915"
  481 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:12.69999981px;line-height:14.09282303px;font-family:Courier;-inkscape-font-specification:'Courier Bold';text-align:center;text-anchor:middle;stroke-width:0.31317383px"
  482 + id="tspan5284">Automated</tspan></text>
  483 + <path
  484 + inkscape:connector-curvature="0"
  485 + id="path5294"
  486 + d="M -324.68247,75.785663 V 19.752935 h 72.49512"
  487 + style="fill:none;fill-rule:evenodd;stroke:#c66e00;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.00000007, 1.00000003999999998;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker2558)"
  488 + sodipodi:nodetypes="ccc"
  489 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  490 + inkscape:export-xdpi="59.993629"
  491 + inkscape:export-ydpi="59.993629" />
  492 + <text
  493 + xml:space="preserve"
  494 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:6.08541679px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  495 + x="264.44788"
  496 + y="-29.855127"
  497 + id="text4548"
  498 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  499 + inkscape:export-xdpi="59.993629"
  500 + inkscape:export-ydpi="59.993629"><tspan
  501 + sodipodi:role="line"
  502 + id="tspan4546"
  503 + x="264.44788"
  504 + y="-29.855127"
  505 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px">Packaging</tspan></text>
  506 + <rect
  507 + ry="8.2461615"
  508 + y="-0.01368895"
  509 + x="221.27118"
  510 + height="199.57143"
  511 + width="87.690483"
  512 + id="rect4774"
  513 + style="opacity:1;vector-effect:none;fill:#e9ddaf;fill-opacity:1;stroke:none;stroke-width:0.29669365px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
  514 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  515 + inkscape:export-xdpi="59.993629"
  516 + inkscape:export-ydpi="59.993629"
  517 + rx="9.0033846" />
  518 + <rect
  519 + style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#554400;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:8.99999995, 3;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
  520 + id="rect20602"
  521 + width="103.40431"
  522 + height="256.45126"
  523 + x="213.03629"
  524 + y="-48.821728"
  525 + ry="10.5964"
  526 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  527 + inkscape:export-xdpi="59.993629"
  528 + inkscape:export-ydpi="59.993629"
  529 + rx="10.5964" />
  530 + <path
  531 + style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#554400;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
  532 + d="m 56.916332,208.30829 v 21.64883 H 324.18601 v -21.64883"
  533 + id="path21024"
  534 + inkscape:connector-curvature="0"
  535 + sodipodi:nodetypes="cccc"
  536 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  537 + inkscape:export-xdpi="59.993629"
  538 + inkscape:export-ydpi="59.993629" />
  539 + <text
  540 + inkscape:export-ydpi="59.993629"
  541 + inkscape:export-xdpi="59.993629"
  542 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  543 + id="text21042"
  544 + y="248.02782"
  545 + x="190.5383"
  546 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  547 + xml:space="preserve"><tspan
  548 + id="tspan21040"
  549 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:12.69999981px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier Bold';text-align:center;text-anchor:middle;stroke-width:0.26458332px"
  550 + y="248.02782"
  551 + x="190.5383"
  552 + sodipodi:role="line">SPB release</tspan></text>
  553 + <path
  554 + inkscape:export-ydpi="59.993629"
  555 + inkscape:export-xdpi="59.993629"
  556 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  557 + sodipodi:nodetypes="cc"
  558 + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker21254)"
  559 + d="m 321.58526,79.421519 h 30.23808"
  560 + id="path21250"
  561 + inkscape:connector-curvature="0" />
  562 + <text
  563 + xml:space="preserve"
  564 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  565 + x="408.14767"
  566 + y="-29.855127"
  567 + id="text4552"
  568 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  569 + inkscape:export-xdpi="59.993629"
  570 + inkscape:export-ydpi="59.993629"><tspan
  571 + sodipodi:role="line"
  572 + id="tspan4550"
  573 + x="408.14767"
  574 + y="-29.855127"
  575 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px">Validation</tspan><tspan
  576 + sodipodi:role="line"
  577 + x="408.14767"
  578 + y="-17.948877"
  579 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px"
  580 + id="tspan4772">Environment</tspan><tspan
  581 + sodipodi:role="line"
  582 + x="408.14767"
  583 + y="-6.0426283"
  584 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px"
  585 + id="tspan4554">Deployment</tspan></text>
  586 + <rect
  587 + rx="10.5964"
  588 + inkscape:export-ydpi="59.993629"
  589 + inkscape:export-xdpi="59.993629"
  590 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  591 + ry="10.5964"
  592 + y="-48.821728"
  593 + x="356.8555"
  594 + height="256.45126"
  595 + width="103.40431"
  596 + id="rect21044"
  597 + style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#554400;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:8.99999995, 3;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
  598 + <rect
  599 + rx="9.0033846"
  600 + inkscape:export-ydpi="59.993629"
  601 + inkscape:export-xdpi="59.993629"
  602 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  603 + style="opacity:1;vector-effect:none;fill:#e9ddaf;fill-opacity:1;stroke:none;stroke-width:0.29669365px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
  604 + id="rect1359"
  605 + width="87.690483"
  606 + height="199.57143"
  607 + x="364.7124"
  608 + y="-0.01368895"
  609 + ry="8.2461615" />
  610 + <text
  611 + inkscape:export-ydpi="59.993629"
  612 + inkscape:export-xdpi="59.993629"
  613 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  614 + id="text21572"
  615 + y="88.349464"
  616 + x="408.44601"
  617 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:17.63888931px;line-height:6.08541679px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  618 + xml:space="preserve"><tspan
  619 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;line-height:15.875px;font-family:Roboto;-inkscape-font-specification:Roboto;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  620 + y="88.349464"
  621 + x="408.44601"
  622 + sodipodi:role="line"
  623 + id="tspan21570">New</tspan><tspan
  624 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;line-height:15.875px;font-family:Roboto;-inkscape-font-specification:Roboto;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  625 + y="104.22446"
  626 + x="408.44601"
  627 + sodipodi:role="line"
  628 + id="tspan21576">feature</tspan><tspan
  629 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;line-height:15.875px;font-family:Roboto;-inkscape-font-specification:Roboto;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  630 + y="120.09946"
  631 + x="408.44601"
  632 + sodipodi:role="line"
  633 + id="tspan21580">available</tspan></text>
  634 + <path
  635 + inkscape:export-ydpi="59.993629"
  636 + inkscape:export-xdpi="59.993629"
  637 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  638 + inkscape:connector-curvature="0"
  639 + id="path21788"
  640 + d="m 464.75925,79.421519 h 30.23808"
  641 + style="fill:#c66e00;fill-rule:evenodd;stroke:#c66e00;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.00000006, 1.00000003000000004;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker21792);fill-opacity:1"
  642 + sodipodi:nodetypes="cc" />
  643 + <path
  644 + inkscape:connector-curvature="0"
  645 + id="path22198"
  646 + d="m 608.76818,79.421519 h 30.23808"
  647 + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker22202)"
  648 + sodipodi:nodetypes="cc"
  649 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  650 + inkscape:export-xdpi="59.993629"
  651 + inkscape:export-ydpi="59.993629" />
  652 + <text
  653 + xml:space="preserve"
  654 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:6.08541679px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  655 + x="552.68695"
  656 + y="-30.797043"
  657 + id="text4558"
  658 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  659 + inkscape:export-xdpi="59.993629"
  660 + inkscape:export-ydpi="59.993629"><tspan
  661 + sodipodi:role="line"
  662 + id="tspan4556"
  663 + x="552.68695"
  664 + y="-30.797043"
  665 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px">Acceptance</tspan><tspan
  666 + sodipodi:role="line"
  667 + x="552.68695"
  668 + y="-18.890793"
  669 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px"
  670 + id="tspan4564">Tests</tspan></text>
  671 + <rect
  672 + rx="10.5964"
  673 + style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#554400;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:8.99999995, 3;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
  674 + id="rect22184"
  675 + width="103.40431"
  676 + height="256.45126"
  677 + x="500.67474"
  678 + y="-48.821728"
  679 + ry="10.5964"
  680 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  681 + inkscape:export-xdpi="59.993629"
  682 + inkscape:export-ydpi="59.993629" />
  683 + <rect
  684 + ry="8.2461615"
  685 + y="-0.01368895"
  686 + x="508.53165"
  687 + height="199.57143"
  688 + width="87.690483"
  689 + id="rect1361"
  690 + style="opacity:1;vector-effect:none;fill:#e9ddaf;fill-opacity:1;stroke:none;stroke-width:0.29669365px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
  691 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  692 + inkscape:export-xdpi="59.993629"
  693 + inkscape:export-ydpi="59.993629"
  694 + rx="9.0033846" />
  695 + <text
  696 + xml:space="preserve"
  697 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:17.63888931px;line-height:6.08541679px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  698 + x="552.20325"
  699 + y="80.473976"
  700 + id="text22618"
  701 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  702 + inkscape:export-xdpi="59.993629"
  703 + inkscape:export-ydpi="59.993629"><tspan
  704 + id="tspan22616"
  705 + sodipodi:role="line"
  706 + x="552.20325"
  707 + y="80.473976"
  708 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;line-height:15.875px;font-family:Roboto;-inkscape-font-specification:Roboto;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">Wait</tspan><tspan
  709 + sodipodi:role="line"
  710 + x="552.20325"
  711 + y="96.348976"
  712 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;line-height:15.875px;font-family:Roboto;-inkscape-font-specification:Roboto;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  713 + id="tspan22627">for</tspan><tspan
  714 + sodipodi:role="line"
  715 + x="552.20325"
  716 + y="112.22398"
  717 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;line-height:15.875px;font-family:Roboto;-inkscape-font-specification:Roboto;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  718 + id="tspan22625">Analysts</tspan><tspan
  719 + sodipodi:role="line"
  720 + x="552.20325"
  721 + y="128.09897"
  722 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;line-height:15.875px;font-family:Roboto;-inkscape-font-specification:Roboto;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  723 + id="tspan22629">feedback</tspan></text>
  724 + <text
  725 + xml:space="preserve"
  726 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:6.08541679px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  727 + x="695.78613"
  728 + y="-29.855127"
  729 + id="text4562"
  730 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  731 + inkscape:export-xdpi="59.993629"
  732 + inkscape:export-ydpi="59.993629"><tspan
  733 + sodipodi:role="line"
  734 + id="tspan4560"
  735 + x="695.78613"
  736 + y="-29.855127"
  737 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px">Production</tspan><tspan
  738 + sodipodi:role="line"
  739 + x="695.78613"
  740 + y="-17.948877"
  741 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px"
  742 + id="tspan4566">Environment</tspan></text>
  743 + <rect
  744 + inkscape:export-ydpi="59.993629"
  745 + inkscape:export-xdpi="59.993629"
  746 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  747 + ry="10.5964"
  748 + y="-48.821728"
  749 + x="644.49396"
  750 + height="256.45126"
  751 + width="103.40431"
  752 + id="rect22631"
  753 + style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#554400;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:8.99999995, 3;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
  754 + rx="10.5964" />
  755 + <rect
  756 + rx="9.0033846"
  757 + inkscape:export-ydpi="59.993629"
  758 + inkscape:export-xdpi="59.993629"
  759 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  760 + style="opacity:1;vector-effect:none;fill:#e9ddaf;fill-opacity:1;stroke:none;stroke-width:0.29669365px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
  761 + id="rect1363"
  762 + width="87.690483"
  763 + height="199.57143"
  764 + x="652.35089"
  765 + y="-0.01368895"
  766 + ry="8.2461615" />
  767 + <text
  768 + inkscape:export-ydpi="59.993629"
  769 + inkscape:export-xdpi="59.993629"
  770 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  771 + id="text22641"
  772 + y="88.349464"
  773 + x="696.08453"
  774 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:17.63888931px;line-height:6.08541679px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  775 + xml:space="preserve"><tspan
  776 + id="tspan22639"
  777 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;line-height:15.875px;font-family:Roboto;-inkscape-font-specification:Roboto;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  778 + y="88.349464"
  779 + x="696.08453"
  780 + sodipodi:role="line">New</tspan><tspan
  781 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;line-height:15.875px;font-family:Roboto;-inkscape-font-specification:Roboto;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  782 + y="104.22446"
  783 + x="696.08453"
  784 + sodipodi:role="line"
  785 + id="tspan22652">feature</tspan><tspan
  786 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;line-height:15.875px;font-family:Roboto;-inkscape-font-specification:Roboto;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  787 + y="120.09946"
  788 + x="696.08453"
  789 + sodipodi:role="line"
  790 + id="tspan22654">available</tspan></text>
  791 + <text
  792 + xml:space="preserve"
  793 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  794 + x="-39.728462"
  795 + y="-30.109127"
  796 + id="text4536"
  797 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  798 + inkscape:export-xdpi="59.993629"
  799 + inkscape:export-ydpi="59.993629"><tspan
  800 + sodipodi:role="line"
  801 + id="tspan4534"
  802 + x="-39.728462"
  803 + y="-30.109127"
  804 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px">Automated</tspan><tspan
  805 + sodipodi:role="line"
  806 + x="-39.728462"
  807 + y="-18.202877"
  808 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px"
  809 + id="tspan4538">testing</tspan></text>
  810 + <rect
  811 + style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#554400;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:9.00000005, 3.00000005;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
  812 + id="rect19358"
  813 + width="132.13049"
  814 + height="256.45126"
  815 + x="-103.32832"
  816 + y="-48.821728"
  817 + ry="10.5964"
  818 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  819 + inkscape:export-xdpi="59.993629"
  820 + inkscape:export-ydpi="59.993629"
  821 + rx="10.5964" />
  822 + <rect
  823 + style="opacity:1;vector-effect:none;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.26458335px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
  824 + id="rect465"
  825 + width="86.410423"
  826 + height="204.74899"
  827 + x="-97.82"
  828 + y="-3.4685135"
  829 + ry="9.91994"
  830 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  831 + inkscape:export-xdpi="59.993629"
  832 + inkscape:export-ydpi="59.993629"
  833 + rx="9.9199409" />
  834 + <g
  835 + id="g738"
  836 + transform="translate(1.5243757)"
  837 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  838 + inkscape:export-xdpi="59.993629"
  839 + inkscape:export-ydpi="59.993629">
  840 + <rect
  841 + style="opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
  842 + id="rect270"
  843 + width="79.984833"
  844 + height="38.061478"
  845 + x="-96.131584"
  846 + y="-0.14233224"
  847 + ry="9.91994"
  848 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  849 + inkscape:export-xdpi="293.84"
  850 + inkscape:export-ydpi="293.84"
  851 + rx="9.91994" />
  852 + <text
  853 + xml:space="preserve"
  854 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.74834156px;line-height:5.03029633px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  855 + x="-56.254425"
  856 + y="17.063866"
  857 + id="text274"
  858 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  859 + inkscape:export-xdpi="293.84"
  860 + inkscape:export-ydpi="293.84"><tspan
  861 + id="tspan311"
  862 + sodipodi:role="line"
  863 + x="-56.254425"
  864 + y="17.063866"
  865 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px">System 1</tspan><tspan
  866 + id="tspan315"
  867 + sodipodi:role="line"
  868 + x="-56.254425"
  869 + y="29.674088"
  870 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px">unit tests</tspan></text>
  871 + </g>
  872 + <rect
  873 + rx="9.91994"
  874 + style="opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
  875 + id="rect323"
  876 + width="79.984833"
  877 + height="38.061478"
  878 + x="-94.607208"
  879 + y="41.982311"
  880 + ry="9.91994"
  881 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  882 + inkscape:export-xdpi="59.993629"
  883 + inkscape:export-ydpi="59.993629" />
  884 + <text
  885 + xml:space="preserve"
  886 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.74834156px;line-height:5.03029633px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  887 + x="-54.730049"
  888 + y="59.188511"
  889 + id="text329"
  890 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  891 + inkscape:export-xdpi="59.993629"
  892 + inkscape:export-ydpi="59.993629"><tspan
  893 + id="tspan325"
  894 + sodipodi:role="line"
  895 + x="-54.730049"
  896 + y="59.188511"
  897 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px">System 2</tspan><tspan
  898 + id="tspan327"
  899 + sodipodi:role="line"
  900 + x="-54.730049"
  901 + y="71.798729"
  902 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px">unit tests</tspan></text>
  903 + <rect
  904 + rx="9.91994"
  905 + inkscape:export-ydpi="59.993629"
  906 + inkscape:export-xdpi="59.993629"
  907 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  908 + ry="9.91994"
  909 + y="84.106926"
  910 + x="-94.607208"
  911 + height="38.061478"
  912 + width="79.984833"
  913 + id="rect333"
  914 + style="opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
  915 + <text
  916 + inkscape:export-ydpi="59.993629"
  917 + inkscape:export-xdpi="59.993629"
  918 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  919 + id="text339"
  920 + y="101.31312"
  921 + x="-54.730049"
  922 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.74834156px;line-height:5.03029633px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  923 + xml:space="preserve"><tspan
  924 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px"
  925 + y="101.31312"
  926 + x="-54.730049"
  927 + sodipodi:role="line"
  928 + id="tspan4197">System 3</tspan><tspan
  929 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px"
  930 + y="113.92334"
  931 + x="-54.730049"
  932 + sodipodi:role="line"
  933 + id="tspan337">unit tests</tspan></text>
  934 + <rect
  935 + rx="9.91994"
  936 + style="opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
  937 + id="rect343"
  938 + width="79.984833"
  939 + height="38.061478"
  940 + x="-94.607208"
  941 + y="126.23154"
  942 + ry="9.91994"
  943 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  944 + inkscape:export-xdpi="59.993629"
  945 + inkscape:export-ydpi="59.993629" />
  946 + <text
  947 + xml:space="preserve"
  948 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.74834156px;line-height:5.03029633px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  949 + x="-54.730049"
  950 + y="143.43774"
  951 + id="text349"
  952 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  953 + inkscape:export-xdpi="59.993629"
  954 + inkscape:export-ydpi="59.993629"><tspan
  955 + id="tspan345"
  956 + sodipodi:role="line"
  957 + x="-54.730049"
  958 + y="143.43774"
  959 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px">System 4</tspan><tspan
  960 + id="tspan347"
  961 + sodipodi:role="line"
  962 + x="-54.730049"
  963 + y="156.04796"
  964 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px">unit tests</tspan></text>
  965 + <rect
  966 + rx="9.9199409"
  967 + inkscape:export-ydpi="59.993629"
  968 + inkscape:export-xdpi="59.993629"
  969 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  970 + ry="9.91994"
  971 + y="-3.4685135"
  972 + x="-9.6003361"
  973 + height="204"
  974 + width="33.493755"
  975 + id="rect479"
  976 + style="opacity:1;vector-effect:none;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.26458335px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
  977 + <text
  978 + xml:space="preserve"
  979 + style="font-style:normal;font-weight:normal;font-size:3.30729151px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  980 + x="-132.01781"
  981 + y="10.588192"
  982 + id="text483"
  983 + transform="rotate(-90)"
  984 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  985 + inkscape:export-xdpi="59.993629"
  986 + inkscape:export-ydpi="59.993629"><tspan
  987 + sodipodi:role="line"
  988 + id="tspan481"
  989 + x="-132.01781"
  990 + y="10.588192"
  991 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;font-family:Roboto;-inkscape-font-specification:Roboto;stroke-width:0.26458332px">Plugin tests</tspan></text>
  992 + <flowRoot
  993 + xml:space="preserve"
  994 + id="flowRoot377-8"
  995 + style="font-style:normal;font-weight:normal;font-size:12.5px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.29665077px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  996 + transform="matrix(0,0.20405135,0.20405135,0,-237.01334,447.38408)"
  997 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  998 + inkscape:export-xdpi="59.993629"
  999 + inkscape:export-ydpi="59.993629"><flowRegion
  1000 + style="stroke-width:1.29665077px"
  1001 + id="flowRegion373-1"><rect
  1002 + style="stroke-width:1.29665077px"
  1003 + id="rect371-0"
  1004 + width="222.85715"
  1005 + height="205.71429"
  1006 + x="-1328.5714"
  1007 + y="868.23395" /></flowRegion><flowPara
  1008 + id="flowPara375-5"
  1009 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:85.33333588px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';stroke-width:1.29665077px">...</flowPara></flowRoot> <path
  1010 + inkscape:export-ydpi="59.993629"
  1011 + inkscape:export-xdpi="59.993629"
  1012 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1013 + sodipodi:nodetypes="ccc"
  1014 + style="fill:none;fill-rule:evenodd;stroke:#c66e00;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.00000005, 1.00000004999999992;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker2712)"
  1015 + d="M -297.56291,75.785663 V 58.605335 h 45.91193"
  1016 + id="path505"
  1017 + inkscape:connector-curvature="0" />
  1018 + <path
  1019 + inkscape:export-ydpi="293.84"
  1020 + inkscape:export-xdpi="293.84"
  1021 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1022 + sodipodi:nodetypes="ccc"
  1023 + style="fill:none;fill-rule:evenodd;stroke:#c66e00;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.00000007, 1.00000004;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker5298)"
  1024 + d="M -324.68247,86.939177 V 142.9719 h 72.49512"
  1025 + id="path507"
  1026 + inkscape:connector-curvature="0" />
  1027 + <path
  1028 + inkscape:connector-curvature="0"
  1029 + id="path509"
  1030 + d="m -297.56291,86.939177 v 17.180333 h 45.91193"
  1031 + style="fill:none;fill-rule:evenodd;stroke:#c66e00;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.00000005, 1.00000004999999992;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker2874)"
  1032 + sodipodi:nodetypes="ccc"
  1033 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1034 + inkscape:export-xdpi="293.84"
  1035 + inkscape:export-ydpi="293.84" />
  1036 + <g
  1037 + id="g258-0"
  1038 + transform="matrix(0.95321363,0,0,0.95321363,-128.68254,61.598651)"
  1039 + style="stroke-width:1.04908276"
  1040 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1041 + inkscape:export-xdpi="59.993629"
  1042 + inkscape:export-ydpi="59.993629">
  1043 + <rect
  1044 + inkscape:export-ydpi="293.84"
  1045 + inkscape:export-xdpi="293.84"
  1046 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1047 + ry="6.6633935"
  1048 + y="7.6060753"
  1049 + x="-237.8222"
  1050 + height="25.566545"
  1051 + width="83.910713"
  1052 + id="rect4664-2"
  1053 + style="opacity:1;vector-effect:none;fill:#b7bec8;fill-opacity:1;stroke:none;stroke-width:0.2775698px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
  1054 + rx="6.6633935" />
  1055 + <text
  1056 + inkscape:export-ydpi="293.84"
  1057 + inkscape:export-xdpi="293.84"
  1058 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1059 + id="text4510-5"
  1060 + y="25.089836"
  1061 + x="-212.25964"
  1062 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.17773438px;line-height:5.27719736px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.2775698px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  1063 + xml:space="preserve"><tspan
  1064 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;font-family:Roboto;-inkscape-font-specification:Roboto;stroke-width:0.2775698px"
  1065 + y="25.089836"
  1066 + x="-212.25964"
  1067 + id="tspan4508-8"
  1068 + sodipodi:role="line">Colab</tspan></text>
  1069 + </g>
  1070 + <rect
  1071 + rx="10.5964"
  1072 + inkscape:export-ydpi="59.993629"
  1073 + inkscape:export-xdpi="59.993629"
  1074 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1075 + ry="10.5964"
  1076 + y="-48.821728"
  1077 + x="-247.14754"
  1078 + height="256.45126"
  1079 + width="103.40431"
  1080 + id="rect15120"
  1081 + style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#554400;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:8.99999995, 3;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
  1082 + <g
  1083 + id="g258"
  1084 + transform="matrix(0.95321363,0,0,0.95321363,-5.4136992,-0.54699733)"
  1085 + style="stroke-width:1.04908276"
  1086 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1087 + inkscape:export-xdpi="59.993629"
  1088 + inkscape:export-ydpi="59.993629">
  1089 + <rect
  1090 + inkscape:export-ydpi="293.84"
  1091 + inkscape:export-xdpi="293.84"
  1092 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1093 + ry="6.6633935"
  1094 + y="7.6060753"
  1095 + x="-237.8222"
  1096 + height="25.566545"
  1097 + width="83.910713"
  1098 + id="rect4664"
  1099 + style="opacity:1;vector-effect:none;fill:#b7bec8;fill-opacity:1;stroke:none;stroke-width:0.2775698px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
  1100 + rx="6.6633935" />
  1101 + <text
  1102 + inkscape:export-ydpi="293.84"
  1103 + inkscape:export-xdpi="293.84"
  1104 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1105 + id="text4510"
  1106 + y="25.089836"
  1107 + x="-212.25964"
  1108 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.17773438px;line-height:5.27719736px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.2775698px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  1109 + xml:space="preserve"><tspan
  1110 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;font-family:Roboto;-inkscape-font-specification:Roboto;stroke-width:0.2775698px"
  1111 + y="25.089836"
  1112 + x="-212.25964"
  1113 + id="tspan4508"
  1114 + sodipodi:role="line">Colab</tspan></text>
  1115 + </g>
  1116 + <text
  1117 + xml:space="preserve"
  1118 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  1119 + x="-196.59196"
  1120 + y="-30.109127"
  1121 + id="text4530"
  1122 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1123 + inkscape:export-xdpi="59.993629"
  1124 + inkscape:export-ydpi="59.993629"><tspan
  1125 + sodipodi:role="line"
  1126 + id="tspan4528"
  1127 + x="-196.59196"
  1128 + y="-30.109127"
  1129 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px">Implemented</tspan><tspan
  1130 + sodipodi:role="line"
  1131 + x="-196.59196"
  1132 + y="-18.202877"
  1133 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px"
  1134 + id="tspan4532">Code</tspan></text>
  1135 + <flowRoot
  1136 + xml:space="preserve"
  1137 + id="flowRoot377"
  1138 + style="font-style:normal;font-weight:normal;font-size:12.5px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.29665077px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  1139 + transform="matrix(0,0.20405135,0.20405135,0,-378.94618,447.38408)"
  1140 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1141 + inkscape:export-xdpi="59.993629"
  1142 + inkscape:export-ydpi="59.993629"><flowRegion
  1143 + style="stroke-width:1.29665077px"
  1144 + id="flowRegion373"><rect
  1145 + style="stroke-width:1.29665077px"
  1146 + id="rect371"
  1147 + width="222.85715"
  1148 + height="205.71429"
  1149 + x="-1328.5714"
  1150 + y="868.23395" /></flowRegion><flowPara
  1151 + id="flowPara375"
  1152 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:85.33333588px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';stroke-width:1.29665077px">...</flowPara></flowRoot> <flowRoot
  1153 + transform="matrix(0,0.20405135,0.20405135,0,-378.94618,447.38408)"
  1154 + style="font-style:normal;font-weight:normal;font-size:12.5px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.29665077px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  1155 + id="flowRoot491"
  1156 + xml:space="preserve"
  1157 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1158 + inkscape:export-xdpi="59.993629"
  1159 + inkscape:export-ydpi="59.993629"><flowRegion
  1160 + id="flowRegion487"
  1161 + style="stroke-width:1.29665077px"><rect
  1162 + y="868.23395"
  1163 + x="-1328.5714"
  1164 + height="205.71429"
  1165 + width="222.85715"
  1166 + id="rect485"
  1167 + style="stroke-width:1.29665077px" /></flowRegion><flowPara
  1168 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:85.33333588px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';stroke-width:1.29665077px"
  1169 + id="flowPara489">...</flowPara></flowRoot> <rect
  1170 + rx="6.3516374"
  1171 + inkscape:export-ydpi="59.993629"
  1172 + inkscape:export-xdpi="59.993629"
  1173 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1174 + ry="6.3516374"
  1175 + y="48.827862"
  1176 + x="-232.10907"
  1177 + height="24.37038"
  1178 + width="79.984833"
  1179 + id="rect187"
  1180 + style="opacity:1;vector-effect:none;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
  1181 + <text
  1182 + inkscape:export-ydpi="59.993629"
  1183 + inkscape:export-xdpi="59.993629"
  1184 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1185 + id="text191"
  1186 + y="64.51088"
  1187 + x="-217.0757"
  1188 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.74834156px;line-height:5.03029633px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  1189 + xml:space="preserve"><tspan
  1190 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;font-family:Roboto;-inkscape-font-specification:Roboto;stroke-width:0.26458332px"
  1191 + y="64.51088"
  1192 + x="-217.0757"
  1193 + id="tspan189"
  1194 + sodipodi:role="line">System 2</tspan></text>
  1195 + <rect
  1196 + rx="6.3516374"
  1197 + style="opacity:1;vector-effect:none;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
  1198 + id="rect195"
  1199 + width="79.984833"
  1200 + height="24.37038"
  1201 + x="-232.10907"
  1202 + y="90.952477"
  1203 + ry="6.3516374"
  1204 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1205 + inkscape:export-xdpi="59.993629"
  1206 + inkscape:export-ydpi="59.993629" />
  1207 + <text
  1208 + xml:space="preserve"
  1209 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.74834156px;line-height:5.03029633px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  1210 + x="-218.08525"
  1211 + y="106.6355"
  1212 + id="text199"
  1213 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1214 + inkscape:export-xdpi="59.993629"
  1215 + inkscape:export-ydpi="59.993629"><tspan
  1216 + sodipodi:role="line"
  1217 + id="tspan197"
  1218 + x="-218.08525"
  1219 + y="106.6355"
  1220 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;font-family:Roboto;-inkscape-font-specification:Roboto;stroke-width:0.26458332px">System 3</tspan></text>
  1221 + <rect
  1222 + rx="6.3516374"
  1223 + inkscape:export-ydpi="59.993629"
  1224 + inkscape:export-xdpi="59.993629"
  1225 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1226 + ry="6.3516374"
  1227 + y="133.07709"
  1228 + x="-232.10907"
  1229 + height="24.37038"
  1230 + width="79.984833"
  1231 + id="rect244"
  1232 + style="opacity:1;vector-effect:none;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
  1233 + <text
  1234 + inkscape:export-ydpi="59.993629"
  1235 + inkscape:export-xdpi="59.993629"
  1236 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1237 + id="text248"
  1238 + y="149.27576"
  1239 + x="-217.43069"
  1240 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.74834156px;line-height:5.03029633px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  1241 + xml:space="preserve"><tspan
  1242 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;font-family:Roboto;-inkscape-font-specification:Roboto;stroke-width:0.26458332px"
  1243 + y="149.27576"
  1244 + x="-217.43069"
  1245 + id="tspan246"
  1246 + sodipodi:role="line">System 4</tspan></text>
  1247 + <g
  1248 + id="g875"
  1249 + transform="translate(4.4504802e-6)"
  1250 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1251 + inkscape:export-xdpi="59.993629"
  1252 + inkscape:export-ydpi="59.993629">
  1253 + <rect
  1254 + rx="6.3516374"
  1255 + style="opacity:1;vector-effect:none;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
  1256 + id="rect515"
  1257 + width="79.984833"
  1258 + height="24.37038"
  1259 + x="-232.10907"
  1260 + y="6.703217"
  1261 + ry="6.3516374"
  1262 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1263 + inkscape:export-xdpi="293.84"
  1264 + inkscape:export-ydpi="293.84" />
  1265 + <text
  1266 + xml:space="preserve"
  1267 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.74834156px;line-height:5.03029633px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  1268 + x="-216.36026"
  1269 + y="22.839809"
  1270 + id="text519"
  1271 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1272 + inkscape:export-xdpi="293.84"
  1273 + inkscape:export-ydpi="293.84"><tspan
  1274 + sodipodi:role="line"
  1275 + id="tspan517"
  1276 + x="-216.36026"
  1277 + y="22.839809"
  1278 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;font-family:Roboto;-inkscape-font-specification:Roboto;stroke-width:0.26458332px">System 1</tspan></text>
  1279 + </g>
  1280 + <rect
  1281 + inkscape:export-ydpi="59.993629"
  1282 + inkscape:export-xdpi="59.993629"
  1283 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1284 + ry="6.3516374"
  1285 + y="68.848862"
  1286 + x="-355.37796"
  1287 + height="24.37038"
  1288 + width="79.984833"
  1289 + id="rect515-1"
  1290 + style="opacity:1;vector-effect:none;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
  1291 + rx="6.3516374" />
  1292 + <text
  1293 + inkscape:export-ydpi="59.993629"
  1294 + inkscape:export-xdpi="59.993629"
  1295 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1296 + id="text519-6"
  1297 + y="85.278183"
  1298 + x="-336.07419"
  1299 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.74834156px;line-height:5.03029633px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  1300 + xml:space="preserve"><tspan
  1301 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;font-family:Roboto;-inkscape-font-specification:Roboto;stroke-width:0.26458332px"
  1302 + y="85.278183"
  1303 + x="-336.07419"
  1304 + id="tspan517-9"
  1305 + sodipodi:role="line">Feature</tspan></text>
  1306 + <text
  1307 + xml:space="preserve"
  1308 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  1309 + x="120.67804"
  1310 + y="-29.855127"
  1311 + id="text4542"
  1312 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1313 + inkscape:export-xdpi="59.993629"
  1314 + inkscape:export-ydpi="59.993629"><tspan
  1315 + sodipodi:role="line"
  1316 + id="tspan4540"
  1317 + x="120.67804"
  1318 + y="-29.855127"
  1319 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px">Preparing</tspan><tspan
  1320 + sodipodi:role="line"
  1321 + x="120.67804"
  1322 + y="-17.948877"
  1323 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10.58333302px;line-height:11.90625px;font-family:Courier;-inkscape-font-specification:'Courier, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px"
  1324 + id="tspan4544">new Release</tspan></text>
  1325 + <rect
  1326 + inkscape:export-ydpi="59.993629"
  1327 + inkscape:export-xdpi="59.993629"
  1328 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1329 + ry="10.5964"
  1330 + y="-48.821728"
  1331 + x="69.217072"
  1332 + height="256.45126"
  1333 + width="103.40431"
  1334 + id="rect20220"
  1335 + style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#554400;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:8.99999995, 3;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
  1336 + rx="10.5964" />
  1337 + <flowRoot
  1338 + xml:space="preserve"
  1339 + id="flowRoot377-1"
  1340 + style="font-style:normal;font-weight:normal;font-size:12.5px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.29665077px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  1341 + transform="matrix(0,0.20405135,0.20405135,0,-59.435038,447.38408)"
  1342 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1343 + inkscape:export-xdpi="59.993629"
  1344 + inkscape:export-ydpi="59.993629"><flowRegion
  1345 + style="stroke-width:1.29665077px"
  1346 + id="flowRegion373-9"><rect
  1347 + style="stroke-width:1.29665077px"
  1348 + id="rect371-9"
  1349 + width="222.85715"
  1350 + height="205.71429"
  1351 + x="-1328.5714"
  1352 + y="868.23395" /></flowRegion><flowPara
  1353 + id="flowPara375-3"
  1354 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:85.33333588px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';stroke-width:1.29665077px">...</flowPara></flowRoot> <rect
  1355 + style="opacity:1;vector-effect:none;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
  1356 + id="rect740"
  1357 + width="79.984833"
  1358 + height="38.061478"
  1359 + x="79.644897"
  1360 + y="-0.14233224"
  1361 + ry="9.91994"
  1362 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1363 + inkscape:export-xdpi="59.993629"
  1364 + inkscape:export-ydpi="59.993629"
  1365 + rx="9.91994" />
  1366 + <text
  1367 + xml:space="preserve"
  1368 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.74834156px;line-height:5.03029633px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  1369 + x="119.52205"
  1370 + y="17.063866"
  1371 + id="text746"
  1372 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1373 + inkscape:export-xdpi="59.993629"
  1374 + inkscape:export-ydpi="59.993629"><tspan
  1375 + id="tspan742"
  1376 + sodipodi:role="line"
  1377 + x="119.52205"
  1378 + y="17.063866"
  1379 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px">System 1</tspan><tspan
  1380 + id="tspan744"
  1381 + sodipodi:role="line"
  1382 + x="119.52205"
  1383 + y="29.674088"
  1384 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px">release</tspan></text>
  1385 + <rect
  1386 + rx="9.91994"
  1387 + inkscape:export-ydpi="59.993629"
  1388 + inkscape:export-xdpi="59.993629"
  1389 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1390 + ry="9.91994"
  1391 + y="41.982311"
  1392 + x="79.644897"
  1393 + height="38.061478"
  1394 + width="79.984833"
  1395 + id="rect814"
  1396 + style="opacity:1;vector-effect:none;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
  1397 + <text
  1398 + inkscape:export-ydpi="59.993629"
  1399 + inkscape:export-xdpi="59.993629"
  1400 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1401 + id="text820"
  1402 + y="59.188511"
  1403 + x="119.52205"
  1404 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.74834156px;line-height:5.03029633px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  1405 + xml:space="preserve"><tspan
  1406 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px"
  1407 + y="59.188511"
  1408 + x="119.52205"
  1409 + sodipodi:role="line"
  1410 + id="tspan816">System 2</tspan><tspan
  1411 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px"
  1412 + y="71.798729"
  1413 + x="119.52205"
  1414 + sodipodi:role="line"
  1415 + id="tspan818">release</tspan></text>
  1416 + <rect
  1417 + style="opacity:1;vector-effect:none;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
  1418 + id="rect824"
  1419 + width="79.984833"
  1420 + height="38.061478"
  1421 + x="79.644897"
  1422 + y="84.106926"
  1423 + ry="9.91994"
  1424 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1425 + inkscape:export-xdpi="59.993629"
  1426 + inkscape:export-ydpi="59.993629"
  1427 + rx="9.91994" />
  1428 + <text
  1429 + xml:space="preserve"
  1430 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.74834156px;line-height:5.03029633px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  1431 + x="119.52205"
  1432 + y="101.31313"
  1433 + id="text830"
  1434 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1435 + inkscape:export-xdpi="59.993629"
  1436 + inkscape:export-ydpi="59.993629"><tspan
  1437 + id="tspan826"
  1438 + sodipodi:role="line"
  1439 + x="119.52205"
  1440 + y="101.31313"
  1441 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px">System 3</tspan><tspan
  1442 + id="tspan828"
  1443 + sodipodi:role="line"
  1444 + x="119.52205"
  1445 + y="113.92336"
  1446 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px">release</tspan></text>
  1447 + <rect
  1448 + rx="9.91994"
  1449 + inkscape:export-ydpi="59.993629"
  1450 + inkscape:export-xdpi="59.993629"
  1451 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1452 + ry="9.91994"
  1453 + y="126.23154"
  1454 + x="79.644897"
  1455 + height="38.061478"
  1456 + width="79.984833"
  1457 + id="rect834"
  1458 + style="opacity:1;vector-effect:none;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
  1459 + <text
  1460 + inkscape:export-ydpi="59.993629"
  1461 + inkscape:export-xdpi="59.993629"
  1462 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1463 + id="text840"
  1464 + y="143.43773"
  1465 + x="119.52205"
  1466 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.74834156px;line-height:5.03029633px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  1467 + xml:space="preserve"><tspan
  1468 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px"
  1469 + y="143.43773"
  1470 + x="119.52205"
  1471 + sodipodi:role="line"
  1472 + id="tspan836">System 4</tspan><tspan
  1473 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.10581303px;line-height:12.61022186px;font-family:Roboto;-inkscape-font-specification:Roboto;text-align:center;text-anchor:middle;stroke-width:0.26458332px"
  1474 + y="156.04794"
  1475 + x="119.52205"
  1476 + sodipodi:role="line"
  1477 + id="tspan838">release</tspan></text>
  1478 + <path
  1479 + inkscape:connector-curvature="0"
  1480 + id="path13368"
  1481 + d="M 31.529599,18.906023 H 65.042642"
  1482 + style="fill:none;fill-rule:evenodd;stroke:#c66e00;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.00000006, 1.00000003000000004;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker1280);fill-opacity:1"
  1483 + sodipodi:nodetypes="cc"
  1484 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1485 + inkscape:export-xdpi="59.993629"
  1486 + inkscape:export-ydpi="59.993629" />
  1487 + <path
  1488 + inkscape:export-ydpi="59.993629"
  1489 + inkscape:export-xdpi="59.993629"
  1490 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1491 + sodipodi:nodetypes="cc"
  1492 + style="fill:#c66e00;fill-rule:evenodd;stroke:#c66e00;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.00000006, 1.00000003000000004;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker2214);fill-opacity:1"
  1493 + d="M 31.529599,61.030667 H 65.042642"
  1494 + id="path914"
  1495 + inkscape:connector-curvature="0" />
  1496 + <path
  1497 + inkscape:connector-curvature="0"
  1498 + id="path916"
  1499 + d="M 31.529599,103.15528 H 65.042642"
  1500 + style="fill:none;fill-rule:evenodd;stroke:#c66e00;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.00000006, 1.00000003000000004;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker2362)"
  1501 + sodipodi:nodetypes="cc"
  1502 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1503 + inkscape:export-xdpi="59.993629"
  1504 + inkscape:export-ydpi="59.993629" />
  1505 + <path
  1506 + inkscape:export-ydpi="59.993629"
  1507 + inkscape:export-xdpi="59.993629"
  1508 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1509 + sodipodi:nodetypes="cc"
  1510 + style="fill:#c66e00;fill-rule:evenodd;stroke:#c66e00;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.00000006, 1.00000003000000004;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker13378);fill-opacity:1"
  1511 + d="M 31.529599,145.27989 H 65.042642"
  1512 + id="path918"
  1513 + inkscape:connector-curvature="0" />
  1514 + <g
  1515 + id="g1184"
  1516 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1517 + inkscape:export-xdpi="59.993629"
  1518 + inkscape:export-ydpi="59.993629">
  1519 + <path
  1520 + inkscape:export-ydpi="293.84"
  1521 + inkscape:export-xdpi="293.84"
  1522 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1523 + inkscape:connector-curvature="0"
  1524 + id="path12618"
  1525 + d="m -140.42752,18.906023 h 32.01688"
  1526 + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622)"
  1527 + sodipodi:nodetypes="cc" />
  1528 + <path
  1529 + sodipodi:nodetypes="cc"
  1530 + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622)"
  1531 + d="m -140.42752,61.030667 h 32.01688"
  1532 + id="path638"
  1533 + inkscape:connector-curvature="0"
  1534 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1535 + inkscape:export-xdpi="293.84"
  1536 + inkscape:export-ydpi="293.84" />
  1537 + <path
  1538 + inkscape:export-ydpi="293.84"
  1539 + inkscape:export-xdpi="293.84"
  1540 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1541 + inkscape:connector-curvature="0"
  1542 + id="path640"
  1543 + d="m -140.42752,103.15528 h 32.01688"
  1544 + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622)"
  1545 + sodipodi:nodetypes="cc" />
  1546 + <path
  1547 + sodipodi:nodetypes="cc"
  1548 + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622)"
  1549 + d="m -140.42752,145.27989 h 32.01688"
  1550 + id="path642"
  1551 + inkscape:connector-curvature="0"
  1552 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1553 + inkscape:export-xdpi="293.84"
  1554 + inkscape:export-ydpi="293.84" />
  1555 + <path
  1556 + sodipodi:nodetypes="cc"
  1557 + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622)"
  1558 + d="m -140.42752,18.906023 h 32.01688"
  1559 + id="path1050"
  1560 + inkscape:connector-curvature="0"
  1561 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1562 + inkscape:export-xdpi="293.84"
  1563 + inkscape:export-ydpi="293.84" />
  1564 + <path
  1565 + inkscape:export-ydpi="293.84"
  1566 + inkscape:export-xdpi="293.84"
  1567 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1568 + inkscape:connector-curvature="0"
  1569 + id="path1052"
  1570 + d="m -140.42752,61.030667 h 32.01688"
  1571 + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622)"
  1572 + sodipodi:nodetypes="cc" />
  1573 + <path
  1574 + sodipodi:nodetypes="cc"
  1575 + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622)"
  1576 + d="m -140.42752,103.15528 h 32.01688"
  1577 + id="path1054"
  1578 + inkscape:connector-curvature="0"
  1579 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1580 + inkscape:export-xdpi="293.84"
  1581 + inkscape:export-ydpi="293.84" />
  1582 + <path
  1583 + inkscape:export-ydpi="293.84"
  1584 + inkscape:export-xdpi="293.84"
  1585 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1586 + inkscape:connector-curvature="0"
  1587 + id="path1056"
  1588 + d="m -140.42752,145.27989 h 32.01688"
  1589 + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622)"
  1590 + sodipodi:nodetypes="cc" />
  1591 + </g>
  1592 + <g
  1593 + id="g1174"
  1594 + transform="translate(-7.4083337,-3.938397)"
  1595 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1596 + inkscape:export-xdpi="59.993629"
  1597 + inkscape:export-ydpi="59.993629">
  1598 + <path
  1599 + inkscape:export-ydpi="293.84"
  1600 + inkscape:export-xdpi="293.84"
  1601 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1602 + inkscape:connector-curvature="0"
  1603 + id="path12618-5"
  1604 + d="m 182.72714,22.844377 h 32.01688"
  1605 + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622-7)"
  1606 + sodipodi:nodetypes="cc" />
  1607 + <path
  1608 + sodipodi:nodetypes="cc"
  1609 + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622-7)"
  1610 + d="m 182.72714,64.969022 h 32.01688"
  1611 + id="path638-9"
  1612 + inkscape:connector-curvature="0"
  1613 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1614 + inkscape:export-xdpi="293.84"
  1615 + inkscape:export-ydpi="293.84" />
  1616 + <path
  1617 + inkscape:export-ydpi="293.84"
  1618 + inkscape:export-xdpi="293.84"
  1619 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1620 + inkscape:connector-curvature="0"
  1621 + id="path640-4"
  1622 + d="m 182.72714,107.09367 h 32.01688"
  1623 + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622-7)"
  1624 + sodipodi:nodetypes="cc" />
  1625 + <path
  1626 + sodipodi:nodetypes="cc"
  1627 + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622-7)"
  1628 + d="m 182.72714,149.21833 h 32.01688"
  1629 + id="path642-4"
  1630 + inkscape:connector-curvature="0"
  1631 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1632 + inkscape:export-xdpi="293.84"
  1633 + inkscape:export-ydpi="293.84" />
  1634 + <path
  1635 + sodipodi:nodetypes="cc"
  1636 + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622-7)"
  1637 + d="m 182.72714,22.844377 h 32.01688"
  1638 + id="path1050-2"
  1639 + inkscape:connector-curvature="0"
  1640 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1641 + inkscape:export-xdpi="293.84"
  1642 + inkscape:export-ydpi="293.84" />
  1643 + <path
  1644 + inkscape:export-ydpi="293.84"
  1645 + inkscape:export-xdpi="293.84"
  1646 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1647 + inkscape:connector-curvature="0"
  1648 + id="path1052-0"
  1649 + d="m 182.72714,64.969022 h 32.01688"
  1650 + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622-7)"
  1651 + sodipodi:nodetypes="cc" />
  1652 + <path
  1653 + sodipodi:nodetypes="cc"
  1654 + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622-7)"
  1655 + d="m 182.72714,107.09367 h 32.01688"
  1656 + id="path1054-0"
  1657 + inkscape:connector-curvature="0"
  1658 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1659 + inkscape:export-xdpi="293.84"
  1660 + inkscape:export-ydpi="293.84" />
  1661 + <path
  1662 + inkscape:export-ydpi="293.84"
  1663 + inkscape:export-xdpi="293.84"
  1664 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1665 + inkscape:connector-curvature="0"
  1666 + id="path1056-0"
  1667 + d="m 182.72714,149.21833 h 32.01688"
  1668 + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12622-7)"
  1669 + sodipodi:nodetypes="cc" />
  1670 + </g>
  1671 + <text
  1672 + xml:space="preserve"
  1673 + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:17.63888931px;line-height:6.08541679px;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  1674 + x="262.54721"
  1675 + y="88.349464"
  1676 + id="text4799"
  1677 + inkscape:export-filename="/home/siqueira/Documents/Code/articles/ieeeSW/releaseEng3/figures/pipeline_2.png"
  1678 + inkscape:export-xdpi="59.993629"
  1679 + inkscape:export-ydpi="59.993629"><tspan
  1680 + sodipodi:role="line"
  1681 + x="262.54721"
  1682 + y="88.349464"
  1683 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;line-height:15.875px;font-family:Roboto;-inkscape-font-specification:Roboto;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  1684 + id="tspan4806">Package</tspan><tspan
  1685 + sodipodi:role="line"
  1686 + x="262.54721"
  1687 + y="104.22446"
  1688 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.69999981px;line-height:15.875px;font-family:Roboto;-inkscape-font-specification:Roboto;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  1689 + id="tspan4810">Set</tspan></text>
  1690 + </g>
  1691 +</svg>