rbpf.svg 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <svg
  3. xmlns:dc="http://purl.org/dc/elements/1.1/"
  4. xmlns:cc="http://creativecommons.org/ns#"
  5. xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  6. xmlns:svg="http://www.w3.org/2000/svg"
  7. xmlns="http://www.w3.org/2000/svg"
  8. xmlns:xlink="http://www.w3.org/1999/xlink"
  9. xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
  10. xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
  11. version="1.1"
  12. height="165.43929"
  13. width="349.44702"
  14. id="svg93"
  15. sodipodi:docname="rbpf.svg"
  16. inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
  17. <metadata
  18. id="metadata99">
  19. <rdf:RDF>
  20. <cc:Work
  21. rdf:about="">
  22. <dc:format>image/svg+xml</dc:format>
  23. <dc:type
  24. rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
  25. <dc:title />
  26. </cc:Work>
  27. </rdf:RDF>
  28. </metadata>
  29. <defs
  30. id="defs97">
  31. <mask
  32. id="holes-3">
  33. <rect
  34. style="fill:#ffffff"
  35. x="-60"
  36. y="-60"
  37. width="120"
  38. height="120"
  39. id="rect80-6" />
  40. <circle
  41. cx="0"
  42. id="hole-7"
  43. cy="-40"
  44. r="3" />
  45. <use
  46. height="100%"
  47. width="100%"
  48. y="0"
  49. x="0"
  50. xlink:href="#hole-7"
  51. transform="rotate(72)"
  52. id="use83-5" />
  53. <use
  54. height="100%"
  55. width="100%"
  56. y="0"
  57. x="0"
  58. xlink:href="#hole-7"
  59. transform="rotate(144)"
  60. id="use85-3" />
  61. <use
  62. height="100%"
  63. width="100%"
  64. y="0"
  65. x="0"
  66. xlink:href="#hole-7"
  67. transform="rotate(-144)"
  68. id="use87-5" />
  69. <use
  70. height="100%"
  71. width="100%"
  72. y="0"
  73. x="0"
  74. xlink:href="#hole-7"
  75. transform="rotate(-72)"
  76. id="use89-6" />
  77. </mask>
  78. <mask
  79. id="holes-3-2">
  80. <rect
  81. style="fill:#ffffff"
  82. x="-60"
  83. y="-60"
  84. width="120"
  85. height="120"
  86. id="rect80-6-6" />
  87. <circle
  88. cx="0"
  89. id="hole-7-1"
  90. cy="-40"
  91. r="3" />
  92. <use
  93. height="100%"
  94. width="100%"
  95. y="0"
  96. x="0"
  97. xlink:href="#hole-7-1"
  98. transform="rotate(72)"
  99. id="use83-5-0" />
  100. <use
  101. height="100%"
  102. width="100%"
  103. y="0"
  104. x="0"
  105. xlink:href="#hole-7-1"
  106. transform="rotate(144)"
  107. id="use85-3-6" />
  108. <use
  109. height="100%"
  110. width="100%"
  111. y="0"
  112. x="0"
  113. xlink:href="#hole-7-1"
  114. transform="rotate(-144)"
  115. id="use87-5-1" />
  116. <use
  117. height="100%"
  118. width="100%"
  119. y="0"
  120. x="0"
  121. xlink:href="#hole-7-1"
  122. transform="rotate(-72)"
  123. id="use89-6-5" />
  124. </mask>
  125. <mask
  126. id="holes-3-2-4">
  127. <rect
  128. style="fill:#ffffff"
  129. x="-60"
  130. y="-60"
  131. width="120"
  132. height="120"
  133. id="rect80-6-6-4" />
  134. <circle
  135. cx="0"
  136. id="hole-7-1-4"
  137. cy="-40"
  138. r="3" />
  139. <use
  140. height="100%"
  141. width="100%"
  142. y="0"
  143. x="0"
  144. xlink:href="#hole-7-1-4"
  145. transform="rotate(72)"
  146. id="use83-5-0-4" />
  147. <use
  148. height="100%"
  149. width="100%"
  150. y="0"
  151. x="0"
  152. xlink:href="#hole-7-1-4"
  153. transform="rotate(144)"
  154. id="use85-3-6-7" />
  155. <use
  156. height="100%"
  157. width="100%"
  158. y="0"
  159. x="0"
  160. xlink:href="#hole-7-1-4"
  161. transform="rotate(-144)"
  162. id="use87-5-1-6" />
  163. <use
  164. height="100%"
  165. width="100%"
  166. y="0"
  167. x="0"
  168. xlink:href="#hole-7-1-4"
  169. transform="rotate(-72)"
  170. id="use89-6-5-3" />
  171. </mask>
  172. </defs>
  173. <sodipodi:namedview
  174. pagecolor="#ffffff"
  175. bordercolor="#666666"
  176. borderopacity="1"
  177. objecttolerance="10"
  178. gridtolerance="10"
  179. guidetolerance="10"
  180. inkscape:pageopacity="0"
  181. inkscape:pageshadow="2"
  182. inkscape:window-width="2552"
  183. inkscape:window-height="1228"
  184. id="namedview95"
  185. showgrid="false"
  186. inkscape:zoom="12.594506"
  187. inkscape:cx="270.97861"
  188. inkscape:cy="59.583198"
  189. inkscape:window-x="1920"
  190. inkscape:window-y="0"
  191. inkscape:window-maximized="0"
  192. inkscape:current-layer="logo-2-9-1"
  193. inkscape:snap-object-midpoints="true"
  194. inkscape:snap-bbox="true"
  195. inkscape:snap-bbox-midpoints="true"
  196. inkscape:bbox-paths="true"
  197. inkscape:bbox-nodes="true"
  198. inkscape:snap-bbox-edge-midpoints="true"
  199. inkscape:object-paths="true"
  200. inkscape:snap-intersection-paths="true"
  201. inkscape:snap-smooth-nodes="true"
  202. inkscape:snap-midpoints="true"
  203. fit-margin-top="0"
  204. fit-margin-left="0"
  205. fit-margin-right="0"
  206. fit-margin-bottom="0" />
  207. <g
  208. id="logo"
  209. transform="translate(52.499858,52.499858)">
  210. <path
  211. id="r"
  212. transform="translate(0.5,0.5)"
  213. d="M -9,-15 H 4 c 8,0 8,8 0,8 H -9 Z M -40,22 H 0 V 11 H -9 V 3 H 1 C 12,3 6,22 15,22 H 40 V 3 h -6 v 2 c 0,8 -9,7 -10,2 -1,-5 -5,-9 -6,-9 15,-8 6,-24 -6,-24 h -47 v 11 h 10 v 26 h -15 z"
  214. inkscape:connector-curvature="0"
  215. style="stroke:#231f1f;stroke-width:1;stroke-linejoin:round;fill:#231f1f;fill-opacity:1;stroke-opacity:1" />
  216. <g
  217. id="gear"
  218. mask="url(#holes)">
  219. <circle
  220. id="circle3"
  221. r="43"
  222. cx="0"
  223. cy="0"
  224. style="fill:none;stroke:#231f1f;stroke-width:9;stroke-opacity:1" />
  225. <g
  226. id="cogs">
  227. <polygon
  228. id="cog"
  229. points="46,-3 46,3 51,0 "
  230. style="stroke:#231f1f;stroke-width:3;stroke-linejoin:round;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  231. <use
  232. xlink:href="#cog"
  233. transform="rotate(11.25)"
  234. id="use6"
  235. x="0"
  236. y="0"
  237. width="100%"
  238. height="100%"
  239. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  240. <use
  241. xlink:href="#cog"
  242. transform="rotate(22.5)"
  243. id="use8"
  244. x="0"
  245. y="0"
  246. width="100%"
  247. height="100%"
  248. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  249. <use
  250. xlink:href="#cog"
  251. transform="rotate(33.75)"
  252. id="use10"
  253. x="0"
  254. y="0"
  255. width="100%"
  256. height="100%"
  257. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  258. <use
  259. xlink:href="#cog"
  260. transform="rotate(45)"
  261. id="use12"
  262. x="0"
  263. y="0"
  264. width="100%"
  265. height="100%"
  266. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  267. <use
  268. xlink:href="#cog"
  269. transform="rotate(56.25)"
  270. id="use14"
  271. x="0"
  272. y="0"
  273. width="100%"
  274. height="100%"
  275. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  276. <use
  277. xlink:href="#cog"
  278. transform="rotate(67.5)"
  279. id="use16"
  280. x="0"
  281. y="0"
  282. width="100%"
  283. height="100%"
  284. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  285. <use
  286. xlink:href="#cog"
  287. transform="rotate(78.75)"
  288. id="use18"
  289. x="0"
  290. y="0"
  291. width="100%"
  292. height="100%"
  293. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  294. <use
  295. xlink:href="#cog"
  296. transform="rotate(90)"
  297. id="use20"
  298. x="0"
  299. y="0"
  300. width="100%"
  301. height="100%"
  302. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  303. <use
  304. xlink:href="#cog"
  305. transform="rotate(101.25)"
  306. id="use22"
  307. x="0"
  308. y="0"
  309. width="100%"
  310. height="100%"
  311. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  312. <use
  313. xlink:href="#cog"
  314. transform="rotate(112.5)"
  315. id="use24"
  316. x="0"
  317. y="0"
  318. width="100%"
  319. height="100%"
  320. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  321. <use
  322. xlink:href="#cog"
  323. transform="rotate(123.75)"
  324. id="use26"
  325. x="0"
  326. y="0"
  327. width="100%"
  328. height="100%"
  329. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  330. <use
  331. xlink:href="#cog"
  332. transform="rotate(135)"
  333. id="use28"
  334. x="0"
  335. y="0"
  336. width="100%"
  337. height="100%"
  338. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  339. <use
  340. xlink:href="#cog"
  341. transform="rotate(146.25)"
  342. id="use30"
  343. x="0"
  344. y="0"
  345. width="100%"
  346. height="100%"
  347. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  348. <use
  349. xlink:href="#cog"
  350. transform="rotate(157.5)"
  351. id="use32"
  352. x="0"
  353. y="0"
  354. width="100%"
  355. height="100%"
  356. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  357. <use
  358. xlink:href="#cog"
  359. transform="rotate(168.75)"
  360. id="use34"
  361. x="0"
  362. y="0"
  363. width="100%"
  364. height="100%"
  365. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  366. <use
  367. xlink:href="#cog"
  368. transform="scale(-1)"
  369. id="use36"
  370. x="0"
  371. y="0"
  372. width="100%"
  373. height="100%"
  374. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  375. <use
  376. xlink:href="#cog"
  377. transform="rotate(-168.75)"
  378. id="use38"
  379. x="0"
  380. y="0"
  381. width="100%"
  382. height="100%"
  383. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  384. <use
  385. xlink:href="#cog"
  386. transform="rotate(-157.5)"
  387. id="use40"
  388. x="0"
  389. y="0"
  390. width="100%"
  391. height="100%"
  392. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  393. <use
  394. xlink:href="#cog"
  395. transform="rotate(-146.25)"
  396. id="use42"
  397. x="0"
  398. y="0"
  399. width="100%"
  400. height="100%"
  401. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  402. <use
  403. xlink:href="#cog"
  404. transform="rotate(-135)"
  405. id="use44"
  406. x="0"
  407. y="0"
  408. width="100%"
  409. height="100%"
  410. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  411. <use
  412. xlink:href="#cog"
  413. transform="rotate(-123.75)"
  414. id="use46"
  415. x="0"
  416. y="0"
  417. width="100%"
  418. height="100%"
  419. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  420. <use
  421. xlink:href="#cog"
  422. transform="rotate(-112.5)"
  423. id="use48"
  424. x="0"
  425. y="0"
  426. width="100%"
  427. height="100%"
  428. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  429. <use
  430. xlink:href="#cog"
  431. transform="rotate(-101.25)"
  432. id="use50"
  433. x="0"
  434. y="0"
  435. width="100%"
  436. height="100%"
  437. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  438. <use
  439. xlink:href="#cog"
  440. transform="rotate(-90)"
  441. id="use52"
  442. x="0"
  443. y="0"
  444. width="100%"
  445. height="100%"
  446. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  447. <use
  448. xlink:href="#cog"
  449. transform="rotate(-78.75)"
  450. id="use54"
  451. x="0"
  452. y="0"
  453. width="100%"
  454. height="100%"
  455. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  456. <use
  457. xlink:href="#cog"
  458. transform="rotate(-67.5)"
  459. id="use56"
  460. x="0"
  461. y="0"
  462. width="100%"
  463. height="100%"
  464. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  465. <use
  466. xlink:href="#cog"
  467. transform="rotate(-56.25)"
  468. id="use58"
  469. x="0"
  470. y="0"
  471. width="100%"
  472. height="100%"
  473. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  474. <use
  475. xlink:href="#cog"
  476. transform="rotate(-45)"
  477. id="use60"
  478. x="0"
  479. y="0"
  480. width="100%"
  481. height="100%"
  482. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  483. <use
  484. xlink:href="#cog"
  485. transform="rotate(-33.75)"
  486. id="use62"
  487. x="0"
  488. y="0"
  489. width="100%"
  490. height="100%"
  491. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  492. <use
  493. xlink:href="#cog"
  494. transform="rotate(-22.5)"
  495. id="use64"
  496. x="0"
  497. y="0"
  498. width="100%"
  499. height="100%"
  500. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  501. <use
  502. xlink:href="#cog"
  503. transform="rotate(-11.25)"
  504. id="use66"
  505. x="0"
  506. y="0"
  507. width="100%"
  508. height="100%"
  509. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  510. </g>
  511. <g
  512. id="mounts">
  513. <polygon
  514. id="mount"
  515. points="7,-42 -7,-42 0,-35 "
  516. style="stroke:#231f1f;stroke-width:6;stroke-linejoin:round;fill:#231f1f;fill-opacity:1;stroke-opacity:1" />
  517. <use
  518. xlink:href="#mount"
  519. transform="rotate(72)"
  520. id="use70"
  521. x="0"
  522. y="0"
  523. width="100%"
  524. height="100%"
  525. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  526. <use
  527. xlink:href="#mount"
  528. transform="rotate(144)"
  529. id="use72"
  530. x="0"
  531. y="0"
  532. width="100%"
  533. height="100%"
  534. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  535. <use
  536. xlink:href="#mount"
  537. transform="rotate(-144)"
  538. id="use74"
  539. x="0"
  540. y="0"
  541. width="100%"
  542. height="100%"
  543. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  544. <use
  545. xlink:href="#mount"
  546. transform="rotate(-72)"
  547. id="use76"
  548. x="0"
  549. y="0"
  550. width="100%"
  551. height="100%"
  552. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  553. </g>
  554. </g>
  555. <mask
  556. id="holes">
  557. <rect
  558. x="-60"
  559. y="-60"
  560. width="120"
  561. height="120"
  562. id="rect80"
  563. style="fill:#ffffff" />
  564. <circle
  565. id="hole"
  566. cy="-40"
  567. r="3"
  568. cx="0" />
  569. <use
  570. xlink:href="#hole"
  571. transform="rotate(72)"
  572. id="use83"
  573. x="0"
  574. y="0"
  575. width="100%"
  576. height="100%" />
  577. <use
  578. xlink:href="#hole"
  579. transform="rotate(144)"
  580. id="use85"
  581. x="0"
  582. y="0"
  583. width="100%"
  584. height="100%" />
  585. <use
  586. xlink:href="#hole"
  587. transform="rotate(-144)"
  588. id="use87"
  589. x="0"
  590. y="0"
  591. width="100%"
  592. height="100%" />
  593. <use
  594. xlink:href="#hole"
  595. transform="rotate(-72)"
  596. id="use89"
  597. x="0"
  598. y="0"
  599. width="100%"
  600. height="100%" />
  601. </mask>
  602. </g>
  603. <g
  604. id="logo-2"
  605. transform="translate(133.98228,112.93943)">
  606. <path
  607. style="stroke:#231f1f;stroke-width:1;stroke-linejoin:round;stroke-opacity:1;fill:#231f1f;fill-opacity:1"
  608. d="m 138.75,41.117188 v 11 h 10 v 26 h -15 v 11 h 28.5 11.5 12 c 12,0 21,-16 6,-24 5.60322,-2.988384 7.85742,-7.092488 7.85742,-11.0625 0,-6.657841 -6.33999,-12.937501 -13.85742,-12.9375 z m 26,11 h 13 c 8,0 8,8 0,8 h -3 -10 z m 0,18 h 13 c 8,0 8,8 0,8 h -4 -9 z"
  609. transform="translate(-173.25015,-66.617748)"
  610. id="r-9"
  611. inkscape:connector-curvature="0" />
  612. <g
  613. id="gear-1"
  614. mask="url(#holes-3)">
  615. <circle
  616. style="fill:none;stroke:#231f1f;stroke-width:9;stroke-opacity:1"
  617. cy="0"
  618. cx="0"
  619. r="43"
  620. id="circle3-2" />
  621. <g
  622. id="cogs-7">
  623. <polygon
  624. style="stroke:#231f1f;stroke-width:3;stroke-linejoin:round;stroke-opacity:1;fill:#231f1f;fill-opacity:1"
  625. id="cog-0"
  626. points="46,-3 46,3 51,0 " />
  627. <use
  628. height="100%"
  629. width="100%"
  630. y="0"
  631. x="0"
  632. xlink:href="#cog-0"
  633. transform="rotate(11.25)"
  634. id="use6-9"
  635. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  636. <use
  637. height="100%"
  638. width="100%"
  639. y="0"
  640. x="0"
  641. xlink:href="#cog-0"
  642. transform="rotate(22.5)"
  643. id="use8-3"
  644. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  645. <use
  646. height="100%"
  647. width="100%"
  648. y="0"
  649. x="0"
  650. xlink:href="#cog-0"
  651. transform="rotate(33.75)"
  652. id="use10-6"
  653. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  654. <use
  655. height="100%"
  656. width="100%"
  657. y="0"
  658. x="0"
  659. xlink:href="#cog-0"
  660. transform="rotate(45)"
  661. id="use12-0"
  662. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  663. <use
  664. height="100%"
  665. width="100%"
  666. y="0"
  667. x="0"
  668. xlink:href="#cog-0"
  669. transform="rotate(56.25)"
  670. id="use14-6"
  671. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  672. <use
  673. height="100%"
  674. width="100%"
  675. y="0"
  676. x="0"
  677. xlink:href="#cog-0"
  678. transform="rotate(67.5)"
  679. id="use16-2"
  680. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  681. <use
  682. height="100%"
  683. width="100%"
  684. y="0"
  685. x="0"
  686. xlink:href="#cog-0"
  687. transform="rotate(78.75)"
  688. id="use18-6"
  689. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  690. <use
  691. height="100%"
  692. width="100%"
  693. y="0"
  694. x="0"
  695. xlink:href="#cog-0"
  696. transform="rotate(90)"
  697. id="use20-1"
  698. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  699. <use
  700. height="100%"
  701. width="100%"
  702. y="0"
  703. x="0"
  704. xlink:href="#cog-0"
  705. transform="rotate(101.25)"
  706. id="use22-8"
  707. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  708. <use
  709. height="100%"
  710. width="100%"
  711. y="0"
  712. x="0"
  713. xlink:href="#cog-0"
  714. transform="rotate(112.5)"
  715. id="use24-7"
  716. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  717. <use
  718. height="100%"
  719. width="100%"
  720. y="0"
  721. x="0"
  722. xlink:href="#cog-0"
  723. transform="rotate(123.75)"
  724. id="use26-9"
  725. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  726. <use
  727. height="100%"
  728. width="100%"
  729. y="0"
  730. x="0"
  731. xlink:href="#cog-0"
  732. transform="rotate(135)"
  733. id="use28-2"
  734. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  735. <use
  736. height="100%"
  737. width="100%"
  738. y="0"
  739. x="0"
  740. xlink:href="#cog-0"
  741. transform="rotate(146.25)"
  742. id="use30-0"
  743. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  744. <use
  745. height="100%"
  746. width="100%"
  747. y="0"
  748. x="0"
  749. xlink:href="#cog-0"
  750. transform="rotate(157.5)"
  751. id="use32-2"
  752. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  753. <use
  754. height="100%"
  755. width="100%"
  756. y="0"
  757. x="0"
  758. xlink:href="#cog-0"
  759. transform="rotate(168.75)"
  760. id="use34-3"
  761. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  762. <use
  763. height="100%"
  764. width="100%"
  765. y="0"
  766. x="0"
  767. xlink:href="#cog-0"
  768. transform="scale(-1)"
  769. id="use36-7"
  770. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  771. <use
  772. height="100%"
  773. width="100%"
  774. y="0"
  775. x="0"
  776. xlink:href="#cog-0"
  777. transform="rotate(-168.75)"
  778. id="use38-5"
  779. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  780. <use
  781. height="100%"
  782. width="100%"
  783. y="0"
  784. x="0"
  785. xlink:href="#cog-0"
  786. transform="rotate(-157.5)"
  787. id="use40-9"
  788. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  789. <use
  790. height="100%"
  791. width="100%"
  792. y="0"
  793. x="0"
  794. xlink:href="#cog-0"
  795. transform="rotate(-146.25)"
  796. id="use42-2"
  797. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  798. <use
  799. height="100%"
  800. width="100%"
  801. y="0"
  802. x="0"
  803. xlink:href="#cog-0"
  804. transform="rotate(-135)"
  805. id="use44-2"
  806. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  807. <use
  808. height="100%"
  809. width="100%"
  810. y="0"
  811. x="0"
  812. xlink:href="#cog-0"
  813. transform="rotate(-123.75)"
  814. id="use46-8"
  815. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  816. <use
  817. height="100%"
  818. width="100%"
  819. y="0"
  820. x="0"
  821. xlink:href="#cog-0"
  822. transform="rotate(-112.5)"
  823. id="use48-9"
  824. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  825. <use
  826. height="100%"
  827. width="100%"
  828. y="0"
  829. x="0"
  830. xlink:href="#cog-0"
  831. transform="rotate(-101.25)"
  832. id="use50-7"
  833. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  834. <use
  835. height="100%"
  836. width="100%"
  837. y="0"
  838. x="0"
  839. xlink:href="#cog-0"
  840. transform="rotate(-90)"
  841. id="use52-3"
  842. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  843. <use
  844. height="100%"
  845. width="100%"
  846. y="0"
  847. x="0"
  848. xlink:href="#cog-0"
  849. transform="rotate(-78.75)"
  850. id="use54-6"
  851. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  852. <use
  853. height="100%"
  854. width="100%"
  855. y="0"
  856. x="0"
  857. xlink:href="#cog-0"
  858. transform="rotate(-67.5)"
  859. id="use56-1"
  860. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  861. <use
  862. height="100%"
  863. width="100%"
  864. y="0"
  865. x="0"
  866. xlink:href="#cog-0"
  867. transform="rotate(-56.25)"
  868. id="use58-2"
  869. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  870. <use
  871. height="100%"
  872. width="100%"
  873. y="0"
  874. x="0"
  875. xlink:href="#cog-0"
  876. transform="rotate(-45)"
  877. id="use60-9"
  878. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  879. <use
  880. height="100%"
  881. width="100%"
  882. y="0"
  883. x="0"
  884. xlink:href="#cog-0"
  885. transform="rotate(-33.75)"
  886. id="use62-3"
  887. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  888. <use
  889. height="100%"
  890. width="100%"
  891. y="0"
  892. x="0"
  893. xlink:href="#cog-0"
  894. transform="rotate(-22.5)"
  895. id="use64-1"
  896. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  897. <use
  898. height="100%"
  899. width="100%"
  900. y="0"
  901. x="0"
  902. xlink:href="#cog-0"
  903. transform="rotate(-11.25)"
  904. id="use66-9"
  905. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  906. </g>
  907. <g
  908. id="mounts-4">
  909. <polygon
  910. style="stroke:#231f1f;stroke-width:6;stroke-linejoin:round;fill:#231f1f;fill-opacity:1;stroke-opacity:1"
  911. id="mount-7"
  912. points="7,-42 -7,-42 0,-35 " />
  913. <use
  914. height="100%"
  915. width="100%"
  916. y="0"
  917. x="0"
  918. xlink:href="#mount-7"
  919. transform="rotate(72)"
  920. id="use70-8"
  921. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  922. <use
  923. height="100%"
  924. width="100%"
  925. y="0"
  926. x="0"
  927. xlink:href="#mount-7"
  928. transform="rotate(144)"
  929. id="use72-4"
  930. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  931. <use
  932. height="100%"
  933. width="100%"
  934. y="0"
  935. x="0"
  936. xlink:href="#mount-7"
  937. transform="rotate(-144)"
  938. id="use74-5"
  939. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  940. <use
  941. height="100%"
  942. width="100%"
  943. y="0"
  944. x="0"
  945. xlink:href="#mount-7"
  946. transform="rotate(-72)"
  947. id="use76-0"
  948. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  949. </g>
  950. </g>
  951. <mask
  952. id="mask975">
  953. <rect
  954. style="fill:#ffffff"
  955. x="-60"
  956. y="-60"
  957. width="120"
  958. height="120"
  959. id="rect963" />
  960. <circle
  961. cx="0"
  962. id="circle965"
  963. cy="-40"
  964. r="3" />
  965. <use
  966. height="100%"
  967. width="100%"
  968. y="0"
  969. x="0"
  970. xlink:href="#hole-7"
  971. transform="rotate(72)"
  972. id="use967" />
  973. <use
  974. height="100%"
  975. width="100%"
  976. y="0"
  977. x="0"
  978. xlink:href="#hole-7"
  979. transform="rotate(144)"
  980. id="use969" />
  981. <use
  982. height="100%"
  983. width="100%"
  984. y="0"
  985. x="0"
  986. xlink:href="#hole-7"
  987. transform="rotate(-144)"
  988. id="use971" />
  989. <use
  990. height="100%"
  991. width="100%"
  992. y="0"
  993. x="0"
  994. xlink:href="#hole-7"
  995. transform="rotate(-72)"
  996. id="use973" />
  997. </mask>
  998. </g>
  999. <g
  1000. id="logo-2-9"
  1001. transform="translate(215.46472,52.499858)">
  1002. <path
  1003. style="stroke:#231f1f;stroke-width:1;stroke-linejoin:round;stroke-opacity:1;fill:#231f1f;fill-opacity:1"
  1004. inkscape:connector-curvature="0"
  1005. id="r-9-4"
  1006. transform="translate(0.5,0.5)"
  1007. d="M -9,-15 H 4 c 8,0 8,8 0,8 H -9 Z m 34.857524,4 C 25.974788,-17.806102 19.517425,-26 12,-26 h -47 v 11 h 10 V 11 H -40 V 22 H 0 V 11 H -9 V 3 h 21 c 7.562185,0 13.74441,-7.4348071 13.857524,-14 z"
  1008. sodipodi:nodetypes="cssccasccccccccccsa" />
  1009. <g
  1010. id="gear-1-9"
  1011. mask="url(#holes-3-2)">
  1012. <circle
  1013. style="fill:none;stroke:#231f1f;stroke-width:9;stroke-opacity:1"
  1014. cy="0"
  1015. cx="0"
  1016. r="43"
  1017. id="circle3-2-0" />
  1018. <g
  1019. id="cogs-7-9"
  1020. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1">
  1021. <polygon
  1022. style="stroke:#231f1f;stroke-width:3;stroke-linejoin:round;stroke-opacity:1;fill:#231f1f;fill-opacity:1"
  1023. id="cog-0-1"
  1024. points="46,-3 46,3 51,0 " />
  1025. <use
  1026. height="100%"
  1027. width="100%"
  1028. y="0"
  1029. x="0"
  1030. xlink:href="#cog-0-1"
  1031. transform="rotate(11.25)"
  1032. id="use6-9-7"
  1033. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1034. <use
  1035. height="100%"
  1036. width="100%"
  1037. y="0"
  1038. x="0"
  1039. xlink:href="#cog-0-1"
  1040. transform="rotate(22.5)"
  1041. id="use8-3-7"
  1042. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1043. <use
  1044. height="100%"
  1045. width="100%"
  1046. y="0"
  1047. x="0"
  1048. xlink:href="#cog-0-1"
  1049. transform="rotate(33.75)"
  1050. id="use10-6-1"
  1051. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1052. <use
  1053. height="100%"
  1054. width="100%"
  1055. y="0"
  1056. x="0"
  1057. xlink:href="#cog-0-1"
  1058. transform="rotate(45)"
  1059. id="use12-0-1"
  1060. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1061. <use
  1062. height="100%"
  1063. width="100%"
  1064. y="0"
  1065. x="0"
  1066. xlink:href="#cog-0-1"
  1067. transform="rotate(56.25)"
  1068. id="use14-6-5"
  1069. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1070. <use
  1071. height="100%"
  1072. width="100%"
  1073. y="0"
  1074. x="0"
  1075. xlink:href="#cog-0-1"
  1076. transform="rotate(67.5)"
  1077. id="use16-2-9"
  1078. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1079. <use
  1080. height="100%"
  1081. width="100%"
  1082. y="0"
  1083. x="0"
  1084. xlink:href="#cog-0-1"
  1085. transform="rotate(78.75)"
  1086. id="use18-6-7"
  1087. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1088. <use
  1089. height="100%"
  1090. width="100%"
  1091. y="0"
  1092. x="0"
  1093. xlink:href="#cog-0-1"
  1094. transform="rotate(90)"
  1095. id="use20-1-7"
  1096. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1097. <use
  1098. height="100%"
  1099. width="100%"
  1100. y="0"
  1101. x="0"
  1102. xlink:href="#cog-0-1"
  1103. transform="rotate(101.25)"
  1104. id="use22-8-6"
  1105. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1106. <use
  1107. height="100%"
  1108. width="100%"
  1109. y="0"
  1110. x="0"
  1111. xlink:href="#cog-0-1"
  1112. transform="rotate(112.5)"
  1113. id="use24-7-7"
  1114. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1115. <use
  1116. height="100%"
  1117. width="100%"
  1118. y="0"
  1119. x="0"
  1120. xlink:href="#cog-0-1"
  1121. transform="rotate(123.75)"
  1122. id="use26-9-3"
  1123. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1124. <use
  1125. height="100%"
  1126. width="100%"
  1127. y="0"
  1128. x="0"
  1129. xlink:href="#cog-0-1"
  1130. transform="rotate(135)"
  1131. id="use28-2-6"
  1132. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1133. <use
  1134. height="100%"
  1135. width="100%"
  1136. y="0"
  1137. x="0"
  1138. xlink:href="#cog-0-1"
  1139. transform="rotate(146.25)"
  1140. id="use30-0-5"
  1141. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1142. <use
  1143. height="100%"
  1144. width="100%"
  1145. y="0"
  1146. x="0"
  1147. xlink:href="#cog-0-1"
  1148. transform="rotate(157.5)"
  1149. id="use32-2-6"
  1150. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1151. <use
  1152. height="100%"
  1153. width="100%"
  1154. y="0"
  1155. x="0"
  1156. xlink:href="#cog-0-1"
  1157. transform="rotate(168.75)"
  1158. id="use34-3-3"
  1159. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1160. <use
  1161. height="100%"
  1162. width="100%"
  1163. y="0"
  1164. x="0"
  1165. xlink:href="#cog-0-1"
  1166. transform="scale(-1)"
  1167. id="use36-7-9"
  1168. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1169. <use
  1170. height="100%"
  1171. width="100%"
  1172. y="0"
  1173. x="0"
  1174. xlink:href="#cog-0-1"
  1175. transform="rotate(-168.75)"
  1176. id="use38-5-4"
  1177. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1178. <use
  1179. height="100%"
  1180. width="100%"
  1181. y="0"
  1182. x="0"
  1183. xlink:href="#cog-0-1"
  1184. transform="rotate(-157.5)"
  1185. id="use40-9-8"
  1186. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1187. <use
  1188. height="100%"
  1189. width="100%"
  1190. y="0"
  1191. x="0"
  1192. xlink:href="#cog-0-1"
  1193. transform="rotate(-146.25)"
  1194. id="use42-2-1"
  1195. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1196. <use
  1197. height="100%"
  1198. width="100%"
  1199. y="0"
  1200. x="0"
  1201. xlink:href="#cog-0-1"
  1202. transform="rotate(-135)"
  1203. id="use44-2-2"
  1204. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1205. <use
  1206. height="100%"
  1207. width="100%"
  1208. y="0"
  1209. x="0"
  1210. xlink:href="#cog-0-1"
  1211. transform="rotate(-123.75)"
  1212. id="use46-8-9"
  1213. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1214. <use
  1215. height="100%"
  1216. width="100%"
  1217. y="0"
  1218. x="0"
  1219. xlink:href="#cog-0-1"
  1220. transform="rotate(-112.5)"
  1221. id="use48-9-3"
  1222. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1223. <use
  1224. height="100%"
  1225. width="100%"
  1226. y="0"
  1227. x="0"
  1228. xlink:href="#cog-0-1"
  1229. transform="rotate(-101.25)"
  1230. id="use50-7-9"
  1231. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1232. <use
  1233. height="100%"
  1234. width="100%"
  1235. y="0"
  1236. x="0"
  1237. xlink:href="#cog-0-1"
  1238. transform="rotate(-90)"
  1239. id="use52-3-0"
  1240. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1241. <use
  1242. height="100%"
  1243. width="100%"
  1244. y="0"
  1245. x="0"
  1246. xlink:href="#cog-0-1"
  1247. transform="rotate(-78.75)"
  1248. id="use54-6-8"
  1249. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1250. <use
  1251. height="100%"
  1252. width="100%"
  1253. y="0"
  1254. x="0"
  1255. xlink:href="#cog-0-1"
  1256. transform="rotate(-67.5)"
  1257. id="use56-1-8"
  1258. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1259. <use
  1260. height="100%"
  1261. width="100%"
  1262. y="0"
  1263. x="0"
  1264. xlink:href="#cog-0-1"
  1265. transform="rotate(-56.25)"
  1266. id="use58-2-5"
  1267. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1268. <use
  1269. height="100%"
  1270. width="100%"
  1271. y="0"
  1272. x="0"
  1273. xlink:href="#cog-0-1"
  1274. transform="rotate(-45)"
  1275. id="use60-9-0"
  1276. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1277. <use
  1278. height="100%"
  1279. width="100%"
  1280. y="0"
  1281. x="0"
  1282. xlink:href="#cog-0-1"
  1283. transform="rotate(-33.75)"
  1284. id="use62-3-9"
  1285. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1286. <use
  1287. height="100%"
  1288. width="100%"
  1289. y="0"
  1290. x="0"
  1291. xlink:href="#cog-0-1"
  1292. transform="rotate(-22.5)"
  1293. id="use64-1-6"
  1294. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1295. <use
  1296. height="100%"
  1297. width="100%"
  1298. y="0"
  1299. x="0"
  1300. xlink:href="#cog-0-1"
  1301. transform="rotate(-11.25)"
  1302. id="use66-9-3"
  1303. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1304. </g>
  1305. <g
  1306. id="mounts-4-8"
  1307. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1">
  1308. <polygon
  1309. style="stroke:#231f1f;stroke-width:6;stroke-linejoin:round;stroke-opacity:1;fill:#231f1f;fill-opacity:1"
  1310. id="mount-7-5"
  1311. points="7,-42 -7,-42 0,-35 " />
  1312. <use
  1313. height="100%"
  1314. width="100%"
  1315. y="0"
  1316. x="0"
  1317. xlink:href="#mount-7-5"
  1318. transform="rotate(72)"
  1319. id="use70-8-6"
  1320. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1321. <use
  1322. height="100%"
  1323. width="100%"
  1324. y="0"
  1325. x="0"
  1326. xlink:href="#mount-7-5"
  1327. transform="rotate(144)"
  1328. id="use72-4-1"
  1329. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1330. <use
  1331. height="100%"
  1332. width="100%"
  1333. y="0"
  1334. x="0"
  1335. xlink:href="#mount-7-5"
  1336. transform="rotate(-144)"
  1337. id="use74-5-1"
  1338. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1339. <use
  1340. height="100%"
  1341. width="100%"
  1342. y="0"
  1343. x="0"
  1344. xlink:href="#mount-7-5"
  1345. transform="rotate(-72)"
  1346. id="use76-0-5"
  1347. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1348. </g>
  1349. </g>
  1350. <mask
  1351. id="mask975-9">
  1352. <rect
  1353. style="fill:#ffffff"
  1354. x="-60"
  1355. y="-60"
  1356. width="120"
  1357. height="120"
  1358. id="rect963-8" />
  1359. <circle
  1360. cx="0"
  1361. id="circle965-4"
  1362. cy="-40"
  1363. r="3" />
  1364. <use
  1365. height="100%"
  1366. width="100%"
  1367. y="0"
  1368. x="0"
  1369. xlink:href="#hole-7-1"
  1370. transform="rotate(72)"
  1371. id="use967-8" />
  1372. <use
  1373. height="100%"
  1374. width="100%"
  1375. y="0"
  1376. x="0"
  1377. xlink:href="#hole-7-1"
  1378. transform="rotate(144)"
  1379. id="use969-1" />
  1380. <use
  1381. height="100%"
  1382. width="100%"
  1383. y="0"
  1384. x="0"
  1385. xlink:href="#hole-7-1"
  1386. transform="rotate(-144)"
  1387. id="use971-0" />
  1388. <use
  1389. height="100%"
  1390. width="100%"
  1391. y="0"
  1392. x="0"
  1393. xlink:href="#hole-7-1"
  1394. transform="rotate(-72)"
  1395. id="use973-3" />
  1396. </mask>
  1397. </g>
  1398. <g
  1399. id="logo-2-9-1"
  1400. transform="translate(296.94716,112.93943)">
  1401. <path
  1402. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-width:1;stroke-linejoin:round;stroke-opacity:1"
  1403. d="m 262.94727,87.939453 v 11 h 10 v 25.999997 h -15 v 11 h 40 v -11 h -9 v -8 h 14.79687 v 1.65235 h 7.80469 v -13.30469 h -7.80469 v 1.65234 h -14.79687 v -7.999997 h 42.34983 v -11 z"
  1404. transform="translate(-297.4473,-113.43957)"
  1405. id="r-9-4-7"
  1406. inkscape:connector-curvature="0"
  1407. sodipodi:nodetypes="ccccccccccccccccccccc" />
  1408. <g
  1409. id="gear-1-9-5"
  1410. mask="url(#holes-3-2-4)">
  1411. <circle
  1412. style="fill:none;stroke:#231f1f;stroke-width:9;stroke-opacity:1"
  1413. cy="0"
  1414. cx="0"
  1415. r="43"
  1416. id="circle3-2-0-9" />
  1417. <g
  1418. id="cogs-7-9-6"
  1419. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1">
  1420. <polygon
  1421. style="stroke:#231f1f;stroke-width:3;stroke-linejoin:round;fill:#231f1f;fill-opacity:1;stroke-opacity:1"
  1422. id="cog-0-1-2"
  1423. points="46,3 51,0 46,-3 " />
  1424. <use
  1425. height="100%"
  1426. width="100%"
  1427. y="0"
  1428. x="0"
  1429. xlink:href="#cog-0-1-2"
  1430. transform="rotate(11.25)"
  1431. id="use6-9-7-1"
  1432. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1433. <use
  1434. height="100%"
  1435. width="100%"
  1436. y="0"
  1437. x="0"
  1438. xlink:href="#cog-0-1-2"
  1439. transform="rotate(22.5)"
  1440. id="use8-3-7-7"
  1441. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1442. <use
  1443. height="100%"
  1444. width="100%"
  1445. y="0"
  1446. x="0"
  1447. xlink:href="#cog-0-1-2"
  1448. transform="rotate(33.75)"
  1449. id="use10-6-1-8"
  1450. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1451. <use
  1452. height="100%"
  1453. width="100%"
  1454. y="0"
  1455. x="0"
  1456. xlink:href="#cog-0-1-2"
  1457. transform="rotate(45)"
  1458. id="use12-0-1-5"
  1459. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1460. <use
  1461. height="100%"
  1462. width="100%"
  1463. y="0"
  1464. x="0"
  1465. xlink:href="#cog-0-1-2"
  1466. transform="rotate(56.25)"
  1467. id="use14-6-5-7"
  1468. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1469. <use
  1470. height="100%"
  1471. width="100%"
  1472. y="0"
  1473. x="0"
  1474. xlink:href="#cog-0-1-2"
  1475. transform="rotate(67.5)"
  1476. id="use16-2-9-4"
  1477. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1478. <use
  1479. height="100%"
  1480. width="100%"
  1481. y="0"
  1482. x="0"
  1483. xlink:href="#cog-0-1-2"
  1484. transform="rotate(78.75)"
  1485. id="use18-6-7-1"
  1486. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1487. <use
  1488. height="100%"
  1489. width="100%"
  1490. y="0"
  1491. x="0"
  1492. xlink:href="#cog-0-1-2"
  1493. transform="rotate(90)"
  1494. id="use20-1-7-8"
  1495. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1496. <use
  1497. height="100%"
  1498. width="100%"
  1499. y="0"
  1500. x="0"
  1501. xlink:href="#cog-0-1-2"
  1502. transform="rotate(101.25)"
  1503. id="use22-8-6-5"
  1504. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1505. <use
  1506. height="100%"
  1507. width="100%"
  1508. y="0"
  1509. x="0"
  1510. xlink:href="#cog-0-1-2"
  1511. transform="rotate(112.5)"
  1512. id="use24-7-7-9"
  1513. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1514. <use
  1515. height="100%"
  1516. width="100%"
  1517. y="0"
  1518. x="0"
  1519. xlink:href="#cog-0-1-2"
  1520. transform="rotate(123.75)"
  1521. id="use26-9-3-7"
  1522. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1523. <use
  1524. height="100%"
  1525. width="100%"
  1526. y="0"
  1527. x="0"
  1528. xlink:href="#cog-0-1-2"
  1529. transform="rotate(135)"
  1530. id="use28-2-6-5"
  1531. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1532. <use
  1533. height="100%"
  1534. width="100%"
  1535. y="0"
  1536. x="0"
  1537. xlink:href="#cog-0-1-2"
  1538. transform="rotate(146.25)"
  1539. id="use30-0-5-3"
  1540. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1541. <use
  1542. height="100%"
  1543. width="100%"
  1544. y="0"
  1545. x="0"
  1546. xlink:href="#cog-0-1-2"
  1547. transform="rotate(157.5)"
  1548. id="use32-2-6-8"
  1549. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1550. <use
  1551. height="100%"
  1552. width="100%"
  1553. y="0"
  1554. x="0"
  1555. xlink:href="#cog-0-1-2"
  1556. transform="rotate(168.75)"
  1557. id="use34-3-3-8"
  1558. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1559. <use
  1560. height="100%"
  1561. width="100%"
  1562. y="0"
  1563. x="0"
  1564. xlink:href="#cog-0-1-2"
  1565. transform="scale(-1)"
  1566. id="use36-7-9-3"
  1567. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1568. <use
  1569. height="100%"
  1570. width="100%"
  1571. y="0"
  1572. x="0"
  1573. xlink:href="#cog-0-1-2"
  1574. transform="rotate(-168.75)"
  1575. id="use38-5-4-1"
  1576. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1577. <use
  1578. height="100%"
  1579. width="100%"
  1580. y="0"
  1581. x="0"
  1582. xlink:href="#cog-0-1-2"
  1583. transform="rotate(-157.5)"
  1584. id="use40-9-8-8"
  1585. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1586. <use
  1587. height="100%"
  1588. width="100%"
  1589. y="0"
  1590. x="0"
  1591. xlink:href="#cog-0-1-2"
  1592. transform="rotate(-146.25)"
  1593. id="use42-2-1-9"
  1594. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1595. <use
  1596. height="100%"
  1597. width="100%"
  1598. y="0"
  1599. x="0"
  1600. xlink:href="#cog-0-1-2"
  1601. transform="rotate(-135)"
  1602. id="use44-2-2-6"
  1603. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1604. <use
  1605. height="100%"
  1606. width="100%"
  1607. y="0"
  1608. x="0"
  1609. xlink:href="#cog-0-1-2"
  1610. transform="rotate(-123.75)"
  1611. id="use46-8-9-4"
  1612. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1613. <use
  1614. height="100%"
  1615. width="100%"
  1616. y="0"
  1617. x="0"
  1618. xlink:href="#cog-0-1-2"
  1619. transform="rotate(-112.5)"
  1620. id="use48-9-3-3"
  1621. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1622. <use
  1623. height="100%"
  1624. width="100%"
  1625. y="0"
  1626. x="0"
  1627. xlink:href="#cog-0-1-2"
  1628. transform="rotate(-101.25)"
  1629. id="use50-7-9-3"
  1630. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1631. <use
  1632. height="100%"
  1633. width="100%"
  1634. y="0"
  1635. x="0"
  1636. xlink:href="#cog-0-1-2"
  1637. transform="rotate(-90)"
  1638. id="use52-3-0-3"
  1639. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1640. <use
  1641. height="100%"
  1642. width="100%"
  1643. y="0"
  1644. x="0"
  1645. xlink:href="#cog-0-1-2"
  1646. transform="rotate(-78.75)"
  1647. id="use54-6-8-8"
  1648. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1649. <use
  1650. height="100%"
  1651. width="100%"
  1652. y="0"
  1653. x="0"
  1654. xlink:href="#cog-0-1-2"
  1655. transform="rotate(-67.5)"
  1656. id="use56-1-8-6"
  1657. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1658. <use
  1659. height="100%"
  1660. width="100%"
  1661. y="0"
  1662. x="0"
  1663. xlink:href="#cog-0-1-2"
  1664. transform="rotate(-56.25)"
  1665. id="use58-2-5-0"
  1666. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1667. <use
  1668. height="100%"
  1669. width="100%"
  1670. y="0"
  1671. x="0"
  1672. xlink:href="#cog-0-1-2"
  1673. transform="rotate(-45)"
  1674. id="use60-9-0-4"
  1675. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1676. <use
  1677. height="100%"
  1678. width="100%"
  1679. y="0"
  1680. x="0"
  1681. xlink:href="#cog-0-1-2"
  1682. transform="rotate(-33.75)"
  1683. id="use62-3-9-8"
  1684. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1685. <use
  1686. height="100%"
  1687. width="100%"
  1688. y="0"
  1689. x="0"
  1690. xlink:href="#cog-0-1-2"
  1691. transform="rotate(-22.5)"
  1692. id="use64-1-6-8"
  1693. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1694. <use
  1695. height="100%"
  1696. width="100%"
  1697. y="0"
  1698. x="0"
  1699. xlink:href="#cog-0-1-2"
  1700. transform="rotate(-11.25)"
  1701. id="use66-9-3-8"
  1702. style="fill:#231f1f;fill-opacity:1;stroke:#231f1f;stroke-opacity:1" />
  1703. </g>
  1704. <g
  1705. id="mounts-4-8-9"
  1706. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1">
  1707. <polygon
  1708. style="stroke:#231f1f;stroke-width:6;stroke-linejoin:round;stroke-opacity:1;fill:#231f1f;fill-opacity:1"
  1709. id="mount-7-5-7"
  1710. points="-7,-42 0,-35 7,-42 " />
  1711. <use
  1712. height="100%"
  1713. width="100%"
  1714. y="0"
  1715. x="0"
  1716. xlink:href="#mount-7-5-7"
  1717. transform="rotate(72)"
  1718. id="use70-8-6-7"
  1719. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1720. <use
  1721. height="100%"
  1722. width="100%"
  1723. y="0"
  1724. x="0"
  1725. xlink:href="#mount-7-5-7"
  1726. transform="rotate(144)"
  1727. id="use72-4-1-6"
  1728. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1729. <use
  1730. height="100%"
  1731. width="100%"
  1732. y="0"
  1733. x="0"
  1734. xlink:href="#mount-7-5-7"
  1735. transform="rotate(-144)"
  1736. id="use74-5-1-4"
  1737. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1738. <use
  1739. height="100%"
  1740. width="100%"
  1741. y="0"
  1742. x="0"
  1743. xlink:href="#mount-7-5-7"
  1744. transform="rotate(-72)"
  1745. id="use76-0-5-3"
  1746. style="stroke:#231f1f;stroke-opacity:1;fill:#231f1f;fill-opacity:1" />
  1747. </g>
  1748. </g>
  1749. <mask
  1750. id="mask975-9-0">
  1751. <rect
  1752. style="fill:#ffffff"
  1753. x="-60"
  1754. y="-60"
  1755. width="120"
  1756. height="120"
  1757. id="rect963-8-3" />
  1758. <circle
  1759. cx="0"
  1760. id="circle965-4-0"
  1761. cy="-40"
  1762. r="3" />
  1763. <use
  1764. height="100%"
  1765. width="100%"
  1766. y="0"
  1767. x="0"
  1768. xlink:href="#hole-7-1-4"
  1769. transform="rotate(72)"
  1770. id="use967-8-9" />
  1771. <use
  1772. height="100%"
  1773. width="100%"
  1774. y="0"
  1775. x="0"
  1776. xlink:href="#hole-7-1-4"
  1777. transform="rotate(144)"
  1778. id="use969-1-2" />
  1779. <use
  1780. height="100%"
  1781. width="100%"
  1782. y="0"
  1783. x="0"
  1784. xlink:href="#hole-7-1-4"
  1785. transform="rotate(-144)"
  1786. id="use971-0-5" />
  1787. <use
  1788. height="100%"
  1789. width="100%"
  1790. y="0"
  1791. x="0"
  1792. xlink:href="#hole-7-1-4"
  1793. transform="rotate(-72)"
  1794. id="use973-3-4" />
  1795. </mask>
  1796. </g>
  1797. </svg>