rabbit-slide-kou-readable-code-workshop-for-pioneer-commit-email 2015.8.11.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: c7efc6fdfc6f8801d6050bebfd30cf9c321902ec
4
+ data.tar.gz: f6994dac3673e0196b9093669afaccb383375e2a
5
+ SHA512:
6
+ metadata.gz: 8628e35674cc9a4e389283b9d452b62f6725efa593745eda6bba393e919ae83838aa314a49188e9da85d1440813c8dce5b2996c6a08e7579f208ade33b61bf1b
7
+ data.tar.gz: 1abcc8806626a01f6559686cab3e670d6ffb56a70c3db3bef027307931ee6f56fc2fe0208b47003cf69b1a87f2dd462ed725663f3b2a114541737a52a5d4da0e
data/.rabbit ADDED
@@ -0,0 +1 @@
1
+ how-to-utilize.rab
@@ -0,0 +1,32 @@
1
+ = リーダブルコードワークショップ(パイオニア向け)のリーダブルコードの共有
2
+
3
+ リーダブルコードワークショップ(パイオニア向け)でのリーダブルコードの共有の進め方の説明。
4
+
5
+ == ライセンス
6
+
7
+ CC BY-SA 4.0
8
+
9
+ 原著作者名は以下の通りです。
10
+
11
+ * 株式会社クリアコード
12
+
13
+ == 作者向け
14
+
15
+ === 表示
16
+
17
+ rake
18
+
19
+ === 公開
20
+
21
+ rake publish
22
+
23
+ == 閲覧者向け
24
+
25
+ === インストール
26
+
27
+ gem install rabbit-slide-kou-readable-code-workshop-for-pioneer-commit-email
28
+
29
+ === 表示
30
+
31
+ rabbit rabbit-slide-kou-readable-code-workshop-for-pioneer-commit-email.gem
32
+
@@ -0,0 +1,17 @@
1
+ require "rabbit/task/slide"
2
+
3
+ # Edit ./config.yaml to customize meta data
4
+
5
+ spec = nil
6
+ Rabbit::Task::Slide.new do |task|
7
+ spec = task.spec
8
+ spec.files += Dir.glob("images/**/*.*")
9
+ # spec.files -= Dir.glob("private/**/*.*")
10
+ spec.add_runtime_dependency("rabbit-theme-clear-code")
11
+ end
12
+
13
+ desc "Tag #{spec.version}"
14
+ task :tag do
15
+ sh("git", "tag", "-a", spec.version.to_s, "-m", "Publish #{spec.version}")
16
+ sh("git", "push", "--tags")
17
+ end
@@ -0,0 +1,22 @@
1
+ ---
2
+ id: readable-code-workshop-for-pioneer-commit-email
3
+ base_name: how-to-look-back
4
+ tags:
5
+ - rabbit
6
+ - readable-code
7
+ presentation_date: 2015-08-11
8
+ version: 2015.8.11.0
9
+ licenses:
10
+ - CC BY-SA 4.0
11
+ slideshare_id: readable-code-workshop-for-pioneer-commit-email
12
+ speaker_deck_id:
13
+ ustream_id:
14
+ vimeo_id:
15
+ youtube_id:
16
+ author:
17
+ markup_language: :rd
18
+ name: Kouhei Sutou
19
+ email: kou@clear-code.com
20
+ rubygems_user: kou
21
+ slideshare_user: kou
22
+ speaker_deck_user: kou
@@ -0,0 +1,119 @@
1
+ = コミットメールの\n活かし方
2
+
3
+ : author
4
+ 須藤功平
5
+ : institution
6
+ 株式会社クリアコード
7
+ : content-source
8
+ リーダブルコードワークショップ\n
9
+ (パイオニア向け)
10
+ : date
11
+ 2015-08-11
12
+ : allotted-time
13
+ 10m
14
+ : theme
15
+ clear-code
16
+
17
+ = おさらい:今日の体験内容
18
+
19
+ * 個人として開発する
20
+ * ペアとして開発する
21
+ * ((*チームとして開発する*))
22
+ * 他メンバーのリーダブルコードを\n
23
+ 見つける
24
+ * ↑を共有する
25
+
26
+ = 目的
27
+
28
+ ペア→チームへ
29
+
30
+ = チームでループ
31
+
32
+ # image
33
+ # src = images/readable-code-feedback-loop-by-team.svg
34
+ # relative_height = 95
35
+
36
+ == プロパティー
37
+
38
+ : enable-title-on-image
39
+ false
40
+
41
+ = ペア→チーム
42
+
43
+ 読むコストが\n
44
+ 増える
45
+
46
+ = 対策
47
+
48
+ * (('wait'))読む量を減らす
49
+ * 全部読まない
50
+ * (('wait'))読み方を変える
51
+ * 詳細に読まない
52
+ * (('wait'))慣れる
53
+
54
+ = 読む量を減らす
55
+
56
+ * 1人で全部読まなくてよければ…
57
+ * 見つけた人が\n
58
+ リーダブルコードを共有
59
+ * ↑チームで分担して読めばよい
60
+
61
+ = チームで分担
62
+
63
+ # image
64
+ # src = images/readable-code-feedback-loop-by-team-one-for-all.svg
65
+ # relative_height = 95
66
+
67
+ == プロパティー
68
+
69
+ : enable-title-on-image
70
+ false
71
+
72
+ = 読み方を変える
73
+
74
+ * 1コミット当たりの\n
75
+ 読む時間を減らせれば…
76
+ * 詳細に読まない
77
+ * 見逃しても構わない
78
+ * チームの誰かが見つければよい
79
+ * 次に来たときに見つければよい
80
+
81
+ = 流し読む
82
+
83
+ # image
84
+ # src = images/readable-code-feedback-loop-by-team-loose.svg
85
+ # relative_height = 95
86
+
87
+ == プロパティー
88
+
89
+ : enable-title-on-image
90
+ false
91
+
92
+ = 慣れる
93
+
94
+ * 慣れればコストは下がる
95
+ * 徐々に慣れればよい
96
+
97
+ = コードの読み方
98
+
99
+ * これまでの方法
100
+ * チェクアウトして読む
101
+ * 今から体験する方法
102
+ * コミットを読む
103
+
104
+ = コミットを読む方法
105
+
106
+ * (('wait'))チェクアウトして(({git log}))
107
+ * pull型
108
+ * (('wait'))コミットメール
109
+ * push型:コミット毎にメールで通知\n
110
+ (('note:(メールの取得はpullだけど…)'))
111
+ * push型をオススメ:コストが低い
112
+
113
+ = やること
114
+
115
+ * コミットメールを読む
116
+ * 制限時間内に読めるだけでよい
117
+ * よいコミットを見つけたら返信
118
+ * なぜよいかを書く
119
+ * 他の人の返信を読む(共有)
@@ -0,0 +1,1473 @@
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:xlink="http://www.w3.org/1999/xlink"
11
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ width="585.5752"
14
+ height="308.55536"
15
+ id="svg2"
16
+ version="1.1"
17
+ inkscape:version="0.91 r13725"
18
+ sodipodi:docname="readable-code-feedback-loop-by-team-loose.svg"
19
+ inkscape:export-filename="readable-code-feedback-loop-side-effect.png"
20
+ inkscape:export-xdpi="90"
21
+ inkscape:export-ydpi="90">
22
+ <defs
23
+ id="defs4">
24
+ <marker
25
+ inkscape:isstock="true"
26
+ style="overflow:visible"
27
+ id="marker4563"
28
+ refX="0"
29
+ refY="0"
30
+ orient="auto"
31
+ inkscape:stockid="Arrow1Mend">
32
+ <path
33
+ transform="matrix(-0.4,0,0,-0.4,-4,0)"
34
+ style="fill:#a40000;fill-opacity:1;fill-rule:evenodd;stroke:#a40000;stroke-width:1pt;stroke-opacity:1"
35
+ d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
36
+ id="path4565"
37
+ inkscape:connector-curvature="0" />
38
+ </marker>
39
+ <marker
40
+ inkscape:stockid="Arrow1Mend"
41
+ orient="auto"
42
+ refY="0"
43
+ refX="0"
44
+ id="Arrow1Mend"
45
+ style="overflow:visible"
46
+ inkscape:isstock="true"
47
+ inkscape:collect="always">
48
+ <path
49
+ id="path4284"
50
+ d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
51
+ style="fill:#204a87;fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:1pt;stroke-opacity:1"
52
+ transform="matrix(-0.4,0,0,-0.4,-4,0)"
53
+ inkscape:connector-curvature="0" />
54
+ </marker>
55
+ <marker
56
+ inkscape:stockid="Arrow1Lend"
57
+ orient="auto"
58
+ refY="0"
59
+ refX="0"
60
+ id="Arrow1Lend"
61
+ style="overflow:visible">
62
+ <path
63
+ id="path3764"
64
+ d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
65
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
66
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
67
+ inkscape:connector-curvature="0" />
68
+ </marker>
69
+ <inkscape:perspective
70
+ id="perspective133"
71
+ inkscape:persp3d-origin="24 : 16 : 1"
72
+ inkscape:vp_z="48 : 24 : 1"
73
+ inkscape:vp_y="0 : 1000 : 0"
74
+ inkscape:vp_x="0 : 24 : 1"
75
+ sodipodi:type="inkscape:persp3d" />
76
+ <linearGradient
77
+ id="linearGradient2624">
78
+ <stop
79
+ style="stop-color:#dfe0df;stop-opacity:1;"
80
+ offset="0"
81
+ id="stop2626" />
82
+ <stop
83
+ id="stop2630"
84
+ offset="0.23809524"
85
+ style="stop-color:#a6b0a6;stop-opacity:1;" />
86
+ <stop
87
+ style="stop-color:#b5beb5;stop-opacity:1.0000000;"
88
+ offset="1.0000000"
89
+ id="stop2628" />
90
+ </linearGradient>
91
+ <linearGradient
92
+ id="linearGradient2274">
93
+ <stop
94
+ id="stop2276"
95
+ offset="0.0000000"
96
+ style="stop-color:#000000;stop-opacity:0.12871288;" />
97
+ <stop
98
+ id="stop2278"
99
+ offset="1.0000000"
100
+ style="stop-color:#000000;stop-opacity:0.0000000;" />
101
+ </linearGradient>
102
+ <linearGradient
103
+ id="linearGradient9749">
104
+ <stop
105
+ id="stop9751"
106
+ offset="0"
107
+ style="stop-color:#ffffff;stop-opacity:1;" />
108
+ <stop
109
+ id="stop9753"
110
+ offset="1.0000000"
111
+ style="stop-color:#ededed;stop-opacity:1.0000000;" />
112
+ </linearGradient>
113
+ <linearGradient
114
+ id="linearGradient15107">
115
+ <stop
116
+ id="stop15109"
117
+ offset="0.0000000"
118
+ style="stop-color:#ffffff;stop-opacity:1.0000000;" />
119
+ <stop
120
+ id="stop15111"
121
+ offset="1.0000000"
122
+ style="stop-color:#e2e2e2;stop-opacity:1.0000000;" />
123
+ </linearGradient>
124
+ <linearGradient
125
+ y2="11.981981"
126
+ x2="13.846983"
127
+ y1="11.48487"
128
+ x1="11.74217"
129
+ gradientTransform="matrix(1.276531,0,0,-1.406115,24.24763,33.3374)"
130
+ gradientUnits="userSpaceOnUse"
131
+ id="linearGradient1493"
132
+ xlink:href="#linearGradient15107"
133
+ inkscape:collect="always" />
134
+ <linearGradient
135
+ inkscape:collect="always"
136
+ xlink:href="#linearGradient3824"
137
+ id="linearGradient1372"
138
+ gradientUnits="userSpaceOnUse"
139
+ gradientTransform="translate(-12.41789,-7)"
140
+ x1="30.935921"
141
+ y1="29.553486"
142
+ x2="30.935921"
143
+ y2="35.803486" />
144
+ <linearGradient
145
+ inkscape:collect="always"
146
+ xlink:href="#linearGradient2274"
147
+ id="linearGradient1369"
148
+ gradientUnits="userSpaceOnUse"
149
+ gradientTransform="matrix(0.983375,0.181588,-0.181588,0.983375,-7.07212,-9.82492)"
150
+ x1="20.661695"
151
+ y1="35.817974"
152
+ x2="22.626925"
153
+ y2="36.217758" />
154
+ <linearGradient
155
+ inkscape:collect="always"
156
+ xlink:href="#linearGradient2274"
157
+ id="linearGradient1366"
158
+ gradientUnits="userSpaceOnUse"
159
+ gradientTransform="matrix(-0.977685,0.210075,0.210075,0.977685,41.80576,-11.11866)"
160
+ x1="22.686766"
161
+ y1="36.3904"
162
+ x2="21.408455"
163
+ y2="35.739632" />
164
+ <linearGradient
165
+ inkscape:collect="always"
166
+ xlink:href="#linearGradient2274"
167
+ id="linearGradient4366"
168
+ gradientUnits="userSpaceOnUse"
169
+ x1="22.686766"
170
+ y1="36.3904"
171
+ x2="21.408455"
172
+ y2="35.739632"
173
+ gradientTransform="matrix(-0.977685,0.210075,0.210075,0.977685,55.1096,-3.945209)" />
174
+ <linearGradient
175
+ inkscape:collect="always"
176
+ xlink:href="#linearGradient2274"
177
+ id="linearGradient4362"
178
+ x1="20.661695"
179
+ y1="35.817974"
180
+ x2="22.626925"
181
+ y2="36.217758"
182
+ gradientUnits="userSpaceOnUse"
183
+ gradientTransform="matrix(0.983375,0.181588,-0.181588,0.983375,6.231716,-2.651466)" />
184
+ <radialGradient
185
+ inkscape:collect="always"
186
+ xlink:href="#linearGradient4344"
187
+ id="radialGradient4350"
188
+ cx="16.214741"
189
+ cy="19.836468"
190
+ fx="16.214741"
191
+ fy="19.836468"
192
+ r="13.56536"
193
+ gradientTransform="matrix(1,0,0,0.681917,0,8.233773)"
194
+ gradientUnits="userSpaceOnUse" />
195
+ <linearGradient
196
+ inkscape:collect="always"
197
+ xlink:href="#linearGradient3824"
198
+ id="linearGradient4332"
199
+ gradientUnits="userSpaceOnUse"
200
+ x1="30.935921"
201
+ y1="29.553486"
202
+ x2="30.935921"
203
+ y2="35.803486"
204
+ gradientTransform="translate(-13.125,-7)" />
205
+ <linearGradient
206
+ inkscape:collect="always"
207
+ xlink:href="#linearGradient3824"
208
+ id="linearGradient4175"
209
+ gradientUnits="userSpaceOnUse"
210
+ x1="30.935921"
211
+ y1="29.553486"
212
+ x2="30.935921"
213
+ y2="35.803486"
214
+ gradientTransform="translate(0.707108,0)" />
215
+ <linearGradient
216
+ inkscape:collect="always"
217
+ xlink:href="#linearGradient3824"
218
+ id="linearGradient3830"
219
+ x1="30.935921"
220
+ y1="29.553486"
221
+ x2="30.935921"
222
+ y2="35.803486"
223
+ gradientUnits="userSpaceOnUse" />
224
+ <radialGradient
225
+ inkscape:collect="always"
226
+ xlink:href="#linearGradient3800"
227
+ id="radialGradient3806"
228
+ cx="29.344931"
229
+ cy="17.064077"
230
+ fx="29.344931"
231
+ fy="17.064077"
232
+ r="9.1620579"
233
+ gradientUnits="userSpaceOnUse" />
234
+ <linearGradient
235
+ id="linearGradient3800">
236
+ <stop
237
+ style="stop-color:#f4d9b1;stop-opacity:1.0000000;"
238
+ offset="0.0000000"
239
+ id="stop3802" />
240
+ <stop
241
+ style="stop-color:#df9725;stop-opacity:1.0000000;"
242
+ offset="1.0000000"
243
+ id="stop3804" />
244
+ </linearGradient>
245
+ <linearGradient
246
+ id="linearGradient3824">
247
+ <stop
248
+ style="stop-color:#ffffff;stop-opacity:1;"
249
+ offset="0"
250
+ id="stop3826" />
251
+ <stop
252
+ style="stop-color:#c9c9c9;stop-opacity:1.0000000;"
253
+ offset="1.0000000"
254
+ id="stop3828" />
255
+ </linearGradient>
256
+ <linearGradient
257
+ id="linearGradient4163">
258
+ <stop
259
+ style="stop-color:#3b74bc;stop-opacity:1.0000000;"
260
+ offset="0.0000000"
261
+ id="stop4165" />
262
+ <stop
263
+ style="stop-color:#2d5990;stop-opacity:1.0000000;"
264
+ offset="1.0000000"
265
+ id="stop4167" />
266
+ </linearGradient>
267
+ <linearGradient
268
+ id="linearGradient4338">
269
+ <stop
270
+ id="stop4340"
271
+ offset="0.0000000"
272
+ style="stop-color:#e9b15e;stop-opacity:1.0000000;" />
273
+ <stop
274
+ id="stop4342"
275
+ offset="1.0000000"
276
+ style="stop-color:#966416;stop-opacity:1.0000000;" />
277
+ </linearGradient>
278
+ <linearGradient
279
+ id="linearGradient4344">
280
+ <stop
281
+ style="stop-color:#727e0a;stop-opacity:1;"
282
+ offset="0"
283
+ id="stop4346" />
284
+ <stop
285
+ style="stop-color:#5b6508;stop-opacity:1.0000000;"
286
+ offset="1.0000000"
287
+ id="stop4348" />
288
+ </linearGradient>
289
+ <inkscape:perspective
290
+ id="perspective72"
291
+ inkscape:persp3d-origin="24 : 16 : 1"
292
+ inkscape:vp_z="48 : 24 : 1"
293
+ inkscape:vp_y="0 : 1000 : 0"
294
+ inkscape:vp_x="0 : 24 : 1"
295
+ sodipodi:type="inkscape:persp3d" />
296
+ <radialGradient
297
+ gradientUnits="userSpaceOnUse"
298
+ r="9.1620579"
299
+ fy="17.064077"
300
+ fx="29.344931"
301
+ cy="17.064077"
302
+ cx="29.344931"
303
+ id="radialGradient3806-2"
304
+ xlink:href="#linearGradient3800"
305
+ inkscape:collect="always" />
306
+ <radialGradient
307
+ gradientUnits="userSpaceOnUse"
308
+ r="8.6620579"
309
+ fy="19.008621"
310
+ fx="31.112698"
311
+ cy="19.008621"
312
+ cx="31.112698"
313
+ id="radialGradient3822-0"
314
+ xlink:href="#linearGradient2274"
315
+ inkscape:collect="always" />
316
+ <linearGradient
317
+ gradientUnits="userSpaceOnUse"
318
+ y2="35.803486"
319
+ x2="30.935921"
320
+ y1="29.553486"
321
+ x1="30.935921"
322
+ id="linearGradient4954"
323
+ xlink:href="#linearGradient3824"
324
+ inkscape:collect="always" />
325
+ <radialGradient
326
+ gradientUnits="userSpaceOnUse"
327
+ gradientTransform="matrix(1.297564,0,0,0.884831,-8.358505,4.940469)"
328
+ r="13.56536"
329
+ fy="27.203083"
330
+ fx="28.089741"
331
+ cy="27.203083"
332
+ cx="28.089741"
333
+ id="radialGradient4169-6"
334
+ xlink:href="#linearGradient4163"
335
+ inkscape:collect="always" />
336
+ <radialGradient
337
+ gradientTransform="matrix(0.787998,0,0,0.787998,6.221198,3.617627)"
338
+ r="9.1620579"
339
+ fy="17.064077"
340
+ fx="29.344931"
341
+ cy="17.064077"
342
+ cx="29.344931"
343
+ gradientUnits="userSpaceOnUse"
344
+ id="radialGradient4171-0"
345
+ xlink:href="#linearGradient3800"
346
+ inkscape:collect="always" />
347
+ <linearGradient
348
+ gradientTransform="translate(0.707108,0)"
349
+ y2="35.803486"
350
+ x2="30.935921"
351
+ y1="29.553486"
352
+ x1="30.935921"
353
+ gradientUnits="userSpaceOnUse"
354
+ id="linearGradient4958"
355
+ xlink:href="#linearGradient3824"
356
+ inkscape:collect="always" />
357
+ <radialGradient
358
+ r="8.6620579"
359
+ fy="19.008621"
360
+ fx="31.112698"
361
+ cy="19.008621"
362
+ cx="31.112698"
363
+ gradientUnits="userSpaceOnUse"
364
+ id="radialGradient4179-4"
365
+ xlink:href="#linearGradient2274"
366
+ inkscape:collect="always" />
367
+ <linearGradient
368
+ y2="35.803486"
369
+ x2="30.935921"
370
+ y1="29.553486"
371
+ x1="30.935921"
372
+ gradientTransform="translate(-12.41789,-7)"
373
+ gradientUnits="userSpaceOnUse"
374
+ id="linearGradient4326"
375
+ xlink:href="#linearGradient3824"
376
+ inkscape:collect="always" />
377
+ <radialGradient
378
+ r="9.1620579"
379
+ fy="17.064077"
380
+ fx="29.344931"
381
+ cy="17.064077"
382
+ cx="29.344931"
383
+ gradientTransform="matrix(0.787998,0,0,0.787998,6.221198,3.617627)"
384
+ gradientUnits="userSpaceOnUse"
385
+ id="radialGradient4328-6"
386
+ xlink:href="#linearGradient4338"
387
+ inkscape:collect="always" />
388
+ <radialGradient
389
+ r="8.6620579"
390
+ fy="19.008621"
391
+ fx="31.112698"
392
+ cy="19.008621"
393
+ cx="31.112698"
394
+ gradientUnits="userSpaceOnUse"
395
+ id="radialGradient4330-2"
396
+ xlink:href="#linearGradient2274"
397
+ inkscape:collect="always" />
398
+ <linearGradient
399
+ gradientTransform="translate(-13.125,-7)"
400
+ y2="35.803486"
401
+ x2="30.935921"
402
+ y1="29.553486"
403
+ x1="30.935921"
404
+ gradientUnits="userSpaceOnUse"
405
+ id="linearGradient4964"
406
+ xlink:href="#linearGradient3824"
407
+ inkscape:collect="always" />
408
+ <radialGradient
409
+ r="8.6620579"
410
+ fy="19.008621"
411
+ fx="31.112698"
412
+ cy="19.008621"
413
+ cx="31.112698"
414
+ gradientUnits="userSpaceOnUse"
415
+ id="radialGradient4336-2"
416
+ xlink:href="#linearGradient2274"
417
+ inkscape:collect="always" />
418
+ <radialGradient
419
+ gradientUnits="userSpaceOnUse"
420
+ gradientTransform="matrix(1,0,0,0.681917,0,8.233773)"
421
+ r="13.56536"
422
+ fy="19.836468"
423
+ fx="16.214741"
424
+ cy="19.836468"
425
+ cx="16.214741"
426
+ id="radialGradient4350-9"
427
+ xlink:href="#linearGradient4344"
428
+ inkscape:collect="always" />
429
+ <linearGradient
430
+ gradientTransform="matrix(0.983375,0.181588,-0.181588,0.983375,6.231716,-2.651466)"
431
+ gradientUnits="userSpaceOnUse"
432
+ y2="36.217758"
433
+ x2="22.626925"
434
+ y1="35.817974"
435
+ x1="20.661695"
436
+ id="linearGradient4968"
437
+ xlink:href="#linearGradient2274"
438
+ inkscape:collect="always" />
439
+ <linearGradient
440
+ gradientTransform="matrix(-0.977685,0.210075,0.210075,0.977685,55.1096,-3.945209)"
441
+ y2="35.739632"
442
+ x2="21.408455"
443
+ y1="36.3904"
444
+ x1="22.686766"
445
+ gradientUnits="userSpaceOnUse"
446
+ id="linearGradient4970"
447
+ xlink:href="#linearGradient2274"
448
+ inkscape:collect="always" />
449
+ <linearGradient
450
+ y2="36.217758"
451
+ x2="22.626925"
452
+ y1="35.817974"
453
+ x1="20.661695"
454
+ gradientTransform="matrix(0.983375,0.181588,-0.181588,0.983375,-7.07212,-9.82492)"
455
+ gradientUnits="userSpaceOnUse"
456
+ id="linearGradient4372"
457
+ xlink:href="#linearGradient2274"
458
+ inkscape:collect="always" />
459
+ <linearGradient
460
+ y2="35.739632"
461
+ x2="21.408455"
462
+ y1="36.3904"
463
+ x1="22.686766"
464
+ gradientTransform="matrix(-0.977685,0.210075,0.210075,0.977685,41.80576,-11.11866)"
465
+ gradientUnits="userSpaceOnUse"
466
+ id="linearGradient4374"
467
+ xlink:href="#linearGradient2274"
468
+ inkscape:collect="always" />
469
+ <linearGradient
470
+ y2="35.739632"
471
+ x2="21.408455"
472
+ y1="36.3904"
473
+ x1="22.686766"
474
+ gradientTransform="matrix(-0.977685,0.210075,0.210075,0.977685,41.80576,-11.11866)"
475
+ gradientUnits="userSpaceOnUse"
476
+ id="linearGradient4974"
477
+ xlink:href="#linearGradient2274"
478
+ inkscape:collect="always" />
479
+ <linearGradient
480
+ y2="36.217758"
481
+ x2="22.626925"
482
+ y1="35.817974"
483
+ x1="20.661695"
484
+ gradientTransform="matrix(0.983375,0.181588,-0.181588,0.983375,-7.07212,-9.82492)"
485
+ gradientUnits="userSpaceOnUse"
486
+ id="linearGradient4976"
487
+ xlink:href="#linearGradient2274"
488
+ inkscape:collect="always" />
489
+ <linearGradient
490
+ y2="35.803486"
491
+ x2="30.935921"
492
+ y1="29.553486"
493
+ x1="30.935921"
494
+ gradientTransform="translate(-12.41789,-7)"
495
+ gradientUnits="userSpaceOnUse"
496
+ id="linearGradient4978"
497
+ xlink:href="#linearGradient3824"
498
+ inkscape:collect="always" />
499
+ <radialGradient
500
+ r="13.56536"
501
+ fy="19.836468"
502
+ fx="16.214741"
503
+ cy="19.836468"
504
+ cx="16.214741"
505
+ gradientTransform="matrix(1,0,0,0.681917,0,8.233773)"
506
+ gradientUnits="userSpaceOnUse"
507
+ id="radialGradient1381-1"
508
+ xlink:href="#linearGradient4344"
509
+ inkscape:collect="always" />
510
+ <radialGradient
511
+ inkscape:collect="always"
512
+ xlink:href="#linearGradient2274"
513
+ id="radialGradient4291"
514
+ gradientUnits="userSpaceOnUse"
515
+ cx="31.112698"
516
+ cy="19.008621"
517
+ fx="31.112698"
518
+ fy="19.008621"
519
+ r="8.6620579" />
520
+ <radialGradient
521
+ inkscape:collect="always"
522
+ xlink:href="#linearGradient4344"
523
+ id="radialGradient4293"
524
+ gradientUnits="userSpaceOnUse"
525
+ gradientTransform="matrix(1,0,0,0.681917,0,8.233773)"
526
+ cx="16.214741"
527
+ cy="19.836468"
528
+ fx="16.214741"
529
+ fy="19.836468"
530
+ r="13.56536" />
531
+ <radialGradient
532
+ inkscape:collect="always"
533
+ xlink:href="#linearGradient2274"
534
+ id="radialGradient4295"
535
+ gradientUnits="userSpaceOnUse"
536
+ cx="31.112698"
537
+ cy="19.008621"
538
+ fx="31.112698"
539
+ fy="19.008621"
540
+ r="8.6620579" />
541
+ <radialGradient
542
+ inkscape:collect="always"
543
+ xlink:href="#linearGradient4338"
544
+ id="radialGradient4297"
545
+ gradientUnits="userSpaceOnUse"
546
+ gradientTransform="matrix(0.787998,0,0,0.787998,6.221198,3.617627)"
547
+ cx="29.344931"
548
+ cy="17.064077"
549
+ fx="29.344931"
550
+ fy="17.064077"
551
+ r="9.1620579" />
552
+ <linearGradient
553
+ inkscape:collect="always"
554
+ xlink:href="#linearGradient3824"
555
+ id="linearGradient4299"
556
+ gradientUnits="userSpaceOnUse"
557
+ gradientTransform="translate(-12.41789,-7)"
558
+ x1="30.935921"
559
+ y1="29.553486"
560
+ x2="30.935921"
561
+ y2="35.803486" />
562
+ <linearGradient
563
+ inkscape:collect="always"
564
+ xlink:href="#linearGradient2274"
565
+ id="linearGradient4301"
566
+ gradientUnits="userSpaceOnUse"
567
+ gradientTransform="matrix(0.983375,0.181588,-0.181588,0.983375,-7.07212,-9.82492)"
568
+ x1="20.661695"
569
+ y1="35.817974"
570
+ x2="22.626925"
571
+ y2="36.217758" />
572
+ <linearGradient
573
+ inkscape:collect="always"
574
+ xlink:href="#linearGradient2274"
575
+ id="linearGradient4303"
576
+ gradientUnits="userSpaceOnUse"
577
+ gradientTransform="matrix(-0.977685,0.210075,0.210075,0.977685,41.80576,-11.11866)"
578
+ x1="22.686766"
579
+ y1="36.3904"
580
+ x2="21.408455"
581
+ y2="35.739632" />
582
+ <radialGradient
583
+ inkscape:collect="always"
584
+ xlink:href="#linearGradient2274"
585
+ id="radialGradient4347"
586
+ gradientUnits="userSpaceOnUse"
587
+ cx="31.112698"
588
+ cy="19.008621"
589
+ fx="31.112698"
590
+ fy="19.008621"
591
+ r="8.6620579" />
592
+ <radialGradient
593
+ inkscape:collect="always"
594
+ xlink:href="#linearGradient4344"
595
+ id="radialGradient4349"
596
+ gradientUnits="userSpaceOnUse"
597
+ gradientTransform="matrix(1,0,0,0.681917,0,8.233773)"
598
+ cx="16.214741"
599
+ cy="19.836468"
600
+ fx="16.214741"
601
+ fy="19.836468"
602
+ r="13.56536" />
603
+ <radialGradient
604
+ inkscape:collect="always"
605
+ xlink:href="#linearGradient2274"
606
+ id="radialGradient4351"
607
+ gradientUnits="userSpaceOnUse"
608
+ cx="31.112698"
609
+ cy="19.008621"
610
+ fx="31.112698"
611
+ fy="19.008621"
612
+ r="8.6620579" />
613
+ <radialGradient
614
+ inkscape:collect="always"
615
+ xlink:href="#linearGradient4338"
616
+ id="radialGradient4353"
617
+ gradientUnits="userSpaceOnUse"
618
+ gradientTransform="matrix(0.787998,0,0,0.787998,6.221198,3.617627)"
619
+ cx="29.344931"
620
+ cy="17.064077"
621
+ fx="29.344931"
622
+ fy="17.064077"
623
+ r="9.1620579" />
624
+ <linearGradient
625
+ inkscape:collect="always"
626
+ xlink:href="#linearGradient3824"
627
+ id="linearGradient4355"
628
+ gradientUnits="userSpaceOnUse"
629
+ gradientTransform="translate(-12.41789,-7)"
630
+ x1="30.935921"
631
+ y1="29.553486"
632
+ x2="30.935921"
633
+ y2="35.803486" />
634
+ <linearGradient
635
+ inkscape:collect="always"
636
+ xlink:href="#linearGradient2274"
637
+ id="linearGradient4357"
638
+ gradientUnits="userSpaceOnUse"
639
+ gradientTransform="matrix(0.983375,0.181588,-0.181588,0.983375,-7.07212,-9.82492)"
640
+ x1="20.661695"
641
+ y1="35.817974"
642
+ x2="22.626925"
643
+ y2="36.217758" />
644
+ <linearGradient
645
+ inkscape:collect="always"
646
+ xlink:href="#linearGradient2274"
647
+ id="linearGradient4359"
648
+ gradientUnits="userSpaceOnUse"
649
+ gradientTransform="matrix(-0.977685,0.210075,0.210075,0.977685,41.80576,-11.11866)"
650
+ x1="22.686766"
651
+ y1="36.3904"
652
+ x2="21.408455"
653
+ y2="35.739632" />
654
+ <radialGradient
655
+ inkscape:collect="always"
656
+ xlink:href="#linearGradient2274"
657
+ id="radialGradient4385"
658
+ gradientUnits="userSpaceOnUse"
659
+ cx="31.112698"
660
+ cy="19.008621"
661
+ fx="31.112698"
662
+ fy="19.008621"
663
+ r="8.6620579" />
664
+ <radialGradient
665
+ inkscape:collect="always"
666
+ xlink:href="#linearGradient4163"
667
+ id="radialGradient4387"
668
+ gradientUnits="userSpaceOnUse"
669
+ gradientTransform="matrix(1.297564,0,0,0.884831,-8.358505,4.940469)"
670
+ cx="28.089741"
671
+ cy="27.203083"
672
+ fx="28.089741"
673
+ fy="27.203083"
674
+ r="13.56536" />
675
+ <linearGradient
676
+ inkscape:collect="always"
677
+ xlink:href="#linearGradient3824"
678
+ id="linearGradient4389"
679
+ gradientUnits="userSpaceOnUse"
680
+ x1="30.935921"
681
+ y1="29.553486"
682
+ x2="30.935921"
683
+ y2="35.803486" />
684
+ <radialGradient
685
+ inkscape:collect="always"
686
+ xlink:href="#linearGradient2274"
687
+ id="radialGradient4391"
688
+ gradientUnits="userSpaceOnUse"
689
+ cx="31.112698"
690
+ cy="19.008621"
691
+ fx="31.112698"
692
+ fy="19.008621"
693
+ r="8.6620579" />
694
+ <radialGradient
695
+ inkscape:collect="always"
696
+ xlink:href="#linearGradient3800"
697
+ id="radialGradient4393"
698
+ gradientUnits="userSpaceOnUse"
699
+ gradientTransform="matrix(0.787998,0,0,0.787998,6.221198,3.617627)"
700
+ cx="29.344931"
701
+ cy="17.064077"
702
+ fx="29.344931"
703
+ fy="17.064077"
704
+ r="9.1620579" />
705
+ <linearGradient
706
+ inkscape:collect="always"
707
+ xlink:href="#linearGradient2274"
708
+ id="linearGradient4395"
709
+ gradientUnits="userSpaceOnUse"
710
+ gradientTransform="matrix(0.983375,0.181588,-0.181588,0.983375,6.231716,-2.651466)"
711
+ x1="20.661695"
712
+ y1="35.817974"
713
+ x2="22.626925"
714
+ y2="36.217758" />
715
+ <linearGradient
716
+ inkscape:collect="always"
717
+ xlink:href="#linearGradient2274"
718
+ id="linearGradient4397"
719
+ gradientUnits="userSpaceOnUse"
720
+ gradientTransform="matrix(-0.977685,0.210075,0.210075,0.977685,55.1096,-3.945209)"
721
+ x1="22.686766"
722
+ y1="36.3904"
723
+ x2="21.408455"
724
+ y2="35.739632" />
725
+ <radialGradient
726
+ inkscape:collect="always"
727
+ xlink:href="#linearGradient2274"
728
+ id="radialGradient4423"
729
+ gradientUnits="userSpaceOnUse"
730
+ cx="31.112698"
731
+ cy="19.008621"
732
+ fx="31.112698"
733
+ fy="19.008621"
734
+ r="8.6620579" />
735
+ <radialGradient
736
+ inkscape:collect="always"
737
+ xlink:href="#linearGradient4163"
738
+ id="radialGradient4425"
739
+ gradientUnits="userSpaceOnUse"
740
+ gradientTransform="matrix(1.297564,0,0,0.884831,-8.358505,4.940469)"
741
+ cx="28.089741"
742
+ cy="27.203083"
743
+ fx="28.089741"
744
+ fy="27.203083"
745
+ r="13.56536" />
746
+ <linearGradient
747
+ inkscape:collect="always"
748
+ xlink:href="#linearGradient3824"
749
+ id="linearGradient4427"
750
+ gradientUnits="userSpaceOnUse"
751
+ x1="30.935921"
752
+ y1="29.553486"
753
+ x2="30.935921"
754
+ y2="35.803486" />
755
+ <radialGradient
756
+ inkscape:collect="always"
757
+ xlink:href="#linearGradient2274"
758
+ id="radialGradient4429"
759
+ gradientUnits="userSpaceOnUse"
760
+ cx="31.112698"
761
+ cy="19.008621"
762
+ fx="31.112698"
763
+ fy="19.008621"
764
+ r="8.6620579" />
765
+ <radialGradient
766
+ inkscape:collect="always"
767
+ xlink:href="#linearGradient3800"
768
+ id="radialGradient4431"
769
+ gradientUnits="userSpaceOnUse"
770
+ gradientTransform="matrix(0.787998,0,0,0.787998,6.221198,3.617627)"
771
+ cx="29.344931"
772
+ cy="17.064077"
773
+ fx="29.344931"
774
+ fy="17.064077"
775
+ r="9.1620579" />
776
+ <linearGradient
777
+ inkscape:collect="always"
778
+ xlink:href="#linearGradient2274"
779
+ id="linearGradient4433"
780
+ gradientUnits="userSpaceOnUse"
781
+ gradientTransform="matrix(0.983375,0.181588,-0.181588,0.983375,6.231716,-2.651466)"
782
+ x1="20.661695"
783
+ y1="35.817974"
784
+ x2="22.626925"
785
+ y2="36.217758" />
786
+ <linearGradient
787
+ inkscape:collect="always"
788
+ xlink:href="#linearGradient2274"
789
+ id="linearGradient4435"
790
+ gradientUnits="userSpaceOnUse"
791
+ gradientTransform="matrix(-0.977685,0.210075,0.210075,0.977685,55.1096,-3.945209)"
792
+ x1="22.686766"
793
+ y1="36.3904"
794
+ x2="21.408455"
795
+ y2="35.739632" />
796
+ </defs>
797
+ <sodipodi:namedview
798
+ id="base"
799
+ pagecolor="#ffffff"
800
+ bordercolor="#666666"
801
+ borderopacity="1.0"
802
+ inkscape:pageopacity="0.0"
803
+ inkscape:pageshadow="2"
804
+ inkscape:zoom="1.5428021"
805
+ inkscape:cx="363.99213"
806
+ inkscape:cy="197.78173"
807
+ inkscape:document-units="px"
808
+ inkscape:current-layer="layer1"
809
+ showgrid="false"
810
+ inkscape:window-width="1237"
811
+ inkscape:window-height="817"
812
+ inkscape:window-x="2271"
813
+ inkscape:window-y="36"
814
+ inkscape:window-maximized="0"
815
+ fit-margin-top="10"
816
+ fit-margin-left="78"
817
+ fit-margin-right="10"
818
+ fit-margin-bottom="10" />
819
+ <metadata
820
+ id="metadata7">
821
+ <rdf:RDF>
822
+ <cc:Work
823
+ rdf:about="">
824
+ <dc:format>image/svg+xml</dc:format>
825
+ <dc:type
826
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
827
+ <dc:title></dc:title>
828
+ </cc:Work>
829
+ </rdf:RDF>
830
+ </metadata>
831
+ <g
832
+ inkscape:label="レイヤー 1"
833
+ inkscape:groupmode="layer"
834
+ id="layer1"
835
+ transform="translate(26.559967,-236.04138)">
836
+ <text
837
+ xml:space="preserve"
838
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
839
+ x="224.52937"
840
+ y="389.34064"
841
+ id="text4406"
842
+ sodipodi:linespacing="125%"><tspan
843
+ sodipodi:role="line"
844
+ id="tspan3352"
845
+ x="224.52937"
846
+ y="389.34064">チーム</tspan></text>
847
+ <text
848
+ xml:space="preserve"
849
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#a40000;fill-opacity:1;stroke:none"
850
+ x="270.38873"
851
+ y="501.73541"
852
+ id="text5534"
853
+ sodipodi:linespacing="125%"><tspan
854
+ sodipodi:role="line"
855
+ id="tspan4633"
856
+ x="270.38873"
857
+ y="501.73541">読まれるし</tspan><tspan
858
+ sodipodi:role="line"
859
+ id="tspan4635"
860
+ x="270.38873"
861
+ y="532.98541">リーダブルコードを書こう!</tspan></text>
862
+ <path
863
+ style="opacity:1;fill:none;fill-opacity:0.49803922;stroke:#204a87;stroke-width:2.18700004;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#Arrow1Mend)"
864
+ d="m 304.70398,282.75817 a 95.360878,95.360878 0 0 1 74.12685,92.96673 95.360878,95.360878 0 0 1 -74.12275,92.9658"
865
+ id="path3443"
866
+ inkscape:connector-curvature="0" />
867
+ <path
868
+ style="opacity:1;fill:none;fill-opacity:0.49803922;stroke:#a40000;stroke-width:2.18692946;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4563)"
869
+ d="m 232.79039,467.03417 a 95.360878,95.360878 0 0 1 -68.0771,-91.37447 95.360878,95.360878 0 0 1 68.06528,-91.37093"
870
+ id="path3424"
871
+ inkscape:connector-curvature="0" />
872
+ <text
873
+ sodipodi:linespacing="125%"
874
+ id="text4617"
875
+ y="441.42209"
876
+ x="231.48227"
877
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#a40000;fill-opacity:1;stroke:none"
878
+ xml:space="preserve"><tspan
879
+ sodipodi:role="line"
880
+ id="tspan4621"
881
+ x="231.48227"
882
+ y="441.42209">書く</tspan></text>
883
+ <text
884
+ xml:space="preserve"
885
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#204a87;fill-opacity:1;stroke:none"
886
+ x="313.4664"
887
+ y="331.54074"
888
+ id="text4623"
889
+ sodipodi:linespacing="125%"><tspan
890
+ sodipodi:role="line"
891
+ id="tspan4629"
892
+ x="313.4664"
893
+ y="331.54074">読む</tspan></text>
894
+ <g
895
+ id="g4323"
896
+ inkscape:label="cipek"
897
+ style="display:inline"
898
+ transform="matrix(1.1596899,0,0,1.1596899,256.09116,424.45671)">
899
+ <circle
900
+ r="8.6620579"
901
+ cy="19.008621"
902
+ cx="31.112698"
903
+ transform="matrix(1.77551,0,0,0.959183,-37.37822,11.77153)"
904
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient4347);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
905
+ id="circle4325" />
906
+ <path
907
+ inkscape:connector-curvature="0"
908
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient4349);fill-opacity:1;fill-rule:evenodd;stroke:#404604;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
909
+ d="m 12.861174,34.636039 10.606602,0 c 3.005204,0 5.980484,-1.101932 7.071067,-4.242641 1.035639,-2.982476 0.176777,-8.662058 -6.540737,-13.258252 l -12.551146,0 c -6.717514,4.24264 -7.556991,10.044831 -6.010407,13.435028 1.575595,3.45379 4.24264,4.065865 7.424621,4.065865 z"
910
+ id="path4327"
911
+ sodipodi:nodetypes="cczcczc" />
912
+ <path
913
+ inkscape:connector-curvature="0"
914
+ sodipodi:nodetypes="cccc"
915
+ id="path4329"
916
+ d="m 17.932367,19.786797 c 0,0 -2.151323,1.660335 -1.965991,3.660533 -2.041226,-1.800794 -2.099873,-5.251524 -2.099873,-5.251524 l 4.065864,1.590991 z"
917
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#9db029;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
918
+ <path
919
+ inkscape:connector-curvature="0"
920
+ sodipodi:nodetypes="cczcczc"
921
+ id="path4331"
922
+ d="m 12.966639,33.571836 10.31667,0 c 2.639723,0 5.253161,-0.967919 6.211112,-3.726667 0.909689,-2.61976 -0.09472,-7.608614 -5.995279,-11.645837 l -11.524725,0 c -5.900557,3.726667 -6.88794,8.823219 -5.529446,11.801114 1.383978,3.033754 3.726667,3.57139 6.521668,3.57139 z"
923
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.21518986;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999976px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
924
+ <path
925
+ inkscape:connector-curvature="0"
926
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#9db029;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
927
+ d="m 18.910795,19.786797 c 0,0 2.151323,1.660335 1.965991,3.660533 2.041226,-1.800794 2.099873,-5.251524 2.099873,-5.251524 l -4.065864,1.590991 z"
928
+ id="path4333"
929
+ sodipodi:nodetypes="cccc" />
930
+ <circle
931
+ r="8.6620579"
932
+ cy="19.008621"
933
+ cx="31.112698"
934
+ id="circle4335"
935
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient4351);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
936
+ transform="translate(-13.25,-3.5)" />
937
+ <circle
938
+ r="8.6620579"
939
+ cy="19.008621"
940
+ cx="31.112698"
941
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient4353);fill-opacity:1;fill-rule:evenodd;stroke:#6f4709;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
942
+ id="circle4337"
943
+ transform="translate(-13.125,-7)" />
944
+ <circle
945
+ r="8.6620579"
946
+ cy="19.008621"
947
+ cx="31.112698"
948
+ id="circle4339"
949
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12658231;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.14012825px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
950
+ transform="matrix(0.877095,0,0,0.877095,-9.301073,-4.663733)" />
951
+ <path
952
+ inkscape:connector-curvature="0"
953
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4355);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
954
+ d="m 22.583894,27.034641 4.24264,0 -2.474873,-2.298097 -0.53033,0.707107 -0.530331,-0.53033 -0.707106,2.12132 z"
955
+ id="path4341" />
956
+ <path
957
+ inkscape:connector-curvature="0"
958
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.22784807;fill:url(#linearGradient4357);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
959
+ d="m 8.5479535,33.601747 c -1.247607,-0.544969 -1.805994,-1.858277 -1.805994,-1.858277 0.841281,-4.069136 3.7199255,-7.046216 3.7199255,-7.046216 0,0 -2.2793215,6.411514 -1.9139315,8.904493 z"
960
+ id="path4343"
961
+ sodipodi:nodetypes="cccc" />
962
+ <path
963
+ inkscape:connector-curvature="0"
964
+ sodipodi:nodetypes="cccc"
965
+ id="path4345"
966
+ d="m 27.453661,32.743396 c 1.231251,-0.580978 1.80438,-2.002321 1.80438,-2.002321 -0.95912,-4.042983 -3.976149,-6.842821 -3.976149,-6.842821 0,0 2.464593,6.342602 2.171769,8.845142 z"
967
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.22784807;fill:url(#linearGradient4359);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
968
+ </g>
969
+ <g
970
+ id="layer1-9"
971
+ inkscape:label="cipek"
972
+ style="display:inline"
973
+ transform="matrix(1.1596899,0,0,1.1596899,248.09116,430.45671)">
974
+ <circle
975
+ r="8.6620579"
976
+ cy="19.008621"
977
+ cx="31.112698"
978
+ transform="matrix(1.77551,0,0,0.959183,-37.37822,11.77153)"
979
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient4336-2);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
980
+ id="path4177-2" />
981
+ <path
982
+ inkscape:connector-curvature="0"
983
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient1381-1);fill-opacity:1;fill-rule:evenodd;stroke:#404604;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
984
+ d="m 12.861174,34.636039 10.606602,0 c 3.005204,0 5.980484,-1.101932 7.071067,-4.242641 1.035639,-2.982476 0.176777,-8.662058 -6.540737,-13.258252 l -12.551146,0 c -6.717514,4.24264 -7.556991,10.044831 -6.010407,13.435028 1.575595,3.45379 4.24264,4.065865 7.424621,4.065865 z"
985
+ id="path2329-4"
986
+ sodipodi:nodetypes="cczcczc" />
987
+ <path
988
+ inkscape:connector-curvature="0"
989
+ sodipodi:nodetypes="cccc"
990
+ id="path3812-6"
991
+ d="m 17.932367,19.786797 c 0,0 -2.151323,1.660335 -1.965991,3.660533 -2.041226,-1.800794 -2.099873,-5.251524 -2.099873,-5.251524 l 4.065864,1.590991 z"
992
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#9db029;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
993
+ <path
994
+ inkscape:connector-curvature="0"
995
+ sodipodi:nodetypes="cczcczc"
996
+ id="path3838-6"
997
+ d="m 12.966639,33.571836 10.31667,0 c 2.639723,0 5.253161,-0.967919 6.211112,-3.726667 0.909689,-2.61976 -0.09472,-7.608614 -5.995279,-11.645837 l -11.524725,0 c -5.900557,3.726667 -6.88794,8.823219 -5.529446,11.801114 1.383978,3.033754 3.726667,3.57139 6.521668,3.57139 z"
998
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.21518986;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999976px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
999
+ <path
1000
+ inkscape:connector-curvature="0"
1001
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#9db029;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1002
+ d="m 18.910795,19.786797 c 0,0 2.151323,1.660335 1.965991,3.660533 2.041226,-1.800794 2.099873,-5.251524 2.099873,-5.251524 l -4.065864,1.590991 z"
1003
+ id="path3810-7"
1004
+ sodipodi:nodetypes="cccc" />
1005
+ <circle
1006
+ r="8.6620579"
1007
+ cy="19.008621"
1008
+ cx="31.112698"
1009
+ id="path3814-8"
1010
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient4330-2);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1011
+ transform="translate(-13.25,-3.5)" />
1012
+ <circle
1013
+ r="8.6620579"
1014
+ cy="19.008621"
1015
+ cx="31.112698"
1016
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient4328-6);fill-opacity:1;fill-rule:evenodd;stroke:#6f4709;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1017
+ id="path2327-0"
1018
+ transform="translate(-13.125,-7)" />
1019
+ <circle
1020
+ r="8.6620579"
1021
+ cy="19.008621"
1022
+ cx="31.112698"
1023
+ id="path3834-8"
1024
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12658231;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.14012825px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1025
+ transform="matrix(0.877095,0,0,0.877095,-9.301073,-4.663733)" />
1026
+ <path
1027
+ inkscape:connector-curvature="0"
1028
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient1372);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1029
+ d="m 22.583894,27.034641 4.24264,0 -2.474873,-2.298097 -0.53033,0.707107 -0.530331,-0.53033 -0.707106,2.12132 z"
1030
+ id="path4173-8" />
1031
+ <path
1032
+ inkscape:connector-curvature="0"
1033
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.22784807;fill:url(#linearGradient1369);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1034
+ d="m 8.5479535,33.601747 c -1.247607,-0.544969 -1.805994,-1.858277 -1.805994,-1.858277 0.841281,-4.069136 3.7199255,-7.046216 3.7199255,-7.046216 0,0 -2.2793215,6.411514 -1.9139315,8.904493 z"
1035
+ id="path4368-9"
1036
+ sodipodi:nodetypes="cccc" />
1037
+ <path
1038
+ inkscape:connector-curvature="0"
1039
+ sodipodi:nodetypes="cccc"
1040
+ id="path4370-4"
1041
+ d="m 27.453661,32.743396 c 1.231251,-0.580978 1.80438,-2.002321 1.80438,-2.002321 -0.95912,-4.042983 -3.976149,-6.842821 -3.976149,-6.842821 0,0 2.464593,6.342602 2.171769,8.845142 z"
1042
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.22784807;fill:url(#linearGradient1366);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
1043
+ </g>
1044
+ <g
1045
+ id="layer2-9"
1046
+ inkscape:label="dalsi cipek"
1047
+ style="display:inline"
1048
+ transform="matrix(1.1596899,0,0,1.1596899,236.87023,255.36666)">
1049
+ <circle
1050
+ r="8.6620579"
1051
+ cy="19.008621"
1052
+ cx="31.112698"
1053
+ transform="matrix(1.77551,0,0,0.583984,-24.25322,28.27856)"
1054
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient4179-4);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1055
+ id="path4306-4" />
1056
+ <path
1057
+ inkscape:connector-curvature="0"
1058
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient4169-6);fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1059
+ d="m 25.986174,41.636039 10.606602,0 c 3.005204,0 5.980484,-1.101932 7.071067,-4.242641 1.035639,-2.982476 0.176777,-8.662058 -6.540737,-13.258252 l -12.551146,0 c -6.717514,4.24264 -7.556991,10.044831 -6.010407,13.435028 1.575595,3.45379 4.24264,4.065865 7.424621,4.065865 z"
1060
+ id="path4308-9"
1061
+ sodipodi:nodetypes="cczcczc" />
1062
+ <path
1063
+ inkscape:connector-curvature="0"
1064
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3830);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1065
+ d="m 26.693281,25.726136 c 3.18198,2.828427 4.596194,13.081476 4.596194,13.081476 0,0 1.414213,-10.253048 3.889087,-13.258252 l -8.485281,0.176776 z"
1066
+ id="path4310-9"
1067
+ sodipodi:nodetypes="cccc" />
1068
+ <path
1069
+ inkscape:connector-curvature="0"
1070
+ sodipodi:nodetypes="cccc"
1071
+ id="path4312-0"
1072
+ d="m 28.972721,26.786797 c 0,0 -2.151323,1.660335 -1.965991,3.660533 -2.041226,-1.800794 -2.099873,-5.251524 -2.099873,-5.251524 l 4.065864,1.590991 z"
1073
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
1074
+ <path
1075
+ inkscape:connector-curvature="0"
1076
+ sodipodi:nodetypes="cczcczc"
1077
+ id="path4314-2"
1078
+ d="m 25.914862,40.593933 10.493447,-0.0221 c 2.639723,0 5.253161,-0.967919 6.211112,-3.726667 0.909689,-2.61976 -0.09472,-7.608614 -5.995279,-11.645837 L 25.099417,24.956264 c -5.900557,3.726667 -7.04262,8.823219 -5.662029,12.044182 1.380592,3.220963 3.395211,3.57139 6.477474,3.593487 z"
1079
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.21518986;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999976px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
1080
+ <path
1081
+ inkscape:connector-curvature="0"
1082
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1083
+ d="m 33.410795,26.786797 c 0,0 2.151323,1.660335 1.965991,3.660533 2.041226,-1.800794 2.099873,-5.251524 2.099873,-5.251524 l -4.065864,1.590991 z"
1084
+ id="path4316-9"
1085
+ sodipodi:nodetypes="cccc" />
1086
+ <circle
1087
+ r="8.6620579"
1088
+ cy="19.008621"
1089
+ cx="31.112698"
1090
+ id="path4318-5"
1091
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient3822-0);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1092
+ transform="translate(-0.125,3.5)" />
1093
+ <circle
1094
+ r="8.6620579"
1095
+ cy="19.008621"
1096
+ cx="31.112698"
1097
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient4171-0);fill-opacity:1;fill-rule:evenodd;stroke:#c17d11;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1098
+ id="path4320-4" />
1099
+ <circle
1100
+ r="8.6620579"
1101
+ cy="19.008621"
1102
+ cx="31.112698"
1103
+ id="path4322-9"
1104
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.19620254;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.14012825px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1105
+ transform="matrix(0.877095,0,0,0.877095,3.823927,2.336267)" />
1106
+ <path
1107
+ inkscape:connector-curvature="0"
1108
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.22784807;fill:url(#linearGradient4362);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1109
+ d="m 21.85179,40.775197 c -1.247607,-0.544969 -1.805994,-1.858277 -1.805994,-1.858277 0.841281,-4.069136 3.719925,-7.046216 3.719925,-7.046216 0,0 -2.279321,6.411514 -1.913931,8.904493 z"
1110
+ id="path4354-3"
1111
+ sodipodi:nodetypes="cccc" />
1112
+ <path
1113
+ inkscape:connector-curvature="0"
1114
+ sodipodi:nodetypes="cccc"
1115
+ id="path4364-4"
1116
+ d="m 40.757497,39.916846 c 1.231251,-0.580978 1.80438,-2.002321 1.80438,-2.002321 -0.95912,-4.042983 -3.976149,-6.842821 -3.976149,-6.842821 0,0 2.464593,6.342602 2.171769,8.845142 z"
1117
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.22784807;fill:url(#linearGradient4366);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
1118
+ </g>
1119
+ <text
1120
+ sodipodi:linespacing="125%"
1121
+ id="text5548"
1122
+ y="266.89099"
1123
+ x="267.0603"
1124
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#204a87;fill-opacity:1;stroke:none"
1125
+ xml:space="preserve"><tspan
1126
+ sodipodi:role="line"
1127
+ id="tspan4631"
1128
+ x="267.0603"
1129
+ y="266.89099">リーダブルコードはないかな?</tspan></text>
1130
+ <path
1131
+ style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#204a87;stroke-width:2.18700004;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
1132
+ d="m 328.34186,347.51642 214.57989,0 c 2.77,0 5,2.23 5,5 l 0,50.9574 c 0,2.77 -2.23,5 -5,5 l -214.57989,0 c -2.77,0 -5,-2.23 -5,-5 l 0,-50.9574 c 0,-1.49196 -7.00166,-11.79999 -5.97186,-12.71457 0.88214,-0.78344 9.69382,7.71457 10.97186,7.71457 z"
1133
+ id="rect4280"
1134
+ inkscape:connector-curvature="0"
1135
+ sodipodi:nodetypes="ssssssssss" />
1136
+ <text
1137
+ xml:space="preserve"
1138
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr;text-anchor:middle;fill:#204a87;fill-opacity:1;stroke:none;"
1139
+ x="440.91168"
1140
+ y="373.72803"
1141
+ id="text4272"
1142
+ sodipodi:linespacing="125%"><tspan
1143
+ sodipodi:role="line"
1144
+ id="tspan4424"
1145
+ x="440.91168"
1146
+ y="373.72803">お、リーダブルコードだなぁ。</tspan><tspan
1147
+ sodipodi:role="line"
1148
+ id="tspan4426"
1149
+ x="440.91168"
1150
+ y="392.47803">みんな、こんなの見つけたよ!</tspan></text>
1151
+ <g
1152
+ transform="matrix(1.1596899,0,0,1.1596899,240.09116,436.45671)"
1153
+ style="display:inline"
1154
+ inkscape:label="cipek"
1155
+ id="g4266">
1156
+ <circle
1157
+ id="circle4268"
1158
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient4291);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1159
+ transform="matrix(1.77551,0,0,0.959183,-37.37822,11.77153)"
1160
+ cx="31.112698"
1161
+ cy="19.008621"
1162
+ r="8.6620579" />
1163
+ <path
1164
+ sodipodi:nodetypes="cczcczc"
1165
+ id="path4270"
1166
+ d="m 12.861174,34.636039 10.606602,0 c 3.005204,0 5.980484,-1.101932 7.071067,-4.242641 1.035639,-2.982476 0.176777,-8.662058 -6.540737,-13.258252 l -12.551146,0 c -6.717514,4.24264 -7.556991,10.044831 -6.010407,13.435028 1.575595,3.45379 4.24264,4.065865 7.424621,4.065865 z"
1167
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient4293);fill-opacity:1;fill-rule:evenodd;stroke:#404604;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1168
+ inkscape:connector-curvature="0" />
1169
+ <path
1170
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#9db029;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1171
+ d="m 17.932367,19.786797 c 0,0 -2.151323,1.660335 -1.965991,3.660533 -2.041226,-1.800794 -2.099873,-5.251524 -2.099873,-5.251524 l 4.065864,1.590991 z"
1172
+ id="path4272"
1173
+ sodipodi:nodetypes="cccc"
1174
+ inkscape:connector-curvature="0" />
1175
+ <path
1176
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.21518986;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999976px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1177
+ d="m 12.966639,33.571836 10.31667,0 c 2.639723,0 5.253161,-0.967919 6.211112,-3.726667 0.909689,-2.61976 -0.09472,-7.608614 -5.995279,-11.645837 l -11.524725,0 c -5.900557,3.726667 -6.88794,8.823219 -5.529446,11.801114 1.383978,3.033754 3.726667,3.57139 6.521668,3.57139 z"
1178
+ id="path4274"
1179
+ sodipodi:nodetypes="cczcczc"
1180
+ inkscape:connector-curvature="0" />
1181
+ <path
1182
+ sodipodi:nodetypes="cccc"
1183
+ id="path4276"
1184
+ d="m 18.910795,19.786797 c 0,0 2.151323,1.660335 1.965991,3.660533 2.041226,-1.800794 2.099873,-5.251524 2.099873,-5.251524 l -4.065864,1.590991 z"
1185
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#9db029;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1186
+ inkscape:connector-curvature="0" />
1187
+ <circle
1188
+ transform="translate(-13.25,-3.5)"
1189
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient4295);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1190
+ id="circle4278"
1191
+ cx="31.112698"
1192
+ cy="19.008621"
1193
+ r="8.6620579" />
1194
+ <circle
1195
+ transform="translate(-13.125,-7)"
1196
+ id="circle4280"
1197
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient4297);fill-opacity:1;fill-rule:evenodd;stroke:#6f4709;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1198
+ cx="31.112698"
1199
+ cy="19.008621"
1200
+ r="8.6620579" />
1201
+ <circle
1202
+ transform="matrix(0.877095,0,0,0.877095,-9.301073,-4.663733)"
1203
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12658231;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.14012825px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1204
+ id="circle4282"
1205
+ cx="31.112698"
1206
+ cy="19.008621"
1207
+ r="8.6620579" />
1208
+ <path
1209
+ id="path4285"
1210
+ d="m 22.583894,27.034641 4.24264,0 -2.474873,-2.298097 -0.53033,0.707107 -0.530331,-0.53033 -0.707106,2.12132 z"
1211
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4299);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1212
+ inkscape:connector-curvature="0" />
1213
+ <path
1214
+ sodipodi:nodetypes="cccc"
1215
+ id="path4287"
1216
+ d="m 8.5479535,33.601747 c -1.247607,-0.544969 -1.805994,-1.858277 -1.805994,-1.858277 0.841281,-4.069136 3.7199255,-7.046216 3.7199255,-7.046216 0,0 -2.2793215,6.411514 -1.9139315,8.904493 z"
1217
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.22784807;fill:url(#linearGradient4301);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1218
+ inkscape:connector-curvature="0" />
1219
+ <path
1220
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.22784807;fill:url(#linearGradient4303);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1221
+ d="m 27.453661,32.743396 c 1.231251,-0.580978 1.80438,-2.002321 1.80438,-2.002321 -0.95912,-4.042983 -3.976149,-6.842821 -3.976149,-6.842821 0,0 2.464593,6.342602 2.171769,8.845142 z"
1222
+ id="path4289"
1223
+ sodipodi:nodetypes="cccc"
1224
+ inkscape:connector-curvature="0" />
1225
+ </g>
1226
+ <g
1227
+ transform="matrix(1.1596899,0,0,1.1596899,228.87023,261.36666)"
1228
+ style="display:inline"
1229
+ inkscape:label="dalsi cipek"
1230
+ id="g4361">
1231
+ <circle
1232
+ id="circle4363"
1233
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient4385);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1234
+ transform="matrix(1.77551,0,0,0.583984,-24.25322,28.27856)"
1235
+ cx="31.112698"
1236
+ cy="19.008621"
1237
+ r="8.6620579" />
1238
+ <path
1239
+ sodipodi:nodetypes="cczcczc"
1240
+ id="path4365"
1241
+ d="m 25.986174,41.636039 10.606602,0 c 3.005204,0 5.980484,-1.101932 7.071067,-4.242641 1.035639,-2.982476 0.176777,-8.662058 -6.540737,-13.258252 l -12.551146,0 c -6.717514,4.24264 -7.556991,10.044831 -6.010407,13.435028 1.575595,3.45379 4.24264,4.065865 7.424621,4.065865 z"
1242
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient4387);fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1243
+ inkscape:connector-curvature="0" />
1244
+ <path
1245
+ sodipodi:nodetypes="cccc"
1246
+ id="path4367"
1247
+ d="m 26.693281,25.726136 c 3.18198,2.828427 4.596194,13.081476 4.596194,13.081476 0,0 1.414213,-10.253048 3.889087,-13.258252 l -8.485281,0.176776 z"
1248
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4389);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1249
+ inkscape:connector-curvature="0" />
1250
+ <path
1251
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1252
+ d="m 28.972721,26.786797 c 0,0 -2.151323,1.660335 -1.965991,3.660533 -2.041226,-1.800794 -2.099873,-5.251524 -2.099873,-5.251524 l 4.065864,1.590991 z"
1253
+ id="path4369"
1254
+ sodipodi:nodetypes="cccc"
1255
+ inkscape:connector-curvature="0" />
1256
+ <path
1257
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.21518986;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999976px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1258
+ d="m 25.914862,40.593933 10.493447,-0.0221 c 2.639723,0 5.253161,-0.967919 6.211112,-3.726667 0.909689,-2.61976 -0.09472,-7.608614 -5.995279,-11.645837 L 25.099417,24.956264 c -5.900557,3.726667 -7.04262,8.823219 -5.662029,12.044182 1.380592,3.220963 3.395211,3.57139 6.477474,3.593487 z"
1259
+ id="path4371"
1260
+ sodipodi:nodetypes="cczcczc"
1261
+ inkscape:connector-curvature="0" />
1262
+ <path
1263
+ sodipodi:nodetypes="cccc"
1264
+ id="path4373"
1265
+ d="m 33.410795,26.786797 c 0,0 2.151323,1.660335 1.965991,3.660533 2.041226,-1.800794 2.099873,-5.251524 2.099873,-5.251524 l -4.065864,1.590991 z"
1266
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1267
+ inkscape:connector-curvature="0" />
1268
+ <circle
1269
+ transform="translate(-0.125,3.5)"
1270
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient4391);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1271
+ id="circle4375"
1272
+ cx="31.112698"
1273
+ cy="19.008621"
1274
+ r="8.6620579" />
1275
+ <circle
1276
+ id="circle4377"
1277
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient4393);fill-opacity:1;fill-rule:evenodd;stroke:#c17d11;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1278
+ cx="31.112698"
1279
+ cy="19.008621"
1280
+ r="8.6620579" />
1281
+ <circle
1282
+ transform="matrix(0.877095,0,0,0.877095,3.823927,2.336267)"
1283
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.19620254;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.14012825px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1284
+ id="circle4379"
1285
+ cx="31.112698"
1286
+ cy="19.008621"
1287
+ r="8.6620579" />
1288
+ <path
1289
+ sodipodi:nodetypes="cccc"
1290
+ id="path4381"
1291
+ d="m 21.85179,40.775197 c -1.247607,-0.544969 -1.805994,-1.858277 -1.805994,-1.858277 0.841281,-4.069136 3.719925,-7.046216 3.719925,-7.046216 0,0 -2.279321,6.411514 -1.913931,8.904493 z"
1292
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.22784807;fill:url(#linearGradient4395);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1293
+ inkscape:connector-curvature="0" />
1294
+ <path
1295
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.22784807;fill:url(#linearGradient4397);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1296
+ d="m 40.757497,39.916846 c 1.231251,-0.580978 1.80438,-2.002321 1.80438,-2.002321 -0.95912,-4.042983 -3.976149,-6.842821 -3.976149,-6.842821 0,0 2.464593,6.342602 2.171769,8.845142 z"
1297
+ id="path4383"
1298
+ sodipodi:nodetypes="cccc"
1299
+ inkscape:connector-curvature="0" />
1300
+ </g>
1301
+ <g
1302
+ id="g4399"
1303
+ inkscape:label="dalsi cipek"
1304
+ style="display:inline"
1305
+ transform="matrix(1.1596899,0,0,1.1596899,220.87023,269.36666)">
1306
+ <circle
1307
+ r="8.6620579"
1308
+ cy="19.008621"
1309
+ cx="31.112698"
1310
+ transform="matrix(1.77551,0,0,0.583984,-24.25322,28.27856)"
1311
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient4423);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1312
+ id="circle4401" />
1313
+ <path
1314
+ inkscape:connector-curvature="0"
1315
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient4425);fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1316
+ d="m 25.986174,41.636039 10.606602,0 c 3.005204,0 5.980484,-1.101932 7.071067,-4.242641 1.035639,-2.982476 0.176777,-8.662058 -6.540737,-13.258252 l -12.551146,0 c -6.717514,4.24264 -7.556991,10.044831 -6.010407,13.435028 1.575595,3.45379 4.24264,4.065865 7.424621,4.065865 z"
1317
+ id="path4403"
1318
+ sodipodi:nodetypes="cczcczc" />
1319
+ <path
1320
+ inkscape:connector-curvature="0"
1321
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4427);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1322
+ d="m 26.693281,25.726136 c 3.18198,2.828427 4.596194,13.081476 4.596194,13.081476 0,0 1.414213,-10.253048 3.889087,-13.258252 l -8.485281,0.176776 z"
1323
+ id="path4405"
1324
+ sodipodi:nodetypes="cccc" />
1325
+ <path
1326
+ inkscape:connector-curvature="0"
1327
+ sodipodi:nodetypes="cccc"
1328
+ id="path4407"
1329
+ d="m 28.972721,26.786797 c 0,0 -2.151323,1.660335 -1.965991,3.660533 -2.041226,-1.800794 -2.099873,-5.251524 -2.099873,-5.251524 l 4.065864,1.590991 z"
1330
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
1331
+ <path
1332
+ inkscape:connector-curvature="0"
1333
+ sodipodi:nodetypes="cczcczc"
1334
+ id="path4409"
1335
+ d="m 25.914862,40.593933 10.493447,-0.0221 c 2.639723,0 5.253161,-0.967919 6.211112,-3.726667 0.909689,-2.61976 -0.09472,-7.608614 -5.995279,-11.645837 L 25.099417,24.956264 c -5.900557,3.726667 -7.04262,8.823219 -5.662029,12.044182 1.380592,3.220963 3.395211,3.57139 6.477474,3.593487 z"
1336
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.21518986;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999976px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
1337
+ <path
1338
+ inkscape:connector-curvature="0"
1339
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1340
+ d="m 33.410795,26.786797 c 0,0 2.151323,1.660335 1.965991,3.660533 2.041226,-1.800794 2.099873,-5.251524 2.099873,-5.251524 l -4.065864,1.590991 z"
1341
+ id="path4411"
1342
+ sodipodi:nodetypes="cccc" />
1343
+ <circle
1344
+ r="8.6620579"
1345
+ cy="19.008621"
1346
+ cx="31.112698"
1347
+ id="circle4413"
1348
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient4429);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1349
+ transform="translate(-0.125,3.5)" />
1350
+ <circle
1351
+ r="8.6620579"
1352
+ cy="19.008621"
1353
+ cx="31.112698"
1354
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient4431);fill-opacity:1;fill-rule:evenodd;stroke:#c17d11;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1355
+ id="circle4415" />
1356
+ <circle
1357
+ r="8.6620579"
1358
+ cy="19.008621"
1359
+ cx="31.112698"
1360
+ id="circle4417"
1361
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.19620254;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.14012825px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1362
+ transform="matrix(0.877095,0,0,0.877095,3.823927,2.336267)" />
1363
+ <path
1364
+ inkscape:connector-curvature="0"
1365
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.22784807;fill:url(#linearGradient4433);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
1366
+ d="m 21.85179,40.775197 c -1.247607,-0.544969 -1.805994,-1.858277 -1.805994,-1.858277 0.841281,-4.069136 3.719925,-7.046216 3.719925,-7.046216 0,0 -2.279321,6.411514 -1.913931,8.904493 z"
1367
+ id="path4419"
1368
+ sodipodi:nodetypes="cccc" />
1369
+ <path
1370
+ inkscape:connector-curvature="0"
1371
+ sodipodi:nodetypes="cccc"
1372
+ id="path4421"
1373
+ d="m 40.757497,39.916846 c 1.231251,-0.580978 1.80438,-2.002321 1.80438,-2.002321 -0.95912,-4.042983 -3.976149,-6.842821 -3.976149,-6.842821 0,0 2.464593,6.342602 2.171769,8.845142 z"
1374
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.22784807;fill:url(#linearGradient4435);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
1375
+ </g>
1376
+ <rect
1377
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#4e9a06;stroke-width:2.18700004;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
1378
+ id="rect4354"
1379
+ width="134.74794"
1380
+ height="65.998993"
1381
+ x="31.549753"
1382
+ y="275.72998"
1383
+ ry="5"
1384
+ rx="5" />
1385
+ <text
1386
+ sodipodi:linespacing="125%"
1387
+ id="text4348"
1388
+ y="304.86252"
1389
+ x="98.024757"
1390
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none"
1391
+ xml:space="preserve"><tspan
1392
+ sodipodi:role="line"
1393
+ id="tspan4350"
1394
+ x="98.024757"
1395
+ y="304.86252">リーダブル</tspan><tspan
1396
+ sodipodi:role="line"
1397
+ id="tspan4352"
1398
+ x="98.024757"
1399
+ y="336.11252">コード</tspan></text>
1400
+ <rect
1401
+ rx="5"
1402
+ ry="5"
1403
+ y="358.69589"
1404
+ x="18.586329"
1405
+ height="65.998993"
1406
+ width="134.74794"
1407
+ id="rect4389"
1408
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#5c3566;stroke-width:2.18700004;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
1409
+ <text
1410
+ xml:space="preserve"
1411
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none"
1412
+ x="85.061333"
1413
+ y="387.82843"
1414
+ id="text4391"
1415
+ sodipodi:linespacing="125%"><tspan
1416
+ y="387.82843"
1417
+ x="85.061333"
1418
+ id="tspan4393"
1419
+ sodipodi:role="line">リーダブル</tspan><tspan
1420
+ y="419.07843"
1421
+ x="85.061333"
1422
+ id="tspan4395"
1423
+ sodipodi:role="line">コード</tspan></text>
1424
+ <rect
1425
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#c4a000;stroke-width:2.18700004;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
1426
+ id="rect4397"
1427
+ width="134.74794"
1428
+ height="65.998993"
1429
+ x="41.920494"
1430
+ y="437.7728"
1431
+ ry="5"
1432
+ rx="5" />
1433
+ <text
1434
+ sodipodi:linespacing="125%"
1435
+ id="text4399"
1436
+ y="466.90533"
1437
+ x="108.3955"
1438
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none"
1439
+ xml:space="preserve"><tspan
1440
+ sodipodi:role="line"
1441
+ id="tspan4401"
1442
+ x="108.3955"
1443
+ y="466.90533">リーダブル</tspan><tspan
1444
+ sodipodi:role="line"
1445
+ id="tspan4403"
1446
+ x="108.3955"
1447
+ y="498.15533">コード</tspan></text>
1448
+ <rect
1449
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#5c3566;stroke-width:2.18700004;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
1450
+ id="rect4405"
1451
+ width="134.74794"
1452
+ height="65.998993"
1453
+ x="385.45129"
1454
+ y="273.13727"
1455
+ ry="5"
1456
+ rx="5" />
1457
+ <text
1458
+ sodipodi:linespacing="125%"
1459
+ id="text4407"
1460
+ y="302.26981"
1461
+ x="451.9263"
1462
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25px;line-height:125%;font-family:Sans;-inkscape-font-specification:'Sans, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none"
1463
+ xml:space="preserve"><tspan
1464
+ sodipodi:role="line"
1465
+ id="tspan4409"
1466
+ x="451.9263"
1467
+ y="302.26981">リーダブル</tspan><tspan
1468
+ sodipodi:role="line"
1469
+ id="tspan4411"
1470
+ x="451.9263"
1471
+ y="333.51981">コード</tspan></text>
1472
+ </g>
1473
+ </svg>