aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorLukas Rusak <lorusak@gmail.com>2019-06-28 08:48:14 -0700
committerLukas Rusak <lorusak@gmail.com>2020-09-08 12:46:18 -0700
commit605b3b05dc8aee32a1238653a5f02ce5be25719a (patch)
tree86ee8e0ac3737788e8dc2841d9679538f9a5bc12 /docs
parent062ab1cf9d99d1beed2e558a440d3ee372a7df24 (diff)
RPi: remove platform
Diffstat (limited to 'docs')
-rw-r--r--docs/README.RaspberryPi.md239
-rw-r--r--docs/README.md1
-rw-r--r--docs/resources/raspberrypi.svg30
3 files changed, 1 insertions, 269 deletions
diff --git a/docs/README.RaspberryPi.md b/docs/README.RaspberryPi.md
index 4d8ce4f0e6..d5a9141b24 100644
--- a/docs/README.RaspberryPi.md
+++ b/docs/README.RaspberryPi.md
@@ -1,242 +1,5 @@
![Kodi Logo](resources/banner_slim.png)
# Raspberry Pi build guide
-This guide has been tested with Ubuntu 16.04 (Xenial) x86_64 and 18.04 (Bionic). It is meant to cross-compile Kodi for the Raspberry Pi using **[Kodi's unified depends build system](../tools/depends/README.md)**. Please read it in full before you proceed to familiarize yourself with the build procedure.
-If you're looking to build Kodi natively using **[Raspbian](https://www.raspberrypi.org/downloads/raspbian/)**, you should follow the **[Ubuntu guide](README.Ubuntu.md)** instead. Several other distributions have **[specific guides](README.md)** and a general **[Linux guide](README.Linux.md)** is also available.
-
-## Table of Contents
-1. **[Document conventions](#1-document-conventions)**
-2. **[Install the required packages](#2-install-the-required-packages)**
-3. **[Get the source code](#3-get-the-source-code)**
- 3.1. **[Get Raspberry Pi tools and firmware](#31-get-raspberry-pi-tools-and-firmware)**
-4. **[Build tools and dependencies](#4-build-tools-and-dependencies)**
-5. **[Build Kodi](#5-build-kodi)**
-6. **[Docker](#6-docker)**
-7. **[Troubleshooting](#7-troubleshooting)**
- 7.1. **[ImportError: No module named \_sysconfigdata\_nd](#71-importerror-no-module-named-_sysconfigdata_nd)**
- 7.2. **[Errors connecting to any internet (TLS) service](#72-errors-connecting-to-any-internet-tls-service)**
-
-## 1. Document conventions
-This guide assumes you are using `terminal`, also known as `console`, `command-line` or simply `cli`. Commands need to be run at the terminal, one at a time and in the provided order.
-
-This is a comment that provides context:
-```
-this is a command
-this is another command
-and yet another one
-```
-
-**Example:** Clone Kodi's current master branch:
-```
-git clone https://github.com/xbmc/xbmc kodi
-```
-
-Commands that contain strings enclosed in angle brackets denote something you need to change to suit your needs.
-```
-git clone -b <branch-name> https://github.com/xbmc/xbmc kodi
-```
-
-**Example:** Clone Kodi's current Krypton branch:
-```
-git clone -b Krypton https://github.com/xbmc/xbmc kodi
-```
-
-Several different strategies are used to draw your attention to certain pieces of information. In order of how critical the information is, these items are marked as a note, tip, or warning. For example:
-
-**NOTE:** Linux is user friendly... It's just very particular about who its friends are.
-**TIP:** Algorithm is what developers call code they do not want to explain.
-**WARNING:** Developers don't change light bulbs. It's a hardware problem.
-
-**[back to top](#table-of-contents)** | **[back to section top](#1-document-conventions)**
-
-## 2. Install the required packages
-**NOTE:** Kodi requires a compiler with C++14 support, i.e. gcc >= 4.9 or clang >= 3.4
-
-Install build dependencies needed to cross-compile Kodi for the Raspberry Pi:
-```
-sudo apt install autoconf bison build-essential curl default-jdk gawk git gperf libcurl4-openssl-dev zlib1g-dev
-```
-
-**[back to top](#table-of-contents)**
-
-## 3. Get the source code
-Change to your `home` directory:
-```
-cd $HOME
-```
-
-Clone Kodi's current master branch:
-```
-git clone https://github.com/xbmc/xbmc kodi
-```
-
-### 3.1. Get Raspberry Pi tools and firmware
-Clone Raspberry Pi tools:
-```
-git clone https://github.com/raspberrypi/tools --depth=1
-```
-
-Clone Raspberry Pi firmware:
-```
-git clone https://github.com/raspberrypi/firmware --depth=1
-```
-
-**[back to top](#table-of-contents)**
-
-## 4. Build tools and dependencies
-Create target directory:
-```
-mkdir $HOME/kodi-rpi
-```
-
-Prepare to configure build:
-```
-cd $HOME/kodi/tools/depends
-./bootstrap
-```
-
-**TIP:** Look for comments starting with `Or ...` and only execute the command(s) you need.
-
-Configure build for Raspberry Pi 1:
-```
-./configure --host=arm-linux-gnueabihf --prefix=$HOME/kodi-rpi --with-toolchain=$HOME/tools/arm-bcm2708/arm-rpi-4.9.3-linux-gnueabihf --with-firmware=$HOME/firmware --with-platform=raspberry-pi --disable-debug
-```
-
-Or configure build for Raspberry Pi 2 and 3:
-```
-./configure --host=arm-linux-gnueabihf --prefix=$HOME/kodi-rpi --with-toolchain=$HOME/tools/arm-bcm2708/arm-rpi-4.9.3-linux-gnueabihf --with-firmware=$HOME/firmware --with-platform=raspberry-pi2 --disable-debug
-```
-
-Build tools and dependencies:
-```
-make -j$(getconf _NPROCESSORS_ONLN)
-```
-
-**TIP:** By adding `-j<number>` to the make command, you can choose how many concurrent jobs will be used and expedite the build process. It is recommended to use `-j$(getconf _NPROCESSORS_ONLN)` to compile on all available processor cores. The build machine can also be configured to do this automatically by adding `export MAKEFLAGS="-j$(getconf _NPROCESSORS_ONLN)"` to your shell config (e.g. `~/.bashrc`).
-
-**[back to top](#table-of-contents)** | **[back to section top](#4-build-tools-and-dependencies)**
-
-## 5. Build Kodi
-Configure CMake build:
-```
-cd $HOME/kodi
-make -C tools/depends/target/cmakebuildsys
-```
-
-**TIP:** BUILD_DIR can be provided as an argument to cmakebuildsys. This allows you to provide an alternate build location. Change all paths onwards as required if BUILD_DIR option used.
-```
-mkdir $HOME/kodi-build
-make -C tools/depends/target/cmakebuildsys BUILD_DIR=$HOME/kodi-build
-```
-
-Build Kodi:
-```
-cd $HOME/kodi/build
-make -j$(getconf _NPROCESSORS_ONLN)
-```
-
-Install to target directory:
-```
-make install
-```
-
-After the build process is finished, you can find the files ready to be installed inside `$HOME/kodi-rpi`. Look for a directory called `raspberry-pi-release` or `raspberry-pi2-release`.
-
-**[back to top](#table-of-contents)**
-
-
-## 6. Docker
-
-If you encounter issues with the previous instructions, or if you don't have a proper system for cross-compiling Kodi, it's also possible to use a [Docker](https://www.docker.com/) image to perform the build. This method, although it should work just like the build instructions mentioned above, is **not** supported. Therefore, issues related specifically to Docker should **not** be opened.
-
-Here is an example Dockerfile, summarizing basically all the instructions described above (/!\ may not be up to date with the actual instructions!). **Please read the comments as they describe things you NEED to change and/or consider before building.**
-
-```Dockerfile
-# Change 'latest' to the officially supported version of Ubuntu for cross-compilation
-FROM ubuntu:latest
-
-RUN apt-get update && apt-get upgrade -y
-RUN apt-get -y install autoconf bison build-essential curl default-jdk gawk git gperf libcurl4-openssl-dev zlib1g-dev file
-
-# The 'HOME' variable doesn't really matter - it is only the location of the files within the image
-ARG HOME=/home/pi
-# This is the location kodi will be built for, that means you will have to put the built files in
-# this directory afterwards. It is important because many paths end up hardcoded during the build.
-ARG PREFIX=/opt/kodi
-
-RUN mkdir $PREFIX
-WORKDIR $HOME
-
-# Replace 'master' with whichever branch/tag you wish to build - be careful with nightly builds!
-RUN git clone -b master https://github.com/xbmc/xbmc kodi --depth 1
-RUN git clone https://github.com/raspberrypi/tools --depth=1
-RUN git clone https://github.com/raspberrypi/firmware --depth=1
-
-WORKDIR $HOME/kodi/tools/depends
-RUN ./bootstrap
-
-# Change this if you're building on a RPi1, as described above
-RUN ./configure --host=arm-linux-gnueabihf --prefix=$PREFIX --with-toolchain=$HOME/tools/arm-bcm2708/arm-rpi-4.9.3-linux-gnueabihf --with-firmware=$HOME/firmware --with-platform=raspberry-pi2 --disable-debug
-
-RUN make -j$(getconf _NPROCESSORS_ONLN)
-
-WORKDIR $HOME/kodi
-# This step builds all the binary addons.
-# Kodi - at its core - works fine without them, however they are used by many other addons.
-# Therefore, it is recommended to simply compile all of them.
-RUN make -j$(getconf _NPROCESSORS_ONLN) -C tools/depends/target/binary-addons
-RUN make -C tools/depends/target/cmakebuildsys
-
-WORKDIR $HOME/kodi/build
-RUN make -j$(getconf _NPROCESSORS_ONLN)
-
-RUN make install
-RUN tar zfc /kodi.tar.gz $PREFIX
-```
-
-You can then build the image, and afterwards retrieve the build files from a dummy container:
-
-```bash
-docker build -t kodi_build .
-docker run --name some-temp-container-name kodi_build /bin/bash
-docker cp some-temp-container-name:/kodi.tar.gz ./
-docker rm some-temp-container-name
-```
-
-You should now have a file `kodi.tar.gz` in your current directory. Now you need to uncompress this file in the `$PREFIX` directory (as mentioned in the Dockerfile) of your Raspberry. Note that the archive contains multiple directories in its root, but only the `raspberry-pi2-release` (or `raspberry-pi-release`) is needed, so you can delete the others safely. If you encounter problems, please take a look at the [Troubleshooting](#7-troubleshooting) section below before filing an issue.
-
-**[back to top](#table-of-contents)**
-
-## 7. Troubleshooting
-
-### 7.1 ImportError: No module named \_sysconfigdata\_nd
-
-This is caused by an issue with a python package. The solution is to simply add a missing symlink so the library can be found, i.e.:
-
-```bash
-ln -s /usr/lib/python2.7/plat-arm-linux-gnueabihf/_sysconfigdata_nd.py /usr/lib/python2.7/
-```
-
-### 7.2 Errors connecting to any internet (TLS) service
-
-First, you should enable debug logging (instructions [here](https://kodi.wiki/view/Log_file)). Then you need to check the logs and find what the source of your problem is. If, when trying to access TLS services (e.g. when installing an addon), the connection fails and your log contains entries such as:
-
-```log
-# note that those logs appear when enabling component-specific logs -> libcurl
-2019-05-19 17:18:39.570 T:1854288832 DEBUG: Curl::Debug - TEXT: SSL certificate problem: unable to get local issuer certificate
-2019-05-19 17:18:39.570 T:1854288832 DEBUG: Curl::Debug - TEXT: Closing connection 0
-
-# this is part of the regular Kodi logs
-2019-05-19 17:18:39.570 T:1854288832 ERROR: CCurlFile::FillBuffer - Failed: Peer certificate cannot be authenticated with given CA certificates(60)
-```
-
-Then, you need to define the environment variable `SSL_CERT_FILE` so it points to your system's certificate file. Depending on how you start Kodi, putting this line in your in your `.profile` file should fix this issue:
-
-```bash
-export SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
-```
-
-Note that you need to define this variable *before* starting Kodi. For example, if you start Kodi on startup through a crontab, your `.profile` will *not* be sourced.
-
-**[back to top](#table-of-contents)**
+The Raspberry Pi platform has been merged into the GBM build. See [README.Linux.md](README.Linux.md).
diff --git a/docs/README.md b/docs/README.md
index 3c033f8435..836f1c39a8 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -16,7 +16,6 @@ Kodi uses CMake as its building system but instructions are highly dependent on
<a href="README.Linux.md" title="Linux"><img src="resources/linux.svg" height="78"></a>
<a href="README.macOS.md" title="macOS"><img src="resources/macos.svg" height="78"></a>
<a href="README.openSUSE.md" title="openSUSE"><img src="resources/opensuse.svg" height="78"></a>
- <a href="README.RaspberryPi.md" title="Raspberry Pi"><img src="resources/raspberrypi.svg" height="78"></a>
<a href="README.tvOS.md" title="tvOS"><img src="resources/tvos.svg" height="78"></a>
<a href="README.Ubuntu.md" title="Ubuntu"><img src="resources/ubuntu.svg" height="78"></a>
<a href="README.Windows.md" title="Windows"><img src="resources/windows.svg" height="78"></a>
diff --git a/docs/resources/raspberrypi.svg b/docs/resources/raspberrypi.svg
deleted file mode 100644
index b1121fb85f..0000000000
--- a/docs/resources/raspberrypi.svg
+++ /dev/null
@@ -1,30 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg width="100" height="100" version="1.1" viewBox="0 0 26.458333 26.458334" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
- <metadata>
- <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/>
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <rect x="-1.4211e-14" y="8.5449e-6" width="26.458" height="26.458" fill="#c51a4a" stroke-width=".27763"/>
- <path d="m9.9286 3.97c-0.093646 3e-3 -0.19449 0.0375-0.30893 0.12775-0.2802-0.10803-0.55196-0.14559-0.79495 0.0744-0.37521-0.0487-0.49712 0.0518-0.58952 0.16905-0.082373-2e-3 -0.61632-0.0847-0.86123 0.2806-0.61536-0.0728-0.80985 0.36195-0.58947 0.76742-0.12571 0.19454-0.25596 0.38676 0.037957 0.75772-0.10396 0.20656-0.039487 0.43068 0.20542 0.70187-0.06464 0.29046 0.062431 0.49532 0.29034 0.65502-0.042659 0.39742 0.36444 0.6285 0.48596 0.71082 0.046682 0.23154 0.14395 0.4501 0.6089 0.57089 0.076707 0.34512 0.35612 0.40472 0.62675 0.47713-0.89437 0.5199-1.6613 1.2039-1.6561 2.8822l-0.13104 0.2337c-1.0255 0.62363-1.9482 2.6281-0.50534 4.2573 0.094213 0.50999 0.25227 0.8763 0.393 1.2817 0.21046 1.6336 1.5841 2.3986 1.9465 2.4891 0.53089 0.40438 1.0963 0.78809 1.8615 1.0569 0.7213 0.7439 1.5028 1.0274 2.2885 1.027 0.01156 0 1.602-0.28303 2.3233-1.027 0.76515-0.26882 1.3306-0.65253 1.8615-1.0569 0.36229-0.0905 1.7359-0.85546 1.9464-2.4891 0.14072-0.40541 0.29878-0.77172 0.39306-1.2817 1.4427-1.6294 0.52012-3.6339-0.5054-4.2576l-0.13121-0.23369c0.0052-1.6782-0.76175-2.3622-1.6561-2.8822 0.27057-0.0724 0.55004-0.132 0.62669-0.47713 0.46495-0.12084 0.56228-0.33935 0.6089-0.57089 0.12158-0.0823 0.52862-0.3134 0.48602-0.71082 0.22786-0.1597 0.35493-0.36461 0.29029-0.65501 0.24496-0.2712 0.30938-0.49532 0.20542-0.70193 0.29397-0.37073 0.16356-0.56296 0.03801-0.7575 0.22026-0.40546 0.02589-0.84027-0.5897-0.76742-0.2448-0.36529-0.77863-0.28235-0.86123-0.28065-0.09234-0.11722-0.21426-0.21766-0.58947-0.169-0.24298-0.21998-0.51469-0.18247-0.79495-0.0744-0.33278-0.26259-0.55298-0.0521-0.80452 0.0275-0.40286-0.13166-0.49503 0.0487-0.69297 0.12215-0.4394-0.0929-0.57293 0.10928-0.78356 0.32263l-0.24502-5e-3c-0.66272 0.39056-0.99198 1.1858-1.1087 1.5947-0.11676-0.40891-0.44523-1.2042-1.1078-1.5947l-0.24502 5e-3c-0.21092-0.21335-0.34439-0.41549-0.78379-0.32263-0.198-0.0735-0.28983-0.25381-0.69303-0.12215-0.16508-0.0522-0.31691-0.16078-0.49565-0.15522l-4.5488 7.9878" fill="#ffffff" stroke-width=".056652"/>
- <g transform="translate(0,-270.54)" fill="#c51a4a" stroke-width=".056652">
- <path d="m8.6091 276.23c1.7583 0.9065 2.7804 1.6398 3.3405 2.2643-0.28678 1.1494-1.7829 1.2019-2.3299 1.1696 0.112-0.0521 0.20548-0.1146 0.23862-0.21052-0.13727-0.0976-0.62397-0.0103-0.96377-0.20117 0.13053-0.0271 0.1916-0.0534 0.25261-0.14973-0.32099-0.10237-0.6668-0.19064-0.87018-0.36026 0.10974 1e-3 0.21222 0.0246 0.35555-0.0748-0.28751-0.15495-0.59434-0.27777-0.83273-0.51464 0.14866-4e-3 0.30893-1e-3 0.35555-0.0561-0.26315-0.16305-0.48523-0.34433-0.66901-0.54267 0.20803 0.0251 0.2959 4e-3 0.3462-0.0328-0.19896-0.20378-0.45073-0.37583-0.57077-0.62692 0.15443 0.0533 0.29578 0.0736 0.39764-5e-3 -0.067586-0.15251-0.35719-0.24248-0.52398-0.59888 0.16265 0.0158 0.3351 0.0355 0.3696 0-0.075461-0.30751-0.20497-0.48041-0.33198-0.65955 0.34802-5e-3 0.87534 1e-3 0.85149-0.028l-0.21522-0.21987c0.33997-0.0915 0.68782 0.0147 0.94037 0.0935 0.11336-0.0895-0.00204-0.20259-0.14038-0.31811 0.28893 0.0386 0.54998 0.10498 0.786 0.19647 0.12605-0.11381-0.081863-0.22768-0.18248-0.3415 0.44636 0.0846 0.63547 0.20367 0.82339 0.32281 0.13636-0.1307 0.0078-0.2418-0.084185-0.35555 0.33657 0.12463 0.50993 0.28558 0.6924 0.44444 0.06186-0.0835 0.15721-0.14475 0.04209-0.34621 0.23896 0.13772 0.41894 0.30003 0.55208 0.48189 0.14786-0.0942 0.08809-0.22287 0.08889-0.34156 0.24836 0.20202 0.40597 0.41702 0.59887 0.62692 0.03886-0.0283 0.07286-0.12424 0.10294-0.27601 0.59241 0.57474 1.4296 2.0225 0.21516 2.5965-1.0335-0.8524-2.2679-1.472-3.6357-1.9368l3.966e-4 -2.3e-4"/>
- <path d="m17.939 276.23c-1.758 0.90661-2.7802 1.6397-3.3402 2.2643 0.28678 1.1494 1.7828 1.2019 2.3298 1.1696-0.112-0.0521-0.20548-0.1146-0.23856-0.21052 0.13727-0.0976 0.62397-0.0103 0.96371-0.20117-0.13053-0.0271-0.19154-0.0534-0.25261-0.14973 0.32105-0.10237 0.66686-0.19064 0.87018-0.36026-0.10974 1e-3 -0.21222 0.0246-0.35555-0.0748 0.28757-0.15495 0.5944-0.27777 0.83279-0.51464-0.14871-4e-3 -0.30898-1e-3 -0.35555-0.0561 0.26315-0.16305 0.48523-0.34433 0.66901-0.54267-0.20808 0.0251-0.2959 4e-3 -0.3462-0.0328 0.19891-0.20378 0.45073-0.37583 0.57077-0.62692-0.15449 0.0533-0.29584 0.0736-0.3977-5e-3 0.06759-0.15251 0.35725-0.24248 0.52398-0.59888-0.16259 0.0158-0.3351 0.0355-0.3696 0 0.07563-0.30762 0.20514-0.48052 0.33215-0.65966-0.34802-5e-3 -0.87534 1e-3 -0.85149-0.028l0.21522-0.21993c-0.33997-0.0915-0.68782 0.0147-0.94037 0.0936-0.11336-0.0894 2e-3 -0.20259 0.14033-0.3181-0.28887 0.0385-0.54998 0.10498-0.78594 0.19647-0.12611-0.11382 0.08186-0.22769 0.18248-0.3415-0.44636 0.0846-0.63547 0.20366-0.82344 0.3228-0.13636-0.13069-0.0078-0.24179 0.08424-0.35555-0.33657 0.12464-0.50993 0.28559-0.6924 0.44444-0.06192-0.0835-0.15721-0.14474-0.04215-0.3462-0.2389 0.13772-0.41889 0.30003-0.55202 0.48189-0.14786-0.0942-0.08809-0.22293-0.08889-0.34156-0.24836 0.20202-0.40597 0.41696-0.59887 0.62691-0.03886-0.0283-0.07286-0.12423-0.10294-0.27606-0.59241 0.57479-1.4296 2.0226-0.21516 2.5966 1.0329-0.85262 2.2672-1.4721 3.6352-1.9369h-2.26e-4"/>
- <path d="m15.403 287.93c0.0061 1.0726-0.93188 1.9467-2.095 1.9523-1.1632 6e-3 -2.1111-0.85924-2.1172-1.9318-5.6e-5 -7e-3 -5.6e-5 -0.0136 0-0.0204-0.0061-1.0726 0.93182-1.9466 2.095-1.9523 1.1632-6e-3 2.111 0.85925 2.1172 1.9318v0.0205"/>
- <path d="m12.078 282.39c0.87267 0.5718 1.03 1.8678 0.35136 2.8947s-1.9362 1.396-2.8089 0.82423c-0.87267-0.57179-1.0299-1.8678-0.35136-2.8947 0.67864-1.0269 1.9362-1.396 2.8089-0.82424"/>
- <path d="m14.434 282.28c-0.87262 0.57174-1.0299 1.8678-0.35136 2.8947 0.67864 1.0269 1.9362 1.396 2.8089 0.82418 0.87267-0.57174 1.03-1.8677 0.35136-2.8947-0.67858-1.0269-1.9362-1.3959-2.8089-0.82418"/>
- <path d="m7.7169 283.32c0.94219-0.25256 0.3181 3.8979-0.44852 3.5573-0.84327-0.67825-1.1149-2.6645 0.44852-3.5573"/>
- <path d="m18.605 283.27c-0.9423-0.2525-0.3181 3.8981 0.44852 3.5576 0.84327-0.6783 1.1149-2.6648-0.44852-3.5576"/>
- <path d="m15.404 280.18c1.626-0.27454 2.979 0.6915 2.9243 2.4546-0.05348 0.67598-3.5234-2.354-2.9243-2.4546"/>
- <path d="m10.911 280.13c-1.6261-0.2746-2.979 0.69167-2.9243 2.4547 0.05348 0.67592 3.5234-2.354 2.9243-2.4547"/>
- <path d="m13.247 279.71c-0.97046-0.0253-1.9018 0.72023-1.9041 1.1527-0.0027 0.52539 0.7673 1.0634 1.9107 1.077 1.1676 8e-3 1.9127-0.43062 1.9164-0.97284 0.0043-0.61434-1.0619-1.2664-1.9231-1.2569v5e-5"/>
- <path d="m13.306 290.49c0.8461-0.0369 1.9814 0.2725 1.9837 0.68306 0.01405 0.39861-1.0297 1.2993-2.0398 1.2819-1.0461 0.0451-2.0719-0.85693-2.0585-1.1696-0.01569-0.45843 1.2738-0.81636 2.1146-0.79534"/>
- <path d="m10.181 288.06c0.60238 0.72572 0.87704 2.0008 0.3743 2.3766-0.4756 0.28694-1.6306 0.16876-2.4515-1.0106-0.55366-0.98961-0.48234-1.9966-0.09359-2.2924 0.58131-0.35408 1.4795 0.12424 2.1708 0.92638h-5.7e-5"/>
- <path d="m16.311 287.83c-0.65179 0.76339-1.0147 2.1558-0.53927 2.6043 0.45464 0.34841 1.675 0.29969 2.5765-0.95114 0.65456-0.8401 0.43526-2.2431 0.06135-2.6156-0.55542-0.4296-1.3528 0.12022-2.0986 0.9623v2.3e-4"/>
- </g>
-</svg>