power_stencil 0.3.0 → 0.3.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0553232c716ddf2858efa77a0d9617ca39576d15
4
- data.tar.gz: cad65330d8a994849b940c519b008cdb9ba39990
3
+ metadata.gz: 1387471841811025d2ebdc21c23aec26f9341193
4
+ data.tar.gz: ff9722780a689f245baa21c3dbf5b5bef0a1024d
5
5
  SHA512:
6
- metadata.gz: 84ded250b7f0080a28e8d07a3fddad16b5a5fc4c220bf87f1a0b7591d9b68804f954e70a56b0844d43f924e9b8849457bf16cd4af39eec806080905a68908151
7
- data.tar.gz: 0be35290850eb3ada35a95a6278904a430d19d96d3fafc68ba81d3ea0018657bdd7baf95990f5abafffb69967e7244bd87965fb8323d8550446ce3e5c69e4299
6
+ metadata.gz: df95d43e7e99fd25fe57bbb3713fc5707b53a2f939c9734720cbcd9bca4f7d8dfaff61294db2e8e245b768ff93c737aa1b6e14da9f64cb7fe07f234f8061ec16
7
+ data.tar.gz: 24ba3ea0b87f0dd480250b5a4b32e6c8e1730396d6e0b43820f10d97bb1084f405df74a3fd9dcfec7aa96a813014427163aebbf1e15a112b9d72bf9f9188b45a
data/README.md CHANGED
@@ -24,7 +24,9 @@ PowerStencil
24
24
  `PowerStencil` proposes a radical approach on how to manage your shared configuration.
25
25
 
26
26
  Internally `PowerStencil` is composed of a data repository and a pretty standard templating flow to generate whatever is needed by your project or organization:
27
+
27
28
  ![simple-flow-image]
29
+
28
30
  Configuration is one of the most complex things to maintain, and anyone who participated in a large scale piece of software or documentation knows how complex it is to maintain, keep consistent and avoid duplication on the long run across the various projects that may share this configuration.
29
31
 
30
32
  `PowerStencil` provides **development and operations friendly workflows to fully manage the maintenance of a complex shared config** in order to generate anything you may want like _documentation_, _static sites_, _code_, _configuration_ for multiple tools..., while **avoiding duplication, and manage it like code** !
@@ -68,7 +70,7 @@ The `power_stencil` CLI provides a contextual help. You can start by:
68
70
  That will display a basic help:
69
71
 
70
72
  ```shell
71
- This is power_stencil. A powerful templating engine.
73
+ PowerStencil is the Swiss-army knife templating workflow for developers and ops.
72
74
  -- Options ---------------------------------------------------------------------
73
75
  -v, --verbose Displays extra runtime information.
74
76
  -h, --help Displays this help.
@@ -106,12 +108,20 @@ The program uses the standard paradigm of sub-commands (à-la-git), and each can
106
108
 
107
109
  ## Creating a `PowerStencil` project
108
110
 
109
- To create a new project, use the `init` sub-command. It works as you would expect. If you run it in an existing directory it will create the project here but if you want you can specify the directory where you want the project to be created:
111
+ To create a new project, use the `init` sub-command. It works as you would expect. If you run it in an existing directory it will create the project here but you can specify the directory where you want the project to be created (the path will be created provided you have the rights on the filesystem):
110
112
 
111
113
  $ power_stencil init --project-path /where/you/want
112
114
 
113
115
  The `--project-path` option can be applied to any sub-command, but à-la-git, once the project created if you are anywhere within the project tree, you don't need to specify the project path.
114
116
 
117
+ :information_source: The rest of this documentation will assume you are at the root of this created project.
118
+
119
+ :information_source: Of course, once you created a new project you should version it with Git:
120
+
121
+ $ git init
122
+ $ git commit -a -m 'Initial commit'
123
+
124
+
115
125
  ## `PowerStencil` project structure
116
126
 
117
127
  The structure of a brand new `PowerStencil` project is the following:
@@ -191,7 +191,7 @@ RAW ENTITIES
191
191
 
192
192
  The goal of this command is normally to check the validity of entities, but it brings as well extra information like if the entity is _buildable_ or even where it is stored in the repository.
193
193
 
194
- :information_source: You can notice that the `project_config` entity has no storage path, the reason being [it is not persisted](#default-entity-types).
194
+ :information_source: You can notice that the `project_config` entity has no storage path, the reason being [it is not persisted](#default-entity-types) in the entities repository (its content actually comes from config files outside of the repository).
195
195
 
196
196
  This command may show some extra information, for more complex entities. We will see that later on.
197
197
 
@@ -209,7 +209,7 @@ RAW ENTITIES
209
209
  - Status : Valid
210
210
  - Buildable : false
211
211
  ```
212
- Another possibility is to check a list of objects using a regular expression by using the `--regexp` option:
212
+ Another possibility is to check a list of objects using a regular expression (applied to the ID of an entity, ie `<entity_type</<entity_name>`) by using the `--regexp` option:
213
213
 
214
214
  ```shell
215
215
  $ power_stencil check base_ --regexp
@@ -555,7 +555,7 @@ class MyCustomEntity < PowerStencil::SystemEntityDefinitions::ProjectEntity
555
555
  field :my_custom_field
556
556
  end
557
557
  ```
558
- Then it means I can access the `my_custom_field` property in two different ways:
558
+ Then it means I can access the `my_custom_field` property in three different ways:
559
559
 
560
560
  ```ruby
561
561
  PowerStencil DSL> e = new_custom_entity name: :test_entity
@@ -568,8 +568,10 @@ PowerStencil DSL> e.my_custom_field
568
568
  => "foo"
569
569
  PowerStencil DSL> e.fields[:my_custom_field]
570
570
  => "foo"
571
+ PowerStencil DSL> e[:my_custom_field]
572
+ => "foo"
571
573
  ```
572
- :information_source: You can notice the `new_<entity_type>` DSL method which is a shortcut to create entities.
574
+ :information_source: You can notice the `new_<entity_type>` DSL method which is a shortcut to create entities (actually you have to use this DSL method and not create entities using its `<classname>.new`, because this DSL method on top of creating the entity, setup everything for persistence as well...).
573
575
 
574
576
  So you can see the field directive will actually create accessor methods for first level properties in the `#fields` Hash.
575
577
 
@@ -14,7 +14,7 @@ Example use cases
14
14
 
15
15
  # Overview
16
16
 
17
- Considering the genericity of the `PowerStencil`, it is a bit difficult to a scope for its usage. It's a bit like saying what you could do with a programming language.
17
+ Considering the genericity of the `PowerStencil` framework, it is a bit difficult to define a strict scope for its usage. It's a bit like wondering what you could do with a programming language.
18
18
 
19
19
  Neverthless, I will give two short ideas that should open you mind to things you could do with it.
20
20
 
@@ -102,7 +102,7 @@ Let's try to see to help:
102
102
 
