mirror of
				https://github.com/optim-enterprises-bv/openwrt-ipq.git
				synced 2025-10-30 17:58:28 +00:00 
			
		
		
		
	README: port to 21st century
The README is no longer important to only developers but also users. Reflect that by adding valuable information for everyone new to OpenWrt! Sunshine Signed-off-by: Paul Spooren <mail@aparcar.org> [remove trailing whitespace and empty line at EOF] Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
This commit is contained in:
		 Paul Spooren
					Paul Spooren
				
			
				
					committed by
					
						 Adrian Schmutzler
						Adrian Schmutzler
					
				
			
			
				
	
			
			
			 Adrian Schmutzler
						Adrian Schmutzler
					
				
			
						parent
						
							8a8ef4ed86
						
					
				
				
					commit
					d0113711a3
				
			
							
								
								
									
										34
									
								
								README
									
									
									
									
									
								
							
							
						
						
									
										34
									
								
								README
									
									
									
									
									
								
							| @@ -1,34 +0,0 @@ | ||||
|   _______                     ________        __ | ||||
|  |       |.-----.-----.-----.|  |  |  |.----.|  |_ | ||||
|  |   -   ||  _  |  -__|     ||  |  |  ||   _||   _| | ||||
|  |_______||   __|_____|__|__||________||__|  |____| | ||||
|           |__| W I R E L E S S   F R E E D O M | ||||
|  ----------------------------------------------------- | ||||
|  | ||||
| This is the buildsystem for the OpenWrt Linux distribution. | ||||
|  | ||||
| To build your own firmware you need a Linux, BSD or MacOSX system (case | ||||
| sensitive filesystem required). Cygwin is unsupported because of the lack | ||||
| of a case sensitive file system. | ||||
|  | ||||
| You need gcc, binutils, bzip2, flex, python3.5+, perl, make, find, grep, diff, | ||||
| unzip, gawk, getopt, subversion, libz-dev and libc headers installed. | ||||
|  | ||||
| 1. Run "./scripts/feeds update -a" to obtain all the latest package definitions | ||||
| defined in feeds.conf / feeds.conf.default | ||||
|  | ||||
| 2. Run "./scripts/feeds install -a" to install symlinks for all obtained | ||||
| packages into package/feeds/ | ||||
|  | ||||
| 3. Run "make menuconfig" to select your preferred configuration for the | ||||
| toolchain, target system & firmware packages. | ||||
|  | ||||
| 4. Run "make" to build your firmware. This will download all sources, build | ||||
| the cross-compile toolchain and then cross-compile the Linux kernel & all | ||||
| chosen applications for your target system. | ||||
|  | ||||
| Sunshine! | ||||
| 	Your OpenWrt Community | ||||
| 	http://www.openwrt.org | ||||
|  | ||||
|  | ||||
							
								
								
									
										87
									
								
								README.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										87
									
								
								README.md
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,87 @@ | ||||
|  | ||||
|  | ||||
| OpenWrt Project is a Linux operating system targeting embedded devices. Instead | ||||
| of trying to create a single, static firmware, OpenWrt provides a fully | ||||
| writable filesystem with package management. This frees you from the | ||||
| application selection and configuration provided by the vendor and allows you | ||||
| to customize the device through the use of packages to suit any application. | ||||
| For developers, OpenWrt is the framework to build an application without having | ||||
| to build a complete firmware around it; for users this means the ability for | ||||
| full customization, to use the device in ways never envisioned. | ||||
|  | ||||
| Sunshine! | ||||
|  | ||||
| ## Development | ||||
|  | ||||
| To build your own firmware you need a GNU/Linux, BSD or MacOSX system (case | ||||
| sensitive filesystem required). Cygwin is unsupported because of the lack of a | ||||
| case sensitive file system. | ||||
|  | ||||
| ### Requirements | ||||
|  | ||||
| You need the following tools to compile OpenWrt, the package names vary between | ||||
| distributions. A complete list with distribution specific packages is found in | ||||
| the [Build System Setup](https://openwrt.org/docs/guide-developer/build-system/install-buildsystem) | ||||
| documentation. | ||||
|  | ||||
| ``` | ||||
| gcc binutils bzip2 flex python3 perl make find grep diff unzip gawk getopt | ||||
| subversion libz-dev libc-dev | ||||
| ``` | ||||
|  | ||||
| ### Quickstart | ||||
|  | ||||
| 1. Run `./scripts/feeds update -a` to obtain all the latest package definitions | ||||
|    defined in feeds.conf / feeds.conf.default | ||||
|  | ||||
| 2. Run `./scripts/feeds install -a` to install symlinks for all obtained | ||||
|    packages into package/feeds/ | ||||
|  | ||||
| 3. Run `make menuconfig` to select your preferred configuration for the | ||||
|    toolchain, target system & firmware packages. | ||||
|  | ||||
| 4. Run `make` to build your firmware. This will download all sources, build the | ||||
|    cross-compile toolchain and then cross-compile the GNU/Linux kernel & all chosen | ||||
|    applications for your target system. | ||||
|  | ||||
| ### Related Repositories | ||||
|  | ||||
| The main repository uses multiple sub-repositories to manage packages of | ||||
| different categories. All packages are installed via the OpenWrt package | ||||
| manager called `opkg`. If you're looking to develop the web interface or port | ||||
| packages to OpenWrt, please find the fitting repository below. | ||||
|  | ||||
| * [LuCI Web Interface](https://github.com/openwrt/luci): Modern and modular | ||||
|   interface to control the device via a web browser. | ||||
|  | ||||
| * [OpenWrt Packages](https://github.com/openwrt/packages): Community repository | ||||
|   of ported packages. | ||||
|  | ||||
| * [OpenWrt Routing](https://github.com/openwrt-routing/packages): Packages | ||||
|   specifically focused on (mesh) routing. | ||||
|  | ||||
| ## Support Information | ||||
|  | ||||
| For a list of supported devices see the [OpenWrt Hardware Database](https://openwrt.org/supported_devices) | ||||
|  | ||||
| ### Documentation | ||||
|  | ||||
| * [Quick Start Guide](https://openwrt.org/docs/guide-quick-start/start) | ||||
| * [User Guide](https://openwrt.org/docs/guide-user/start) | ||||
| * [Developer Documentation](https://openwrt.org/docs/guide-developer/start) | ||||
| * [Technical Reference](https://openwrt.org/docs/techref/start) | ||||
|  | ||||
| ### Support Community | ||||
|  | ||||
| * [Forum](https://forum.openwrt.org): For usage, projects, discussions and hardware advise. | ||||
| * [Support Chat](https://webchat.freenode.net/#openwrt): Channel `#openwrt` on freenode.net. | ||||
|  | ||||
| ### Developer Community | ||||
|  | ||||
| * [Bug Reports](https://bugs.openwrt.org): Report bugs in OpenWrt | ||||
| * [Dev Mailing List](https://lists.openwrt.org/mailman/listinfo/openwrt-devel): Send patches | ||||
| * [Dev Chat](https://webchat.freenode.net/#openwrt-devel): Channel `#openwrt-devel` on freenode.net. | ||||
|  | ||||
| ## License | ||||
|  | ||||
| OpenWrt is licensed under GPL-2.0 | ||||
							
								
								
									
										610
									
								
								logo.svg
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										610
									
								
								logo.svg
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,610 @@ | ||||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||||
| <svg | ||||
|    xmlns:dc="http://purl.org/dc/elements/1.1/" | ||||
|    xmlns:cc="http://creativecommons.org/ns#" | ||||
|    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | ||||
|    xmlns:svg="http://www.w3.org/2000/svg" | ||||
|    xmlns="http://www.w3.org/2000/svg" | ||||
|    id="svg5076" | ||||
|    version="1.1" | ||||
|    viewBox="0 0 1020 283.64442" | ||||
|    height="283.64441mm" | ||||
|    width="1020mm"> | ||||
|   <defs | ||||
|      id="defs5070"> | ||||
|     <clipPath | ||||
|        id="clipPath4288" | ||||
|        clipPathUnits="userSpaceOnUse"> | ||||
|       <path | ||||
|          id="path4286" | ||||
|          d="M 0,0 H 792 V 612 H 0 Z" /> | ||||
|     </clipPath> | ||||
|     <clipPath | ||||
|        id="clipPath4240" | ||||
|        clipPathUnits="userSpaceOnUse"> | ||||
|       <path | ||||
|          id="path4238" | ||||
|          d="M 0,0 H 792 V 612 H 0 Z" /> | ||||
|     </clipPath> | ||||
|     <clipPath | ||||
|        id="clipPath4220" | ||||
|        clipPathUnits="userSpaceOnUse"> | ||||
|       <path | ||||
|          id="path4218" | ||||
|          d="M 0,0 H 792 V 612 H 0 Z" /> | ||||
|     </clipPath> | ||||
|     <clipPath | ||||
|        id="clipPath4200" | ||||
|        clipPathUnits="userSpaceOnUse"> | ||||
|       <path | ||||
|          id="path4198" | ||||
|          d="M 0,0 H 792 V 612 H 0 Z" /> | ||||
|     </clipPath> | ||||
|     <clipPath | ||||
|        id="clipPath4180" | ||||
|        clipPathUnits="userSpaceOnUse"> | ||||
|       <path | ||||
|          id="path4178" | ||||
|          d="M 0,0 H 792 V 612 H 0 Z" /> | ||||
|     </clipPath> | ||||
|     <clipPath | ||||
|        id="clipPath4156" | ||||
|        clipPathUnits="userSpaceOnUse"> | ||||
|       <path | ||||
|          id="path4154" | ||||
|          d="M 0,0 H 792 V 612 H 0 Z" /> | ||||
|     </clipPath> | ||||
|   </defs> | ||||
|   <metadata | ||||
|      id="metadata5073"> | ||||
|     <rdf:RDF> | ||||
|       <cc:Work | ||||
|          rdf:about=""> | ||||
|         <dc:format>image/svg+xml</dc:format> | ||||
|         <dc:type | ||||
|            rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | ||||
|         <dc:title></dc:title> | ||||
|       </cc:Work> | ||||
|     </rdf:RDF> | ||||
|   </metadata> | ||||
|   <g | ||||
|      transform="translate(-47.966319,156.7609)" | ||||
|      id="layer1"> | ||||
|     <g | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,513.67103,116.33681)" | ||||
|        id="g4144"> | ||||
|       <path | ||||
|          id="path4146" | ||||
|          style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|          d="M 0,0 H -1.124 L -1.835,2.629 -2.553,0 H -3.67 l -1.213,4.254 h 1.073 l 0.743,-2.679 0.73,2.679 h 0.997 l 0.731,-2.679 0.742,2.679 h 1.079 z" /> | ||||
|     </g> | ||||
|     <path | ||||
|        id="path4148" | ||||
|        style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.73017931" | ||||
|        d="m 530.22713,91.9622 h 6.00516 v 24.37624 h -6.00516 z" /> | ||||
|     <g | ||||
|        id="g4150" | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,-1809.0259,1720.9092)"> | ||||
|       <g | ||||
|          clip-path="url(#clipPath4156)" | ||||
|          id="g4152"> | ||||
|         <g | ||||
|            transform="translate(413.9243,280.0213)" | ||||
|            id="g4158"> | ||||
|           <path | ||||
|              id="path4160" | ||||
|              style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              d="M 0,0 -1.283,1.461 H -1.587 V 0 h -1.048 v 4.254 h 2.152 C -0.021,4.254 0.349,4.126 0.628,3.87 0.908,3.614 1.047,3.278 1.047,2.864 1.047,2.517 0.948,2.223 0.749,1.984 0.55,1.745 0.277,1.587 -0.07,1.511 L 1.263,0 Z m -0.597,2.336 c 0.186,0 0.335,0.047 0.448,0.14 0.111,0.094 0.168,0.218 0.168,0.375 0,0.152 -0.057,0.275 -0.168,0.368 -0.113,0.093 -0.262,0.14 -0.448,0.14 h -0.99 V 2.336 Z" /> | ||||
|         </g> | ||||
|       </g> | ||||
|     </g> | ||||
|     <g | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,598.70865,116.33681)" | ||||
|        id="g4162"> | ||||
|       <path | ||||
|          id="path4164" | ||||
|          style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|          d="m 0,0 h -3.314 v 4.254 h 3.295 V 3.353 H -2.267 V 2.552 h 2.064 V 1.702 H -2.267 V 0.901 H 0 Z" /> | ||||
|     </g> | ||||
|     <g | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,627.74795,116.33681)" | ||||
|        id="g4166"> | ||||
|       <path | ||||
|          id="path4168" | ||||
|          style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|          d="m 0,0 h -3.143 v 4.254 h 1.048 V 0.914 H 0 Z" /> | ||||
|     </g> | ||||
|     <g | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,657.36708,116.33681)" | ||||
|        id="g4170"> | ||||
|       <path | ||||
|          id="path4172" | ||||
|          style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|          d="m 0,0 h -3.314 v 4.254 h 3.295 V 3.353 H -2.267 V 2.552 h 2.064 V 1.702 H -2.267 V 0.901 H 0 Z" /> | ||||
|     </g> | ||||
|     <g | ||||
|        id="g4174" | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,-1809.0259,1720.9092)"> | ||||
|       <g | ||||
|          clip-path="url(#clipPath4180)" | ||||
|          id="g4176"> | ||||
|         <g | ||||
|            transform="translate(435.1846,284.0439)" | ||||
|            id="g4182"> | ||||
|           <path | ||||
|              id="path4184" | ||||
|              style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              d="m 0,0 c 0.313,-0.218 0.51,-0.52 0.59,-0.905 l -1.028,-0.209 c -0.038,0.19 -0.127,0.337 -0.267,0.441 -0.139,0.104 -0.298,0.155 -0.476,0.155 -0.17,0 -0.307,-0.041 -0.413,-0.123 -0.105,-0.083 -0.158,-0.185 -0.158,-0.309 0,-0.186 0.114,-0.304 0.342,-0.355 l 0.883,-0.197 c 0.779,-0.173 1.168,-0.586 1.168,-1.238 0,-0.436 -0.167,-0.774 -0.501,-1.016 -0.335,-0.241 -0.752,-0.362 -1.251,-0.362 -0.495,0 -0.916,0.113 -1.261,0.34 -0.344,0.227 -0.545,0.542 -0.6,0.949 l 1.08,0.209 c 0.101,-0.418 0.381,-0.628 0.838,-0.628 0.195,0 0.348,0.041 0.46,0.121 0.113,0.08 0.169,0.186 0.169,0.317 0,0.102 -0.029,0.182 -0.086,0.242 -0.057,0.058 -0.16,0.103 -0.308,0.133 l -0.889,0.19 c -0.762,0.174 -1.143,0.584 -1.143,1.232 0,0.411 0.155,0.736 0.463,0.978 0.309,0.241 0.716,0.362 1.22,0.362 C -0.703,0.327 -0.313,0.218 0,0" /> | ||||
|         </g> | ||||
|         <g | ||||
|            transform="translate(440.4556,284.0439)" | ||||
|            id="g4186"> | ||||
|           <path | ||||
|              id="path4188" | ||||
|              style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              d="m 0,0 c 0.313,-0.218 0.51,-0.52 0.59,-0.905 l -1.028,-0.209 c -0.039,0.19 -0.127,0.337 -0.267,0.441 -0.14,0.104 -0.298,0.155 -0.476,0.155 -0.17,0 -0.307,-0.041 -0.413,-0.123 -0.106,-0.083 -0.158,-0.185 -0.158,-0.309 0,-0.186 0.114,-0.304 0.342,-0.355 l 0.883,-0.197 c 0.778,-0.173 1.168,-0.586 1.168,-1.238 0,-0.436 -0.167,-0.774 -0.501,-1.016 -0.335,-0.241 -0.752,-0.362 -1.251,-0.362 -0.495,0 -0.916,0.113 -1.261,0.34 -0.345,0.227 -0.545,0.542 -0.6,0.949 l 1.08,0.209 c 0.101,-0.418 0.381,-0.628 0.838,-0.628 0.195,0 0.348,0.041 0.46,0.121 0.113,0.08 0.169,0.186 0.169,0.317 0,0.102 -0.029,0.182 -0.086,0.242 -0.057,0.058 -0.16,0.103 -0.308,0.133 l -0.889,0.19 c -0.762,0.174 -1.143,0.584 -1.143,1.232 0,0.411 0.155,0.736 0.463,0.978 0.309,0.241 0.716,0.362 1.22,0.362 C -0.703,0.327 -0.313,0.218 0,0" /> | ||||
|         </g> | ||||
|       </g> | ||||
|     </g> | ||||
|     <g | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,751.10593,102.36537)" | ||||
|        id="g4190"> | ||||
|       <path | ||||
|          id="path4192" | ||||
|          style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|          d="M 0,0 H 1.994 V -0.915 H 0 V -2.438 H -1.048 V 1.816 H 2.241 V 0.895 H 0 Z" /> | ||||
|     </g> | ||||
|     <g | ||||
|        id="g4194" | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,-1809.0259,1720.9092)"> | ||||
|       <g | ||||
|          clip-path="url(#clipPath4200)" | ||||
|          id="g4196"> | ||||
|         <g | ||||
|            transform="translate(453.4355,280.0213)" | ||||
|            id="g4202"> | ||||
|           <path | ||||
|              id="path4204" | ||||
|              style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              d="M 0,0 -1.283,1.461 H -1.587 V 0 h -1.048 v 4.254 h 2.152 C -0.021,4.254 0.349,4.126 0.628,3.87 0.908,3.614 1.047,3.278 1.047,2.864 1.047,2.517 0.948,2.223 0.749,1.984 0.55,1.745 0.277,1.587 -0.07,1.511 L 1.263,0 Z m -0.597,2.336 c 0.186,0 0.335,0.047 0.448,0.14 0.112,0.094 0.168,0.218 0.168,0.375 0,0.152 -0.056,0.275 -0.168,0.368 -0.113,0.093 -0.262,0.14 -0.448,0.14 h -0.99 V 2.336 Z" /> | ||||
|         </g> | ||||
|       </g> | ||||
|     </g> | ||||
|     <g | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,825.11696,116.33681)" | ||||
|        id="g4206"> | ||||
|       <path | ||||
|          id="path4208" | ||||
|          style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|          d="m 0,0 h -3.314 v 4.254 h 3.295 V 3.353 H -2.267 V 2.552 h 2.064 V 1.702 H -2.267 V 0.901 H 0 Z" /> | ||||
|     </g> | ||||
|     <g | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,855.13571,116.33681)" | ||||
|        id="g4210"> | ||||
|       <path | ||||
|          id="path4212" | ||||
|          style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|          d="m 0,0 h -3.314 v 4.254 h 3.295 V 3.353 H -2.266 V 2.552 h 2.063 V 1.702 H -2.266 V 0.901 H 0 Z" /> | ||||
|     </g> | ||||
|     <g | ||||
|        id="g4214" | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,-1809.0259,1720.9092)"> | ||||
|       <g | ||||
|          clip-path="url(#clipPath4220)" | ||||
|          id="g4216"> | ||||
|         <g | ||||
|            transform="translate(468.543,284.2753)" | ||||
|            id="g4222"> | ||||
|           <path | ||||
|              id="path4224" | ||||
|              style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              d="M 0,0 C 0.698,0 1.261,-0.196 1.688,-0.587 2.117,-0.979 2.33,-1.492 2.33,-2.127 2.33,-2.762 2.117,-3.275 1.688,-3.667 1.261,-4.058 0.698,-4.254 0,-4.254 H -1.683 V 0 Z m -0.038,-3.346 c 0.398,0 0.716,0.111 0.955,0.333 0.239,0.223 0.359,0.518 0.359,0.886 0,0.368 -0.12,0.663 -0.359,0.886 -0.239,0.222 -0.557,0.333 -0.955,0.333 h -0.597 v -2.438 z" /> | ||||
|         </g> | ||||
|         <g | ||||
|            transform="translate(476.4644,283.7232)" | ||||
|            id="g4226"> | ||||
|           <path | ||||
|              id="path4228" | ||||
|              style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              d="m 0,0 c 0.438,-0.432 0.657,-0.959 0.657,-1.581 0,-0.618 -0.219,-1.142 -0.657,-1.572 -0.437,-0.429 -0.974,-0.644 -1.609,-0.644 -0.635,0 -1.172,0.215 -1.61,0.644 -0.438,0.43 -0.657,0.954 -0.657,1.572 0,0.622 0.219,1.149 0.657,1.581 0.438,0.431 0.975,0.647 1.61,0.647 C -0.974,0.647 -0.437,0.431 0,0 m -0.739,-2.48 c 0.232,0.239 0.349,0.539 0.349,0.899 0,0.364 -0.117,0.666 -0.349,0.907 -0.233,0.242 -0.523,0.363 -0.87,0.363 -0.348,0 -0.638,-0.121 -0.87,-0.363 -0.233,-0.241 -0.349,-0.543 -0.349,-0.907 0,-0.36 0.116,-0.66 0.349,-0.899 0.232,-0.239 0.522,-0.359 0.87,-0.359 0.347,0 0.637,0.12 0.87,0.359" /> | ||||
|         </g> | ||||
|       </g> | ||||
|     </g> | ||||
|     <g | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,963.75463,116.33681)" | ||||
|        id="g4230"> | ||||
|       <path | ||||
|          id="path4232" | ||||
|          style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|          d="M 0,0 H -1.016 V 2.12 L -2.127,0 H -2.775 L -3.892,2.134 V 0 h -1.016 v 4.254 h 1.029 l 1.428,-2.635 1.429,2.635 H 0 Z" /> | ||||
|     </g> | ||||
|     <g | ||||
|        id="g4234" | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,-1809.0259,1720.9092)"> | ||||
|       <g | ||||
|          clip-path="url(#clipPath4240)" | ||||
|          id="g4236"> | ||||
|         <g | ||||
|            transform="translate(344.0771,303.0788)" | ||||
|            id="g4242"> | ||||
|           <path | ||||
|              id="path4244" | ||||
|              style="fill:#43b0e8;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              d="m 0,0 c -1.642,0 -2.978,-1.336 -2.978,-2.978 0,-1.641 1.336,-2.977 2.978,-2.977 1.642,0 2.977,1.336 2.977,2.977 C 2.977,-1.336 1.642,0 0,0" /> | ||||
|         </g> | ||||
|         <g | ||||
|            transform="translate(325.8174,318.3607)" | ||||
|            id="g4246"> | ||||
|           <path | ||||
|              id="path4248" | ||||
|              style="fill:#43b0e8;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              d="m 0,0 3.095,-3.095 c 3.885,3.885 9.249,6.292 15.165,6.292 5.915,0 11.279,-2.407 15.164,-6.292 L 36.519,0 C 31.841,4.678 25.382,7.575 18.26,7.575 11.137,7.575 4.678,4.678 0,0" /> | ||||
|         </g> | ||||
|         <g | ||||
|            transform="translate(331.3882,312.7901)" | ||||
|            id="g4250"> | ||||
|           <path | ||||
|              id="path4252" | ||||
|              style="fill:#43b0e8;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              d="m 0,0 3.095,-3.095 c 2.458,2.458 5.851,3.98 9.594,3.98 3.742,0 7.136,-1.522 9.594,-3.98 L 25.377,0 C 22.126,3.251 17.639,5.264 12.689,5.264 7.739,5.264 3.251,3.251 0,0" /> | ||||
|         </g> | ||||
|         <g | ||||
|            transform="translate(336.959,307.2194)" | ||||
|            id="g4254"> | ||||
|           <path | ||||
|              id="path4256" | ||||
|              style="fill:#43b0e8;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              d="m 0,0 3.095,-3.095 c 1.03,1.031 2.453,1.669 4.023,1.669 1.57,0 2.992,-0.638 4.023,-1.669 L 14.236,0 C 12.412,1.824 9.895,2.953 7.118,2.953 4.341,2.953 1.824,1.824 0,0" /> | ||||
|         </g> | ||||
|         <g | ||||
|            transform="translate(355.0425,308.0893)" | ||||
|            id="g4258"> | ||||
|           <path | ||||
|              id="path4260" | ||||
|              style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              d="m 0,0 c 1.639,-2.243 2.609,-5.004 2.609,-7.988 0,-7.485 -6.09,-13.574 -13.574,-13.574 -7.485,0 -13.575,6.089 -13.575,13.574 0,2.984 0.971,5.745 2.609,7.988 l -3.122,3.122 c -2.417,-3.059 -3.865,-6.918 -3.865,-11.11 0,-9.899 8.053,-17.953 17.953,-17.953 9.899,0 17.952,8.054 17.952,17.953 0,4.192 -1.448,8.051 -3.865,11.11 z" /> | ||||
|         </g> | ||||
|         <g | ||||
|            transform="translate(386.3213,304.0124)" | ||||
|            id="g4262"> | ||||
|           <path | ||||
|              id="path4264" | ||||
|              style="fill:#43b0e8;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              d="m 0,0 c 1.99,-1.981 2.985,-4.399 2.985,-7.254 0,-2.835 -0.995,-5.238 -2.985,-7.209 -1.991,-1.971 -4.423,-2.957 -7.297,-2.957 -2.874,0 -5.307,0.986 -7.297,2.957 -1.99,1.971 -2.986,4.374 -2.986,7.209 0,2.855 0.996,5.273 2.986,7.254 1.99,1.98 4.423,2.971 7.297,2.971 C -4.423,2.971 -1.991,1.98 0,0 m -2.826,-11.856 c 1.214,1.223 1.821,2.758 1.821,4.602 0,1.845 -0.607,3.389 -1.821,4.632 -1.214,1.243 -2.704,1.864 -4.471,1.864 -1.767,0 -3.258,-0.621 -4.472,-1.864 -1.213,-1.243 -1.82,-2.787 -1.82,-4.632 0,-1.844 0.607,-3.379 1.82,-4.602 1.214,-1.224 2.705,-1.835 4.472,-1.835 1.767,0 3.257,0.611 4.471,1.835" /> | ||||
|         </g> | ||||
|         <g | ||||
|            transform="translate(406.1567,299.8028)" | ||||
|            id="g4266"> | ||||
|           <path | ||||
|              id="path4268" | ||||
|              style="fill:#43b0e8;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              d="m 0,0 c 1.427,-1.466 2.141,-3.306 2.141,-5.52 0,-2.214 -0.709,-4.049 -2.127,-5.505 -1.417,-1.457 -3.087,-2.185 -5.01,-2.185 -1.903,0 -3.505,0.524 -4.806,1.573 v -6.088 h -3.845 V 1.762 h 3.845 V 0.597 c 1.281,1.068 2.884,1.602 4.806,1.602 C -3.093,2.199 -1.428,1.466 0,0 m -2.738,-8.681 c 0.767,0.787 1.15,1.84 1.15,3.161 0,1.321 -0.383,2.379 -1.15,3.175 -0.767,0.796 -1.743,1.194 -2.928,1.194 -1.087,0 -2.049,-0.408 -2.884,-1.223 -0.835,-0.816 -1.252,-1.864 -1.252,-3.146 0,-1.282 0.417,-2.325 1.252,-3.132 0.835,-0.805 1.797,-1.208 2.884,-1.208 1.185,0 2.161,0.393 2.928,1.179" /> | ||||
|         </g> | ||||
|         <g | ||||
|            transform="translate(424.9292,293.2633)" | ||||
|            id="g4270"> | ||||
|           <path | ||||
|              id="path4272" | ||||
|              style="fill:#43b0e8;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              d="m 0,0 h -11.069 c 0.194,-1.029 0.626,-1.85 1.296,-2.462 0.67,-0.611 1.451,-0.917 2.345,-0.917 1.651,0 2.854,0.641 3.612,1.922 l 3.437,-0.728 C -1,-3.661 -1.923,-4.777 -3.146,-5.535 -4.37,-6.292 -5.797,-6.671 -7.428,-6.671 c -2.097,0 -3.865,0.719 -5.302,2.156 -1.437,1.437 -2.155,3.282 -2.155,5.534 0,2.253 0.723,4.103 2.17,5.549 1.446,1.448 3.228,2.171 5.345,2.171 1.981,0 3.685,-0.695 5.112,-2.083 C -0.831,5.268 -0.078,3.486 0,1.311 Z m -9.598,4.69 c -0.69,-0.466 -1.141,-1.127 -1.355,-1.981 h 7.02 c -0.233,0.893 -0.66,1.563 -1.281,2.01 -0.622,0.447 -1.34,0.67 -2.156,0.67 -0.796,0 -1.539,-0.233 -2.228,-0.699" /> | ||||
|         </g> | ||||
|         <g | ||||
|            transform="translate(440.4829,300.2979)" | ||||
|            id="g4274"> | ||||
|           <path | ||||
|              id="path4276" | ||||
|              style="fill:#43b0e8;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              d="m 0,0 c 1.068,-1.136 1.602,-2.607 1.602,-4.413 v -8.855 h -3.845 v 8.039 c 0,1.03 -0.267,1.855 -0.801,2.477 -0.534,0.621 -1.248,0.931 -2.141,0.931 -2.408,0 -3.612,-1.67 -3.612,-5.01 v -6.437 h -3.845 V 1.267 h 3.845 v -1.311 c 1.165,1.166 2.69,1.748 4.573,1.748 C -2.476,1.704 -1.068,1.136 0,0" /> | ||||
|         </g> | ||||
|       </g> | ||||
|     </g> | ||||
|     <g | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,860.06303,76.178524)" | ||||
|        id="g4278"> | ||||
|       <path | ||||
|          id="path4280" | ||||
|          style="fill:#43b0e8;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|          d="M 0,0 H -4.253 L -8.04,13.166 -11.856,0 h -4.224 l -5.68,19.517 h 4.136 l 3.729,-13.458 3.933,13.458 h 3.816 L -2.214,6.059 1.515,19.517 H 5.68 Z" /> | ||||
|     </g> | ||||
|     <g | ||||
|        id="g4282" | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,-1809.0259,1720.9092)"> | ||||
|       <g | ||||
|          clip-path="url(#clipPath4288)" | ||||
|          id="g4284"> | ||||
|         <g | ||||
|            transform="translate(483.4453,301.6523)" | ||||
|            id="g4290"> | ||||
|           <path | ||||
|              id="path4292" | ||||
|              style="fill:#43b0e8;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              d="m 0,0 -0.204,-3.699 h -0.844 c -3.457,0 -5.185,-2.078 -5.185,-6.234 v -4.69 h -3.846 v 14.536 h 3.846 v -2.651 c 1.32,1.903 3.058,2.855 5.214,2.855 C -0.572,0.117 -0.233,0.078 0,0" /> | ||||
|         </g> | ||||
|         <g | ||||
|            transform="translate(496.7275,287.6704)" | ||||
|            id="g4294"> | ||||
|           <path | ||||
|              id="path4296" | ||||
|              style="fill:#43b0e8;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              d="m 0,0 c -1.34,-0.719 -2.603,-1.078 -3.787,-1.078 -1.787,0 -3.185,0.481 -4.195,1.442 -1.01,0.961 -1.515,2.413 -1.515,4.355 v 6.03 h -3.116 v 3.146 h 3.116 v 4.399 h 3.846 v -4.399 h 4.748 V 10.749 H -5.651 V 5.01 c 0,-1.67 0.709,-2.505 2.126,-2.505 0.738,0 1.544,0.233 2.418,0.699 z" /> | ||||
|         </g> | ||||
|         <g | ||||
|            transform="translate(500.332,306.9778)" | ||||
|            id="g4298"> | ||||
|           <path | ||||
|              id="path4300" | ||||
|              style="fill:#43b0e8;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              d="m 0,0 c 0,-0.279 -0.052,-0.539 -0.157,-0.779 -0.104,-0.241 -0.247,-0.452 -0.429,-0.634 -0.181,-0.181 -0.394,-0.324 -0.638,-0.428 -0.244,-0.105 -0.505,-0.157 -0.785,-0.157 -0.279,0 -0.538,0.052 -0.779,0.157 -0.241,0.104 -0.452,0.247 -0.633,0.428 -0.182,0.182 -0.325,0.393 -0.43,0.634 -0.104,0.24 -0.156,0.5 -0.156,0.779 0,0.279 0.052,0.541 0.156,0.785 0.105,0.244 0.248,0.457 0.43,0.638 0.181,0.182 0.392,0.325 0.633,0.429 0.241,0.105 0.5,0.157 0.779,0.157 0.28,0 0.541,-0.052 0.785,-0.157 C -0.98,1.748 -0.767,1.605 -0.586,1.423 -0.404,1.242 -0.261,1.029 -0.157,0.785 -0.052,0.541 0,0.279 0,0 m -0.324,0 c 0,0.23 -0.044,0.448 -0.131,0.654 -0.087,0.206 -0.208,0.386 -0.361,0.539 -0.153,0.153 -0.333,0.274 -0.539,0.361 -0.206,0.087 -0.423,0.131 -0.654,0.131 -0.23,0 -0.448,-0.044 -0.654,-0.131 C -2.868,1.467 -3.048,1.346 -3.202,1.193 -3.355,1.04 -3.475,0.86 -3.563,0.654 -3.65,0.448 -3.693,0.23 -3.693,0 c 0,-0.23 0.043,-0.448 0.13,-0.654 0.088,-0.206 0.208,-0.385 0.361,-0.539 0.154,-0.153 0.334,-0.273 0.539,-0.361 0.206,-0.087 0.424,-0.131 0.654,-0.131 0.231,0 0.448,0.044 0.654,0.131 0.206,0.088 0.386,0.208 0.539,0.361 0.153,0.154 0.274,0.333 0.361,0.539 0.087,0.206 0.131,0.424 0.131,0.654 m -1.298,-0.826 v 0.471 c 0,0.09 -0.019,0.154 -0.057,0.193 -0.038,0.038 -0.113,0.058 -0.225,0.058 h -0.408 v -0.722 h -0.377 v 1.831 h 0.931 c 0.175,0 0.313,-0.051 0.414,-0.152 0.101,-0.101 0.152,-0.229 0.152,-0.382 0,-0.098 -0.023,-0.183 -0.069,-0.256 -0.045,-0.074 -0.113,-0.128 -0.203,-0.162 0.083,-0.028 0.141,-0.069 0.172,-0.121 0.031,-0.052 0.047,-0.131 0.047,-0.235 v -0.523 z m -0.69,1.517 V 0.199 h 0.481 c 0.098,0 0.169,0.023 0.214,0.068 0.046,0.045 0.069,0.103 0.069,0.173 0,0.076 -0.021,0.137 -0.063,0.183 -0.042,0.045 -0.112,0.068 -0.209,0.068 z" /> | ||||
|         </g> | ||||
|       </g> | ||||
|     </g> | ||||
|     <g | ||||
|        id="g5242" | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,513.67103,116.33681)"> | ||||
|       <path | ||||
|          d="M 0,0 H -1.124 L -1.835,2.629 -2.553,0 H -3.67 l -1.213,4.254 h 1.073 l 0.743,-2.679 0.73,2.679 h 0.997 l 0.731,-2.679 0.742,2.679 h 1.079 z" | ||||
|          style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|          id="path5240" /> | ||||
|     </g> | ||||
|     <path | ||||
|        d="m 530.22713,91.9622 h 6.00516 v 24.37624 h -6.00516 z" | ||||
|        style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.73017931" | ||||
|        id="path5244" /> | ||||
|     <g | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,-1809.0259,1720.9092)" | ||||
|        id="g5252"> | ||||
|       <g | ||||
|          id="g5250" | ||||
|          clip-path="url(#clipPath4156)"> | ||||
|         <g | ||||
|            id="g5248" | ||||
|            transform="translate(413.9243,280.0213)"> | ||||
|           <path | ||||
|              d="M 0,0 -1.283,1.461 H -1.587 V 0 h -1.048 v 4.254 h 2.152 C -0.021,4.254 0.349,4.126 0.628,3.87 0.908,3.614 1.047,3.278 1.047,2.864 1.047,2.517 0.948,2.223 0.749,1.984 0.55,1.745 0.277,1.587 -0.07,1.511 L 1.263,0 Z m -0.597,2.336 c 0.186,0 0.335,0.047 0.448,0.14 0.111,0.094 0.168,0.218 0.168,0.375 0,0.152 -0.057,0.275 -0.168,0.368 -0.113,0.093 -0.262,0.14 -0.448,0.14 h -0.99 V 2.336 Z" | ||||
|              style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              id="path5246" /> | ||||
|         </g> | ||||
|       </g> | ||||
|     </g> | ||||
|     <g | ||||
|        id="g5256" | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,598.70865,116.33681)"> | ||||
|       <path | ||||
|          d="m 0,0 h -3.314 v 4.254 h 3.295 V 3.353 H -2.267 V 2.552 h 2.064 V 1.702 H -2.267 V 0.901 H 0 Z" | ||||
|          style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|          id="path5254" /> | ||||
|     </g> | ||||
|     <g | ||||
|        id="g5260" | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,627.74795,116.33681)"> | ||||
|       <path | ||||
|          d="m 0,0 h -3.143 v 4.254 h 1.048 V 0.914 H 0 Z" | ||||
|          style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|          id="path5258" /> | ||||
|     </g> | ||||
|     <g | ||||
|        id="g5264" | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,657.36708,116.33681)"> | ||||
|       <path | ||||
|          d="m 0,0 h -3.314 v 4.254 h 3.295 V 3.353 H -2.267 V 2.552 h 2.064 V 1.702 H -2.267 V 0.901 H 0 Z" | ||||
|          style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|          id="path5262" /> | ||||
|     </g> | ||||
|     <g | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,-1809.0259,1720.9092)" | ||||
|        id="g5276"> | ||||
|       <g | ||||
|          id="g5274" | ||||
|          clip-path="url(#clipPath4180)"> | ||||
|         <g | ||||
|            id="g5268" | ||||
|            transform="translate(435.1846,284.0439)"> | ||||
|           <path | ||||
|              d="m 0,0 c 0.313,-0.218 0.51,-0.52 0.59,-0.905 l -1.028,-0.209 c -0.038,0.19 -0.127,0.337 -0.267,0.441 -0.139,0.104 -0.298,0.155 -0.476,0.155 -0.17,0 -0.307,-0.041 -0.413,-0.123 -0.105,-0.083 -0.158,-0.185 -0.158,-0.309 0,-0.186 0.114,-0.304 0.342,-0.355 l 0.883,-0.197 c 0.779,-0.173 1.168,-0.586 1.168,-1.238 0,-0.436 -0.167,-0.774 -0.501,-1.016 -0.335,-0.241 -0.752,-0.362 -1.251,-0.362 -0.495,0 -0.916,0.113 -1.261,0.34 -0.344,0.227 -0.545,0.542 -0.6,0.949 l 1.08,0.209 c 0.101,-0.418 0.381,-0.628 0.838,-0.628 0.195,0 0.348,0.041 0.46,0.121 0.113,0.08 0.169,0.186 0.169,0.317 0,0.102 -0.029,0.182 -0.086,0.242 -0.057,0.058 -0.16,0.103 -0.308,0.133 l -0.889,0.19 c -0.762,0.174 -1.143,0.584 -1.143,1.232 0,0.411 0.155,0.736 0.463,0.978 0.309,0.241 0.716,0.362 1.22,0.362 C -0.703,0.327 -0.313,0.218 0,0" | ||||
|              style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              id="path5266" /> | ||||
|         </g> | ||||
|         <g | ||||
|            id="g5272" | ||||
|            transform="translate(440.4556,284.0439)"> | ||||
|           <path | ||||
|              d="m 0,0 c 0.313,-0.218 0.51,-0.52 0.59,-0.905 l -1.028,-0.209 c -0.039,0.19 -0.127,0.337 -0.267,0.441 -0.14,0.104 -0.298,0.155 -0.476,0.155 -0.17,0 -0.307,-0.041 -0.413,-0.123 -0.106,-0.083 -0.158,-0.185 -0.158,-0.309 0,-0.186 0.114,-0.304 0.342,-0.355 l 0.883,-0.197 c 0.778,-0.173 1.168,-0.586 1.168,-1.238 0,-0.436 -0.167,-0.774 -0.501,-1.016 -0.335,-0.241 -0.752,-0.362 -1.251,-0.362 -0.495,0 -0.916,0.113 -1.261,0.34 -0.345,0.227 -0.545,0.542 -0.6,0.949 l 1.08,0.209 c 0.101,-0.418 0.381,-0.628 0.838,-0.628 0.195,0 0.348,0.041 0.46,0.121 0.113,0.08 0.169,0.186 0.169,0.317 0,0.102 -0.029,0.182 -0.086,0.242 -0.057,0.058 -0.16,0.103 -0.308,0.133 l -0.889,0.19 c -0.762,0.174 -1.143,0.584 -1.143,1.232 0,0.411 0.155,0.736 0.463,0.978 0.309,0.241 0.716,0.362 1.22,0.362 C -0.703,0.327 -0.313,0.218 0,0" | ||||
|              style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              id="path5270" /> | ||||
|         </g> | ||||
|       </g> | ||||
|     </g> | ||||
|     <g | ||||
|        id="g5280" | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,751.10593,102.36537)"> | ||||
|       <path | ||||
|          d="M 0,0 H 1.994 V -0.915 H 0 V -2.438 H -1.048 V 1.816 H 2.241 V 0.895 H 0 Z" | ||||
|          style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|          id="path5278" /> | ||||
|     </g> | ||||
|     <g | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,-1809.0259,1720.9092)" | ||||
|        id="g5288"> | ||||
|       <g | ||||
|          id="g5286" | ||||
|          clip-path="url(#clipPath4200)"> | ||||
|         <g | ||||
|            id="g5284" | ||||
|            transform="translate(453.4355,280.0213)"> | ||||
|           <path | ||||
|              d="M 0,0 -1.283,1.461 H -1.587 V 0 h -1.048 v 4.254 h 2.152 C -0.021,4.254 0.349,4.126 0.628,3.87 0.908,3.614 1.047,3.278 1.047,2.864 1.047,2.517 0.948,2.223 0.749,1.984 0.55,1.745 0.277,1.587 -0.07,1.511 L 1.263,0 Z m -0.597,2.336 c 0.186,0 0.335,0.047 0.448,0.14 0.112,0.094 0.168,0.218 0.168,0.375 0,0.152 -0.056,0.275 -0.168,0.368 -0.113,0.093 -0.262,0.14 -0.448,0.14 h -0.99 V 2.336 Z" | ||||
|              style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              id="path5282" /> | ||||
|         </g> | ||||
|       </g> | ||||
|     </g> | ||||
|     <g | ||||
|        id="g5292" | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,825.11696,116.33681)"> | ||||
|       <path | ||||
|          d="m 0,0 h -3.314 v 4.254 h 3.295 V 3.353 H -2.267 V 2.552 h 2.064 V 1.702 H -2.267 V 0.901 H 0 Z" | ||||
|          style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|          id="path5290" /> | ||||
|     </g> | ||||
|     <g | ||||
|        id="g5296" | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,855.13571,116.33681)"> | ||||
|       <path | ||||
|          d="m 0,0 h -3.314 v 4.254 h 3.295 V 3.353 H -2.266 V 2.552 h 2.063 V 1.702 H -2.266 V 0.901 H 0 Z" | ||||
|          style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|          id="path5294" /> | ||||
|     </g> | ||||
|     <g | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,-1809.0259,1720.9092)" | ||||
|        id="g5308"> | ||||
|       <g | ||||
|          id="g5306" | ||||
|          clip-path="url(#clipPath4220)"> | ||||
|         <g | ||||
|            id="g5300" | ||||
|            transform="translate(468.543,284.2753)"> | ||||
|           <path | ||||
|              d="M 0,0 C 0.698,0 1.261,-0.196 1.688,-0.587 2.117,-0.979 2.33,-1.492 2.33,-2.127 2.33,-2.762 2.117,-3.275 1.688,-3.667 1.261,-4.058 0.698,-4.254 0,-4.254 H -1.683 V 0 Z m -0.038,-3.346 c 0.398,0 0.716,0.111 0.955,0.333 0.239,0.223 0.359,0.518 0.359,0.886 0,0.368 -0.12,0.663 -0.359,0.886 -0.239,0.222 -0.557,0.333 -0.955,0.333 h -0.597 v -2.438 z" | ||||
|              style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              id="path5298" /> | ||||
|         </g> | ||||
|         <g | ||||
|            id="g5304" | ||||
|            transform="translate(476.4644,283.7232)"> | ||||
|           <path | ||||
|              d="m 0,0 c 0.438,-0.432 0.657,-0.959 0.657,-1.581 0,-0.618 -0.219,-1.142 -0.657,-1.572 -0.437,-0.429 -0.974,-0.644 -1.609,-0.644 -0.635,0 -1.172,0.215 -1.61,0.644 -0.438,0.43 -0.657,0.954 -0.657,1.572 0,0.622 0.219,1.149 0.657,1.581 0.438,0.431 0.975,0.647 1.61,0.647 C -0.974,0.647 -0.437,0.431 0,0 m -0.739,-2.48 c 0.232,0.239 0.349,0.539 0.349,0.899 0,0.364 -0.117,0.666 -0.349,0.907 -0.233,0.242 -0.523,0.363 -0.87,0.363 -0.348,0 -0.638,-0.121 -0.87,-0.363 -0.233,-0.241 -0.349,-0.543 -0.349,-0.907 0,-0.36 0.116,-0.66 0.349,-0.899 0.232,-0.239 0.522,-0.359 0.87,-0.359 0.347,0 0.637,0.12 0.87,0.359" | ||||
|              style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              id="path5302" /> | ||||
|         </g> | ||||
|       </g> | ||||
|     </g> | ||||
|     <g | ||||
|        id="g5312" | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,963.75463,116.33681)"> | ||||
|       <path | ||||
|          d="M 0,0 H -1.016 V 2.12 L -2.127,0 H -2.775 L -3.892,2.134 V 0 h -1.016 v 4.254 h 1.029 l 1.428,-2.635 1.429,2.635 H 0 Z" | ||||
|          style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|          id="path5310" /> | ||||
|     </g> | ||||
|     <g | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,-1809.0259,1720.9092)" | ||||
|        id="g5352"> | ||||
|       <g | ||||
|          id="g5350" | ||||
|          clip-path="url(#clipPath4240)"> | ||||
|         <g | ||||
|            id="g5316" | ||||
|            transform="translate(344.0771,303.0788)"> | ||||
|           <path | ||||
|              d="m 0,0 c -1.642,0 -2.978,-1.336 -2.978,-2.978 0,-1.641 1.336,-2.977 2.978,-2.977 1.642,0 2.977,1.336 2.977,2.977 C 2.977,-1.336 1.642,0 0,0" | ||||
|              style="fill:#43b0e8;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              id="path5314" /> | ||||
|         </g> | ||||
|         <g | ||||
|            id="g5320" | ||||
|            transform="translate(325.8174,318.3607)"> | ||||
|           <path | ||||
|              d="m 0,0 3.095,-3.095 c 3.885,3.885 9.249,6.292 15.165,6.292 5.915,0 11.279,-2.407 15.164,-6.292 L 36.519,0 C 31.841,4.678 25.382,7.575 18.26,7.575 11.137,7.575 4.678,4.678 0,0" | ||||
|              style="fill:#43b0e8;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              id="path5318" /> | ||||
|         </g> | ||||
|         <g | ||||
|            id="g5324" | ||||
|            transform="translate(331.3882,312.7901)"> | ||||
|           <path | ||||
|              d="m 0,0 3.095,-3.095 c 2.458,2.458 5.851,3.98 9.594,3.98 3.742,0 7.136,-1.522 9.594,-3.98 L 25.377,0 C 22.126,3.251 17.639,5.264 12.689,5.264 7.739,5.264 3.251,3.251 0,0" | ||||
|              style="fill:#43b0e8;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              id="path5322" /> | ||||
|         </g> | ||||
|         <g | ||||
|            id="g5328" | ||||
|            transform="translate(336.959,307.2194)"> | ||||
|           <path | ||||
|              d="m 0,0 3.095,-3.095 c 1.03,1.031 2.453,1.669 4.023,1.669 1.57,0 2.992,-0.638 4.023,-1.669 L 14.236,0 C 12.412,1.824 9.895,2.953 7.118,2.953 4.341,2.953 1.824,1.824 0,0" | ||||
|              style="fill:#43b0e8;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              id="path5326" /> | ||||
|         </g> | ||||
|         <g | ||||
|            id="g5332" | ||||
|            transform="translate(355.0425,308.0893)"> | ||||
|           <path | ||||
|              d="m 0,0 c 1.639,-2.243 2.609,-5.004 2.609,-7.988 0,-7.485 -6.09,-13.574 -13.574,-13.574 -7.485,0 -13.575,6.089 -13.575,13.574 0,2.984 0.971,5.745 2.609,7.988 l -3.122,3.122 c -2.417,-3.059 -3.865,-6.918 -3.865,-11.11 0,-9.899 8.053,-17.953 17.953,-17.953 9.899,0 17.952,8.054 17.952,17.953 0,4.192 -1.448,8.051 -3.865,11.11 z" | ||||
|              style="fill:#072342;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              id="path5330" /> | ||||
|         </g> | ||||
|         <g | ||||
|            id="g5336" | ||||
|            transform="translate(386.3213,304.0124)"> | ||||
|           <path | ||||
|              d="m 0,0 c 1.99,-1.981 2.985,-4.399 2.985,-7.254 0,-2.835 -0.995,-5.238 -2.985,-7.209 -1.991,-1.971 -4.423,-2.957 -7.297,-2.957 -2.874,0 -5.307,0.986 -7.297,2.957 -1.99,1.971 -2.986,4.374 -2.986,7.209 0,2.855 0.996,5.273 2.986,7.254 1.99,1.98 4.423,2.971 7.297,2.971 C -4.423,2.971 -1.991,1.98 0,0 m -2.826,-11.856 c 1.214,1.223 1.821,2.758 1.821,4.602 0,1.845 -0.607,3.389 -1.821,4.632 -1.214,1.243 -2.704,1.864 -4.471,1.864 -1.767,0 -3.258,-0.621 -4.472,-1.864 -1.213,-1.243 -1.82,-2.787 -1.82,-4.632 0,-1.844 0.607,-3.379 1.82,-4.602 1.214,-1.224 2.705,-1.835 4.472,-1.835 1.767,0 3.257,0.611 4.471,1.835" | ||||
|              style="fill:#43b0e8;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              id="path5334" /> | ||||
|         </g> | ||||
|         <g | ||||
|            id="g5340" | ||||
|            transform="translate(406.1567,299.8028)"> | ||||
|           <path | ||||
|              d="m 0,0 c 1.427,-1.466 2.141,-3.306 2.141,-5.52 0,-2.214 -0.709,-4.049 -2.127,-5.505 -1.417,-1.457 -3.087,-2.185 -5.01,-2.185 -1.903,0 -3.505,0.524 -4.806,1.573 v -6.088 h -3.845 V 1.762 h 3.845 V 0.597 c 1.281,1.068 2.884,1.602 4.806,1.602 C -3.093,2.199 -1.428,1.466 0,0 m -2.738,-8.681 c 0.767,0.787 1.15,1.84 1.15,3.161 0,1.321 -0.383,2.379 -1.15,3.175 -0.767,0.796 -1.743,1.194 -2.928,1.194 -1.087,0 -2.049,-0.408 -2.884,-1.223 -0.835,-0.816 -1.252,-1.864 -1.252,-3.146 0,-1.282 0.417,-2.325 1.252,-3.132 0.835,-0.805 1.797,-1.208 2.884,-1.208 1.185,0 2.161,0.393 2.928,1.179" | ||||
|              style="fill:#43b0e8;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              id="path5338" /> | ||||
|         </g> | ||||
|         <g | ||||
|            id="g5344" | ||||
|            transform="translate(424.9292,293.2633)"> | ||||
|           <path | ||||
|              d="m 0,0 h -11.069 c 0.194,-1.029 0.626,-1.85 1.296,-2.462 0.67,-0.611 1.451,-0.917 2.345,-0.917 1.651,0 2.854,0.641 3.612,1.922 l 3.437,-0.728 C -1,-3.661 -1.923,-4.777 -3.146,-5.535 -4.37,-6.292 -5.797,-6.671 -7.428,-6.671 c -2.097,0 -3.865,0.719 -5.302,2.156 -1.437,1.437 -2.155,3.282 -2.155,5.534 0,2.253 0.723,4.103 2.17,5.549 1.446,1.448 3.228,2.171 5.345,2.171 1.981,0 3.685,-0.695 5.112,-2.083 C -0.831,5.268 -0.078,3.486 0,1.311 Z m -9.598,4.69 c -0.69,-0.466 -1.141,-1.127 -1.355,-1.981 h 7.02 c -0.233,0.893 -0.66,1.563 -1.281,2.01 -0.622,0.447 -1.34,0.67 -2.156,0.67 -0.796,0 -1.539,-0.233 -2.228,-0.699" | ||||
|              style="fill:#43b0e8;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              id="path5342" /> | ||||
|         </g> | ||||
|         <g | ||||
|            id="g5348" | ||||
|            transform="translate(440.4829,300.2979)"> | ||||
|           <path | ||||
|              d="m 0,0 c 1.068,-1.136 1.602,-2.607 1.602,-4.413 v -8.855 h -3.845 v 8.039 c 0,1.03 -0.267,1.855 -0.801,2.477 -0.534,0.621 -1.248,0.931 -2.141,0.931 -2.408,0 -3.612,-1.67 -3.612,-5.01 v -6.437 h -3.845 V 1.267 h 3.845 v -1.311 c 1.165,1.166 2.69,1.748 4.573,1.748 C -2.476,1.704 -1.068,1.136 0,0" | ||||
|              style="fill:#43b0e8;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              id="path5346" /> | ||||
|         </g> | ||||
|       </g> | ||||
|     </g> | ||||
|     <g | ||||
|        id="g5356" | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,860.06303,76.178524)"> | ||||
|       <path | ||||
|          d="M 0,0 H -4.253 L -8.04,13.166 -11.856,0 h -4.224 l -5.68,19.517 h 4.136 l 3.729,-13.458 3.933,13.458 h 3.816 L -2.214,6.059 1.515,19.517 H 5.68 Z" | ||||
|          style="fill:#43b0e8;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|          id="path5354" /> | ||||
|     </g> | ||||
|     <g | ||||
|        transform="matrix(5.7301796,0,0,-5.7301796,-1809.0259,1720.9092)" | ||||
|        id="g5372"> | ||||
|       <g | ||||
|          id="g5370" | ||||
|          clip-path="url(#clipPath4288)"> | ||||
|         <g | ||||
|            id="g5360" | ||||
|            transform="translate(483.4453,301.6523)"> | ||||
|           <path | ||||
|              d="m 0,0 -0.204,-3.699 h -0.844 c -3.457,0 -5.185,-2.078 -5.185,-6.234 v -4.69 h -3.846 v 14.536 h 3.846 v -2.651 c 1.32,1.903 3.058,2.855 5.214,2.855 C -0.572,0.117 -0.233,0.078 0,0" | ||||
|              style="fill:#43b0e8;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              id="path5358" /> | ||||
|         </g> | ||||
|         <g | ||||
|            id="g5364" | ||||
|            transform="translate(496.7275,287.6704)"> | ||||
|           <path | ||||
|              d="m 0,0 c -1.34,-0.719 -2.603,-1.078 -3.787,-1.078 -1.787,0 -3.185,0.481 -4.195,1.442 -1.01,0.961 -1.515,2.413 -1.515,4.355 v 6.03 h -3.116 v 3.146 h 3.116 v 4.399 h 3.846 v -4.399 h 4.748 V 10.749 H -5.651 V 5.01 c 0,-1.67 0.709,-2.505 2.126,-2.505 0.738,0 1.544,0.233 2.418,0.699 z" | ||||
|              style="fill:#43b0e8;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              id="path5362" /> | ||||
|         </g> | ||||
|         <g | ||||
|            id="g5368" | ||||
|            transform="translate(500.332,306.9778)"> | ||||
|           <path | ||||
|              d="m 0,0 c 0,-0.279 -0.052,-0.539 -0.157,-0.779 -0.104,-0.241 -0.247,-0.452 -0.429,-0.634 -0.181,-0.181 -0.394,-0.324 -0.638,-0.428 -0.244,-0.105 -0.505,-0.157 -0.785,-0.157 -0.279,0 -0.538,0.052 -0.779,0.157 -0.241,0.104 -0.452,0.247 -0.633,0.428 -0.182,0.182 -0.325,0.393 -0.43,0.634 -0.104,0.24 -0.156,0.5 -0.156,0.779 0,0.279 0.052,0.541 0.156,0.785 0.105,0.244 0.248,0.457 0.43,0.638 0.181,0.182 0.392,0.325 0.633,0.429 0.241,0.105 0.5,0.157 0.779,0.157 0.28,0 0.541,-0.052 0.785,-0.157 C -0.98,1.748 -0.767,1.605 -0.586,1.423 -0.404,1.242 -0.261,1.029 -0.157,0.785 -0.052,0.541 0,0.279 0,0 m -0.324,0 c 0,0.23 -0.044,0.448 -0.131,0.654 -0.087,0.206 -0.208,0.386 -0.361,0.539 -0.153,0.153 -0.333,0.274 -0.539,0.361 -0.206,0.087 -0.423,0.131 -0.654,0.131 -0.23,0 -0.448,-0.044 -0.654,-0.131 C -2.868,1.467 -3.048,1.346 -3.202,1.193 -3.355,1.04 -3.475,0.86 -3.563,0.654 -3.65,0.448 -3.693,0.23 -3.693,0 c 0,-0.23 0.043,-0.448 0.13,-0.654 0.088,-0.206 0.208,-0.385 0.361,-0.539 0.154,-0.153 0.334,-0.273 0.539,-0.361 0.206,-0.087 0.424,-0.131 0.654,-0.131 0.231,0 0.448,0.044 0.654,0.131 0.206,0.088 0.386,0.208 0.539,0.361 0.153,0.154 0.274,0.333 0.361,0.539 0.087,0.206 0.131,0.424 0.131,0.654 m -1.298,-0.826 v 0.471 c 0,0.09 -0.019,0.154 -0.057,0.193 -0.038,0.038 -0.113,0.058 -0.225,0.058 h -0.408 v -0.722 h -0.377 v 1.831 h 0.931 c 0.175,0 0.313,-0.051 0.414,-0.152 0.101,-0.101 0.152,-0.229 0.152,-0.382 0,-0.098 -0.023,-0.183 -0.069,-0.256 -0.045,-0.074 -0.113,-0.128 -0.203,-0.162 0.083,-0.028 0.141,-0.069 0.172,-0.121 0.031,-0.052 0.047,-0.131 0.047,-0.235 v -0.523 z m -0.69,1.517 V 0.199 h 0.481 c 0.098,0 0.169,0.023 0.214,0.068 0.046,0.045 0.069,0.103 0.069,0.173 0,0.076 -0.021,0.137 -0.063,0.183 -0.042,0.045 -0.112,0.068 -0.209,0.068 z" | ||||
|              style="fill:#43b0e8;fill-opacity:1;fill-rule:nonzero;stroke:none" | ||||
|              id="path5366" /> | ||||
|         </g> | ||||
|       </g> | ||||
|     </g> | ||||
|   </g> | ||||
| </svg> | ||||
| After Width: | Height: | Size: 36 KiB | 
		Reference in New Issue
	
	Block a user