tank-model 3.0.0b3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tank_model-3.0.0b3/.gitattributes +7 -0
- tank_model-3.0.0b3/.github/ISSUE_TEMPLATE/bug_report.md +16 -0
- tank_model-3.0.0b3/.github/ISSUE_TEMPLATE/feature_request.md +11 -0
- tank_model-3.0.0b3/.github/workflows/python-package.yml +41 -0
- tank_model-3.0.0b3/.github/workflows/test-build-package-upload-pypi.yml +64 -0
- tank_model-3.0.0b3/.gitignore +48 -0
- tank_model-3.0.0b3/.python-version +1 -0
- tank_model-3.0.0b3/CITATION.cff +10 -0
- tank_model-3.0.0b3/LICENSE +21 -0
- tank_model-3.0.0b3/PKG-INFO +101 -0
- tank_model-3.0.0b3/assets/tank-model -schamatic-full.pdf +0 -0
- tank_model-3.0.0b3/assets/tank-model-schamatic.svg +1 -0
- tank_model-3.0.0b3/data/.gitkeep +0 -0
- tank_model-3.0.0b3/docs/207090972-Tank-Model.pdf +0 -0
- tank_model-3.0.0b3/docs/AE45900.pdf +0 -0
- tank_model-3.0.0b3/docs/Evaluation_of_alternative_methods_for_estimating_r.pdf +0 -0
- tank_model-3.0.0b3/docs/ParameterRange.pdf +0 -0
- tank_model-3.0.0b3/docs/SSRN-id3571209.pdf +0 -0
- tank_model-3.0.0b3/docs/Simulink_Implementation_of_a_Hydrologic_Model_A_Ta.pdf +23671 -70
- tank_model-3.0.0b3/docs/paik2005.pdf +0 -0
- tank_model-3.0.0b3/docs/peerj-09-11571.pdf +0 -0
- tank_model-3.0.0b3/file-format-spec.md +13 -0
- tank_model-3.0.0b3/load-env.sh +15 -0
- tank_model-3.0.0b3/pyproject.toml +40 -0
- tank_model-3.0.0b3/pytest.ini +7 -0
- tank_model-3.0.0b3/readme.md +82 -0
- tank_model-3.0.0b3/scripts/cpc_et.py +127 -0
- tank_model-3.0.0b3/scripts/gefs_download.py +148 -0
- tank_model-3.0.0b3/scripts/tank_cmd.py +263 -0
- tank_model-3.0.0b3/tank_core/__init__.py +10 -0
- tank_model-3.0.0b3/tank_core/arima.py +99 -0
- tank_model-3.0.0b3/tank_core/bias_correction.py +59 -0
- tank_model-3.0.0b3/tank_core/channel_routing.py +44 -0
- tank_model-3.0.0b3/tank_core/computation_helpers.py +318 -0
- tank_model-3.0.0b3/tank_core/cost_functions.py +116 -0
- tank_model-3.0.0b3/tank_core/evapotranspiration.py +134 -0
- tank_model-3.0.0b3/tank_core/global_config.py +169 -0
- tank_model-3.0.0b3/tank_core/io_helpers.py +144 -0
- tank_model-3.0.0b3/tank_core/project_helpers.py +103 -0
- tank_model-3.0.0b3/tank_core/tank_basin.py +185 -0
- tank_model-3.0.0b3/tank_core/utils.py +162 -0
- tank_model-3.0.0b3/tests/arima_test.py +20 -0
- tank_model-3.0.0b3/tests/bias_corr_test.py +18 -0
- tank_model-3.0.0b3/tests/channel_routing_test.py +32 -0
- tank_model-3.0.0b3/tests/read_config_test.py +0 -0
- tank_model-3.0.0b3/tests/tank_core_test.py +18 -0
- tank_model-3.0.0b3/tests/tank_single_subbasin_test.py +33 -0
- tank_model-3.0.0b3/tests/test_data/arima_data.csv +38 -0
- tank_model-3.0.0b3/tests/test_data/biascorr_dat.csv +501 -0
- tank_model-3.0.0b3/tests/test_data/channel_routing_muskingum.json +24 -0
- tank_model-3.0.0b3/tests/test_data/error_func.csv +14 -0
- tank_model-3.0.0b3/tests/test_data/hms_basin_sample.basin +623 -0
- tank_model-3.0.0b3/tests/test_data/hms_basin_sample_with_spacings.basin +629 -0
- tank_model-3.0.0b3/tests/test_data/tank_core.json +24 -0
- tank_model-3.0.0b3/tests/test_data/tank_sample_data.csv +21551 -0
- tank_model-3.0.0b3/tests/test_data/test_data_format.md +40 -0
- tank_model-3.0.0b3/utils/ecmwf_seas/seas_cp_lsp_t2m.filter +13 -0
- tank_model-3.0.0b3/utils/ecmwf_seas/seas_cp_lsp_t2m.filter.T +13 -0
- tank_model-3.0.0b3/utils/ecmwf_seas/split_seas_data_by_ens.sh +68 -0
- tank_model-3.0.0b3/utils/gefs/gefs_download.sh +82 -0
- tank_model-3.0.0b3/uv.lock +1150 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
**Describe the bug**
|
|
2
|
+
A clear and concise description of what the bug is.
|
|
3
|
+
|
|
4
|
+
**To Reproduce**
|
|
5
|
+
Steps to reproduce the behavior:
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
**Expected behavior**
|
|
9
|
+
A clear and concise description of what you expected to happen.
|
|
10
|
+
|
|
11
|
+
**Screenshots/Output Text**
|
|
12
|
+
If applicable, add screenshots to help explain your problem.
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
**Additional context**
|
|
16
|
+
Add any other context about the problem here.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
**Is your feature request related to a problem? Please describe.**
|
|
2
|
+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
|
3
|
+
|
|
4
|
+
**Describe the solution you'd like**
|
|
5
|
+
A clear and concise description of what you want to happen.
|
|
6
|
+
|
|
7
|
+
**Describe alternatives you've considered**
|
|
8
|
+
A clear and concise description of any alternative solutions or features you've considered.
|
|
9
|
+
|
|
10
|
+
**Additional context**
|
|
11
|
+
Add any other context or screenshots about the feature request here.
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
|
|
2
|
+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
|
|
3
|
+
|
|
4
|
+
name: Python package
|
|
5
|
+
|
|
6
|
+
on:
|
|
7
|
+
push:
|
|
8
|
+
branches: [ "master" ]
|
|
9
|
+
pull_request:
|
|
10
|
+
branches: [ "master" ]
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
build:
|
|
14
|
+
|
|
15
|
+
runs-on: ubuntu-latest
|
|
16
|
+
strategy:
|
|
17
|
+
fail-fast: false
|
|
18
|
+
matrix:
|
|
19
|
+
python-version: [ "3.7", "3.8", "3.9", "3.10" , "3.11"]
|
|
20
|
+
|
|
21
|
+
steps:
|
|
22
|
+
- uses: actions/checkout@v3
|
|
23
|
+
- name: Set up Python ${{ matrix.python-version }}
|
|
24
|
+
uses: actions/setup-python@v3
|
|
25
|
+
with:
|
|
26
|
+
python-version: ${{ matrix.python-version }}
|
|
27
|
+
- name: Install dependencies
|
|
28
|
+
run: |
|
|
29
|
+
python -m pip install --upgrade pip
|
|
30
|
+
python -m pip install flake8 pytest
|
|
31
|
+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
|
|
32
|
+
- name: Lint with flake8
|
|
33
|
+
run: |
|
|
34
|
+
# stop the build if there are Python syntax errors or undefined names
|
|
35
|
+
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
|
|
36
|
+
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
|
|
37
|
+
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
|
|
38
|
+
- name: Test with pytest
|
|
39
|
+
run: |
|
|
40
|
+
source ./env.sh
|
|
41
|
+
pytest
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
name: test-build-package-upload-pypi
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [ "main" ]
|
|
6
|
+
pull_request:
|
|
7
|
+
branches: [ "main" ]
|
|
8
|
+
release:
|
|
9
|
+
types: [ published ]
|
|
10
|
+
|
|
11
|
+
permissions:
|
|
12
|
+
contents: read
|
|
13
|
+
|
|
14
|
+
jobs:
|
|
15
|
+
test:
|
|
16
|
+
runs-on: ubuntu-latest
|
|
17
|
+
strategy:
|
|
18
|
+
fail-fast: false
|
|
19
|
+
matrix:
|
|
20
|
+
python-version: [ "3.12", "3.13", "3.14" ]
|
|
21
|
+
steps:
|
|
22
|
+
- uses: actions/checkout@v4
|
|
23
|
+
- name: Install uv
|
|
24
|
+
uses: astral-sh/setup-uv@v5
|
|
25
|
+
with:
|
|
26
|
+
enable-cache: true
|
|
27
|
+
- name: Set up Python ${{ matrix.python-version }}
|
|
28
|
+
run: uv python install ${{ matrix.python-version }}
|
|
29
|
+
- name: Install dependencies
|
|
30
|
+
run: uv sync --python ${{ matrix.python-version }}
|
|
31
|
+
- name: Run tests
|
|
32
|
+
run: uv run --python ${{ matrix.python-version }} pytest
|
|
33
|
+
|
|
34
|
+
build:
|
|
35
|
+
needs: test
|
|
36
|
+
runs-on: ubuntu-latest
|
|
37
|
+
steps:
|
|
38
|
+
- uses: actions/checkout@v4
|
|
39
|
+
- name: Install uv
|
|
40
|
+
uses: astral-sh/setup-uv@v5
|
|
41
|
+
with:
|
|
42
|
+
enable-cache: true
|
|
43
|
+
- name: Build package
|
|
44
|
+
run: uv build
|
|
45
|
+
- name: Upload dist artifact
|
|
46
|
+
uses: actions/upload-artifact@v4
|
|
47
|
+
with:
|
|
48
|
+
name: dist
|
|
49
|
+
path: dist/
|
|
50
|
+
|
|
51
|
+
publish:
|
|
52
|
+
needs: build
|
|
53
|
+
if: github.event_name == 'release' && github.event.action == 'published'
|
|
54
|
+
runs-on: ubuntu-latest
|
|
55
|
+
permissions:
|
|
56
|
+
id-token: write
|
|
57
|
+
steps:
|
|
58
|
+
- name: Download dist artifact
|
|
59
|
+
uses: actions/download-artifact@v4
|
|
60
|
+
with:
|
|
61
|
+
name: dist
|
|
62
|
+
path: dist/
|
|
63
|
+
- name: Publish to PyPI
|
|
64
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# python
|
|
2
|
+
__pycache__
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# binary blobs
|
|
7
|
+
*.nc
|
|
8
|
+
*.nc4
|
|
9
|
+
*.grib
|
|
10
|
+
*.grib2
|
|
11
|
+
*.h5
|
|
12
|
+
*.hdf
|
|
13
|
+
*.hdf5
|
|
14
|
+
|
|
15
|
+
# mypy
|
|
16
|
+
.mypy_cache/
|
|
17
|
+
|
|
18
|
+
# os
|
|
19
|
+
.directory
|
|
20
|
+
.DS_Store
|
|
21
|
+
|
|
22
|
+
# virtualenv
|
|
23
|
+
.venv/
|
|
24
|
+
.env/
|
|
25
|
+
venv/
|
|
26
|
+
env/
|
|
27
|
+
|
|
28
|
+
# temporary data/directory
|
|
29
|
+
data/*.csv
|
|
30
|
+
tmp_dir
|
|
31
|
+
project/
|
|
32
|
+
|
|
33
|
+
#notebooks
|
|
34
|
+
.ipynb_checkpoints/
|
|
35
|
+
|
|
36
|
+
#build files
|
|
37
|
+
eggs/
|
|
38
|
+
.eggs/
|
|
39
|
+
*.egg
|
|
40
|
+
*.egg-info/
|
|
41
|
+
wheels/
|
|
42
|
+
build/
|
|
43
|
+
dist/
|
|
44
|
+
|
|
45
|
+
#ide
|
|
46
|
+
.idea/
|
|
47
|
+
.vscode
|
|
48
|
+
.claude
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.14
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
cff-version: 1.2.0
|
|
2
|
+
message: "If you use this software, kindly cite it as below."
|
|
3
|
+
authors:
|
|
4
|
+
- family-names: "Shawn"
|
|
5
|
+
given-names: "Nazmul Ahasan"
|
|
6
|
+
orcid: "https://orcid.org/0000-0002-5520-6407"
|
|
7
|
+
title: "tank-hydrological-model"
|
|
8
|
+
version: 0.2.3
|
|
9
|
+
date-released: 2023-05-02
|
|
10
|
+
url: "https://github.com/nzahasan/tank-model"
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2020 Nazmul Ahasan
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tank-model
|
|
3
|
+
Version: 3.0.0b3
|
|
4
|
+
Summary: Python implementation of Tank Hydrologic Model, a conceptual rainfall-runoff model proposed by Sugawara and Funiyuki (1956)
|
|
5
|
+
Author-email: Nazmul Ahasan <nzahasan@gmail.com>
|
|
6
|
+
License-File: LICENSE
|
|
7
|
+
Requires-Python: >=3.12
|
|
8
|
+
Requires-Dist: click>=8.4.2
|
|
9
|
+
Requires-Dist: matplotlib>=3.11.0
|
|
10
|
+
Requires-Dist: numpy>=2.5.1
|
|
11
|
+
Requires-Dist: pandas>=3.0.3
|
|
12
|
+
Requires-Dist: pathlib>=1.0.1
|
|
13
|
+
Requires-Dist: pytest>=9.1.1
|
|
14
|
+
Requires-Dist: scipy>=1.18.0
|
|
15
|
+
Requires-Dist: seaborn>=0.13.2
|
|
16
|
+
Requires-Dist: statsmodels>=0.14.6
|
|
17
|
+
Requires-Dist: tabulate>=0.10.0
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
|
|
20
|
+
# Tank Hydrologic Model
|
|
21
|
+
Python implementation of Tank Hydrologic Model, a conceptual rainfall-runoff model proposed by Sugawara and Funiyuki (1956)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
<p align="center">
|
|
25
|
+
<img align="center" height="500px" src="https://raw.githubusercontent.com/nzahasan/tank-model/master/assets/tank-model-schamatic.svg" >
|
|
26
|
+
</p>
|
|
27
|
+
|
|
28
|
+
### Installation
|
|
29
|
+
|
|
30
|
+
Tank-Model can be installed as a python package using the following commands
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
$ pip install https://github.com/nzahasan/tank-model/zipball/master
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
after successful installation `tank_cmd.py` should be available which can be used for setting up new project, optimizing the project and computation.
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
# get help text command line utility
|
|
40
|
+
$ tank_cmd.py --help
|
|
41
|
+
|
|
42
|
+
# get help text of subcommand
|
|
43
|
+
$ tank_cmd.py new-project --help
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
### Setting up a new model:
|
|
47
|
+
|
|
48
|
+
New project can be created using the following command. This command creates a folder in working directory with a json formatted project definition inside it.
|
|
49
|
+
```bash
|
|
50
|
+
$ tank_cmd.py new-project project_name
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
A sample project definition looks like this
|
|
54
|
+
```json
|
|
55
|
+
{
|
|
56
|
+
"interval": 24.0,
|
|
57
|
+
"basin": "sample_project.basin.json",
|
|
58
|
+
"precipitation": "sample_project.pr.csv",
|
|
59
|
+
"evapotranspiration": "sample_project.et.csv",
|
|
60
|
+
"discharge": "sample_project.q.csv",
|
|
61
|
+
"result": "sample_project.result.csv",
|
|
62
|
+
"statistics": "sample_project.stats.json",
|
|
63
|
+
"start": "2020-01-01T00:00:00",
|
|
64
|
+
"end": "2020-12-31T00:00:00"
|
|
65
|
+
}
|
|
66
|
+
```
|
|
67
|
+
here `interval` is the time step of simulation in hours. The other attributes are file locations; `precipitation`, `evapotranspiration` and `discharge` are CSV files containing time-series data. These files should be formatted according to the file format mentioned here <a href="file-format-spec.md">file-format-spec.md</a>
|
|
68
|
+
|
|
69
|
+
`start` and `end` are optional and restrict `compute`, `optimize` and `plot-result` to the given date range (format `%Y-%m-%dT%H:%M:%S`, matching the time-series files). If omitted, the full period available in the input files is simulated; either one can be given on its own, in which case the other side of the range is left unbounded.
|
|
70
|
+
|
|
71
|
+
`precipitation` & `evapotranspiration` serve as input data for the model simulation and resulting output is stored in the `result` file following the time-series CSV format mentioned earlier. Data in the `discharge` is used for model calibration. And performance matrices are stored in the `statistics` file.
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
### Converting HEC-HMS basin to tank model basin
|
|
76
|
+
|
|
77
|
+
```bash
|
|
78
|
+
$ tank_cmd.py hms2tank -bf hechms_basin_file -of output_tank_basin_file_path
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
### Computing tank model
|
|
82
|
+
|
|
83
|
+
```bash
|
|
84
|
+
$ tank_cmd.py compute -pf project_name.project.json
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
### Automatic optimization of tank model
|
|
88
|
+
|
|
89
|
+
```bash
|
|
90
|
+
$ tank_cmd.py optimize -pf project_name.project.json
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
### Known Limitions
|
|
94
|
+
|
|
95
|
+
- Currently there is no way to optimize for multiple root node
|
|
96
|
+
|
|
97
|
+
### References:
|
|
98
|
+
1. Paik K., Kim J. H., Kim H. S., Lee D. R. (2005) A conceptual rainfall-runoff model considering seasonal variation.
|
|
99
|
+
2. Aguilar C., Polo M. J. (2011) Generating reference evapotranspiration surfaces from the Hargreaves equation at watershed scale.
|
|
100
|
+
3. Taib A. T. M., Tahir W., Ramli S., Mohtar I. S. A. (2022) Hydro-Meteorological Flood Forecasting Using Tank Model With Satellite-Based Rainfall Input For Kemaman River Catchment.
|
|
101
|
+
4. D. N. Moriasi, J. G. Arnold, M. W. Van Liew, R. L. Bingner, R. D. Harmel, T. L. Veith (2007) Model Evaluation Guidelines For Systematic Quantification Of Accuracy In Watershed Simulations.
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:lucid="lucid" width="901" height="1305.07"><g transform="translate(-340 -178.926)" lucid:page-tab-id="Zq1UPR1CHgUr"><path d="M401 1461h338v2H401zM401 1459v-218h2v218zM677 1419v-178h2v178zM677 1421h62v2h-62zM401 1161h118v2H401zM401 1159V941h2v218zM677 1039v-98h2v98zM677 1163v-82h2v82zM677 1041h62v2h-62zM677 1077h62v2h-62zM559 1161v58h-2v-58zM523 1161v58h-2v-58z" stroke="#282c33" stroke-width="2" fill="none"/><path d="M561 1161h118v2H561zM401 861h118v2H401zM401 859V641h2v218zM677 739v-98h2v98zM677 863v-82h2v82zM677 741h62v2h-62zM677 777h62v2h-62zM559 861v58h-2v-58zM523 861v58h-2v-58z" stroke="#282c33" stroke-width="2" fill="none"/><path d="M561 861h118v2H561zM401 561h118v2H401zM401 559V321h2v238zM681 459v-38h2v38zM681 563v-62h2v62zM681 461h62v2h-62zM681 497h62v2h-62zM559 561v58h-2v-58zM523 561v58h-2v-58zM561 561h118v2H561zM681 381h62v2h-62zM681 417h62v2h-62zM681 379v-58h2v58z" stroke="#282c33" stroke-width="2" fill="none"/><path d="M400 198.93h140v42.14H400z" stroke="#cc4e00" stroke-width="4" fill-opacity="0"/><use xlink:href="#a" transform="matrix(1,0,0,1,405,203.926) translate(32.73333333333335 24.21711111111111)"/><path d="M560 198.93h124v42.14H560z" stroke="#008a0e" stroke-width="4" fill-opacity="0"/><use xlink:href="#b" transform="matrix(1,0,0,1,564.9999999999999,203.926) translate(9.100000000000023 24.21711111111111)"/><path d="M624.3 331.54l-2.25-86.47" stroke="#008a0e" stroke-width="4" fill="none"/><path d="M624.9 355.05l-13.28-21.18 25.44-.66z" stroke="#008a0e" stroke-width="4" fill="#fff"/><path d="M624.05 245.07l-4 .1-.05-2.1h4z" stroke="#008a0e" stroke-width=".05" fill="#008a0e"/><path d="M470 358.13v-87.6M470 358.08v2.05" stroke="#cc4e00" stroke-width="4" fill="none"/><path d="M470 247l12.73 21.52h-25.46z" stroke="#cc4e00" stroke-width="4" fill="#fff"/><path d="M364 416v-96h40v96z" fill="#282c33"/><use xlink:href="#c" transform="matrix(6.123233995736766e-17,-1,1,6.123233995736766e-17,369,411) translate(6.600000000000001 20.80377777777778)"/><use xlink:href="#d" transform="matrix(6.123233995736766e-17,-1,1,6.123233995736766e-17,369,411) translate(67.26666666666667 20.80377777777778)"/><path d="M362.23 736v-96H404v96z" fill="#282c33"/><use xlink:href="#c" transform="matrix(6.123233995736766e-17,-1,1,6.123233995736766e-17,367.22698037505256,731) translate(7.100000000000001 21.80377777777778)"/><use xlink:href="#e" transform="matrix(6.123233995736766e-17,-1,1,6.123233995736766e-17,367.22698037505256,731) translate(67.76666666666667 21.80377777777778)"/><path d="M360 1036v-96h44v96z" fill="#282c33"/><use xlink:href="#c" transform="matrix(6.123233995736766e-17,-1,1,6.123233995736766e-17,365,1031) translate(6.600000000000001 23.30377777777778)"/><use xlink:href="#f" transform="matrix(6.123233995736766e-17,-1,1,6.123233995736766e-17,365,1031) translate(67.26666666666667 23.30377777777778)"/><path d="M362.23 1336v-96H404v96z" fill="#282c33"/><use xlink:href="#c" transform="matrix(6.123233995736766e-17,-1,1,6.123233995736766e-17,367.22698037505256,1331) translate(7.100000000000001 21.80377777777778)"/><use xlink:href="#g" transform="matrix(6.123233995736766e-17,-1,1,6.123233995736766e-17,367.22698037505256,1331) translate(67.76666666666667 21.80377777777778)"/><path d="M792.67 762H742v-4h50.67zm403.7 0h-49.04v-4h49.03z" stroke="#282c33" stroke-width=".05" fill="#282c33"/><path d="M742.05 762H740v-4h2.05zM1200 760l-20.13 11.9-2.03-3.44 14.3-8.46-14.3-8.46 2.03-3.44z" stroke="#282c33" stroke-width=".05" fill="#282c33"/><use xlink:href="#h" transform="matrix(1,0,0,1,792.6666666666667,744.04) translate(0 24.888888888888886)"/><use xlink:href="#i" transform="matrix(1,0,0,1,792.6666666666667,744.04) translate(242.66666666666657 24.888888888888886)"/><path d="M830 1062h-88v-4h88zm366.36 0H1110v-4h86.36z" stroke="#282c33" stroke-width=".05" fill="#282c33"/><path d="M742.05 1062H740v-4h2.05zM1200 1060l-20.13 11.9-2.03-3.44 14.3-8.46-14.3-8.46 2.03-3.44z" stroke="#282c33" stroke-width=".05" fill="#282c33"/><use xlink:href="#j" transform="matrix(1,0,0,1,830,1044.04) translate(0 24.888888888888886)"/><use xlink:href="#k" transform="matrix(1,0,0,1,830,1044.04) translate(167.99999999999994 24.888888888888886)"/><path d="M867.33 1442H742v-4h125.33zm329.03 0h-123.7v-4h123.7z" stroke="#282c33" stroke-width=".05" fill="#282c33"/><path d="M742.05 1442H740v-4h2.05zM1200 1440l-20.13 11.9-2.03-3.44 14.3-8.46-14.3-8.46 2.03-3.44z" stroke="#282c33" stroke-width=".05" fill="#282c33"/><use xlink:href="#l" transform="matrix(1,0,0,1,867.3333333333334,1424.04) translate(0 24.888888888888886)"/><use xlink:href="#k" transform="matrix(1,0,0,1,867.3333333333334,1424.04) translate(93.33333333333331 24.888888888888886)"/><path d="M1196.36 438v4h-77.77v-4zm-406.52-39.94l.76.18.73.3.67.4.6.52.5.6.42.67.3.72.2.84.04 34.62.02.24.03.15.07.15.08.13.1.12.12.1.14.1.15.05h.08l62.43.02v4h-62.9l-.85-.2-.72-.3-.66-.42-.6-.5-.5-.6-.42-.68-.3-.72-.2-.77-.04-.7-.04-34.3-.02-.1-.06-.13-.08-.13-.1-.12-.12-.1-.13-.1-.14-.05-.15-.03-.22-.02H742v-4h47.14z" stroke="#282c33" stroke-width=".05" fill="#282c33"/><path d="M742.05 402H740v-4h2.05zM1200 440l-20.13 11.9-2.03-3.44 14.3-8.46-14.3-8.46 2.03-3.44z" stroke="#282c33" stroke-width=".05" fill="#282c33"/><path d="M857.26 442.03h-62.43l-.08.02-.14.06-.13.1-.12.1-.1.12-.08.13-.06.14-.02.14-.02.24-.04 34.63-.2.85-.3.72-.4.67-.52.6-.6.5-.67.42-.73.3-.76.18-.7.06H742v-4h46.98l.23-.02.16-.03.15-.06.14-.1.12-.1.1-.12.08-.13.06-.14.02-.07.04-34.3.05-.7.2-.78.3-.72.4-.67.52-.6.6-.5.66-.42.73-.3.85-.2h62.9zm339.1-.03h-77.77v-4h77.76z" stroke="#282c33" stroke-width=".05" fill="#282c33"/><path d="M742.05 482H740v-4h2.05zM1200 440l-20.13 11.9-2.03-3.44 14.3-8.46-14.3-8.46 2.03-3.44z" stroke="#282c33" stroke-width=".05" fill="#282c33"/><use xlink:href="#m" transform="matrix(1,0,0,1,857.2604092384089,424.04) translate(0 24.888888888888886)"/><use xlink:href="#k" transform="matrix(1,0,0,1,857.2604092384089,424.04) translate(149.3333333333333 24.888888888888886)"/><path d="M542 996.36h-4v-29.22h4zm0-56.8h-4V882h4z" stroke="#282c33" stroke-width=".05" fill="#282c33"/><path d="M542 882.05h-4V880h4zM551.9 979.87L540 1000l-11.9-20.13 3.44-2.03 8.46 14.3 8.46-14.3z" stroke="#282c33" stroke-width=".05" fill="#282c33"/><use xlink:href="#n" transform="matrix(1,0,0,1,451.2666666666667,939.5496600324359) translate(0 21.511111111111106)"/><path d="M542 1296.36h-4v-30.16h4zm0-57.74h-4V1182h4z" stroke="#282c33" stroke-width=".05" fill="#282c33"/><path d="M542 1182.05h-4V1180h4zM551.9 1279.87L540 1300l-11.9-20.13 3.44-2.03 8.46 14.3 8.46-14.3z" stroke="#282c33" stroke-width=".05" fill="#282c33"/><g><use xlink:href="#n" transform="matrix(1,0,0,1,451.2666666666667,1238.6163477278337) translate(0 21.511111111111106)"/></g><path d="M542 696.36h-4V666.4h4zm0-57.54h-4V582h4z" stroke="#282c33" stroke-width=".05" fill="#282c33"/><path d="M542 582.05h-4V580h4zM551.9 679.87L540 700l-11.9-20.13 3.44-2.03 8.46 14.3 8.46-14.3z" stroke="#282c33" stroke-width=".05" fill="#282c33"/><g><use xlink:href="#o" transform="matrix(1,0,0,1,443.20000000000005,638.818111166354) translate(0 21.511111111111106)"/></g><defs><path fill="#282c33" d="M144-71h387V0H68v-700h444v71H144v227h330v71H144v260" id="p"/><path fill="#282c33" d="M333 0h-67L69-500h85l147 400 147-400h82" id="q"/><path fill="#282c33" d="M441-337c-1-137-231-107-299-55l-30-64c55-28 117-51 199-50 119 2 203 50 203 169V0h-73v-79C409-37 341 1 263 0 158-2 83-42 83-143c0-154 205-168 358-142v-52zm0 113c-94-17-273-32-279 73-4 66 40 86 106 86 80 0 147-35 173-94v-65" id="r"/><path fill="#282c33" d="M237 8c-38 0-61-6-93-13v190H71v-685h73v32c47-25 95-38 144-38 148 0 238 93 238 245C526-82 414 8 237 8zm31-446c-50 0-92 15-124 37v328c30 10 50 16 89 16 136-3 221-65 221-204 0-115-73-177-186-177" id="s"/><g id="a"><use transform="matrix(0.02688888888888888,0,0,0.02688888888888888,0,0)" xlink:href="#p"/><use transform="matrix(0.02688888888888888,0,0,0.02688888888888888,16.133333333333326,0)" xlink:href="#q"/><use transform="matrix(0.02688888888888888,0,0,0.02688888888888888,32.26666666666665,0)" xlink:href="#r"/><use transform="matrix(0.02688888888888888,0,0,0.02688888888888888,48.39999999999998,0)" xlink:href="#s"/></g><path fill="#282c33" d="M543-477c0 220-188 278-411 259V0H56v-690c56-10 117-18 180-18 175 2 307 57 307 231zm-76 10c3-167-174-186-335-163v345c167 17 333-16 335-182" id="t"/><path fill="#282c33" d="M271-395c26-77 110-132 213-101 20 6 42 16 65 29l-40 63c-24-14-55-27-85-27-84 0-128 60-153 125v237h171V0H51v-69h146v-361H60v-70h211v105" id="u"/><path fill="#282c33" d="M332 5C157 5 51-77 51-251c0-161 96-258 251-258 159 0 232 113 236 277H126c9 116 91 167 211 167 55 0 120-18 161-43l27 64C477-12 401 5 332 5zm128-310c-14-92-104-156-214-125-60 17-102 60-116 125h330" id="v"/><path fill="#282c33" d="M366-67c50 0 97-14 133-32l27 63C476-11 424 5 353 5 179 5 64-87 64-253c0-189 164-282 368-247 25 4 50 15 75 26l-25 66c-37-15-79-27-126-27-123 0-214 62-214 182 0 126 98 186 224 186" id="w"/><path fill="#282c33" d="M50-69h216v-361H50v-70h290v431h210V0H50v-69zm242-555c-35 0-65-30-65-65s30-65 65-65 65 30 65 65-30 65-65 65" id="x"/><g id="b"><use transform="matrix(0.02688888888888888,0,0,0.02688888888888888,0,0)" xlink:href="#t"/><use transform="matrix(0.02688888888888888,0,0,0.02688888888888888,16.133333333333326,0)" xlink:href="#u"/><use transform="matrix(0.02688888888888888,0,0,0.02688888888888888,32.26666666666665,0)" xlink:href="#v"/><use transform="matrix(0.02688888888888888,0,0,0.02688888888888888,48.39999999999998,0)" xlink:href="#w"/><use transform="matrix(0.02688888888888888,0,0,0.02688888888888888,64.5333333333333,0)" xlink:href="#x"/><use transform="matrix(0.02688888888888888,0,0,0.02688888888888888,80.66666666666663,0)" xlink:href="#s"/></g><path fill="#fff" d="M53-700h493v71H342V0h-76v-629H53v-71" id="y"/><path fill="#fff" d="M441-337c-1-137-231-107-299-55l-30-64c55-28 117-51 199-50 119 2 203 50 203 169V0h-73v-79C409-37 341 1 263 0 158-2 83-42 83-143c0-154 205-168 358-142v-52zm0 113c-94-17-273-32-279 73-4 66 40 86 106 86 80 0 147-35 173-94v-65" id="z"/><path fill="#fff" d="M330-436c-90 0-149 46-183 106V0H73v-500h74v92c42-57 105-104 197-104 116 0 182 67 182 186V0h-74v-316c-1-79-44-120-122-120" id="A"/><path fill="#fff" d="M130-268l288-232h113L320-329 544 0h-97L256-285 130-181V0H56v-750h74v482" id="B"/><g id="c"><use transform="matrix(0.02022222222222222,0,0,0.02022222222222222,0,0)" xlink:href="#y"/><use transform="matrix(0.02022222222222222,0,0,0.02022222222222222,12.133333333333333,0)" xlink:href="#z"/><use transform="matrix(0.02022222222222222,0,0,0.02022222222222222,24.266666666666666,0)" xlink:href="#A"/><use transform="matrix(0.02022222222222222,0,0,0.02022222222222222,36.4,0)" xlink:href="#B"/></g><path fill="#fff" d="M300 9C78 9-1-235 58-461c30-113 104-206 242-206 180 0 260 153 260 338 0 147-59 256-154 311C374 0 339 9 300 9zm82-574c-38-31-110-38-158-7-88 56-136 208-96 344 10 32 23 60 39 85zM220-89c39 30 110 36 156 4 84-58 136-206 96-341-10-31-23-59-38-83" id="C"/><use transform="matrix(0.02022222222222222,0,0,0.02022222222222222,0,0)" xlink:href="#C" id="d"/><path fill="#fff" d="M268-572c-62 18-135 34-197 53l-23-67 245-67h49v584h209V0H48v-69h220v-503" id="D"/><use transform="matrix(0.02022222222222222,0,0,0.02022222222222222,0,0)" xlink:href="#D" id="e"/><path fill="#fff" d="M300-666c127 0 217 64 217 192 0 82-66 139-117 194-66 70-156 144-226 210h364V0H62v-53c114-120 250-221 349-345 22-29 33-56 33-80 0-82-67-117-151-119-70-2-137 39-173 76l-50-39c47-63 124-106 230-106" id="E"/><use transform="matrix(0.02022222222222222,0,0,0.02022222222222222,0,0)" xlink:href="#E" id="f"/><path fill="#fff" d="M538-203C538-22 347 32 160-8c-38-8-72-19-102-32l24-64c46 20 129 41 198 39 101-3 183-41 183-135 0-133-159-155-295-133v-73c124 5 257-7 257-107 0-70-73-83-146-85-64-3-136 20-174 38l-23-61c117-65 418-87 418 99 0 80-49 123-112 143 85 16 150 82 150 176" id="F"/><use transform="matrix(0.02022222222222222,0,0,0.02022222222222222,0,0)" xlink:href="#F" id="g"/><path d="M62-700h474v71H342v558h204V0H53v-71h213v-558H62v-71" id="G"/><path d="M330-436c-90 0-149 46-183 106V0H73v-500h74v92c42-57 105-104 197-104 116 0 182 67 182 186V0h-74v-316c-1-79-44-120-122-120" id="H"/><path d="M551 5C425 2 301 18 264-74c-35-86-18-237-22-357H48l10-69h184v-97l74-18v115h227l-10 69H316c2 88-5 212 8 283 17 94 111 81 227 83V5" id="I"/><path d="M332 5C157 5 51-77 51-251c0-161 96-258 251-258 159 0 232 113 236 277H126c9 116 91 167 211 167 55 0 120-18 161-43l27 64C477-12 401 5 332 5zm128-310c-14-92-104-156-214-125-60 17-102 60-116 125h330" id="J"/><path d="M271-395c26-77 110-132 213-101 20 6 42 16 65 29l-40 63c-24-14-55-27-85-27-84 0-128 60-153 125v237h171V0H51v-69h146v-361H60v-70h211v105" id="K"/><path d="M222-435c-55 0-77 45-77 98V0H71v-500h74v63c14-39 47-71 92-71s77 33 85 77c21-41 53-78 109-78 87 0 99 78 99 173V0h-74v-336c-2-58-1-91-41-99-45 6-69 41-69 89V0h-74v-336c1-50-13-99-50-99" id="L"/><path d="M70-234c0-204 168-318 389-269v-247h74V0h-74v-40C416-13 379 6 314 6 160 6 70-85 70-234zM318-64c60 0 102-19 141-44v-323c-31-10-65-15-100-15-132 0-214 81-214 209 0 107 63 173 173 173" id="M"/><path d="M50-69h216v-361H50v-70h290v431h210V0H50v-69zm242-555c-35 0-65-30-65-65s30-65 65-65 65 30 65 65-30 65-65 65" id="N"/><path d="M441-337c-1-137-231-107-299-55l-30-64c55-28 117-51 199-50 119 2 203 50 203 169V0h-73v-79C409-37 341 1 263 0 158-2 83-42 83-143c0-154 205-168 358-142v-52zm0 113c-94-17-273-32-279 73-4 66 40 86 106 86 80 0 147-35 173-94v-65" id="O"/><g id="h"><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,0,0)" xlink:href="#G"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,18.666666666666664,0)" xlink:href="#H"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,37.33333333333333,0)" xlink:href="#I"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,55.99999999999999,0)" xlink:href="#J"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,74.66666666666666,0)" xlink:href="#K"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,93.33333333333331,0)" xlink:href="#L"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,111.99999999999997,0)" xlink:href="#J"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,130.66666666666663,0)" xlink:href="#M"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,149.3333333333333,0)" xlink:href="#N"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,167.99999999999994,0)" xlink:href="#O"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,186.6666666666666,0)" xlink:href="#I"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,205.33333333333326,0)" xlink:href="#J"/></g><path d="M508-496c-2 102-53 162-121 198L549 0h-90L311-274c-51 14-120 13-184 14V0H51v-690c204-40 461-26 457 194zm-76 10c5-152-160-169-305-147v305c152 3 300-12 305-158" id="P"/><path d="M283-69c72 0 129-29 162-70v-361h76V0h-76v-79C417-36 357 2 285 1 144 0 75-76 76-223v-277h73v281c0 96 43 150 134 150" id="Q"/><path d="M304 7C148 7 59-90 59-251c0-156 89-257 239-257 156 0 240 97 240 257C538-97 453 7 304 7zm1-70c105 0 162-78 162-188 0-114-57-187-169-187-103 0-163 80-163 187 0 113 61 188 170 188" id="R"/><path d="M495-660c-81-53-232-25-226 89v71h241l-10 69H269v362h259V0H67v-69h128v-362H75l10-69h110v-81c7-116 92-174 208-174 52 0 93 17 130 40" id="S"/><g id="i"><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,0,0)" xlink:href="#P"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,18.666666666666664,0)" xlink:href="#Q"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,37.33333333333333,0)" xlink:href="#H"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,55.99999999999999,0)" xlink:href="#R"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,74.66666666666666,0)" xlink:href="#S"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,93.33333333333331,0)" xlink:href="#S"/></g><path fill="#303030" d="M77-530c-3-198 283-211 436-143l-29 68c-91-39-330-66-330 68 0 57 57 79 102 102 88 45 201 76 260 149 19 23 29 50 29 83C545 32 227 36 54-44l30-74c110 51 384 84 384-82 0-57-56-77-102-100-89-44-202-73-260-146-19-23-29-51-29-84" id="T"/><path fill="#303030" d="M283-69c72 0 129-29 162-70v-361h76V0h-76v-79C417-36 357 2 285 1 144 0 75-76 76-223v-277h73v281c0 96 43 150 134 150" id="U"/><path fill="#303030" d="M241 6C177 6 119 0 70-26v-724h73v271c37-17 85-30 137-30 157 0 256 89 256 248C536-88 412 6 241 6zm36-447c-52 0-101 12-134 34v333c160 44 323-25 320-187-2-115-75-180-186-180" id="V"/><path fill="#303030" d="M68-245v-74h463v74H68" id="W"/><path fill="#303030" d="M379-390c90 17 161 77 161 171C540 2 281 24 59-6v-684c179-32 439-28 439 156 0 85-51 127-119 144zM135-70c151 13 330 3 330-147 0-135-189-138-330-125v272zm287-454c0-122-169-121-287-106v217c104 7 213-3 265-56 15-15 22-33 22-55" id="X"/><path fill="#303030" d="M441-337c-1-137-231-107-299-55l-30-64c55-28 117-51 199-50 119 2 203 50 203 169V0h-73v-79C409-37 341 1 263 0 158-2 83-42 83-143c0-154 205-168 358-142v-52zm0 113c-94-17-273-32-279 73-4 66 40 86 106 86 80 0 147-35 173-94v-65" id="Y"/><path fill="#303030" d="M118-359c0-167 249-158 378-112l-27 67c-35-19-89-26-144-26-59 0-120 6-126 60 5 35 47 45 81 58 73 28 161 49 206 104 15 18 23 40 23 66 2 184-291 164-407 98l28-66c50 18 112 40 176 40 59 0 123-17 124-71-14-64-98-71-156-95-66-26-156-42-156-123" id="Z"/><path fill="#303030" d="M332 5C157 5 51-77 51-251c0-161 96-258 251-258 159 0 232 113 236 277H126c9 116 91 167 211 167 55 0 120-18 161-43l27 64C477-12 401 5 332 5zm128-310c-14-92-104-156-214-125-60 17-102 60-116 125h330" id="aa"/><g id="j"><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,0,0)" xlink:href="#T"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,18.666666666666664,0)" xlink:href="#U"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,37.33333333333333,0)" xlink:href="#V"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,55.99999999999999,0)" xlink:href="#W"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,74.66666666666666,0)" xlink:href="#X"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,93.33333333333331,0)" xlink:href="#Y"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,111.99999999999997,0)" xlink:href="#Z"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,130.66666666666663,0)" xlink:href="#aa"/></g><path fill="#303030" d="M508-496c-2 102-53 162-121 198L549 0h-90L311-274c-51 14-120 13-184 14V0H51v-690c204-40 461-26 457 194zm-76 10c5-152-160-169-305-147v305c152 3 300-12 305-158" id="ab"/><path fill="#303030" d="M330-436c-90 0-149 46-183 106V0H73v-500h74v92c42-57 105-104 197-104 116 0 182 67 182 186V0h-74v-316c-1-79-44-120-122-120" id="ac"/><path fill="#303030" d="M304 7C148 7 59-90 59-251c0-156 89-257 239-257 156 0 240 97 240 257C538-97 453 7 304 7zm1-70c105 0 162-78 162-188 0-114-57-187-169-187-103 0-163 80-163 187 0 113 61 188 170 188" id="ad"/><path fill="#303030" d="M495-660c-81-53-232-25-226 89v71h241l-10 69H269v362h259V0H67v-69h128v-362H75l10-69h110v-81c7-116 92-174 208-174 52 0 93 17 130 40" id="ae"/><g id="k"><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,0,0)" xlink:href="#ab"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,18.666666666666664,0)" xlink:href="#U"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,37.33333333333333,0)" xlink:href="#ac"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,55.99999999999999,0)" xlink:href="#ad"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,74.66666666666666,0)" xlink:href="#ae"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,93.33333333333331,0)" xlink:href="#ae"/></g><g id="l"><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,0,0)" xlink:href="#X"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,18.666666666666664,0)" xlink:href="#Y"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,37.33333333333333,0)" xlink:href="#Z"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,55.99999999999999,0)" xlink:href="#aa"/></g><path fill="#303030" d="M271-395c26-77 110-132 213-101 20 6 42 16 65 29l-40 63c-24-14-55-27-85-27-84 0-128 60-153 125v237h171V0H51v-69h146v-361H60v-70h211v105" id="af"/><path fill="#303030" d="M366-67c50 0 97-14 133-32l27 63C476-11 424 5 353 5 179 5 64-87 64-253c0-189 164-282 368-247 25 4 50 15 75 26l-25 66c-37-15-79-27-126-27-123 0-214 62-214 182 0 126 98 186 224 186" id="ag"/><g id="m"><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,0,0)" xlink:href="#T"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,18.666666666666664,0)" xlink:href="#U"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,37.33333333333333,0)" xlink:href="#af"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,55.99999999999999,0)" xlink:href="#ae"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,74.66666666666666,0)" xlink:href="#Y"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,93.33333333333331,0)" xlink:href="#ag"/><use transform="matrix(0.031111111111111107,0,0,0.031111111111111107,111.99999999999997,0)" xlink:href="#aa"/></g><path fill="#303030" d="M543-477c0 220-188 278-411 259V0H56v-690c56-10 117-18 180-18 175 2 307 57 307 231zm-76 10c3-167-174-186-335-163v345c167 17 333-16 335-182" id="ah"/><path fill="#303030" d="M48-69h210v-611H58v-70h274v681h220V0H48v-69" id="ai"/><path fill="#303030" d="M551 5C425 2 301 18 264-74c-35-86-18-237-22-357H48l10-69h184v-97l74-18v115h227l-10 69H316c2 88-5 212 8 283 17 94 111 81 227 83V5" id="aj"/><path fill="#303030" d="M50-69h216v-361H50v-70h290v431h210V0H50v-69zm242-555c-35 0-65-30-65-65s30-65 65-65 65 30 65 65-30 65-65 65" id="ak"/><g id="n"><use transform="matrix(0.026888888888888882,0,0,0.026888888888888882,0,0)" xlink:href="#ah"/><use transform="matrix(0.026888888888888882,0,0,0.026888888888888882,16.13333333333333,0)" xlink:href="#aa"/><use transform="matrix(0.026888888888888882,0,0,0.026888888888888882,32.26666666666666,0)" xlink:href="#af"/><use transform="matrix(0.026888888888888882,0,0,0.026888888888888882,48.39999999999999,0)" xlink:href="#ag"/><use transform="matrix(0.026888888888888882,0,0,0.026888888888888882,64.53333333333332,0)" xlink:href="#ad"/><use transform="matrix(0.026888888888888882,0,0,0.026888888888888882,80.66666666666664,0)" xlink:href="#ai"/><use transform="matrix(0.026888888888888882,0,0,0.026888888888888882,96.79999999999997,0)" xlink:href="#Y"/><use transform="matrix(0.026888888888888882,0,0,0.026888888888888882,112.93333333333331,0)" xlink:href="#aj"/><use transform="matrix(0.026888888888888882,0,0,0.026888888888888882,129.06666666666663,0)" xlink:href="#ak"/><use transform="matrix(0.026888888888888882,0,0,0.026888888888888882,145.19999999999996,0)" xlink:href="#ad"/><use transform="matrix(0.026888888888888882,0,0,0.026888888888888882,161.3333333333333,0)" xlink:href="#ac"/></g><path fill="#303030" d="M62-700h474v71H342v558h204V0H53v-71h213v-558H62v-71" id="al"/><g id="o"><use transform="matrix(0.026888888888888882,0,0,0.026888888888888882,0,0)" xlink:href="#al"/><use transform="matrix(0.026888888888888882,0,0,0.026888888888888882,16.13333333333333,0)" xlink:href="#ac"/><use transform="matrix(0.026888888888888882,0,0,0.026888888888888882,32.26666666666666,0)" xlink:href="#ae"/><use transform="matrix(0.026888888888888882,0,0,0.026888888888888882,48.39999999999999,0)" xlink:href="#ak"/><use transform="matrix(0.026888888888888882,0,0,0.026888888888888882,64.53333333333332,0)" xlink:href="#ai"/><use transform="matrix(0.026888888888888882,0,0,0.026888888888888882,80.66666666666664,0)" xlink:href="#aj"/><use transform="matrix(0.026888888888888882,0,0,0.026888888888888882,96.79999999999997,0)" xlink:href="#af"/><use transform="matrix(0.026888888888888882,0,0,0.026888888888888882,112.93333333333331,0)" xlink:href="#Y"/><use transform="matrix(0.026888888888888882,0,0,0.026888888888888882,129.06666666666663,0)" xlink:href="#aj"/><use transform="matrix(0.026888888888888882,0,0,0.026888888888888882,145.19999999999996,0)" xlink:href="#ak"/><use transform="matrix(0.026888888888888882,0,0,0.026888888888888882,161.3333333333333,0)" xlink:href="#ad"/><use transform="matrix(0.026888888888888882,0,0,0.026888888888888882,177.4666666666666,0)" xlink:href="#ac"/></g></defs></g></svg>
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|