Project

General

Profile

« Previous | Next » 

Revision 1945

Added by darkviper about 11 years ago

module/MultiLingual updated for make use of different graphics format
added Droplet to use Multilingual in index.php of template

View differences:

branches/2.8.x/CHANGELOG
11 11
! = Update/Change
12 12
===============================================================================
13 13

  
14
03 Aug-2013 Build 1945 M.v.d.Decken(DarkViper)
15
! module/MultiLingual updated for make use of different graphics format
16
+ Droplet to use Multilingual in index.php of template
14 17
31 Jul-2013 Build 1944 M.v.d.Decken(DarkViper)
15 18
# /modules/MultiLingual/tpl/lang.html-twig little typofix in template
16 19
31 Jul-2013 Build 1943 M.v.d.Decken(DarkViper)
branches/2.8.x/wb/upgrade-script.php
109 109

  
110 110
			'[FRAMEWORK]/class.msg_queue.php',
111 111
			'[FRAMEWORK]/class.logfile.php',
112
			'[FRAMEWORK]/PasswordHash.php',
112 113
			'[MODULES]/droplets/js/mdcr.js',
113 114

  
114 115
		 );
branches/2.8.x/wb/admin/interface/version.php
51 51

  
52 52
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled)
53 53
if(!defined('VERSION')) define('VERSION', '2.8.3');
54
if(!defined('REVISION')) define('REVISION', '1944');
54
if(!defined('REVISION')) define('REVISION', '1945');
55 55
if(!defined('SP')) define('SP', '');
branches/2.8.x/wb/modules/droplets/example/iMultiLingual.php
1
//:Droplet to display the link bar from module MultiLingual
2
//:Use: [[iMultiLingual?ext=svg]]  show flags as 'png' or 'svg' or 'auto'-depended from browser(default)
3
/**
4
 * iMultiLingual.php
5
 *
6
 * @category     Addons
7
 * @package      Addons_Droplets
8
 * @copyright    M.v.d.Decken <manuela@isteam.de>
9
 * @author       M.v.d.Decken <manuela@isteam.de>
10
 * @license      http://www.gnu.org/licenses/gpl.html   GPL License
11
 * @version      0.0.1
12
 * @revision     $Revision: $
13
 * @link         $HeadURL: $
14
 * @lastmodified $Date: $
15
 * @since        File available since 31.07.2013
16
 * @description  this Droplet displays the output from module MultiLingual<br />
17
 *               The image extensions are selectable.
18
 *
19
 * @param string $ext: name of the file extension for flags [ png | svn | auto(default) ]
20
 * @return: a valid image-URL or empty string
21
 */