103
103
  ```shell
104
104
  $ power_stencil --help
105
- This is power_stencil. A powerful templating engine.
105
+ PowerStencil is the Swiss-army knife templating workflow for developers and ops.
106
106
  -- Options ---------------------------------------------------------------------
107
107
  -v, --verbose Displays extra runtime information.
108
108
  -h, --help Displays this help.
@@ -165,6 +165,7 @@ $ power_stencil info
165
165
  But within the `PowerStencil` project, there is a place to create _templates-templates_ of your own: `.ps_projet/templates-templates/<entity_type>`.
166
166
 
167
167
  To summarize about templates and _templates-templates_:
168
+
168
169
  ![entity-creation-flow]
169
170
 
170
171
  :information_source: There is actually a third place where you could find entity types and _templates-templates_, this is within [plugins], but we will cover that in the [plugins] part...
@@ -66,7 +66,7 @@
66
66
  :summary: Bypasses command-line confirmations to the user
67
67
 
68
68
  :banner: |
69
- This is power_stencil. A powerful templating engine.
69
+ PowerStencil is the Swiss-army knife templating workflow for developers and ops.
70
70
 
71
71
  :subcommands:
72
72
  init:
@@ -50,8 +50,9 @@
50
50
 
51
51
  - Retrieve and manipulate entities using the `entities` hash.
52
52
  - Persist your changes using the `save` method on each entity.
53
- - Create new project or user entities using `new_<type>` and `user_new_<type>`
54
- methods (see `available_entity_types` for a list of possible types).
53
+ - Create new project or user entities using `new_<entity_type>` and
54
+ `user_new_<entity_type>` methods (see `available_entity_types` for a list of
55
+ possible types).
55
56
  - And of course, it is a fully fledged Ruby Pry REPL, so you can do anything
56
57
  you want...
57
58
 
@@ -11,9 +11,6 @@ module PowerStencil
11
11
 
12
12
 
13
13
  def execute
14
- if config.command_line_layer.extra_parameters.empty?
15
- raise PowerStencil::Error, 'Please specify something to build'
16
- end
17
14
 
18
15
  if config[:'supported-builds']
19
16
  project.engine.available_entities_hash.select do |_, klass|
@@ -24,6 +21,10 @@ module PowerStencil
24
21
  return
25
22
  end
26
23
 
24
+ if config.command_line_layer.extra_parameters.empty?
25
+ raise PowerStencil::Error, 'Please specify something to build'
26
+ end
27
+
27
28
  targets = targets_from_criteria analyse_extra_params, project.engine.root_universe
28
29
  raise PowerStencil::Error, 'No valid entity specified' if targets.empty?
29
30
  project.engine.build targets, fail_on_error: config[:'fail-on-error'], parallelized: config[:parallelized]
@@ -5,22 +5,28 @@ module PowerStencil
5
5
 
6
6
  include PowerStencil::Project::Paths
7
7
 
8
+ PROJECT_CONFIG_PRIORITY = 2000
9
+ USER_CONFIG_PRIORITY = 2010
10
+ PLUGIN_CONFIG_PRIORITY_MIN = 1000
11
+
8
12
  attr_reader :plugin_priority_count
9
13
 
14
+
10
15
  def load_project_specific_config
11
16
  # Optional config files should have less priority than the command line layer
12
- add_optional_config_layer project_versioned_config_file, 'versioned project config file', 70
13
- add_optional_config_layer project_personal_config_file, 'personal project config file', 900
17
+ add_optional_config_layer project_versioned_config_file, 'versioned project config file', PROJECT_CONFIG_PRIORITY
18
+ add_optional_config_layer project_personal_config_file, 'personal project config file', USER_CONFIG_PRIORITY
14
19
  end
15
20
 
21
+
16
22
  def add_plugin_config(plugin_name)
17
23
  yaml_file = plugin_config_specific_file plugin_name
18
24
  priority = if priority.nil?
19
- 200
25
+ PLUGIN_CONFIG_PRIORITY_MIN
20
26
  else
21
27
  plugin_priority_count + 1
22
28
  end
23
-
29
+ raise PowerStencil::Error, 'Too many plugins !!' if priority >= PROJECT_CONFIG_PRIORITY
24
30
  add_optional_config_layer yaml_file, "'#{plugin_name}' plugin specific config", priority
25
31
  @plugin_priority_count ||= 0
26
32
  @plugin_priority_count += 1
@@ -1,3 +1,3 @@
1
1
  module PowerStencil
2
- VERSION = '0.3.0'.freeze
2
+ VERSION = '0.3.5'.freeze
3
3
  end
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ['Laurent B.']
10
10
  spec.email = ['lbnetid+rb@gmail.com']
11
11
 
12
- spec.summary = %q{A powerful templating engine for CLI based test_project.}
13
- spec.description = %q{A powerful templating engine for CLI based test_project.}
12
+ spec.summary = %q{PowerStencil is the Swiss-army knife templating workflow for developers and ops.}
13
+ spec.description = %q{PowerStencil is the Swiss-army knife templating workflow for developers and ops.}
14
14
  spec.homepage = 'https://gitlab.com/tools4devops/power_stencil'
15
15
  spec.license = 'MIT'
16
16
 
@@ -29,4 +29,15 @@ Gem::Specification.new do |spec|
29
29
  spec.add_dependency 'dir_glob_ignore', '~> 0.3'
30
30
  spec.add_dependency 'universe_compiler', '~> 0.2', '>= 0.2.11'
31
31
  spec.add_dependency 'pry'
32
+
33
+ spec.post_install_message = %Q{
34
+ Thank you for installing PowerStencil #{PowerStencil::VERSION} !
35
+ From the command line you can run `power_stencil --help`
36
+ If your shell is not completing the command:
37
+ If you use rbenv: `rbenv rehash`
38
+ If you use zsh : `rehash`
39
+
40
+ Full documentation here : #{spec.homepage}/blob/master/README.md
41
+ Feel free to report issues: #{spec.homepage}/issues
42
+ }
32
43
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: power_stencil
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Laurent B.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-08-28 00:00:00.000000000 Z
11
+ date: 2019-08-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -120,7 +120,8 @@ dependencies:
120
120
  - - ">="
121
121
  - !ruby/object:Gem::Version
122
122
  version: '0'
123
- description: A powerful templating engine for CLI based test_project.
123
+ description: PowerStencil is the Swiss-army knife templating workflow for developers
124
+ and ops.
124
125
  email:
125
126
  - lbnetid+rb@gmail.com
126
127
  executables:
@@ -142,10 +143,8 @@ files:
142
143
  - doc/builds.md
143
144
  - doc/entities.md
144
145
  - doc/example_use_cases.md
145
- - doc/images/power-stencil-architecture.svg
146
146
  - doc/images/power-stencil-entity-build.svg
147
147
  - doc/images/power-stencil-entity-creation.svg
148
- - doc/images/power-stencil-project-overview.svg
149
148
  - doc/images/power-stencil-simple-flow.svg
150
149
  - doc/plugins.md
151
150
  - doc/templates.md
@@ -264,7 +263,11 @@ homepage: https://gitlab.com/tools4devops/power_stencil
264
263
  licenses:
265
264
  - MIT
266
265
  metadata: {}
267
- post_install_message:
266
+ post_install_message: "\nThank you for installing PowerStencil 0.3.5 !\nFrom the command
267
+ line you can run `power_stencil --help`\nIf your shell is not completing the command:\n
268
+ \ If you use rbenv: `rbenv rehash`\n If you use zsh : `rehash`\n\nFull documentation
269
+ here : https://gitlab.com/tools4devops/power_stencil/blob/master/README.md\nFeel
270
+ free to report issues: https://gitlab.com/tools4devops/power_stencil/issues\n "
268
271
  rdoc_options: []
269
272
  require_paths:
270
273
  - lib
@@ -283,5 +286,6 @@ rubyforge_project:
283
286
  rubygems_version: 2.5.1
284
287
  signing_key:
285
288
  specification_version: 4
286
- summary: A powerful templating engine for CLI based test_project.
289
+ summary: PowerStencil is the Swiss-army knife templating workflow for developers and
290
+ ops.
287
291
  test_files: []
@@ -1,151 +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="112.72662mm"
13
- height="118.79569mm"
14
- viewBox="0 0 112.72662 118.79569"
15
- version="1.1"
16
- id="svg862"
17
- inkscape:version="0.92.3 (2405546, 2018-03-11)"
18
- sodipodi:docname="power-stencil-architecture.svg">
19
- <title
20
- id="title1442">Power Stencil architecture</title>
21
- <defs
22
- id="defs856" />
23
- <sodipodi:namedview
24
- id="base"
25
- pagecolor="#ffffff"
26
- bordercolor="#666666"
27
- borderopacity="1.0"
28
- inkscape:pageopacity="0.0"
29
- inkscape:pageshadow="2"
30
- inkscape:zoom="1.4"
31
- inkscape:cx="240.91837"
32
- inkscape:cy="198.40629"
33
- inkscape:document-units="mm"
34
- inkscape:current-layer="layer1"
35
- showgrid="false"
36
- fit-margin-top="10"
37
- fit-margin-left="10"
38
- fit-margin-right="10"
39
- fit-margin-bottom="10"
40
- inkscape:window-width="1920"
41
- inkscape:window-height="1141"
42
- inkscape:window-x="0"
43
- inkscape:window-y="31"
44
- inkscape:window-maximized="1" />
45
- <metadata
46
- id="metadata859">
47
- <rdf:RDF>
48
- <cc:Work
49
- rdf:about="">
50
- <dc:format>image/svg+xml</dc:format>
51
- <dc:type
52
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
53
- <dc:title>Power Stencil architecture</dc:title>
54
- <dc:creator>
55
- <cc:Agent>
56
- <dc:title>L.Briais</dc:title>
57
- </cc:Agent>
58
- </dc:creator>
59
- </cc:Work>
60
- </rdf:RDF>
61
- </metadata>
62
- <g
63
- inkscape:label="Calque 1"
64
- inkscape:groupmode="layer"
65
- id="layer1"
66
- transform="translate(-48.940882,-20.579296)">
67
- <rect
68
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#6e6eaa;fill-opacity:0.83164984;fill-rule:evenodd;stroke:#4a5066;stroke-width:1.25484073;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
69
- id="rect1636"
70
- width="29.373297"
71
- height="97.540855"
72
- x="59.568302"
73
- y="31.206717" />
74
- <text
75
- xml:space="preserve"
76
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:5.64444447px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
77
- x="-107.70466"
78
- y="76.359215"
79
- id="text2102"
80
- transform="rotate(-90)"><tspan
81
- sodipodi:role="line"
82
- id="tspan2100"
83
- x="-107.70466"
84
- y="76.359215"
85
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:5.64444447px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;stroke-width:0.26458332px">Power Stencil CLI</tspan></text>
86
- <rect
87
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#98aa98;fill-opacity:0.83164984;fill-rule:evenodd;stroke:#4a5066;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
88
- id="rect2109"
89
- width="55.057526"
90
- height="27.528765"
91
- x="95.842705"
92
- y="31.807608" />
93
- <rect
94
- y="67.087189"
95
- x="95.575432"
96
- height="27.528765"
97
- width="55.057526"
98
- id="rect2111"
99
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#6a936a;fill-opacity:0.83137255;fill-rule:evenodd;stroke:#4a5066;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
100
- <rect
101
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#3d703d;fill-opacity:0.83137255;fill-rule:evenodd;stroke:#4a5066;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
102
- id="rect2113"
103
- width="55.057526"
104
- height="27.528765"
105
- x="96.109978"
106
- y="101.29768" />
107
- <text
108
- xml:space="preserve"
109
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:5.64444447px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
110
- x="123.36596"
111
- y="43.601395"
112
- id="text2102-7"><tspan
113
- sodipodi:role="line"
114
- id="tspan2100-2"
115
- x="123.36596"
116
- y="43.601395"
117
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:5.64444447px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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;fill:#ffffff;stroke-width:0.26458332px">Power Stencil</tspan><tspan
118
- sodipodi:role="line"
119
- x="123.36596"
120
- y="50.656952"
121
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:5.64444447px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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;fill:#ffffff;stroke-width:0.26458332px"
122
- id="tspan2140">Core processors</tspan></text>
123
- <text
124
- xml:space="preserve"
125
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:5.64444447px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
126
- x="123.08491"
127
- y="78.858925"
128
- id="text2102-7-6"><tspan
129
- sodipodi:role="line"
130
- x="123.08491"
131
- y="78.858925"
132
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:5.64444447px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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;fill:#ffffff;stroke-width:0.26458332px"
133
- id="tspan2140-6">Repository local</tspan><tspan
134
- sodipodi:role="line"
135
- x="123.08491"
136
- y="85.914482"
137
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:5.64444447px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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;fill:#ffffff;stroke-width:0.26458332px"
138
- id="tspan2165">plugins</tspan></text>
139
- <text
140
- xml:space="preserve"
141
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:5.64444447px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
142
- x="123.63324"
143
- y="116.59721"
144
- id="text2102-7-6-0"><tspan
145
- sodipodi:role="line"
146
- x="123.63324"
147
- y="116.59721"
148
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:5.64444447px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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;fill:#ffffff;stroke-width:0.26458332px"
149
- id="tspan2165-7">Gem plugins</tspan></text>
150
- </g>
151
- </svg>
@@ -1,2534 +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="186.06372mm"
13
- height="156.21736mm"
14
- viewBox="0 0 186.06372 156.21736"
15
- version="1.1"
16
- id="svg19758"
17
- inkscape:version="0.92.3 (2405546, 2018-03-11)"
18
- sodipodi:docname="power-stencil-project-overview.svg">
19
- <title
20
- id="title22078">Power Stencil project overview</title>
21
- <defs
22
- id="defs19752" />
23
- <sodipodi:namedview
24
- id="base"
25
- pagecolor="#ffffff"
26
- bordercolor="#666666"
27
- borderopacity="1.0"
28
- inkscape:pageopacity="0.0"
29
- inkscape:pageshadow="2"
30
- inkscape:zoom="0.7"
31
- inkscape:cx="271.23476"
32
- inkscape:cy="60.86677"
33
- inkscape:document-units="mm"
34
- inkscape:current-layer="layer1"
35
- showgrid="false"
36
- inkscape:window-width="1920"
37
- inkscape:window-height="1141"
38
- inkscape:window-x="0"
39
- inkscape:window-y="31"
40
- inkscape:window-maximized="1"
41
- fit-margin-top="10"
42
- fit-margin-left="10"
43
- fit-margin-right="10"
44
- fit-margin-bottom="10" />
45
- <metadata
46
- id="metadata19755">
47
- <rdf:RDF>
48
- <cc:Work
49
- rdf:about="">
50
- <dc:format>image/svg+xml</dc:format>
51
- <dc:type
52
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
53
- <dc:title>Power Stencil project overview</dc:title>
54
- <dc:creator>
55
- <cc:Agent>
56
- <dc:title>L.Briais</dc:title>
57
- </cc:Agent>
58
- </dc:creator>
59
- </cc:Work>
60
- </rdf:RDF>
61
- </metadata>
62
- <g
63
- inkscape:label="Calque 1"
64
- inkscape:groupmode="layer"
65
- id="layer1"
66
- transform="translate(139.90091,32.840825)">
67
- <g
68
- transform="translate(-43.607399,-65.455781)"
69
- id="g18645">
70
- <g
71
- transform="translate(-47.8179,123.28808)"
72
- id="g4462-0">
73
- <g
74
- id="g5299">
75
- <g
76
- transform="matrix(0.26458333,0,0,0.26458333,22.470457,15.635268)"
77
- id="g1232-3"
78
- style="fill:#808080">
79
- <g
80
- id="text-4"
81
- style="fill:#808080" />
82
- <g
83
- id="_x31_-9"
84
- style="fill:#808080" />
85
- <g
86
- id="_x32_-2"
87
- style="fill:#808080" />
88
- <g
89
- id="_x33__1_-7"
90
- style="fill:#808080" />
91
- <g
92
- id="_x34_-4"
93
- style="fill:#808080" />
94
- <g
95
- id="_x35_-2"
96
- style="fill:#808080" />
97
- <g
98
- id="_x36_-5"
99
- style="fill:#808080" />
100
- <g
101
- id="_x37_-2"
102
- style="fill:#808080" />
103
- <g
104
- id="_x38_-4"
105
- style="fill:#808080" />
106
- <g
107
- id="_x39_-4"
108
- style="fill:#808080" />
109
- <g
110
- id="_x31_0-3"
111
- style="fill:#808080" />
112
- <g
113
- id="_x31_1-86"
114
- style="fill:#808080" />
115
- <g
116
- id="_x31_2-0"
117
- style="fill:#808080" />
118
- <g
119
- id="_x31_3-8"
120
- style="fill:#808080" />
121
- <g
122
- id="_x31_4-9"
123
- style="fill:#808080" />
124
- <g
125
- id="_x31_5-2"
126
- style="fill:#808080" />
127
- <g
128
- id="_x31_6-2"
129
- style="fill:#808080" />
130
- <g
131
- id="_x31_7-3"
132
- style="fill:#808080" />
133
- <g
134
- id="_x31_8-1"
135
- style="fill:#808080" />
136
- <g
137
- id="_x31_9-83"
138
- style="fill:#808080" />
139
- <g
140
- id="_x32_0-4"
141
- style="fill:#808080" />
142
- <g
143
- id="_x32_1-2"
144
- style="fill:#808080" />
145
- <g
146
- id="_x32_2-2"
147
- style="fill:#808080" />
148
- <g
149
- id="_x32_3-4"
150
- style="fill:#808080" />
151
- <g
152
- id="_x32_4-5"
153
- style="fill:#808080" />
154
- <g
155
- id="_x32_5-17"
156
- style="fill:#808080" />
157
- <g
158
- id="_x32_6-5"
159
- style="fill:#808080" />
160
- <g
161
- id="_x32_7-7"
162
- style="fill:#808080" />
163
- <g
164
- id="_x32_8-1"
165
- style="fill:#808080" />
166
- <g
167
- id="_x32_9-6"
168
- style="fill:#808080" />
169
- <g
170
- id="_x33_0-9"
171
- style="fill:#808080" />
172
- <g
173
- id="_x33_1-8"
174
- style="fill:#808080" />
175
- <g
176
- id="_x33_2-1"
177
- style="fill:#808080" />
178
- <g
179
- id="_x33_3-33"
180
- style="fill:#808080" />
181
- <g
182
- id="_x33_4-3"
183
- style="fill:#808080" />
184
- <g
185
- id="_x33_5-7"
186
- style="fill:#808080" />
187
- <g
188
- id="_x33_6-9"
189
- style="fill:#808080" />
190
- <g
191
- id="_x33_7-8"
192
- style="fill:#808080" />
193
- <g
194
- id="_x33_8-6"
195
- style="fill:#808080" />
196
- <g
197
- id="_x33_9-7"
198
- style="fill:#808080" />
199
- <g
200
- id="_x34_0-0"
201
- style="fill:#808080" />
202
- <g
203
- id="_x34_1-4"
204
- style="fill:#808080" />
205
- <g
206
- id="_x34_2-8"
207
- style="fill:#808080" />
208
- <g
209
- id="_x34_3-4"
210
- style="fill:#808080" />
211
- <g
212
- id="_x34_4-8"
213
- style="fill:#808080" />
214
- <g
215
- id="_x34_5-1"
216
- style="fill:#808080" />
217
- <g
218
- id="_x34_6-6"
219
- style="fill:#808080" />
220
- <g
221
- id="_x34_7-8"
222
- style="fill:#808080" />
223
- <g
224
- id="_x34_8-5"
225
- style="fill:#808080" />
226
- <g
227
- id="_x34_9-2"
228
- style="fill:#808080" />
229
- <g
230
- id="_x35_0-1"
231
- style="fill:#808080" />
232
- <g
233
- id="_x35_1-9"
234
- style="fill:#808080" />
235
- <g
236
- id="_x35_2-9"
237
- style="fill:#808080" />
238
- <g
239
- id="_x35_3-6"
240
- style="fill:#808080" />
241
- <g
242
- id="_x35_4-0"
243
- style="fill:#808080" />
244
- <g
245
- id="_x35_5-6"
246
- style="fill:#808080" />
247
- <g
248
- id="_x35_6-49"
249
- style="fill:#808080" />
250
- <g
251
- id="_x35_7-9"
252
- style="fill:#808080" />
253
- <g
254
- id="_x35_8-0"
255
- style="fill:#808080" />
256
- <g
257
- id="_x35_9-8"
258
- style="fill:#808080" />
259
- <g
260
- id="_x36_0-9"
261
- style="fill:#808080" />
262
- <g
263
- id="_x36_1-3"
264
- style="fill:#808080" />
265
- <g
266
- id="_x36_2-1"
267
- style="fill:#808080" />
268
- <g
269
- id="_x36_3-4"
270
- style="fill:#808080" />
271
- <g
272
- id="_x36_4-8"
273
- style="fill:#808080" />
274
- <g
275
- id="_x36_5-96"
276
- style="fill:#808080" />
277
- <g
278
- id="_x36_6-7"
279
- style="fill:#808080" />
280
- <g
281
- id="_x36_7-7"
282
- style="fill:#808080" />
283
- <g
284
- id="_x36_8-3"
285
- style="fill:#808080" />
286
- <g
287
- id="_x36_9-7"
288
- style="fill:#808080" />
289
- <g
290
- id="_x37_0-1"
291
- style="fill:#808080" />
292
- <g
293
- id="_x37_1-2"
294
- style="fill:#808080" />
295
- <g
296
- id="_x37_2-2"
297
- style="fill:#808080" />
298
- <g
299
- id="_x37_3-1"
300
- style="fill:#808080" />
301
- <g
302
- id="_x37_4-5"
303
- style="fill:#808080" />
304
- <g
305
- id="_x37_5-0"
306
- style="fill:#808080" />
307
- <g
308
- id="_x37_6-9"
309
- style="fill:#808080" />
310
- <g
311
- id="_x37_7-0"
312
- style="fill:#808080" />
313
- <g
314
- id="_x37_8-4"
315
- style="fill:#808080" />
316
- <g
317
- id="_x37_9-0"
318
- style="fill:#808080" />
319
- <g
320
- id="_x38_0-1"
321
- style="fill:#808080" />
322
- <g
323
- id="_x38_1-37"
324
- style="fill:#808080" />
325
- <g
326
- id="_x38_2-4"
327
- style="fill:#808080" />
328
- <g
329
- id="_x38_3-1"
330
- style="fill:#808080" />
331
- <g
332
- id="_x38_4-1"
333
- style="fill:#808080" />
334
- <g
335
- id="_x38_5-3"
336
- style="fill:#808080" />
337
- <g
338
- id="_x38_6-0"
339
- style="fill:#808080" />
340
- <g
341
- id="_x38_7-3"
342
- style="fill:#808080">
343
- <g
344
- id="g918-2"
345
- style="fill:#808080">
346
- <path
347
- inkscape:connector-curvature="0"
348
- d="m 12.03,21.967 c -1.318,0 -1.318,2.047 0,2.047 5.249,0 10.497,0 15.746,0 1.319,0 1.319,-2.047 0,-2.047 -5.249,0 -10.497,0 -15.746,0 z"
349
- id="path902-1"
350
- style="fill:#808080" />
351
- <path
352
- inkscape:connector-curvature="0"
353
- d="m 27.776,26.808 c -5.249,0 -10.497,0 -15.746,0 -1.318,0 -1.318,2.045 0,2.045 5.249,0 10.497,0 15.746,0 1.32,0 1.32,-2.045 0,-2.045 z"
354
- id="path904-7"
355
- style="fill:#808080" />
356
- <path
357
- inkscape:connector-curvature="0"
358
- d="m 27.776,31.291 c -5.249,0 -10.497,0 -15.746,0 -1.318,0 -1.318,2.045 0,2.045 5.249,0 10.497,0 15.746,0 1.32,0 1.32,-2.045 0,-2.045 z"
359
- id="path906-5"
360
- style="fill:#808080" />
361
- <path
362
- inkscape:connector-curvature="0"
363
- d="m 27.776,36.131 c -5.249,0 -10.497,0 -15.746,0 -1.318,0 -1.318,2.044 0,2.044 5.249,0 10.497,0 15.746,0 1.32,0 1.32,-2.044 0,-2.044 z"
364
- id="path908-6"
365
- style="fill:#808080" />
366
- <path
367
- inkscape:connector-curvature="0"
368
- d="m 27.474,40.698 c -5.25,0 -10.5,0 -15.748,0 -1.317,0 -1.317,2.045 0,2.045 5.248,0 10.498,0 15.748,0 1.317,0 1.317,-2.045 0,-2.045 z"
369
- id="path910-54"
370
- style="fill:#808080" />
371
- <path
372
- inkscape:connector-curvature="0"
373
- d="M 5.203,11.496 V 49.675 H 34.604 V 16.793 L 29.141,11.496 Z M 32.062,47.133 H 7.746 V 14.038 h 20.086 v 4.033 h 4.229 v 29.062 z"
374
- id="path912-2"
375
- style="fill:#808080" />
376
- <polygon
377
- points="37.032,12.22 37.032,41.282 35.915,41.282 35.915,43.824 39.574,43.824 39.574,10.942 34.111,5.646 10.173,5.646 10.173,10.065 12.716,10.065 12.716,8.187 32.803,8.187 32.803,12.22 "
378
- id="polygon914-2"
379
- style="fill:#808080" />
380
- <polygon
381
- points="38.025,6.9 42.255,6.9 42.255,35.962 41.139,35.962 41.139,38.504 44.798,38.504 44.798,5.622 39.334,0.325 15.396,0.325 15.396,4.745 17.938,4.745 17.938,2.867 38.025,2.867 "
382
- id="polygon916-1"
383
- style="fill:#808080" />
384
- </g>
385
- </g>
386
- <g
387
- id="_x38_8-7"
388
- style="fill:#808080" />
389
- <g
390
- id="_x38_9-2"
391
- style="fill:#808080" />
392
- <g
393
- id="_x39_0-41"
394
- style="fill:#808080" />
395
- <g
396
- id="_x39_1-6"
397
- style="fill:#808080" />
398
- <g
399
- id="_x39_2-57"
400
- style="fill:#808080" />
401
- <g
402
- id="_x39_3-8"
403
- style="fill:#808080" />
404
- <g
405
- id="_x39_4-5"
406
- style="fill:#808080" />
407
- <g
408
- id="_x39_5-92"
409
- style="fill:#808080" />
410
- <g
411
- id="_x39_6-7"
412
- style="fill:#808080" />
413
- <g
414
- id="_x39_7-36"
415
- style="fill:#808080" />
416
- <g
417
- id="_x39_8-4"
418
- style="fill:#808080" />
419
- <g
420
- id="_x39_9-7"
421
- style="fill:#808080" />
422
- <g
423
- id="_x31_00-9"
424
- style="fill:#808080" />
425
- <g
426
- id="_x31_01-7"
427
- style="fill:#808080" />
428
- <g
429
- id="_x31_02-22"
430
- style="fill:#808080" />
431
- <g
432
- id="_x31_03-1"
433
- style="fill:#808080" />
434
- <g
435
- id="_x31_04-6"
436
- style="fill:#808080" />
437
- <g
438
- id="_x31_05-30"
439
- style="fill:#808080" />
440
- <g
441
- id="_x31_06-2"
442
- style="fill:#808080" />
443
- <g
444
- id="_x31_07-1"
445
- style="fill:#808080" />
446
- <g
447
- id="_x31_08-5"
448
- style="fill:#808080" />
449
- <g
450
- id="_x31_09-65"
451
- style="fill:#808080" />
452
- <g
453
- id="_x31_10-0"
454
- style="fill:#808080" />
455
- <g
456
- id="_x31_11-0"
457
- style="fill:#808080" />
458
- <g
459
- id="_x31_12-3"
460
- style="fill:#808080" />
461
- <g
462
- id="_x31_13-46"
463
- style="fill:#808080" />
464
- <g
465
- id="_x31_14-6"
466
- style="fill:#808080" />
467
- <g
468
- id="_x31_15-0"
469
- style="fill:#808080" />
470
- <g
471
- id="_x31_16-2"
472
- style="fill:#808080" />
473
- <g
474
- id="_x31_17-5"
475
- style="fill:#808080" />
476
- <g
477
- id="_x31_18-8"
478
- style="fill:#808080" />
479
- <g
480
- id="_x31_19-9"
481
- style="fill:#808080" />
482
- <g
483
- id="_x31_20-5"
484
- style="fill:#808080" />
485
- <g
486
- id="_x31_21-06"
487
- style="fill:#808080" />
488
- <g
489
- id="_x31_22-0"
490
- style="fill:#808080" />
491
- <g
492
- id="_x31_23-8"
493
- style="fill:#808080" />
494
- <g
495
- id="_x31_24-3"
496
- style="fill:#808080" />
497
- <g
498
- id="_x31_25-7"
499
- style="fill:#808080" />
500
- <g
501
- id="_x31_26-8"
502
- style="fill:#808080" />
503
- <g
504
- id="_x31_27-2"
505
- style="fill:#808080" />
506
- <g
507
- id="_x31_28-10"
508
- style="fill:#808080" />
509
- <g
510
- id="_x31_29-5"
511
- style="fill:#808080" />
512
- <g
513
- id="_x31_30-8"
514
- style="fill:#808080" />
515
- <g
516
- id="_x31_31-5"
517
- style="fill:#808080" />
518
- <g
519
- id="_x31_32-5"
520
- style="fill:#808080" />
521
- <g
522
- id="_x31_33-0"
523
- style="fill:#808080" />
524
- <g
525
- id="_x31_34-7"
526
- style="fill:#808080" />
527
- <g
528
- id="_x31_35-3"
529
- style="fill:#808080" />
530
- <g
531
- id="_x31_36-82"
532
- style="fill:#808080" />
533
- <g
534
- id="_x31_37-3"
535
- style="fill:#808080" />
536
- <g
537
- id="_x31_38-0"
538
- style="fill:#808080" />
539
- <g
540
- id="_x31_39-7"
541
- style="fill:#808080" />
542
- <g
543
- id="_x31_40-7"
544
- style="fill:#808080" />
545
- <g
546
- id="_x31_41-7"
547
- style="fill:#808080" />
548
- <g
549
- id="_x31_42-6"
550
- style="fill:#808080" />
551
- <g
552
- id="_x31_43-9"
553
- style="fill:#808080" />
554
- <g
555
- id="_x31_44-1"
556
- style="fill:#808080" />
557
- <g
558
- id="_x31_45-19"
559
- style="fill:#808080" />
560
- <g
561
- id="_x31_46-0"
562
- style="fill:#808080" />
563
- <g
564
- id="_x31_47-8"
565
- style="fill:#808080" />
566
- <g
567
- id="_x31_48-9"
568
- style="fill:#808080" />
569
- <g
570
- id="_x31_49-8"
571
- style="fill:#808080" />
572
- <g
573
- id="_x31_50-8"
574
- style="fill:#808080" />
575
- <g
576
- id="_x31_51-0"
577
- style="fill:#808080" />
578
- <g
579
- id="_x31_52-3"
580
- style="fill:#808080" />
581
- <g
582
- id="_x31_53-7"
583
- style="fill:#808080" />
584
- <g
585
- id="_x31_54-06"
586
- style="fill:#808080" />
587
- <g
588
- id="_x31_55-9"
589
- style="fill:#808080" />
590
- <g
591
- id="_x31_56-2"
592
- style="fill:#808080" />
593
- <g
594
- id="_x31_57-1"
595
- style="fill:#808080" />
596
- <g
597
- id="_x31_58-7"
598
- style="fill:#808080" />
599
- <g
600
- id="_x31_59-7"
601
- style="fill:#808080" />
602
- <g
603
- id="_x31_60-97"
604
- style="fill:#808080" />
605
- <g
606
- id="_x31_61-6"
607
- style="fill:#808080" />
608
- <g
609
- id="_x31_62-2"
610
- style="fill:#808080" />
611
- <g
612
- id="_x31_63-71"
613
- style="fill:#808080" />
614
- <g
615
- id="_x31_64-5"
616
- style="fill:#808080" />
617
- <g
618
- id="_x31_65-8"
619
- style="fill:#808080" />
620
- <g
621
- id="_x31_66-8"
622
- style="fill:#808080" />
623
- <g
624
- id="_x31_67-4"
625
- style="fill:#808080" />
626
- <g
627
- id="_x31_68-5"
628
- style="fill:#808080" />
629
- <g
630
- id="_x31_69-6"
631
- style="fill:#808080" />
632
- <g
633
- id="_x31_70-5"
634
- style="fill:#808080" />
635
- <g
636
- id="_x31_71-68"
637
- style="fill:#808080" />
638
- <g
639
- id="_x31_72-4"
640
- style="fill:#808080" />
641
- <g
642
- id="_x31_73-8"
643
- style="fill:#808080" />
644
- <g
645
- id="_x31_74-83"
646
- style="fill:#808080" />
647
- <g
648
- id="_x31_75-8"
649
- style="fill:#808080" />
650
- <g
651
- id="_x31_76-7"
652
- style="fill:#808080" />
653
- <g
654
- id="_x31_77-5"
655
- style="fill:#808080" />
656
- <g
657
- id="_x31_78-2"
658
- style="fill:#808080" />
659
- <g
660
- id="_x31_79-4"
661
- style="fill:#808080" />
662
- <g
663
- id="_x31_80-5"
664
- style="fill:#808080" />
665
- <g
666
- id="_x31_81-05"
667
- style="fill:#808080" />
668
- <g
669
- id="_x31_82-7"
670
- style="fill:#808080" />
671
- <g
672
- id="_x31_83-3"
673
- style="fill:#808080" />
674
- <g
675
- id="_x31_84-2"
676
- style="fill:#808080" />
677
- <g
678
- id="_x31_85-7"
679
- style="fill:#808080" />
680
- <g
681
- id="_x31_86-2"
682
- style="fill:#808080" />
683
- <g
684
- id="_x31_87-1"
685
- style="fill:#808080" />
686
- <g
687
- id="_x31_88-3"
688
- style="fill:#808080" />
689
- <g
690
- id="_x31_89-4"
691
- style="fill:#808080" />
692
- <g
693
- id="_x31_90-9"
694
- style="fill:#808080" />
695
- </g>
696
- <text
697
- id="text1640-4"
698
- y="36.46175"
699
- x="29.290909"
700
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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:#808080;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
701
- xml:space="preserve"><tspan
702
- id="tspan4255-5"
703
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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;fill:#808080;stroke-width:0.26458332px"
704
- y="36.46175"
705
- x="29.290909"
706
- sodipodi:role="line">Non versioned</tspan><tspan
707
- id="tspan7027"
708
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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;fill:#808080;stroke-width:0.26458332px"
709
- y="42.249512"
710
- x="29.290909"
711
- sodipodi:role="line">dev YAML</tspan><tspan
712
- id="tspan7023"
713
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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;fill:#808080;stroke-width:0.26458332px"
714
- y="48.03727"
715
- x="29.290909"
716
- sodipodi:role="line">entities</tspan><tspan
717
- id="tspan7025"
718
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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;fill:#808080;stroke-width:0.26458332px"
719
- y="53.825031"
720
- x="29.290909"
721
- sodipodi:role="line" /></text>
722
- </g>
723
- </g>
724
- <g
725
- transform="translate(-20.382053,12.687087)"
726
- id="g7949">
727
- <g
728
- id="g1232-9-4"
729
- transform="matrix(0.26458333,0,0,0.26458333,-51.294431,93.656141)">
730
- <g
731
- id="text-7-3" />
732
- <g
733
- id="_x31_-8-9" />
734
- <g
735
- id="_x32_-5-4" />
736
- <g
737
- id="_x33__1_-3-9" />
738
- <g
739
- id="_x34_-3-5" />
740
- <g
741
- id="_x35_-8-5" />
742
- <g
743
- id="_x36_-3-7" />
744
- <g
745
- id="_x37_-7-3" />
746
- <g
747
- id="_x38_-9-9" />
748
- <g
749
- id="_x39_-3-0" />
750
- <g
751
- id="_x31_0-7-7" />
752
- <g
753
- id="_x31_1-8-2" />
754
- <g
755
- id="_x31_2-7-7" />
756
- <g
757
- id="_x31_3-4-2" />
758
- <g
759
- id="_x31_4-1-9" />
760
- <g
761
- id="_x31_5-9-0" />
762
- <g
763
- id="_x31_6-0-5" />
764
- <g
765
- id="_x31_7-9-0" />
766
- <g
767
- id="_x31_8-8-4" />
768
- <g
769
- id="_x31_9-8-1" />
770
- <g
771
- id="_x32_0-5-7" />
772
- <g
773
- id="_x32_1-8-9" />
774
- <g
775
- id="_x32_2-4-3" />
776
- <g
777
- id="_x32_3-3-6" />
778
- <g
779
- id="_x32_4-7-2" />
780
- <g
781
- id="_x32_5-1-1" />
782
- <g
783
- id="_x32_6-3-2" />
784
- <g
785
- id="_x32_7-8-5" />
786
- <g
787
- id="_x32_8-0-3" />
788
- <g
789
- id="_x32_9-9-9" />
790
- <g
791
- id="_x33_0-7-1" />
792
- <g
793
- id="_x33_1-9-8" />
794
- <g
795
- id="_x33_2-9-8" />
796
- <g
797
- id="_x33_3-3-7" />
798
- <g
799
- id="_x33_4-2-0" />
800
- <g
801
- id="_x33_5-4-5" />
802
- <g
803
- id="_x33_6-3-2" />
804
- <g
805
- id="_x33_7-7-7" />
806
- <g
807
- id="_x33_8-1-9" />
808
- <g
809
- id="_x33_9-2-1" />
810
- <g
811
- id="_x34_0-2-9" />
812
- <g
813
- id="_x34_1-0-6" />
814
- <g
815
- id="_x34_2-2-3" />
816
- <g
817
- id="_x34_3-1-6" />
818
- <g
819
- id="_x34_4-7-8" />
820
- <g
821
- id="_x34_5-5-4" />
822
- <g
823
- id="_x34_6-1-6" />
824
- <g
825
- id="_x34_7-7-6" />
826
- <g
827
- id="_x34_8-4-7" />
828
- <g
829
- id="_x34_9-1-2" />
830
- <g
831
- id="_x35_0-7-7" />
832
- <g
833
- id="_x35_1-1-4" />
834
- <g
835
- id="_x35_2-1-1" />
836
- <g
837
- id="_x35_3-1-0" />
838
- <g
839
- id="_x35_4-7-0" />
840
- <g
841
- id="_x35_5-0-6" />
842
- <g
843
- id="_x35_6-4-4" />
844
- <g
845
- id="_x35_7-0-4" />
846
- <g
847
- id="_x35_8-8-3" />
848
- <g
849
- id="_x35_9-5-7" />
850
- <g
851
- id="_x36_0-1-3" />
852
- <g
853
- id="_x36_1-6-4" />
854
- <g
855
- id="_x36_2-6-7" />
856
- <g
857
- id="_x36_3-2-2" />
858
- <g
859
- id="_x36_4-1-1" />
860
- <g
861
- id="_x36_5-9-7" />
862
- <g
863
- id="_x36_6-6-9" />
864
- <g
865
- id="_x36_7-4-5" />
866
- <g
867
- id="_x36_8-8-6" />
868
- <g
869
- id="_x36_9-0-8" />
870
- <g
871
- id="_x37_0-8-9" />
872
- <g
873
- id="_x37_1-1-5" />
874
- <g
875
- id="_x37_2-0-5" />
876
- <g
877
- id="_x37_3-2-2" />
878
- <g
879
- id="_x37_4-2-1" />
880
- <g
881
- id="_x37_5-9-5" />
882
- <g
883
- id="_x37_6-7-9" />
884
- <g
885
- id="_x37_7-5-9" />
886
- <g
887
- id="_x37_8-6-1" />
888
- <g
889
- id="_x37_9-4-6" />
890
- <g
891
- id="_x38_0-6-2" />
892
- <g
893
- id="_x38_1-3-1" />
894
- <g
895
- id="_x38_2-7-0" />
896
- <g
897
- id="_x38_3-9-5" />
898
- <g
899
- id="_x38_4-7-3" />
900
- <g
901
- id="_x38_5-4-2" />
902
- <g
903
- id="_x38_6-9-1" />
904
- <g
905
- id="_x38_7-1-9">
906
- <g
907
- id="g918-7-7">
908
- <path
909
- id="path902-0-6"
910
- d="m 12.03,21.967 c -1.318,0 -1.318,2.047 0,2.047 5.249,0 10.497,0 15.746,0 1.319,0 1.319,-2.047 0,-2.047 -5.249,0 -10.497,0 -15.746,0 z"
911
- inkscape:connector-curvature="0" />
912
- <path
913
- id="path904-6-8"
914
- d="m 27.776,26.808 c -5.249,0 -10.497,0 -15.746,0 -1.318,0 -1.318,2.045 0,2.045 5.249,0 10.497,0 15.746,0 1.32,0 1.32,-2.045 0,-2.045 z"
915
- inkscape:connector-curvature="0" />
916
- <path
917
- id="path906-0-2"
918
- d="m 27.776,31.291 c -5.249,0 -10.497,0 -15.746,0 -1.318,0 -1.318,2.045 0,2.045 5.249,0 10.497,0 15.746,0 1.32,0 1.32,-2.045 0,-2.045 z"
919
- inkscape:connector-curvature="0" />
920
- <path
921
- id="path908-8-0"
922
- d="m 27.776,36.131 c -5.249,0 -10.497,0 -15.746,0 -1.318,0 -1.318,2.044 0,2.044 5.249,0 10.497,0 15.746,0 1.32,0 1.32,-2.044 0,-2.044 z"
923
- inkscape:connector-curvature="0" />
924
- <path
925
- id="path910-5-6"
926
- d="m 27.474,40.698 c -5.25,0 -10.5,0 -15.748,0 -1.317,0 -1.317,2.045 0,2.045 5.248,0 10.498,0 15.748,0 1.317,0 1.317,-2.045 0,-2.045 z"
927
- inkscape:connector-curvature="0" />
928
- <path
929
- id="path912-3-4"
930
- d="M 5.203,11.496 V 49.675 H 34.604 V 16.793 L 29.141,11.496 Z M 32.062,47.133 H 7.746 V 14.038 h 20.086 v 4.033 h 4.229 v 29.062 z"
931
- inkscape:connector-curvature="0" />
932
- <polygon
933
- id="polygon914-9-3"
934
- points="39.574,10.942 34.111,5.646 10.173,5.646 10.173,10.065 12.716,10.065 12.716,8.187 32.803,8.187 32.803,12.22 37.032,12.22 37.032,41.282 35.915,41.282 35.915,43.824 39.574,43.824 " />
935
- <polygon
936
- id="polygon916-4-3"
937
- points="44.798,38.504 44.798,5.622 39.334,0.325 15.396,0.325 15.396,4.745 17.938,4.745 17.938,2.867 38.025,2.867 38.025,6.9 42.255,6.9 42.255,35.962 41.139,35.962 41.139,38.504 " />
938
- </g>
939
- </g>
940
- <g
941
- id="_x38_8-1-6" />
942
- <g
943
- id="_x38_9-5-9" />
944
- <g
945
- id="_x39_0-4-0" />
946
- <g
947
- id="_x39_1-1-4" />
948
- <g
949
- id="_x39_2-5-8" />
950
- <g
951
- id="_x39_3-5-5" />
952
- <g
953
- id="_x39_4-4-1" />
954
- <g
955
- id="_x39_5-9-2" />
956
- <g
957
- id="_x39_6-8-9" />
958
- <g
959
- id="_x39_7-3-7" />
960
- <g
961
- id="_x39_8-8-3" />
962
- <g
963
- id="_x39_9-5-8" />
964
- <g
965
- id="_x31_00-2-0" />
966
- <g
967
- id="_x31_01-2-9" />
968
- <g
969
- id="_x31_02-2-2" />
970
- <g
971
- id="_x31_03-7-3" />
972
- <g
973
- id="_x31_04-0-1" />
974
- <g
975
- id="_x31_05-3-8" />
976
- <g
977
- id="_x31_06-4-7" />
978
- <g
979
- id="_x31_07-6-4" />
980
- <g
981
- id="_x31_08-3-1" />
982
- <g
983
- id="_x31_09-6-6" />
984
- <g
985
- id="_x31_10-3-3" />
986
- <g
987
- id="_x31_11-3-8" />
988
- <g
989
- id="_x31_12-4-5" />
990
- <g
991
- id="_x31_13-4-5" />
992
- <g
993
- id="_x31_14-3-0" />
994
- <g
995
- id="_x31_15-9-1" />
996
- <g
997
- id="_x31_16-7-2" />
998
- <g
999
- id="_x31_17-2-6" />
1000
- <g
1001
- id="_x31_18-5-4" />
1002
- <g
1003
- id="_x31_19-8-8" />
1004
- <g
1005
- id="_x31_20-9-5" />
1006
- <g
1007
- id="_x31_21-0-6" />
1008
- <g
1009
- id="_x31_22-2-2" />
1010
- <g
1011
- id="_x31_23-4-5" />
1012
- <g
1013
- id="_x31_24-7-2" />
1014
- <g
1015
- id="_x31_25-6-6" />
1016
- <g
1017
- id="_x31_26-5-9" />
1018
- <g
1019
- id="_x31_27-7-1" />
1020
- <g
1021
- id="_x31_28-1-3" />
1022
- <g
1023
- id="_x31_29-3-3" />
1024
- <g
1025
- id="_x31_30-3-1" />
1026
- <g
1027
- id="_x31_31-3-5" />
1028
- <g
1029
- id="_x31_32-8-2" />
1030
- <g
1031
- id="_x31_33-5-6" />
1032
- <g
1033
- id="_x31_34-1-9" />
1034
- <g
1035
- id="_x31_35-0-4" />
1036
- <g
1037
- id="_x31_36-8-4" />
1038
- <g
1039
- id="_x31_37-7-6" />
1040
- <g
1041
- id="_x31_38-6-0" />
1042
- <g
1043
- id="_x31_39-3-7" />
1044
- <g
1045
- id="_x31_40-5-4" />
1046
- <g
1047
- id="_x31_41-0-3" />
1048
- <g
1049
- id="_x31_42-8-7" />
1050
- <g
1051
- id="_x31_43-0-9" />
1052
- <g
1053
- id="_x31_44-4-0" />
1054
- <g
1055
- id="_x31_45-1-0" />
1056
- <g
1057
- id="_x31_46-1-2" />
1058
- <g
1059
- id="_x31_47-3-2" />
1060
- <g
1061
- id="_x31_48-5-6" />
1062
- <g
1063
- id="_x31_49-9-9" />
1064
- <g
1065
- id="_x31_50-3-0" />
1066
- <g
1067
- id="_x31_51-4-3" />
1068
- <g
1069
- id="_x31_52-1-5" />
1070
- <g
1071
- id="_x31_53-5-5" />
1072
- <g
1073
- id="_x31_54-0-8" />
1074
- <g
1075
- id="_x31_55-8-7" />
1076
- <g
1077
- id="_x31_56-3-1" />
1078
- <g
1079
- id="_x31_57-5-7" />
1080
- <g
1081
- id="_x31_58-6-0" />
1082
- <g
1083
- id="_x31_59-5-6" />
1084
- <g
1085
- id="_x31_60-9-0" />
1086
- <g
1087
- id="_x31_61-9-4" />
1088
- <g
1089
- id="_x31_62-0-1" />
1090
- <g
1091
- id="_x31_63-7-3" />
1092
- <g
1093
- id="_x31_64-6-0" />
1094
- <g
1095
- id="_x31_65-3-2" />
1096
- <g
1097
- id="_x31_66-7-9" />
1098
- <g
1099
- id="_x31_67-6-6" />
1100
- <g
1101
- id="_x31_68-1-0" />
1102
- <g
1103
- id="_x31_69-5-9" />
1104
- <g
1105
- id="_x31_70-0-3" />
1106
- <g
1107
- id="_x31_71-6-5" />
1108
- <g
1109
- id="_x31_72-5-4" />
1110
- <g
1111
- id="_x31_73-0-3" />
1112
- <g
1113
- id="_x31_74-8-6" />
1114
- <g
1115
- id="_x31_75-1-4" />
1116
- <g
1117
- id="_x31_76-2-3" />
1118
- <g
1119
- id="_x31_77-2-1" />
1120
- <g
1121
- id="_x31_78-6-9" />
1122
- <g
1123
- id="_x31_79-9-1" />
1124
- <g
1125
- id="_x31_80-1-0" />
1126
- <g
1127
- id="_x31_81-0-9" />
1128
- <g
1129
- id="_x31_82-4-4" />
1130
- <g
1131
- id="_x31_83-2-5" />
1132
- <g
1133
- id="_x31_84-7-6" />
1134
- <g
1135
- id="_x31_85-4-2" />
1136
- <g
1137
- id="_x31_86-0-5" />
1138
- <g
1139
- id="_x31_87-3-9" />
1140
- <g
1141
- id="_x31_88-2-1" />
1142
- <g
1143
- id="_x31_89-8-7" />
1144
- <g
1145
- id="_x31_90-0-7" />
1146
- </g>
1147
- <text
1148
- xml:space="preserve"
1149
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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"
1150
- x="-44.668411"
1151
- y="114.48263"
1152
- id="text1640-3-4"><tspan
1153
- sodipodi:role="line"
1154
- id="tspan1638-7-1"
1155
- x="-44.668411"
1156
- y="114.48263"
1157
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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">YAM</tspan><tspan
1158
- sodipodi:role="line"
1159
- x="-44.668411"
1160
- y="120.27039"
1161
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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"
1162
- id="tspan1642-0-1">entities</tspan><tspan
1163
- sodipodi:role="line"
1164
- x="-44.668411"
1165
- y="126.05815"
1166
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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"
1167
- id="tspan7007" /></text>
1168
- </g>
1169
- <g
1170
- transform="translate(-20.382053,15.119265)"
1171
- id="g8988">
1172
- <g
1173
- transform="matrix(0.26458333,0,0,0.26458333,-4.743827,91.22396)"
1174
- id="g8351"
1175
- style="fill:#808080">
1176
- <g
1177
- id="g7951"
1178
- style="fill:#808080" />
1179
- <g
1180
- id="g7953"
1181
- style="fill:#808080" />
1182
- <g
1183
- id="g7955"
1184
- style="fill:#808080" />
1185
- <g
1186
- id="g7957"
1187
- style="fill:#808080" />
1188
- <g
1189
- id="g7959"
1190
- style="fill:#808080" />
1191
- <g
1192
- id="g7961"
1193
- style="fill:#808080" />
1194
- <g
1195
- id="g7963"
1196
- style="fill:#808080" />
1197
- <g
1198
- id="g7965"
1199
- style="fill:#808080" />
1200
- <g
1201
- id="g7967"
1202
- style="fill:#808080" />
1203
- <g
1204
- id="g7969"
1205
- style="fill:#808080" />
1206
- <g
1207
- id="g7971"
1208
- style="fill:#808080" />
1209
- <g
1210
- id="g7973"
1211
- style="fill:#808080" />
1212
- <g
1213
- id="g7975"
1214
- style="fill:#808080" />
1215
- <g
1216
- id="g7977"
1217
- style="fill:#808080" />
1218
- <g
1219
- id="g7979"
1220
- style="fill:#808080" />
1221
- <g
1222
- id="g7981"
1223
- style="fill:#808080" />
1224
- <g
1225
- id="g7983"
1226
- style="fill:#808080" />
1227
- <g
1228
- id="g7985"
1229
- style="fill:#808080" />
1230
- <g
1231
- id="g7987"
1232
- style="fill:#808080" />
1233
- <g
1234
- id="g7989"
1235
- style="fill:#808080" />
1236
- <g
1237
- id="g7991"
1238
- style="fill:#808080" />
1239
- <g
1240
- id="g7993"
1241
- style="fill:#808080" />
1242
- <g
1243
- id="g7995"
1244
- style="fill:#808080" />
1245
- <g
1246
- id="g7997"
1247
- style="fill:#808080" />
1248
- <g
1249
- id="g7999"
1250
- style="fill:#808080" />
1251
- <g
1252
- id="g8001"
1253
- style="fill:#808080" />
1254
- <g
1255
- id="g8003"
1256
- style="fill:#808080" />
1257
- <g
1258
- id="g8005"
1259
- style="fill:#808080" />
1260
- <g
1261
- id="g8007"
1262
- style="fill:#808080" />
1263
- <g
1264
- id="g8009"
1265
- style="fill:#808080" />
1266
- <g
1267
- id="g8011"
1268
- style="fill:#808080" />
1269
- <g
1270
- id="g8013"
1271
- style="fill:#808080" />
1272
- <g
1273
- id="g8015"
1274
- style="fill:#808080" />
1275
- <g
1276
- id="g8017"
1277
- style="fill:#808080" />
1278
- <g
1279
- id="g8019"
1280
- style="fill:#808080" />
1281
- <g
1282
- id="g8021"
1283
- style="fill:#808080" />
1284
- <g
1285
- id="g8023"
1286
- style="fill:#808080" />
1287
- <g
1288
- id="g8025"
1289
- style="fill:#808080" />
1290
- <g
1291
- id="g8027"
1292
- style="fill:#808080" />
1293
- <g
1294
- id="g8029"
1295
- style="fill:#808080" />
1296
- <g
1297
- id="g8031"
1298
- style="fill:#808080" />
1299
- <g
1300
- id="g8033"
1301
- style="fill:#808080" />
1302
- <g
1303
- id="g8035"
1304
- style="fill:#808080" />
1305
- <g
1306
- id="g8037"
1307
- style="fill:#808080" />
1308
- <g
1309
- id="g8039"
1310
- style="fill:#808080" />
1311
- <g
1312
- id="g8041"
1313
- style="fill:#808080" />
1314
- <g
1315
- id="g8043"
1316
- style="fill:#808080" />
1317
- <g
1318
- id="g8045"
1319
- style="fill:#808080" />
1320
- <g
1321
- id="g8047"
1322
- style="fill:#808080" />
1323
- <g
1324
- id="g8049"
1325
- style="fill:#808080" />
1326
- <g
1327
- id="g8051"
1328
- style="fill:#808080" />
1329
- <g
1330
- id="g8053"
1331
- style="fill:#808080" />
1332
- <g
1333
- id="g8055"
1334
- style="fill:#808080" />
1335
- <g
1336
- id="g8057"
1337
- style="fill:#808080" />
1338
- <g
1339
- id="g8059"
1340
- style="fill:#808080" />
1341
- <g
1342
- id="g8061"
1343
- style="fill:#808080" />
1344
- <g
1345
- id="g8063"
1346
- style="fill:#808080" />
1347
- <g
1348
- id="g8065"
1349
- style="fill:#808080" />
1350
- <g
1351
- id="g8067"
1352
- style="fill:#808080" />
1353
- <g
1354
- id="g8069"
1355
- style="fill:#808080" />
1356
- <g
1357
- id="g8071"
1358
- style="fill:#808080" />
1359
- <g
1360
- id="g8073"
1361
- style="fill:#808080" />
1362
- <g
1363
- id="g8075"
1364
- style="fill:#808080" />
1365
- <g
1366
- id="g8077"
1367
- style="fill:#808080" />
1368
- <g
1369
- id="g8079"
1370
- style="fill:#808080" />
1371
- <g
1372
- id="g8081"
1373
- style="fill:#808080" />
1374
- <g
1375
- id="g8083"
1376
- style="fill:#808080" />
1377
- <g
1378
- id="g8085"
1379
- style="fill:#808080" />
1380
- <g
1381
- id="g8087"
1382
- style="fill:#808080" />
1383
- <g
1384
- id="g8089"
1385
- style="fill:#808080" />
1386
- <g
1387
- id="g8091"
1388
- style="fill:#808080" />
1389
- <g
1390
- id="g8093"
1391
- style="fill:#808080" />
1392
- <g
1393
- id="g8095"
1394
- style="fill:#808080" />
1395
- <g
1396
- id="g8097"
1397
- style="fill:#808080" />
1398
- <g
1399
- id="g8099"
1400
- style="fill:#808080" />
1401
- <g
1402
- id="g8101"
1403
- style="fill:#808080" />
1404
- <g
1405
- id="g8103"
1406
- style="fill:#808080" />
1407
- <g
1408
- id="g8105"
1409
- style="fill:#808080" />
1410
- <g
1411
- id="g8107"
1412
- style="fill:#808080" />
1413
- <g
1414
- id="g8109"
1415
- style="fill:#808080" />
1416
- <g
1417
- id="g8111"
1418
- style="fill:#808080" />
1419
- <g
1420
- id="g8113"
1421
- style="fill:#808080" />
1422
- <g
1423
- id="g8115"
1424
- style="fill:#808080" />
1425
- <g
1426
- id="g8117"
1427
- style="fill:#808080" />
1428
- <g
1429
- id="g8119"
1430
- style="fill:#808080" />
1431
- <g
1432
- id="g8121"
1433
- style="fill:#808080" />
1434
- <g
1435
- id="g8123"
1436
- style="fill:#808080" />
1437
- <g
1438
- id="g8143"
1439
- style="fill:#808080">
1440
- <g
1441
- id="g8141"
1442
- style="fill:#808080">
1443
- <path
1444
- inkscape:connector-curvature="0"
1445
- d="m 12.03,21.967 c -1.318,0 -1.318,2.047 0,2.047 5.249,0 10.497,0 15.746,0 1.319,0 1.319,-2.047 0,-2.047 -5.249,0 -10.497,0 -15.746,0 z"
1446
- id="path8125"
1447
- style="fill:#808080" />
1448
- <path
1449
- inkscape:connector-curvature="0"
1450
- d="m 27.776,26.808 c -5.249,0 -10.497,0 -15.746,0 -1.318,0 -1.318,2.045 0,2.045 5.249,0 10.497,0 15.746,0 1.32,0 1.32,-2.045 0,-2.045 z"
1451
- id="path8127"
1452
- style="fill:#808080" />
1453
- <path
1454
- inkscape:connector-curvature="0"
1455
- d="m 27.776,31.291 c -5.249,0 -10.497,0 -15.746,0 -1.318,0 -1.318,2.045 0,2.045 5.249,0 10.497,0 15.746,0 1.32,0 1.32,-2.045 0,-2.045 z"
1456
- id="path8129"
1457
- style="fill:#808080" />
1458
- <path
1459
- inkscape:connector-curvature="0"
1460
- d="m 27.776,36.131 c -5.249,0 -10.497,0 -15.746,0 -1.318,0 -1.318,2.044 0,2.044 5.249,0 10.497,0 15.746,0 1.32,0 1.32,-2.044 0,-2.044 z"
1461
- id="path8131"
1462
- style="fill:#808080" />
1463
- <path
1464
- inkscape:connector-curvature="0"
1465
- d="m 27.474,40.698 c -5.25,0 -10.5,0 -15.748,0 -1.317,0 -1.317,2.045 0,2.045 5.248,0 10.498,0 15.748,0 1.317,0 1.317,-2.045 0,-2.045 z"
1466
- id="path8133"
1467
- style="fill:#808080" />
1468
- <path
1469
- inkscape:connector-curvature="0"
1470
- d="M 5.203,11.496 V 49.675 H 34.604 V 16.793 L 29.141,11.496 Z M 32.062,47.133 H 7.746 V 14.038 h 20.086 v 4.033 h 4.229 v 29.062 z"
1471
- id="path8135"
1472
- style="fill:#808080" />
1473
- <polygon
1474
- points="39.574,10.942 34.111,5.646 10.173,5.646 10.173,10.065 12.716,10.065 12.716,8.187 32.803,8.187 32.803,12.22 37.032,12.22 37.032,41.282 35.915,41.282 35.915,43.824 39.574,43.824 "
1475
- id="polygon8137"
1476
- style="fill:#808080" />
1477
- <polygon
1478
- points="44.798,38.504 44.798,5.622 39.334,0.325 15.396,0.325 15.396,4.745 17.938,4.745 17.938,2.867 38.025,2.867 38.025,6.9 42.255,6.9 42.255,35.962 41.139,35.962 41.139,38.504 "
1479
- id="polygon8139"
1480
- style="fill:#808080" />
1481
- </g>
1482
- </g>
1483
- <g
1484
- id="g8145"
1485
- style="fill:#808080" />
1486
- <g
1487
- id="g8147"
1488
- style="fill:#808080" />
1489
- <g
1490
- id="g8149"
1491
- style="fill:#808080" />
1492
- <g
1493
- id="g8151"
1494
- style="fill:#808080" />
1495
- <g
1496
- id="g8153"
1497
- style="fill:#808080" />
1498
- <g
1499
- id="g8155"
1500
- style="fill:#808080" />
1501
- <g
1502
- id="g8157"
1503
- style="fill:#808080" />
1504
- <g
1505
- id="g8159"
1506
- style="fill:#808080" />
1507
- <g
1508
- id="g8161"
1509
- style="fill:#808080" />
1510
- <g
1511
- id="g8163"
1512
- style="fill:#808080" />
1513
- <g
1514
- id="g8165"
1515
- style="fill:#808080" />
1516
- <g
1517
- id="g8167"
1518
- style="fill:#808080" />
1519
- <g
1520
- id="g8169"
1521
- style="fill:#808080" />
1522
- <g
1523
- id="g8171"
1524
- style="fill:#808080" />
1525
- <g
1526
- id="g8173"
1527
- style="fill:#808080" />
1528
- <g
1529
- id="g8175"
1530
- style="fill:#808080" />
1531
- <g
1532
- id="g8177"
1533
- style="fill:#808080" />
1534
- <g
1535
- id="g8179"
1536
- style="fill:#808080" />
1537
- <g
1538
- id="g8181"
1539
- style="fill:#808080" />
1540
- <g
1541
- id="g8183"
1542
- style="fill:#808080" />
1543
- <g
1544
- id="g8185"
1545
- style="fill:#808080" />
1546
- <g
1547
- id="g8187"
1548
- style="fill:#808080" />
1549
- <g
1550
- id="g8189"
1551
- style="fill:#808080" />
1552
- <g
1553
- id="g8191"
1554
- style="fill:#808080" />
1555
- <g
1556
- id="g8193"
1557
- style="fill:#808080" />
1558
- <g
1559
- id="g8195"
1560
- style="fill:#808080" />
1561
- <g
1562
- id="g8197"
1563
- style="fill:#808080" />
1564
- <g
1565
- id="g8199"
1566
- style="fill:#808080" />
1567
- <g
1568
- id="g8201"
1569
- style="fill:#808080" />
1570
- <g
1571
- id="g8203"
1572
- style="fill:#808080" />
1573
- <g
1574
- id="g8205"
1575
- style="fill:#808080" />
1576
- <g
1577
- id="g8207"
1578
- style="fill:#808080" />
1579
- <g
1580
- id="g8209"
1581
- style="fill:#808080" />
1582
- <g
1583
- id="g8211"
1584
- style="fill:#808080" />
1585
- <g
1586
- id="g8213"
1587
- style="fill:#808080" />
1588
- <g
1589
- id="g8215"
1590
- style="fill:#808080" />
1591
- <g
1592
- id="g8217"
1593
- style="fill:#808080" />
1594
- <g
1595
- id="g8219"
1596
- style="fill:#808080" />
1597
- <g
1598
- id="g8221"
1599
- style="fill:#808080" />
1600
- <g
1601
- id="g8223"
1602
- style="fill:#808080" />
1603
- <g
1604
- id="g8225"
1605
- style="fill:#808080" />
1606
- <g
1607
- id="g8227"
1608
- style="fill:#808080" />
1609
- <g
1610
- id="g8229"
1611
- style="fill:#808080" />
1612
- <g
1613
- id="g8231"
1614
- style="fill:#808080" />
1615
- <g
1616
- id="g8233"
1617
- style="fill:#808080" />
1618
- <g
1619
- id="g8235"
1620
- style="fill:#808080" />
1621
- <g
1622
- id="g8237"
1623
- style="fill:#808080" />
1624
- <g
1625
- id="g8239"
1626
- style="fill:#808080" />
1627
- <g
1628
- id="g8241"
1629
- style="fill:#808080" />
1630
- <g
1631
- id="g8243"
1632
- style="fill:#808080" />
1633
- <g
1634
- id="g8245"
1635
- style="fill:#808080" />
1636
- <g
1637
- id="g8247"
1638
- style="fill:#808080" />
1639
- <g
1640
- id="g8249"
1641
- style="fill:#808080" />
1642
- <g
1643
- id="g8251"
1644
- style="fill:#808080" />
1645
- <g
1646
- id="g8253"
1647
- style="fill:#808080" />
1648
- <g
1649
- id="g8255"
1650
- style="fill:#808080" />
1651
- <g
1652
- id="g8257"
1653
- style="fill:#808080" />
1654
- <g
1655
- id="g8259"
1656
- style="fill:#808080" />
1657
- <g
1658
- id="g8261"
1659
- style="fill:#808080" />
1660
- <g
1661
- id="g8263"
1662
- style="fill:#808080" />
1663
- <g
1664
- id="g8265"
1665
- style="fill:#808080" />
1666
- <g
1667
- id="g8267"
1668
- style="fill:#808080" />
1669
- <g
1670
- id="g8269"
1671
- style="fill:#808080" />
1672
- <g
1673
- id="g8271"
1674
- style="fill:#808080" />
1675
- <g
1676
- id="g8273"
1677
- style="fill:#808080" />
1678
- <g
1679
- id="g8275"
1680
- style="fill:#808080" />
1681
- <g
1682
- id="g8277"
1683
- style="fill:#808080" />
1684
- <g
1685
- id="g8279"
1686
- style="fill:#808080" />
1687
- <g
1688
- id="g8281"
1689
- style="fill:#808080" />
1690
- <g
1691
- id="g8283"
1692
- style="fill:#808080" />
1693
- <g
1694
- id="g8285"
1695
- style="fill:#808080" />
1696
- <g
1697
- id="g8287"
1698
- style="fill:#808080" />
1699
- <g
1700
- id="g8289"
1701
- style="fill:#808080" />
1702
- <g
1703
- id="g8291"
1704
- style="fill:#808080" />
1705
- <g
1706
- id="g8293"
1707
- style="fill:#808080" />
1708
- <g
1709
- id="g8295"
1710
- style="fill:#808080" />
1711
- <g
1712
- id="g8297"
1713
- style="fill:#808080" />
1714
- <g
1715
- id="g8299"
1716
- style="fill:#808080" />
1717
- <g
1718
- id="g8301"
1719
- style="fill:#808080" />
1720
- <g
1721
- id="g8303"
1722
- style="fill:#808080" />
1723
- <g
1724
- id="g8305"
1725
- style="fill:#808080" />
1726
- <g
1727
- id="g8307"
1728
- style="fill:#808080" />
1729
- <g
1730
- id="g8309"
1731
- style="fill:#808080" />
1732
- <g
1733
- id="g8311"
1734
- style="fill:#808080" />
1735
- <g
1736
- id="g8313"
1737
- style="fill:#808080" />
1738
- <g
1739
- id="g8315"
1740
- style="fill:#808080" />
1741
- <g
1742
- id="g8317"
1743
- style="fill:#808080" />
1744
- <g
1745
- id="g8319"
1746
- style="fill:#808080" />
1747
- <g
1748
- id="g8321"
1749
- style="fill:#808080" />
1750
- <g
1751
- id="g8323"
1752
- style="fill:#808080" />
1753
- <g
1754
- id="g8325"
1755
- style="fill:#808080" />
1756
- <g
1757
- id="g8327"
1758
- style="fill:#808080" />
1759
- <g
1760
- id="g8329"
1761
- style="fill:#808080" />
1762
- <g
1763
- id="g8331"
1764
- style="fill:#808080" />
1765
- <g
1766
- id="g8333"
1767
- style="fill:#808080" />
1768
- <g
1769
- id="g8335"
1770
- style="fill:#808080" />
1771
- <g
1772
- id="g8337"
1773
- style="fill:#808080" />
1774
- <g
1775
- id="g8339"
1776
- style="fill:#808080" />
1777
- <g
1778
- id="g8341"
1779
- style="fill:#808080" />
1780
- <g
1781
- id="g8343"
1782
- style="fill:#808080" />
1783
- <g
1784
- id="g8345"
1785
- style="fill:#808080" />
1786
- <g
1787
- id="g8347"
1788
- style="fill:#808080" />
1789
- <g
1790
- id="g8349"
1791
- style="fill:#808080" />
1792
- </g>
1793
- <text
1794
- id="text8361"
1795
- y="112.05045"
1796
- x="2.0042789"
1797
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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:#808080;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
1798
- xml:space="preserve"><tspan
1799
- id="tspan8353"
1800
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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;fill:#808080;stroke-width:0.26458332px"
1801
- y="112.05045"
1802
- x="2.0042782"
1803
- sodipodi:role="line">Non versioned</tspan><tspan
1804
- id="tspan8359"
1805
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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;fill:#808080;stroke-width:0.26458332px"
1806
- y="117.83821"
1807
- x="2.0042794"
1808
- sodipodi:role="line">YAML overrides</tspan></text>
1809
- </g>
1810
- <rect
1811
- ry="3.7417698"
1812
- y="99.487816"
1813
- x="-85.79351"
1814
- height="78.844505"
1815
- width="98.355186"
1816
- id="rect8990"
1817
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:0;fill-rule:evenodd;stroke:#cccccc;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:3, 1;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
1818
- </g>
1819
- <g
1820
- transform="translate(-43.607399,-65.455781)"
1821
- id="g16159">
1822
- <g
1823
- transform="translate(0,-2.3942347)"
1824
- id="g13464">
1825
- <text
1826
- xml:space="preserve"
1827
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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"
1828
- x="-64.978119"
1829
- y="74.098175"
1830
- id="text1640-38"><tspan
1831
- sodipodi:role="line"
1832
- x="-64.978119"
1833
- y="74.098175"
1834
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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"
1835
- id="tspan1642-2">YAML project</tspan><tspan
1836
- sodipodi:role="line"
1837
- x="-64.978119"
1838
- y="79.885933"
1839
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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"
1840
- id="tspan7031">configuration</tspan><tspan
1841
- sodipodi:role="line"
1842
- x="-64.173256"
1843
- y="85.673698"
1844
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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"
1845
- id="tspan4255-9"> </tspan></text>
1846
- <g
1847
- id="g5951"
1848
- transform="matrix(0.11726633,0,0,0.13420214,-72.835917,51.196686)">
1849
- <path
1850
- id="path5931"
1851
- d="M 96.041,88.163 C 95.914,87.166 95.637,86.171 95.198,85.208 92.852,80.07 86.79,77.804 81.651,80.147 c -2.222,1.014 -3.904,2.725 -4.911,4.754 -0.012,0.025 -0.028,0.048 -0.04,0.073 -0.101,0.208 -0.186,0.421 -0.272,0.634 -0.037,0.093 -0.082,0.183 -0.117,0.276 -0.055,0.148 -0.096,0.301 -0.145,0.452 -0.052,0.164 -0.111,0.326 -0.155,0.492 -0.022,0.085 -0.036,0.173 -0.056,0.259 -0.056,0.235 -0.112,0.471 -0.151,0.709 -0.003,0.022 -0.004,0.045 -0.008,0.067 -0.303,1.925 -0.063,3.957 0.813,5.859 2.364,5.129 8.435,7.371 13.565,5.009 1.602,-0.738 2.922,-1.838 3.909,-3.158 0.014,-0.019 0.025,-0.038 0.038,-0.057 0.181,-0.246 0.353,-0.497 0.511,-0.757 0.035,-0.058 0.063,-0.119 0.097,-0.178 0.13,-0.223 0.257,-0.448 0.369,-0.681 0.048,-0.099 0.085,-0.202 0.13,-0.303 0.088,-0.197 0.178,-0.393 0.253,-0.595 0.052,-0.139 0.091,-0.283 0.136,-0.425 0.054,-0.168 0.114,-0.334 0.16,-0.505 0.047,-0.18 0.081,-0.363 0.119,-0.545 0.029,-0.137 0.065,-0.272 0.087,-0.411 0.037,-0.223 0.058,-0.448 0.08,-0.672 0.01,-0.102 0.028,-0.201 0.035,-0.303 0.018,-0.267 0.02,-0.535 0.017,-0.803 0,-0.061 0.005,-0.122 0.003,-0.184 -0.009,-0.309 -0.034,-0.618 -0.071,-0.928 -0.004,-0.02 -0.004,-0.042 -0.006,-0.063 z"
1852
- inkscape:connector-curvature="0"
1853
- style="fill:#010101" />
1854
- <path
1855
- id="path5933"
1856
- d="m 108.379,88.746 -0.033,-0.012 0.05,-1.023 c 3.199,-1.51 4.596,-5.334 3.113,-8.56 l -1.392,-3.021 c -1.055,-2.287 -3.364,-3.765 -5.884,-3.765 -0.938,0 -1.848,0.199 -2.703,0.594 l -0.073,0.034 c -0.207,-0.2 -0.418,-0.395 -0.633,-0.586 l 0.027,-0.072 C 101.75,69.923 101.064,67.101 99.142,65.31 99.048,65.223 98.947,65.139 98.841,65.057 98.629,64.879 98.41,64.712 98.22,64.595 97.814,64.333 97.39,64.12 96.96,63.961 l -3.123,-1.153 c -0.698,-0.257 -1.433,-0.388 -2.185,-0.388 -0.079,0 -0.155,0.015 -0.234,0.018 V 16.962 c 0,-1.813 -1.478,-3.291 -3.292,-3.291 H 23.271 c -1.813,0 -3.289,1.477 -3.289,3.291 v 81.776 c 0,1.813 1.476,3.29 3.289,3.29 h 38.355 c 0.187,0.409 0.419,0.802 0.64,1.096 1.211,1.719 3.191,2.746 5.296,2.746 0.936,0 1.844,-0.199 2.698,-0.592 l 0.067,-0.031 c 0.209,0.201 0.421,0.398 0.637,0.591 l -0.029,0.079 c -0.603,1.618 -0.541,3.375 0.175,4.947 0.716,1.571 2.003,2.771 3.626,3.378 l 3.108,1.16 c 0.408,0.154 0.844,0.267 1.213,0.324 0.38,0.068 0.768,0.103 1.152,0.103 0.938,0 1.845,-0.199 2.691,-0.59 1.569,-0.722 2.764,-2.012 3.367,-3.639 l 0.026,-0.069 c 0.288,-0.004 0.575,-0.015 0.863,-0.031 l 0.034,0.074 c 1.42,3.111 5.151,4.7 8.535,3.219 l 3.063,-1.397 c 0.395,-0.179 0.775,-0.402 1.133,-0.664 2.541,-1.804 3.438,-5.151 2.134,-7.981 l -0.032,-0.069 c 0.199,-0.206 0.394,-0.416 0.584,-0.629 l 0.066,0.024 c 1.601,0.604 3.378,0.548 4.962,-0.17 1.495,-0.684 2.651,-1.881 3.286,-3.401 l 1.253,-3.336 0.121,-0.366 c 1.059,-3.279 -0.654,-6.852 -3.916,-8.058 z m -48.31,5.298 c -0.583,1.562 -0.547,3.25 0.118,4.821 l 0.156,0.344 H 23.271 c -0.26,0 -0.47,-0.211 -0.47,-0.47 V 17.016 h 65.326 c 0.165,0 0.321,-0.027 0.471,-0.066 v 0.052 l -0.005,0.014 v 46.167 c -1.379,0.724 -2.49,1.916 -3.054,3.414 l -1.021,-0.092 c -1.083,-2.202 -3.344,-3.615 -5.812,-3.615 -0.93,0 -1.833,0.196 -2.684,0.584 l -3.027,1.381 c -0.074,0.034 -0.135,0.084 -0.208,0.121 v -1.87 H 33.073 v 1.88 H 72.77 c -1.455,0.736 -2.576,1.957 -3.15,3.494 -0.6,1.604 -0.545,3.342 0.15,4.898 l -0.631,0.802 -0.038,-0.014 c -0.726,-0.271 -1.485,-0.407 -2.257,-0.407 -2.617,0 -4.998,1.603 -5.971,3.96 l -1.275,3.399 -0.104,0.326 c -0.042,0.139 -0.078,0.284 -0.115,0.444 l -0.08,0.342 c -0.25,1.326 -0.086,2.672 0.48,3.906 0.729,1.572 2.023,2.765 3.633,3.354 l 0.077,0.029 c 0.001,0.151 0.005,0.305 0.011,0.461 l 0.015,0.224 c 0.003,0.061 0.006,0.121 0.009,0.181 l -0.079,0.036 c -1.571,0.715 -2.771,2.002 -3.376,3.623 z m 48.856,2.13 -0.008,0.022 c -0.008,0.023 -0.009,0.048 -0.018,0.071 l -0.585,1.564 -0.541,1.465 c -0.009,0.024 -0.023,0.044 -0.033,0.068 l -0.007,0.02 c -0.278,0.746 -0.829,1.336 -1.551,1.666 -0.723,0.328 -1.533,0.357 -2.273,0.078 l -2.465,-0.919 c -1.013,1.469 -2.24,2.801 -3.664,3.95 l 1.098,2.383 c 0.611,1.326 0.155,2.869 -1.002,3.676 -0.164,0.122 -0.341,0.229 -0.535,0.317 l -2.613,1.192 -0.33,0.153 c -0.005,0.002 -0.009,0.002 -0.014,0.005 l -0.072,0.033 c -1.491,0.679 -3.257,0.019 -3.937,-1.472 l -1.09,-2.39 c -1.803,0.329 -3.614,0.386 -5.391,0.193 l -0.909,2.465 c -0.275,0.743 -0.823,1.337 -1.546,1.67 -0.559,0.258 -1.169,0.328 -1.763,0.222 -0.202,-0.031 -0.402,-0.08 -0.598,-0.154 l -3.118,-1.164 c -0.744,-0.278 -1.336,-0.828 -1.665,-1.55 -0.33,-0.724 -0.357,-1.532 -0.081,-2.274 L 75.137,105 c -1.472,-1.014 -2.807,-2.245 -3.958,-3.672 l -2.382,1.097 c -1.321,0.608 -2.859,0.159 -3.669,-0.991 -0.122,-0.164 -0.23,-0.342 -0.318,-0.536 L 63.65,98.354 63.462,97.946 C 63.46,97.941 63.458,97.934 63.456,97.929 l -0.027,-0.06 C 62.748,96.378 63.408,94.611 64.9,93.931 l 2.389,-1.089 C 67.218,92.45 67.165,92.057 67.12,91.665 67.115,91.619 67.106,91.573 67.1,91.528 67.058,91.139 67.033,90.751 67.014,90.363 67.011,90.294 67.002,90.224 66.999,90.156 66.985,89.772 66.989,89.389 66.998,89.008 67,88.935 66.996,88.863 66.999,88.791 c 0.012,-0.334 0.042,-0.667 0.071,-0.999 0.011,-0.115 0.013,-0.231 0.025,-0.347 l -2.467,-0.912 c -0.743,-0.272 -1.337,-0.823 -1.671,-1.543 -0.26,-0.566 -0.329,-1.185 -0.216,-1.786 0.007,-0.046 0.026,-0.09 0.035,-0.135 0.028,-0.118 0.05,-0.237 0.093,-0.354 l 0.004,-0.009 c 0.008,-0.023 0.01,-0.047 0.019,-0.07 l 0.536,-1.434 0.594,-1.609 c 0.009,-0.024 0.024,-0.043 0.033,-0.067 l 0.003,-0.008 c 0.575,-1.536 2.29,-2.318 3.824,-1.746 l 2.466,0.92 c 0.217,-0.314 0.444,-0.623 0.682,-0.925 0.001,0 0.003,0.001 0.005,0.002 0.882,-1.126 1.893,-2.162 3.034,-3.078 L 72.98,72.302 c -0.681,-1.49 -0.021,-3.256 1.472,-3.938 l 3.025,-1.38 c 1.493,-0.68 3.259,-0.021 3.939,1.469 l 1.09,2.392 c 1.694,-0.31 3.394,-0.371 5.067,-0.219 0,-0.002 0,-0.004 0,-0.007 0.109,0.01 0.218,0.012 0.327,0.023 l 0.911,-2.469 c 0.549,-1.489 2.329,-2.309 3.819,-1.759 l 3.121,1.153 c 0.208,0.077 0.398,0.177 0.577,0.292 0.115,0.071 0.217,0.159 0.319,0.245 0.037,0.032 0.08,0.058 0.115,0.091 0.862,0.803 1.238,2.105 0.814,3.24 l -0.921,2.46 c 1.472,1.015 2.806,2.24 3.958,3.667 L 103,76.461 c 1.488,-0.686 3.256,-0.031 3.943,1.458 l 1.391,3.021 c 0.686,1.491 0.033,3.259 -1.456,3.944 l -2.384,1.1 c 0.268,1.443 0.357,2.892 0.289,4.325 0,0 0.001,0 0.001,0 -0.007,0.17 -0.026,0.337 -0.038,0.507 -0.016,0.208 -0.023,0.418 -0.045,0.626 l 2.47,0.912 c 1.532,0.57 2.321,2.282 1.754,3.82 z"
1857
- inkscape:connector-curvature="0"
1858
- style="fill:#010101" />
1859
- <rect
1860
- id="rect5935"
1861
- height="1.88"
1862
- width="3.289"
1863
- y="33.330002"
1864
- x="28.726999"
1865
- style="fill:#010101" />
1866
- <rect
1867
- id="rect5937"
1868
- height="1.88"
1869
- width="39.714001"
1870
- y="33.330002"
1871
- x="33.073002"
1872
- style="fill:#010101" />
1873
- <rect
1874
- id="rect5939"
1875
- height="1.88"
1876
- width="3.289"
1877
- y="42.991001"
1878
- x="28.726999"
1879
- style="fill:#010101" />
1880
- <rect
1881
- id="rect5941"
1882
- height="1.88"
1883
- width="39.714001"
1884
- y="42.991001"
1885
- x="33.073002"
1886
- style="fill:#010101" />
1887
- <rect
1888
- id="rect5943"
1889
- height="1.88"
1890
- width="39.714001"
1891
- y="52.547001"
1892
- x="33.073002"
1893
- style="fill:#010101" />
1894
- <rect
1895
- id="rect5945"
1896
- height="1.88"
1897
- width="3.289"
1898
- y="52.547001"
1899
- x="28.726999"
1900
- style="fill:#010101" />
1901
- <rect
1902
- id="rect5947"
1903
- height="1.88"
1904
- width="3.289"
1905
- y="63.105"
1906
- x="28.726999"
1907
- style="fill:#010101" />
1908
- <polygon
1909
- id="polygon5949"
1910
- points="85.897,20.636 76.393,20.636 85.897,30.141 "
1911
- style="fill:#010101" />
1912
- </g>
1913
- </g>
1914
- <g
1915
- transform="translate(26.168546,9.935056)"
1916
- id="g7742">
1917
- <text
1918
- id="text7039"
1919
- y="61.269238"
1920
- x="-44.625454"
1921
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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:#808080;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
1922
- xml:space="preserve"><tspan
1923
- id="tspan7033"
1924
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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;fill:#808080;stroke-width:0.26458332px"
1925
- y="61.269238"
1926
- x="-44.625454"
1927
- sodipodi:role="line">Non-versioned</tspan><tspan
1928
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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;fill:#808080;stroke-width:0.26458332px"
1929
- y="67.056999"
1930
- x="-44.625454"
1931
- sodipodi:role="line"
1932
- id="tspan7063"> dev YAML project</tspan><tspan
1933
- id="tspan7035"
1934
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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;fill:#808080;stroke-width:0.26458332px"
1935
- y="72.844757"
1936
- x="-44.625454"
1937
- sodipodi:role="line">configuration</tspan><tspan
1938
- id="tspan7037"
1939
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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;fill:#808080;stroke-width:0.26458332px"
1940
- y="78.632523"
1941
- x="-44.625454"
1942
- sodipodi:role="line" /></text>
1943
- <g
1944
- transform="matrix(0.11726633,0,0,0.13420214,-52.45386,38.367749)"
1945
- id="g7061"
1946
- style="fill:#808080">
1947
- <path
1948
- style="fill:#808080"
1949
- inkscape:connector-curvature="0"
1950
- d="M 96.041,88.163 C 95.914,87.166 95.637,86.171 95.198,85.208 92.852,80.07 86.79,77.804 81.651,80.147 c -2.222,1.014 -3.904,2.725 -4.911,4.754 -0.012,0.025 -0.028,0.048 -0.04,0.073 -0.101,0.208 -0.186,0.421 -0.272,0.634 -0.037,0.093 -0.082,0.183 -0.117,0.276 -0.055,0.148 -0.096,0.301 -0.145,0.452 -0.052,0.164 -0.111,0.326 -0.155,0.492 -0.022,0.085 -0.036,0.173 -0.056,0.259 -0.056,0.235 -0.112,0.471 -0.151,0.709 -0.003,0.022 -0.004,0.045 -0.008,0.067 -0.303,1.925 -0.063,3.957 0.813,5.859 2.364,5.129 8.435,7.371 13.565,5.009 1.602,-0.738 2.922,-1.838 3.909,-3.158 0.014,-0.019 0.025,-0.038 0.038,-0.057 0.181,-0.246 0.353,-0.497 0.511,-0.757 0.035,-0.058 0.063,-0.119 0.097,-0.178 0.13,-0.223 0.257,-0.448 0.369,-0.681 0.048,-0.099 0.085,-0.202 0.13,-0.303 0.088,-0.197 0.178,-0.393 0.253,-0.595 0.052,-0.139 0.091,-0.283 0.136,-0.425 0.054,-0.168 0.114,-0.334 0.16,-0.505 0.047,-0.18 0.081,-0.363 0.119,-0.545 0.029,-0.137 0.065,-0.272 0.087,-0.411 0.037,-0.223 0.058,-0.448 0.08,-0.672 0.01,-0.102 0.028,-0.201 0.035,-0.303 0.018,-0.267 0.02,-0.535 0.017,-0.803 0,-0.061 0.005,-0.122 0.003,-0.184 -0.009,-0.309 -0.034,-0.618 -0.071,-0.928 -0.004,-0.02 -0.004,-0.042 -0.006,-0.063 z"
1951
- id="path7041" />
1952
- <path
1953
- style="fill:#808080"
1954
- inkscape:connector-curvature="0"
1955
- d="m 108.379,88.746 -0.033,-0.012 0.05,-1.023 c 3.199,-1.51 4.596,-5.334 3.113,-8.56 l -1.392,-3.021 c -1.055,-2.287 -3.364,-3.765 -5.884,-3.765 -0.938,0 -1.848,0.199 -2.703,0.594 l -0.073,0.034 c -0.207,-0.2 -0.418,-0.395 -0.633,-0.586 l 0.027,-0.072 C 101.75,69.923 101.064,67.101 99.142,65.31 99.048,65.223 98.947,65.139 98.841,65.057 98.629,64.879 98.41,64.712 98.22,64.595 97.814,64.333 97.39,64.12 96.96,63.961 l -3.123,-1.153 c -0.698,-0.257 -1.433,-0.388 -2.185,-0.388 -0.079,0 -0.155,0.015 -0.234,0.018 V 16.962 c 0,-1.813 -1.478,-3.291 -3.292,-3.291 H 23.271 c -1.813,0 -3.289,1.477 -3.289,3.291 v 81.776 c 0,1.813 1.476,3.29 3.289,3.29 h 38.355 c 0.187,0.409 0.419,0.802 0.64,1.096 1.211,1.719 3.191,2.746 5.296,2.746 0.936,0 1.844,-0.199 2.698,-0.592 l 0.067,-0.031 c 0.209,0.201 0.421,0.398 0.637,0.591 l -0.029,0.079 c -0.603,1.618 -0.541,3.375 0.175,4.947 0.716,1.571 2.003,2.771 3.626,3.378 l 3.108,1.16 c 0.408,0.154 0.844,0.267 1.213,0.324 0.38,0.068 0.768,0.103 1.152,0.103 0.938,0 1.845,-0.199 2.691,-0.59 1.569,-0.722 2.764,-2.012 3.367,-3.639 l 0.026,-0.069 c 0.288,-0.004 0.575,-0.015 0.863,-0.031 l 0.034,0.074 c 1.42,3.111 5.151,4.7 8.535,3.219 l 3.063,-1.397 c 0.395,-0.179 0.775,-0.402 1.133,-0.664 2.541,-1.804 3.438,-5.151 2.134,-7.981 l -0.032,-0.069 c 0.199,-0.206 0.394,-0.416 0.584,-0.629 l 0.066,0.024 c 1.601,0.604 3.378,0.548 4.962,-0.17 1.495,-0.684 2.651,-1.881 3.286,-3.401 l 1.253,-3.336 0.121,-0.366 c 1.059,-3.279 -0.654,-6.852 -3.916,-8.058 z m -48.31,5.298 c -0.583,1.562 -0.547,3.25 0.118,4.821 l 0.156,0.344 H 23.271 c -0.26,0 -0.47,-0.211 -0.47,-0.47 V 17.016 h 65.326 c 0.165,0 0.321,-0.027 0.471,-0.066 v 0.052 l -0.005,0.014 v 46.167 c -1.379,0.724 -2.49,1.916 -3.054,3.414 l -1.021,-0.092 c -1.083,-2.202 -3.344,-3.615 -5.812,-3.615 -0.93,0 -1.833,0.196 -2.684,0.584 l -3.027,1.381 c -0.074,0.034 -0.135,0.084 -0.208,0.121 v -1.87 H 33.073 v 1.88 H 72.77 c -1.455,0.736 -2.576,1.957 -3.15,3.494 -0.6,1.604 -0.545,3.342 0.15,4.898 l -0.631,0.802 -0.038,-0.014 c -0.726,-0.271 -1.485,-0.407 -2.257,-0.407 -2.617,0 -4.998,1.603 -5.971,3.96 l -1.275,3.399 -0.104,0.326 c -0.042,0.139 -0.078,0.284 -0.115,0.444 l -0.08,0.342 c -0.25,1.326 -0.086,2.672 0.48,3.906 0.729,1.572 2.023,2.765 3.633,3.354 l 0.077,0.029 c 0.001,0.151 0.005,0.305 0.011,0.461 l 0.015,0.224 c 0.003,0.061 0.006,0.121 0.009,0.181 l -0.079,0.036 c -1.571,0.715 -2.771,2.002 -3.376,3.623 z m 48.856,2.13 -0.008,0.022 c -0.008,0.023 -0.009,0.048 -0.018,0.071 l -0.585,1.564 -0.541,1.465 c -0.009,0.024 -0.023,0.044 -0.033,0.068 l -0.007,0.02 c -0.278,0.746 -0.829,1.336 -1.551,1.666 -0.723,0.328 -1.533,0.357 -2.273,0.078 l -2.465,-0.919 c -1.013,1.469 -2.24,2.801 -3.664,3.95 l 1.098,2.383 c 0.611,1.326 0.155,2.869 -1.002,3.676 -0.164,0.122 -0.341,0.229 -0.535,0.317 l -2.613,1.192 -0.33,0.153 c -0.005,0.002 -0.009,0.002 -0.014,0.005 l -0.072,0.033 c -1.491,0.679 -3.257,0.019 -3.937,-1.472 l -1.09,-2.39 c -1.803,0.329 -3.614,0.386 -5.391,0.193 l -0.909,2.465 c -0.275,0.743 -0.823,1.337 -1.546,1.67 -0.559,0.258 -1.169,0.328 -1.763,0.222 -0.202,-0.031 -0.402,-0.08 -0.598,-0.154 l -3.118,-1.164 c -0.744,-0.278 -1.336,-0.828 -1.665,-1.55 -0.33,-0.724 -0.357,-1.532 -0.081,-2.274 L 75.137,105 c -1.472,-1.014 -2.807,-2.245 -3.958,-3.672 l -2.382,1.097 c -1.321,0.608 -2.859,0.159 -3.669,-0.991 -0.122,-0.164 -0.23,-0.342 -0.318,-0.536 L 63.65,98.354 63.462,97.946 C 63.46,97.941 63.458,97.934 63.456,97.929 l -0.027,-0.06 C 62.748,96.378 63.408,94.611 64.9,93.931 l 2.389,-1.089 C 67.218,92.45 67.165,92.057 67.12,91.665 67.115,91.619 67.106,91.573 67.1,91.528 67.058,91.139 67.033,90.751 67.014,90.363 67.011,90.294 67.002,90.224 66.999,90.156 66.985,89.772 66.989,89.389 66.998,89.008 67,88.935 66.996,88.863 66.999,88.791 c 0.012,-0.334 0.042,-0.667 0.071,-0.999 0.011,-0.115 0.013,-0.231 0.025,-0.347 l -2.467,-0.912 c -0.743,-0.272 -1.337,-0.823 -1.671,-1.543 -0.26,-0.566 -0.329,-1.185 -0.216,-1.786 0.007,-0.046 0.026,-0.09 0.035,-0.135 0.028,-0.118 0.05,-0.237 0.093,-0.354 l 0.004,-0.009 c 0.008,-0.023 0.01,-0.047 0.019,-0.07 l 0.536,-1.434 0.594,-1.609 c 0.009,-0.024 0.024,-0.043 0.033,-0.067 l 0.003,-0.008 c 0.575,-1.536 2.29,-2.318 3.824,-1.746 l 2.466,0.92 c 0.217,-0.314 0.444,-0.623 0.682,-0.925 0.001,0 0.003,0.001 0.005,0.002 0.882,-1.126 1.893,-2.162 3.034,-3.078 L 72.98,72.302 c -0.681,-1.49 -0.021,-3.256 1.472,-3.938 l 3.025,-1.38 c 1.493,-0.68 3.259,-0.021 3.939,1.469 l 1.09,2.392 c 1.694,-0.31 3.394,-0.371 5.067,-0.219 0,-0.002 0,-0.004 0,-0.007 0.109,0.01 0.218,0.012 0.327,0.023 l 0.911,-2.469 c 0.549,-1.489 2.329,-2.309 3.819,-1.759 l 3.121,1.153 c 0.208,0.077 0.398,0.177 0.577,0.292 0.115,0.071 0.217,0.159 0.319,0.245 0.037,0.032 0.08,0.058 0.115,0.091 0.862,0.803 1.238,2.105 0.814,3.24 l -0.921,2.46 c 1.472,1.015 2.806,2.24 3.958,3.667 L 103,76.461 c 1.488,-0.686 3.256,-0.031 3.943,1.458 l 1.391,3.021 c 0.686,1.491 0.033,3.259 -1.456,3.944 l -2.384,1.1 c 0.268,1.443 0.357,2.892 0.289,4.325 0,0 0.001,0 0.001,0 -0.007,0.17 -0.026,0.337 -0.038,0.507 -0.016,0.208 -0.023,0.418 -0.045,0.626 l 2.47,0.912 c 1.532,0.57 2.321,2.282 1.754,3.82 z"
1956
- id="path7043" />
1957
- <rect
1958
- style="fill:#808080"
1959
- x="28.726999"
1960
- y="33.330002"
1961
- width="3.289"
1962
- height="1.88"
1963
- id="rect7045" />
1964
- <rect
1965
- style="fill:#808080"
1966
- x="33.073002"
1967
- y="33.330002"
1968
- width="39.714001"
1969
- height="1.88"
1970
- id="rect7047" />
1971
- <rect
1972
- style="fill:#808080"
1973
- x="28.726999"
1974
- y="42.991001"
1975
- width="3.289"
1976
- height="1.88"
1977
- id="rect7049" />
1978
- <rect
1979
- style="fill:#808080"
1980
- x="33.073002"
1981
- y="42.991001"
1982
- width="39.714001"
1983
- height="1.88"
1984
- id="rect7051" />
1985
- <rect
1986
- style="fill:#808080"
1987
- x="33.073002"
1988
- y="52.547001"
1989
- width="39.714001"
1990
- height="1.88"
1991
- id="rect7053" />
1992
- <rect
1993
- style="fill:#808080"
1994
- x="28.726999"
1995
- y="52.547001"
1996
- width="3.289"
1997
- height="1.88"
1998
- id="rect7055" />
1999
- <rect
2000
- style="fill:#808080"
2001
- x="28.726999"
2002
- y="63.105"
2003
- width="3.289"
2004
- height="1.88"
2005
- id="rect7057" />
2006
- <polygon
2007
- style="fill:#808080"
2008
- points="85.897,30.141 85.897,20.636 76.393,20.636 "
2009
- id="polygon7059" />
2010
- </g>
2011
- </g>
2012
- <rect
2013
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:0;fill-rule:evenodd;stroke:#cccccc;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:3, 1;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
2014
- id="rect12716"
2015
- width="98.315414"
2016
- height="47.686676"
2017
- x="-85.773628"
2018
- y="43.114956"
2019
- ry="3.0713453" />
2020
- </g>
2021
- <g
2022
- id="g18866"
2023
- transform="translate(-48.899065,-65.455781)">
2024
- <g
2025
- transform="translate(29.666918,13.556571)"
2026
- id="g7707">
2027
- <text
2028
- xml:space="preserve"
2029
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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"
2030
- x="26.20372"
2031
- y="113.14628"
2032
- id="text1640-3"><tspan
2033
- sodipodi:role="line"
2034
- id="tspan1638-7"
2035
- x="26.20372"
2036
- y="113.14628"
2037
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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">Project specific</tspan><tspan
2038
- sodipodi:role="line"
2039
- x="26.203722"
2040
- y="118.93404"
2041
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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"
2042
- id="tspan1642-0">entity definitions</tspan></text>
2043
- <g
2044
- id="g7497">
2045
- <g
2046
- transform="matrix(0.26458333,0,0,0.26458333,19.577699,92.319794)"
2047
- id="g1232-9">
2048
- <g
2049
- id="text-7" />
2050
- <g
2051
- id="_x31_-8" />
2052
- <g
2053
- id="_x32_-5" />
2054
- <g
2055
- id="_x33__1_-3" />
2056
- <g
2057
- id="_x34_-3" />
2058
- <g
2059
- id="_x35_-8" />
2060
- <g
2061
- id="_x36_-3" />
2062
- <g
2063
- id="_x37_-7" />
2064
- <g
2065
- id="_x38_-9" />
2066
- <g
2067
- id="_x39_-3" />
2068
- <g
2069
- id="_x31_0-7" />
2070
- <g
2071
- id="_x31_1-8" />
2072
- <g
2073
- id="_x31_2-7" />
2074
- <g
2075
- id="_x31_3-4" />
2076
- <g
2077
- id="_x31_4-1" />
2078
- <g
2079
- id="_x31_5-9" />
2080
- <g
2081
- id="_x31_6-0" />
2082
- <g
2083
- id="_x31_7-9" />
2084
- <g
2085
- id="_x31_8-8" />
2086
- <g
2087
- id="_x31_9-8" />
2088
- <g
2089
- id="_x32_0-5" />
2090
- <g
2091
- id="_x32_1-8" />
2092
- <g
2093
- id="_x32_2-4" />
2094
- <g
2095
- id="_x32_3-3" />
2096
- <g
2097
- id="_x32_4-7" />
2098
- <g
2099
- id="_x32_5-1" />
2100
- <g
2101
- id="_x32_6-3" />
2102
- <g
2103
- id="_x32_7-8" />
2104
- <g
2105
- id="_x32_8-0" />
2106
- <g
2107
- id="_x32_9-9" />
2108
- <g
2109
- id="_x33_0-7" />
2110
- <g
2111
- id="_x33_1-9" />
2112
- <g
2113
- id="_x33_2-9" />
2114
- <g
2115
- id="_x33_3-3" />
2116
- <g
2117
- id="_x33_4-2" />
2118
- <g
2119
- id="_x33_5-4" />
2120
- <g
2121
- id="_x33_6-3" />
2122
- <g
2123
- id="_x33_7-7" />
2124
- <g
2125
- id="_x33_8-1" />
2126
- <g
2127
- id="_x33_9-2" />
2128
- <g
2129
- id="_x34_0-2" />
2130
- <g
2131
- id="_x34_1-0" />
2132
- <g
2133
- id="_x34_2-2" />
2134
- <g
2135
- id="_x34_3-1" />
2136
- <g
2137
- id="_x34_4-7" />
2138
- <g
2139
- id="_x34_5-5" />
2140
- <g
2141
- id="_x34_6-1" />
2142
- <g
2143
- id="_x34_7-7" />
2144
- <g
2145
- id="_x34_8-4" />
2146
- <g
2147
- id="_x34_9-1" />
2148
- <g
2149
- id="_x35_0-7" />
2150
- <g
2151
- id="_x35_1-1" />
2152
- <g
2153
- id="_x35_2-1" />
2154
- <g
2155
- id="_x35_3-1" />
2156
- <g
2157
- id="_x35_4-7" />
2158
- <g
2159
- id="_x35_5-0" />
2160
- <g
2161
- id="_x35_6-4" />
2162
- <g
2163
- id="_x35_7-0" />
2164
- <g
2165
- id="_x35_8-8" />
2166
- <g
2167
- id="_x35_9-5" />
2168
- <g
2169
- id="_x36_0-1" />
2170
- <g
2171
- id="_x36_1-6" />
2172
- <g
2173
- id="_x36_2-6" />
2174
- <g
2175
- id="_x36_3-2" />
2176
- <g
2177
- id="_x36_4-1" />
2178
- <g
2179
- id="_x36_5-9" />
2180
- <g
2181
- id="_x36_6-6" />
2182
- <g
2183
- id="_x36_7-4" />
2184
- <g
2185
- id="_x36_8-8" />
2186
- <g
2187
- id="_x36_9-0" />
2188
- <g
2189
- id="_x37_0-8" />
2190
- <g
2191
- id="_x37_1-1" />
2192
- <g
2193
- id="_x37_2-0" />
2194
- <g
2195
- id="_x37_3-2" />
2196
- <g
2197
- id="_x37_4-2" />
2198
- <g
2199
- id="_x37_5-9" />
2200
- <g
2201
- id="_x37_6-7" />
2202
- <g
2203
- id="_x37_7-5" />
2204
- <g
2205
- id="_x37_8-6" />
2206
- <g
2207
- id="_x37_9-4" />
2208
- <g
2209
- id="_x38_0-6" />
2210
- <g
2211
- id="_x38_1-3" />
2212
- <g
2213
- id="_x38_2-7" />
2214
- <g
2215
- id="_x38_3-9" />
2216
- <g
2217
- id="_x38_4-7" />
2218
- <g
2219
- id="_x38_5-4" />
2220
- <g
2221
- id="_x38_6-9" />
2222
- <g
2223
- id="_x38_7-1">
2224
- <g
2225
- id="g918-7">
2226
- <path
2227
- inkscape:connector-curvature="0"
2228
- d="m 12.03,21.967 c -1.318,0 -1.318,2.047 0,2.047 5.249,0 10.497,0 15.746,0 1.319,0 1.319,-2.047 0,-2.047 -5.249,0 -10.497,0 -15.746,0 z"
2229
- id="path902-0" />
2230
- <path
2231
- inkscape:connector-curvature="0"
2232
- d="m 27.776,26.808 c -5.249,0 -10.497,0 -15.746,0 -1.318,0 -1.318,2.045 0,2.045 5.249,0 10.497,0 15.746,0 1.32,0 1.32,-2.045 0,-2.045 z"
2233
- id="path904-6" />
2234
- <path
2235
- inkscape:connector-curvature="0"
2236
- d="m 27.776,31.291 c -5.249,0 -10.497,0 -15.746,0 -1.318,0 -1.318,2.045 0,2.045 5.249,0 10.497,0 15.746,0 1.32,0 1.32,-2.045 0,-2.045 z"
2237
- id="path906-0" />
2238
- <path
2239
- inkscape:connector-curvature="0"
2240
- d="m 27.776,36.131 c -5.249,0 -10.497,0 -15.746,0 -1.318,0 -1.318,2.044 0,2.044 5.249,0 10.497,0 15.746,0 1.32,0 1.32,-2.044 0,-2.044 z"
2241
- id="path908-8" />
2242
- <path
2243
- inkscape:connector-curvature="0"
2244
- d="m 27.474,40.698 c -5.25,0 -10.5,0 -15.748,0 -1.317,0 -1.317,2.045 0,2.045 5.248,0 10.498,0 15.748,0 1.317,0 1.317,-2.045 0,-2.045 z"
2245
- id="path910-5" />
2246
- <path
2247
- inkscape:connector-curvature="0"
2248
- d="M 5.203,11.496 V 49.675 H 34.604 V 16.793 L 29.141,11.496 Z M 32.062,47.133 H 7.746 V 14.038 h 20.086 v 4.033 h 4.229 v 29.062 z"
2249
- id="path912-3" />
2250
- <polygon
2251
- points="39.574,43.824 39.574,10.942 34.111,5.646 10.173,5.646 10.173,10.065 12.716,10.065 12.716,8.187 32.803,8.187 32.803,12.22 37.032,12.22 37.032,41.282 35.915,41.282 35.915,43.824 "
2252
- id="polygon914-9" />
2253
- <polygon
2254
- points="41.139,38.504 44.798,38.504 44.798,5.622 39.334,0.325 15.396,0.325 15.396,4.745 17.938,4.745 17.938,2.867 38.025,2.867 38.025,6.9 42.255,6.9 42.255,35.962 41.139,35.962 "
2255
- id="polygon916-4" />
2256
- </g>
2257
- </g>
2258
- <g
2259
- id="_x38_8-1" />
2260
- <g
2261
- id="_x38_9-5" />
2262
- <g
2263
- id="_x39_0-4" />
2264
- <g
2265
- id="_x39_1-1" />
2266
- <g
2267
- id="_x39_2-5" />
2268
- <g
2269
- id="_x39_3-5" />
2270
- <g
2271
- id="_x39_4-4" />
2272
- <g
2273
- id="_x39_5-9" />
2274
- <g
2275
- id="_x39_6-8" />
2276
- <g
2277
- id="_x39_7-3" />
2278
- <g
2279
- id="_x39_8-8" />
2280
- <g
2281
- id="_x39_9-5" />
2282
- <g
2283
- id="_x31_00-2" />
2284
- <g
2285
- id="_x31_01-2" />
2286
- <g
2287
- id="_x31_02-2" />
2288
- <g
2289
- id="_x31_03-7" />
2290
- <g
2291
- id="_x31_04-0" />
2292
- <g
2293
- id="_x31_05-3" />
2294
- <g
2295
- id="_x31_06-4" />
2296
- <g
2297
- id="_x31_07-6" />
2298
- <g
2299
- id="_x31_08-3" />
2300
- <g
2301
- id="_x31_09-6" />
2302
- <g
2303
- id="_x31_10-3" />
2304
- <g
2305
- id="_x31_11-3" />
2306
- <g
2307
- id="_x31_12-4" />
2308
- <g
2309
- id="_x31_13-4" />
2310
- <g
2311
- id="_x31_14-3" />
2312
- <g
2313
- id="_x31_15-9" />
2314
- <g
2315
- id="_x31_16-7" />
2316
- <g
2317
- id="_x31_17-2" />
2318
- <g
2319
- id="_x31_18-5" />
2320
- <g
2321
- id="_x31_19-8" />
2322
- <g
2323
- id="_x31_20-9" />
2324
- <g
2325
- id="_x31_21-0" />
2326
- <g
2327
- id="_x31_22-2" />
2328
- <g
2329
- id="_x31_23-4" />
2330
- <g
2331
- id="_x31_24-7" />
2332
- <g
2333
- id="_x31_25-6" />
2334
- <g
2335
- id="_x31_26-5" />
2336
- <g
2337
- id="_x31_27-7" />
2338
- <g
2339
- id="_x31_28-1" />
2340
- <g
2341
- id="_x31_29-3" />
2342
- <g
2343
- id="_x31_30-3" />
2344
- <g
2345
- id="_x31_31-3" />
2346
- <g
2347
- id="_x31_32-8" />
2348
- <g
2349
- id="_x31_33-5" />
2350
- <g
2351
- id="_x31_34-1" />
2352
- <g
2353
- id="_x31_35-0" />
2354
- <g
2355
- id="_x31_36-8" />
2356
- <g
2357
- id="_x31_37-7" />
2358
- <g
2359
- id="_x31_38-6" />
2360
- <g
2361
- id="_x31_39-3" />
2362
- <g
2363
- id="_x31_40-5" />
2364
- <g
2365
- id="_x31_41-0" />
2366
- <g
2367
- id="_x31_42-8" />
2368
- <g
2369
- id="_x31_43-0" />
2370
- <g
2371
- id="_x31_44-4" />
2372
- <g
2373
- id="_x31_45-1" />
2374
- <g
2375
- id="_x31_46-1" />
2376
- <g
2377
- id="_x31_47-3" />
2378
- <g
2379
- id="_x31_48-5" />
2380
- <g
2381
- id="_x31_49-9" />
2382
- <g
2383
- id="_x31_50-3" />
2384
- <g
2385
- id="_x31_51-4" />
2386
- <g
2387
- id="_x31_52-1" />
2388
- <g
2389
- id="_x31_53-5" />
2390
- <g
2391
- id="_x31_54-0" />
2392
- <g
2393
- id="_x31_55-8" />
2394
- <g
2395
- id="_x31_56-3" />
2396
- <g
2397
- id="_x31_57-5" />
2398
- <g
2399
- id="_x31_58-6" />
2400
- <g
2401
- id="_x31_59-5" />
2402
- <g
2403
- id="_x31_60-9" />
2404
- <g
2405
- id="_x31_61-9" />
2406
- <g
2407
- id="_x31_62-0" />
2408
- <g
2409
- id="_x31_63-7" />
2410
- <g
2411
- id="_x31_64-6" />
2412
- <g
2413
- id="_x31_65-3" />
2414
- <g
2415
- id="_x31_66-7" />
2416
- <g
2417
- id="_x31_67-6" />
2418
- <g
2419
- id="_x31_68-1" />
2420
- <g
2421
- id="_x31_69-5" />
2422
- <g
2423
- id="_x31_70-0" />
2424
- <g
2425
- id="_x31_71-6" />
2426
- <g
2427
- id="_x31_72-5" />
2428
- <g
2429
- id="_x31_73-0" />
2430
- <g
2431
- id="_x31_74-8" />
2432
- <g
2433
- id="_x31_75-1" />
2434
- <g
2435
- id="_x31_76-2" />
2436
- <g
2437
- id="_x31_77-2" />
2438
- <g
2439
- id="_x31_78-6" />
2440
- <g
2441
- id="_x31_79-9" />
2442
- <g
2443
- id="_x31_80-1" />
2444
- <g
2445
- id="_x31_81-0" />
2446
- <g
2447
- id="_x31_82-4" />
2448
- <g
2449
- id="_x31_83-2" />
2450
- <g
2451
- id="_x31_84-7" />
2452
- <g
2453
- id="_x31_85-4" />
2454
- <g
2455
- id="_x31_86-0" />
2456
- <g
2457
- id="_x31_87-3" />
2458
- <g
2459
- id="_x31_88-2" />
2460
- <g
2461
- id="_x31_89-8" />
2462
- <g
2463
- id="_x31_90-0" />
2464
- </g>
2465
- <g
2466
- style="fill:#aa0000"
2467
- transform="matrix(0.01300485,0,0,0.01300485,28.297218,100.00864)"
2468
- id="5151e0c8492e5103c096af88a51e4c6f">
2469
- <g
2470
- style="fill:#aa0000"
2471
- id="g7073" />
2472
- <path
2473
- style="display:inline;fill:#aa0000"
2474
- inkscape:connector-curvature="0"
2475
- display="inline"
2476
- d="m 365.281,386.936 108.635,96.416 -213.754,-16.794 c 41.878,-25.3 76.426,-55.513 102.294,-79.567 0.426,0.083 0.879,0.129 1.332,0.129 0.495,-10e-4 0.994,-0.06 1.493,-0.184 z m 120.237,57.614 20.008,-262.045 c -9.898,25.284 -25.557,54.73 -45.857,86.172 z M 372.547,380.983 480.931,477.179 451.995,280.314 C 428.142,315.82 399.5,352.122 372.547,380.983 Z m -126.596,93.793 c -23.345,12.934 -47.373,23.235 -71.707,30.757 L 424.03,488.735 246.032,474.753 Z M 37.347,348.551 l 65.429,152.89 53.851,-178.4 z M 172.514,313.988 354.696,372.505 308.208,188.301 Z M 318.403,170.006 488.232,158.638 355.451,50.19 Z M 415.002,2.919 303.56,2.415 353.103,37.105 Z M 4.785,283.758 1.118,392.411 27.847,343.661 Z m 60.883,43.65 c 21.184,1.351 42.583,-3.343 64.17,-12.792 14.541,-6.891 29.626,-15.612 44.767,-25.863 21.715,-15.342 43.6,-34.532 65.645,-56.38 C 319.542,153.79 352.145,65.906 317.496,30.914 309.228,22.57 297.392,18.305 282.308,18.239 236.648,18.042 168.403,52.414 110.239,110.081 54.653,165.179 18.608,230.577 18.415,276.699 c -0.068,16.399 4.469,29.319 13.483,38.407 8.017,8.099 19.408,11.381 33.77,12.302 z M 231.103,472.18 c 2.486,-1.286 4.963,-2.586 7.408,-3.909 L 165.189,326.799 110.006,509.585 c 0.462,-0.06 4.189,-0.508 4.189,-0.508 4.816,-0.613 9.573,-1.318 14.271,-2.115 30.318,-5.169 60.315,-14.633 89.154,-28.139 4.564,-2.134 9.051,-4.353 13.483,-6.643 z m 149.74,-116.689 1.739,-1.996 c 1.214,-1.424 2.437,-2.875 3.654,-4.331 0,0 3.768,-4.486 5.232,-6.268 2.464,-2.98 4.913,-6.021 7.371,-9.079 2.258,-2.82 4.51,-5.649 6.758,-8.529 2.358,-3.021 4.716,-6.048 7.056,-9.134 5.297,-6.973 10.653,-14.284 16.377,-22.36 6.057,-8.544 11.908,-17.142 17.416,-25.584 l -9.931,-6.073 c -26.371,-16.125 -79.37,-48.606 -114.203,-70.003 l 45.074,178.595 c 4.199,-4.611 8.632,-9.625 13.457,-15.238 z M 508.235,67.95 368.005,48.261 501.693,157.588 c 4.697,-15.496 7.756,-30.524 9.088,-44.699 0.192,-1.987 0.315,-3.985 0.435,-5.998 0.114,-1.852 0.179,-3.711 0.229,-5.574 0.321,-12.073 -0.76,-23.288 -3.21,-33.367 z m -53.91,191.792 c 0.344,-0.453 0.729,-0.962 1.149,-1.573 2.669,-3.779 6.465,-9.962 10.686,-17.409 11.748,-20.717 26.239,-50.254 32.282,-71.993 L 324.03,180.403 c 36.379,22.356 89.521,54.924 115.942,71.084 l 14.087,8.598 c 0.084,-0.105 0.17,-0.22 0.266,-0.343 z m -209.061,206.386 0.545,-0.307 c 38.046,-21.084 72.05,-47.021 110.142,-84.087 L 170.532,321.927 Z M 0.5,411.942 c 0.819,24.146 5.943,44.081 15.241,59.391 L 24.399,368.22 Z m 33.784,-50.535 -9.99,119 c 14.234,18.62 33.252,26.935 61.528,26.935 2.848,0 5.806,-0.078 8.978,-0.233 L 89.805,494.697 C 78.996,467.845 48.152,391.248 34.284,361.407 Z M 506.144,60.604 C 504.088,54.315 501.464,48.508 498.333,43.298 485.701,22.283 463.881,8.837 433.462,3.322 l -67.961,37.531 z"
2477
- id="path7075" />
2478
- </g>
2479
- </g>
2480
- </g>
2481
- <g
2482
- transform="translate(-48.113798,-35.383788)"
2483
- id="g14559">
2484
- <text
2485
- xml:space="preserve"
2486
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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"
2487
- x="104.07261"
2488
- y="112.48086"
2489
- id="text1640-5"><tspan
2490
- sodipodi:role="line"
2491
- x="104.07261"
2492
- y="112.48086"
2493
- style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, 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"
2494
- id="tspan1667">Templates</tspan></text>
2495
- <g
2496
- id="g14547"
2497
- transform="translate(47.794039,77.392743)">
2498
- <path
2499
- style="stroke-width:0.26458332"
2500
- inkscape:connector-curvature="0"
2501
- d="m 51.155782,16.803106 v 10.101527 h 7.779015 v -8.700029 l -1.445419,-1.401498 z m 7.106444,9.428956 h -6.433609 v -8.756385 h 5.314421 v 1.067064 h 1.118923 v 7.689321 z"
2502
- id="path1418-5" />
2503
- <polygon
2504
- transform="matrix(0.26458333,0,0,0.26458333,49.779155,13.761456)"
2505
- points="35.915,41.282 35.915,43.824 39.574,43.824 39.574,10.942 34.111,5.646 10.173,5.646 10.173,10.065 12.716,10.065 12.716,8.187 32.803,8.187 32.803,12.22 37.032,12.22 37.032,41.282 "
2506
- id="polygon1420-5" />
2507
- <polygon
2508
- transform="matrix(0.26458333,0,0,0.26458333,49.779155,13.761456)"
2509
- points="42.255,35.962 41.139,35.962 41.139,38.504 44.798,38.504 44.798,5.622 39.334,0.325 15.396,0.325 15.396,4.745 17.938,4.745 17.938,2.867 38.025,2.867 38.025,6.9 42.255,6.9 "
2510
- id="polygon1422-3" />
2511
- <text
2512
- id="text14540"
2513
- y="22.571791"
2514
- x="52.773064"
2515
- style="font-style:normal;font-weight:normal;font-size:2.25679708px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.12895982px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
2516
- xml:space="preserve"><tspan
2517
- style="stroke-width:0.12895982px"
2518
- y="22.571791"
2519
- x="52.773064"
2520
- id="tspan14538"
2521
- sodipodi:role="line">&lt;/&gt;</tspan></text>
2522
- </g>
2523
- </g>
2524
- <rect
2525
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:0;fill-rule:evenodd;stroke:#cccccc;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:3, 1;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
2526
- id="rect12716-9"
2527
- width="57.40509"
2528
- height="134.93164"
2529
- x="27.156788"
2530
- y="43.257679"
2531
- ry="4.6814709" />
2532
- </g>
2533
- </g>
2534
- </svg>