22

  
23
$ext = !isset($ext) ? 'auto' : strtolower($ext);
24
$sRetval = '';
25
if(function_exists('language_menu')){
26
	switch($ext)
27
	{
28
		case 'png':
29
		case 'svg':
30
			break;
31
		default:
32
			$sExt = 'auto';
33
	}
34
	$sRetval = language_menu($sExt);
35
}
36
return $sRetval;
37

  
38

  
39

  
branches/2.8.x/wb/modules/MultiLingual/tpl/lang.twig
1
{#
2
/**
3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
4
 *
5
 * This program is free software: you can redistribute it and/or modify
6
 * it under the terms of the GNU General Public License as published by
7
 * the Free Software Foundation, either version 3 of the License, or
8
 * (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
 */
18

  
19
/**
20
 * lang.twig
21
 *
22
 * @category     Modules
23
 * @package      Modules_MultiLingual
24
 * @author       Werner v.d.Decken <wkl@isteam.de>
25
 * @author       Dietmar Wöllbrink <dietmar.woellbrink@websiteBaker.org>
26
 * @copyright    Werner v.d.Decken <wkl@isteam.de>
27
 * @license      http://www.gnu.org/licenses/gpl.html   GPL License
28
 * @version      1.6.8
29
 * @revision     $Revision: $
30
 * @link         $HeadURL: $
31
 * @lastmodified $Date: $
32
 * @since        File available since 09.01.2013
33
 * @description  xyz
34
 */
35
#}
36
<div id="langmenu">
37
{% for aTarget in aTargetList %}
38
 <a href="{{ aTarget.sUrl }}" {% if aTarget.bCurrent %}class="current" {% endif %}title="{{ aTarget.sTitle }}">
39
<span>
40
  <img src="{{ aTarget.sIconUrl }}flags/{{ aTarget.FilePrefix }}.png" class="width: 32px; height: 32px" 
41
     title="{{ aTarget.sTitle }}" alt="{{ aTarget.sLongTitle }}" />
42
    </span>
43
 </a>
44
{% endfor %}
45
</div>
branches/2.8.x/wb/modules/MultiLingual/tpl/lang.html.twig
17 17
 */
18 18

  
19 19
/**
20
 * lang.twig
20
 * lang.html.twig
21 21
 *
22 22
 * @category     Modules
23 23
 * @package      Modules_MultiLingual
24
 * @author       Werner v.d.Decken <wkl@isteam.de>
24
 * @author       M.v.d.Decken <wkl@isteam.de>
25 25
 * @author       Dietmar Wöllbrink <dietmar.woellbrink@websiteBaker.org>
26
 * @copyright    Werner v.d.Decken <wkl@isteam.de>
26
 * @copyright    M.v.d.Decken <wkl@isteam.de>
27 27
 * @license      http://www.gnu.org/licenses/gpl.html   GPL License
28 28
 * @version      1.6.8
29 29
 * @revision     $Revision: $
30 30
 * @link         $HeadURL: $
31 31
 * @lastmodified $Date: $
32 32
 * @since        File available since 09.01.2013
33
 * @description  xyz
34 33
 */
35 34
#}
36 35
<div id="langmenu">
37 36
{% for aTarget in aTargetList %}
38 37
	<a href="{{ aTarget.sUrl }}" {% if aTarget.bCurrent %}class="current" {% endif %}title="{{ aTarget.sTitle }}">
39 38
		<span>
40
			<img src="{{ aTarget.sIconUrl }}flags/{{ aTarget.FilePrefix }}.png" style="width: 32px; height: 32px" title="{{ aTarget.sTitle }}" alt="{{ aTarget.sLongTitle }}" />
39
			<img style="width:32px; height:24px" src="{{ aTarget.sIconUrl }}flags/{{ aTarget.sExtension }}/{{ aTarget.FilePrefix }}.{{ aTarget.sExtension }}"  title="{{ aTarget.sTitle }}" alt="{{ aTarget.sLongTitle }}" />
41 40
		</span>
42 41
	</a>
43 42
{% endfor %}
44
</div>
43
</div>
branches/2.8.x/wb/modules/MultiLingual/include.php
35 35

  
36 36
if(!function_exists('language_menu'))
37 37
{
38
	function language_menu()
38
	function language_menu($sExtension = "auto")
39 39
	{
40 40
		global $wb;
41
		$sExtension = strtolower($sExtension);
42
		switch($sExtension)
43
		{
44
			case 'png':
45
			case 'svg':
46
				break;
47
			default:
48
				$sExtension = 'auto';
49
		}
50

  
41 51
		if ( $wb->page_id  < 1){ return false; }
42 52
		$oPageLang = new m_MultiLingual_Lib();
53
        $oPageLang->setExtension($sExtension);
43 54
		$sRetVal = $oPageLang->getLangMenu();
44 55
		return $sRetVal;
45 56
	}
branches/2.8.x/wb/modules/MultiLingual/readme.txt
1
If you wish to modify the template, just open the file /modules/MultiLingual/tpl/lang.html.twig
1
#
2
#
3
How to use MultiLingual
4
##########################################################################
5
The easiest way is the combination with Droplet [[iMultiLingual]]
2 6

  
3 7
##########################################################################
8
but you also can handle it in the  old manner:
4 9

  
5
Simple usage:
10
insert the following PHP-code in your templates index.php in the place you want 
11
show the languages link bar.
12

  
6 13
<?php if(function_exists('language_menu')){ echo language_menu(); } ?>
7 14

  
8 15
##########################################################################
16
If you wish to modify the template, just open the file
17
 /modules/MultiLingual/tpl/lang.html.twig
18
and make your modifications.
9 19

  
10
advanced usage:
11
<?php
12
$langFunction = '';
13
// check if multiligual module is installed, default is off,
14
if(function_exists('language_menu')){ $langFunction = language_menu(); }
15
$multilang_flag = intval(($langFunction)!='');
16
$aStart       = SM2_ROOT+$multilang_flag;
17
echo $langFunction;
18

  
19
?>
20
$aStart defines the start level from show_menu2
21

  
branches/2.8.x/wb/modules/MultiLingual/Lib.php
45 45

  
46 46

  
47 47
/** @var array holds several values from the default.ini */	
48
	private $_config     = array();
48
	private $_config      = array();
49 49
/** @var array set several values for Twig_Environment */	
50
	private $_aTwigEnv = array();
50
	private $_aTwigEnv    = array();
51 51
/** @var array set several values for Twig_Loader */	
52 52
	private $_aTwigLoader = array();
53
/** @var string set icon extension */	
54
	private $_sExtension  = array();
53 55
/**
54 56
 * constructor used to import some application constants and objects
55 57
 */	
56 58
	public function __construct() 
57 59
	{
58 60
		// import global vars and objects
59
		$this->_wbAdaptor();
60
	}
61

  
62
	/**
63
	 * used to import some WB-constants and objects
64
	 */	
65
	private function _wbAdaptor()
66
	{
67 61
		if(!defined('ADMIN_REL')) { define('ADMIN_REL', WB_REL.'/'.ADMIN_DIRECTORY); }
68

  
69
		$this->_oApp   = (isset($GLOBALS['admin']) ? $GLOBALS['admin'] : $GLOBALS['wb']);
70
		$this->_oDb    = WbDatabase::getInstance();
71
		$this->_oReg = WbAdaptor::getInstance();
72

  
73
		$this->_config = parse_ini_file(dirname(__FILE__).'/default.ini',true);
74
		$this->_aTwigEnv = $this->_config['twig-environment'];
62
		$this->_oApp        = (isset($GLOBALS['admin']) ? $GLOBALS['admin'] : $GLOBALS['wb']);
63
		$this->_oDb         = WbDatabase::getInstance();
64
		$this->_oReg        = WbAdaptor::getInstance();
65
		$this->_config      = parse_ini_file(dirname(__FILE__).'/default.ini',true);
66
		$this->_aTwigEnv    = $this->_config['twig-environment'];
75 67
		$this->_aTwigLoader = $this->_config['twig-loader-file'];
76

  
77 68
	}
78 69

  
79 70
	/**
......
254 245
				      'sUrl' => $this->_oReg->AppRel.$this->_oReg->PagesDir.trim($pages[$value['language']]['link'],'/').$this->_oReg->PageExtension,
255 246
				      'sTitle' => $pages[$value['language']]['page_title'],
256 247
				      'FilePrefix' => strtolower($pages[$value['language']]['language']),
248
				      'sExtension' => $this->_sExtension,
257 249
				);
258 250
			}
259 251
		}
......
275 267
		return $twig->render($this->_aTwigLoader['default_template'], $data);
276 268
	}
277 269

  
270
    private function _detectIE()
271
    {
272
        preg_match('/MSIE (.*?);/', $_SERVER['HTTP_USER_AGENT'], $aMatches);
278 273

  
274
        if (count($aMatches)>1){
275
          return true;
276
        }
277
        return false;
278
    }
279
    
280
	public function setExtension($sExtension = 'auto') 
281
	{   
282
		if($sExtension == 'auto' || $sExtension == 'svg') {
283
			$this->_sExtension = ($this->_detectIE() == true) ? 'png' : 'svg';
284
		} else {
285
			$this->_sExtension = 'png';
286
		}
287
		return;
288
	}
289
    
279 290
	public function getLangMenu() 
280 291
	{
281 292
		return $this->_getLangMenuTwig ( );
branches/2.8.x/wb/modules/MultiLingual/flags/svg/lv.svg
1
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
3
<!-- /Creative Commons Public Domain -->
4
<!--
5
<rdf:RDF xmlns="http://web.resource.org/cc/"
6
     xmlns:dc="http://purl.org/dc/elements/1.1/"
7
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
8
<Work rdf:about="">
9
    <dc:title>SVG graphic of Latvia flag</dc:title>
10
    <dc:rights><Agent>
11
       <dc:title>Lauris Buksis</dc:title>
12
    </Agent></dc:rights>
13
    <license rdf:resource="http://web.resource.org/cc/PublicDomain" />
14
</Work>
15

  
16
<License rdf:about="http://web.resource.org/cc/PublicDomain">
17
    <permits rdf:resource="http://web.resource.org/cc/Reproduction" />
18
    <permits rdf:resource="http://web.resource.org/cc/Distribution" />
19
    <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
20
</License>
21
</rdf:RDF>
22
-->
23
<svg id="svg554" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
24
 <metadata id="metadata3373">
25
  <rdf:RDF>
26
   <cc:Work rdf:about="">
27
    <dc:format>image/svg+xml</dc:format>
28
    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
29
   </cc:Work>
30
  </rdf:RDF>
31
 </metadata>
32
 <g id="flag" fill-rule="evenodd" transform="matrix(.60207 0 0 .90311 0 .000013347)">
33
  <rect id="rect6" height="531.5" width="1063" y="-.000015" x="0" fill="#fff"/>
34
  <rect id="rect561" height="212.6" width="1063" y="-.000015260" x="0" stroke-width="1pt" fill="#ab231d"/>
35
  <rect id="rect562" height="212.6" width="1063" y="318.9" x="0" stroke-width="1pt" fill="#ab231d"/>
36
 </g>
37
</svg>
branches/2.8.x/wb/modules/MultiLingual/flags/svg/ca.svg
1
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
3
<svg id="canada" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" fill-opacity="14.118" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" fill="#28ff09">
4
 <metadata id="metadata3503">
5
  <rdf:RDF>
6
   <cc:Work rdf:about="">
7
    <dc:format>image/svg+xml</dc:format>
8
    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
9
   </cc:Work>
10
  </rdf:RDF>
11
 </metadata>
12
 <defs id="defs3">
13
  <clipPath id="clipPath3087" clipPathUnits="userSpaceOnUse">
14
   <rect id="rect3089" fill-opacity="0.67" height="512" width="682.67" y="-0.0000041" x="-79.06" fill="#000"/>
15
  </clipPath>
16
 </defs>
17
 <g id="flag" fill-opacity="1" clip-path="url(#clipPath3087)" transform="matrix(.9375 0 0 .9375 74.118 .0000038438)">
18
  <g id="g3531" transform="matrix(.70757 0 0 1 79.779 -.0000041)">
19
   <rect id="mat" height="512" width="512" y="0" x="1.919" fill="#fff"/>
20
   <rect id="left" height="512" width="256" y="0" x="-254.08" fill="#bf0a30"/>
21
   <rect id="right" height="512" width="256" y="0" x="513.92" fill="#bf0a30"/>
22
  </g>
23
  <path id="leaf" d="m135.31 247.41-14.067 4.8081 65.456 57.446c4.9517 14.764-1.7184 19.116-5.9683 26.859l71.06-9.0192-1.8508 71.512 14.718-0.42336-3.2096-70.918 71.13 8.4323c-4.4022-9.2965-8.3199-14.233-4.2474-29.098l65.413-54.425-11.447-4.1437c-9.359-7.2222 4.0438-34.784 6.0657-52.178 0 0-38.195 13.135-40.698 6.2622l-9.7261-18.685-34.748 38.172c-3.7965 0.90916-5.4138-0.60195-6.3042-3.809l16.053-79.766-25.419 14.297c-2.1281 0.90992-4.2561 0.12489-5.6586-2.3552l-24.45-49.06-25.21 50.95c-1.9008 1.8257-3.8028 2.0373-5.3813 0.79578l-24.204-13.578 14.529 79.143c-1.1552 3.1421-3.9239 4.0263-7.1797 2.3254l-33.216-37.737c-4.3448 6.9615-7.2896 18.336-13.033 20.885-5.7435 2.3866-24.98-4.8231-37.873-7.6378 4.4047 15.895 18.176 42.302 9.4614 50.957z" fill="#bf0a30"/>
24
 </g>
25
</svg>
branches/2.8.x/wb/modules/MultiLingual/flags/svg/pt.svg
1
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
3
<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/">
4
 <metadata id="metadata4089">
5
  <rdf:RDF>
6
   <cc:Work rdf:about="">
7
    <dc:format>image/svg+xml</dc:format>
8
    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
9
   </cc:Work>
10
  </rdf:RDF>
11
 </metadata>
12
 <defs id="defs550">
13
  <linearGradient id="linearGradient6733" y2="-5035.4" gradientUnits="userSpaceOnUse" y1="-5035.4" gradientTransform="matrix(.085350 0 0 .14208 -225.71 715.44)" x2="4203.4" x1="359.59">
14
   <stop id="stop562" offset="0"/>
15
   <stop id="stop563" stop-color="#fff" offset="1"/>
16
  </linearGradient>
17
  <clipPath id="clipPath7504" clipPathUnits="userSpaceOnUse">
18
   <rect id="rect7506" fill-opacity="0.67" height="512" width="682.67" y=".0000053048" x="-72.352"/>
19
  </clipPath>
20
 </defs>
21
 <g id="flag" clip-path="url(#clipPath7504)" transform="matrix(.9375 0 0 .9375 67.83 -.0000049733)">
22
  <rect id="rect555" height="511.87" width="307.43" stroke="url(#linearGradient6733)" y=".064535" x="-114.94" stroke-width=".11012pt" fill="#090"/>
23
  <rect id="rect557" fill-rule="evenodd" height="512" width="461.15" y="-.0000025034" x="191.82" stroke-width="1pt" fill="#f00"/>
24
  <g id="g1527" fill-rule="evenodd" stroke-width="1pt" transform="matrix(.10329 0 0 .10306 23.562 74.592)">
25
   <g id="g1009" transform="matrix(-.053403 1.0792 .43966 -.043588 1384.9 -475.58)">
26
    <rect id="rect1010" height="2824.2" width="171.54" y="376.91" x="1528.3"/>
27
    <rect id="rect1011" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/>
28
    <g id="g1012" transform="translate(9.3838 -.000030518)">
29
     <rect id="rect1013" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
30
     <rect id="rect1014" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
31
    </g>
32
    <g id="g1015" transform="translate(197.06 -.000030518)">
33
     <rect id="rect1016" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
34
     <rect id="rect1017" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
35
    </g>
36
   </g>
37
   <g id="g1000" transform="matrix(-.053403 1.0792 .43966 -.043588 1572.6 115.61)">
38
    <rect id="rect1001" height="2824.2" width="171.54" y="376.91" x="1528.3"/>
39
    <rect id="rect1002" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/>
40
    <g id="g1003" transform="translate(9.3838 -.000030518)">
41
     <rect id="rect1004" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
42
     <rect id="rect1005" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
43
    </g>
44
    <g id="g1006" transform="translate(197.06 -.000030518)">
45
     <rect id="rect1007" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
46
     <rect id="rect1008" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
47
    </g>
48
   </g>
49
   <g id="g991" transform="matrix(-.053403 1.0792 .43966 -.043588 1497.5 781.86)">
50
    <rect id="rect992" height="2824.2" width="171.54" y="376.91" x="1528.3"/>
51
    <rect id="rect993" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/>
52
    <g id="g994" transform="translate(9.3838 -.000030518)">
53
     <rect id="rect995" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
54
     <rect id="rect996" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
55
    </g>
56
    <g id="g997" transform="translate(197.06 -.000030518)">
57
     <rect id="rect998" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
58
     <rect id="rect999" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
59
    </g>
60
   </g>
61
   <g id="g982" transform="matrix(.053403 1.0792 -.43966 -.043588 1815 734.94)">
62
    <rect id="rect983" height="2824.2" width="171.54" y="376.91" x="1528.3"/>
63
    <rect id="rect984" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/>
64
    <g id="g985" transform="translate(9.3838 -.000030518)">
65
     <rect id="rect986" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
66
     <rect id="rect987" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
67
    </g>
68
    <g id="g988" transform="translate(197.06 -.000030518)">
69
     <rect id="rect989" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
70
     <rect id="rect990" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
71
    </g>
72
   </g>
73
   <g id="g937" transform="matrix(-.31852 .97312 -.46881 -.050001 2307.7 363.88)">
74
    <rect id="rect938" height="2824.2" width="171.54" y="376.91" x="1528.3"/>
75
    <rect id="rect939" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/>
76
    <g id="g940" transform="translate(9.3838 -.000030518)">
77
     <rect id="rect941" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
78
     <rect id="rect942" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
79
    </g>
80
    <g id="g943" transform="translate(197.06 -.000030518)">
81
     <rect id="rect944" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
82
     <rect id="rect945" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
83
    </g>
84
   </g>
85
   <g id="g928" transform="matrix(-.78495 .83247 -.34476 -.23585 2811.1 622.21)">
86
    <rect id="rect929" height="2824.2" width="171.54" y="376.91" x="1528.3"/>
87
    <rect id="rect930" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/>
88
    <g id="g931" transform="translate(9.3838 -.000030518)">
89
     <rect id="rect932" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
90
     <rect id="rect933" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
91
    </g>
92
    <g id="g934" transform="translate(197.06 -.000030518)">
93
     <rect id="rect935" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
94
     <rect id="rect936" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
95
    </g>
96
   </g>
97
   <g id="g606" transform="translate(3443.9 797.63)">
98
    <path id="path607" d="m-576.02-680.03c0.472 617.58-500.34 1118.8-1117.9 1118.8-617.58 0.981-1119.2-499.44-1119.7-1117-1.49-617.6 498.53-1119.6 1116.1-1120.6 617.58-1.96 1120 497.67 1121.5 1115.2 0.026 1.253 0.026 2.31 0.026 3.564zm262.44-0.001c0.582 762.45-617.7 1381.2-1380.1 1381.2-762.44 1.211-1381.8-616.6-1382.3-1379-1.85-762.47 615.47-1382.2 1377.9-1383.4 762.45-2.42 1382.7 614.41 1384.5 1376.8 0.032 1.547 0.032 2.852 0.032 4.399z" fill-opacity=".99967" transform="translate(-149.86 1690.5)" fill="#efef00"/>
99
    <path id="path608" d="m296.75 2625.1c0.582 762.45-617.7 1381.2-1380.1 1381.2-762.45 1.21-1381.8-616.6-1382.4-1379-1.84-762.46 615.48-1382.2 1378-1383.4 762.45-2.42 1382.7 614.41 1384.5 1376.8 0.032 1.55 0.032 2.86 0.032 4.4zm-27.624 0c0.57 747.2-605.35 1353.6-1352.5 1353.6-747.2 1.18-1354.1-604.27-1354.7-1351.5-1.81-747.21 603.16-1354.6 1350.4-1355.8 747.2-2.38 1355 602.11 1356.8 1349.3 0.032 1.52 0.032 2.8 0.032 4.31z" transform="matrix(.98 0 0 .98 -781.88 -1562.1)"/>
100
    <path id="path609" d="m296.75 2625.1c0.582 762.45-617.7 1381.2-1380.1 1381.2-762.45 1.21-1381.8-616.6-1382.4-1379-1.84-762.46 615.48-1382.2 1378-1383.4 762.45-2.42 1382.7 614.41 1384.5 1376.8 0.032 1.55 0.032 2.86 0.032 4.4zm-27.624 0c0.57 747.2-605.35 1353.6-1352.5 1353.6-747.2 1.18-1354.1-604.27-1354.7-1351.5-1.81-747.21 603.16-1354.6 1350.4-1355.8 747.2-2.38 1355 602.11 1356.8 1349.3 0.032 1.52 0.032 2.8 0.032 4.31z" transform="matrix(.85016 0 0 .85016 -922.69 -1221.3)"/>
101
   </g>
102
   <g id="g883" transform="matrix(1 0 0 .98355 9.3838 52.807)">
103
    <rect id="rect872" height="2824.2" width="171.54" y="376.91" x="1528.3"/>
104
    <rect id="rect871" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/>
105
    <g id="g877" transform="translate(9.3838 -.000030518)">
106
     <rect id="rect875" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
107
     <rect id="rect876" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
108
    </g>
109
    <g id="g880" transform="translate(197.06 -.000030518)">
110
     <rect id="rect881" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
111
     <rect id="rect882" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
112
    </g>
113
   </g>
114
   <g id="g892" transform="matrix(.37140 1.0146 -.43278 .088917 1148.7 461.89)">
115
    <rect id="rect893" height="2824.2" width="171.54" y="376.91" x="1528.3"/>
116
    <rect id="rect894" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/>
117
    <g id="g895" transform="translate(9.3838 -.000030518)">
118
     <rect id="rect896" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
119
     <rect id="rect897" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
120
    </g>
121
    <g id="g1963" transform="translate(197.06 -.000030518)">
122
     <rect id="rect899" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
123
     <rect id="rect1965" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
124
    </g>
125
   </g>
126
   <g id="g901" transform="matrix(.048179 1.0353 -.45375 .049280 1585.8 -73.118)">
127
    <rect id="rect902" height="2824.2" width="171.54" y="376.91" x="1528.3"/>
128
    <rect id="rect1968" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/>
129
    <g id="g904" transform="translate(9.3838 -.000030518)">
130
     <rect id="rect905" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
131
     <rect id="rect906" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
132
    </g>
133
    <g id="g907" transform="translate(197.06 -.000030518)">
134
     <rect id="rect908" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
135
     <rect id="rect909" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
136
    </g>
137
   </g>
138
   <g id="g910" transform="matrix(-.61913 .96221 -.38214 -.16868 2610.1 86.531)">
139
    <rect id="rect911" height="2824.2" width="171.54" y="376.91" x="1528.3"/>
140
    <rect id="rect912" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/>
141
    <g id="g1978" transform="translate(9.3838 -.000030518)">
142
     <rect id="rect1979" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
143
     <rect id="rect915" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
144
    </g>
145
    <g id="g1981" transform="translate(197.06 -.000030518)">
146
     <rect id="rect1982" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
147
     <rect id="rect918" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
148
    </g>
149
   </g>
150
   <g id="g946" transform="matrix(-.013401 1.0347 -.45603 -.022150 3190.7 -29.14)">
151
    <rect id="rect947" height="2824.2" width="171.54" y="376.91" x="1528.3"/>
152
    <rect id="rect948" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/>
153
    <g id="g949" transform="translate(9.3838 -.000030518)">
154
     <rect id="rect950" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
155
     <rect id="rect951" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
156
    </g>
157
    <g id="g952" transform="translate(197.06 -.000030518)">
158
     <rect id="rect953" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
159
     <rect id="rect954" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
160
    </g>
161
   </g>
162
   <g id="g964" transform="matrix(.29417 .92656 -.37653 -.011881 2458.6 -379.7)">
163
    <rect id="rect965" height="2824.2" width="171.54" y="376.91" x="1528.3"/>
164
    <rect id="rect966" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/>
165
    <g id="g967" transform="translate(9.3838 -.000030518)">
166
     <rect id="rect968" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
167
     <rect id="rect969" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
168
    </g>
169
    <g id="g970" transform="translate(197.06 -.000030518)">
170
     <rect id="rect971" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
171
     <rect id="rect972" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
172
    </g>
173
   </g>
174
   <g id="g973" transform="matrix(-.44645 .96157 -.41974 -.15349 3749.8 876.84)">
175
    <rect id="rect974" height="2824.2" width="171.54" y="376.91" x="1528.3"/>
176
    <rect id="rect975" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/>
177
    <g id="g976" transform="translate(9.3838 -.000030518)">
178
     <rect id="rect977" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
179
     <rect id="rect978" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
180
    </g>
181
    <g id="g979" transform="translate(197.06 -.000030518)">
182
     <rect id="rect980" height="2852.7" width="56.303" y="357.96" x="1482.6"/>
183
     <rect id="rect981" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/>
184
    </g>
185
   </g>
186
   <g id="g1287">
187
    <g id="g2012" transform="translate(388.6 -627.37)">
188
     <g id="g2013" transform="translate(1261.6 8670.4)" fill="#f6f6fb">
189
      <g id="g2014">
190
       <rect id="rect2015" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
191
       <ellipse id="path2016" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
192
      </g>
193
      <g id="g2017" transform="translate(-5963.8 -3463.6)">
194
       <rect id="rect2018" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
195
       <ellipse id="path2019" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
196
      </g>
197
     </g>
198
     <g id="g2020" transform="translate(-4610.5 4587.5)">
199
      <g id="g2021" transform="matrix(.95 0 0 .95 5869.2 3772.5)" fill="#f00">
200
       <g id="g2022">
201
        <rect id="rect2023" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
202
        <ellipse id="path2024" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
203
       </g>
204
       <g id="g2025" transform="translate(-5963.8 -3463.6)">
205
        <rect id="rect2026" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
206
        <ellipse id="path2027" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
207
       </g>
208
      </g>
209
      <g id="g2028" transform="matrix(.567 0 0 .567 5848 1394.8)" fill="#400">
210
       <g id="g2029">
211
        <rect id="rect2030" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
212
        <ellipse id="path2031" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
213
       </g>
214
       <g id="g2032" transform="translate(-5963.8 -3463.6)">
215
        <rect id="rect2033" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
216
        <ellipse id="path2034" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
217
       </g>
218
      </g>
219
      <g id="g2035" transform="matrix(.51172 0 0 .51172 5844.9 1051.6)" fill="#fff">
220
       <g id="g2036">
221
        <rect id="rect2037" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
222
        <ellipse id="path2038" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
223
       </g>
224
       <g id="g2039" transform="translate(-5963.8 -3463.6)">
225
        <rect id="rect2040" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
226
        <ellipse id="path2041" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
227
       </g>
228
      </g>
229
     </g>
230
    </g>
231
    <g id="g2042" transform="translate(-1370 3907.3)">
232
     <g id="g2043" transform="matrix(.15 0 0 .15 2790 -2140.7)" fill="#3b3bff">
233
      <g id="g2044" transform="translate(1261.6 8670.4)">
234
       <g id="g2045">
235
        <rect id="rect2046" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
236
        <ellipse id="path2047" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
237
       </g>
238
       <g id="g2048" transform="translate(-5963.8 -3463.6)">
239
        <rect id="rect2049" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
240
        <ellipse id="path2050" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
241
       </g>
242
      </g>
243
      <g id="g2051" transform="translate(-4610.5 4587.5)">
244
       <g id="g2052" transform="matrix(.95 0 0 .95 5869.2 3772.5)">
245
        <g id="g2053">
246
         <rect id="rect2054" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
247
         <ellipse id="path2055" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
248
        </g>
249
        <g id="g2056" transform="translate(-5963.8 -3463.6)">
250
         <rect id="rect2057" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
251
         <ellipse id="path2058" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
252
        </g>
253
       </g>
254
       <g id="g2059" transform="matrix(.567 0 0 .567 5848 1394.8)">
255
        <g id="g2060">
256
         <rect id="rect2061" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
257
         <ellipse id="path2062" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
258
        </g>
259
        <g id="g2063" transform="translate(-5963.8 -3463.6)">
260
         <rect id="rect2064" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
261
         <ellipse id="path2065" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
262
        </g>
263
       </g>
264
       <g id="g2066" transform="matrix(.51172 0 0 .51172 5844.9 1051.6)">
265
        <g id="g2067">
266
         <rect id="rect2068" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
267
         <ellipse id="path2069" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
268
        </g>
269
        <g id="g2070" transform="translate(-5963.8 -3463.6)">
270
         <rect id="rect2071" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
271
         <ellipse id="path2072" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
272
        </g>
273
       </g>
274
      </g>
275
     </g>
276
     <ellipse id="path2073" fill="#fff" transform="translate(-3.7817 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
277
     <ellipse id="path2074" fill="#fff" transform="translate(129.99 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
278
     <ellipse id="path2075" fill="#fff" transform="translate(61.922 67.595)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
279
     <ellipse id="path2076" fill="#fff" transform="translate(1.4179 140.39)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
280
     <ellipse id="path2077" fill="#fff" transform="translate(128.57 142.75)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
281
    </g>
282
    <path id="path2078" d="m-433.9 545.04v22.689h302.52v-22.689h-302.52zm26.249-62.601v63.152h257.14v-63.152h-257.14zm-22.688 207.62v22.692h302.52v-22.692h-302.52zm81.069-7.017c-0.031-41.191 31.622-74.621 70.654-74.621 39.033-0.066 70.737 33.311 70.768 74.502 0 0.327-0.001 0.602-0.004 0.928m-149.28 3.292c-0.034-45.769 35.136-82.913 78.505-82.913 43.37-0.073 78.596 37.012 78.63 82.78 0.001 0.363 0 0.669-0.004 1.031m-207.65-114.09v113.44h257.14v-113.44h-257.14zm-26.26-113.15v21.46h302.52v-21.46h-302.52zm-0.027-30.268v30.484h23.308v-30.484h-23.308zm279.36 0v30.484h23.308v-30.484h-23.308zm-232.9 0.612v30.484h23.308v-30.484h-23.308zm185.22-0.618v30.484h23.308v-30.484h-23.308zm-139.99-28.725v30.484h23.308v-30.484h-23.308zm92.917-0.006v30.484h23.308v-30.484h-23.308zm-45.236-0.612v30.484h23.308v-30.484h-23.308zm-47.745 31.32v29.144h116.15v-29.144h-116.15z" transform="translate(1296.7 561.41)" fill="#ff0"/>
283
    <g id="g2079" fill="#f00" transform="translate(1302.4 561.96)">
284
     <rect id="rect2080" height="30.484" width="23.308" y="477.6" x="-348.96"/>
285
     <rect id="rect2081" height="30.484" width="23.308" y="476.98" x="-244.43"/>
286
    </g>
287
    <path id="path2082" d="m-433.9 545.04v22.689h302.52v-22.689h-302.52zm26.249-62.601v63.152h257.14v-63.152h-257.14zm-22.688 207.62v22.692h302.52v-22.692h-302.52zm81.069-7.017c-0.031-41.191 31.622-74.621 70.654-74.621 39.033-0.066 70.737 33.311 70.768 74.502 0 0.327-0.001 0.602-0.004 0.928m-149.28 3.292c-0.034-45.769 35.136-82.913 78.505-82.913 43.37-0.073 78.596 37.012 78.63 82.78 0.001 0.363 0 0.669-0.004 1.031m-207.65-114.09v113.44h257.14v-113.44h-257.14zm-26.26-113.15v21.46h302.52v-21.46h-302.52zm-0.027-30.268v30.484h23.308v-30.484h-23.308zm279.36 0v30.484h23.308v-30.484h-23.308zm-232.9 0.612v30.484h23.308v-30.484h-23.308zm185.22-0.618v30.484h23.308v-30.484h-23.308zm-139.99-28.725v30.484h23.308v-30.484h-23.308zm92.917-0.006v30.484h23.308v-30.484h-23.308zm-45.236-0.612v30.484h23.308v-30.484h-23.308zm-47.745 31.32v29.144h116.15v-29.144h-116.15z" transform="translate(2457.9 565.04)" fill="#ff0"/>
288
    <g id="g2083" fill="#f00" transform="translate(2463.5 565.59)">
289
     <rect id="rect2084" height="30.484" width="23.308" y="477.6" x="-348.96"/>
290
     <rect id="rect2085" height="30.484" width="23.308" y="476.98" x="-244.43"/>
291
    </g>
292
    <path id="path2086" d="m-433.9 545.04v22.689h302.52v-22.689h-302.52zm26.249-62.601v63.152h257.14v-63.152h-257.14zm-22.688 207.62v22.692h302.52v-22.692h-302.52zm81.069-7.017c-0.031-41.191 31.622-74.621 70.654-74.621 39.033-0.066 70.737 33.311 70.768 74.502 0 0.327-0.001 0.602-0.004 0.928m-149.28 3.292c-0.034-45.769 35.136-82.913 78.505-82.913 43.37-0.073 78.596 37.012 78.63 82.78 0.001 0.363 0 0.669-0.004 1.031m-207.65-114.09v113.44h257.14v-113.44h-257.14zm-26.26-113.15v21.46h302.52v-21.46h-302.52zm-0.027-30.268v30.484h23.308v-30.484h-23.308zm279.36 0v30.484h23.308v-30.484h-23.308zm-232.9 0.612v30.484h23.308v-30.484h-23.308zm185.22-0.618v30.484h23.308v-30.484h-23.308zm-139.99-28.725v30.484h23.308v-30.484h-23.308zm92.917-0.006v30.484h23.308v-30.484h-23.308zm-45.236-0.612v30.484h23.308v-30.484h-23.308zm-47.745 31.32v29.144h116.15v-29.144h-116.15z" transform="translate(1888.2 565.04)" fill="#ff0"/>
293
    <g id="g2087" fill="#f00" transform="translate(1893.8 565.59)">
294
     <rect id="rect2088" height="30.484" width="23.308" y="477.6" x="-348.96"/>
295
     <rect id="rect2089" height="30.484" width="23.308" y="476.98" x="-244.43"/>
296
    </g>
297
    <path id="path2090" d="m-433.9 545.04v22.689h302.52v-22.689h-302.52zm26.249-62.601v63.152h257.14v-63.152h-257.14zm-22.688 207.62v22.692h302.52v-22.692h-302.52zm81.069-7.017c-0.031-41.191 31.622-74.621 70.654-74.621 39.033-0.066 70.737 33.311 70.768 74.502 0 0.327-0.001 0.602-0.004 0.928m-149.28 3.292c-0.034-45.769 35.136-82.913 78.505-82.913 43.37-0.073 78.596 37.012 78.63 82.78 0.001 0.363 0 0.669-0.004 1.031m-207.65-114.09v113.44h257.14v-113.44h-257.14zm-26.26-113.15v21.46h302.52v-21.46h-302.52zm-0.027-30.268v30.484h23.308v-30.484h-23.308zm279.36 0v30.484h23.308v-30.484h-23.308zm-232.9 0.612v30.484h23.308v-30.484h-23.308zm185.22-0.618v30.484h23.308v-30.484h-23.308zm-139.99-28.725v30.484h23.308v-30.484h-23.308zm92.917-0.006v30.484h23.308v-30.484h-23.308zm-45.236-0.612v30.484h23.308v-30.484h-23.308zm-47.745 31.32v29.144h116.15v-29.144h-116.15z" transform="translate(1271.3 1272.6)" fill="#ff0"/>
298
    <g id="g2091" fill="#f00" transform="translate(1277 1273.2)">
299
     <rect id="rect2092" height="30.484" width="23.308" y="477.6" x="-348.96"/>
300
     <rect id="rect2093" height="30.484" width="23.308" y="476.98" x="-244.43"/>
301
    </g>
302
    <path id="path2094" d="m-433.9 545.04v22.689h302.52v-22.689h-302.52zm26.249-62.601v63.152h257.14v-63.152h-257.14zm-22.688 207.62v22.692h302.52v-22.692h-302.52zm81.069-7.017c-0.031-41.191 31.622-74.621 70.654-74.621 39.033-0.066 70.737 33.311 70.768 74.502 0 0.327-0.001 0.602-0.004 0.928m-149.28 3.292c-0.034-45.769 35.136-82.913 78.505-82.913 43.37-0.073 78.596 37.012 78.63 82.78 0.001 0.363 0 0.669-0.004 1.031m-207.65-114.09v113.44h257.14v-113.44h-257.14zm-26.26-113.15v21.46h302.52v-21.46h-302.52zm-0.027-30.268v30.484h23.308v-30.484h-23.308zm279.36 0v30.484h23.308v-30.484h-23.308zm-232.9 0.612v30.484h23.308v-30.484h-23.308zm185.22-0.618v30.484h23.308v-30.484h-23.308zm-139.99-28.725v30.484h23.308v-30.484h-23.308zm92.917-0.006v30.484h23.308v-30.484h-23.308zm-45.236-0.612v30.484h23.308v-30.484h-23.308zm-47.745 31.32v29.144h116.15v-29.144h-116.15z" transform="translate(2479.7 1265.4)" fill="#ff0"/>
303
    <g id="g2095" fill="#f00" transform="translate(2485.3 1265.9)">
304
     <rect id="rect2096" height="30.484" width="23.308" y="477.6" x="-348.96"/>
305
     <rect id="rect2097" height="30.484" width="23.308" y="476.98" x="-244.43"/>
306
    </g>
307
    <path id="path2098" d="m-433.9 545.04v22.689h302.52v-22.689h-302.52zm26.249-62.601v63.152h257.14v-63.152h-257.14zm-22.688 207.62v22.692h302.52v-22.692h-302.52zm81.069-7.017c-0.031-41.191 31.622-74.621 70.654-74.621 39.033-0.066 70.737 33.311 70.768 74.502 0 0.327-0.001 0.602-0.004 0.928m-149.28 3.292c-0.034-45.769 35.136-82.913 78.505-82.913 43.37-0.073 78.596 37.012 78.63 82.78 0.001 0.363 0 0.669-0.004 1.031m-207.65-114.09v113.44h257.14v-113.44h-257.14zm-26.26-113.15v21.46h302.52v-21.46h-302.52zm-0.027-30.268v30.484h23.308v-30.484h-23.308zm279.36 0v30.484h23.308v-30.484h-23.308zm-232.9 0.612v30.484h23.308v-30.484h-23.308zm185.22-0.618v30.484h23.308v-30.484h-23.308zm-139.99-28.725v30.484h23.308v-30.484h-23.308zm92.917-0.006v30.484h23.308v-30.484h-23.308zm-45.236-0.612v30.484h23.308v-30.484h-23.308zm-47.745 31.32v29.144h116.15v-29.144h-116.15z" transform="matrix(.65276 -.75757 .75757 .65276 969.57 1819.3)" fill="#ff0"/>
308
    <g id="g2099" fill="#f00" transform="matrix(.65276 -.75757 .75757 .65276 973.66 1815.4)">
309
     <rect id="rect2100" height="30.484" width="23.308" y="477.6" x="-348.96"/>
310
     <rect id="rect2101" height="30.484" width="23.308" y="476.98" x="-244.43"/>
311
    </g>
312
    <path id="path2102" d="m-433.9 545.04v22.689h302.52v-22.689h-302.52zm26.249-62.601v63.152h257.14v-63.152h-257.14zm-22.688 207.62v22.692h302.52v-22.692h-302.52zm81.069-7.017c-0.031-41.191 31.622-74.621 70.654-74.621 39.033-0.066 70.737 33.311 70.768 74.502 0 0.327-0.001 0.602-0.004 0.928m-149.28 3.292c-0.034-45.769 35.136-82.913 78.505-82.913 43.37-0.073 78.596 37.012 78.63 82.78 0.001 0.363 0 0.669-0.004 1.031m-207.65-114.09v113.44h257.14v-113.44h-257.14zm-26.26-113.15v21.46h302.52v-21.46h-302.52zm-0.027-30.268v30.484h23.308v-30.484h-23.308zm279.36 0v30.484h23.308v-30.484h-23.308zm-232.9 0.612v30.484h23.308v-30.484h-23.308zm185.22-0.618v30.484h23.308v-30.484h-23.308zm-139.99-28.725v30.484h23.308v-30.484h-23.308zm92.917-0.006v30.484h23.308v-30.484h-23.308zm-45.236-0.612v30.484h23.308v-30.484h-23.308zm-47.745 31.32v29.144h116.15v-29.144h-116.15z" transform="matrix(-.65276 -.75757 -.75757 .65276 2231 1815.7)" fill="#ff0"/>
313
    <g id="g2103" fill="#f00" transform="matrix(-.65276 -.75757 -.75757 .65276 2226.9 1811.8)">
314
     <rect id="rect2104" height="30.484" width="23.308" y="477.6" x="-348.96"/>
315
     <rect id="rect2105" height="30.484" width="23.308" y="476.98" x="-244.43"/>
316
    </g>
317
    <g id="g2106" transform="translate(-1377.6 3272)">
318
     <g id="g2107" transform="translate(3.7814 11.344)">
319
      <g id="g2108" transform="matrix(.15 0 0 .15 2790 -2140.7)" fill="#3b3bff">
320
       <g id="g2109" transform="translate(1261.6 8670.4)">
321
        <g id="g2110">
322
         <rect id="rect2111" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
323
         <ellipse id="path2112" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
324
        </g>
325
        <g id="g2113" transform="translate(-5963.8 -3463.6)">
326
         <rect id="rect2114" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
327
         <ellipse id="path2115" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
328
        </g>
329
       </g>
330
       <g id="g2116" transform="translate(-4610.5 4587.5)">
331
        <g id="g2117" transform="matrix(.95 0 0 .95 5869.2 3772.5)">
332
         <g id="g2118">
333
          <rect id="rect1155" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
334
          <ellipse id="path2120" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
335
         </g>
336
         <g id="g2121" transform="translate(-5963.8 -3463.6)">
337
          <rect id="rect1158" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
338
          <ellipse id="path2123" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
339
         </g>
340
        </g>
341
        <g id="g2124" transform="matrix(.567 0 0 .567 5848 1394.8)">
342
         <g id="g2125">
343
          <rect id="rect2126" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
344
          <ellipse id="path2127" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
345
         </g>
346
         <g id="g2128" transform="translate(-5963.8 -3463.6)">
347
          <rect id="rect2129" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
348
          <ellipse id="path2130" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
349
         </g>
350
        </g>
351
        <g id="g2131" transform="matrix(.51172 0 0 .51172 5844.9 1051.6)">
352
         <g id="g1168">
353
          <rect id="rect1169" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
354
          <ellipse id="path2134" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
355
         </g>
356
         <g id="g2135" transform="translate(-5963.8 -3463.6)">
357
          <rect id="rect2136" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
358
          <ellipse id="path2137" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
359
         </g>
360
        </g>
361
       </g>
362
      </g>
363
      <ellipse id="path2138" fill="#fff" transform="translate(-3.7817 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
364
      <ellipse id="path2139" fill="#fff" transform="translate(129.99 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
365
      <ellipse id="path2140" fill="#fff" transform="translate(61.922 67.595)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
366
      <ellipse id="path2141" fill="#fff" transform="translate(1.4179 140.39)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
367
      <ellipse id="path2142" fill="#fff" transform="translate(128.57 142.75)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
368
     </g>
369
     <g id="g2143" transform="translate(3.7817 321.43)">
370
      <g id="g2144" transform="matrix(.15 0 0 .15 2790 -2140.7)" fill="#3b3bff">
371
       <g id="g2145" transform="translate(1261.6 8670.4)">
372
        <g id="g2146">
373
         <rect id="rect2147" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
374
         <ellipse id="path2148" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
375
        </g>
376
        <g id="g2149" transform="translate(-5963.8 -3463.6)">
377
         <rect id="rect2150" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
378
         <ellipse id="path2151" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
379
        </g>
380
       </g>
381
       <g id="g2152" transform="translate(-4610.5 4587.5)">
382
        <g id="g2153" transform="matrix(.95 0 0 .95 5869.2 3772.5)">
383
         <g id="g2154">
384
          <rect id="rect2155" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
385
          <ellipse id="path2156" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
386
         </g>
387
         <g id="g2157" transform="translate(-5963.8 -3463.6)">
388
          <rect id="rect2158" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
389
          <ellipse id="path2159" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
390
         </g>
391
        </g>
392
        <g id="g2160" transform="matrix(.567 0 0 .567 5848 1394.8)">
393
         <g id="g2161">
394
          <rect id="rect2162" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
395
          <ellipse id="path2163" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
396
         </g>
397
         <g id="g2164" transform="translate(-5963.8 -3463.6)">
398
          <rect id="rect2165" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
399
          <ellipse id="path2166" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
400
         </g>
401
        </g>
402
        <g id="g2167" transform="matrix(.51172 0 0 .51172 5844.9 1051.6)">
403
         <g id="g2168">
404
          <rect id="rect2169" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
405
          <ellipse id="path2170" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
406
         </g>
407
         <g id="g2171" transform="translate(-5963.8 -3463.6)">
408
          <rect id="rect2172" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
409
          <ellipse id="path2173" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
410
         </g>
411
        </g>
412
       </g>
413
      </g>
414
      <ellipse id="path2174" fill="#fff" transform="translate(-3.7817 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
415
      <ellipse id="path2175" fill="#fff" transform="translate(129.99 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
416
      <ellipse id="path2176" fill="#fff" transform="translate(61.922 67.595)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
417
      <ellipse id="path2177" fill="#fff" transform="translate(1.4179 140.39)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
418
      <ellipse id="path2178" fill="#fff" transform="translate(128.57 142.75)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
419
     </g>
420
     <g id="g1215" transform="translate(268.49 321.43)">
421
      <g id="g2180" transform="matrix(.15 0 0 .15 2790 -2140.7)" fill="#3b3bff">
422
       <g id="g2181" transform="translate(1261.6 8670.4)">
423
        <g id="g2182">
424
         <rect id="rect2183" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
425
         <ellipse id="path2184" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
426
        </g>
427
        <g id="g2185" transform="translate(-5963.8 -3463.6)">
428
         <rect id="rect2186" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
429
         <ellipse id="path2187" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
430
        </g>
431
       </g>
432
       <g id="g2188" transform="translate(-4610.5 4587.5)">
433
        <g id="g2189" transform="matrix(.95 0 0 .95 5869.2 3772.5)">
434
         <g id="g2190">
435
          <rect id="rect2191" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
436
          <ellipse id="path2192" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
437
         </g>
438
         <g id="g2193" transform="translate(-5963.8 -3463.6)">
439
          <rect id="rect2194" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
440
          <ellipse id="path2195" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
441
         </g>
442
        </g>
443
        <g id="g2196" transform="matrix(.567 0 0 .567 5848 1394.8)">
444
         <g id="g1233">
445
          <rect id="rect1234" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
446
          <ellipse id="path2199" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
447
         </g>
448
         <g id="g2200" transform="translate(-5963.8 -3463.6)">
449
          <rect id="rect2201" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
450
          <ellipse id="path2202" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
451
         </g>
452
        </g>
453
        <g id="g2203" transform="matrix(.51172 0 0 .51172 5844.9 1051.6)">
454
         <g id="g2204">
455
          <rect id="rect2205" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
456
          <ellipse id="path2206" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
457
         </g>
458
         <g id="g2207" transform="translate(-5963.8 -3463.6)">
459
          <rect id="rect2208" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
460
          <ellipse id="path2209" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
461
         </g>
462
        </g>
463
       </g>
464
      </g>
465
      <ellipse id="path2210" fill="#fff" transform="translate(-3.7817 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
466
      <ellipse id="path2211" fill="#fff" transform="translate(129.99 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
467
      <ellipse id="path2212" fill="#fff" transform="translate(61.922 67.595)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
468
      <ellipse id="path2213" fill="#fff" transform="translate(1.4179 140.39)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
469
      <ellipse id="path2214" fill="#fff" transform="translate(128.57 142.75)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
470
     </g>
471
     <g id="g2215" transform="translate(-260.92 321.43)">
472
      <g id="g2216" transform="matrix(.15 0 0 .15 2790 -2140.7)" fill="#3b3bff">
473
       <g id="g2217" transform="translate(1261.6 8670.4)">
474
        <g id="g2218">
475
         <rect id="rect2219" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
476
         <ellipse id="path2220" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
477
        </g>
478
        <g id="g2221" transform="translate(-5963.8 -3463.6)">
479
         <rect id="rect2222" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
480
         <ellipse id="path2223" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
481
        </g>
482
       </g>
483
       <g id="g2224" transform="translate(-4610.5 4587.5)">
484
        <g id="g2225" transform="matrix(.95 0 0 .95 5869.2 3772.5)">
485
         <g id="g2226">
486
          <rect id="rect2227" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
487
          <ellipse id="path2228" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
488
         </g>
489
         <g id="g2229" transform="translate(-5963.8 -3463.6)">
490
          <rect id="rect2230" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
491
          <ellipse id="path2231" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
492
         </g>
493
        </g>
494
        <g id="g2232" transform="matrix(.567 0 0 .567 5848 1394.8)">
495
         <g id="g2233">
496
          <rect id="rect2234" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
497
          <ellipse id="path2235" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
498
         </g>
499
         <g id="g2236" transform="translate(-5963.8 -3463.6)">
500
          <rect id="rect2237" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
501
          <ellipse id="path2238" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
502
         </g>
503
        </g>
504
        <g id="g2239" transform="matrix(.51172 0 0 .51172 5844.9 1051.6)">
505
         <g id="g2240">
506
          <rect id="rect2241" height="1171.1" width="1590.9" y="-7147" x="-850.89"/>
507
          <ellipse id="path2242" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
508
         </g>
509
         <g id="g2243" transform="translate(-5963.8 -3463.6)">
510
          <rect id="rect2244" height="632.38" width="859.09" y="-3340.7" x="5478.8"/>
511
          <ellipse id="path2245" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/>
512
         </g>
513
        </g>
514
       </g>
515
      </g>
516
      <ellipse id="path2246" fill="#fff" transform="translate(-3.7817 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
517
      <ellipse id="path2247" fill="#fff" transform="translate(129.99 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
518
      <ellipse id="path2248" fill="#fff" transform="translate(61.922 67.595)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
519
      <ellipse id="path2249" fill="#fff" transform="translate(1.4179 140.39)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
520
      <ellipse id="path2250" fill="#fff" transform="translate(128.57 142.75)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/>
521
     </g>
522
    </g>
523
   </g>
524
  </g>
525
 </g>
526
</svg>
branches/2.8.x/wb/modules/MultiLingual/flags/svg/tr.svg
1
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
3
<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
4
 <metadata id="metadata4108">
5
  <rdf:RDF>
6
   <cc:Work rdf:about="">
7
    <dc:format>image/svg+xml</dc:format>
8
    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
9
   </cc:Work>
10
  </rdf:RDF>
11
 </metadata>
12
 <g id="flag">
13
  <rect id="rect551" fill-rule="evenodd" height="480" width="640" y="2.5925e-15" x="0" stroke-width="1pt" fill="#f31930"/>
14
  <g id="g3005" transform="matrix(.9375 0 0 .9375 132.01 7.2462)">
15
   <path id="path670" d="m393.35 220.64" stroke="#000" stroke-width=".77658pt" fill="none"/>
16
   <path id="path614" d="m178.37 445.64c0 100.69-81.622 182.31-182.31 182.31s-182.31-81.622-182.31-182.31 81.622-182.31 182.31-182.31 182.31 81.622 182.31 182.31z" fill-rule="evenodd" transform="matrix(.71362 0 0 .70145 166.01 -56.352)" fill="#fff"/>
17
   <path id="path615" d="m-15.739 157.09c0 44.186-35.82 80.006-80.006 80.006s-80.006-35.82-80.006-80.006 35.82-80.006 80.006-80.006 80.006 35.82 80.006 80.006z" fill-rule="evenodd" transform="matrix(1.3009 0 0 1.2787 320.28 55.365)" fill="#f31830"/>
18
   <path id="path563" d="m318.63 196.5-1.0501 47.273-44.103 11.973 43.473 15.482-1.0501 43.351 28.352-33.854 42.842 14.863-24.782-36.332 30.242-36.125-46.413 12.798-27.512-39.428z" fill-rule="evenodd" stroke-width="1pt" fill="#fff"/>
19
  </g>
20
 </g>
21
</svg>
branches/2.8.x/wb/modules/MultiLingual/flags/svg/ru.svg
1
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
3
<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
4
 <metadata id="metadata4346">
5
  <rdf:RDF>
6
   <cc:Work rdf:about="">
7
    <dc:format>image/svg+xml</dc:format>
8
    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
9
   </cc:Work>
10
  </rdf:RDF>
11
 </metadata>
12
 <g id="flag" fill-rule="evenodd" stroke-width="1pt" transform="matrix(1.25 0 0 .93750 0 -.0000020021)">
13
  <rect id="rect171" height="512" width="512" y=".0000024116" x="0" fill="#fff"/>
14
  <rect id="rect403" height="341.33" width="512" y="170.67" x="0" fill="#01017e"/>
15
  <rect id="rect135" height="170.67" width="512" y="341.33" x="0" fill="#fe0101"/>
16
 </g>
17
</svg>
branches/2.8.x/wb/modules/MultiLingual/flags/svg/bg.svg
1
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
3
<svg id="svg626" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
4
 <metadata id="metadata3008">
5
  <rdf:RDF>
6
   <cc:Work rdf:about="">
7
    <dc:format>image/svg+xml</dc:format>
8
    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
9
   </cc:Work>
10
  </rdf:RDF>
11
 </metadata>
12
 <g id="flag">
13
  <g id="g3259" fill-rule="evenodd" stroke-width="1pt" transform="scale(1.25 .93750)">
14
   <rect id="rect629" height="170.67" width="512" y="341.33" x="0" fill="#de2110"/>
15
   <rect id="rect631" height="170.67" width="512" y="0" x="0" fill="#fff"/>
16
   <rect id="rect632" height="170.67" width="512" y="170.67" x="0" fill="#319400"/>
17
  </g>
18
 </g>
19
</svg>
branches/2.8.x/wb/modules/MultiLingual/flags/svg/de.svg
1
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
3
<!-- /Creative Commons Public Domain -->
4
<!--
5
<rdf:RDF xmlns="http://web.resource.org/cc/"
6
    xmlns:dc="http://purl.org/dc/elements/1.1/"
7
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
8
<Work rdf:about="">
9
   <dc:title>SVG graphic of German flags</dc:title>
10
   <dc:rights><Agent>
11
      <dc:title>Philipp Sadleder</dc:title>
12
   </Agent></dc:rights>
13
   <license rdf:resource="http://web.resource.org/cc/PublicDomain" />
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff