docs: link to Warp Academy
This commit is contained in:
260
README-LEGACY.md
260
README-LEGACY.md
@@ -1,260 +0,0 @@
|
|||||||
# RedStone SmartContracts SDK
|
|
||||||
|
|
||||||
RedStone SmartContracts SDK is the new, written from scratch, implementation of
|
|
||||||
the SmartWeave [Protocol](./docs/SMARTWEAVE_PROTOCOL.md).
|
|
||||||
|
|
||||||
It works in both web and Node.js environment (requires Node.js 16.5+).
|
|
||||||
|
|
||||||
It has been built with performance (e.g. caching at multiple layers, Arweave calls optimization)
|
|
||||||
and modularity (e.g. ability to use different types of caches, imported from external libraries) in mind.
|
|
||||||
|
|
||||||
We're already using the new SDK on production, both in our webapp and nodes.
|
|
||||||
However, if you'd like to use it in production as well, please contact us on [discord](https://discord.com/invite/PVxBZKFr46) to ensure a smooth transition and get help with testing.
|
|
||||||
|
|
||||||
To further improve contract state evaluation time, one can additionally use AWS CloudFront based Arweave cache described [here](https://github.com/redstone-finance/redstone-smartweave-contracts/blob/main/docs/CACHE.md).
|
|
||||||
|
|
||||||
- [Architecture](#architecture)
|
|
||||||
- [State evaluation diagram](#state-evaluation-diagram)
|
|
||||||
- [Development](#development)
|
|
||||||
- [Installation](#installation)
|
|
||||||
- [Import](#import)
|
|
||||||
- [Using the RedStone Gateway](#using-the-redstone-gateway)
|
|
||||||
- [WASM](#wasm)
|
|
||||||
- [VM2](#vm2)
|
|
||||||
- [Performance - best practices](#performance---best-practices)
|
|
||||||
- [Examples](#examples)
|
|
||||||
- [Migration guide](#migration-guide)
|
|
||||||
- [Documentation](#documentation)
|
|
||||||
- [Missing features](#missing-features)
|
|
||||||
|
|
||||||
## Architecture
|
|
||||||
|
|
||||||
RedStone SmartContracts SDK consists of main 3 layers:
|
|
||||||
|
|
||||||
<img src="https://smartweave.redstone.finance/assets/img/illustrations/architecture.svg" height='50%' width='50%'>
|
|
||||||
|
|
||||||
1. The `Core Protocol` layer is the implementation of the original SmartWeave protocol and is responsible for communication with the SmartWeave smart contracts deployed on Arweave. It consists of 5 modules:
|
|
||||||
1. `Interactions Loader` - this module is responsible for loading from Arweave all the interaction transactions registered
|
|
||||||
for given contract.
|
|
||||||
2. `Interactions Sorter` - responsible for sorting the interactions according to the protocol specification. This is crucial operation for the deterministic contract state evaluation.
|
|
||||||
3. `Definition Loader` - this module loads all the data related to the given SmartWeave contract - its source code, initial state, etc.
|
|
||||||
4. `Executor Factory` - this module is responsible for creating "handles" to the SmartWeave contract. These handles are then used by the SDK to call SmartWeave contract methods.
|
|
||||||
5. `State Evaluator` - this module is responsible for evaluating SmartWeave contract state up to the requested block height.
|
|
||||||
2. The `Caching` layer - is build on top of the `Core Protocol` layer and allows caching results of each of the `Core Protocol` modules separately.
|
|
||||||
The main interfaces of this layer are the:
|
|
||||||
1. `SwCache` - simple key-value cache, useful for modules like `Definition Loader`
|
|
||||||
2. `BlockHeightSwCache` - a block height aware cache, crucial for modules like `Interactions Loader` and `State Evaluator`.
|
|
||||||
These interfaces - used in conjunction with cache-aware versions of the core modules (like `CacheableContractInteractionsLoader` or `CacheableStateEvaluator`)
|
|
||||||
allow to greatly improve performance and SmartWeave contract's state evaluation time - especially for contracts that heavily interact with other contracts.
|
|
||||||
3. The `Extensions` layer - includes everything that can be built on top of the core SDK - including Command Line Interface, Debugging tools, different logging implementations,
|
|
||||||
so called "dry-runs" (i.e. actions that allow to quickly verify the result of given contract interaction - without writing anything on Arweave).
|
|
||||||
|
|
||||||
This modular architecture has several advantages:
|
|
||||||
|
|
||||||
1. Each module can be separately tested and developed.
|
|
||||||
2. The SmartWeave client can be customized depending on user needs (e.g. different type of caches for web and node environment)
|
|
||||||
3. It makes it easier to add new features on top of the core protocol - without the risk of breaking the functionality of the core layer.
|
|
||||||
|
|
||||||
## State evaluation diagram
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
In order to perform contract state evaluation (at given block height), SDK performs certain operations.
|
|
||||||
The diagram above and description assume the most basic “mem-cached” SDK client.
|
|
||||||
|
|
||||||
1. Users who are interacting with the contract, call the “readState” method.
|
|
||||||
2. Interactions Loader and Contract Definition Loader modules are then called in parallel - to load all the data required for state evaluation. Both Interactions Loader and Contract Definition Loader first check its corresponding cache whether data is already loaded - and load from Arweave only the missing part.
|
|
||||||
3. With interactions and contract definition loaded - Executor Factory creates a handle to the SmartWeave contract main function (or loads it from its own cache)
|
|
||||||
4. With all the interactions and a contract handle - the State Evaluator evaluates the state from the lastly cached value - and returns the result to User.
|
|
||||||
|
|
||||||
## Development
|
|
||||||
|
|
||||||
PRs are welcome! :-) Also, feel free to submit [issues](https://github.com/redstone-finance/warp/issues) - with both bugs and feature proposals.
|
|
||||||
In case of creating a PR - please use [semantic commit messages](https://gist.github.com/joshbuchea/6f47e86d2510bce28f8e7f42ae84c716).
|
|
||||||
|
|
||||||
### Installation
|
|
||||||
|
|
||||||
SDK requires node.js version 16.5+.
|
|
||||||
|
|
||||||
#### Using npm
|
|
||||||
|
|
||||||
`npm install redstone-smartweave`
|
|
||||||
|
|
||||||
#### Using yarn
|
|
||||||
|
|
||||||
`yarn add redstone-smartweave`
|
|
||||||
|
|
||||||
### Import
|
|
||||||
|
|
||||||
You can import the full API or individual modules.
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
import * as SmartWeaveSdk from 'redstone-smartweave';
|
|
||||||
```
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
import { SmartWeave, Contract, ... } from 'redstone-smartweave'
|
|
||||||
```
|
|
||||||
|
|
||||||
The SDK is available in both the ESM and CJS format - to make it possible for web bundlers (like webpack) to effectively
|
|
||||||
perform tree-shaking.
|
|
||||||
|
|
||||||
#### Using web bundles
|
|
||||||
|
|
||||||
Bundle files are possible to use in web environment only. Use minified version for production. It is possible to use latest or specified version.
|
|
||||||
|
|
||||||
```html
|
|
||||||
<!-- Latest -->
|
|
||||||
<script src="https://unpkg.com/redstone-smartweave/bundles/web.bundle.js"></script>
|
|
||||||
|
|
||||||
<!-- Latest, minified-->
|
|
||||||
<script src="https://unpkg.com/redstone-smartweave/bundles/web.bundle.min.js"></script>
|
|
||||||
|
|
||||||
<!-- Specific version -->
|
|
||||||
<script src="https://unpkg.com/redstone-smartweave@0.4.41/bundles/web.bundle.js"></script>
|
|
||||||
|
|
||||||
<!-- Specific version, minified -->
|
|
||||||
<script src="https://unpkg.com/redstone-smartweave@0.4.41/bundles/web.bundle.min.js"></script>
|
|
||||||
```
|
|
||||||
|
|
||||||
All exports are stored under `rsdk` global variable.
|
|
||||||
|
|
||||||
```html
|
|
||||||
<script>
|
|
||||||
const smartweave = rsdk.SmartWeaveWebFactory.memCachedBased(arweave);
|
|
||||||
</script>
|
|
||||||
```
|
|
||||||
|
|
||||||
### Using the RedStone Gateway
|
|
||||||
|
|
||||||
#### SDK version >= `0.5.0`
|
|
||||||
|
|
||||||
From version `0.5.0`, the RedStone Gateway is the default gateway used by the SDK.
|
|
||||||
By default, the `{notCorrupted: true}` mode is used (as describe below).
|
|
||||||
If you want to use the Arweave gateway in version >= `0.5.0`:
|
|
||||||
|
|
||||||
```ts
|
|
||||||
const smartweave = SmartWeaveNodeFactory.memCachedBased(arweave).useArweaveGateway().build();
|
|
||||||
```
|
|
||||||
|
|
||||||
#### SDK version < `0.5.0`
|
|
||||||
|
|
||||||
In order to use the [Redstone Gateway](https://github.com/redstone-finance/redstone-sw-gateway) for loading the contract interactions,
|
|
||||||
configure the smartweave instance in the following way:
|
|
||||||
|
|
||||||
```ts
|
|
||||||
const smartweave = SmartWeaveNodeFactory.memCachedBased(arweave).useRedStoneGateway().build();
|
|
||||||
```
|
|
||||||
|
|
||||||
The gateway is currently available under [https://gateway.redstone.finance](https://gateway.redstone.finance) url.
|
|
||||||
Full API reference is available [here](https://github.com/redstone-finance/redstone-sw-gateway#http-api-reference).
|
|
||||||
|
|
||||||
Optionally - you can pass the second argument to the `useRedStoneGateway` method that will determine which transactions will be loaded:
|
|
||||||
|
|
||||||
1. no parameter - default mode, compatible with how the Arweave Gateway GQL endpoint works - returns
|
|
||||||
all the interactions. There is a risk of returning [corrupted transactions](https://github.com/redstone-finance/redstone-sw-gateway#corrupted-transactions).
|
|
||||||
2. `{confirmed: true}` - returns only confirmed transactions - the most safe mode, eg:
|
|
||||||
|
|
||||||
```ts
|
|
||||||
const smartweave = SmartWeaveNodeFactory.memCachedBased(arweave).useRedStoneGateway({ confirmed: true }).build();
|
|
||||||
```
|
|
||||||
|
|
||||||
3. `{notCorrupted: true}` - returns both confirmed and not yet verified interactions (i.e. the latest ones).
|
|
||||||
Not as safe as previous mode, but good if you want combine high level of safety with the most recent data.
|
|
||||||
|
|
||||||
```ts
|
|
||||||
const smartweave = SmartWeaveNodeFactory.memCachedBased(arweave).useRedStoneGateway({ notCorrupted: true }).build();
|
|
||||||
```
|
|
||||||
|
|
||||||
More examples can be found [here](https://github.com/redstone-finance/redstone-smartcontracts-examples/blob/main/src/redstone-gateway-example.ts).
|
|
||||||
|
|
||||||
### WASM
|
|
||||||
|
|
||||||
WASM provides proper sandboxing ensuring execution environment isolation which guarantees security to the contracts execution. As for now - **Assemblyscript**, **Rust** and **Go** languages are supported. WASM contracts templates containing example PST contract implementation within tools for compiling contracts to WASM, testing, deploying (locally, on testnet and mainnet) and writing interactions are available in a [dedicated repository](https://github.com/redstone-finance/redstone-smartcontracts-wasm-templates).
|
|
||||||
|
|
||||||
Using SDKs' methods works exactly the same as in case of a regular JS contract.
|
|
||||||
|
|
||||||
Additionally, it is possible to set gas limit for interaction execution in order to e.g. protect a contract against infinite loops. Defaults to `Number.MAX_SAFE_INTEGER` (2^53 - 1).
|
|
||||||
|
|
||||||
```js
|
|
||||||
contract = smartweave.contract(contractTxId).setEvaluationOptions({
|
|
||||||
gasLimit: 14000000
|
|
||||||
});
|
|
||||||
```
|
|
||||||
|
|
||||||
### VM2
|
|
||||||
|
|
||||||
It is possible to provide an isolated execution environment also in the JavaScript implementation thanks to [VM2](https://github.com/patriksimek/vm2) - a sandbox that can run untrusted code with whitelisted Node's built-in modules. It works only in a NodeJS environment and it enhances security at a (slight) cost of performance, so it should be used it for contracts one cannot trust.
|
|
||||||
|
|
||||||
In order to use VM2, set `useVM2` evaluation option to `true` (defaults to `false`).
|
|
||||||
|
|
||||||
```js
|
|
||||||
contract = smartweave.contract(contractTxId).setEvaluationOptions({
|
|
||||||
useVM2: true
|
|
||||||
});
|
|
||||||
```
|
|
||||||
|
|
||||||
### Internal writes
|
|
||||||
|
|
||||||
SmartWeave protocol currently natively does not support writes between contract - contracts can only read each others' state. This lack of interoperability is a big limitation for real-life applications - especially if you want to implement features like staking/vesting, disputes - or even a standard approve/transferFrom flow from ERC-20 tokens.
|
|
||||||
|
|
||||||
We proposed a new solution
|
|
||||||
|
|
||||||
### Performance - best practices
|
|
||||||
|
|
||||||
In order to get the best performance on production environment (or while performing benchmarks ;-)), please follow these simple rules:
|
|
||||||
|
|
||||||
1. Do NOT use the `TsLoggerFactory` - it is good for development, as it formats the logs nicely, but might slow down the state evaluation
|
|
||||||
by a factor of 2 or 3 (depending on the logging level).
|
|
||||||
2. Use `fatal` or `error` log level, e.g.:
|
|
||||||
|
|
||||||
```ts
|
|
||||||
// configure the logging first
|
|
||||||
LoggerFactory.INST.logLevel('fatal');
|
|
||||||
// or
|
|
||||||
LoggerFactory.INST.logLevel('error');
|
|
||||||
|
|
||||||
// then create an instance of smartweave sdk
|
|
||||||
const smartweave = SmartWeaveWebFactory.memCached(arweave);
|
|
||||||
```
|
|
||||||
|
|
||||||
Logging on `info` or `debug` level is good for development, but turning it on globally might slow down the evaluation by a factor of 2.
|
|
||||||
Keep in mind that you can fine tune the log level of each module separately. For example you can switch the `fatal` globally, but `debug`
|
|
||||||
for the `ArweaveGatewayInteractionsLoader` (in order to verify the load times from Arweave GQL endpoint). The names of the modules are derived from the
|
|
||||||
names of TypeScript classes, e.g.:
|
|
||||||
|
|
||||||
```ts
|
|
||||||
// configure the logging first
|
|
||||||
LoggerFactory.INST.logLevel('fatal');
|
|
||||||
LoggerFactory.INST.logLevel('debug', 'ArweaveGatewayInteractionsLoader');
|
|
||||||
|
|
||||||
// then create an instance of smartweave sdk
|
|
||||||
const smartweave = SmartWeaveWebFactory.memCached(arweave);
|
|
||||||
```
|
|
||||||
|
|
||||||
### Examples
|
|
||||||
|
|
||||||
Usage examples can be found in
|
|
||||||
a dedicated [repository](https://github.com/redstone-finance/redstone-smartcontracts-examples).
|
|
||||||
Please follow instructions in its README.md (and detail-ish comments in the examples files) to learn more.
|
|
||||||
There is also a separate repository with a web application [example](https://github.com/redstone-finance/redstone-smartcontracts-app).
|
|
||||||
|
|
||||||
We've also created a [tutorial](https://github.com/redstone-finance/smartweave-loot/blob/main/docs/LOOT_CONTRACT_TUTORIAL.md) that introduces to the process of writing your own SmartWeave contract from scratch
|
|
||||||
and describes how to interact with it using RedStone SmartContracts SDK.
|
|
||||||
|
|
||||||
### Migration Guide
|
|
||||||
|
|
||||||
If you're already using Arweave smartweave.js SDK and would like to smoothly migrate to RedStone SmartContracts SDK -
|
|
||||||
check out the [migration guide](https://github.com/redstone-finance/redstone-smartweave/blob/main/docs/MIGRATION_GUIDE.md).
|
|
||||||
|
|
||||||
### Documentation
|
|
||||||
|
|
||||||
TSDocs can be found [here](https://smartweave.docs.redstone.finance/).
|
|
||||||
|
|
||||||
### Missing features
|
|
||||||
|
|
||||||
Some features from the original Arweave's smartweave.js are not yet implemented. They will be either added soon to the core SDK, or as
|
|
||||||
a separate libraries, built on top of the SDK:
|
|
||||||
|
|
||||||
- CLI (though not sure if that is a necessary - even if, it should be
|
|
||||||
probably a separate lib built on top of the base SDK).
|
|
||||||
789
README.md
789
README.md
@@ -1,788 +1,5 @@
|
|||||||
# Warp SDK
|
# Warp Contracts SDK
|
||||||
|
|
||||||
> ⚠️ Following library has been renamed from **[redstone-smartweave](https://www.npmjs.com/package/redstone-smartweave)** to **warp-contracts** from version **1.0.0**! If you are using older version please read [README-LEGACY](https://github.com/warp-contracts/warp/blob/main/README-LEGACY.md).
|
Warp Contracts SDK is the implementation of the SmartWeave [Protocol](https://academy.warp.cc/docs/sdk/smartweave-protocol) - a smart contracts protocol on the Arweave blockchain.
|
||||||
|
|
||||||
Warp SDK is the implementation of the SmartWeave [Protocol](https://github.com/warp-contracts/warp/blob/main/docs/SMARTWEAVE_PROTOCOL.md).
|
Full documentation can be found in [Warp Academy](https://academy.warp.cc/docs/sdk/overview).
|
||||||
|
|
||||||
It works in both web and Node.js environment (requires Node.js 16.5+).
|
|
||||||
|
|
||||||
If you are interested in the main assumptions for Warp ecosystem as well as its key features go visit [our website](https://warp.cc).
|
|
||||||
|
|
||||||
⚠️ Do not use "Map" objects in the state of js/ts contracts - since maps by default are not serializable to JSON and won't be properly stored by the caching mechanism. Use "plain" objects instead.
|
|
||||||
[More info](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map#objects_vs._maps) - the "Serialization and parsing" row.
|
|
||||||
|
|
||||||
- [Development](#development)
|
|
||||||
- [Installation](#installation)
|
|
||||||
- [Using npm](#using-npm)
|
|
||||||
- [Using yarn](#using-yarn)
|
|
||||||
- [Import](#import)
|
|
||||||
- [WarpFactory](#warpfactory)
|
|
||||||
- [forLocal](#forlocal)
|
|
||||||
- [forTestnet](#fortestnet)
|
|
||||||
- [forMainnet](#formainnet)
|
|
||||||
- [custom](#custom)
|
|
||||||
- [WarpEnvironment](#warpenvironment)
|
|
||||||
- [Deployment](#deployment)
|
|
||||||
- [Contract methods](#contract-methods)
|
|
||||||
- [`connect`](#connect)
|
|
||||||
- [`setEvaluationOptions`](#setevaluationoptions)
|
|
||||||
- [`readState`](#readstate)
|
|
||||||
- [`viewState`](#viewstate)
|
|
||||||
- [`dryWrite`](#drywrite)
|
|
||||||
- [`writeInteraction`](#writeinteraction)
|
|
||||||
- [`evolve`](#evolve)
|
|
||||||
- [WASM](#wasm)
|
|
||||||
- [VM2](#vm2)
|
|
||||||
- [Internal writes](#internal-writes)
|
|
||||||
- [UnsafeClient](#unsafeclient)
|
|
||||||
- [Cache](#cache)
|
|
||||||
- [SmartWeave Global API](#smartweave-global-api)
|
|
||||||
- [CLI](#cli)
|
|
||||||
- [Examples](#examples)
|
|
||||||
- [Migrations](#migrations)
|
|
||||||
- [Old factories to WarpFactory](#old-factories-to-warpfactory)
|
|
||||||
- [Sqlite to LevelDB](#sqlite-to-leveldb)
|
|
||||||
- [Additional changes](#additional-changes)
|
|
||||||
- [Warp transaction lifecycle](#warp-transaction-lifecycle)
|
|
||||||
|
|
||||||
## Development
|
|
||||||
|
|
||||||
PRs are welcome! :-) Also, feel free to submit [issues](https://github.com/warp-contracts/warp/issues) - with both bugs and feature proposals.
|
|
||||||
In case of creating a PR - please use [semantic commit messages](https://gist.github.com/joshbuchea/6f47e86d2510bce28f8e7f42ae84c716).
|
|
||||||
|
|
||||||
### Installation
|
|
||||||
|
|
||||||
SDK requires node.js version 16.5+.
|
|
||||||
|
|
||||||
#### Using npm
|
|
||||||
|
|
||||||
`npm install warp-contracts`
|
|
||||||
|
|
||||||
#### Using yarn
|
|
||||||
|
|
||||||
`yarn add warp-contracts`
|
|
||||||
|
|
||||||
### Import
|
|
||||||
|
|
||||||
You can import the full API or individual modules.
|
|
||||||
|
|
||||||
The SDK is available in both the ESM and CJS format - to make it possible for web bundlers (like webpack) to effectively
|
|
||||||
perform tree-shaking.
|
|
||||||
|
|
||||||
**ESM**
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
import * as WarpSdk from 'warp-contracts';
|
|
||||||
```
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
import { Warp, Contract, ... } from 'warp-contracts'
|
|
||||||
```
|
|
||||||
|
|
||||||
**CJS**
|
|
||||||
|
|
||||||
```javascript
|
|
||||||
const Warp = require('warp-contracts');
|
|
||||||
```
|
|
||||||
|
|
||||||
```javascript
|
|
||||||
const { Warp, Contract, ... } = require('warp-contracts');
|
|
||||||
```
|
|
||||||
|
|
||||||
#### Using web bundles
|
|
||||||
|
|
||||||
Bundle files are possible to use in web environment only. Use minified version for production. It is possible to use latest or specified version.
|
|
||||||
|
|
||||||
```html
|
|
||||||
<!-- Latest -->
|
|
||||||
<script src="https://unpkg.com/warp-contracts/bundles/web.bundle.js"></script>
|
|
||||||
|
|
||||||
<!-- Latest, minified-->
|
|
||||||
<script src="https://unpkg.com/warp-contracts/bundles/web.bundle.min.js"></script>
|
|
||||||
|
|
||||||
<!-- Specific version -->
|
|
||||||
<script src="https://unpkg.com/warp-contracts@1.0.0/bundles/web.bundle.js"></script>
|
|
||||||
|
|
||||||
<!-- Specific version, minified -->
|
|
||||||
<script src="https://unpkg.com/warp-contracts@1.0.0/bundles/web.bundle.min.js"></script>
|
|
||||||
```
|
|
||||||
|
|
||||||
All exports are stored under `warp` global variable.
|
|
||||||
|
|
||||||
```html
|
|
||||||
<script>
|
|
||||||
const warp = warp.WarpFactory.warpGw(arweave);
|
|
||||||
</script>
|
|
||||||
```
|
|
||||||
|
|
||||||
### WarpFactory
|
|
||||||
|
|
||||||
To properly initialize Warp you can use one of three methods available in WarpFactory class which simplifies the process of creating Warp.
|
|
||||||
|
|
||||||
#### forLocal
|
|
||||||
|
|
||||||
Creates a Warp instance suitable for testing in a local environment (e.g. with a use of a ArLocal instance).
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
warp = WarpFactory.forLocal();
|
|
||||||
```
|
|
||||||
|
|
||||||
Default parameters (each of them can be adjusted to your needs):
|
|
||||||
|
|
||||||
1. `port` - set to `1984`
|
|
||||||
2. `arweave` - Arweave initialized with `host` set to `localhost`, `port` set to default `port` from p. 1 and `protocol` set to `http`
|
|
||||||
3. `cacheOptions` - optional cache options parameter, by default `inMemory` cache is set to `true`
|
|
||||||
|
|
||||||
#### forTestnet
|
|
||||||
|
|
||||||
Creates a Warp instance suitable for testing with [Warp testnet](https://testnet.redstone.tools/).
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
warp = WarpFactory.forTestnet();
|
|
||||||
```
|
|
||||||
|
|
||||||
Default parameters (each of them can be adjusted to your needs):
|
|
||||||
|
|
||||||
1. `arweave` - Arweave initialized with `host` set to `testnet.redstone.tools`, `port` set to `443` and `protocol` set to `https`
|
|
||||||
2. `cacheOptions` - optional cache options parameter, by default `inMemory` cache is set to `false`
|
|
||||||
|
|
||||||
#### forMainnet
|
|
||||||
|
|
||||||
Creates a Warp instance suitable for use with mainnet.
|
|
||||||
By default, the [Warp gateway](https://github.com/warp-contracts/gateway#warp-gateway) is being used for:
|
|
||||||
|
|
||||||
1. deploying contracts
|
|
||||||
2. writing new transactions through Warp Sequencer
|
|
||||||
3. loading contract interactions
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
warp = WarpFactory.forMainnet();
|
|
||||||
```
|
|
||||||
|
|
||||||
Default parameters (each of them can be adjusted to your needs):
|
|
||||||
|
|
||||||
1. `cacheOptions` - optional cache options parameter, by default `inMemory` cache is set to `false`
|
|
||||||
2. `useArweaveGw` - defaults to `false`, if set to `true` - `arweave.net` gateway is used for deploying contracts, writing and loading interactions
|
|
||||||
3. `arweave` - Arweave initialized with `host` set to `arweave.net`, `port` set to `443` and `protocol` set to `https`
|
|
||||||
|
|
||||||
#### custom
|
|
||||||
|
|
||||||
Allows to fully customize `Warp` instance.
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
warp = WarpFactory.custom(
|
|
||||||
arweave,
|
|
||||||
{
|
|
||||||
...defaultCacheOptions,
|
|
||||||
inMemory: true
|
|
||||||
},
|
|
||||||
'testnet'
|
|
||||||
)
|
|
||||||
.useArweaveGateway()
|
|
||||||
.setInteractionsLoader(loader)
|
|
||||||
.build();
|
|
||||||
```
|
|
||||||
|
|
||||||
No default parameters are provided, these are the parameters that you can adjust to your needs:
|
|
||||||
|
|
||||||
1. `arweave` - initializes Arweave
|
|
||||||
2. `cacheOptions` - optional cache options parameter
|
|
||||||
3. `environment` - environment in which Warp will be initialized
|
|
||||||
|
|
||||||
`custom` method returns preconfigured instance of `Warp` - `WarpBuilder` which can be customized, the configuration is finished with `build` method.
|
|
||||||
|
|
||||||
#### WarpEnvironment
|
|
||||||
|
|
||||||
`WarpEnvironment` is a helper type which can be used in scripts etc. to determine in which environment Warp has been initialized.
|
|
||||||
|
|
||||||
Possible options:
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
'local' | 'testnet' | 'mainnet' | 'custom';
|
|
||||||
```
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
if (warp.environment == 'mainnet') {
|
|
||||||
...
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Deployment
|
|
||||||
|
|
||||||
#### deploy
|
|
||||||
|
|
||||||
Deploys contract to Arweave. By default, deployment transaction is bundled and posted on Arweave using Warp Sequencer. If you want to deploy your contract directly to Arweave - disable bundling by setting `disableBundling` to `true`.
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
async function deploy(contractData: ContractData, disableBundling?: boolean): Promise<ContractDeploy>;
|
|
||||||
```
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>Example</summary>
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
const { contractTxId, srcTxId } = await warp.deploy({
|
|
||||||
wallet,
|
|
||||||
initState: initialState,
|
|
||||||
data: { 'Content-Type': 'text/html', body: '<h1>HELLO WORLD</h1>' },
|
|
||||||
src: contractSrc,
|
|
||||||
tags
|
|
||||||
});
|
|
||||||
```
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
#### deployFromSourceTx
|
|
||||||
|
|
||||||
Deploys contract from source transaction. By default deployment transaction is bundled and posted on Arweave using Warp Sequencer. If you want to deploy your contract directly to Arweave - disable bundling by setting `disableBundling` to `true`.
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
async function deployFromSourceTx(
|
|
||||||
contractData: FromSrcTxContractData,
|
|
||||||
disableBundling?: boolean
|
|
||||||
): Promise<ContractDeploy>;
|
|
||||||
```
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>Example</summary>
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
const { contractTxId, srcTxId } = await warp.deployFromSourceTx({
|
|
||||||
wallet,
|
|
||||||
initState: initialState,
|
|
||||||
srcTxId: 'SRC_TX_ID'
|
|
||||||
});
|
|
||||||
```
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
#### deployBundled
|
|
||||||
|
|
||||||
Uses Warp Gateway's endpoint to upload raw data item to Bundlr and index it.
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>Example</summary>
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
const { contractTxId } = await warp.deployBundled(rawDataItem);
|
|
||||||
```
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
#### register
|
|
||||||
|
|
||||||
Uses Warp Gateway's endpoint to index a contract which has already been uploaded to Bundlr.
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>Example</summary>
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
const { contractTxId } = await warp.register(bundlrId, bundlrNode);
|
|
||||||
```
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
### Contract methods
|
|
||||||
|
|
||||||
#### `connect`
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
connect(signer: ArWallet | SigningFunction): Contract<State>;
|
|
||||||
```
|
|
||||||
|
|
||||||
Allows to connect wallet to a contract. Connecting a wallet MAY be done before "viewState" (depending on contract implementation, ie. whether called contract's function required "caller" info) Connecting a wallet MUST be done before "writeInteraction".
|
|
||||||
|
|
||||||
- `signer` - JWK object with private key, 'use_wallet' string or custom signing function.
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>Example</summary>
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
const contract = warp.contract('YOUR_CONTRACT_TX_ID').connect(jwk);
|
|
||||||
```
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
#### `setEvaluationOptions`
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
function setEvaluationOptions(options: Partial<EvaluationOptions>): Contract<State>;
|
|
||||||
```
|
|
||||||
|
|
||||||
Allows to set [EvaluationOptions](https://github.com/warp-contracts/warp/blob/main/src/core/modules/StateEvaluator.ts#L98) that will overwrite current configuration.
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>Example</summary>
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
const contract = warp.contract('YOUR_CONTRACT_TX_ID').setEvaluationOptions({
|
|
||||||
waitForConfirmation: true,
|
|
||||||
ignoreExceptions: false
|
|
||||||
});
|
|
||||||
```
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
#### `readState`
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
import { SortKeyCacheResult } from './SortKeyCache';
|
|
||||||
|
|
||||||
async function readState(
|
|
||||||
sortKeyOrBlockHeight?: string | number,
|
|
||||||
currentTx?: { contractTxId: string; interactionTxId: string }[]
|
|
||||||
): Promise<SortKeyCacheResult<EvalStateResult<State>>>;
|
|
||||||
```
|
|
||||||
|
|
||||||
Returns state of the contract at required blockHeight or sortKey. Similar to the `readContract` from the version 1.
|
|
||||||
|
|
||||||
- `sortKeyOrBlockHeight` - either a sortKey or block height at which the contract should be read
|
|
||||||
- `currentTx` - if specified, will be used as a current transaction
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>Example</summary>
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
const { sortKey, cachedValue } = await contract.readState();
|
|
||||||
```
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
#### `viewState`
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
async function viewState<Input, View>(
|
|
||||||
input: Input,
|
|
||||||
blockHeight?: number,
|
|
||||||
tags?: Tags,
|
|
||||||
transfer?: ArTransfer
|
|
||||||
): Promise<InteractionResult<State, View>>;
|
|
||||||
```
|
|
||||||
|
|
||||||
Returns the "view" of the state, computed by the SWC - ie. object that is a derivative of a current state and some specific smart contract business logic. Similar to the `interactRead` from the current SDK version.
|
|
||||||
|
|
||||||
- `input` the interaction input
|
|
||||||
- `blockHeight` if specified the contract will be replayed only to this block height
|
|
||||||
- `tags` an array of tags with name/value as objects
|
|
||||||
- `transfer` target and winstonQty for transfer
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>Example</summary>
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
const { result } = await contract.viewState<any, any>({
|
|
||||||
function: "NAME_OF_YOUR_FUNCTION",
|
|
||||||
data: { ... }
|
|
||||||
});
|
|
||||||
```
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
#### `dryWrite`
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
async function dryWrite<Input>(
|
|
||||||
input: Input,
|
|
||||||
caller?: string,
|
|
||||||
tags?: Tags,
|
|
||||||
transfer?: ArTransfer
|
|
||||||
): Promise<InteractionResult<State, unknown>>;
|
|
||||||
```
|
|
||||||
|
|
||||||
A dry-write operation on contract. It first loads the contract's state and then creates a "dummy" transaction and applies the given Input on top of the current contract's state.
|
|
||||||
|
|
||||||
- `input` - input to be applied on the current contract's state
|
|
||||||
- `tags` - additional tags to be added to interaction transaction
|
|
||||||
- `transfer` - additional transfer data to be associated with the "dummy" transaction
|
|
||||||
- `caller` - an option to override the caller - if available, this value will overwrite the caller evaluated from the wallet connected to this contract.
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>Example</summary>
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
const result = await contract.dryWrite({
|
|
||||||
function: "NAME_OF_YOUR_FUNCTION",
|
|
||||||
data: { ... }
|
|
||||||
});
|
|
||||||
```
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
#### `writeInteraction`
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
async function writeInteraction<Input = unknown>(
|
|
||||||
input: Input,
|
|
||||||
options?: WriteInteractionOptions
|
|
||||||
): Promise<WriteInteractionResponse | null>;
|
|
||||||
```
|
|
||||||
|
|
||||||
Writes a new "interaction" transaction - i.e. such transaction that stores input for the contract.
|
|
||||||
|
|
||||||
- `input` the interaction input
|
|
||||||
- `options` - an object with some custom options (see [WriteInteractionOptions](https://github.com/warp-contracts/warp/blob/main/src/contract/Contract.ts#L49))
|
|
||||||
|
|
||||||
By default write interaction transactions are bundled and posted on Arweave using Warp Sequencer. If you want to post transactions directly to Arweave - disable bundling by setting `options.disableBundling` to `true`.
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>Example</summary>
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
const result = await contract.writeInteraction({
|
|
||||||
function: "NAME_OF_YOUR_FUNCTION",
|
|
||||||
data: { ... }
|
|
||||||
});
|
|
||||||
```
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
#### `evolve`
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
async function evolve(newSrcTxId: string, options?: WriteInteractionOptions): Promise<WriteInteractionResponse | null>;
|
|
||||||
```
|
|
||||||
|
|
||||||
Allows to change contract's source code, without having to deploy a new contract. This method effectively evolves the contract to the source. This requires the `save` method to be called first and its transaction to be confirmed by the network.
|
|
||||||
|
|
||||||
- `newSrcTxId` - result of the `save` method call.
|
|
||||||
- `options` - an object with some custom options (see [WriteInteractionOptions](https://github.com/warp-contracts/warp/blob/main/src/contract/Contract.ts#L49))
|
|
||||||
|
|
||||||
By default evolve interaction transactions are bundled and posted on Arweave using Warp Sequencer. If you want to post transactions directly to Arweave - disable bundling by setting `options.disableBundling` to `true`.
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>Example</summary>
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
const result = await contract.evolve('srcTxId');
|
|
||||||
```
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
#### save
|
|
||||||
|
|
||||||
Allows to save contract source on Arweave. Currently, using bundler to save the source is not possible.
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
async function save(
|
|
||||||
contractSource: SourceData,
|
|
||||||
signer?: ArWallet | SigningFunction,
|
|
||||||
useBundler?: boolean
|
|
||||||
): Promise<string | null>;
|
|
||||||
```
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>Example</summary>
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
const newSrcTxId = await contract.save({ src: newSource });
|
|
||||||
```
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
### WASM
|
|
||||||
|
|
||||||
WASM provides proper sandboxing ensuring execution environment isolation which guarantees security to the contracts execution. As for now - **Assemblyscript**, **Rust** and **Go** languages are supported. WASM contracts templates containing example PST contract implementation within tools for compiling contracts to WASM, testing, deploying (locally, on testnet and mainnet) and writing interactions are available in a [dedicated repository](https://github.com/redstone-finance/redstone-smartcontracts-wasm-templates).
|
|
||||||
|
|
||||||
Using SDKs' methods works exactly the same as in case of a regular JS contract.
|
|
||||||
|
|
||||||
Additionally, it is possible to set gas limit for interaction execution in order to e.g. protect a contract against infinite loops. Defaults to `Number.MAX_SAFE_INTEGER` (2^53 - 1).
|
|
||||||
|
|
||||||
```js
|
|
||||||
contract = smartweave.contract(contractTxId).setEvaluationOptions({
|
|
||||||
gasLimit: 14000000
|
|
||||||
});
|
|
||||||
```
|
|
||||||
|
|
||||||
### VM2
|
|
||||||
|
|
||||||
It is possible to provide an isolated execution environment also in the JavaScript implementation thanks to [VM2](https://github.com/patriksimek/vm2) - a sandbox that can run untrusted code with whitelisted Node's built-in modules. It works only in a NodeJS environment and it enhances security at a (slight) cost of performance, so it should be used it for contracts one cannot trust.
|
|
||||||
|
|
||||||
In order to use VM2, set `useVM2` evaluation option to `true` (defaults to `false`).
|
|
||||||
|
|
||||||
```js
|
|
||||||
contract = warp.contract(contractTxId).setEvaluationOptions({
|
|
||||||
useVM2: true
|
|
||||||
});
|
|
||||||
```
|
|
||||||
|
|
||||||
### Internal writes
|
|
||||||
|
|
||||||
SmartWeave protocol currently natively does not support writes between contract - contracts can only read each others' state.
|
|
||||||
This lack of interoperability is a big limitation for real-life applications - especially if you want to implement
|
|
||||||
features like staking/vesting, disputes - or even a standard approve/transferFrom flow from ERC-20 tokens.
|
|
||||||
|
|
||||||
SmartWeave protocol has been extended in Warp by adding internal writes feature.
|
|
||||||
|
|
||||||
A new method has been added to SmartWeave global object. It allows to perform writes on other contracts.
|
|
||||||
|
|
||||||
```js
|
|
||||||
const result = await SmartWeave.contracts.write(contractTxId, { function: 'add' });
|
|
||||||
```
|
|
||||||
|
|
||||||
The `result` of the internal write contains the result type (`ok`, `error`, `exception`) and the most current state
|
|
||||||
of the callee contract (i.e. after performing a write).
|
|
||||||
If the function called by the `SmartWeave.contracts.write` throws an error, the parent transaction throws a `ContractError`
|
|
||||||
by default - so there is no need to manually check the result of the internal write.
|
|
||||||
|
|
||||||
In order for internal calls to work you need to set `evaluationOptions` to `true`:
|
|
||||||
|
|
||||||
```ts
|
|
||||||
const callingContract = smartweave
|
|
||||||
.contract<ExampleContractState>(calleeTxId)
|
|
||||||
.setEvaluationOptions({
|
|
||||||
internalWrites: true
|
|
||||||
})
|
|
||||||
.connect(wallet);
|
|
||||||
```
|
|
||||||
|
|
||||||
A more detailed description of internal writes feature is available [here](https://github.com/warp-contracts/warp/blob/main/docs/INTERNAL_WRITES.md).
|
|
||||||
A list of real life examples are available [here](https://github.com/warp-contracts/warp/blob/main/docs/INTERNAL_WRITES.md#examples).
|
|
||||||
|
|
||||||
You can also perform internal read to the contract (originally introduced by the protocol):
|
|
||||||
|
|
||||||
```
|
|
||||||
await SmartWeave.contracts.readContractState(action.input.contractId);
|
|
||||||
```
|
|
||||||
|
|
||||||
### unsafeClient
|
|
||||||
|
|
||||||
`unsafeClient` is available to use on `Smartweave` global object. It gives access to whole `Arweave` instance.
|
|
||||||
Example of usage:
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
const result = await SmartWeave.unsafeClient.transactions.getData('some_id);
|
|
||||||
```
|
|
||||||
|
|
||||||
However, we do not recommend using it as it can lead to non-deterministic results. Therefore, we do not support it by default in Warp. If you want to use it anyway, you need to explicitely set `EvaluationOptions.allowUnsafeClient` flag to `true`.
|
|
||||||
|
|
||||||
### Cache
|
|
||||||
|
|
||||||
Warp uses [LevelDB](https://github.com/google/leveldb) to cache the state. During the state evaluation, state is then evaluated only for the interactions that the state hasn't been evaluated yet. State is being cached per transaction and not per block height.
|
|
||||||
The reason behind that caching per block height is not enough if multiple interactions are at the same height and two contracts interact with each other.
|
|
||||||
The LevelDB is a lexicographically sorted key-value database - so it's ideal for this use case - as it simplifies cache look-ups (e.g. lastly stored value or value "lower-or-equal" than given sortKey). The cache for contracts are implemented as [sub-levels](https://www.npmjs.com/package/level#sublevel--dbsublevelname-options).
|
|
||||||
The default location for the node.js cache is `./cache/warp`.
|
|
||||||
|
|
||||||
In the browser environment Warp uses [IndexedDB](https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API) to cache the state - it's a low-level API for client-side storage.
|
|
||||||
The default name for the browser IndexedDB cache is warp-cache.
|
|
||||||
|
|
||||||
In order to reduce the cache size, the oldest entries are automatically pruned.
|
|
||||||
|
|
||||||
It is possible to use the in-memory cache instead by setting `cacheOptions.inMemory` to `true` while initializing Warp. `inMemory` cache is used by default in local environment.
|
|
||||||
|
|
||||||
You can also supply your own implementation of the `SortKeyCache` interface and use them as a state and contracts cache.
|
|
||||||
In order to use custom implementation call either `useStateCache` or `useContractCache` on `warp` instance.
|
|
||||||
An example - LMDB - implementation is available [here](https://github.com/warp-contracts/warp-contracts-lmdb#warp-contracts-lmdb-cache).
|
|
||||||
|
|
||||||
### SmartWeave Global API
|
|
||||||
|
|
||||||
All contracts have access to a global object `SmartWeave`. It provides access to additional API for getting further information or using utility and crypto functions from inside the contracts execution. It also allows to interact with other contracts and read other contracts states.
|
|
||||||
|
|
||||||
List of available options:
|
|
||||||
|
|
||||||
* transaction informations:
|
|
||||||
- SmartWeave.transaction.id
|
|
||||||
- SmartWeave.transaction.owner
|
|
||||||
- SmartWeave.transaction.tags
|
|
||||||
- SmartWeave.transaction.quantity
|
|
||||||
- SmartWeave.transaction.reward
|
|
||||||
|
|
||||||
* contract
|
|
||||||
- SmartWeave.contract.id
|
|
||||||
- SmartWeave.contract.owner
|
|
||||||
|
|
||||||
* contracts
|
|
||||||
- readContractState(contractId: string)
|
|
||||||
- viewContractState(contractId: string, input: any)
|
|
||||||
- write(contractId: string, input: any)
|
|
||||||
- refreshState()
|
|
||||||
|
|
||||||
* block informations:
|
|
||||||
- SmartWeave.block.height
|
|
||||||
- SmartWeave.block.timestamp
|
|
||||||
- SmartWeave.block.indep_hash
|
|
||||||
|
|
||||||
* Arweave utils
|
|
||||||
- SmartWeave.arweave.utils
|
|
||||||
- SmartWeave.arweave.crypto
|
|
||||||
- SmartWeave.arweave.wallets
|
|
||||||
- SmartWeave.arweave.ar
|
|
||||||
|
|
||||||
* potentially non-deterministic full Arweave client:
|
|
||||||
- SmartWeave.unsafeClient
|
|
||||||
|
|
||||||
* evaluation options
|
|
||||||
- SmartWeave.evaluationOptions
|
|
||||||
|
|
||||||
* VRF
|
|
||||||
- SmartWeave.vrf.data
|
|
||||||
- SmartWeave.vrf.value
|
|
||||||
- SmartWeave.vrf.randomInt(maxValue: number)
|
|
||||||
|
|
||||||
* other
|
|
||||||
- SmartWeave.useGas(gas: number)
|
|
||||||
- SmartWeave.getBalance(address: string, height?: number)
|
|
||||||
- SmartWeave.gasUsed
|
|
||||||
- SmartWeave.gasLimit
|
|
||||||
|
|
||||||
* extensions - additional `SmartWeave` options which can be for example injected through dedicated plugins (an example of such in [`warp-contracts-plugins` repository](https://github.com/warp-contracts/warp-contracts-plugins)).
|
|
||||||
|
|
||||||
### CLI
|
|
||||||
|
|
||||||
A dedicated CLI which eases the process of using main methods of the Warp SDK library has been created. Please refer to [`warp-contracts-cli` npm page](https://www.npmjs.com/package/warp-contracts-cli) for more details.
|
|
||||||
|
|
||||||
### Customize `fetch` options
|
|
||||||
|
|
||||||
It is possible to customize `fetch` options using dedicated plugin. In order to change `fetch` options one needs to create an implementation of [WarpPlugin](https://github.com/warp-contracts/warp/blob/main/src/core/WarpPlugin.ts) interface. `process` method will receive following properties:
|
|
||||||
|
|
||||||
```ts
|
|
||||||
interface FetchRequest {
|
|
||||||
input: RequestInfo | URL;
|
|
||||||
init: Partial<RequestInit>;
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
...and it should return updated `fetch` options (by returning updated `init` object). An example of such implementation in [src/tools/fetch-options-plugin.ts](https://github.com/warp-contracts/warp/tree/main/tools/fetch-options-plugin.ts).
|
|
||||||
|
|
||||||
In order to use this plugin, it needs to be attached while creating `Warp` instance, e.g.:
|
|
||||||
|
|
||||||
```ts
|
|
||||||
const warp = WarpFactory.forMainnet().use(new FetchOptionsPlugin());
|
|
||||||
```
|
|
||||||
|
|
||||||
### Migrations
|
|
||||||
|
|
||||||
#### old factories to WarpFactory
|
|
||||||
|
|
||||||
1. Mainnet
|
|
||||||
This is how you would intiialize Warp 'the old way':
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
const warp = WarpNodeFactory.memCachedBased(arweave).build();
|
|
||||||
```
|
|
||||||
|
|
||||||
or - for browser:
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
const warp = WarpNodeFactory.memCachedBased(arweave).build();
|
|
||||||
```
|
|
||||||
|
|
||||||
Now, you just need to initialize it like so:
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
const warp = WarpFactory.forMainnet();
|
|
||||||
```
|
|
||||||
|
|
||||||
If you want to use `Arweave` gateway instead of default `Warp` gateway, go with a custom configuration:
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
const warp = WarpFactory.custom(
|
|
||||||
arweave,
|
|
||||||
{
|
|
||||||
...defaultCacheOptions
|
|
||||||
},
|
|
||||||
'mainnet'
|
|
||||||
)
|
|
||||||
.useArweaveGateway()
|
|
||||||
.build();
|
|
||||||
```
|
|
||||||
|
|
||||||
2. RedStone public testnet
|
|
||||||
|
|
||||||
Previously, you would intialize Warp in testnet environment exactly like you would initialize Warp in mainnet, you would just need to set correct Arweave instance. Now the process is simplified:
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
warp = WarpFactory.forTestnet();
|
|
||||||
```
|
|
||||||
|
|
||||||
3. ArLocal
|
|
||||||
|
|
||||||
This is how you would intialize it previously:
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
warp = WarpNodeFactory.forTesting(arweave);
|
|
||||||
```
|
|
||||||
|
|
||||||
Now:
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
warp = WarpFactory.forLocal();
|
|
||||||
```
|
|
||||||
|
|
||||||
Remember that you are always allowed to initialize Warp depending on your needs by using `custom` factory method.
|
|
||||||
|
|
||||||
#### sqlite to levelDB
|
|
||||||
|
|
||||||
If you've been using Knex based cache you can now easily migrate your sqlite database to levelDB. Just use our [migration tool](https://github.com/warp-contracts/warp/blob/main/tools/migrate.ts), set correct path to your sqlite database in this line:
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
const result = await warp.migrationTool.migrateSqlite('./tools/sqlite/contracts-3008.sqlite');
|
|
||||||
```
|
|
||||||
|
|
||||||
...and run the script:
|
|
||||||
|
|
||||||
```powershell
|
|
||||||
yarn ts-node -r tsconfig-paths/register tools/migrate.ts
|
|
||||||
```
|
|
||||||
|
|
||||||
#### Additional changes
|
|
||||||
|
|
||||||
1. the type of the result of the readState has changed: https://github.com/warp-contracts/warp#readstate
|
|
||||||
|
|
||||||
2. the `bundleInteraction` method has been removed. The SDK now decides automatically how the transaction should be posted (based on the environment - i.e. whether the warp instance has been created for mainnet, testnet or local env).
|
|
||||||
|
|
||||||
3. the internalWrite, if the write itself fails, now throws the `ContractError` by default. There's no longer need to manually check the result of the write inside the contract code (and throw error manually if result.type != 'ok').
|
|
||||||
If you want to leave the check in the contract code - set the
|
|
||||||
|
|
||||||
```
|
|
||||||
.setEvaluationOptions({
|
|
||||||
throwOnInternalWriteError: true
|
|
||||||
});
|
|
||||||
```
|
|
||||||
|
|
||||||
4. The warp instance now contains info about the environment - https://github.com/warp-contracts/warp#warpenvironment . This might be useful for writing deployment scripts, etc.
|
|
||||||
5. if the `warp` instance was obtained via `WarpFactory.forLocal` (which should be used for local testing with ArLocal), then:
|
|
||||||
|
|
||||||
- you can use `warp.generateWallet()` for generating the wallet - it returns both the jwk and wallet address - [example](https://github.com/warp-contracts/warp/blob/main/src/__tests__/integration/internal-writes/internal-write-depth.test.ts#L89).
|
|
||||||
- you can use `warp.testing.mineBlock()` to manually mine ArLocal blocks
|
|
||||||
- the ArLocal blocks are mined automatically after calling `.writeInteraction`. This can be switched off by setting `evaluationOptions.mineArLocalBlocks` to `false` - [example](https://github.com/warp-contracts/warp/blob/main/src/__tests__/integration/internal-writes/internal-write-depth.test.ts#L118).
|
|
||||||
|
|
||||||
### Examples
|
|
||||||
|
|
||||||
We've created an [academy](https://redstone.academy/) that introduces to the process of writing your own SmartWeave contract from scratch and describes how to interact with it using Warp SDK.
|
|
||||||
|
|
||||||
The example usages with different web bundlers and in Node.js env are available [here](https://github.com/warp-contracts/bundlers).
|
|
||||||
|
|
||||||
A community package - [arweave-jest-fuzzing](https://github.com/Hansa-Network/arweave-jest-fuzzing/blob/master/README.md) has been released thanks to Hansa Network to help SmartWeave developers write fuzzy tests.
|
|
||||||
|
|
||||||
### Bundled interactions and bundled deployment
|
|
||||||
|
|
||||||
Warp gateway bundles transactions underneath. Please refer to [Bundled contract](https://github.com/warp-contracts/warp/blob/main/docs/BUNDLED_CONTRACT.md) and [Bundled interaction](https://github.com/warp-contracts/warp/blob/main/docs/BUNDLED_INTERACTION.md) docs to read the specification.
|
|
||||||
|
|
||||||
## Warp transaction lifecycle
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
Warp SDK is just part of the whole Warp smart contracts platform. It makes transactions processing and evaluation easy and effective.
|
|
||||||
|
|
||||||
1. Our Sequencer assigns order to SmartWeave interactions, taking into account sequencer’s timestamp, current Arweave network block height and is salted with sequencer’s key.
|
|
||||||
|
|
||||||
2. Interactions are then packed by Bundlr which guarantees transactions finality and data upload reliability.
|
|
||||||
The ability to directly process rich content
|
|
||||||
|
|
||||||
3. Transactions are stored on Arweave where they are available for querying.
|
|
||||||
|
|
||||||
4. The key component for the lazy-evaluation nature of SmartWeave protocol is fast and reliable interaction loading. Thanks to our gateway we guarantee loading transactions in seconds in a reliable way - it has built-in protection against forks and corrupted transactions. Our gateway enables fast queries and efficient filtering of interactions, which in effect greatly reduces state evaluation time.
|
|
||||||
|
|
||||||
5. Lastly, transactions can be evaluated either by our SDK or the evaluation can be delegated to a distribution execution network - a dedicated network of nodes (DEN). Multi-node executors network listens to incoming transactions and automatically update contract state.
|
|
||||||
@@ -1,196 +0,0 @@
|
|||||||
# Warp Bundled Contract Format
|
|
||||||
|
|
||||||
This document describes the core concepts behind the Warp bundled contract format.
|
|
||||||
|
|
||||||
## Introduction
|
|
||||||
|
|
||||||
The idea behind Warp Bundled Contract Format is to increase the Developer and User Experience.
|
|
||||||
Normally, when a contract is being deployed on Arweave, one have to wait some time:
|
|
||||||
|
|
||||||
1. for the contract's transactions mining (~2 minutes)
|
|
||||||
2. for the proper contract's transactions confirmation (assuming at least 10 blocks - ~20 minutes)
|
|
||||||
|
|
||||||
This in total gives ~20-25 minutes, which:
|
|
||||||
|
|
||||||
1. Breaks the DX, e.g. in case developer wants to quickly test the new contract version on Arweave mainnet
|
|
||||||
2. Breaks the UX, e.g. if given protocol deploys the contracts dynamically - e.g. via GUI (e.g. deploying
|
|
||||||
NFT collections, connecting deployed data with access rights, etc.)
|
|
||||||
|
|
||||||
Additionally, deploying contracts requires some amount of ARs in the wallet - which might further increase
|
|
||||||
the entry barrier, both for developers and given protocol users.
|
|
||||||
|
|
||||||
## Advantages of using Warp Gateway for contracts deployment
|
|
||||||
1. Contract is instantly available - as soon as proper response from Bundlr network is received.
|
|
||||||
2. Contract deployment does not require any ARs in the wallet - the deployment via Bundlr network is either
|
|
||||||
fully subsidized by the Arweave (for transactions <= 100KiB) or by the Warp (for transactions > 100KiB).
|
|
||||||
The max transaction size is currently 2MiB.
|
|
||||||
3. Even though the Bundlr transactions are created and signed by the Warp's wallet, it is still possible to identify
|
|
||||||
the original transaction owner/signer.
|
|
||||||
|
|
||||||
## How it works
|
|
||||||
|
|
||||||
Instead of posting the contract and contract source transactions directly to Arweave mainnet, both are sent to Warp
|
|
||||||
Gateway (`/gateway/contracts/deploy` endpoint) (this is the default behaviour of Warp's SDK `warp.createContract.deploy` function, when `forMainnet` instance is being used).
|
|
||||||
|
|
||||||
The Warp Gateway then:
|
|
||||||
|
|
||||||
1. Posts contract transactions (i.e. the base contract transaction and contract source transaction - or only the
|
|
||||||
contract transaction, if deploying from existing source) to the Bundlr network. Each contract transaction is sent as
|
|
||||||
a separate Bundlr transaction - as the `data` of the bundled transaction. The Bundlr transaction in this case might
|
|
||||||
be considered as a "carrier" of the original transaction. Additionally - some additional tags to the Bundlr transaction
|
|
||||||
are added.
|
|
||||||
|
|
||||||
```ts
|
|
||||||
const bTx = bundlr.createTransaction(JSON.stringify(transaction), {tags});
|
|
||||||
await bTx.sign();
|
|
||||||
const bundlrResponse = await bTx.upload();
|
|
||||||
```
|
|
||||||
|
|
||||||
Transaction which is sent to Bundlr, consists of:
|
|
||||||
|
|
||||||
| Transaction field | Value |
|
|
||||||
|---------------------------------------------|-------------------------------------------------------|
|
|
||||||
| `data` | The original transaction, JSON stringified |
|
|
||||||
| `tag['Uploader']` | `RedStone` |
|
|
||||||
| `tag['Uploader-Contract-Owner']` | The original owner/signar of the contract transaction |
|
|
||||||
| `tag['Uploader-Tx-Id']` | The id of the original transaction |
|
|
||||||
| ...all the tags of the original transaction | |
|
|
||||||
|
|
||||||
**NOTE** The original transaction is not modified in any way - this is to preserve the original
|
|
||||||
signature!
|
|
||||||
|
|
||||||
2. After receiving proper response and receipt from Bundlr, the Warp gateway indexes the contract
|
|
||||||
transactions data internally - to make them instantly available.
|
|
||||||
|
|
||||||
3. Finally, the Warp gateway returns an object as a `response` - that consists of fields:
|
|
||||||
- `response.contractId` - the original contract tx id
|
|
||||||
- `response.bundleContractId` - the Bundlr contract tx id
|
|
||||||
- `response.srcTxId` - the original contract source transaction id
|
|
||||||
- `response.bundleSrcId` - the Bundlr source tx id.
|
|
||||||
|
|
||||||
## Resulting transaction structure
|
|
||||||
|
|
||||||
This is how the example contract transaction `hs9JlOG0LMkTa4VdJ-nf6I46kLbWbCpvZczdl3N-ASQ` looks like on [ViewBlock](https://viewblock.io/arweave/tx/Yy9WoplIYqy03O7_ovUr4TrvwryxHEneuNep7ATDftI).
|
|
||||||
|
|
||||||
**NOTE** Keep in mind that it takes some time before Bundlr posts given bundle to Arweave and ViewBlock actually index such bundle and its contents - usually it may take 1-2 days.
|
|
||||||

|
|
||||||
|
|
||||||
1. The `Yy9WoplIYqy03O7_ovUr4TrvwryxHEneuNep7ATDftI` is the id of the bundled item - assigned by Bundlr during data item creation - according to ANS-104 [specs](https://github.com/ArweaveTeam/arweave-standards/blob/master/ans/ANS-104.md#2-dataitem-signature-and-id).
|
|
||||||
2. The `udJBlYAXNhFnjeb1YABQzqqVog3VpcauonBbO1MSwvc` is the id of the Arweave bundle transaction - that contains a data item from point 1, stored in `data` field - according to ANS-104 [specs](https://github.com/ArweaveTeam/arweave-standards/blob/master/ans/ANS-104.md#12-transaction-body-format)
|
|
||||||
**NOTE** This is the only "real" Arweave transaction
|
|
||||||
3. The `hs9JlOG0LMkTa4VdJ-nf6I46kLbWbCpvZczdl3N-ASQ` is the original transaction id - as it was created and signed by the original protocol user.
|
|
||||||
The transaction with this id is effectively a content of the bundle item (point 1.) - i.e. is stored in `dataItem.data` [field](https://github.com/ArweaveTeam/arweave-standards/blob/master/ans/ANS-104.md#13-dataitem-format)
|
|
||||||
|
|
||||||
**NOTE** Only the last transaction (from point 3.) is effectively important from the SmartWeave protocol perspective - it is the transaction that the protocol 'sees' when it loads the contract.
|
|
||||||
|
|
||||||
|
|
||||||
## Contract transaction retrieval via Arweave gateway
|
|
||||||
|
|
||||||
1. Directly via `response.bundleContractId` - e.g. https://arweave.net/Yy9WoplIYqy03O7_ovUr4TrvwryxHEneuNep7ATDftI
|
|
||||||
**NOTE 1** The response object contains the full, original tx - including its data and id (`hs9JlOG0LMkTa4VdJ-nf6I46kLbWbCpvZczdl3N-ASQ` in this case).
|
|
||||||
**NOTE 2** The `data` field contains the original contract's data. Usually it is an initial contract state or an asset - for AtomicNFT contracts.
|
|
||||||
**NOTE 3** The `Yy9WoplIYqy03O7_ovUr4TrvwryxHEneuNep7ATDftI` is the Bundlr's tx id - assigned by
|
|
||||||
the `bundlr.createTransaction()`.
|
|
||||||
It is part of `ANS-104` bundle, that is uploaded to Arweave by Bundlr network - with the original tx as a `data-item`.
|
|
||||||
|
|
||||||
2. Using the GQL endpoint, using the original contract tx id (`hs9JlOG0LMkTa4VdJ-nf6I46kLbWbCpvZczdl3N-ASQ` in this case) and `Uploader-Tx-Id` tag, e.g.
|
|
||||||
|
|
||||||
```qql
|
|
||||||
query {
|
|
||||||
transactions(
|
|
||||||
tags: [{
|
|
||||||
name: "Uploader-Tx-Id",
|
|
||||||
values: ["hs9JlOG0LMkTa4VdJ-nf6I46kLbWbCpvZczdl3N-ASQ"]
|
|
||||||
}]
|
|
||||||
) {
|
|
||||||
edges {
|
|
||||||
node {
|
|
||||||
id
|
|
||||||
tags {
|
|
||||||
name
|
|
||||||
value
|
|
||||||
}
|
|
||||||
block {
|
|
||||||
height
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
Example Response:
|
|
||||||
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"transactions": {
|
|
||||||
"edges": [
|
|
||||||
{
|
|
||||||
"node": {
|
|
||||||
"id": "Yy9WoplIYqy03O7_ovUr4TrvwryxHEneuNep7ATDftI",
|
|
||||||
"tags": [
|
|
||||||
{
|
|
||||||
"name": "Uploader",
|
|
||||||
"value": "RedStone"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Uploader-Contract-Owner",
|
|
||||||
"value": "33F0QHcb22W7LwWR1iRC8Az1ntZG09XQ03YWuw2ABqA"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Uploader-Tx-Id",
|
|
||||||
"value": "hs9JlOG0LMkTa4VdJ-nf6I46kLbWbCpvZczdl3N-ASQ"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Uploader-Bundler",
|
|
||||||
"value": "https://node2.bundlr.network"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "App-Name",
|
|
||||||
"value": "SmartWeaveContract"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "App-Version",
|
|
||||||
"value": "0.3.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Contract-Src",
|
|
||||||
"value": "cK9mwwuR2CR72ubcI34ClssjQUL5G7cZEd649CVPJWw"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "SDK",
|
|
||||||
"value": "RedStone"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Content-Type",
|
|
||||||
"value": "application/json"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"block": {
|
|
||||||
"height": 1013105
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
**NOTE** The `transactions.edges.node.id` is an id of the Bundlr transaction - the 'carrier' of the original transaction.
|
|
||||||
|
|
||||||
## Contract transaction retrieval via Warp gateway
|
|
||||||
The Warp `/gateway/contract` endpoint allows to retrieve the Bundle contracts data directly via the original tx id.
|
|
||||||
This endpoint is used by default for loading contracts data by the Warp SDK - when `forMainnet` instance is being used.
|
|
||||||
|
|
||||||
|
|
||||||
## Contract transaction data retrieval
|
|
||||||
1. Using the Warp gateway - `gateway/contract-data/:original-tx-id`.
|
|
||||||
E.g.: https://gateway.redstone.finance/gateway/contract-data/hs9JlOG0LMkTa4VdJ-nf6I46kLbWbCpvZczdl3N-ASQ.
|
|
||||||
This endpoint underneath maps the original tx id to the Bundlr tx id.
|
|
||||||
Having the original Bundlr tx id - it loads the original tx data either from arweave.net cache - or fallbacks to the Bundlr node.
|
|
||||||
The data is then decoded using a dedicated function - https://github.com/warp-contracts/gateway/blob/main/src/gateway/router/routes/contractDataRoute.ts#L57
|
|
||||||
2. Using Arweave gateway -
|
|
||||||
1. get the Bundlr tx id - as shown in the GQL example
|
|
||||||
2. load the tx data using the `arweave.net/{txId}` endpoint
|
|
||||||
3. decode the response `data` field using the https://github.com/warp-contracts/gateway/blob/main/src/gateway/router/routes/contractDataRoute.ts#L57
|
|
||||||
algorithm.
|
|
||||||
@@ -1,179 +0,0 @@
|
|||||||
# Warp Sequencer
|
|
||||||
|
|
||||||
This document describes the core concepts behind the Warp Sequencer.
|
|
||||||
|
|
||||||
## Introduction
|
|
||||||
|
|
||||||
The idea behind Warp Sequencer is to increase the Developer and User Experience.
|
|
||||||
Normally, when an interaction with a contract is being sent to Arweave, one have to wait some time:
|
|
||||||
|
|
||||||
1. for the transaction mining (~2 minutes)
|
|
||||||
2. for the proper transaction confirmation (assuming at least 10 blocks - ~20 minutes).
|
|
||||||
|
|
||||||
This in total gives ~20-25 minutes, which:
|
|
||||||
|
|
||||||
1. Breaks the DX, e.g. in case developer wants to quickly test the contract's functions on mainnet
|
|
||||||
2. Breaks the UX, e.g. - each user of a given dApp/protocol must wait really long to see the effect
|
|
||||||
of an interaction with a contract. This makes the applications effectively unusable - especially for users coming
|
|
||||||
from the web2.
|
|
||||||
|
|
||||||
Additionally, any interaction with contract requires some amount of ARs in the wallet - which might further increase
|
|
||||||
the entry barrier, both for developers and given protocol/dApp users.
|
|
||||||
|
|
||||||
**NOTE** Waiting for a proper confirmation
|
|
||||||
is especially important (though often overlooked) in case of a smart contract interactions.
|
|
||||||
Imagine a cache, that is evaluating the contracts state for all the interactions returned at any given time by the
|
|
||||||
default Arweave (arweave.net) gateway.
|
|
||||||
If the cache does not wait for the proper transactions' confirmation, it may happen
|
|
||||||
that it will store a contract state evaluated from the transactions from a forked blocks (or - even worse - from
|
|
||||||
transactions that were not included in any block).
|
|
||||||
|
|
||||||
## Advantages of using Warp Sequencer for interactions posting
|
|
||||||
|
|
||||||
1. Interaction is near-instantly available - as soon as proper response from Bundlr network is received.
|
|
||||||
2. Posting interactions with contract does not require any ARs - the deployment via Bundlr network is either
|
|
||||||
fully subsidized by the Arweave (for transactions <= 100KiB) or by the Warp (for transactions > 100KiB).
|
|
||||||
The max transaction size is currently 2MiB.
|
|
||||||
Most of the contracts' interactions have the "default" 4B size.
|
|
||||||
3. Even though the Bundlr transactions are created and signed by the Warp's wallet, it is still possible to identify
|
|
||||||
the original transaction owner/signer.
|
|
||||||
**NOTE** This is especially important in case of smart contracts - as contracts' business
|
|
||||||
logic very often is dependent on *who* (i.e. what wallet address) is interacting with the contract.
|
|
||||||
4. The option to use VRF in contracts that require verifiable randomness.
|
|
||||||
5. Even if the Warp infra will go down, all the contract interactions can be still retrieved directly from Arweave,
|
|
||||||
using
|
|
||||||
a simple GQL query.
|
|
||||||
|
|
||||||
## How it works
|
|
||||||
|
|
||||||
Instead of posting the interaction transactions directly to Arweave mainnet, they are sent to Warp Sequencer
|
|
||||||
(`/gateway/sequencer/register` endpoint) (this is the default behaviour of Warp's SDK `contract.writeInteraction`
|
|
||||||
function, when `forMainnet` instance is being used).
|
|
||||||
|
|
||||||
The Warp Sequencer then:
|
|
||||||
|
|
||||||
#### 1. Generates a sort key
|
|
||||||
|
|
||||||
A sort key is generated from:
|
|
||||||
|
|
||||||
1. current mainnet network height
|
|
||||||
2. current sequence value
|
|
||||||
3. original transaction id
|
|
||||||
4. current mainnet block hash
|
|
||||||
|
|
||||||
In the original SmartWeave protocol specification, a *sort key* is defined
|
|
||||||
as a `[ block_height,sha256(transactionId + blockHash) ]`, where:
|
|
||||||
|
|
||||||
1. `block_height` - current network height, l-padded with `0` to 12 chars, e.g. for block height `1015556`, the
|
|
||||||
result is `000001015556`
|
|
||||||
2. `sha256(transactionId + blockHash)` - a `sha256` hash of the concatenated buffers of the transaction id and block
|
|
||||||
hash,
|
|
||||||
e.g. for txId `UR_35HORbjjZ_NnUqinkZuWkcNB1-gBST3Rezt5JrDs` and block
|
|
||||||
hash `ixWCxRN36DjVUxQRa68xIeoZLfvLDTtX78e0ae8RAAJjOPpDBuVKVaEKYOpq7bLS`,
|
|
||||||
the result is `44edd70f2018924f22a878a558a8f2d5cae8bc1f718d567df43bf52b6384d260`.
|
|
||||||
|
|
||||||
The complete *sort key* for the above values would
|
|
||||||
be: `000001015556,44edd70f2018924f22a878a558a8f2d5cae8bc1f718d567df43bf52b6384d260`.
|
|
||||||
|
|
||||||
The generated sort keys are then used by the SmartWeave protocol to lexicographically sort the transactions.
|
|
||||||
|
|
||||||
The Warp Sequencer extends this default mechanism by the current sequence value.
|
|
||||||
The formula for the *sort key* is extended to:
|
|
||||||
`[ block_height,sequence_value,sha256(transactionId + blockHash) ]`
|
|
||||||
|
|
||||||
This sequence value can be obtained from the Sequencer's node timestamp, database or other sources.
|
|
||||||
In its current implementation - a Sequencer node timestamp value is being used.
|
|
||||||
This in effect gives a fair transactions ordering - the transactions will have the sequence assigned in order in which
|
|
||||||
they are processed by the Sequencer.
|
|
||||||
|
|
||||||
Assuming transaction id `La_NpAFAWxGj-VIiLfg7NbBfox0RZ8uuEJSOOZykd48`, block
|
|
||||||
hash `-o88tFYsMG9RXSGcNXX5sVDuSV5uHy7zuFRj6vYo91e3mXpmng6qw322Ip0-EguA`,
|
|
||||||
block height `1015560` and current Sequencer value `1663069424541`, the generated *sort key* would
|
|
||||||
be `000001015560,1663069424541,a21ac8a60326ba8c2bb8caa05cff3334a22e9960ef55de0b5392caa30b484d0a`
|
|
||||||
|
|
||||||
**NOTE** All the transactions sent to Arweave directly, have the sequence value assigned to `0000000000000000`.
|
|
||||||
This effectively means that if transactions to a given contract are sent both directly to Arweave mainnet and Warp
|
|
||||||
Sequencer -
|
|
||||||
if two transactions happen to be at the same block height, the "direct" Arweave transactions take precedence.
|
|
||||||
This also means that the sequencing algorithm is fully backwards compatible with the original SmartWeave protocol.
|
|
||||||
|
|
||||||
#### 2. Generates tags for the Bundlr transaction
|
|
||||||
|
|
||||||
| Tag Name | Tag Value |
|
|
||||||
|---------------------------------------------|---------------------------------------------------------------|
|
|
||||||
| `Sequencer` | `RedStone` |
|
|
||||||
| `Sequencer-Owner` | The original owner/signar of the contract transaction |
|
|
||||||
| `Sequencer-Mills` | The sequence value used by the Sequencer for this transaction |
|
|
||||||
| `Sequencer-Sort-Key` | The generated sort key for this transaction |
|
|
||||||
| `Sequencer-Tx-Id` | The original transaction id |
|
|
||||||
| `Sequencer-Block-Height` | The block height used for generating the sort key |
|
|
||||||
| `Sequencer-Block-Id` | The block hash used for generating the sort key |
|
|
||||||
| ...all the tags of the original transaction | |
|
|
||||||
|
|
||||||
Additional set of tags are added in case user requests generating a random value using VRF (Verifiable Random Function):
|
|
||||||
|
|
||||||
| Tag Name | Tag Value |
|
|
||||||
|---------------------------------------------|------------------------------------------------------------------------|
|
|
||||||
| `vrf-index` | The original hash generated by the VRF (using `sort_key` as input data)|
|
|
||||||
| `vrf-proof` | The original proof generated by the VRF |
|
|
||||||
| `vrf-bigint` | A BigInt value evaluated from the hash generated by the VRF |
|
|
||||||
| `vrf-pubkey` | The public key used by the VRF |
|
|
||||||
|
|
||||||
Verifiable randomness can be used by contracts that require using random values - e.g. gaming contracts, nft/loot
|
|
||||||
generating contracts, etc.
|
|
||||||
Using the `sort_key`, `vrf-proof` and `vrf-pubkey`, the client can always verify the generated random value.
|
|
||||||
|
|
||||||
#### 3. Uploads the original transaction to Bundlr
|
|
||||||
|
|
||||||
..with tags generated in point 2.
|
|
||||||
|
|
||||||
**NOTE** The original transaction is not modified in any way - this is to preserve the original
|
|
||||||
signature!
|
|
||||||
|
|
||||||
After receiving proper response and receipt from Bundlr, the Warp gateway indexes the contract interaction
|
|
||||||
internally - to make it instantly available.
|
|
||||||
|
|
||||||
#### 4. Finally, the Warp gateway returns the response from the Bundlr to the client.
|
|
||||||
|
|
||||||
## Contract transaction retrieval (generated by the Warp Sequencer) via Arweave gateway
|
|
||||||
|
|
||||||
Use the GQL endpoint, with the original contract tx id passed in the `Contract` tag. Note that all the
|
|
||||||
interactions will be part of a bundle (i.e. will have the `edges.node.bundledIn.id` value set).
|
|
||||||
|
|
||||||
```qql
|
|
||||||
query {
|
|
||||||
transactions(
|
|
||||||
tags: [
|
|
||||||
{name: "App-Name", values: ["SmartWeaveAction"]},
|
|
||||||
{name: "Contract", values: ["KT45jaf8n9UwgkEareWxPgLJk4oMWpI5NODgYVIF1fY"]},
|
|
||||||
{name: "Sequencer", values: ["RedStone"]}
|
|
||||||
]
|
|
||||||
) {
|
|
||||||
edges {
|
|
||||||
node {
|
|
||||||
id
|
|
||||||
tags {
|
|
||||||
name
|
|
||||||
value
|
|
||||||
}
|
|
||||||
block {
|
|
||||||
height
|
|
||||||
}
|
|
||||||
bundledIn {
|
|
||||||
id
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
## Contract transaction retrieval via Warp gateway
|
|
||||||
|
|
||||||
The Warp `/gateway/v2/interactions-sort-key` endpoint allows to retrieve all the given contract interactions currently
|
|
||||||
indexed by the Warp Gateway - both the direct Arweave transactions and Warp Sequencer transactions.
|
|
||||||
This method is used by the default by the Warp SDK - in case of `forMainnet` instance is being used.
|
|
||||||
|
|
||||||
## Futher development
|
|
||||||
1. Blind/trustless sequencing - https://github.com/warp-contracts/gateway/issues/48
|
|
||||||
2. Sequencer decentralization - https://github.com/warp-contracts/gateway/issues/93
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
### Evolve feature
|
|
||||||
|
|
||||||
#### Concerns
|
|
||||||
Currently, it is partly implemented in the contract source code and
|
|
||||||
partly in the "protocol" itself. Shouldn't such features be rather fully implemented at the "protocol"
|
|
||||||
level, so that its users won't have to clutter their contract's code/state with evolve-related stuff?
|
|
||||||
And what if there's some bug or change in the implementation - will all the evolve feature users have
|
|
||||||
to update theirs contract source code?
|
|
||||||
Plus - currently, I don't see an easy way to retrieve and audit all the contract's source code versions - without
|
|
||||||
the need to analyse its interaction transactions.
|
|
||||||
|
|
||||||
|
|
||||||
#### Alternative implementation proposal
|
|
||||||
1. Define new protocol tags - `Base-Contract-Tx-Id`, `Updated-Contract-Src-Tx-Id` (I think the names are self-explanatory);
|
|
||||||
2. Define new SDK method - "updateContract" with signature:
|
|
||||||
`updateContract(baseContractTxId: string, updatedContractSourceTxId: string, wallet: JWKInterface)`
|
|
||||||
This new method would:
|
|
||||||
1. verify that the `owner` of the `baseContractTxId` is the same as the address of the passed `wallet`. If not, it throws an exception
|
|
||||||
(so basically only contract's owners are allowed to update the contract's source code).
|
|
||||||
2. Create new arweave transaction with newly specified tags.
|
|
||||||
|
|
||||||
3. Then - while interacting with the contract, the protocol would need to:
|
|
||||||
1. fetch all the source code versions up to the requested block height (using rather simple GQL) - in the new version this would be
|
|
||||||
handled by the `DefinitionLoader` layer - the `ContractDefinition` object, that it returns, would simply have to store a Map (blockHeight -> src).
|
|
||||||
An additional safety check can be also added here (that would verify that the owner of the "updateContract" transaction is the same as the contract's owner).
|
|
||||||
2. The `ExecutionContext` would need similarly store a Map (blockHeight -> handler)
|
|
||||||
3. The `StateEvaluator` layer would then for each interaction transaction choose (based on the interaction block height - using a really simple algorithm) proper source code version from the `ExecutionContext`
|
|
||||||
|
|
||||||
This would allow to fully implement (and test...) this at a protocol level and have a clear and easy way of retrieving all the contract's source code versions (using GQL and new tags).
|
|
||||||
Additionally - the `StateEvaluator` layer would not be responsible for loading and overwriting the contract's source code
|
|
||||||
(I believe this should be the responsibility of the `DefinitionLoader` layer).
|
|
||||||
Last-but-not-least - there would be no need to add any "evolve" specific source code to the contract's source code itself.
|
|
||||||
@@ -1,351 +0,0 @@
|
|||||||
# Warp Internal Contract Writes
|
|
||||||
|
|
||||||
This document describes the core concepts behind the Warp Internal Writes - a SmartWeave protocol
|
|
||||||
extension that allows to perform inner-contract writes.
|
|
||||||
|
|
||||||
### Introduction
|
|
||||||
|
|
||||||
SmartWeave protocol currently natively does not support writes between contracts - contract can only read each other's
|
|
||||||
state.
|
|
||||||
This lack of interoperability is a big limitation for real-life applications - especially if you want to implement
|
|
||||||
features like staking/vesting, disputes - or even a standard approve/transferFrom flow from ERC-20 tokens.
|
|
||||||
|
|
||||||
Some time ago a solution addressing this issue was proposed -
|
|
||||||
a [Foreign Call Protocol](https://www.notion.so/Foreign-Call-Protocol-Specification-61e221e5118a40b980fcaade35a2a718).
|
|
||||||
|
|
||||||
This is a great and innovative idea that greatly enhances contracts usability, but we've identified some issues:
|
|
||||||
|
|
||||||
- Contract developers need to add FCP-specific code in the smart contract code and in its state. This causes the
|
|
||||||
protocol code to be mixed with the contract's business logic. Additionally - any update or change in the protocol
|
|
||||||
would probably require the code (and/or state) of all the contracts that are utilizing the FCP, to be upgraded.
|
|
||||||
- security - e.g. without adding additional logic in the `invoke` function - any user can call any external contract
|
|
||||||
function
|
|
||||||
- In order to create a "write" operation between FCP-compatible contracts (e.g. `Contract B` makes a write on
|
|
||||||
a `Contract A`), users need to create two separate transactions:
|
|
||||||
|
|
||||||
1. `invoke` operation on Contract B to add entry in the `foreignCalls` state field of the Contract B (this entry
|
|
||||||
contains the details of the call on the Contract A )
|
|
||||||
2. `readOutbox` operation on Contract A, that underneath reads Contract's B `foreignCalls` and "manually" calls
|
|
||||||
Contract's A `handle` function for each registered 'foreignCall'
|
|
||||||
|
|
||||||
We believe that writes between contracts should be implemented at the protocol level (i.e. contract source code and its
|
|
||||||
state should not contain any technical details of the internal calls) and that performing a write should not require
|
|
||||||
creating multiple interactions.
|
|
||||||
|
|
||||||
### Solution
|
|
||||||
|
|
||||||
1. Attach a new method to the `SmartWeave` global object (the one that is accessible from the contract's code) with a
|
|
||||||
signature:
|
|
||||||
```ts
|
|
||||||
function write<Input = unknown>(
|
|
||||||
contractId: String,
|
|
||||||
input: Input,
|
|
||||||
throwOnError?: boolean): Promise<InteractionResult>
|
|
||||||
```
|
|
||||||
This method allows to perform writes on other contracts.
|
|
||||||
The `caller` of such call is always set to the `txId` of the calling contract - this allows the callee contract to
|
|
||||||
decide whether call should be allowed.
|
|
||||||
The method first evaluates the target (i.e. specified by the `contractTxId` parameter) contract's state up to the "
|
|
||||||
current" sort key (i.e. sort key of the interaction that is calling the `write` method) and then applies the input (
|
|
||||||
specified as the 2nd. parameter of the `write` method).
|
|
||||||
The result is memoized in cache.
|
|
||||||
If the internal write will fail (i.e. return result object with `type` different from `ok`), the original transaction
|
|
||||||
will also automatically fail (i.e. will return `error` as a result type).
|
|
||||||
If you need to manually handle the write errors in the contract's code, either switch off this behaviour globally -
|
|
||||||
via `evalulationOptions.throwOnInternalWriteError`; or for a single call - by passing `false` as a `throwOnError`
|
|
||||||
argument in the `write` function.
|
|
||||||
|
|
||||||
This has been implemented in the `Contract.dryWriteFromTx()` and `ContractHandlerApi.assignWrite()`;
|
|
||||||
|
|
||||||
2. For each newly created interaction with given contract (i.e. when `contract.writeInteraction` is called) - the SDK
|
|
||||||
performs a dry run and analyzes the call report of the dry-run
|
|
||||||
(feature introduced in https://github.com/redstone-finance/redstone-smartcontracts/issues/21).
|
|
||||||
The result of
|
|
||||||
this [analysis](https://github.com/warp-contracts/warp/blob/main/src/contract/InnerWritesEvaluator.ts#L3) is a list
|
|
||||||
of all inner write calls between contracts for the newly created interaction.
|
|
||||||
For each found inner write call - the SDK generates additional tag:
|
|
||||||
`{'interactWrite': contractTxId}`- where `contractTxId` is the callee contract.
|
|
||||||
|
|
||||||
This has been implemented in the `Contract.writeInteraction` and `InnerWritesEvaluator.eval()`.
|
|
||||||
|
|
||||||
3. For each state evaluation for a given contract ("Contract A"):
|
|
||||||
|
|
||||||
- load all "direct" interactions with the contract
|
|
||||||
- load all "internal write" interactions with the contract (search using the `interactWrite` tag)
|
|
||||||
- concat both type of transactions and sort them according to protocol specification (i.e. lexicographically using
|
|
||||||
the `sortKey`)
|
|
||||||
- for each interaction:
|
|
||||||
|
|
||||||
1. if it is a "direct" interaction - evaluate it according to current protocol specification
|
|
||||||
2. if it is an "internalWrite" interaction - load the contract specified in the "internalWrite" ("Contract B") tag and
|
|
||||||
evaluate its state. This will cause the `write` (described in point 1.) method to be called. After evaluating the "
|
|
||||||
Contract B" contract state - load the latest state of the "Contract A" from cache (it has been updated by the `write`
|
|
||||||
method) and move to next interaction.
|
|
||||||
|
|
||||||
This has been implemented in the `DefaultStateEvaluator.doReadState()`
|
|
||||||
|
|
||||||
This method is also effective for "nested" writes between contracts (i.e. Contract A writes on Contract B, Contract B
|
|
||||||
writes on Contract C, etc...) and 'write-backs' (i.e. Contract A calls a function on Contract B which calls a function
|
|
||||||
on Contract A).
|
|
||||||
|
|
||||||
### Examples
|
|
||||||
|
|
||||||
Some examples of different types of inner contract writes are available:
|
|
||||||
|
|
||||||
1. In the DEX [tutorial](https://academy.warp.cc/tutorials/dex/introduction/intro)
|
|
||||||
2. The ERC-20 [staking](https://github.com/warp-contracts/wrc/blob/master/examples/staking/src/actions/staking.rs#L35)
|
|
||||||
example.
|
|
||||||
3. In the
|
|
||||||
integration [tests](https://github.com/warp-contracts/warp/tree/main/src/__tests__/integration/internal-writes) of
|
|
||||||
the inner writes feature.
|
|
||||||
4. In the [staking example](https://github.com/warp-contracts/wrc/tree/master/examples/staking#-staking) of the ERC-20
|
|
||||||
token standard.
|
|
||||||
**NOTE** Do not overuse the inner writes feature - as it can quickly make the debugging and contracts' interaction
|
|
||||||
analysis very difficult.
|
|
||||||
|
|
||||||
### Security
|
|
||||||
|
|
||||||
1. The internal contract writes is switched off by default. Developer must explicitly set
|
|
||||||
the `evaluationOptions.internalWrites` flag to true to use this feature.
|
|
||||||
2. We strongly suggest to create a whitelist of contracts which are allowed to perform a write on a contract.
|
|
||||||
The id of the calling contract can be obtained from `SmartWeave.caller`.
|
|
||||||
3. The SDK by default limits the evaluation time of the given interaction to 60s. This can be changed
|
|
||||||
via `evaluationOptions.maxInteractionEvaluationTimeSeconds`
|
|
||||||
4. The SDK by default limits the max depth of inner contract interactions (reads of writes) to `7`. This can be changed
|
|
||||||
via `evaluationOptions.maxCallDepth`.
|
|
||||||
5. The SDK gives an option to set a gas limit for each interaction (note that this applies only to WASM contracts!)
|
|
||||||
via `evaluationOptions.gasLimit`.
|
|
||||||
6. We strongly suggest using WASM (Rust preferably) for writing inner writes compatible contracts - as the WASM
|
|
||||||
sandboxing
|
|
||||||
and option to set gas limits gives the best security.
|
|
||||||
|
|
||||||
### Example inner write call flow
|
|
||||||
|
|
||||||
#### Stage I - creating a contract interaction transaction
|
|
||||||
|
|
||||||
Whenever Warp's SDK `contract.writeInteraction` function is called and `evaluationOptions.internalWrites` is set to
|
|
||||||
`true`, the Warp SDK performs some additional work that allows to determine whether the newly created transaction creates
|
|
||||||
some inner contract writes. If it does, for each such inner write with a given contract, an additional
|
|
||||||
tag `Interact-Write` is
|
|
||||||
being added to the newly created transaction. The value of this tag is set to the tx id of the contract that is called
|
|
||||||
by the inner write.
|
|
||||||
|
|
||||||
You might wonder how does the SDK "know" whether newly created interaction performs an inner write to other contracts.
|
|
||||||
No, it does not statically analyse the contract's source code - this would not work in many cases (and would not work at
|
|
||||||
all in case of binary format for WASM contracts ;-)).
|
|
||||||
|
|
||||||
Instead of static code analysis, the SDK performs a dry-run of a newly created transaction - i.e. it first evaluates the
|
|
||||||
most recent contract state and then applies the new (i.e. the one, that the user wants to add) transaction on top.
|
|
||||||
During this evaluation, a **contract call record** is being generated.
|
|
||||||
This record contains data about the contract that is being called and a complete list of transactions that were
|
|
||||||
evaluated, with data like input function names, interaction tx id, caller id, etc.
|
|
||||||
|
|
||||||
The contract call record object is created each time a `warp.contract()` function is being called (i.e. when `Contract`
|
|
||||||
object instance is being created) and it is attached to the contract instance.
|
|
||||||
The `warp.contract()` method can be called either by:
|
|
||||||
|
|
||||||
1. the SDK user (when he/she connects to a given contract and - for example - wants to read its state or write a new
|
|
||||||
interaction)
|
|
||||||
2. the SDK itself (when the contract's code performs inner read or write on other contract)
|
|
||||||
|
|
||||||
In the latter case, the contract instance (the `child` contract) is always attached to a `parent` contract instance -
|
|
||||||
i.e. the contract that is initiating the inner call.
|
|
||||||
|
|
||||||
**NOTE** The `root` contract is always the instance created by the SDK user (point 1.).
|
|
||||||
|
|
||||||
Each `child` contract instance contains its own call record - which is always attached to the `foreignContractCalls`
|
|
||||||
field of the parent's contract call record.
|
|
||||||
|
|
||||||
This probably sounds more complicated than it is in reality, so let's analyse an example!
|
|
||||||
|
|
||||||
Example call record:
|
|
||||||
|
|
||||||
```json5
|
|
||||||
{
|
|
||||||
"contractTxId": "HRIQNh2VNT8RPggWSXmoEGIUg-66J8iXEwuNNJFRPOA",
|
|
||||||
"depth": 0,
|
|
||||||
"id": "f9e943c9-ac95-440b-9fd6-fe79d4336f7b",
|
|
||||||
"interactions": {
|
|
||||||
"tsu6Li4oiysI0pnmmpDi7c873qUlmBpFJkvIf75O86A": {
|
|
||||||
"interactionInput": {
|
|
||||||
"txId": "tsu6Li4oiysI0pnmmpDi7c873qUlmBpFJkvIf75O86A",
|
|
||||||
"sortKey": "000000000003,9999999999999,e08f9c796a0d52f00524f2c895e63012115ee77b3554067f1fec0ff21d7e900f",
|
|
||||||
"blockHeight": 3,
|
|
||||||
"blockTimestamp": 1663435219,
|
|
||||||
"caller": "kia_VEiJ6g8FbZvuh36Fpl-BYI7FpMyf-HQk1jYakCY",
|
|
||||||
"functionName": "deposit",
|
|
||||||
"functionArguments": {
|
|
||||||
"function": "deposit",
|
|
||||||
"tokenId": "O7DwbsFFOVLg-99nJv89UeEVtYOAmn0eQoUjRgxC6OQ",
|
|
||||||
"qty": 1,
|
|
||||||
"txID": "L6f-xeKgq-7T1-rLqvziLJ1k6JYhL1wCxCUcW26DCsQ"
|
|
||||||
},
|
|
||||||
"dryWrite": true,
|
|
||||||
"foreignContractCalls": {
|
|
||||||
"O7DwbsFFOVLg-99nJv89UeEVtYOAmn0eQoUjRgxC6OQ": {
|
|
||||||
"contractTxId": "O7DwbsFFOVLg-99nJv89UeEVtYOAmn0eQoUjRgxC6OQ",
|
|
||||||
"depth": 1,
|
|
||||||
"id": "29aedfe9-19d5-436c-a49c-1fedf0ead634",
|
|
||||||
"innerCallType": "write",
|
|
||||||
"interactions": {
|
|
||||||
"tsu6Li4oiysI0pnmmpDi7c873qUlmBpFJkvIf75O86A": {
|
|
||||||
"interactionInput": {
|
|
||||||
"txId": "tsu6Li4oiysI0pnmmpDi7c873qUlmBpFJkvIf75O86A",
|
|
||||||
"sortKey": "000000000003,9999999999999,e08f9c796a0d52f00524f2c895e63012115ee77b3554067f1fec0ff21d7e900f",
|
|
||||||
"blockHeight": 3,
|
|
||||||
"blockTimestamp": 1663435219,
|
|
||||||
"caller": "HRIQNh2VNT8RPggWSXmoEGIUg-66J8iXEwuNNJFRPOA",
|
|
||||||
"functionName": "claim",
|
|
||||||
"functionArguments": {
|
|
||||||
"function": "claim",
|
|
||||||
"txID": "L6f-xeKgq-7T1-rLqvziLJ1k6JYhL1wCxCUcW26DCsQ",
|
|
||||||
"qty": 1
|
|
||||||
},
|
|
||||||
"dryWrite": true,
|
|
||||||
"foreignContractCalls": {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
The above record was generated by calling a `writeInteraction` on a contract with
|
|
||||||
id `HRIQNh2VNT8RPggWSXmoEGIUg-66J8iXEwuNNJFRPOA`:
|
|
||||||
|
|
||||||
```ts
|
|
||||||
await contract.writeInteraction({
|
|
||||||
function: "deposit",
|
|
||||||
tokenId: pstTxId,
|
|
||||||
qty: transferQty,
|
|
||||||
txID: originalTxId
|
|
||||||
});
|
|
||||||
```
|
|
||||||
|
|
||||||
The `depth` is set to `0` - i.e. it is the `root` contract call.
|
|
||||||
Exactly one interaction for this contract was evaluated - `tsu6Li4oiysI0pnmmpDi7c873qUlmBpFJkvIf75O86A`.
|
|
||||||
The call record contains all the crucial data for each of the evaluated transaction - block height and its id, sort key,
|
|
||||||
caller id, function name and all the function arguments, etc.
|
|
||||||
|
|
||||||
It also marks that the transaction comes from a dry-write (`"dryWrite": true`).
|
|
||||||
**NOTE** The SDK never caches any results for dry-write transactions.
|
|
||||||
|
|
||||||
In this case the `deposit` function has been called - i.e. it is a function defined by the User in
|
|
||||||
the `writeInteraction` function call.
|
|
||||||
Each recorded interaction also contains the `foreignContractCalls` field - this is where all inner contract calls (writes and reads) are being recorded.
|
|
||||||
|
|
||||||
In case of the `deposit` function - the contract performs an inner contract call on a
|
|
||||||
contract `O7DwbsFFOVLg-99nJv89UeEVtYOAmn0eQoUjRgxC6OQ`,
|
|
||||||
i.e. its source performs `SmartWeave.contracts.write("O7DwbsFFOVLg-99nJv89UeEVtYOAmn0eQoUjRgxC6OQ", ...)` and calls `claim`
|
|
||||||
function.
|
|
||||||
That's why the call record for this contract is attached to the `foreignContractCalls` field of
|
|
||||||
the `tsu6Li4oiysI0pnmmpDi7c873qUlmBpFJkvIf75O86A` interaction.
|
|
||||||
Note that this child call record:
|
|
||||||
|
|
||||||
1. Has `depth` set to `1`
|
|
||||||
2. Has `innerCallType` set to `write`.
|
|
||||||
|
|
||||||
This child call record contains one interaction `tsu6Li4oiysI0pnmmpDi7c873qUlmBpFJkvIf75O86A` - and as it is logged, this
|
|
||||||
interaction calls the `claim` function - i.e. the function called by the `SmartWeave.contracts.write`.
|
|
||||||
|
|
||||||
Having this call record generated, the SDK traverses recursively all the interactions and theirs `foreignContractCalls`,
|
|
||||||
then the interactions of those `foreignContractCalls` and theirs `foreignContractCalls` - and so on.
|
|
||||||
|
|
||||||
This in effect allows to evaluate which contracts are being called by the newly created interaction and generate proper tags.
|
|
||||||
In case of the above example - a tag `Interact-Write` with value `O7DwbsFFOVLg-99nJv89UeEVtYOAmn0eQoUjRgxC6OQ` would be generated.
|
|
||||||
|
|
||||||
#### Stage II - evaluating contract state
|
|
||||||
|
|
||||||
`Contract B` makes an internal write on `Contract A` at interaction `i(n)`.
|
|
||||||
Using ids from the `Stage I` - let's assume that `Contract B` = `HRIQNh2VNT8RPggWSXmoEGIUg-66J8iXEwuNNJFRPOA`
|
|
||||||
and it makes a write on a `O7DwbsFFOVLg-99nJv89UeEVtYOAmn0eQoUjRgxC6OQ` `Contract A` - calls its `claim` function.
|
|
||||||
|
|
||||||
We're evaluating the state of the `Contract A`.
|
|
||||||
|
|
||||||
**(1)** Evaluator loads the state of the `Contract A` up to internal write interaction `i(n)`.
|
|
||||||
**(2)** `i(n)` is an internal write interaction. Thanks to tag data saved in the interaction, the evaluator
|
|
||||||
knows that it is `Contract B` which makes write on `Contract A`.
|
|
||||||
Evaluator saves the `Contract A` state at `i(n-1)` interaction in cache (the key of the cache is a sort key of the
|
|
||||||
transaction, for which the state is being stored).
|
|
||||||
**(3)** Evaluator loads the `Contract B` contract and evaluates its state up to `i(m)` interaction.
|
|
||||||
**(4)** `i(m)` interaction for `Contract B` is making a `SmartWeave.contracts.write` call on `Contract A` with
|
|
||||||
certain `Input`.
|
|
||||||
**(5)** In order to perform the write, evaluator loads the `Contract A` contract state at `i(n-1)` transaction from
|
|
||||||
cache.
|
|
||||||
**(6)** Evaluator applies the input from the `SmartWeave.contracts.write` on the `Contract A` (i.e. calls its `handle`
|
|
||||||
function with this input)
|
|
||||||
**(7)** Evaluator stores the result of calling the `Contract A` `handle` function in cache.
|
|
||||||
**(8)** Evaluator returns with the evaluation to the `Contract A` contract. If first loads the state stored in point (7)
|
|
||||||
and then
|
|
||||||
continues to evaluate next interactions.
|
|
||||||
|
|
||||||
```
|
|
||||||
Contract A - the callee contract
|
|
||||||
|
|
||||||
┌───────────────────────────┐
|
|
||||||
│ Interaction │
|
|
||||||
│ i(n-2) │
|
|
||||||
└───────────┬───────────────┘
|
|
||||||
│
|
|
||||||
│
|
|
||||||
▼
|
|
||||||
┌───────────────────────────┐
|
|
||||||
│ Interaction │ Save State (2)
|
|
||||||
│ i(n-1) ├────────────────────────────────────────┐
|
|
||||||
└───────────┬───────────────┘ │
|
|
||||||
│ │
|
|
||||||
│ (1) │
|
|
||||||
▼ CACHE │
|
|
||||||
┌───────────────────────────┐ ┌────────────┬───────▼──────┐
|
|
||||||
│ Interaction │ (3) │ │State[i(n-1)] ├───────┐
|
|
||||||
This tx contains │ i(n):internal write ├───────────────┐ │ Contract A ├──────────────┤ │
|
|
||||||
tag 'internal-write' │ from "Contract B" │ │ │ │State[i(n)] │◄──────┼─┐
|
|
||||||
with value 'Contract B' └───────────┬───────────────┘ │ └────────────┴─────────┬────┘ │ │
|
|
||||||
│ │ │ │ │
|
|
||||||
│ │ │ │ │
|
|
||||||
▼ │ │ │ │
|
|
||||||
┌───────────────────────────┐(8) │ Load State │ │ │
|
|
||||||
│ Interaction │◄──────────────┼──────────────────────────┘ │ │
|
|
||||||
│ i(n+1) │ │ │ │
|
|
||||||
└───────────────────────────┘ │ │ │
|
|
||||||
│ │ │
|
|
||||||
────────────────────────────────────────────────── │ │ │
|
|
||||||
│ │ │
|
|
||||||
Contract B - the caller contract ◄──────────┘ │ │
|
|
||||||
┌───────────────────────────┐ │ │
|
|
||||||
│ Interaction │ │ │
|
|
||||||
│ i(m-1) │ │ │
|
|
||||||
└───────────┬───────────────┘ │ │
|
|
||||||
│ │ │
|
|
||||||
▼ SmartWeave.contracts.write('Contract A', input)│ │
|
|
||||||
This tx calls ┌───────────────────────────┐(4) ┌─────────────────────────────┐ │ │
|
|
||||||
Contract B function │ i(m):write on │ │ │ │ │
|
|
||||||
that makes │ Contract A ├─────────────► (5)│ │ │
|
|
||||||
SmartWeave.contract.write()└───────────────────────────┘ │ ┌─────────────────────┐ Load State │ │
|
|
||||||
call on Contract A. NOTE: i(m) = i(n) - i.e. it is the same │ │ 1. Load Contract A │◄──┬───────────┘ │
|
|
||||||
transaction. │ │ State[i(n-1)] │ │ │
|
|
||||||
│ └─────────────┬───────┘ │ │
|
|
||||||
│ (6) │ │ │
|
|
||||||
│ ┌─────────────▼───────┐ │ │
|
|
||||||
│ │ 2. Call Contract A │ Save State (7) │
|
|
||||||
│ │ "handle" function├───┬─────────────┘
|
|
||||||
│ │ with "input" │ │
|
|
||||||
│ └─────────────────────┘ │
|
|
||||||
│ │
|
|
||||||
└─────────────────────────────┘
|
|
||||||
```
|
|
||||||
|
|
||||||
### Alternative solution
|
|
||||||
|
|
||||||
An alternative solution has been also considered.
|
|
||||||
Instead of writing only a tag with id of the calling contract, one could write the exact input (i.e. function,
|
|
||||||
parameters, etc) of the call.
|
|
||||||
This would have an advantage of the increased performance (as we could evaluate the "Contract A" state without the need
|
|
||||||
of evaluating the "Contract B" state in the process),
|
|
||||||
but would ruin the "lazy-evaluation" idea of the protocol and reduce the safety of the solution - as the Contract A
|
|
||||||
would need to fully trust the calling Contract B - if the Contract B would save some unsafe data in the input - there
|
|
||||||
would be no way to exclude it from the execution.
|
|
||||||
@@ -1,54 +0,0 @@
|
|||||||
# Register contract
|
|
||||||
|
|
||||||
Typically, deploying a contract through Warp Gateway requires wrapping contract transaction in another transaction (Warp Gateway posts a contract transaction to the Bundlr Network as a data of the bundled transaction - more about in [this doc](https://github.com/warp-contracts/warp/blob/main/docs/BUNDLED_CONTRACT.md)).
|
|
||||||
|
|
||||||
This process does not allow to create a legit AtomicNFT as the data of the nested transaction (our contract) cannot be served via Arweave gateway (it will be possible as soon as Nested Bundles will be implemented by Warp).
|
|
||||||
|
|
||||||
Therefore, a new contract creation method has been exposed in Warp SDK. Let's go through the process.
|
|
||||||
|
|
||||||
1. User needs to prepare contract transaction, all the tags required by the [SmartWeave protocol](https://github.com/warp-contracts/warp/blob/main/docs/SMARTWEAVE_PROTOCOL.md#contract-creation) need to be included, initial state should be set in the tag, tags specific for AtomicNFT ('Title', 'Description', 'Type', 'Content-Type') should also be included in the contract tags.
|
|
||||||
|
|
||||||
```ts
|
|
||||||
const contractTags = [
|
|
||||||
{ name: 'Content-Type', value: 'text/plain' },
|
|
||||||
{ name: 'App-Name', value: 'SmartWeaveContract' },
|
|
||||||
{ name: 'App-Version', value: '0.3.0' },
|
|
||||||
{ name: 'Contract-Src', value: 'XA-sFBRvgIFFklmDV-TUlUPc3_pE3rIsXwH2AjwOYrQ' },
|
|
||||||
{
|
|
||||||
name: 'Init-State',
|
|
||||||
value: JSON.stringify({
|
|
||||||
ticker: 'ATOMIC_ASSET',
|
|
||||||
owner: address,
|
|
||||||
canEvolve: true,
|
|
||||||
balances: {
|
|
||||||
[address]: 10000000
|
|
||||||
},
|
|
||||||
wallets: {}
|
|
||||||
})
|
|
||||||
},
|
|
||||||
{ name: 'Title', value: 'Asset' },
|
|
||||||
{ name: 'Description', value: 'Description' },
|
|
||||||
{ name: 'Type', value: 'Text' }
|
|
||||||
];
|
|
||||||
```
|
|
||||||
|
|
||||||
2. User then needs to initialize Bundlr and uploads the contract within data:
|
|
||||||
|
|
||||||
```ts
|
|
||||||
const jwk = JSON.parse(fs.readFileSync('.secrets/warp-wallet-jwk.json').toString());
|
|
||||||
const bundlr = new Bundlr('https://node2.bundlr.network', 'arweave', jwk);
|
|
||||||
|
|
||||||
const data = fs.readFileSync('tools/data/data.txt');
|
|
||||||
|
|
||||||
const tx = await bundlr.upload(data, { tags: contractTags })
|
|
||||||
```
|
|
||||||
|
|
||||||
3. Finally, contract is sent to Warp Gateway where it is indexes so it can be immediately available for all Warp tools, contract data can be also served by Arweave gateway:
|
|
||||||
|
|
||||||
```ts
|
|
||||||
const warp = WarpFactory.forMainnet();
|
|
||||||
const { contractTxId } = await warp.register(tx.id, 'node2');
|
|
||||||
console.log(`Check the data: https://arweave.net/${contractTxId}`);
|
|
||||||
```
|
|
||||||
|
|
||||||
The whole process allows to have data and contract linked into one transaction and both are served under the same id.
|
|
||||||
@@ -1,112 +0,0 @@
|
|||||||
# SmartWeave Protocol
|
|
||||||
|
|
||||||
This document describes the core concepts behind the SmartWeave smart contracts protocol and is based
|
|
||||||
on the original smartweave.js [contract-guide](https://github.com/ArweaveTeam/SmartWeave/blob/master/CONTRACT-GUIDE.md).
|
|
||||||
|
|
||||||
## Introduction
|
|
||||||
|
|
||||||
SmartWeave is a data-centered protocol built on top of the Arweave chain that allows to implement smart contracts.
|
|
||||||
The key difference between SmartWeave and other similar solutions is that the contracts can be evaluated
|
|
||||||
on-demand and "lazily".
|
|
||||||
|
|
||||||
Most smart contracts treat data as a side-product that slows down processing.
|
|
||||||
Data is digested, pruned, and pushed out to side chains.
|
|
||||||
Nonetheless, the bloated global state is still the biggest challenge of modern blockchains - as it leads
|
|
||||||
to extreme costs of data storage.
|
|
||||||
|
|
||||||
SmartWeave approach, on the other hand, has several advantages:
|
|
||||||
|
|
||||||
1. It decouples the storage from the computation
|
|
||||||
2. It allows for a flexible lazy-evaluation pattern
|
|
||||||
3. It allows to directly process rich content.
|
|
||||||
|
|
||||||
Building SmartWeave on the Arweave allows saving time on the
|
|
||||||
development of the basic infrastructure.
|
|
||||||
|
|
||||||
## Protocol Specification
|
|
||||||
|
|
||||||
The SmartWeave protocol consists of few key concepts:
|
|
||||||
|
|
||||||
1. [Contract creation](#contract-creation)
|
|
||||||
2. [Contract interactions](#contract-interactions)
|
|
||||||
3. [Lazy-evaluation of the contract state](#lazy-evaluation-of-the-contract-state)
|
|
||||||
|
|
||||||
### Contract creation
|
|
||||||
|
|
||||||
In order to deploy a new contract on Arweave the SmartWeave client must:
|
|
||||||
|
|
||||||
1. Create an Arweave transaction with contract source code
|
|
||||||
|
|
||||||
| Transaction field | Value |
|
|
||||||
| --------------------- | ------------------------------------------------------------------------- |
|
|
||||||
| `data` | [Contract Source Code specification](#contract-source-code-specification) |
|
|
||||||
| `tag['App-Name']` | `SmartWeaveContractSource` |
|
|
||||||
| `tag['App-Version']` | the current version of the SDK, e.g. version from package.json |
|
|
||||||
| `tag['Content-Type']` | `application/javascript` |
|
|
||||||
|
|
||||||
2. Create an Arweave transaction with contract definition
|
|
||||||
|
|
||||||
| Transaction field | Value |
|
|
||||||
| -------------------------- | ------------------------------------------------------------------------------------------------- |
|
|
||||||
| `data`(\*) | Contract initial state - stringified json object - e.g. `JSON.stringify(initialState)` |
|
|
||||||
| `tag['Init-State']`(\*) | Contract initial state - as alternative for setting it in data field |
|
|
||||||
| `tag['Init-State-TX']`(\*) | Id of the transaction the holds the initial state |
|
|
||||||
| `tag['App-Name']` | `SmartWeaveContract` |
|
|
||||||
| `tag['App-Version']` | the current version of the SDK, e.g. version from package.json |
|
|
||||||
| `tag['Content-Type']` | `application/javascript` |
|
|
||||||
| `tag['Contract-Src']` | id of the transaction created in previous step, eg: `ovqOT6dVD7zYZYmIkq52gmSippk2MGs_TjXs3-D4BLU` |
|
|
||||||
|
|
||||||
(\*) Either one of these options must be chosen for storing the initial state.
|
|
||||||
|
|
||||||
#### Contract source code specification
|
|
||||||
|
|
||||||
1. A contract source code MAY be written in ES module format.
|
|
||||||
2. A contract source MUST contain function (sync or async) named `handle`.
|
|
||||||
3. A contract source MAY use IIFE bundling format.
|
|
||||||
4. The `handle` function MUST accept exactly two arguments: `state` and `action`
|
|
||||||
5. The `state` argument MUST be the current state of the contract.
|
|
||||||
6. The `action` argument MUST contain `caller` field (i.e. Arweave wallet address)
|
|
||||||
and `input` field. The `input` field MUST contain the `function` field and any
|
|
||||||
additional data required to perform given operation.
|
|
||||||
7. The maximum size of the JSON.stringified representation of the `input` field MUST NOT exceed 2048 bytes.
|
|
||||||
8. The `handle` function MUST terminate by either:
|
|
||||||
1. returning `{ state: newState }` - this will cause the contract state to be updated
|
|
||||||
2. returning `{ result: newResult }`
|
|
||||||
3. throwing `ContractError`
|
|
||||||
|
|
||||||
### Contract Interactions
|
|
||||||
|
|
||||||
Contract interactions allow to modify the contract state. Each interaction MUST be deployed
|
|
||||||
as a separate Arweave transaction:
|
|
||||||
|
|
||||||
| Transaction field | Value |
|
|
||||||
| -------------------- | -------------------------------------------------------------- |
|
|
||||||
| `tag['App-Name']` | `SmartWeaveAction` |
|
|
||||||
| `tag['App-Version']` | the current version of the SDK, e.g. version from package.json |
|
|
||||||
| `tag['Contract']` | Transaction id of the contract |
|
|
||||||
| `tag['Input']` | JSON.stringified representation of the input |
|
|
||||||
|
|
||||||
### Lazy-evaluation of the contract state
|
|
||||||
|
|
||||||
In its current form, the SmartWeave protocol assumes that smart contract code is a javascript function,
|
|
||||||
defined as:
|
|
||||||
|
|
||||||
```javascript
|
|
||||||
contractFunction = (state, action) => state;
|
|
||||||
```
|
|
||||||
|
|
||||||
This function takes a state and an action as input arguments - and produces a new state as a result.
|
|
||||||
In functional programming terms it acts as a `fold` function - the state of the contract is derived from:
|
|
||||||
1. An initial state
|
|
||||||
2. A contract function
|
|
||||||
3. An ordered list of actions
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
In order to evaluate contract state, SmartWeave Protocol client:
|
|
||||||
1. Loads all the contract's interaction transactions up to the requested block height.
|
|
||||||
2. Sorts the interaction transactions. The order of the interactions is determined firstly by interaction
|
|
||||||
transaction block height (i.e. when the transaction was mined in the chain) and secondly by `sha256(transactionId + blockHash)`.
|
|
||||||
The full ordering is `[ block_height, sha256(transactionId + blockHash) ]`.
|
|
||||||
3. Applies the sorted interactions onto the contract's `handler` function - evaluating contract's state
|
|
||||||
up to the requested block height.
|
|
||||||
BIN
docs/img.png
BIN
docs/img.png
Binary file not shown.
|
Before Width: | Height: | Size: 124 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 142 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 224 KiB |
@@ -1,821 +0,0 @@
|
|||||||
<svg width="2752" height="1684" viewBox="0 0 2752 1684" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<rect width="2752" height="1684" fill="white" fill-opacity="0"/>
|
|
||||||
<g opacity="0.639131">
|
|
||||||
<g opacity="0.2" filter="url(#filter0_f_6_2146)">
|
|
||||||
<circle cx="725.5" cy="872.5" r="216.5" fill="#FDD762"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g opacity="0.587718">
|
|
||||||
<g opacity="0.2" filter="url(#filter1_f_6_2146)">
|
|
||||||
<circle cx="1955" cy="693" r="90" fill="#5982F1"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<path d="M568 932.5V1003" stroke="#CDDAFF" stroke-width="4" stroke-linecap="square"/>
|
|
||||||
<path d="M460.056 1080.64C457.797 1080.64 455.773 1080.27 453.984 1079.54C452.195 1078.8 450.757 1077.72 449.672 1076.28C448.616 1074.84 448.059 1073.11 448 1071.09H456.008C456.125 1072.23 456.521 1073.11 457.196 1073.73C457.871 1074.31 458.751 1074.61 459.836 1074.61C460.951 1074.61 461.831 1074.36 462.476 1073.86C463.121 1073.33 463.444 1072.61 463.444 1071.7C463.444 1070.94 463.18 1070.31 462.652 1069.81C462.153 1069.31 461.523 1068.9 460.76 1068.58C460.027 1068.26 458.971 1067.89 457.592 1067.48C455.597 1066.86 453.969 1066.25 452.708 1065.63C451.447 1065.02 450.361 1064.11 449.452 1062.9C448.543 1061.7 448.088 1060.13 448.088 1058.2C448.088 1055.32 449.129 1053.08 451.212 1051.46C453.295 1049.82 456.008 1049 459.352 1049C462.755 1049 465.497 1049.82 467.58 1051.46C469.663 1053.08 470.777 1055.34 470.924 1058.24H462.784C462.725 1057.24 462.359 1056.47 461.684 1055.91C461.009 1055.32 460.144 1055.03 459.088 1055.03C458.179 1055.03 457.445 1055.28 456.888 1055.78C456.331 1056.25 456.052 1056.93 456.052 1057.84C456.052 1058.84 456.521 1059.62 457.46 1060.18C458.399 1060.73 459.865 1061.33 461.86 1061.98C463.855 1062.65 465.468 1063.3 466.7 1063.92C467.961 1064.53 469.047 1065.43 469.956 1066.6C470.865 1067.77 471.32 1069.28 471.32 1071.13C471.32 1072.89 470.865 1074.49 469.956 1075.93C469.076 1077.37 467.785 1078.51 466.084 1079.36C464.383 1080.21 462.373 1080.64 460.056 1080.64Z" fill="#233562"/>
|
|
||||||
<path d="M499.094 1067.66C499.094 1068.36 499.05 1069.09 498.962 1069.86H481.934C482.052 1071.38 482.536 1072.55 483.386 1073.38C484.266 1074.17 485.337 1074.56 486.598 1074.56C488.476 1074.56 489.781 1073.77 490.514 1072.19H498.522C498.112 1073.8 497.364 1075.25 496.278 1076.54C495.222 1077.83 493.888 1078.85 492.274 1079.58C490.661 1080.31 488.857 1080.68 486.862 1080.68C484.457 1080.68 482.316 1080.17 480.438 1079.14C478.561 1078.11 477.094 1076.65 476.038 1074.74C474.982 1072.83 474.454 1070.6 474.454 1068.05C474.454 1065.5 474.968 1063.27 475.994 1061.36C477.05 1059.46 478.517 1057.99 480.394 1056.96C482.272 1055.94 484.428 1055.42 486.862 1055.42C489.238 1055.42 491.35 1055.92 493.198 1056.92C495.046 1057.92 496.484 1059.34 497.51 1061.19C498.566 1063.04 499.094 1065.19 499.094 1067.66ZM491.394 1065.68C491.394 1064.39 490.954 1063.36 490.074 1062.6C489.194 1061.83 488.094 1061.45 486.774 1061.45C485.513 1061.45 484.442 1061.82 483.562 1062.55C482.712 1063.29 482.184 1064.33 481.978 1065.68H491.394Z" fill="#233562"/>
|
|
||||||
<path d="M501.568 1068.1C501.568 1065.66 502.066 1063.49 503.064 1061.58C504.09 1059.68 505.454 1058.2 507.156 1057.14C508.886 1056.05 510.764 1055.51 512.788 1055.51C514.342 1055.51 515.736 1055.79 516.968 1056.35C518.2 1056.88 519.197 1057.62 519.96 1058.59V1055.78H527.484V1092.03H519.96V1077.25C519.109 1078.27 518.068 1079.1 516.836 1079.71C515.633 1080.33 514.254 1080.64 512.7 1080.64C510.705 1080.64 508.857 1080.11 507.156 1079.05C505.454 1078 504.09 1076.51 503.064 1074.61C502.066 1072.7 501.568 1070.53 501.568 1068.1ZM519.96 1068.05C519.96 1066.73 519.696 1065.63 519.168 1064.75C518.669 1063.84 518.009 1063.17 517.188 1062.73C516.366 1062.26 515.501 1062.02 514.592 1062.02C513.712 1062.02 512.861 1062.26 512.04 1062.73C511.218 1063.17 510.544 1063.84 510.016 1064.75C509.488 1065.66 509.224 1066.78 509.224 1068.1C509.224 1069.42 509.488 1070.53 510.016 1071.44C510.544 1072.32 511.218 1072.99 512.04 1073.46C512.861 1073.9 513.712 1074.12 514.592 1074.12C515.472 1074.12 516.322 1073.9 517.144 1073.46C517.994 1072.99 518.669 1072.31 519.168 1071.4C519.696 1070.49 519.96 1069.37 519.96 1068.05Z" fill="#233562"/>
|
|
||||||
<path d="M557.171 1055.78V1080.33H549.647V1076.98C548.884 1078.07 547.843 1078.95 546.523 1079.62C545.232 1080.27 543.795 1080.59 542.211 1080.59C540.334 1080.59 538.676 1080.18 537.239 1079.36C535.802 1078.51 534.687 1077.29 533.895 1075.71C533.103 1074.12 532.707 1072.26 532.707 1070.12V1055.78H540.187V1069.11C540.187 1070.75 540.612 1072.03 541.463 1072.94C542.314 1073.85 543.458 1074.3 544.895 1074.3C546.362 1074.3 547.52 1073.85 548.371 1072.94C549.222 1072.03 549.647 1070.75 549.647 1069.11V1055.78H557.171Z" fill="#233562"/>
|
|
||||||
<path d="M585.719 1067.66C585.719 1068.36 585.675 1069.09 585.587 1069.86H568.559C568.677 1071.38 569.161 1072.55 570.011 1073.38C570.891 1074.17 571.962 1074.56 573.223 1074.56C575.101 1074.56 576.406 1073.77 577.139 1072.19H585.147C584.737 1073.8 583.989 1075.25 582.903 1076.54C581.847 1077.83 580.513 1078.85 578.899 1079.58C577.286 1080.31 575.482 1080.68 573.487 1080.68C571.082 1080.68 568.941 1080.17 567.063 1079.14C565.186 1078.11 563.719 1076.65 562.663 1074.74C561.607 1072.83 561.079 1070.6 561.079 1068.05C561.079 1065.5 561.593 1063.27 562.619 1061.36C563.675 1059.46 565.142 1057.99 567.019 1056.96C568.897 1055.94 571.053 1055.42 573.487 1055.42C575.863 1055.42 577.975 1055.92 579.823 1056.92C581.671 1057.92 583.109 1059.34 584.135 1061.19C585.191 1063.04 585.719 1065.19 585.719 1067.66ZM578.019 1065.68C578.019 1064.39 577.579 1063.36 576.699 1062.6C575.819 1061.83 574.719 1061.45 573.399 1061.45C572.138 1061.45 571.067 1061.82 570.187 1062.55C569.337 1063.29 568.809 1064.33 568.603 1065.68H578.019Z" fill="#233562"/>
|
|
||||||
<path d="M604.649 1055.51C607.523 1055.51 609.811 1056.45 611.513 1058.33C613.243 1060.18 614.109 1062.73 614.109 1065.98V1080.33H606.629V1067C606.629 1065.35 606.203 1064.08 605.353 1063.17C604.502 1062.26 603.358 1061.8 601.921 1061.8C600.483 1061.8 599.339 1062.26 598.489 1063.17C597.638 1064.08 597.213 1065.35 597.213 1067V1080.33H589.689V1055.78H597.213V1059.03C597.975 1057.95 599.002 1057.1 600.293 1056.48C601.583 1055.83 603.035 1055.51 604.649 1055.51Z" fill="#233562"/>
|
|
||||||
<path d="M617.841 1068.05C617.841 1065.5 618.354 1063.27 619.381 1061.36C620.437 1059.46 621.889 1057.99 623.737 1056.96C625.614 1055.94 627.756 1055.42 630.161 1055.42C633.241 1055.42 635.808 1056.23 637.861 1057.84C639.944 1059.46 641.308 1061.73 641.953 1064.66H633.945C633.27 1062.79 631.965 1061.85 630.029 1061.85C628.65 1061.85 627.55 1062.39 626.729 1063.48C625.908 1064.53 625.497 1066.06 625.497 1068.05C625.497 1070.05 625.908 1071.59 626.729 1072.67C627.55 1073.73 628.65 1074.26 630.029 1074.26C631.965 1074.26 633.27 1073.32 633.945 1071.44H641.953C641.308 1074.31 639.944 1076.57 637.861 1078.22C635.778 1079.86 633.212 1080.68 630.161 1080.68C627.756 1080.68 625.614 1080.17 623.737 1079.14C621.889 1078.11 620.437 1076.65 619.381 1074.74C618.354 1072.83 617.841 1070.6 617.841 1068.05Z" fill="#233562"/>
|
|
||||||
<path d="M669.122 1067.66C669.122 1068.36 669.078 1069.09 668.99 1069.86H651.962C652.079 1071.38 652.563 1072.55 653.414 1073.38C654.294 1074.17 655.364 1074.56 656.626 1074.56C658.503 1074.56 659.808 1073.77 660.542 1072.19H668.55C668.139 1073.8 667.391 1075.25 666.306 1076.54C665.25 1077.83 663.915 1078.85 662.302 1079.58C660.688 1080.31 658.884 1080.68 656.89 1080.68C654.484 1080.68 652.343 1080.17 650.466 1079.14C648.588 1078.11 647.122 1076.65 646.066 1074.74C645.01 1072.83 644.482 1070.6 644.482 1068.05C644.482 1065.5 644.995 1063.27 646.022 1061.36C647.078 1059.46 648.544 1057.99 650.422 1056.96C652.299 1055.94 654.455 1055.42 656.89 1055.42C659.266 1055.42 661.378 1055.92 663.226 1056.92C665.074 1057.92 666.511 1059.34 667.538 1061.19C668.594 1063.04 669.122 1065.19 669.122 1067.66ZM661.422 1065.68C661.422 1064.39 660.982 1063.36 660.102 1062.6C659.222 1061.83 658.122 1061.45 656.802 1061.45C655.54 1061.45 654.47 1061.82 653.59 1062.55C652.739 1063.29 652.211 1064.33 652.006 1065.68H661.422Z" fill="#233562"/>
|
|
||||||
<path d="M680.615 1059.87C681.495 1058.52 682.595 1057.46 683.915 1056.7C685.235 1055.91 686.702 1055.51 688.315 1055.51V1063.48H686.247C684.37 1063.48 682.962 1063.89 682.023 1064.71C681.084 1065.5 680.615 1066.91 680.615 1068.93V1080.33H673.091V1055.78H680.615V1059.87Z" fill="#233562"/>
|
|
||||||
<path d="M454.551 1184.27C453.011 1184.27 451.611 1183.92 450.351 1183.22C449.111 1182.52 448.131 1181.53 447.411 1180.25C446.711 1178.95 446.361 1177.45 446.361 1175.75C446.361 1174.07 446.721 1172.59 447.441 1171.31C448.181 1170.01 449.181 1169.02 450.441 1168.34C451.701 1167.64 453.111 1167.29 454.671 1167.29C456.231 1167.29 457.641 1167.64 458.901 1168.34C460.161 1169.02 461.151 1170 461.871 1171.28C462.611 1172.56 462.981 1174.05 462.981 1175.75C462.981 1177.45 462.601 1178.95 461.841 1180.25C461.101 1181.53 460.091 1182.52 458.811 1183.22C457.531 1183.92 456.111 1184.27 454.551 1184.27ZM454.551 1181.87C455.531 1181.87 456.451 1181.64 457.311 1181.18C458.171 1180.72 458.861 1180.03 459.381 1179.11C459.921 1178.19 460.191 1177.07 460.191 1175.75C460.191 1174.43 459.931 1173.31 459.411 1172.39C458.891 1171.47 458.211 1170.79 457.371 1170.35C456.531 1169.89 455.621 1169.66 454.641 1169.66C453.641 1169.66 452.721 1169.89 451.881 1170.35C451.061 1170.79 450.401 1171.47 449.901 1172.39C449.401 1173.31 449.151 1174.43 449.151 1175.75C449.151 1177.09 449.391 1178.22 449.871 1179.14C450.371 1180.06 451.031 1180.75 451.851 1181.21C452.671 1181.65 453.571 1181.87 454.551 1181.87Z" fill="#617ABE"/>
|
|
||||||
<path d="M469.3 1170.23C469.78 1169.29 470.46 1168.56 471.34 1168.04C472.24 1167.52 473.33 1167.26 474.61 1167.26V1170.08H473.89C470.83 1170.08 469.3 1171.74 469.3 1175.06V1184H466.57V1167.56H469.3V1170.23Z" fill="#617ABE"/>
|
|
||||||
<path d="M476.741 1175.72C476.741 1174.04 477.081 1172.57 477.761 1171.31C478.441 1170.03 479.371 1169.04 480.551 1168.34C481.751 1167.64 483.091 1167.29 484.571 1167.29C485.851 1167.29 487.041 1167.59 488.141 1168.19C489.241 1168.77 490.081 1169.54 490.661 1170.5V1161.8H493.421V1184H490.661V1180.91C490.121 1181.89 489.321 1182.7 488.261 1183.34C487.201 1183.96 485.961 1184.27 484.541 1184.27C483.081 1184.27 481.751 1183.91 480.551 1183.19C479.371 1182.47 478.441 1181.46 477.761 1180.16C477.081 1178.86 476.741 1177.38 476.741 1175.72ZM490.661 1175.75C490.661 1174.51 490.411 1173.43 489.911 1172.51C489.411 1171.59 488.731 1170.89 487.871 1170.41C487.031 1169.91 486.101 1169.66 485.081 1169.66C484.061 1169.66 483.131 1169.9 482.291 1170.38C481.451 1170.86 480.781 1171.56 480.281 1172.48C479.781 1173.4 479.531 1174.48 479.531 1175.72C479.531 1176.98 479.781 1178.08 480.281 1179.02C480.781 1179.94 481.451 1180.65 482.291 1181.15C483.131 1181.63 484.061 1181.87 485.081 1181.87C486.101 1181.87 487.031 1181.63 487.871 1181.15C488.731 1180.65 489.411 1179.94 489.911 1179.02C490.411 1178.08 490.661 1176.99 490.661 1175.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M513.035 1175.15C513.035 1175.67 513.005 1176.22 512.945 1176.8H499.805C499.905 1178.42 500.455 1179.69 501.455 1180.61C502.475 1181.51 503.705 1181.96 505.145 1181.96C506.325 1181.96 507.305 1181.69 508.085 1181.15C508.885 1180.59 509.445 1179.85 509.765 1178.93H512.705C512.265 1180.51 511.385 1181.8 510.065 1182.8C508.745 1183.78 507.105 1184.27 505.145 1184.27C503.585 1184.27 502.185 1183.92 500.945 1183.22C499.725 1182.52 498.765 1181.53 498.065 1180.25C497.365 1178.95 497.015 1177.45 497.015 1175.75C497.015 1174.05 497.355 1172.56 498.035 1171.28C498.715 1170 499.665 1169.02 500.885 1168.34C502.125 1167.64 503.545 1167.29 505.145 1167.29C506.705 1167.29 508.085 1167.63 509.285 1168.31C510.485 1168.99 511.405 1169.93 512.045 1171.13C512.705 1172.31 513.035 1173.65 513.035 1175.15ZM510.215 1174.58C510.215 1173.54 509.985 1172.65 509.525 1171.91C509.065 1171.15 508.435 1170.58 507.635 1170.2C506.855 1169.8 505.985 1169.6 505.025 1169.6C503.645 1169.6 502.465 1170.04 501.485 1170.92C500.525 1171.8 499.975 1173.02 499.835 1174.58H510.215Z" fill="#617ABE"/>
|
|
||||||
<path d="M519.368 1170.23C519.848 1169.29 520.528 1168.56 521.408 1168.04C522.308 1167.52 523.398 1167.26 524.678 1167.26V1170.08H523.958C520.898 1170.08 519.368 1171.74 519.368 1175.06V1184H516.638V1167.56H519.368V1170.23Z" fill="#617ABE"/>
|
|
||||||
<path d="M533.65 1184.27C532.39 1184.27 531.26 1184.06 530.26 1183.64C529.26 1183.2 528.47 1182.6 527.89 1181.84C527.31 1181.06 526.99 1180.17 526.93 1179.17H529.75C529.83 1179.99 530.21 1180.66 530.89 1181.18C531.59 1181.7 532.5 1181.96 533.62 1181.96C534.66 1181.96 535.48 1181.73 536.08 1181.27C536.68 1180.81 536.98 1180.23 536.98 1179.53C536.98 1178.81 536.66 1178.28 536.02 1177.94C535.38 1177.58 534.39 1177.23 533.05 1176.89C531.83 1176.57 530.83 1176.25 530.05 1175.93C529.29 1175.59 528.63 1175.1 528.07 1174.46C527.53 1173.8 527.26 1172.94 527.26 1171.88C527.26 1171.04 527.51 1170.27 528.01 1169.57C528.51 1168.87 529.22 1168.32 530.14 1167.92C531.06 1167.5 532.11 1167.29 533.29 1167.29C535.11 1167.29 536.58 1167.75 537.7 1168.67C538.82 1169.59 539.42 1170.85 539.5 1172.45H536.77C536.71 1171.59 536.36 1170.9 535.72 1170.38C535.1 1169.86 534.26 1169.6 533.2 1169.6C532.22 1169.6 531.44 1169.81 530.86 1170.23C530.28 1170.65 529.99 1171.2 529.99 1171.88C529.99 1172.42 530.16 1172.87 530.5 1173.23C530.86 1173.57 531.3 1173.85 531.82 1174.07C532.36 1174.27 533.1 1174.5 534.04 1174.76C535.22 1175.08 536.18 1175.4 536.92 1175.72C537.66 1176.02 538.29 1176.48 538.81 1177.1C539.35 1177.72 539.63 1178.53 539.65 1179.53C539.65 1180.43 539.4 1181.24 538.9 1181.96C538.4 1182.68 537.69 1183.25 536.77 1183.67C535.87 1184.07 534.83 1184.27 533.65 1184.27Z" fill="#617ABE"/>
|
|
||||||
<path d="M552.912 1164.89C552.392 1164.89 551.952 1164.71 551.592 1164.35C551.232 1163.99 551.052 1163.55 551.052 1163.03C551.052 1162.51 551.232 1162.07 551.592 1161.71C551.952 1161.35 552.392 1161.17 552.912 1161.17C553.412 1161.17 553.832 1161.35 554.172 1161.71C554.532 1162.07 554.712 1162.51 554.712 1163.03C554.712 1163.55 554.532 1163.99 554.172 1164.35C553.832 1164.71 553.412 1164.89 552.912 1164.89ZM554.232 1167.56V1184H551.502V1167.56H554.232Z" fill="#617ABE"/>
|
|
||||||
<path d="M566.895 1167.26C568.895 1167.26 570.515 1167.87 571.755 1169.09C572.995 1170.29 573.614 1172.03 573.614 1174.31V1184H570.914V1174.7C570.914 1173.06 570.504 1171.81 569.684 1170.95C568.864 1170.07 567.744 1169.63 566.324 1169.63C564.884 1169.63 563.734 1170.08 562.874 1170.98C562.034 1171.88 561.614 1173.19 561.614 1174.91V1184H558.884V1167.56H561.614V1169.9C562.154 1169.06 562.884 1168.41 563.804 1167.95C564.744 1167.49 565.775 1167.26 566.895 1167.26Z" fill="#617ABE"/>
|
|
||||||
<path d="M577.054 1175.75C577.054 1174.05 577.394 1172.57 578.074 1171.31C578.754 1170.03 579.694 1169.04 580.894 1168.34C582.114 1167.64 583.504 1167.29 585.064 1167.29C587.084 1167.29 588.744 1167.78 590.044 1168.76C591.364 1169.74 592.234 1171.1 592.654 1172.84H589.714C589.434 1171.84 588.884 1171.05 588.064 1170.47C587.264 1169.89 586.264 1169.6 585.064 1169.6C583.504 1169.6 582.244 1170.14 581.284 1171.22C580.324 1172.28 579.844 1173.79 579.844 1175.75C579.844 1177.73 580.324 1179.26 581.284 1180.34C582.244 1181.42 583.504 1181.96 585.064 1181.96C586.264 1181.96 587.264 1181.68 588.064 1181.12C588.864 1180.56 589.414 1179.76 589.714 1178.72H592.654C592.214 1180.4 591.334 1181.75 590.014 1182.77C588.694 1183.77 587.044 1184.27 585.064 1184.27C583.504 1184.27 582.114 1183.92 580.894 1183.22C579.694 1182.52 578.754 1181.53 578.074 1180.25C577.394 1178.97 577.054 1177.47 577.054 1175.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M603.467 1184.27C601.927 1184.27 600.527 1183.92 599.267 1183.22C598.027 1182.52 597.047 1181.53 596.327 1180.25C595.627 1178.95 595.277 1177.45 595.277 1175.75C595.277 1174.07 595.637 1172.59 596.357 1171.31C597.097 1170.01 598.097 1169.02 599.357 1168.34C600.617 1167.64 602.027 1167.29 603.587 1167.29C605.147 1167.29 606.557 1167.64 607.817 1168.34C609.077 1169.02 610.067 1170 610.787 1171.28C611.527 1172.56 611.897 1174.05 611.897 1175.75C611.897 1177.45 611.517 1178.95 610.757 1180.25C610.017 1181.53 609.007 1182.52 607.727 1183.22C606.447 1183.92 605.027 1184.27 603.467 1184.27ZM603.467 1181.87C604.447 1181.87 605.367 1181.64 606.227 1181.18C607.087 1180.72 607.777 1180.03 608.297 1179.11C608.837 1178.19 609.107 1177.07 609.107 1175.75C609.107 1174.43 608.847 1173.31 608.327 1172.39C607.807 1171.47 607.127 1170.79 606.287 1170.35C605.447 1169.89 604.537 1169.66 603.557 1169.66C602.557 1169.66 601.637 1169.89 600.797 1170.35C599.977 1170.79 599.317 1171.47 598.817 1172.39C598.317 1173.31 598.067 1174.43 598.067 1175.75C598.067 1177.09 598.307 1178.22 598.787 1179.14C599.287 1180.06 599.947 1180.75 600.767 1181.21C601.587 1181.65 602.487 1181.87 603.467 1181.87Z" fill="#617ABE"/>
|
|
||||||
<path d="M635.256 1167.26C636.536 1167.26 637.676 1167.53 638.676 1168.07C639.676 1168.59 640.466 1169.38 641.046 1170.44C641.626 1171.5 641.916 1172.79 641.916 1174.31V1184H639.216V1174.7C639.216 1173.06 638.806 1171.81 637.986 1170.95C637.186 1170.07 636.096 1169.63 634.716 1169.63C633.296 1169.63 632.166 1170.09 631.326 1171.01C630.486 1171.91 630.066 1173.22 630.066 1174.94V1184H627.366V1174.7C627.366 1173.06 626.956 1171.81 626.136 1170.95C625.336 1170.07 624.246 1169.63 622.866 1169.63C621.446 1169.63 620.316 1170.09 619.476 1171.01C618.636 1171.91 618.216 1173.22 618.216 1174.94V1184H615.486V1167.56H618.216V1169.93C618.756 1169.07 619.476 1168.41 620.376 1167.95C621.296 1167.49 622.306 1167.26 623.406 1167.26C624.786 1167.26 626.006 1167.57 627.066 1168.19C628.126 1168.81 628.916 1169.72 629.436 1170.92C629.896 1169.76 630.656 1168.86 631.716 1168.22C632.776 1167.58 633.956 1167.26 635.256 1167.26Z" fill="#617ABE"/>
|
|
||||||
<path d="M647.804 1164.89C647.284 1164.89 646.844 1164.71 646.484 1164.35C646.124 1163.99 645.944 1163.55 645.944 1163.03C645.944 1162.51 646.124 1162.07 646.484 1161.71C646.844 1161.35 647.284 1161.17 647.804 1161.17C648.304 1161.17 648.724 1161.35 649.064 1161.71C649.424 1162.07 649.604 1162.51 649.604 1163.03C649.604 1163.55 649.424 1163.99 649.064 1164.35C648.724 1164.71 648.304 1164.89 647.804 1164.89ZM649.124 1167.56V1184H646.394V1167.56H649.124Z" fill="#617ABE"/>
|
|
||||||
<path d="M661.787 1167.26C663.787 1167.26 665.407 1167.87 666.647 1169.09C667.887 1170.29 668.507 1172.03 668.507 1174.31V1184H665.807V1174.7C665.807 1173.06 665.397 1171.81 664.577 1170.95C663.757 1170.07 662.637 1169.63 661.217 1169.63C659.777 1169.63 658.627 1170.08 657.767 1170.98C656.927 1171.88 656.507 1173.19 656.507 1174.91V1184H653.777V1167.56H656.507V1169.9C657.047 1169.06 657.777 1168.41 658.697 1167.95C659.637 1167.49 660.667 1167.26 661.787 1167.26Z" fill="#617ABE"/>
|
|
||||||
<path d="M679.747 1167.29C681.167 1167.29 682.407 1167.6 683.467 1168.22C684.547 1168.84 685.347 1169.62 685.867 1170.56V1167.56H688.627V1184.36C688.627 1185.86 688.307 1187.19 687.667 1188.35C687.027 1189.53 686.107 1190.45 684.907 1191.11C683.727 1191.77 682.347 1192.1 680.767 1192.1C678.607 1192.1 676.807 1191.59 675.367 1190.57C673.927 1189.55 673.077 1188.16 672.817 1186.4H675.517C675.817 1187.4 676.437 1188.2 677.377 1188.8C678.317 1189.42 679.447 1189.73 680.767 1189.73C682.267 1189.73 683.487 1189.26 684.427 1188.32C685.387 1187.38 685.867 1186.06 685.867 1184.36V1180.91C685.327 1181.87 684.527 1182.67 683.467 1183.31C682.407 1183.95 681.167 1184.27 679.747 1184.27C678.287 1184.27 676.957 1183.91 675.757 1183.19C674.577 1182.47 673.647 1181.46 672.967 1180.16C672.287 1178.86 671.947 1177.38 671.947 1175.72C671.947 1174.04 672.287 1172.57 672.967 1171.31C673.647 1170.03 674.577 1169.04 675.757 1168.34C676.957 1167.64 678.287 1167.29 679.747 1167.29ZM685.867 1175.75C685.867 1174.51 685.617 1173.43 685.117 1172.51C684.617 1171.59 683.937 1170.89 683.077 1170.41C682.237 1169.91 681.307 1169.66 680.287 1169.66C679.267 1169.66 678.337 1169.9 677.497 1170.38C676.657 1170.86 675.987 1171.56 675.487 1172.48C674.987 1173.4 674.737 1174.48 674.737 1175.72C674.737 1176.98 674.987 1178.08 675.487 1179.02C675.987 1179.94 676.657 1180.65 677.497 1181.15C678.337 1181.63 679.267 1181.87 680.287 1181.87C681.307 1181.87 682.237 1181.63 683.077 1181.15C683.937 1180.65 684.617 1179.94 685.117 1179.02C685.617 1178.08 685.867 1176.99 685.867 1175.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M390.725 1214.81V1224.5C390.725 1225.3 390.895 1225.87 391.235 1226.21C391.575 1226.53 392.165 1226.69 393.005 1226.69H395.015V1229H392.555C391.035 1229 389.895 1228.65 389.135 1227.95C388.375 1227.25 387.995 1226.1 387.995 1224.5V1214.81H385.865V1212.56H387.995V1208.42H390.725V1212.56H395.015V1214.81H390.725Z" fill="#617ABE"/>
|
|
||||||
<path d="M401.053 1215.23C401.533 1214.29 402.213 1213.56 403.093 1213.04C403.993 1212.52 405.083 1212.26 406.363 1212.26V1215.08H405.643C402.583 1215.08 401.053 1216.74 401.053 1220.06V1229H398.323V1212.56H401.053V1215.23Z" fill="#617ABE"/>
|
|
||||||
<path d="M408.494 1220.72C408.494 1219.04 408.834 1217.57 409.514 1216.31C410.194 1215.03 411.124 1214.04 412.304 1213.34C413.504 1212.64 414.834 1212.29 416.294 1212.29C417.734 1212.29 418.984 1212.6 420.044 1213.22C421.104 1213.84 421.894 1214.62 422.414 1215.56V1212.56H425.174V1229H422.414V1225.94C421.874 1226.9 421.064 1227.7 419.984 1228.34C418.924 1228.96 417.684 1229.27 416.264 1229.27C414.804 1229.27 413.484 1228.91 412.304 1228.19C411.124 1227.47 410.194 1226.46 409.514 1225.16C408.834 1223.86 408.494 1222.38 408.494 1220.72ZM422.414 1220.75C422.414 1219.51 422.164 1218.43 421.664 1217.51C421.164 1216.59 420.484 1215.89 419.624 1215.41C418.784 1214.91 417.854 1214.66 416.834 1214.66C415.814 1214.66 414.884 1214.9 414.044 1215.38C413.204 1215.86 412.534 1216.56 412.034 1217.48C411.534 1218.4 411.284 1219.48 411.284 1220.72C411.284 1221.98 411.534 1223.08 412.034 1224.02C412.534 1224.94 413.204 1225.65 414.044 1226.15C414.884 1226.63 415.814 1226.87 416.834 1226.87C417.854 1226.87 418.784 1226.63 419.624 1226.15C420.484 1225.65 421.164 1224.94 421.664 1224.02C422.164 1223.08 422.414 1221.99 422.414 1220.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M437.798 1212.26C439.798 1212.26 441.418 1212.87 442.658 1214.09C443.898 1215.29 444.518 1217.03 444.518 1219.31V1229H441.818V1219.7C441.818 1218.06 441.408 1216.81 440.588 1215.95C439.768 1215.07 438.648 1214.63 437.228 1214.63C435.788 1214.63 434.638 1215.08 433.778 1215.98C432.938 1216.88 432.518 1218.19 432.518 1219.91V1229H429.788V1212.56H432.518V1214.9C433.058 1214.06 433.788 1213.41 434.708 1212.95C435.648 1212.49 436.678 1212.26 437.798 1212.26Z" fill="#617ABE"/>
|
|
||||||
<path d="M454.797 1229.27C453.537 1229.27 452.407 1229.06 451.407 1228.64C450.407 1228.2 449.617 1227.6 449.037 1226.84C448.457 1226.06 448.137 1225.17 448.077 1224.17H450.897C450.977 1224.99 451.357 1225.66 452.037 1226.18C452.737 1226.7 453.647 1226.96 454.767 1226.96C455.807 1226.96 456.627 1226.73 457.227 1226.27C457.827 1225.81 458.127 1225.23 458.127 1224.53C458.127 1223.81 457.807 1223.28 457.167 1222.94C456.527 1222.58 455.537 1222.23 454.197 1221.89C452.977 1221.57 451.977 1221.25 451.197 1220.93C450.437 1220.59 449.777 1220.1 449.217 1219.46C448.677 1218.8 448.407 1217.94 448.407 1216.88C448.407 1216.04 448.657 1215.27 449.157 1214.57C449.657 1213.87 450.367 1213.32 451.287 1212.92C452.207 1212.5 453.257 1212.29 454.437 1212.29C456.257 1212.29 457.727 1212.75 458.847 1213.67C459.967 1214.59 460.567 1215.85 460.647 1217.45H457.917C457.857 1216.59 457.507 1215.9 456.867 1215.38C456.247 1214.86 455.407 1214.6 454.347 1214.6C453.367 1214.6 452.587 1214.81 452.007 1215.23C451.427 1215.65 451.137 1216.2 451.137 1216.88C451.137 1217.42 451.307 1217.87 451.647 1218.23C452.007 1218.57 452.447 1218.85 452.967 1219.07C453.507 1219.27 454.247 1219.5 455.187 1219.76C456.367 1220.08 457.327 1220.4 458.067 1220.72C458.807 1221.02 459.437 1221.48 459.957 1222.1C460.497 1222.72 460.777 1223.53 460.797 1224.53C460.797 1225.43 460.547 1226.24 460.047 1226.96C459.547 1227.68 458.837 1228.25 457.917 1228.67C457.017 1229.07 455.977 1229.27 454.797 1229.27Z" fill="#617ABE"/>
|
|
||||||
<path d="M463.631 1220.72C463.631 1219.04 463.971 1217.57 464.651 1216.31C465.331 1215.03 466.261 1214.04 467.441 1213.34C468.641 1212.64 469.971 1212.29 471.431 1212.29C472.871 1212.29 474.121 1212.6 475.181 1213.22C476.241 1213.84 477.031 1214.62 477.551 1215.56V1212.56H480.311V1229H477.551V1225.94C477.011 1226.9 476.201 1227.7 475.121 1228.34C474.061 1228.96 472.821 1229.27 471.401 1229.27C469.941 1229.27 468.621 1228.91 467.441 1228.19C466.261 1227.47 465.331 1226.46 464.651 1225.16C463.971 1223.86 463.631 1222.38 463.631 1220.72ZM477.551 1220.75C477.551 1219.51 477.301 1218.43 476.801 1217.51C476.301 1216.59 475.621 1215.89 474.761 1215.41C473.921 1214.91 472.991 1214.66 471.971 1214.66C470.951 1214.66 470.021 1214.9 469.181 1215.38C468.341 1215.86 467.671 1216.56 467.171 1217.48C466.671 1218.4 466.421 1219.48 466.421 1220.72C466.421 1221.98 466.671 1223.08 467.171 1224.02C467.671 1224.94 468.341 1225.65 469.181 1226.15C470.021 1226.63 470.951 1226.87 471.971 1226.87C472.991 1226.87 473.921 1226.63 474.761 1226.15C475.621 1225.65 476.301 1224.94 476.801 1224.02C477.301 1223.08 477.551 1221.99 477.551 1220.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M483.905 1220.75C483.905 1219.05 484.245 1217.57 484.925 1216.31C485.605 1215.03 486.545 1214.04 487.745 1213.34C488.965 1212.64 490.355 1212.29 491.915 1212.29C493.935 1212.29 495.595 1212.78 496.895 1213.76C498.215 1214.74 499.085 1216.1 499.505 1217.84H496.565C496.285 1216.84 495.735 1216.05 494.915 1215.47C494.115 1214.89 493.115 1214.6 491.915 1214.6C490.355 1214.6 489.095 1215.14 488.135 1216.22C487.175 1217.28 486.695 1218.79 486.695 1220.75C486.695 1222.73 487.175 1224.26 488.135 1225.34C489.095 1226.42 490.355 1226.96 491.915 1226.96C493.115 1226.96 494.115 1226.68 494.915 1226.12C495.715 1225.56 496.265 1224.76 496.565 1223.72H499.505C499.065 1225.4 498.185 1226.75 496.865 1227.77C495.545 1228.77 493.895 1229.27 491.915 1229.27C490.355 1229.27 488.965 1228.92 487.745 1228.22C486.545 1227.52 485.605 1226.53 484.925 1225.25C484.245 1223.97 483.905 1222.47 483.905 1220.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M506.477 1214.81V1224.5C506.477 1225.3 506.647 1225.87 506.987 1226.21C507.327 1226.53 507.917 1226.69 508.757 1226.69H510.767V1229H508.307C506.787 1229 505.647 1228.65 504.887 1227.95C504.127 1227.25 503.747 1226.1 503.747 1224.5V1214.81H501.617V1212.56H503.747V1208.42H506.477V1212.56H510.767V1214.81H506.477Z" fill="#617ABE"/>
|
|
||||||
<path d="M515.485 1209.89C514.965 1209.89 514.525 1209.71 514.165 1209.35C513.805 1208.99 513.625 1208.55 513.625 1208.03C513.625 1207.51 513.805 1207.07 514.165 1206.71C514.525 1206.35 514.965 1206.17 515.485 1206.17C515.985 1206.17 516.405 1206.35 516.745 1206.71C517.105 1207.07 517.285 1207.51 517.285 1208.03C517.285 1208.55 517.105 1208.99 516.745 1209.35C516.405 1209.71 515.985 1209.89 515.485 1209.89ZM516.805 1212.56V1229H514.075V1212.56H516.805Z" fill="#617ABE"/>
|
|
||||||
<path d="M528.628 1229.27C527.088 1229.27 525.688 1228.92 524.428 1228.22C523.188 1227.52 522.208 1226.53 521.488 1225.25C520.788 1223.95 520.438 1222.45 520.438 1220.75C520.438 1219.07 520.798 1217.59 521.518 1216.31C522.258 1215.01 523.258 1214.02 524.518 1213.34C525.778 1212.64 527.188 1212.29 528.748 1212.29C530.308 1212.29 531.718 1212.64 532.978 1213.34C534.238 1214.02 535.228 1215 535.948 1216.28C536.688 1217.56 537.058 1219.05 537.058 1220.75C537.058 1222.45 536.678 1223.95 535.918 1225.25C535.178 1226.53 534.168 1227.52 532.888 1228.22C531.608 1228.92 530.188 1229.27 528.628 1229.27ZM528.628 1226.87C529.608 1226.87 530.528 1226.64 531.388 1226.18C532.248 1225.72 532.938 1225.03 533.458 1224.11C533.998 1223.19 534.268 1222.07 534.268 1220.75C534.268 1219.43 534.008 1218.31 533.488 1217.39C532.968 1216.47 532.288 1215.79 531.448 1215.35C530.608 1214.89 529.698 1214.66 528.718 1214.66C527.718 1214.66 526.798 1214.89 525.958 1215.35C525.138 1215.79 524.478 1216.47 523.978 1217.39C523.478 1218.31 523.228 1219.43 523.228 1220.75C523.228 1222.09 523.468 1223.22 523.948 1224.14C524.448 1225.06 525.108 1225.75 525.928 1226.21C526.748 1226.65 527.648 1226.87 528.628 1226.87Z" fill="#617ABE"/>
|
|
||||||
<path d="M548.657 1212.26C550.657 1212.26 552.277 1212.87 553.517 1214.09C554.757 1215.29 555.377 1217.03 555.377 1219.31V1229H552.677V1219.7C552.677 1218.06 552.267 1216.81 551.447 1215.95C550.627 1215.07 549.507 1214.63 548.087 1214.63C546.647 1214.63 545.497 1215.08 544.637 1215.98C543.797 1216.88 543.377 1218.19 543.377 1219.91V1229H540.647V1212.56H543.377V1214.9C543.917 1214.06 544.647 1213.41 545.567 1212.95C546.507 1212.49 547.537 1212.26 548.657 1212.26Z" fill="#617ABE"/>
|
|
||||||
<path d="M565.657 1229.27C564.397 1229.27 563.267 1229.06 562.267 1228.64C561.267 1228.2 560.477 1227.6 559.897 1226.84C559.317 1226.06 558.997 1225.17 558.937 1224.17H561.757C561.837 1224.99 562.217 1225.66 562.897 1226.18C563.597 1226.7 564.507 1226.96 565.627 1226.96C566.667 1226.96 567.487 1226.73 568.087 1226.27C568.687 1225.81 568.987 1225.23 568.987 1224.53C568.987 1223.81 568.667 1223.28 568.027 1222.94C567.387 1222.58 566.397 1222.23 565.057 1221.89C563.837 1221.57 562.837 1221.25 562.057 1220.93C561.297 1220.59 560.637 1220.1 560.077 1219.46C559.537 1218.8 559.267 1217.94 559.267 1216.88C559.267 1216.04 559.517 1215.27 560.017 1214.57C560.517 1213.87 561.227 1213.32 562.147 1212.92C563.067 1212.5 564.117 1212.29 565.297 1212.29C567.117 1212.29 568.587 1212.75 569.707 1213.67C570.827 1214.59 571.427 1215.85 571.507 1217.45H568.777C568.717 1216.59 568.367 1215.9 567.727 1215.38C567.107 1214.86 566.267 1214.6 565.207 1214.6C564.227 1214.6 563.447 1214.81 562.867 1215.23C562.287 1215.65 561.997 1216.2 561.997 1216.88C561.997 1217.42 562.167 1217.87 562.507 1218.23C562.867 1218.57 563.307 1218.85 563.827 1219.07C564.367 1219.27 565.107 1219.5 566.047 1219.76C567.227 1220.08 568.187 1220.4 568.927 1220.72C569.667 1221.02 570.297 1221.48 570.817 1222.1C571.357 1222.72 571.637 1223.53 571.657 1224.53C571.657 1225.43 571.407 1226.24 570.907 1226.96C570.407 1227.68 569.697 1228.25 568.777 1228.67C567.877 1229.07 566.837 1229.27 565.657 1229.27Z" fill="#617ABE"/>
|
|
||||||
<path d="M586.239 1215.62C586.799 1214.64 587.619 1213.84 588.699 1213.22C589.779 1212.6 591.009 1212.29 592.389 1212.29C593.869 1212.29 595.199 1212.64 596.379 1213.34C597.559 1214.04 598.489 1215.03 599.169 1216.31C599.849 1217.57 600.189 1219.04 600.189 1220.72C600.189 1222.38 599.849 1223.86 599.169 1225.16C598.489 1226.46 597.549 1227.47 596.349 1228.19C595.169 1228.91 593.849 1229.27 592.389 1229.27C590.969 1229.27 589.719 1228.96 588.639 1228.34C587.579 1227.72 586.779 1226.93 586.239 1225.97V1229H583.509V1206.8H586.239V1215.62ZM597.399 1220.72C597.399 1219.48 597.149 1218.4 596.649 1217.48C596.149 1216.56 595.469 1215.86 594.609 1215.38C593.769 1214.9 592.839 1214.66 591.819 1214.66C590.819 1214.66 589.889 1214.91 589.029 1215.41C588.189 1215.89 587.509 1216.6 586.989 1217.54C586.489 1218.46 586.239 1219.53 586.239 1220.75C586.239 1221.99 586.489 1223.08 586.989 1224.02C587.509 1224.94 588.189 1225.65 589.029 1226.15C589.889 1226.63 590.819 1226.87 591.819 1226.87C592.839 1226.87 593.769 1226.63 594.609 1226.15C595.469 1225.65 596.149 1224.94 596.649 1224.02C597.149 1223.08 597.399 1221.98 597.399 1220.72Z" fill="#617ABE"/>
|
|
||||||
<path d="M617.942 1212.56L608.042 1236.74H605.222L608.462 1228.82L601.832 1212.56H604.862L610.022 1225.88L615.122 1212.56H617.942Z" fill="#617ABE"/>
|
|
||||||
<path d="M632.014 1214.81V1224.5C632.014 1225.3 632.184 1225.87 632.524 1226.21C632.864 1226.53 633.454 1226.69 634.294 1226.69H636.304V1229H633.844C632.324 1229 631.184 1228.65 630.424 1227.95C629.664 1227.25 629.284 1226.1 629.284 1224.5V1214.81H627.154V1212.56H629.284V1208.42H632.014V1212.56H636.304V1214.81H632.014Z" fill="#617ABE"/>
|
|
||||||
<path d="M647.772 1212.26C649.012 1212.26 650.132 1212.53 651.132 1213.07C652.132 1213.59 652.912 1214.38 653.472 1215.44C654.052 1216.5 654.342 1217.79 654.342 1219.31V1229H651.642V1219.7C651.642 1218.06 651.232 1216.81 650.412 1215.95C649.592 1215.07 648.472 1214.63 647.052 1214.63C645.612 1214.63 644.462 1215.08 643.602 1215.98C642.762 1216.88 642.342 1218.19 642.342 1219.91V1229H639.612V1206.8H642.342V1214.9C642.882 1214.06 643.622 1213.41 644.562 1212.95C645.522 1212.49 646.592 1212.26 647.772 1212.26Z" fill="#617ABE"/>
|
|
||||||
<path d="M673.801 1220.15C673.801 1220.67 673.771 1221.22 673.711 1221.8H660.571C660.671 1223.42 661.221 1224.69 662.221 1225.61C663.241 1226.51 664.471 1226.96 665.911 1226.96C667.091 1226.96 668.072 1226.69 668.852 1226.15C669.652 1225.59 670.211 1224.85 670.531 1223.93H673.471C673.031 1225.51 672.151 1226.8 670.831 1227.8C669.511 1228.78 667.871 1229.27 665.911 1229.27C664.351 1229.27 662.951 1228.92 661.711 1228.22C660.491 1227.52 659.531 1226.53 658.831 1225.25C658.131 1223.95 657.781 1222.45 657.781 1220.75C657.781 1219.05 658.121 1217.56 658.801 1216.28C659.481 1215 660.431 1214.02 661.651 1213.34C662.891 1212.64 664.311 1212.29 665.911 1212.29C667.471 1212.29 668.851 1212.63 670.051 1213.31C671.251 1213.99 672.171 1214.93 672.811 1216.13C673.471 1217.31 673.801 1218.65 673.801 1220.15ZM670.981 1219.58C670.981 1218.54 670.751 1217.65 670.291 1216.91C669.831 1216.15 669.201 1215.58 668.401 1215.2C667.621 1214.8 666.751 1214.6 665.791 1214.6C664.411 1214.6 663.231 1215.04 662.251 1215.92C661.291 1216.8 660.741 1218.02 660.601 1219.58H670.981Z" fill="#617ABE"/>
|
|
||||||
<path d="M688.733 1214.81V1224.5C688.733 1225.3 688.903 1225.87 689.243 1226.21C689.583 1226.53 690.173 1226.69 691.013 1226.69H693.023V1229H690.563C689.043 1229 687.903 1228.65 687.143 1227.95C686.383 1227.25 686.003 1226.1 686.003 1224.5V1214.81H683.873V1212.56H686.003V1208.42H688.733V1212.56H693.023V1214.81H688.733Z" fill="#617ABE"/>
|
|
||||||
<path d="M697.741 1209.89C697.221 1209.89 696.781 1209.71 696.421 1209.35C696.061 1208.99 695.881 1208.55 695.881 1208.03C695.881 1207.51 696.061 1207.07 696.421 1206.71C696.781 1206.35 697.221 1206.17 697.741 1206.17C698.241 1206.17 698.661 1206.35 699.001 1206.71C699.361 1207.07 699.541 1207.51 699.541 1208.03C699.541 1208.55 699.361 1208.99 699.001 1209.35C698.661 1209.71 698.241 1209.89 697.741 1209.89ZM699.061 1212.56V1229H696.331V1212.56H699.061Z" fill="#617ABE"/>
|
|
||||||
<path d="M723.484 1212.26C724.764 1212.26 725.904 1212.53 726.904 1213.07C727.904 1213.59 728.694 1214.38 729.274 1215.44C729.854 1216.5 730.144 1217.79 730.144 1219.31V1229H727.444V1219.7C727.444 1218.06 727.034 1216.81 726.214 1215.95C725.414 1215.07 724.324 1214.63 722.944 1214.63C721.524 1214.63 720.394 1215.09 719.554 1216.01C718.714 1216.91 718.294 1218.22 718.294 1219.94V1229H715.594V1219.7C715.594 1218.06 715.184 1216.81 714.364 1215.95C713.564 1215.07 712.474 1214.63 711.094 1214.63C709.674 1214.63 708.544 1215.09 707.704 1216.01C706.864 1216.91 706.444 1218.22 706.444 1219.94V1229H703.714V1212.56H706.444V1214.93C706.984 1214.07 707.704 1213.41 708.604 1212.95C709.524 1212.49 710.534 1212.26 711.634 1212.26C713.014 1212.26 714.234 1212.57 715.294 1213.19C716.354 1213.81 717.144 1214.72 717.664 1215.92C718.124 1214.76 718.884 1213.86 719.944 1213.22C721.004 1212.58 722.184 1212.26 723.484 1212.26Z" fill="#617ABE"/>
|
|
||||||
<path d="M749.622 1220.15C749.622 1220.67 749.592 1221.22 749.532 1221.8H736.392C736.492 1223.42 737.042 1224.69 738.042 1225.61C739.062 1226.51 740.292 1226.96 741.732 1226.96C742.912 1226.96 743.892 1226.69 744.672 1226.15C745.472 1225.59 746.032 1224.85 746.352 1223.93H749.292C748.852 1225.51 747.972 1226.8 746.652 1227.8C745.332 1228.78 743.692 1229.27 741.732 1229.27C740.172 1229.27 738.772 1228.92 737.532 1228.22C736.312 1227.52 735.352 1226.53 734.652 1225.25C733.952 1223.95 733.602 1222.45 733.602 1220.75C733.602 1219.05 733.942 1217.56 734.622 1216.28C735.302 1215 736.252 1214.02 737.472 1213.34C738.712 1212.64 740.132 1212.29 741.732 1212.29C743.292 1212.29 744.672 1212.63 745.872 1213.31C747.072 1213.99 747.992 1214.93 748.632 1216.13C749.292 1217.31 749.622 1218.65 749.622 1220.15ZM746.802 1219.58C746.802 1218.54 746.572 1217.65 746.112 1216.91C745.652 1216.15 745.022 1215.58 744.222 1215.2C743.442 1214.8 742.572 1214.6 741.612 1214.6C740.232 1214.6 739.052 1215.04 738.072 1215.92C737.112 1216.8 736.562 1218.02 736.422 1219.58H746.802Z" fill="#617ABE"/>
|
|
||||||
<path d="M473.681 1274.27C472.141 1274.27 470.741 1273.92 469.481 1273.22C468.241 1272.52 467.261 1271.53 466.541 1270.25C465.841 1268.95 465.491 1267.45 465.491 1265.75C465.491 1264.07 465.851 1262.59 466.571 1261.31C467.311 1260.01 468.311 1259.02 469.571 1258.34C470.831 1257.64 472.241 1257.29 473.801 1257.29C475.361 1257.29 476.771 1257.64 478.031 1258.34C479.291 1259.02 480.281 1260 481.001 1261.28C481.741 1262.56 482.111 1264.05 482.111 1265.75C482.111 1267.45 481.731 1268.95 480.971 1270.25C480.231 1271.53 479.221 1272.52 477.941 1273.22C476.661 1273.92 475.241 1274.27 473.681 1274.27ZM473.681 1271.87C474.661 1271.87 475.581 1271.64 476.441 1271.18C477.301 1270.72 477.991 1270.03 478.511 1269.11C479.051 1268.19 479.321 1267.07 479.321 1265.75C479.321 1264.43 479.061 1263.31 478.541 1262.39C478.021 1261.47 477.341 1260.79 476.501 1260.35C475.661 1259.89 474.751 1259.66 473.771 1259.66C472.771 1259.66 471.851 1259.89 471.011 1260.35C470.191 1260.79 469.531 1261.47 469.031 1262.39C468.531 1263.31 468.281 1264.43 468.281 1265.75C468.281 1267.09 468.521 1268.22 469.001 1269.14C469.501 1270.06 470.161 1270.75 470.981 1271.21C471.801 1271.65 472.701 1271.87 473.681 1271.87Z" fill="#617ABE"/>
|
|
||||||
<path d="M492.391 1259.81H488.941V1274H486.211V1259.81H484.081V1257.56H486.211V1256.39C486.211 1254.55 486.681 1253.21 487.621 1252.37C488.581 1251.51 490.111 1251.08 492.211 1251.08V1253.36C491.011 1253.36 490.161 1253.6 489.661 1254.08C489.181 1254.54 488.941 1255.31 488.941 1256.39V1257.56H492.391V1259.81Z" fill="#617ABE"/>
|
|
||||||
<path d="M509.392 1274.27C508.132 1274.27 507.002 1274.06 506.002 1273.64C505.002 1273.2 504.212 1272.6 503.632 1271.84C503.052 1271.06 502.732 1270.17 502.672 1269.17H505.492C505.572 1269.99 505.952 1270.66 506.632 1271.18C507.332 1271.7 508.242 1271.96 509.362 1271.96C510.402 1271.96 511.222 1271.73 511.822 1271.27C512.422 1270.81 512.722 1270.23 512.722 1269.53C512.722 1268.81 512.402 1268.28 511.762 1267.94C511.122 1267.58 510.132 1267.23 508.792 1266.89C507.572 1266.57 506.572 1266.25 505.792 1265.93C505.032 1265.59 504.372 1265.1 503.812 1264.46C503.272 1263.8 503.002 1262.94 503.002 1261.88C503.002 1261.04 503.252 1260.27 503.752 1259.57C504.252 1258.87 504.962 1258.32 505.882 1257.92C506.802 1257.5 507.852 1257.29 509.032 1257.29C510.852 1257.29 512.322 1257.75 513.442 1258.67C514.562 1259.59 515.162 1260.85 515.242 1262.45H512.512C512.452 1261.59 512.102 1260.9 511.462 1260.38C510.842 1259.86 510.002 1259.6 508.942 1259.6C507.962 1259.6 507.182 1259.81 506.602 1260.23C506.022 1260.65 505.732 1261.2 505.732 1261.88C505.732 1262.42 505.902 1262.87 506.242 1263.23C506.602 1263.57 507.042 1263.85 507.562 1264.07C508.102 1264.27 508.842 1264.5 509.782 1264.76C510.962 1265.08 511.922 1265.4 512.662 1265.72C513.402 1266.02 514.032 1266.48 514.552 1267.1C515.092 1267.72 515.372 1268.53 515.392 1269.53C515.392 1270.43 515.142 1271.24 514.642 1271.96C514.142 1272.68 513.432 1273.25 512.512 1273.67C511.612 1274.07 510.572 1274.27 509.392 1274.27Z" fill="#617ABE"/>
|
|
||||||
<path d="M533.826 1257.56V1274H531.096V1271.57C530.576 1272.41 529.846 1273.07 528.906 1273.55C527.986 1274.01 526.966 1274.24 525.846 1274.24C524.566 1274.24 523.416 1273.98 522.396 1273.46C521.376 1272.92 520.566 1272.12 519.966 1271.06C519.386 1270 519.096 1268.71 519.096 1267.19V1257.56H521.796V1266.83C521.796 1268.45 522.206 1269.7 523.026 1270.58C523.846 1271.44 524.966 1271.87 526.386 1271.87C527.846 1271.87 528.996 1271.42 529.836 1270.52C530.676 1269.62 531.096 1268.31 531.096 1266.59V1257.56H533.826Z" fill="#617ABE"/>
|
|
||||||
<path d="M541.165 1260.62C541.725 1259.64 542.545 1258.84 543.625 1258.22C544.705 1257.6 545.935 1257.29 547.315 1257.29C548.795 1257.29 550.125 1257.64 551.305 1258.34C552.485 1259.04 553.415 1260.03 554.095 1261.31C554.775 1262.57 555.115 1264.04 555.115 1265.72C555.115 1267.38 554.775 1268.86 554.095 1270.16C553.415 1271.46 552.475 1272.47 551.275 1273.19C550.095 1273.91 548.775 1274.27 547.315 1274.27C545.895 1274.27 544.645 1273.96 543.565 1273.34C542.505 1272.72 541.705 1271.93 541.165 1270.97V1274H538.435V1251.8H541.165V1260.62ZM552.325 1265.72C552.325 1264.48 552.075 1263.4 551.575 1262.48C551.075 1261.56 550.395 1260.86 549.535 1260.38C548.695 1259.9 547.765 1259.66 546.745 1259.66C545.745 1259.66 544.815 1259.91 543.955 1260.41C543.115 1260.89 542.435 1261.6 541.915 1262.54C541.415 1263.46 541.165 1264.53 541.165 1265.75C541.165 1266.99 541.415 1268.08 541.915 1269.02C542.435 1269.94 543.115 1270.65 543.955 1271.15C544.815 1271.63 545.745 1271.87 546.745 1271.87C547.765 1271.87 548.695 1271.63 549.535 1271.15C550.395 1270.65 551.075 1269.94 551.575 1269.02C552.075 1268.08 552.325 1266.98 552.325 1265.72Z" fill="#617ABE"/>
|
|
||||||
<path d="M578.479 1257.26C579.759 1257.26 580.899 1257.53 581.899 1258.07C582.899 1258.59 583.689 1259.38 584.269 1260.44C584.849 1261.5 585.139 1262.79 585.139 1264.31V1274H582.439V1264.7C582.439 1263.06 582.029 1261.81 581.209 1260.95C580.409 1260.07 579.319 1259.63 577.939 1259.63C576.519 1259.63 575.389 1260.09 574.549 1261.01C573.709 1261.91 573.289 1263.22 573.289 1264.94V1274H570.589V1264.7C570.589 1263.06 570.179 1261.81 569.359 1260.95C568.559 1260.07 567.469 1259.63 566.089 1259.63C564.669 1259.63 563.539 1260.09 562.699 1261.01C561.859 1261.91 561.439 1263.22 561.439 1264.94V1274H558.709V1257.56H561.439V1259.93C561.979 1259.07 562.699 1258.41 563.599 1257.95C564.519 1257.49 565.529 1257.26 566.629 1257.26C568.009 1257.26 569.229 1257.57 570.289 1258.19C571.349 1258.81 572.139 1259.72 572.659 1260.92C573.119 1259.76 573.879 1258.86 574.939 1258.22C575.999 1257.58 577.179 1257.26 578.479 1257.26Z" fill="#617ABE"/>
|
|
||||||
<path d="M591.027 1254.89C590.507 1254.89 590.067 1254.71 589.707 1254.35C589.347 1253.99 589.167 1253.55 589.167 1253.03C589.167 1252.51 589.347 1252.07 589.707 1251.71C590.067 1251.35 590.507 1251.17 591.027 1251.17C591.527 1251.17 591.947 1251.35 592.287 1251.71C592.647 1252.07 592.827 1252.51 592.827 1253.03C592.827 1253.55 592.647 1253.99 592.287 1254.35C591.947 1254.71 591.527 1254.89 591.027 1254.89ZM592.347 1257.56V1274H589.617V1257.56H592.347Z" fill="#617ABE"/>
|
|
||||||
<path d="M602.82 1274.27C601.56 1274.27 600.43 1274.06 599.43 1273.64C598.43 1273.2 597.64 1272.6 597.06 1271.84C596.48 1271.06 596.16 1270.17 596.1 1269.17H598.92C599 1269.99 599.38 1270.66 600.06 1271.18C600.76 1271.7 601.67 1271.96 602.79 1271.96C603.83 1271.96 604.65 1271.73 605.25 1271.27C605.85 1270.81 606.15 1270.23 606.15 1269.53C606.15 1268.81 605.83 1268.28 605.19 1267.94C604.55 1267.58 603.56 1267.23 602.22 1266.89C601 1266.57 600 1266.25 599.22 1265.93C598.46 1265.59 597.8 1265.1 597.24 1264.46C596.7 1263.8 596.43 1262.94 596.43 1261.88C596.43 1261.04 596.68 1260.27 597.18 1259.57C597.68 1258.87 598.39 1258.32 599.31 1257.92C600.23 1257.5 601.28 1257.29 602.46 1257.29C604.28 1257.29 605.75 1257.75 606.87 1258.67C607.99 1259.59 608.59 1260.85 608.67 1262.45H605.94C605.88 1261.59 605.53 1260.9 604.89 1260.38C604.27 1259.86 603.43 1259.6 602.37 1259.6C601.39 1259.6 600.61 1259.81 600.03 1260.23C599.45 1260.65 599.16 1261.2 599.16 1261.88C599.16 1262.42 599.33 1262.87 599.67 1263.23C600.03 1263.57 600.47 1263.85 600.99 1264.07C601.53 1264.27 602.27 1264.5 603.21 1264.76C604.39 1265.08 605.35 1265.4 606.09 1265.72C606.83 1266.02 607.46 1266.48 607.98 1267.1C608.52 1267.72 608.8 1268.53 608.82 1269.53C608.82 1270.43 608.57 1271.24 608.07 1271.96C607.57 1272.68 606.86 1273.25 605.94 1273.67C605.04 1274.07 604 1274.27 602.82 1274.27Z" fill="#617ABE"/>
|
|
||||||
<path d="M618.494 1274.27C617.234 1274.27 616.104 1274.06 615.104 1273.64C614.104 1273.2 613.314 1272.6 612.734 1271.84C612.154 1271.06 611.834 1270.17 611.774 1269.17H614.594C614.674 1269.99 615.054 1270.66 615.734 1271.18C616.434 1271.7 617.344 1271.96 618.464 1271.96C619.504 1271.96 620.324 1271.73 620.924 1271.27C621.524 1270.81 621.824 1270.23 621.824 1269.53C621.824 1268.81 621.504 1268.28 620.864 1267.94C620.224 1267.58 619.234 1267.23 617.894 1266.89C616.674 1266.57 615.674 1266.25 614.894 1265.93C614.134 1265.59 613.474 1265.1 612.914 1264.46C612.374 1263.8 612.104 1262.94 612.104 1261.88C612.104 1261.04 612.354 1260.27 612.854 1259.57C613.354 1258.87 614.064 1258.32 614.984 1257.92C615.904 1257.5 616.954 1257.29 618.134 1257.29C619.954 1257.29 621.424 1257.75 622.544 1258.67C623.664 1259.59 624.264 1260.85 624.344 1262.45H621.614C621.554 1261.59 621.204 1260.9 620.564 1260.38C619.944 1259.86 619.104 1259.6 618.044 1259.6C617.064 1259.6 616.284 1259.81 615.704 1260.23C615.124 1260.65 614.834 1261.2 614.834 1261.88C614.834 1262.42 615.004 1262.87 615.344 1263.23C615.704 1263.57 616.144 1263.85 616.664 1264.07C617.204 1264.27 617.944 1264.5 618.884 1264.76C620.064 1265.08 621.024 1265.4 621.764 1265.72C622.504 1266.02 623.134 1266.48 623.654 1267.1C624.194 1267.72 624.474 1268.53 624.494 1269.53C624.494 1270.43 624.244 1271.24 623.744 1271.96C623.244 1272.68 622.534 1273.25 621.614 1273.67C620.714 1274.07 619.674 1274.27 618.494 1274.27Z" fill="#617ABE"/>
|
|
||||||
<path d="M629.757 1254.89C629.237 1254.89 628.797 1254.71 628.437 1254.35C628.077 1253.99 627.897 1253.55 627.897 1253.03C627.897 1252.51 628.077 1252.07 628.437 1251.71C628.797 1251.35 629.237 1251.17 629.757 1251.17C630.257 1251.17 630.677 1251.35 631.017 1251.71C631.377 1252.07 631.557 1252.51 631.557 1253.03C631.557 1253.55 631.377 1253.99 631.017 1254.35C630.677 1254.71 630.257 1254.89 629.757 1254.89ZM631.077 1257.56V1274H628.347V1257.56H631.077Z" fill="#617ABE"/>
|
|
||||||
<path d="M642.9 1274.27C641.36 1274.27 639.96 1273.92 638.7 1273.22C637.46 1272.52 636.48 1271.53 635.76 1270.25C635.06 1268.95 634.71 1267.45 634.71 1265.75C634.71 1264.07 635.07 1262.59 635.79 1261.31C636.53 1260.01 637.53 1259.02 638.79 1258.34C640.05 1257.64 641.46 1257.29 643.02 1257.29C644.58 1257.29 645.99 1257.64 647.25 1258.34C648.51 1259.02 649.5 1260 650.22 1261.28C650.96 1262.56 651.33 1264.05 651.33 1265.75C651.33 1267.45 650.95 1268.95 650.19 1270.25C649.45 1271.53 648.44 1272.52 647.16 1273.22C645.88 1273.92 644.46 1274.27 642.9 1274.27ZM642.9 1271.87C643.88 1271.87 644.8 1271.64 645.66 1271.18C646.52 1270.72 647.21 1270.03 647.73 1269.11C648.27 1268.19 648.54 1267.07 648.54 1265.75C648.54 1264.43 648.28 1263.31 647.76 1262.39C647.24 1261.47 646.56 1260.79 645.72 1260.35C644.88 1259.89 643.97 1259.66 642.99 1259.66C641.99 1259.66 641.07 1259.89 640.23 1260.35C639.41 1260.79 638.75 1261.47 638.25 1262.39C637.75 1263.31 637.5 1264.43 637.5 1265.75C637.5 1267.09 637.74 1268.22 638.22 1269.14C638.72 1270.06 639.38 1270.75 640.2 1271.21C641.02 1271.65 641.92 1271.87 642.9 1271.87Z" fill="#617ABE"/>
|
|
||||||
<path d="M662.93 1257.26C664.93 1257.26 666.55 1257.87 667.79 1259.09C669.03 1260.29 669.65 1262.03 669.65 1264.31V1274H666.95V1264.7C666.95 1263.06 666.54 1261.81 665.72 1260.95C664.9 1260.07 663.78 1259.63 662.36 1259.63C660.92 1259.63 659.77 1260.08 658.91 1260.98C658.07 1261.88 657.65 1263.19 657.65 1264.91V1274H654.92V1257.56H657.65V1259.9C658.19 1259.06 658.92 1258.41 659.84 1257.95C660.78 1257.49 661.81 1257.26 662.93 1257.26Z" fill="#617ABE"/>
|
|
||||||
<path d="M1071 1313.5V1384" stroke="#CDDAFF" stroke-width="4" stroke-linecap="square"/>
|
|
||||||
<path d="M992.452 1455.54H980.924L979.076 1461H971.2L982.376 1430.11H991.088L1002.26 1461H994.3L992.452 1455.54ZM990.516 1449.74L986.688 1438.43L982.904 1449.74H990.516Z" fill="#233562"/>
|
|
||||||
<path d="M1013.19 1440.54C1014.07 1439.19 1015.17 1438.13 1016.49 1437.37C1017.81 1436.58 1019.28 1436.18 1020.89 1436.18V1444.15H1018.82C1016.94 1444.15 1015.54 1444.56 1014.6 1445.38C1013.66 1446.17 1013.19 1447.58 1013.19 1449.6V1461H1005.67V1436.45H1013.19V1440.54Z" fill="#233562"/>
|
|
||||||
<path d="M1059.73 1436.45L1053.09 1461H1044.77L1040.9 1445.07L1036.89 1461H1028.62L1021.93 1436.45H1029.46L1032.93 1454L1037.07 1436.45H1045.03L1049.21 1453.92L1052.65 1436.45H1059.73Z" fill="#233562"/>
|
|
||||||
<path d="M1085.74 1448.33C1085.74 1449.03 1085.7 1449.76 1085.61 1450.53H1068.58C1068.7 1452.05 1069.18 1453.23 1070.04 1454.05C1070.92 1454.84 1071.99 1455.24 1073.25 1455.24C1075.12 1455.24 1076.43 1454.44 1077.16 1452.86H1085.17C1084.76 1454.47 1084.01 1455.92 1082.93 1457.22C1081.87 1458.51 1080.54 1459.52 1078.92 1460.25C1077.31 1460.98 1075.51 1461.35 1073.51 1461.35C1071.11 1461.35 1068.96 1460.84 1067.09 1459.81C1065.21 1458.78 1063.74 1457.32 1062.69 1455.41C1061.63 1453.5 1061.1 1451.28 1061.1 1448.72C1061.1 1446.17 1061.62 1443.94 1062.64 1442.04C1063.7 1440.13 1065.17 1438.66 1067.04 1437.64C1068.92 1436.61 1071.08 1436.1 1073.51 1436.1C1075.89 1436.1 1078 1436.59 1079.85 1437.59C1081.7 1438.59 1083.13 1440.01 1084.16 1441.86C1085.22 1443.71 1085.74 1445.86 1085.74 1448.33ZM1078.04 1446.35C1078.04 1445.06 1077.6 1444.03 1076.72 1443.27C1075.84 1442.5 1074.74 1442.12 1073.42 1442.12C1072.16 1442.12 1071.09 1442.49 1070.21 1443.22C1069.36 1443.96 1068.83 1445 1068.63 1446.35H1078.04Z" fill="#233562"/>
|
|
||||||
<path d="M1088.22 1448.68C1088.22 1446.16 1088.69 1443.94 1089.62 1442.04C1090.59 1440.13 1091.9 1438.66 1093.54 1437.64C1095.18 1436.61 1097.02 1436.1 1099.04 1436.1C1100.77 1436.1 1102.28 1436.45 1103.57 1437.15C1104.89 1437.86 1105.9 1438.78 1106.61 1439.92V1436.45H1114.13V1461H1106.61V1457.52C1105.88 1458.67 1104.85 1459.59 1103.53 1460.3C1102.24 1461 1100.73 1461.35 1099 1461.35C1097 1461.35 1095.18 1460.84 1093.54 1459.81C1091.9 1458.76 1090.59 1457.27 1089.62 1455.37C1088.69 1453.43 1088.22 1451.2 1088.22 1448.68ZM1106.61 1448.72C1106.61 1446.85 1106.08 1445.36 1105.02 1444.28C1104 1443.19 1102.74 1442.65 1101.24 1442.65C1099.74 1442.65 1098.47 1443.19 1097.41 1444.28C1096.39 1445.34 1095.87 1446.8 1095.87 1448.68C1095.87 1450.56 1096.39 1452.05 1097.41 1453.17C1098.47 1454.25 1099.74 1454.8 1101.24 1454.8C1102.74 1454.8 1104 1454.25 1105.02 1453.17C1106.08 1452.08 1106.61 1450.6 1106.61 1448.72Z" fill="#233562"/>
|
|
||||||
<path d="M1130.62 1453.96L1135.94 1436.45H1143.95L1135.24 1461H1125.96L1117.24 1436.45H1125.3L1130.62 1453.96Z" fill="#233562"/>
|
|
||||||
<path d="M1170.26 1448.33C1170.26 1449.03 1170.22 1449.76 1170.13 1450.53H1153.1C1153.22 1452.05 1153.7 1453.23 1154.55 1454.05C1155.43 1454.84 1156.51 1455.24 1157.77 1455.24C1159.64 1455.24 1160.95 1454.44 1161.68 1452.86H1169.69C1169.28 1454.47 1168.53 1455.92 1167.45 1457.22C1166.39 1458.51 1165.06 1459.52 1163.44 1460.25C1161.83 1460.98 1160.03 1461.35 1158.03 1461.35C1155.63 1461.35 1153.48 1460.84 1151.61 1459.81C1149.73 1458.78 1148.26 1457.32 1147.21 1455.41C1146.15 1453.5 1145.62 1451.28 1145.62 1448.72C1145.62 1446.17 1146.14 1443.94 1147.16 1442.04C1148.22 1440.13 1149.69 1438.66 1151.56 1437.64C1153.44 1436.61 1155.6 1436.1 1158.03 1436.1C1160.41 1436.1 1162.52 1436.59 1164.37 1437.59C1166.21 1438.59 1167.65 1440.01 1168.68 1441.86C1169.73 1443.71 1170.26 1445.86 1170.26 1448.33ZM1162.56 1446.35C1162.56 1445.06 1162.12 1444.03 1161.24 1443.27C1160.36 1442.5 1159.26 1442.12 1157.94 1442.12C1156.68 1442.12 1155.61 1442.49 1154.73 1443.22C1153.88 1443.96 1153.35 1445 1153.15 1446.35H1162.56Z" fill="#233562"/>
|
|
||||||
<path d="M901.576 1565.27C900.316 1565.27 899.186 1565.06 898.186 1564.64C897.186 1564.2 896.396 1563.6 895.816 1562.84C895.236 1562.06 894.916 1561.17 894.856 1560.17H897.676C897.756 1560.99 898.136 1561.66 898.816 1562.18C899.516 1562.7 900.426 1562.96 901.546 1562.96C902.586 1562.96 903.406 1562.73 904.006 1562.27C904.606 1561.81 904.906 1561.23 904.906 1560.53C904.906 1559.81 904.586 1559.28 903.946 1558.94C903.306 1558.58 902.316 1558.23 900.976 1557.89C899.756 1557.57 898.756 1557.25 897.976 1556.93C897.216 1556.59 896.556 1556.1 895.996 1555.46C895.456 1554.8 895.186 1553.94 895.186 1552.88C895.186 1552.04 895.436 1551.27 895.936 1550.57C896.436 1549.87 897.146 1549.32 898.066 1548.92C898.986 1548.5 900.036 1548.29 901.216 1548.29C903.036 1548.29 904.506 1548.75 905.626 1549.67C906.746 1550.59 907.346 1551.85 907.426 1553.45H904.696C904.636 1552.59 904.286 1551.9 903.646 1551.38C903.026 1550.86 902.186 1550.6 901.126 1550.6C900.146 1550.6 899.366 1550.81 898.786 1551.23C898.206 1551.65 897.916 1552.2 897.916 1552.88C897.916 1553.42 898.086 1553.87 898.426 1554.23C898.786 1554.57 899.226 1554.85 899.746 1555.07C900.286 1555.27 901.026 1555.5 901.966 1555.76C903.146 1556.08 904.106 1556.4 904.846 1556.72C905.586 1557.02 906.216 1557.48 906.736 1558.1C907.276 1558.72 907.556 1559.53 907.576 1560.53C907.576 1561.43 907.326 1562.24 906.826 1562.96C906.326 1563.68 905.616 1564.25 904.696 1564.67C903.796 1565.07 902.756 1565.27 901.576 1565.27Z" fill="#617ABE"/>
|
|
||||||
<path d="M914.76 1550.81V1560.5C914.76 1561.3 914.93 1561.87 915.27 1562.21C915.61 1562.53 916.2 1562.69 917.04 1562.69H919.05V1565H916.59C915.07 1565 913.93 1564.65 913.17 1563.95C912.41 1563.25 912.03 1562.1 912.03 1560.5V1550.81H909.9V1548.56H912.03V1544.42H914.76V1548.56H919.05V1550.81H914.76Z" fill="#617ABE"/>
|
|
||||||
<path d="M929.528 1565.27C927.988 1565.27 926.588 1564.92 925.328 1564.22C924.088 1563.52 923.108 1562.53 922.388 1561.25C921.688 1559.95 921.338 1558.45 921.338 1556.75C921.338 1555.07 921.698 1553.59 922.418 1552.31C923.158 1551.01 924.158 1550.02 925.418 1549.34C926.678 1548.64 928.088 1548.29 929.648 1548.29C931.208 1548.29 932.618 1548.64 933.878 1549.34C935.138 1550.02 936.128 1551 936.848 1552.28C937.588 1553.56 937.958 1555.05 937.958 1556.75C937.958 1558.45 937.578 1559.95 936.818 1561.25C936.078 1562.53 935.068 1563.52 933.788 1564.22C932.508 1564.92 931.088 1565.27 929.528 1565.27ZM929.528 1562.87C930.508 1562.87 931.428 1562.64 932.288 1562.18C933.148 1561.72 933.838 1561.03 934.358 1560.11C934.898 1559.19 935.168 1558.07 935.168 1556.75C935.168 1555.43 934.908 1554.31 934.388 1553.39C933.868 1552.47 933.188 1551.79 932.348 1551.35C931.508 1550.89 930.598 1550.66 929.618 1550.66C928.618 1550.66 927.698 1550.89 926.858 1551.35C926.038 1551.79 925.378 1552.47 924.878 1553.39C924.378 1554.31 924.128 1555.43 924.128 1556.75C924.128 1558.09 924.368 1559.22 924.848 1560.14C925.348 1561.06 926.008 1561.75 926.828 1562.21C927.648 1562.65 928.548 1562.87 929.528 1562.87Z" fill="#617ABE"/>
|
|
||||||
<path d="M944.277 1551.23C944.757 1550.29 945.437 1549.56 946.317 1549.04C947.217 1548.52 948.307 1548.26 949.587 1548.26V1551.08H948.867C945.807 1551.08 944.277 1552.74 944.277 1556.06V1565H941.547V1548.56H944.277V1551.23Z" fill="#617ABE"/>
|
|
||||||
<path d="M967.739 1556.15C967.739 1556.67 967.709 1557.22 967.649 1557.8H954.509C954.609 1559.42 955.159 1560.69 956.159 1561.61C957.179 1562.51 958.409 1562.96 959.849 1562.96C961.029 1562.96 962.009 1562.69 962.789 1562.15C963.589 1561.59 964.149 1560.85 964.469 1559.93H967.409C966.969 1561.51 966.089 1562.8 964.769 1563.8C963.449 1564.78 961.809 1565.27 959.849 1565.27C958.289 1565.27 956.889 1564.92 955.649 1564.22C954.429 1563.52 953.469 1562.53 952.769 1561.25C952.069 1559.95 951.719 1558.45 951.719 1556.75C951.719 1555.05 952.059 1553.56 952.739 1552.28C953.419 1551 954.369 1550.02 955.589 1549.34C956.829 1548.64 958.249 1548.29 959.849 1548.29C961.409 1548.29 962.789 1548.63 963.989 1549.31C965.189 1549.99 966.109 1550.93 966.749 1552.13C967.409 1553.31 967.739 1554.65 967.739 1556.15ZM964.919 1555.58C964.919 1554.54 964.689 1553.65 964.229 1552.91C963.769 1552.15 963.139 1551.58 962.339 1551.2C961.559 1550.8 960.689 1550.6 959.729 1550.6C958.349 1550.6 957.169 1551.04 956.189 1551.92C955.229 1552.8 954.679 1554.02 954.539 1555.58H964.919Z" fill="#617ABE"/>
|
|
||||||
<path d="M977.162 1565.27C975.902 1565.27 974.772 1565.06 973.772 1564.64C972.772 1564.2 971.982 1563.6 971.402 1562.84C970.822 1562.06 970.502 1561.17 970.442 1560.17H973.262C973.342 1560.99 973.722 1561.66 974.402 1562.18C975.102 1562.7 976.012 1562.96 977.132 1562.96C978.172 1562.96 978.992 1562.73 979.592 1562.27C980.192 1561.81 980.492 1561.23 980.492 1560.53C980.492 1559.81 980.172 1559.28 979.532 1558.94C978.892 1558.58 977.902 1558.23 976.562 1557.89C975.342 1557.57 974.342 1557.25 973.562 1556.93C972.802 1556.59 972.142 1556.1 971.582 1555.46C971.042 1554.8 970.772 1553.94 970.772 1552.88C970.772 1552.04 971.022 1551.27 971.522 1550.57C972.022 1549.87 972.732 1549.32 973.652 1548.92C974.572 1548.5 975.622 1548.29 976.802 1548.29C978.622 1548.29 980.092 1548.75 981.212 1549.67C982.332 1550.59 982.932 1551.85 983.012 1553.45H980.282C980.222 1552.59 979.872 1551.9 979.232 1551.38C978.612 1550.86 977.772 1550.6 976.712 1550.6C975.732 1550.6 974.952 1550.81 974.372 1551.23C973.792 1551.65 973.502 1552.2 973.502 1552.88C973.502 1553.42 973.672 1553.87 974.012 1554.23C974.372 1554.57 974.812 1554.85 975.332 1555.07C975.872 1555.27 976.612 1555.5 977.552 1555.76C978.732 1556.08 979.692 1556.4 980.432 1556.72C981.172 1557.02 981.802 1557.48 982.322 1558.1C982.862 1558.72 983.142 1559.53 983.162 1560.53C983.162 1561.43 982.912 1562.24 982.412 1562.96C981.912 1563.68 981.202 1564.25 980.282 1564.67C979.382 1565.07 978.342 1565.27 977.162 1565.27Z" fill="#617ABE"/>
|
|
||||||
<path d="M998.344 1550.81V1560.5C998.344 1561.3 998.514 1561.87 998.854 1562.21C999.194 1562.53 999.784 1562.69 1000.62 1562.69H1002.63V1565H1000.17C998.654 1565 997.514 1564.65 996.754 1563.95C995.994 1563.25 995.614 1562.1 995.614 1560.5V1550.81H993.484V1548.56H995.614V1544.42H998.344V1548.56H1002.63V1550.81H998.344Z" fill="#617ABE"/>
|
|
||||||
<path d="M1008.67 1551.23C1009.15 1550.29 1009.83 1549.56 1010.71 1549.04C1011.61 1548.52 1012.7 1548.26 1013.98 1548.26V1551.08H1013.26C1010.2 1551.08 1008.67 1552.74 1008.67 1556.06V1565H1005.94V1548.56H1008.67V1551.23Z" fill="#617ABE"/>
|
|
||||||
<path d="M1016.11 1556.72C1016.11 1555.04 1016.45 1553.57 1017.13 1552.31C1017.81 1551.03 1018.74 1550.04 1019.92 1549.34C1021.12 1548.64 1022.45 1548.29 1023.91 1548.29C1025.35 1548.29 1026.6 1548.6 1027.66 1549.22C1028.72 1549.84 1029.51 1550.62 1030.03 1551.56V1548.56H1032.79V1565H1030.03V1561.94C1029.49 1562.9 1028.68 1563.7 1027.6 1564.34C1026.54 1564.96 1025.3 1565.27 1023.88 1565.27C1022.42 1565.27 1021.1 1564.91 1019.92 1564.19C1018.74 1563.47 1017.81 1562.46 1017.13 1561.16C1016.45 1559.86 1016.11 1558.38 1016.11 1556.72ZM1030.03 1556.75C1030.03 1555.51 1029.78 1554.43 1029.28 1553.51C1028.78 1552.59 1028.1 1551.89 1027.24 1551.41C1026.4 1550.91 1025.47 1550.66 1024.45 1550.66C1023.43 1550.66 1022.5 1550.9 1021.66 1551.38C1020.82 1551.86 1020.15 1552.56 1019.65 1553.48C1019.15 1554.4 1018.9 1555.48 1018.9 1556.72C1018.9 1557.98 1019.15 1559.08 1019.65 1560.02C1020.15 1560.94 1020.82 1561.65 1021.66 1562.15C1022.5 1562.63 1023.43 1562.87 1024.45 1562.87C1025.47 1562.87 1026.4 1562.63 1027.24 1562.15C1028.1 1561.65 1028.78 1560.94 1029.28 1560.02C1029.78 1559.08 1030.03 1557.99 1030.03 1556.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M1045.42 1548.26C1047.42 1548.26 1049.04 1548.87 1050.28 1550.09C1051.52 1551.29 1052.14 1553.03 1052.14 1555.31V1565H1049.44V1555.7C1049.44 1554.06 1049.03 1552.81 1048.21 1551.95C1047.39 1551.07 1046.27 1550.63 1044.85 1550.63C1043.41 1550.63 1042.26 1551.08 1041.4 1551.98C1040.56 1552.88 1040.14 1554.19 1040.14 1555.91V1565H1037.41V1548.56H1040.14V1550.9C1040.68 1550.06 1041.41 1549.41 1042.33 1548.95C1043.27 1548.49 1044.3 1548.26 1045.42 1548.26Z" fill="#617ABE"/>
|
|
||||||
<path d="M1062.42 1565.27C1061.16 1565.27 1060.03 1565.06 1059.03 1564.64C1058.03 1564.2 1057.24 1563.6 1056.66 1562.84C1056.08 1562.06 1055.76 1561.17 1055.7 1560.17H1058.52C1058.6 1560.99 1058.98 1561.66 1059.66 1562.18C1060.36 1562.7 1061.27 1562.96 1062.39 1562.96C1063.43 1562.96 1064.25 1562.73 1064.85 1562.27C1065.45 1561.81 1065.75 1561.23 1065.75 1560.53C1065.75 1559.81 1065.43 1559.28 1064.79 1558.94C1064.15 1558.58 1063.16 1558.23 1061.82 1557.89C1060.6 1557.57 1059.6 1557.25 1058.82 1556.93C1058.06 1556.59 1057.4 1556.1 1056.84 1555.46C1056.3 1554.8 1056.03 1553.94 1056.03 1552.88C1056.03 1552.04 1056.28 1551.27 1056.78 1550.57C1057.28 1549.87 1057.99 1549.32 1058.91 1548.92C1059.83 1548.5 1060.88 1548.29 1062.06 1548.29C1063.88 1548.29 1065.35 1548.75 1066.47 1549.67C1067.59 1550.59 1068.19 1551.85 1068.27 1553.45H1065.54C1065.48 1552.59 1065.13 1551.9 1064.49 1551.38C1063.87 1550.86 1063.03 1550.6 1061.97 1550.6C1060.99 1550.6 1060.21 1550.81 1059.63 1551.23C1059.05 1551.65 1058.76 1552.2 1058.76 1552.88C1058.76 1553.42 1058.93 1553.87 1059.27 1554.23C1059.63 1554.57 1060.07 1554.85 1060.59 1555.07C1061.13 1555.27 1061.87 1555.5 1062.81 1555.76C1063.99 1556.08 1064.95 1556.4 1065.69 1556.72C1066.43 1557.02 1067.06 1557.48 1067.58 1558.1C1068.12 1558.72 1068.4 1559.53 1068.42 1560.53C1068.42 1561.43 1068.17 1562.24 1067.67 1562.96C1067.17 1563.68 1066.46 1564.25 1065.54 1564.67C1064.64 1565.07 1063.6 1565.27 1062.42 1565.27Z" fill="#617ABE"/>
|
|
||||||
<path d="M1071.25 1556.72C1071.25 1555.04 1071.59 1553.57 1072.27 1552.31C1072.95 1551.03 1073.88 1550.04 1075.06 1549.34C1076.26 1548.64 1077.59 1548.29 1079.05 1548.29C1080.49 1548.29 1081.74 1548.6 1082.8 1549.22C1083.86 1549.84 1084.65 1550.62 1085.17 1551.56V1548.56H1087.93V1565H1085.17V1561.94C1084.63 1562.9 1083.82 1563.7 1082.74 1564.34C1081.68 1564.96 1080.44 1565.27 1079.02 1565.27C1077.56 1565.27 1076.24 1564.91 1075.06 1564.19C1073.88 1563.47 1072.95 1562.46 1072.27 1561.16C1071.59 1559.86 1071.25 1558.38 1071.25 1556.72ZM1085.17 1556.75C1085.17 1555.51 1084.92 1554.43 1084.42 1553.51C1083.92 1552.59 1083.24 1551.89 1082.38 1551.41C1081.54 1550.91 1080.61 1550.66 1079.59 1550.66C1078.57 1550.66 1077.64 1550.9 1076.8 1551.38C1075.96 1551.86 1075.29 1552.56 1074.79 1553.48C1074.29 1554.4 1074.04 1555.48 1074.04 1556.72C1074.04 1557.98 1074.29 1559.08 1074.79 1560.02C1075.29 1560.94 1075.96 1561.65 1076.8 1562.15C1077.64 1562.63 1078.57 1562.87 1079.59 1562.87C1080.61 1562.87 1081.54 1562.63 1082.38 1562.15C1083.24 1561.65 1083.92 1560.94 1084.42 1560.02C1084.92 1559.08 1085.17 1557.99 1085.17 1556.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M1091.52 1556.75C1091.52 1555.05 1091.86 1553.57 1092.54 1552.31C1093.22 1551.03 1094.16 1550.04 1095.36 1549.34C1096.58 1548.64 1097.97 1548.29 1099.53 1548.29C1101.55 1548.29 1103.21 1548.78 1104.51 1549.76C1105.83 1550.74 1106.7 1552.1 1107.12 1553.84H1104.18C1103.9 1552.84 1103.35 1552.05 1102.53 1551.47C1101.73 1550.89 1100.73 1550.6 1099.53 1550.6C1097.97 1550.6 1096.71 1551.14 1095.75 1552.22C1094.79 1553.28 1094.31 1554.79 1094.31 1556.75C1094.31 1558.73 1094.79 1560.26 1095.75 1561.34C1096.71 1562.42 1097.97 1562.96 1099.53 1562.96C1100.73 1562.96 1101.73 1562.68 1102.53 1562.12C1103.33 1561.56 1103.88 1560.76 1104.18 1559.72H1107.12C1106.68 1561.4 1105.8 1562.75 1104.48 1563.77C1103.16 1564.77 1101.51 1565.27 1099.53 1565.27C1097.97 1565.27 1096.58 1564.92 1095.36 1564.22C1094.16 1563.52 1093.22 1562.53 1092.54 1561.25C1091.86 1559.97 1091.52 1558.47 1091.52 1556.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M1114.1 1550.81V1560.5C1114.1 1561.3 1114.27 1561.87 1114.61 1562.21C1114.95 1562.53 1115.54 1562.69 1116.38 1562.69H1118.39V1565H1115.93C1114.41 1565 1113.27 1564.65 1112.51 1563.95C1111.75 1563.25 1111.37 1562.1 1111.37 1560.5V1550.81H1109.24V1548.56H1111.37V1544.42H1114.1V1548.56H1118.39V1550.81H1114.1Z" fill="#617ABE"/>
|
|
||||||
<path d="M1123.1 1545.89C1122.58 1545.89 1122.14 1545.71 1121.78 1545.35C1121.42 1544.99 1121.24 1544.55 1121.24 1544.03C1121.24 1543.51 1121.42 1543.07 1121.78 1542.71C1122.14 1542.35 1122.58 1542.17 1123.1 1542.17C1123.6 1542.17 1124.02 1542.35 1124.36 1542.71C1124.72 1543.07 1124.9 1543.51 1124.9 1544.03C1124.9 1544.55 1124.72 1544.99 1124.36 1545.35C1124.02 1545.71 1123.6 1545.89 1123.1 1545.89ZM1124.42 1548.56V1565H1121.69V1548.56H1124.42Z" fill="#617ABE"/>
|
|
||||||
<path d="M1136.25 1565.27C1134.71 1565.27 1133.31 1564.92 1132.05 1564.22C1130.81 1563.52 1129.83 1562.53 1129.11 1561.25C1128.41 1559.95 1128.06 1558.45 1128.06 1556.75C1128.06 1555.07 1128.42 1553.59 1129.14 1552.31C1129.88 1551.01 1130.88 1550.02 1132.14 1549.34C1133.4 1548.64 1134.81 1548.29 1136.37 1548.29C1137.93 1548.29 1139.34 1548.64 1140.6 1549.34C1141.86 1550.02 1142.85 1551 1143.57 1552.28C1144.31 1553.56 1144.68 1555.05 1144.68 1556.75C1144.68 1558.45 1144.3 1559.95 1143.54 1561.25C1142.8 1562.53 1141.79 1563.52 1140.51 1564.22C1139.23 1564.92 1137.81 1565.27 1136.25 1565.27ZM1136.25 1562.87C1137.23 1562.87 1138.15 1562.64 1139.01 1562.18C1139.87 1561.72 1140.56 1561.03 1141.08 1560.11C1141.62 1559.19 1141.89 1558.07 1141.89 1556.75C1141.89 1555.43 1141.63 1554.31 1141.11 1553.39C1140.59 1552.47 1139.91 1551.79 1139.07 1551.35C1138.23 1550.89 1137.32 1550.66 1136.34 1550.66C1135.34 1550.66 1134.42 1550.89 1133.58 1551.35C1132.76 1551.79 1132.1 1552.47 1131.6 1553.39C1131.1 1554.31 1130.85 1555.43 1130.85 1556.75C1130.85 1558.09 1131.09 1559.22 1131.57 1560.14C1132.07 1561.06 1132.73 1561.75 1133.55 1562.21C1134.37 1562.65 1135.27 1562.87 1136.25 1562.87Z" fill="#617ABE"/>
|
|
||||||
<path d="M1156.28 1548.26C1158.28 1548.26 1159.9 1548.87 1161.14 1550.09C1162.38 1551.29 1163 1553.03 1163 1555.31V1565H1160.3V1555.7C1160.3 1554.06 1159.89 1552.81 1159.07 1551.95C1158.25 1551.07 1157.13 1550.63 1155.71 1550.63C1154.27 1550.63 1153.12 1551.08 1152.26 1551.98C1151.42 1552.88 1151 1554.19 1151 1555.91V1565H1148.27V1548.56H1151V1550.9C1151.54 1550.06 1152.27 1549.41 1153.19 1548.95C1154.13 1548.49 1155.16 1548.26 1156.28 1548.26Z" fill="#617ABE"/>
|
|
||||||
<path d="M1173.28 1565.27C1172.02 1565.27 1170.89 1565.06 1169.89 1564.64C1168.89 1564.2 1168.1 1563.6 1167.52 1562.84C1166.94 1562.06 1166.62 1561.17 1166.56 1560.17H1169.38C1169.46 1560.99 1169.84 1561.66 1170.52 1562.18C1171.22 1562.7 1172.13 1562.96 1173.25 1562.96C1174.29 1562.96 1175.11 1562.73 1175.71 1562.27C1176.31 1561.81 1176.61 1561.23 1176.61 1560.53C1176.61 1559.81 1176.29 1559.28 1175.65 1558.94C1175.01 1558.58 1174.02 1558.23 1172.68 1557.89C1171.46 1557.57 1170.46 1557.25 1169.68 1556.93C1168.92 1556.59 1168.26 1556.1 1167.7 1555.46C1167.16 1554.8 1166.89 1553.94 1166.89 1552.88C1166.89 1552.04 1167.14 1551.27 1167.64 1550.57C1168.14 1549.87 1168.85 1549.32 1169.77 1548.92C1170.69 1548.5 1171.74 1548.29 1172.92 1548.29C1174.74 1548.29 1176.21 1548.75 1177.33 1549.67C1178.45 1550.59 1179.05 1551.85 1179.13 1553.45H1176.4C1176.34 1552.59 1175.99 1551.9 1175.35 1551.38C1174.73 1550.86 1173.89 1550.6 1172.83 1550.6C1171.85 1550.6 1171.07 1550.81 1170.49 1551.23C1169.91 1551.65 1169.62 1552.2 1169.62 1552.88C1169.62 1553.42 1169.79 1553.87 1170.13 1554.23C1170.49 1554.57 1170.93 1554.85 1171.45 1555.07C1171.99 1555.27 1172.73 1555.5 1173.67 1555.76C1174.85 1556.08 1175.81 1556.4 1176.55 1556.72C1177.29 1557.02 1177.92 1557.48 1178.44 1558.1C1178.98 1558.72 1179.26 1559.53 1179.28 1560.53C1179.28 1561.43 1179.03 1562.24 1178.53 1562.96C1178.03 1563.68 1177.32 1564.25 1176.4 1564.67C1175.5 1565.07 1174.46 1565.27 1173.28 1565.27Z" fill="#617ABE"/>
|
|
||||||
<path d="M1190.11 1556.72C1190.11 1555.04 1190.45 1553.57 1191.13 1552.31C1191.81 1551.03 1192.74 1550.04 1193.92 1549.34C1195.12 1548.64 1196.45 1548.29 1197.91 1548.29C1199.35 1548.29 1200.6 1548.6 1201.66 1549.22C1202.72 1549.84 1203.51 1550.62 1204.03 1551.56V1548.56H1206.79V1565H1204.03V1561.94C1203.49 1562.9 1202.68 1563.7 1201.6 1564.34C1200.54 1564.96 1199.3 1565.27 1197.88 1565.27C1196.42 1565.27 1195.1 1564.91 1193.92 1564.19C1192.74 1563.47 1191.81 1562.46 1191.13 1561.16C1190.45 1559.86 1190.11 1558.38 1190.11 1556.72ZM1204.03 1556.75C1204.03 1555.51 1203.78 1554.43 1203.28 1553.51C1202.78 1552.59 1202.1 1551.89 1201.24 1551.41C1200.4 1550.91 1199.47 1550.66 1198.45 1550.66C1197.43 1550.66 1196.5 1550.9 1195.66 1551.38C1194.82 1551.86 1194.15 1552.56 1193.65 1553.48C1193.15 1554.4 1192.9 1555.48 1192.9 1556.72C1192.9 1557.98 1193.15 1559.08 1193.65 1560.02C1194.15 1560.94 1194.82 1561.65 1195.66 1562.15C1196.5 1562.63 1197.43 1562.87 1198.45 1562.87C1199.47 1562.87 1200.4 1562.63 1201.24 1562.15C1202.1 1561.65 1202.78 1560.94 1203.28 1560.02C1203.78 1559.08 1204.03 1557.99 1204.03 1556.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M1219.41 1548.26C1221.41 1548.26 1223.03 1548.87 1224.27 1550.09C1225.51 1551.29 1226.13 1553.03 1226.13 1555.31V1565H1223.43V1555.7C1223.43 1554.06 1223.02 1552.81 1222.2 1551.95C1221.38 1551.07 1220.26 1550.63 1218.84 1550.63C1217.4 1550.63 1216.25 1551.08 1215.39 1551.98C1214.55 1552.88 1214.13 1554.19 1214.13 1555.91V1565H1211.4V1548.56H1214.13V1550.9C1214.67 1550.06 1215.4 1549.41 1216.32 1548.95C1217.26 1548.49 1218.29 1548.26 1219.41 1548.26Z" fill="#617ABE"/>
|
|
||||||
<path d="M1229.57 1556.72C1229.57 1555.04 1229.91 1553.57 1230.59 1552.31C1231.27 1551.03 1232.2 1550.04 1233.38 1549.34C1234.58 1548.64 1235.92 1548.29 1237.4 1548.29C1238.68 1548.29 1239.87 1548.59 1240.97 1549.19C1242.07 1549.77 1242.91 1550.54 1243.49 1551.5V1542.8H1246.25V1565H1243.49V1561.91C1242.95 1562.89 1242.15 1563.7 1241.09 1564.34C1240.03 1564.96 1238.79 1565.27 1237.37 1565.27C1235.91 1565.27 1234.58 1564.91 1233.38 1564.19C1232.2 1563.47 1231.27 1562.46 1230.59 1561.16C1229.91 1559.86 1229.57 1558.38 1229.57 1556.72ZM1243.49 1556.75C1243.49 1555.51 1243.24 1554.43 1242.74 1553.51C1242.24 1552.59 1241.56 1551.89 1240.7 1551.41C1239.86 1550.91 1238.93 1550.66 1237.91 1550.66C1236.89 1550.66 1235.96 1550.9 1235.12 1551.38C1234.28 1551.86 1233.61 1552.56 1233.11 1553.48C1232.61 1554.4 1232.36 1555.48 1232.36 1556.72C1232.36 1557.98 1232.61 1559.08 1233.11 1560.02C1233.61 1560.94 1234.28 1561.65 1235.12 1562.15C1235.96 1562.63 1236.89 1562.87 1237.91 1562.87C1238.93 1562.87 1239.86 1562.63 1240.7 1562.15C1241.56 1561.65 1242.24 1560.94 1242.74 1560.02C1243.24 1559.08 1243.49 1557.99 1243.49 1556.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M921.05 1610L914.6 1602.74V1610H911.87V1587.8H914.6V1600.85L920.93 1593.56H924.74L917 1601.75L924.77 1610H921.05Z" fill="#617ABE"/>
|
|
||||||
<path d="M942.309 1601.15C942.309 1601.67 942.279 1602.22 942.219 1602.8H929.079C929.179 1604.42 929.729 1605.69 930.729 1606.61C931.749 1607.51 932.979 1607.96 934.419 1607.96C935.599 1607.96 936.579 1607.69 937.359 1607.15C938.159 1606.59 938.719 1605.85 939.039 1604.93H941.979C941.539 1606.51 940.659 1607.8 939.339 1608.8C938.019 1609.78 936.379 1610.27 934.419 1610.27C932.859 1610.27 931.459 1609.92 930.219 1609.22C928.999 1608.52 928.039 1607.53 927.339 1606.25C926.639 1604.95 926.289 1603.45 926.289 1601.75C926.289 1600.05 926.629 1598.56 927.309 1597.28C927.989 1596 928.939 1595.02 930.159 1594.34C931.399 1593.64 932.819 1593.29 934.419 1593.29C935.979 1593.29 937.359 1593.63 938.559 1594.31C939.759 1594.99 940.679 1595.93 941.319 1597.13C941.979 1598.31 942.309 1599.65 942.309 1601.15ZM939.489 1600.58C939.489 1599.54 939.259 1598.65 938.799 1597.91C938.339 1597.15 937.709 1596.58 936.909 1596.2C936.129 1595.8 935.259 1595.6 934.299 1595.6C932.919 1595.6 931.739 1596.04 930.759 1596.92C929.799 1597.8 929.249 1599.02 929.109 1600.58H939.489Z" fill="#617ABE"/>
|
|
||||||
<path d="M960.913 1601.15C960.913 1601.67 960.883 1602.22 960.823 1602.8H947.683C947.783 1604.42 948.333 1605.69 949.333 1606.61C950.353 1607.51 951.583 1607.96 953.023 1607.96C954.203 1607.96 955.183 1607.69 955.963 1607.15C956.763 1606.59 957.323 1605.85 957.643 1604.93H960.583C960.143 1606.51 959.263 1607.8 957.943 1608.8C956.623 1609.78 954.983 1610.27 953.023 1610.27C951.463 1610.27 950.063 1609.92 948.823 1609.22C947.603 1608.52 946.643 1607.53 945.943 1606.25C945.243 1604.95 944.893 1603.45 944.893 1601.75C944.893 1600.05 945.233 1598.56 945.913 1597.28C946.593 1596 947.543 1595.02 948.763 1594.34C950.003 1593.64 951.423 1593.29 953.023 1593.29C954.583 1593.29 955.963 1593.63 957.163 1594.31C958.363 1594.99 959.283 1595.93 959.923 1597.13C960.583 1598.31 960.913 1599.65 960.913 1601.15ZM958.093 1600.58C958.093 1599.54 957.863 1598.65 957.403 1597.91C956.943 1597.15 956.313 1596.58 955.513 1596.2C954.733 1595.8 953.863 1595.6 952.903 1595.6C951.523 1595.6 950.343 1596.04 949.363 1596.92C948.403 1597.8 947.853 1599.02 947.713 1600.58H958.093Z" fill="#617ABE"/>
|
|
||||||
<path d="M967.246 1596.59C967.786 1595.65 968.586 1594.87 969.646 1594.25C970.726 1593.61 971.976 1593.29 973.396 1593.29C974.856 1593.29 976.176 1593.64 977.356 1594.34C978.556 1595.04 979.496 1596.03 980.176 1597.31C980.856 1598.57 981.196 1600.04 981.196 1601.72C981.196 1603.38 980.856 1604.86 980.176 1606.16C979.496 1607.46 978.556 1608.47 977.356 1609.19C976.176 1609.91 974.856 1610.27 973.396 1610.27C971.996 1610.27 970.756 1609.96 969.676 1609.34C968.616 1608.7 967.806 1607.91 967.246 1606.97V1617.8H964.516V1593.56H967.246V1596.59ZM978.406 1601.72C978.406 1600.48 978.156 1599.4 977.656 1598.48C977.156 1597.56 976.476 1596.86 975.616 1596.38C974.776 1595.9 973.846 1595.66 972.826 1595.66C971.826 1595.66 970.896 1595.91 970.036 1596.41C969.196 1596.89 968.516 1597.6 967.996 1598.54C967.496 1599.46 967.246 1600.53 967.246 1601.75C967.246 1602.99 967.496 1604.08 967.996 1605.02C968.516 1605.94 969.196 1606.65 970.036 1607.15C970.896 1607.63 971.826 1607.87 972.826 1607.87C973.846 1607.87 974.776 1607.63 975.616 1607.15C976.476 1606.65 977.156 1605.94 977.656 1605.02C978.156 1604.08 978.406 1602.98 978.406 1601.72Z" fill="#617ABE"/>
|
|
||||||
<path d="M990.61 1610.27C989.35 1610.27 988.22 1610.06 987.22 1609.64C986.22 1609.2 985.43 1608.6 984.85 1607.84C984.27 1607.06 983.95 1606.17 983.89 1605.17H986.71C986.79 1605.99 987.17 1606.66 987.85 1607.18C988.55 1607.7 989.46 1607.96 990.58 1607.96C991.62 1607.96 992.44 1607.73 993.04 1607.27C993.64 1606.81 993.94 1606.23 993.94 1605.53C993.94 1604.81 993.62 1604.28 992.98 1603.94C992.34 1603.58 991.35 1603.23 990.01 1602.89C988.79 1602.57 987.79 1602.25 987.01 1601.93C986.25 1601.59 985.59 1601.1 985.03 1600.46C984.49 1599.8 984.22 1598.94 984.22 1597.88C984.22 1597.04 984.47 1596.27 984.97 1595.57C985.47 1594.87 986.18 1594.32 987.1 1593.92C988.02 1593.5 989.07 1593.29 990.25 1593.29C992.07 1593.29 993.54 1593.75 994.66 1594.67C995.78 1595.59 996.38 1596.85 996.46 1598.45H993.73C993.67 1597.59 993.32 1596.9 992.68 1596.38C992.06 1595.86 991.22 1595.6 990.16 1595.6C989.18 1595.6 988.4 1595.81 987.82 1596.23C987.24 1596.65 986.95 1597.2 986.95 1597.88C986.95 1598.42 987.12 1598.87 987.46 1599.23C987.82 1599.57 988.26 1599.85 988.78 1600.07C989.32 1600.27 990.06 1600.5 991 1600.76C992.18 1601.08 993.14 1601.4 993.88 1601.72C994.62 1602.02 995.25 1602.48 995.77 1603.1C996.31 1603.72 996.59 1604.53 996.61 1605.53C996.61 1606.43 996.36 1607.24 995.86 1607.96C995.36 1608.68 994.65 1609.25 993.73 1609.67C992.83 1610.07 991.79 1610.27 990.61 1610.27Z" fill="#617ABE"/>
|
|
||||||
<path d="M1011.79 1595.81V1605.5C1011.79 1606.3 1011.96 1606.87 1012.3 1607.21C1012.64 1607.53 1013.23 1607.69 1014.07 1607.69H1016.08V1610H1013.62C1012.1 1610 1010.96 1609.65 1010.2 1608.95C1009.44 1608.25 1009.06 1607.1 1009.06 1605.5V1595.81H1006.93V1593.56H1009.06V1589.42H1011.79V1593.56H1016.08V1595.81H1011.79Z" fill="#617ABE"/>
|
|
||||||
<path d="M1027.55 1593.26C1028.79 1593.26 1029.91 1593.53 1030.91 1594.07C1031.91 1594.59 1032.69 1595.38 1033.25 1596.44C1033.83 1597.5 1034.12 1598.79 1034.12 1600.31V1610H1031.42V1600.7C1031.42 1599.06 1031.01 1597.81 1030.19 1596.95C1029.37 1596.07 1028.25 1595.63 1026.83 1595.63C1025.39 1595.63 1024.24 1596.08 1023.38 1596.98C1022.54 1597.88 1022.12 1599.19 1022.12 1600.91V1610H1019.39V1587.8H1022.12V1595.9C1022.66 1595.06 1023.4 1594.41 1024.34 1593.95C1025.3 1593.49 1026.37 1593.26 1027.55 1593.26Z" fill="#617ABE"/>
|
|
||||||
<path d="M1053.58 1601.15C1053.58 1601.67 1053.55 1602.22 1053.49 1602.8H1040.35C1040.45 1604.42 1041 1605.69 1042 1606.61C1043.02 1607.51 1044.25 1607.96 1045.69 1607.96C1046.87 1607.96 1047.85 1607.69 1048.63 1607.15C1049.43 1606.59 1049.99 1605.85 1050.31 1604.93H1053.25C1052.81 1606.51 1051.93 1607.8 1050.61 1608.8C1049.29 1609.78 1047.65 1610.27 1045.69 1610.27C1044.13 1610.27 1042.73 1609.92 1041.49 1609.22C1040.27 1608.52 1039.31 1607.53 1038.61 1606.25C1037.91 1604.95 1037.56 1603.45 1037.56 1601.75C1037.56 1600.05 1037.9 1598.56 1038.58 1597.28C1039.26 1596 1040.21 1595.02 1041.43 1594.34C1042.67 1593.64 1044.09 1593.29 1045.69 1593.29C1047.25 1593.29 1048.63 1593.63 1049.83 1594.31C1051.03 1594.99 1051.95 1595.93 1052.59 1597.13C1053.25 1598.31 1053.58 1599.65 1053.58 1601.15ZM1050.76 1600.58C1050.76 1599.54 1050.53 1598.65 1050.07 1597.91C1049.61 1597.15 1048.98 1596.58 1048.18 1596.2C1047.4 1595.8 1046.53 1595.6 1045.57 1595.6C1044.19 1595.6 1043.01 1596.04 1042.03 1596.92C1041.07 1597.8 1040.52 1599.02 1040.38 1600.58H1050.76Z" fill="#617ABE"/>
|
|
||||||
<path d="M1076.95 1593.26C1078.23 1593.26 1079.37 1593.53 1080.37 1594.07C1081.37 1594.59 1082.16 1595.38 1082.74 1596.44C1083.32 1597.5 1083.61 1598.79 1083.61 1600.31V1610H1080.91V1600.7C1080.91 1599.06 1080.5 1597.81 1079.68 1596.95C1078.88 1596.07 1077.79 1595.63 1076.41 1595.63C1074.99 1595.63 1073.86 1596.09 1073.02 1597.01C1072.18 1597.91 1071.76 1599.22 1071.76 1600.94V1610H1069.06V1600.7C1069.06 1599.06 1068.65 1597.81 1067.83 1596.95C1067.03 1596.07 1065.94 1595.63 1064.56 1595.63C1063.14 1595.63 1062.01 1596.09 1061.17 1597.01C1060.33 1597.91 1059.91 1599.22 1059.91 1600.94V1610H1057.18V1593.56H1059.91V1595.93C1060.45 1595.07 1061.17 1594.41 1062.07 1593.95C1062.99 1593.49 1064 1593.26 1065.1 1593.26C1066.48 1593.26 1067.7 1593.57 1068.76 1594.19C1069.82 1594.81 1070.61 1595.72 1071.13 1596.92C1071.59 1595.76 1072.35 1594.86 1073.41 1594.22C1074.47 1593.58 1075.65 1593.26 1076.95 1593.26Z" fill="#617ABE"/>
|
|
||||||
<path d="M1095.07 1601.72C1095.07 1600.04 1095.41 1598.57 1096.09 1597.31C1096.77 1596.03 1097.7 1595.04 1098.88 1594.34C1100.08 1593.64 1101.41 1593.29 1102.87 1593.29C1104.31 1593.29 1105.56 1593.6 1106.62 1594.22C1107.68 1594.84 1108.47 1595.62 1108.99 1596.56V1593.56H1111.75V1610H1108.99V1606.94C1108.45 1607.9 1107.64 1608.7 1106.56 1609.34C1105.5 1609.96 1104.26 1610.27 1102.84 1610.27C1101.38 1610.27 1100.06 1609.91 1098.88 1609.19C1097.7 1608.47 1096.77 1607.46 1096.09 1606.16C1095.41 1604.86 1095.07 1603.38 1095.07 1601.72ZM1108.99 1601.75C1108.99 1600.51 1108.74 1599.43 1108.24 1598.51C1107.74 1597.59 1107.06 1596.89 1106.2 1596.41C1105.36 1595.91 1104.43 1595.66 1103.41 1595.66C1102.39 1595.66 1101.46 1595.9 1100.62 1596.38C1099.78 1596.86 1099.11 1597.56 1098.61 1598.48C1098.11 1599.4 1097.86 1600.48 1097.86 1601.72C1097.86 1602.98 1098.11 1604.08 1098.61 1605.02C1099.11 1605.94 1099.78 1606.65 1100.62 1607.15C1101.46 1607.63 1102.39 1607.87 1103.41 1607.87C1104.43 1607.87 1105.36 1607.63 1106.2 1607.15C1107.06 1606.65 1107.74 1605.94 1108.24 1605.02C1108.74 1604.08 1108.99 1602.99 1108.99 1601.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M1122.48 1607.48L1127.58 1593.56H1130.49L1124.04 1610H1120.86L1114.41 1593.56H1117.35L1122.48 1607.48Z" fill="#617ABE"/>
|
|
||||||
<path d="M1132.16 1601.72C1132.16 1600.04 1132.5 1598.57 1133.18 1597.31C1133.86 1596.03 1134.79 1595.04 1135.97 1594.34C1137.17 1593.64 1138.5 1593.29 1139.96 1593.29C1141.4 1593.29 1142.65 1593.6 1143.71 1594.22C1144.77 1594.84 1145.56 1595.62 1146.08 1596.56V1593.56H1148.84V1610H1146.08V1606.94C1145.54 1607.9 1144.73 1608.7 1143.65 1609.34C1142.59 1609.96 1141.35 1610.27 1139.93 1610.27C1138.47 1610.27 1137.15 1609.91 1135.97 1609.19C1134.79 1608.47 1133.86 1607.46 1133.18 1606.16C1132.5 1604.86 1132.16 1603.38 1132.16 1601.72ZM1146.08 1601.75C1146.08 1600.51 1145.83 1599.43 1145.33 1598.51C1144.83 1597.59 1144.15 1596.89 1143.29 1596.41C1142.45 1595.91 1141.52 1595.66 1140.5 1595.66C1139.48 1595.66 1138.55 1595.9 1137.71 1596.38C1136.87 1596.86 1136.2 1597.56 1135.7 1598.48C1135.2 1599.4 1134.95 1600.48 1134.95 1601.72C1134.95 1602.98 1135.2 1604.08 1135.7 1605.02C1136.2 1605.94 1136.87 1606.65 1137.71 1607.15C1138.55 1607.63 1139.48 1607.87 1140.5 1607.87C1141.52 1607.87 1142.45 1607.63 1143.29 1607.15C1144.15 1606.65 1144.83 1605.94 1145.33 1605.02C1145.83 1604.08 1146.08 1602.99 1146.08 1601.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M1154.86 1590.89C1154.34 1590.89 1153.9 1590.71 1153.54 1590.35C1153.18 1589.99 1153 1589.55 1153 1589.03C1153 1588.51 1153.18 1588.07 1153.54 1587.71C1153.9 1587.35 1154.34 1587.17 1154.86 1587.17C1155.36 1587.17 1155.78 1587.35 1156.12 1587.71C1156.48 1588.07 1156.66 1588.51 1156.66 1589.03C1156.66 1589.55 1156.48 1589.99 1156.12 1590.35C1155.78 1590.71 1155.36 1590.89 1154.86 1590.89ZM1156.18 1593.56V1610H1153.45V1593.56H1156.18Z" fill="#617ABE"/>
|
|
||||||
<path d="M1163.56 1587.8V1610H1160.83V1587.8H1163.56Z" fill="#617ABE"/>
|
|
||||||
<path d="M1167.2 1601.72C1167.2 1600.04 1167.54 1598.57 1168.22 1597.31C1168.9 1596.03 1169.83 1595.04 1171.01 1594.34C1172.21 1593.64 1173.54 1593.29 1175 1593.29C1176.44 1593.29 1177.69 1593.6 1178.75 1594.22C1179.81 1594.84 1180.6 1595.62 1181.12 1596.56V1593.56H1183.88V1610H1181.12V1606.94C1180.58 1607.9 1179.77 1608.7 1178.69 1609.34C1177.63 1609.96 1176.39 1610.27 1174.97 1610.27C1173.51 1610.27 1172.19 1609.91 1171.01 1609.19C1169.83 1608.47 1168.9 1607.46 1168.22 1606.16C1167.54 1604.86 1167.2 1603.38 1167.2 1601.72ZM1181.12 1601.75C1181.12 1600.51 1180.87 1599.43 1180.37 1598.51C1179.87 1597.59 1179.19 1596.89 1178.33 1596.41C1177.49 1595.91 1176.56 1595.66 1175.54 1595.66C1174.52 1595.66 1173.59 1595.9 1172.75 1596.38C1171.91 1596.86 1171.24 1597.56 1170.74 1598.48C1170.24 1599.4 1169.99 1600.48 1169.99 1601.72C1169.99 1602.98 1170.24 1604.08 1170.74 1605.02C1171.24 1605.94 1171.91 1606.65 1172.75 1607.15C1173.59 1607.63 1174.52 1607.87 1175.54 1607.87C1176.56 1607.87 1177.49 1607.63 1178.33 1607.15C1179.19 1606.65 1179.87 1605.94 1180.37 1605.02C1180.87 1604.08 1181.12 1602.99 1181.12 1601.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M1191.22 1596.62C1191.78 1595.64 1192.6 1594.84 1193.68 1594.22C1194.76 1593.6 1195.99 1593.29 1197.37 1593.29C1198.85 1593.29 1200.18 1593.64 1201.36 1594.34C1202.54 1595.04 1203.47 1596.03 1204.15 1597.31C1204.83 1598.57 1205.17 1600.04 1205.17 1601.72C1205.17 1603.38 1204.83 1604.86 1204.15 1606.16C1203.47 1607.46 1202.53 1608.47 1201.33 1609.19C1200.15 1609.91 1198.83 1610.27 1197.37 1610.27C1195.95 1610.27 1194.7 1609.96 1193.62 1609.34C1192.56 1608.72 1191.76 1607.93 1191.22 1606.97V1610H1188.49V1587.8H1191.22V1596.62ZM1202.38 1601.72C1202.38 1600.48 1202.13 1599.4 1201.63 1598.48C1201.13 1597.56 1200.45 1596.86 1199.59 1596.38C1198.75 1595.9 1197.82 1595.66 1196.8 1595.66C1195.8 1595.66 1194.87 1595.91 1194.01 1596.41C1193.17 1596.89 1192.49 1597.6 1191.97 1598.54C1191.47 1599.46 1191.22 1600.53 1191.22 1601.75C1191.22 1602.99 1191.47 1604.08 1191.97 1605.02C1192.49 1605.94 1193.17 1606.65 1194.01 1607.15C1194.87 1607.63 1195.8 1607.87 1196.8 1607.87C1197.82 1607.87 1198.75 1607.63 1199.59 1607.15C1200.45 1606.65 1201.13 1605.94 1201.63 1605.02C1202.13 1604.08 1202.38 1602.98 1202.38 1601.72Z" fill="#617ABE"/>
|
|
||||||
<path d="M1211.49 1587.8V1610H1208.76V1587.8H1211.49Z" fill="#617ABE"/>
|
|
||||||
<path d="M1231.15 1601.15C1231.15 1601.67 1231.12 1602.22 1231.06 1602.8H1217.92C1218.02 1604.42 1218.57 1605.69 1219.57 1606.61C1220.59 1607.51 1221.82 1607.96 1223.26 1607.96C1224.44 1607.96 1225.42 1607.69 1226.2 1607.15C1227 1606.59 1227.56 1605.85 1227.88 1604.93H1230.82C1230.38 1606.51 1229.5 1607.8 1228.18 1608.8C1226.86 1609.78 1225.22 1610.27 1223.26 1610.27C1221.7 1610.27 1220.3 1609.92 1219.06 1609.22C1217.84 1608.52 1216.88 1607.53 1216.18 1606.25C1215.48 1604.95 1215.13 1603.45 1215.13 1601.75C1215.13 1600.05 1215.47 1598.56 1216.15 1597.28C1216.83 1596 1217.78 1595.02 1219 1594.34C1220.24 1593.64 1221.66 1593.29 1223.26 1593.29C1224.82 1593.29 1226.2 1593.63 1227.4 1594.31C1228.6 1594.99 1229.52 1595.93 1230.16 1597.13C1230.82 1598.31 1231.15 1599.65 1231.15 1601.15ZM1228.33 1600.58C1228.33 1599.54 1228.1 1598.65 1227.64 1597.91C1227.18 1597.15 1226.55 1596.58 1225.75 1596.2C1224.97 1595.8 1224.1 1595.6 1223.14 1595.6C1221.76 1595.6 1220.58 1596.04 1219.6 1596.92C1218.64 1597.8 1218.09 1599.02 1217.95 1600.58H1228.33Z" fill="#617ABE"/>
|
|
||||||
<path d="M989.37 1640.81H985.92V1655H983.19V1640.81H981.06V1638.56H983.19V1637.39C983.19 1635.55 983.66 1634.21 984.6 1633.37C985.56 1632.51 987.09 1632.08 989.19 1632.08V1634.36C987.99 1634.36 987.14 1634.6 986.64 1635.08C986.16 1635.54 985.92 1636.31 985.92 1637.39V1638.56H989.37V1640.81Z" fill="#617ABE"/>
|
|
||||||
<path d="M999.723 1655.27C998.183 1655.27 996.783 1654.92 995.523 1654.22C994.283 1653.52 993.303 1652.53 992.583 1651.25C991.883 1649.95 991.533 1648.45 991.533 1646.75C991.533 1645.07 991.893 1643.59 992.613 1642.31C993.353 1641.01 994.353 1640.02 995.613 1639.34C996.873 1638.64 998.283 1638.29 999.843 1638.29C1001.4 1638.29 1002.81 1638.64 1004.07 1639.34C1005.33 1640.02 1006.32 1641 1007.04 1642.28C1007.78 1643.56 1008.15 1645.05 1008.15 1646.75C1008.15 1648.45 1007.77 1649.95 1007.01 1651.25C1006.27 1652.53 1005.26 1653.52 1003.98 1654.22C1002.7 1654.92 1001.28 1655.27 999.723 1655.27ZM999.723 1652.87C1000.7 1652.87 1001.62 1652.64 1002.48 1652.18C1003.34 1651.72 1004.03 1651.03 1004.55 1650.11C1005.09 1649.19 1005.36 1648.07 1005.36 1646.75C1005.36 1645.43 1005.1 1644.31 1004.58 1643.39C1004.06 1642.47 1003.38 1641.79 1002.54 1641.35C1001.7 1640.89 1000.79 1640.66 999.813 1640.66C998.813 1640.66 997.893 1640.89 997.053 1641.35C996.233 1641.79 995.573 1642.47 995.073 1643.39C994.573 1644.31 994.323 1645.43 994.323 1646.75C994.323 1648.09 994.563 1649.22 995.043 1650.14C995.543 1651.06 996.203 1651.75 997.023 1652.21C997.843 1652.65 998.743 1652.87 999.723 1652.87Z" fill="#617ABE"/>
|
|
||||||
<path d="M1014.47 1641.23C1014.95 1640.29 1015.63 1639.56 1016.51 1639.04C1017.41 1638.52 1018.5 1638.26 1019.78 1638.26V1641.08H1019.06C1016 1641.08 1014.47 1642.74 1014.47 1646.06V1655H1011.74V1638.56H1014.47V1641.23Z" fill="#617ABE"/>
|
|
||||||
<path d="M1029.91 1646.72C1029.91 1645.04 1030.25 1643.57 1030.93 1642.31C1031.61 1641.03 1032.54 1640.04 1033.72 1639.34C1034.92 1638.64 1036.26 1638.29 1037.74 1638.29C1039.16 1638.29 1040.4 1638.61 1041.46 1639.25C1042.54 1639.87 1043.33 1640.64 1043.83 1641.56V1638.56H1046.59V1662.8H1043.83V1651.97C1043.31 1652.89 1042.51 1653.67 1041.43 1654.31C1040.35 1654.95 1039.09 1655.27 1037.65 1655.27C1036.21 1655.27 1034.9 1654.91 1033.72 1654.19C1032.54 1653.47 1031.61 1652.46 1030.93 1651.16C1030.25 1649.86 1029.91 1648.38 1029.91 1646.72ZM1043.83 1646.75C1043.83 1645.51 1043.58 1644.43 1043.08 1643.51C1042.58 1642.59 1041.9 1641.89 1041.04 1641.41C1040.2 1640.91 1039.27 1640.66 1038.25 1640.66C1037.23 1640.66 1036.3 1640.9 1035.46 1641.38C1034.62 1641.86 1033.95 1642.56 1033.45 1643.48C1032.95 1644.4 1032.7 1645.48 1032.7 1646.72C1032.7 1647.98 1032.95 1649.08 1033.45 1650.02C1033.95 1650.94 1034.62 1651.65 1035.46 1652.15C1036.3 1652.63 1037.23 1652.87 1038.25 1652.87C1039.27 1652.87 1040.2 1652.63 1041.04 1652.15C1041.9 1651.65 1042.58 1650.94 1043.08 1650.02C1043.58 1649.08 1043.83 1647.99 1043.83 1646.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M1065.79 1638.56V1655H1063.06V1652.57C1062.54 1653.41 1061.81 1654.07 1060.87 1654.55C1059.95 1655.01 1058.93 1655.24 1057.81 1655.24C1056.53 1655.24 1055.38 1654.98 1054.36 1654.46C1053.34 1653.92 1052.53 1653.12 1051.93 1652.06C1051.35 1651 1051.06 1649.71 1051.06 1648.19V1638.56H1053.76V1647.83C1053.76 1649.45 1054.17 1650.7 1054.99 1651.58C1055.81 1652.44 1056.93 1652.87 1058.35 1652.87C1059.81 1652.87 1060.96 1652.42 1061.8 1651.52C1062.64 1650.62 1063.06 1649.31 1063.06 1647.59V1638.56H1065.79Z" fill="#617ABE"/>
|
|
||||||
<path d="M1085.4 1646.15C1085.4 1646.67 1085.37 1647.22 1085.31 1647.8H1072.17C1072.27 1649.42 1072.82 1650.69 1073.82 1651.61C1074.84 1652.51 1076.07 1652.96 1077.51 1652.96C1078.69 1652.96 1079.67 1652.69 1080.45 1652.15C1081.25 1651.59 1081.81 1650.85 1082.13 1649.93H1085.07C1084.63 1651.51 1083.75 1652.8 1082.43 1653.8C1081.11 1654.78 1079.47 1655.27 1077.51 1655.27C1075.95 1655.27 1074.55 1654.92 1073.31 1654.22C1072.09 1653.52 1071.13 1652.53 1070.43 1651.25C1069.73 1649.95 1069.38 1648.45 1069.38 1646.75C1069.38 1645.05 1069.72 1643.56 1070.4 1642.28C1071.08 1641 1072.03 1640.02 1073.25 1639.34C1074.49 1638.64 1075.91 1638.29 1077.51 1638.29C1079.07 1638.29 1080.45 1638.63 1081.65 1639.31C1082.85 1639.99 1083.77 1640.93 1084.41 1642.13C1085.07 1643.31 1085.4 1644.65 1085.4 1646.15ZM1082.58 1645.58C1082.58 1644.54 1082.35 1643.65 1081.89 1642.91C1081.43 1642.15 1080.8 1641.58 1080 1641.2C1079.22 1640.8 1078.35 1640.6 1077.39 1640.6C1076.01 1640.6 1074.83 1641.04 1073.85 1641.92C1072.89 1642.8 1072.34 1644.02 1072.2 1645.58H1082.58Z" fill="#617ABE"/>
|
|
||||||
<path d="M1091.73 1641.23C1092.21 1640.29 1092.89 1639.56 1093.77 1639.04C1094.67 1638.52 1095.76 1638.26 1097.04 1638.26V1641.08H1096.32C1093.26 1641.08 1091.73 1642.74 1091.73 1646.06V1655H1089V1638.56H1091.73V1641.23Z" fill="#617ABE"/>
|
|
||||||
<path d="M1114.35 1638.56L1104.45 1662.74H1101.63L1104.87 1654.82L1098.24 1638.56H1101.27L1106.43 1651.88L1111.53 1638.56H1114.35Z" fill="#617ABE"/>
|
|
||||||
<path d="M1118.5 1635.89C1117.98 1635.89 1117.54 1635.71 1117.18 1635.35C1116.82 1634.99 1116.64 1634.55 1116.64 1634.03C1116.64 1633.51 1116.82 1633.07 1117.18 1632.71C1117.54 1632.35 1117.98 1632.17 1118.5 1632.17C1119 1632.17 1119.42 1632.35 1119.76 1632.71C1120.12 1633.07 1120.3 1633.51 1120.3 1634.03C1120.3 1634.55 1120.12 1634.99 1119.76 1635.35C1119.42 1635.71 1119 1635.89 1118.5 1635.89ZM1119.82 1638.56V1655H1117.09V1638.56H1119.82Z" fill="#617ABE"/>
|
|
||||||
<path d="M1132.49 1638.26C1134.49 1638.26 1136.11 1638.87 1137.35 1640.09C1138.59 1641.29 1139.21 1643.03 1139.21 1645.31V1655H1136.51V1645.7C1136.51 1644.06 1136.1 1642.81 1135.28 1641.95C1134.46 1641.07 1133.34 1640.63 1131.92 1640.63C1130.48 1640.63 1129.33 1641.08 1128.47 1641.98C1127.63 1642.88 1127.21 1644.19 1127.21 1645.91V1655H1124.48V1638.56H1127.21V1640.9C1127.75 1640.06 1128.48 1639.41 1129.4 1638.95C1130.34 1638.49 1131.37 1638.26 1132.49 1638.26Z" fill="#617ABE"/>
|
|
||||||
<path d="M1150.45 1638.29C1151.87 1638.29 1153.11 1638.6 1154.17 1639.22C1155.25 1639.84 1156.05 1640.62 1156.57 1641.56V1638.56H1159.33V1655.36C1159.33 1656.86 1159.01 1658.19 1158.37 1659.35C1157.73 1660.53 1156.81 1661.45 1155.61 1662.11C1154.43 1662.77 1153.05 1663.1 1151.47 1663.1C1149.31 1663.1 1147.51 1662.59 1146.07 1661.57C1144.63 1660.55 1143.78 1659.16 1143.52 1657.4H1146.22C1146.52 1658.4 1147.14 1659.2 1148.08 1659.8C1149.02 1660.42 1150.15 1660.73 1151.47 1660.73C1152.97 1660.73 1154.19 1660.26 1155.13 1659.32C1156.09 1658.38 1156.57 1657.06 1156.57 1655.36V1651.91C1156.03 1652.87 1155.23 1653.67 1154.17 1654.31C1153.11 1654.95 1151.87 1655.27 1150.45 1655.27C1148.99 1655.27 1147.66 1654.91 1146.46 1654.19C1145.28 1653.47 1144.35 1652.46 1143.67 1651.16C1142.99 1649.86 1142.65 1648.38 1142.65 1646.72C1142.65 1645.04 1142.99 1643.57 1143.67 1642.31C1144.35 1641.03 1145.28 1640.04 1146.46 1639.34C1147.66 1638.64 1148.99 1638.29 1150.45 1638.29ZM1156.57 1646.75C1156.57 1645.51 1156.32 1644.43 1155.82 1643.51C1155.32 1642.59 1154.64 1641.89 1153.78 1641.41C1152.94 1640.91 1152.01 1640.66 1150.99 1640.66C1149.97 1640.66 1149.04 1640.9 1148.2 1641.38C1147.36 1641.86 1146.69 1642.56 1146.19 1643.48C1145.69 1644.4 1145.44 1645.48 1145.44 1646.72C1145.44 1647.98 1145.69 1649.08 1146.19 1650.02C1146.69 1650.94 1147.36 1651.65 1148.2 1652.15C1149.04 1652.63 1149.97 1652.87 1150.99 1652.87C1152.01 1652.87 1152.94 1652.63 1153.78 1652.15C1154.64 1651.65 1155.32 1650.94 1155.82 1650.02C1156.32 1649.08 1156.57 1647.99 1156.57 1646.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M933.042 364.59C933.582 363.65 934.382 362.87 935.442 362.25C936.522 361.61 937.772 361.29 939.192 361.29C940.652 361.29 941.972 361.64 943.152 362.34C944.352 363.04 945.292 364.03 945.972 365.31C946.652 366.57 946.992 368.04 946.992 369.72C946.992 371.38 946.652 372.86 945.972 374.16C945.292 375.46 944.352 376.47 943.152 377.19C941.972 377.91 940.652 378.27 939.192 378.27C937.792 378.27 936.552 377.96 935.472 377.34C934.412 376.7 933.602 375.91 933.042 374.97V385.8H930.312V361.56H933.042V364.59ZM944.202 369.72C944.202 368.48 943.952 367.4 943.452 366.48C942.952 365.56 942.272 364.86 941.412 364.38C940.572 363.9 939.642 363.66 938.622 363.66C937.622 363.66 936.692 363.91 935.832 364.41C934.992 364.89 934.312 365.6 933.792 366.54C933.292 367.46 933.042 368.53 933.042 369.75C933.042 370.99 933.292 372.08 933.792 373.02C934.312 373.94 934.992 374.65 935.832 375.15C936.692 375.63 937.622 375.87 938.622 375.87C939.642 375.87 940.572 375.63 941.412 375.15C942.272 374.65 942.952 373.94 943.452 373.02C943.952 372.08 944.202 370.98 944.202 369.72Z" fill="#617ABE"/>
|
|
||||||
<path d="M949.565 369.72C949.565 368.04 949.905 366.57 950.585 365.31C951.265 364.03 952.195 363.04 953.375 362.34C954.575 361.64 955.905 361.29 957.365 361.29C958.805 361.29 960.055 361.6 961.115 362.22C962.175 362.84 962.965 363.62 963.485 364.56V361.56H966.245V378H963.485V374.94C962.945 375.9 962.135 376.7 961.055 377.34C959.995 377.96 958.755 378.27 957.335 378.27C955.875 378.27 954.555 377.91 953.375 377.19C952.195 376.47 951.265 375.46 950.585 374.16C949.905 372.86 949.565 371.38 949.565 369.72ZM963.485 369.75C963.485 368.51 963.235 367.43 962.735 366.51C962.235 365.59 961.555 364.89 960.695 364.41C959.855 363.91 958.925 363.66 957.905 363.66C956.885 363.66 955.955 363.9 955.115 364.38C954.275 364.86 953.605 365.56 953.105 366.48C952.605 367.4 952.355 368.48 952.355 369.72C952.355 370.98 952.605 372.08 953.105 373.02C953.605 373.94 954.275 374.65 955.115 375.15C955.955 375.63 956.885 375.87 957.905 375.87C958.925 375.87 959.855 375.63 960.695 375.15C961.555 374.65 962.235 373.94 962.735 373.02C963.235 372.08 963.485 370.99 963.485 369.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M969.839 369.75C969.839 368.05 970.179 366.57 970.859 365.31C971.539 364.03 972.479 363.04 973.679 362.34C974.899 361.64 976.289 361.29 977.849 361.29C979.869 361.29 981.529 361.78 982.829 362.76C984.149 363.74 985.019 365.1 985.439 366.84H982.499C982.219 365.84 981.669 365.05 980.849 364.47C980.049 363.89 979.049 363.6 977.849 363.6C976.289 363.6 975.029 364.14 974.069 365.22C973.109 366.28 972.629 367.79 972.629 369.75C972.629 371.73 973.109 373.26 974.069 374.34C975.029 375.42 976.289 375.96 977.849 375.96C979.049 375.96 980.049 375.68 980.849 375.12C981.649 374.56 982.199 373.76 982.499 372.72H985.439C984.999 374.4 984.119 375.75 982.799 376.77C981.479 377.77 979.829 378.27 977.849 378.27C976.289 378.27 974.899 377.92 973.679 377.22C972.479 376.52 971.539 375.53 970.859 374.25C970.179 372.97 969.839 371.47 969.839 369.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M998.262 378L991.812 370.74V378H989.082V355.8H991.812V368.85L998.142 361.56H1001.95L994.212 369.75L1001.98 378H998.262Z" fill="#617ABE"/>
|
|
||||||
<path d="M1010.34 378.27C1009.08 378.27 1007.95 378.06 1006.95 377.64C1005.95 377.2 1005.16 376.6 1004.58 375.84C1004 375.06 1003.68 374.17 1003.62 373.17H1006.44C1006.52 373.99 1006.9 374.66 1007.58 375.18C1008.28 375.7 1009.19 375.96 1010.31 375.96C1011.35 375.96 1012.17 375.73 1012.77 375.27C1013.37 374.81 1013.67 374.23 1013.67 373.53C1013.67 372.81 1013.35 372.28 1012.71 371.94C1012.07 371.58 1011.08 371.23 1009.74 370.89C1008.52 370.57 1007.52 370.25 1006.74 369.93C1005.98 369.59 1005.32 369.1 1004.76 368.46C1004.22 367.8 1003.95 366.94 1003.95 365.88C1003.95 365.04 1004.2 364.27 1004.7 363.57C1005.2 362.87 1005.91 362.32 1006.83 361.92C1007.75 361.5 1008.8 361.29 1009.98 361.29C1011.8 361.29 1013.27 361.75 1014.39 362.67C1015.51 363.59 1016.11 364.85 1016.19 366.45H1013.46C1013.4 365.59 1013.05 364.9 1012.41 364.38C1011.79 363.86 1010.95 363.6 1009.89 363.6C1008.91 363.6 1008.13 363.81 1007.55 364.23C1006.97 364.65 1006.68 365.2 1006.68 365.88C1006.68 366.42 1006.85 366.87 1007.19 367.23C1007.55 367.57 1007.99 367.85 1008.51 368.07C1009.05 368.27 1009.79 368.5 1010.73 368.76C1011.91 369.08 1012.87 369.4 1013.61 369.72C1014.35 370.02 1014.98 370.48 1015.5 371.1C1016.04 371.72 1016.32 372.53 1016.34 373.53C1016.34 374.43 1016.09 375.24 1015.59 375.96C1015.09 376.68 1014.38 377.25 1013.46 377.67C1012.56 378.07 1011.52 378.27 1010.34 378.27Z" fill="#617ABE"/>
|
|
||||||
<path d="M1031.52 363.81V373.5C1031.52 374.3 1031.69 374.87 1032.03 375.21C1032.37 375.53 1032.96 375.69 1033.8 375.69H1035.81V378H1033.35C1031.83 378 1030.69 377.65 1029.93 376.95C1029.17 376.25 1028.79 375.1 1028.79 373.5V363.81H1026.66V361.56H1028.79V357.42H1031.52V361.56H1035.81V363.81H1031.52Z" fill="#617ABE"/>
|
|
||||||
<path d="M1041.85 364.23C1042.33 363.29 1043.01 362.56 1043.89 362.04C1044.79 361.52 1045.88 361.26 1047.16 361.26V364.08H1046.44C1043.38 364.08 1041.85 365.74 1041.85 369.06V378H1039.12V361.56H1041.85V364.23Z" fill="#617ABE"/>
|
|
||||||
<path d="M1049.29 369.72C1049.29 368.04 1049.63 366.57 1050.31 365.31C1050.99 364.03 1051.92 363.04 1053.1 362.34C1054.3 361.64 1055.63 361.29 1057.09 361.29C1058.53 361.29 1059.78 361.6 1060.84 362.22C1061.9 362.84 1062.69 363.62 1063.21 364.56V361.56H1065.97V378H1063.21V374.94C1062.67 375.9 1061.86 376.7 1060.78 377.34C1059.72 377.96 1058.48 378.27 1057.06 378.27C1055.6 378.27 1054.28 377.91 1053.1 377.19C1051.92 376.47 1050.99 375.46 1050.31 374.16C1049.63 372.86 1049.29 371.38 1049.29 369.72ZM1063.21 369.75C1063.21 368.51 1062.96 367.43 1062.46 366.51C1061.96 365.59 1061.28 364.89 1060.42 364.41C1059.58 363.91 1058.65 363.66 1057.63 363.66C1056.61 363.66 1055.68 363.9 1054.84 364.38C1054 364.86 1053.33 365.56 1052.83 366.48C1052.33 367.4 1052.08 368.48 1052.08 369.72C1052.08 370.98 1052.33 372.08 1052.83 373.02C1053.33 373.94 1054 374.65 1054.84 375.15C1055.68 375.63 1056.61 375.87 1057.63 375.87C1058.65 375.87 1059.58 375.63 1060.42 375.15C1061.28 374.65 1061.96 373.94 1062.46 373.02C1062.96 372.08 1063.21 370.99 1063.21 369.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M1078.6 361.26C1080.6 361.26 1082.22 361.87 1083.46 363.09C1084.7 364.29 1085.32 366.03 1085.32 368.31V378H1082.62V368.7C1082.62 367.06 1082.21 365.81 1081.39 364.95C1080.57 364.07 1079.45 363.63 1078.03 363.63C1076.59 363.63 1075.44 364.08 1074.58 364.98C1073.74 365.88 1073.32 367.19 1073.32 368.91V378H1070.59V361.56H1073.32V363.9C1073.86 363.06 1074.59 362.41 1075.51 361.95C1076.45 361.49 1077.48 361.26 1078.6 361.26Z" fill="#617ABE"/>
|
|
||||||
<path d="M1095.59 378.27C1094.33 378.27 1093.2 378.06 1092.2 377.64C1091.2 377.2 1090.41 376.6 1089.83 375.84C1089.25 375.06 1088.93 374.17 1088.87 373.17H1091.69C1091.77 373.99 1092.15 374.66 1092.83 375.18C1093.53 375.7 1094.44 375.96 1095.56 375.96C1096.6 375.96 1097.42 375.73 1098.02 375.27C1098.62 374.81 1098.92 374.23 1098.92 373.53C1098.92 372.81 1098.6 372.28 1097.96 371.94C1097.32 371.58 1096.33 371.23 1094.99 370.89C1093.77 370.57 1092.77 370.25 1091.99 369.93C1091.23 369.59 1090.57 369.1 1090.01 368.46C1089.47 367.8 1089.2 366.94 1089.2 365.88C1089.2 365.04 1089.45 364.27 1089.95 363.57C1090.45 362.87 1091.16 362.32 1092.08 361.92C1093 361.5 1094.05 361.29 1095.23 361.29C1097.05 361.29 1098.52 361.75 1099.64 362.67C1100.76 363.59 1101.36 364.85 1101.44 366.45H1098.71C1098.65 365.59 1098.3 364.9 1097.66 364.38C1097.04 363.86 1096.2 363.6 1095.14 363.6C1094.16 363.6 1093.38 363.81 1092.8 364.23C1092.22 364.65 1091.93 365.2 1091.93 365.88C1091.93 366.42 1092.1 366.87 1092.44 367.23C1092.8 367.57 1093.24 367.85 1093.76 368.07C1094.3 368.27 1095.04 368.5 1095.98 368.76C1097.16 369.08 1098.12 369.4 1098.86 369.72C1099.6 370.02 1100.23 370.48 1100.75 371.1C1101.29 371.72 1101.57 372.53 1101.59 373.53C1101.59 374.43 1101.34 375.24 1100.84 375.96C1100.34 376.68 1099.63 377.25 1098.71 377.67C1097.81 378.07 1096.77 378.27 1095.59 378.27Z" fill="#617ABE"/>
|
|
||||||
<path d="M1104.43 369.72C1104.43 368.04 1104.77 366.57 1105.45 365.31C1106.13 364.03 1107.06 363.04 1108.24 362.34C1109.44 361.64 1110.77 361.29 1112.23 361.29C1113.67 361.29 1114.92 361.6 1115.98 362.22C1117.04 362.84 1117.83 363.62 1118.35 364.56V361.56H1121.11V378H1118.35V374.94C1117.81 375.9 1117 376.7 1115.92 377.34C1114.86 377.96 1113.62 378.27 1112.2 378.27C1110.74 378.27 1109.42 377.91 1108.24 377.19C1107.06 376.47 1106.13 375.46 1105.45 374.16C1104.77 372.86 1104.43 371.38 1104.43 369.72ZM1118.35 369.75C1118.35 368.51 1118.1 367.43 1117.6 366.51C1117.1 365.59 1116.42 364.89 1115.56 364.41C1114.72 363.91 1113.79 363.66 1112.77 363.66C1111.75 363.66 1110.82 363.9 1109.98 364.38C1109.14 364.86 1108.47 365.56 1107.97 366.48C1107.47 367.4 1107.22 368.48 1107.22 369.72C1107.22 370.98 1107.47 372.08 1107.97 373.02C1108.47 373.94 1109.14 374.65 1109.98 375.15C1110.82 375.63 1111.75 375.87 1112.77 375.87C1113.79 375.87 1114.72 375.63 1115.56 375.15C1116.42 374.65 1117.1 373.94 1117.6 373.02C1118.1 372.08 1118.35 370.99 1118.35 369.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M1124.7 369.75C1124.7 368.05 1125.04 366.57 1125.72 365.31C1126.4 364.03 1127.34 363.04 1128.54 362.34C1129.76 361.64 1131.15 361.29 1132.71 361.29C1134.73 361.29 1136.39 361.78 1137.69 362.76C1139.01 363.74 1139.88 365.1 1140.3 366.84H1137.36C1137.08 365.84 1136.53 365.05 1135.71 364.47C1134.91 363.89 1133.91 363.6 1132.71 363.6C1131.15 363.6 1129.89 364.14 1128.93 365.22C1127.97 366.28 1127.49 367.79 1127.49 369.75C1127.49 371.73 1127.97 373.26 1128.93 374.34C1129.89 375.42 1131.15 375.96 1132.71 375.96C1133.91 375.96 1134.91 375.68 1135.71 375.12C1136.51 374.56 1137.06 373.76 1137.36 372.72H1140.3C1139.86 374.4 1138.98 375.75 1137.66 376.77C1136.34 377.77 1134.69 378.27 1132.71 378.27C1131.15 378.27 1129.76 377.92 1128.54 377.22C1127.34 376.52 1126.4 375.53 1125.72 374.25C1125.04 372.97 1124.7 371.47 1124.7 369.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M1147.27 363.81V373.5C1147.27 374.3 1147.44 374.87 1147.78 375.21C1148.12 375.53 1148.71 375.69 1149.55 375.69H1151.56V378H1149.1C1147.58 378 1146.44 377.65 1145.68 376.95C1144.92 376.25 1144.54 375.1 1144.54 373.5V363.81H1142.41V361.56H1144.54V357.42H1147.27V361.56H1151.56V363.81H1147.27Z" fill="#617ABE"/>
|
|
||||||
<path d="M1156.28 358.89C1155.76 358.89 1155.32 358.71 1154.96 358.35C1154.6 357.99 1154.42 357.55 1154.42 357.03C1154.42 356.51 1154.6 356.07 1154.96 355.71C1155.32 355.35 1155.76 355.17 1156.28 355.17C1156.78 355.17 1157.2 355.35 1157.54 355.71C1157.9 356.07 1158.08 356.51 1158.08 357.03C1158.08 357.55 1157.9 357.99 1157.54 358.35C1157.2 358.71 1156.78 358.89 1156.28 358.89ZM1157.6 361.56V378H1154.87V361.56H1157.6Z" fill="#617ABE"/>
|
|
||||||
<path d="M1169.43 378.27C1167.89 378.27 1166.49 377.92 1165.23 377.22C1163.99 376.52 1163.01 375.53 1162.29 374.25C1161.59 372.95 1161.24 371.45 1161.24 369.75C1161.24 368.07 1161.6 366.59 1162.32 365.31C1163.06 364.01 1164.06 363.02 1165.32 362.34C1166.58 361.64 1167.99 361.29 1169.55 361.29C1171.11 361.29 1172.52 361.64 1173.78 362.34C1175.04 363.02 1176.03 364 1176.75 365.28C1177.49 366.56 1177.86 368.05 1177.86 369.75C1177.86 371.45 1177.48 372.95 1176.72 374.25C1175.98 375.53 1174.97 376.52 1173.69 377.22C1172.41 377.92 1170.99 378.27 1169.43 378.27ZM1169.43 375.87C1170.41 375.87 1171.33 375.64 1172.19 375.18C1173.05 374.72 1173.74 374.03 1174.26 373.11C1174.8 372.19 1175.07 371.07 1175.07 369.75C1175.07 368.43 1174.81 367.31 1174.29 366.39C1173.77 365.47 1173.09 364.79 1172.25 364.35C1171.41 363.89 1170.5 363.66 1169.52 363.66C1168.52 363.66 1167.6 363.89 1166.76 364.35C1165.94 364.79 1165.28 365.47 1164.78 366.39C1164.28 367.31 1164.03 368.43 1164.03 369.75C1164.03 371.09 1164.27 372.22 1164.75 373.14C1165.25 374.06 1165.91 374.75 1166.73 375.21C1167.55 375.65 1168.45 375.87 1169.43 375.87Z" fill="#617ABE"/>
|
|
||||||
<path d="M1189.45 361.26C1191.45 361.26 1193.07 361.87 1194.31 363.09C1195.55 364.29 1196.17 366.03 1196.17 368.31V378H1193.47V368.7C1193.47 367.06 1193.06 365.81 1192.24 364.95C1191.42 364.07 1190.3 363.63 1188.88 363.63C1187.44 363.63 1186.29 364.08 1185.43 364.98C1184.59 365.88 1184.17 367.19 1184.17 368.91V378H1181.44V361.56H1184.17V363.9C1184.71 363.06 1185.44 362.41 1186.36 361.95C1187.3 361.49 1188.33 361.26 1189.45 361.26Z" fill="#617ABE"/>
|
|
||||||
<path d="M1206.45 378.27C1205.19 378.27 1204.06 378.06 1203.06 377.64C1202.06 377.2 1201.27 376.6 1200.69 375.84C1200.11 375.06 1199.79 374.17 1199.73 373.17H1202.55C1202.63 373.99 1203.01 374.66 1203.69 375.18C1204.39 375.7 1205.3 375.96 1206.42 375.96C1207.46 375.96 1208.28 375.73 1208.88 375.27C1209.48 374.81 1209.78 374.23 1209.78 373.53C1209.78 372.81 1209.46 372.28 1208.82 371.94C1208.18 371.58 1207.19 371.23 1205.85 370.89C1204.63 370.57 1203.63 370.25 1202.85 369.93C1202.09 369.59 1201.43 369.1 1200.87 368.46C1200.33 367.8 1200.06 366.94 1200.06 365.88C1200.06 365.04 1200.31 364.27 1200.81 363.57C1201.31 362.87 1202.02 362.32 1202.94 361.92C1203.86 361.5 1204.91 361.29 1206.09 361.29C1207.91 361.29 1209.38 361.75 1210.5 362.67C1211.62 363.59 1212.22 364.85 1212.3 366.45H1209.57C1209.51 365.59 1209.16 364.9 1208.52 364.38C1207.9 363.86 1207.06 363.6 1206 363.6C1205.02 363.6 1204.24 363.81 1203.66 364.23C1203.08 364.65 1202.79 365.2 1202.79 365.88C1202.79 366.42 1202.96 366.87 1203.3 367.23C1203.66 367.57 1204.1 367.85 1204.62 368.07C1205.16 368.27 1205.9 368.5 1206.84 368.76C1208.02 369.08 1208.98 369.4 1209.72 369.72C1210.46 370.02 1211.09 370.48 1211.61 371.1C1212.15 371.72 1212.43 372.53 1212.45 373.53C1212.45 374.43 1212.2 375.24 1211.7 375.96C1211.2 376.68 1210.49 377.25 1209.57 377.67C1208.67 378.07 1207.63 378.27 1206.45 378.27Z" fill="#617ABE"/>
|
|
||||||
<path d="M888.745 414.72C888.745 413.04 889.085 411.57 889.765 410.31C890.445 409.03 891.375 408.04 892.555 407.34C893.755 406.64 895.085 406.29 896.545 406.29C897.985 406.29 899.235 406.6 900.295 407.22C901.355 407.84 902.145 408.62 902.665 409.56V406.56H905.425V423H902.665V419.94C902.125 420.9 901.315 421.7 900.235 422.34C899.175 422.96 897.935 423.27 896.515 423.27C895.055 423.27 893.735 422.91 892.555 422.19C891.375 421.47 890.445 420.46 889.765 419.16C889.085 417.86 888.745 416.38 888.745 414.72ZM902.665 414.75C902.665 413.51 902.415 412.43 901.915 411.51C901.415 410.59 900.735 409.89 899.875 409.41C899.035 408.91 898.105 408.66 897.085 408.66C896.065 408.66 895.135 408.9 894.295 409.38C893.455 409.86 892.785 410.56 892.285 411.48C891.785 412.4 891.535 413.48 891.535 414.72C891.535 415.98 891.785 417.08 892.285 418.02C892.785 418.94 893.455 419.65 894.295 420.15C895.135 420.63 896.065 420.87 897.085 420.87C898.105 420.87 899.035 420.63 899.875 420.15C900.735 419.65 901.415 418.94 901.915 418.02C902.415 417.08 902.665 415.99 902.665 414.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M918.049 406.26C920.049 406.26 921.669 406.87 922.909 408.09C924.149 409.29 924.769 411.03 924.769 413.31V423H922.069V413.7C922.069 412.06 921.659 410.81 920.839 409.95C920.019 409.07 918.899 408.63 917.479 408.63C916.039 408.63 914.889 409.08 914.029 409.98C913.189 410.88 912.769 412.19 912.769 413.91V423H910.039V406.56H912.769V408.9C913.309 408.06 914.039 407.41 914.959 406.95C915.899 406.49 916.929 406.26 918.049 406.26Z" fill="#617ABE"/>
|
|
||||||
<path d="M928.208 414.72C928.208 413.04 928.548 411.57 929.228 410.31C929.908 409.03 930.838 408.04 932.018 407.34C933.218 406.64 934.558 406.29 936.038 406.29C937.318 406.29 938.508 406.59 939.608 407.19C940.708 407.77 941.548 408.54 942.128 409.5V400.8H944.888V423H942.128V419.91C941.588 420.89 940.788 421.7 939.728 422.34C938.668 422.96 937.428 423.27 936.008 423.27C934.548 423.27 933.218 422.91 932.018 422.19C930.838 421.47 929.908 420.46 929.228 419.16C928.548 417.86 928.208 416.38 928.208 414.72ZM942.128 414.75C942.128 413.51 941.878 412.43 941.378 411.51C940.878 410.59 940.198 409.89 939.338 409.41C938.498 408.91 937.568 408.66 936.548 408.66C935.528 408.66 934.598 408.9 933.758 409.38C932.918 409.86 932.248 410.56 931.748 411.48C931.248 412.4 930.998 413.48 930.998 414.72C930.998 415.98 931.248 417.08 931.748 418.02C932.248 418.94 932.918 419.65 933.758 420.15C934.598 420.63 935.528 420.87 936.548 420.87C937.568 420.87 938.498 420.63 939.338 420.15C940.198 419.65 940.878 418.94 941.378 418.02C941.878 417.08 942.128 415.99 942.128 414.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M964.279 406.29C965.699 406.29 966.939 406.6 967.999 407.22C969.079 407.84 969.879 408.62 970.399 409.56V406.56H973.159V423.36C973.159 424.86 972.839 426.19 972.199 427.35C971.559 428.53 970.639 429.45 969.439 430.11C968.259 430.77 966.879 431.1 965.299 431.1C963.139 431.1 961.339 430.59 959.899 429.57C958.459 428.55 957.609 427.16 957.349 425.4H960.049C960.349 426.4 960.969 427.2 961.909 427.8C962.849 428.42 963.979 428.73 965.299 428.73C966.799 428.73 968.019 428.26 968.959 427.32C969.919 426.38 970.399 425.06 970.399 423.36V419.91C969.859 420.87 969.059 421.67 967.999 422.31C966.939 422.95 965.699 423.27 964.279 423.27C962.819 423.27 961.489 422.91 960.289 422.19C959.109 421.47 958.179 420.46 957.499 419.16C956.819 417.86 956.479 416.38 956.479 414.72C956.479 413.04 956.819 411.57 957.499 410.31C958.179 409.03 959.109 408.04 960.289 407.34C961.489 406.64 962.819 406.29 964.279 406.29ZM970.399 414.75C970.399 413.51 970.149 412.43 969.649 411.51C969.149 410.59 968.469 409.89 967.609 409.41C966.769 408.91 965.839 408.66 964.819 408.66C963.799 408.66 962.869 408.9 962.029 409.38C961.189 409.86 960.519 410.56 960.019 411.48C959.519 412.4 959.269 413.48 959.269 414.72C959.269 415.98 959.519 417.08 960.019 418.02C960.519 418.94 961.189 419.65 962.029 420.15C962.869 420.63 963.799 420.87 964.819 420.87C965.839 420.87 966.769 420.63 967.609 420.15C968.469 419.65 969.149 418.94 969.649 418.02C970.149 417.08 970.399 415.99 970.399 414.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M992.353 406.56V423H989.623V420.57C989.103 421.41 988.373 422.07 987.433 422.55C986.513 423.01 985.493 423.24 984.373 423.24C983.093 423.24 981.943 422.98 980.923 422.46C979.903 421.92 979.093 421.12 978.493 420.06C977.913 419 977.623 417.71 977.623 416.19V406.56H980.323V415.83C980.323 417.45 980.733 418.7 981.553 419.58C982.373 420.44 983.493 420.87 984.913 420.87C986.373 420.87 987.523 420.42 988.363 419.52C989.203 418.62 989.623 417.31 989.623 415.59V406.56H992.353Z" fill="#617ABE"/>
|
|
||||||
<path d="M995.942 414.72C995.942 413.04 996.282 411.57 996.962 410.31C997.642 409.03 998.572 408.04 999.752 407.34C1000.95 406.64 1002.28 406.29 1003.74 406.29C1005.18 406.29 1006.43 406.6 1007.49 407.22C1008.55 407.84 1009.34 408.62 1009.86 409.56V406.56H1012.62V423H1009.86V419.94C1009.32 420.9 1008.51 421.7 1007.43 422.34C1006.37 422.96 1005.13 423.27 1003.71 423.27C1002.25 423.27 1000.93 422.91 999.752 422.19C998.572 421.47 997.642 420.46 996.962 419.16C996.282 417.86 995.942 416.38 995.942 414.72ZM1009.86 414.75C1009.86 413.51 1009.61 412.43 1009.11 411.51C1008.61 410.59 1007.93 409.89 1007.07 409.41C1006.23 408.91 1005.3 408.66 1004.28 408.66C1003.26 408.66 1002.33 408.9 1001.49 409.38C1000.65 409.86 999.982 410.56 999.482 411.48C998.982 412.4 998.732 413.48 998.732 414.72C998.732 415.98 998.982 417.08 999.482 418.02C999.982 418.94 1000.65 419.65 1001.49 420.15C1002.33 420.63 1003.26 420.87 1004.28 420.87C1005.3 420.87 1006.23 420.63 1007.07 420.15C1007.93 419.65 1008.61 418.94 1009.11 418.02C1009.61 417.08 1009.86 415.99 1009.86 414.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M1019.97 409.23C1020.45 408.29 1021.13 407.56 1022.01 407.04C1022.91 406.52 1024 406.26 1025.28 406.26V409.08H1024.56C1021.5 409.08 1019.97 410.74 1019.97 414.06V423H1017.24V406.56H1019.97V409.23Z" fill="#617ABE"/>
|
|
||||||
<path d="M1027.41 414.72C1027.41 413.04 1027.75 411.57 1028.43 410.31C1029.11 409.03 1030.04 408.04 1031.22 407.34C1032.42 406.64 1033.75 406.29 1035.21 406.29C1036.65 406.29 1037.9 406.6 1038.96 407.22C1040.02 407.84 1040.81 408.62 1041.33 409.56V406.56H1044.09V423H1041.33V419.94C1040.79 420.9 1039.98 421.7 1038.9 422.34C1037.84 422.96 1036.6 423.27 1035.18 423.27C1033.72 423.27 1032.4 422.91 1031.22 422.19C1030.04 421.47 1029.11 420.46 1028.43 419.16C1027.75 417.86 1027.41 416.38 1027.41 414.72ZM1041.33 414.75C1041.33 413.51 1041.08 412.43 1040.58 411.51C1040.08 410.59 1039.4 409.89 1038.54 409.41C1037.7 408.91 1036.77 408.66 1035.75 408.66C1034.73 408.66 1033.8 408.9 1032.96 409.38C1032.12 409.86 1031.45 410.56 1030.95 411.48C1030.45 412.4 1030.2 413.48 1030.2 414.72C1030.2 415.98 1030.45 417.08 1030.95 418.02C1031.45 418.94 1032.12 419.65 1032.96 420.15C1033.8 420.63 1034.73 420.87 1035.75 420.87C1036.77 420.87 1037.7 420.63 1038.54 420.15C1039.4 419.65 1040.08 418.94 1040.58 418.02C1041.08 417.08 1041.33 415.99 1041.33 414.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M1056.71 406.26C1058.71 406.26 1060.33 406.87 1061.57 408.09C1062.81 409.29 1063.43 411.03 1063.43 413.31V423H1060.73V413.7C1060.73 412.06 1060.32 410.81 1059.5 409.95C1058.68 409.07 1057.56 408.63 1056.14 408.63C1054.7 408.63 1053.55 409.08 1052.69 409.98C1051.85 410.88 1051.43 412.19 1051.43 413.91V423H1048.7V406.56H1051.43V408.9C1051.97 408.06 1052.7 407.41 1053.62 406.95C1054.56 406.49 1055.59 406.26 1056.71 406.26Z" fill="#617ABE"/>
|
|
||||||
<path d="M1071.22 408.81V418.5C1071.22 419.3 1071.39 419.87 1071.73 420.21C1072.07 420.53 1072.66 420.69 1073.5 420.69H1075.51V423H1073.05C1071.53 423 1070.39 422.65 1069.63 421.95C1068.87 421.25 1068.49 420.1 1068.49 418.5V408.81H1066.36V406.56H1068.49V402.42H1071.22V406.56H1075.51V408.81H1071.22Z" fill="#617ABE"/>
|
|
||||||
<path d="M1093.82 414.15C1093.82 414.67 1093.79 415.22 1093.73 415.8H1080.59C1080.69 417.42 1081.24 418.69 1082.24 419.61C1083.26 420.51 1084.49 420.96 1085.93 420.96C1087.11 420.96 1088.09 420.69 1088.87 420.15C1089.67 419.59 1090.23 418.85 1090.55 417.93H1093.49C1093.05 419.51 1092.17 420.8 1090.85 421.8C1089.53 422.78 1087.89 423.27 1085.93 423.27C1084.37 423.27 1082.97 422.92 1081.73 422.22C1080.51 421.52 1079.55 420.53 1078.85 419.25C1078.15 417.95 1077.8 416.45 1077.8 414.75C1077.8 413.05 1078.14 411.56 1078.82 410.28C1079.5 409 1080.45 408.02 1081.67 407.34C1082.91 406.64 1084.33 406.29 1085.93 406.29C1087.49 406.29 1088.87 406.63 1090.07 407.31C1091.27 407.99 1092.19 408.93 1092.83 410.13C1093.49 411.31 1093.82 412.65 1093.82 414.15ZM1091 413.58C1091 412.54 1090.77 411.65 1090.31 410.91C1089.85 410.15 1089.22 409.58 1088.42 409.2C1087.64 408.8 1086.77 408.6 1085.81 408.6C1084.43 408.6 1083.25 409.04 1082.27 409.92C1081.31 410.8 1080.76 412.02 1080.62 413.58H1091Z" fill="#617ABE"/>
|
|
||||||
<path d="M1112.42 414.15C1112.42 414.67 1112.39 415.22 1112.33 415.8H1099.19C1099.29 417.42 1099.84 418.69 1100.84 419.61C1101.86 420.51 1103.09 420.96 1104.53 420.96C1105.71 420.96 1106.69 420.69 1107.47 420.15C1108.27 419.59 1108.83 418.85 1109.15 417.93H1112.09C1111.65 419.51 1110.77 420.8 1109.45 421.8C1108.13 422.78 1106.49 423.27 1104.53 423.27C1102.97 423.27 1101.57 422.92 1100.33 422.22C1099.11 421.52 1098.15 420.53 1097.45 419.25C1096.75 417.95 1096.4 416.45 1096.4 414.75C1096.4 413.05 1096.74 411.56 1097.42 410.28C1098.1 409 1099.05 408.02 1100.27 407.34C1101.51 406.64 1102.93 406.29 1104.53 406.29C1106.09 406.29 1107.47 406.63 1108.67 407.31C1109.87 407.99 1110.79 408.93 1111.43 410.13C1112.09 411.31 1112.42 412.65 1112.42 414.15ZM1109.6 413.58C1109.6 412.54 1109.37 411.65 1108.91 410.91C1108.45 410.15 1107.82 409.58 1107.02 409.2C1106.24 408.8 1105.37 408.6 1104.41 408.6C1103.03 408.6 1101.85 409.04 1100.87 409.92C1099.91 410.8 1099.36 412.02 1099.22 413.58H1109.6Z" fill="#617ABE"/>
|
|
||||||
<path d="M1121.84 423.27C1120.58 423.27 1119.45 423.06 1118.45 422.64C1117.45 422.2 1116.66 421.6 1116.08 420.84C1115.5 420.06 1115.18 419.17 1115.12 418.17H1117.94C1118.02 418.99 1118.4 419.66 1119.08 420.18C1119.78 420.7 1120.69 420.96 1121.81 420.96C1122.85 420.96 1123.67 420.73 1124.27 420.27C1124.87 419.81 1125.17 419.23 1125.17 418.53C1125.17 417.81 1124.85 417.28 1124.21 416.94C1123.57 416.58 1122.58 416.23 1121.24 415.89C1120.02 415.57 1119.02 415.25 1118.24 414.93C1117.48 414.59 1116.82 414.1 1116.26 413.46C1115.72 412.8 1115.45 411.94 1115.45 410.88C1115.45 410.04 1115.7 409.27 1116.2 408.57C1116.7 407.87 1117.41 407.32 1118.33 406.92C1119.25 406.5 1120.3 406.29 1121.48 406.29C1123.3 406.29 1124.77 406.75 1125.89 407.67C1127.01 408.59 1127.61 409.85 1127.69 411.45H1124.96C1124.9 410.59 1124.55 409.9 1123.91 409.38C1123.29 408.86 1122.45 408.6 1121.39 408.6C1120.41 408.6 1119.63 408.81 1119.05 409.23C1118.47 409.65 1118.18 410.2 1118.18 410.88C1118.18 411.42 1118.35 411.87 1118.69 412.23C1119.05 412.57 1119.49 412.85 1120.01 413.07C1120.55 413.27 1121.29 413.5 1122.23 413.76C1123.41 414.08 1124.37 414.4 1125.11 414.72C1125.85 415.02 1126.48 415.48 1127 416.1C1127.54 416.72 1127.82 417.53 1127.84 418.53C1127.84 419.43 1127.59 420.24 1127.09 420.96C1126.59 421.68 1125.88 422.25 1124.96 422.67C1124.06 423.07 1123.02 423.27 1121.84 423.27Z" fill="#617ABE"/>
|
|
||||||
<path d="M1138.68 414.72C1138.68 413.04 1139.02 411.57 1139.7 410.31C1140.38 409.03 1141.31 408.04 1142.49 407.34C1143.69 406.64 1145.03 406.29 1146.51 406.29C1147.79 406.29 1148.98 406.59 1150.08 407.19C1151.18 407.77 1152.02 408.54 1152.6 409.5V400.8H1155.36V423H1152.6V419.91C1152.06 420.89 1151.26 421.7 1150.2 422.34C1149.14 422.96 1147.9 423.27 1146.48 423.27C1145.02 423.27 1143.69 422.91 1142.49 422.19C1141.31 421.47 1140.38 420.46 1139.7 419.16C1139.02 417.86 1138.68 416.38 1138.68 414.72ZM1152.6 414.75C1152.6 413.51 1152.35 412.43 1151.85 411.51C1151.35 410.59 1150.67 409.89 1149.81 409.41C1148.97 408.91 1148.04 408.66 1147.02 408.66C1146 408.66 1145.07 408.9 1144.23 409.38C1143.39 409.86 1142.72 410.56 1142.22 411.48C1141.72 412.4 1141.47 413.48 1141.47 414.72C1141.47 415.98 1141.72 417.08 1142.22 418.02C1142.72 418.94 1143.39 419.65 1144.23 420.15C1145.07 420.63 1146 420.87 1147.02 420.87C1148.04 420.87 1148.97 420.63 1149.81 420.15C1150.67 419.65 1151.35 418.94 1151.85 418.02C1152.35 417.08 1152.6 415.99 1152.6 414.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M1174.97 414.15C1174.97 414.67 1174.94 415.22 1174.88 415.8H1161.74C1161.84 417.42 1162.39 418.69 1163.39 419.61C1164.41 420.51 1165.64 420.96 1167.08 420.96C1168.26 420.96 1169.24 420.69 1170.02 420.15C1170.82 419.59 1171.38 418.85 1171.7 417.93H1174.64C1174.2 419.51 1173.32 420.8 1172 421.8C1170.68 422.78 1169.04 423.27 1167.08 423.27C1165.52 423.27 1164.12 422.92 1162.88 422.22C1161.66 421.52 1160.7 420.53 1160 419.25C1159.3 417.95 1158.95 416.45 1158.95 414.75C1158.95 413.05 1159.29 411.56 1159.97 410.28C1160.65 409 1161.6 408.02 1162.82 407.34C1164.06 406.64 1165.48 406.29 1167.08 406.29C1168.64 406.29 1170.02 406.63 1171.22 407.31C1172.42 407.99 1173.34 408.93 1173.98 410.13C1174.64 411.31 1174.97 412.65 1174.97 414.15ZM1172.15 413.58C1172.15 412.54 1171.92 411.65 1171.46 410.91C1171 410.15 1170.37 409.58 1169.57 409.2C1168.79 408.8 1167.92 408.6 1166.96 408.6C1165.58 408.6 1164.4 409.04 1163.42 409.92C1162.46 410.8 1161.91 412.02 1161.77 413.58H1172.15Z" fill="#617ABE"/>
|
|
||||||
<path d="M1181.3 400.8V423H1178.57V400.8H1181.3Z" fill="#617ABE"/>
|
|
||||||
<path d="M1187.37 403.89C1186.85 403.89 1186.41 403.71 1186.05 403.35C1185.69 402.99 1185.51 402.55 1185.51 402.03C1185.51 401.51 1185.69 401.07 1186.05 400.71C1186.41 400.35 1186.85 400.17 1187.37 400.17C1187.87 400.17 1188.29 400.35 1188.63 400.71C1188.99 401.07 1189.17 401.51 1189.17 402.03C1189.17 402.55 1188.99 402.99 1188.63 403.35C1188.29 403.71 1187.87 403.89 1187.37 403.89ZM1188.69 406.56V423H1185.96V406.56H1188.69Z" fill="#617ABE"/>
|
|
||||||
<path d="M1199.46 420.48L1204.56 406.56H1207.47L1201.02 423H1197.84L1191.39 406.56H1194.33L1199.46 420.48Z" fill="#617ABE"/>
|
|
||||||
<path d="M1225.16 414.15C1225.16 414.67 1225.13 415.22 1225.07 415.8H1211.93C1212.03 417.42 1212.58 418.69 1213.58 419.61C1214.6 420.51 1215.83 420.96 1217.27 420.96C1218.45 420.96 1219.43 420.69 1220.21 420.15C1221.01 419.59 1221.57 418.85 1221.89 417.93H1224.83C1224.39 419.51 1223.51 420.8 1222.19 421.8C1220.87 422.78 1219.23 423.27 1217.27 423.27C1215.71 423.27 1214.31 422.92 1213.07 422.22C1211.85 421.52 1210.89 420.53 1210.19 419.25C1209.49 417.95 1209.14 416.45 1209.14 414.75C1209.14 413.05 1209.48 411.56 1210.16 410.28C1210.84 409 1211.79 408.02 1213.01 407.34C1214.25 406.64 1215.67 406.29 1217.27 406.29C1218.83 406.29 1220.21 406.63 1221.41 407.31C1222.61 407.99 1223.53 408.93 1224.17 410.13C1224.83 411.31 1225.16 412.65 1225.16 414.15ZM1222.34 413.58C1222.34 412.54 1222.11 411.65 1221.65 410.91C1221.19 410.15 1220.56 409.58 1219.76 409.2C1218.98 408.8 1218.11 408.6 1217.15 408.6C1215.77 408.6 1214.59 409.04 1213.61 409.92C1212.65 410.8 1212.1 412.02 1211.96 413.58H1222.34Z" fill="#617ABE"/>
|
|
||||||
<path d="M1231.49 409.23C1231.97 408.29 1232.65 407.56 1233.53 407.04C1234.43 406.52 1235.52 406.26 1236.8 406.26V409.08H1236.08C1233.02 409.08 1231.49 410.74 1231.49 414.06V423H1228.76V406.56H1231.49V409.23Z" fill="#617ABE"/>
|
|
||||||
<path d="M1254.11 406.56L1244.21 430.74H1241.39L1244.63 422.82L1238 406.56H1241.03L1246.19 419.88L1251.29 406.56H1254.11Z" fill="#617ABE"/>
|
|
||||||
<path d="M992.426 453.81V463.5C992.426 464.3 992.596 464.87 992.936 465.21C993.276 465.53 993.866 465.69 994.706 465.69H996.716V468H994.256C992.736 468 991.596 467.65 990.836 466.95C990.076 466.25 989.696 465.1 989.696 463.5V453.81H987.566V451.56H989.696V447.42H992.426V451.56H996.716V453.81H992.426Z" fill="#617ABE"/>
|
|
||||||
<path d="M1007.19 468.27C1005.65 468.27 1004.25 467.92 1002.99 467.22C1001.75 466.52 1000.77 465.53 1000.05 464.25C999.354 462.95 999.004 461.45 999.004 459.75C999.004 458.07 999.364 456.59 1000.08 455.31C1000.82 454.01 1001.82 453.02 1003.08 452.34C1004.34 451.64 1005.75 451.29 1007.31 451.29C1008.87 451.29 1010.28 451.64 1011.54 452.34C1012.8 453.02 1013.79 454 1014.51 455.28C1015.25 456.56 1015.62 458.05 1015.62 459.75C1015.62 461.45 1015.24 462.95 1014.48 464.25C1013.74 465.53 1012.73 466.52 1011.45 467.22C1010.17 467.92 1008.75 468.27 1007.19 468.27ZM1007.19 465.87C1008.17 465.87 1009.09 465.64 1009.95 465.18C1010.81 464.72 1011.5 464.03 1012.02 463.11C1012.56 462.19 1012.83 461.07 1012.83 459.75C1012.83 458.43 1012.57 457.31 1012.05 456.39C1011.53 455.47 1010.85 454.79 1010.01 454.35C1009.17 453.89 1008.26 453.66 1007.28 453.66C1006.28 453.66 1005.36 453.89 1004.52 454.35C1003.7 454.79 1003.04 455.47 1002.54 456.39C1002.04 457.31 1001.79 458.43 1001.79 459.75C1001.79 461.09 1002.03 462.22 1002.51 463.14C1003.01 464.06 1003.67 464.75 1004.49 465.21C1005.31 465.65 1006.21 465.87 1007.19 465.87Z" fill="#617ABE"/>
|
|
||||||
<path d="M1039.57 463.35H1030.45L1028.77 468H1025.89L1033.45 447.21H1036.6L1044.13 468H1041.25L1039.57 463.35ZM1038.79 461.13L1035.01 450.57L1031.23 461.13H1038.79Z" fill="#617ABE"/>
|
|
||||||
<path d="M1050.16 454.23C1050.64 453.29 1051.32 452.56 1052.2 452.04C1053.1 451.52 1054.19 451.26 1055.47 451.26V454.08H1054.75C1051.69 454.08 1050.16 455.74 1050.16 459.06V468H1047.43V451.56H1050.16V454.23Z" fill="#617ABE"/>
|
|
||||||
<path d="M1080.52 451.56L1075.39 468H1072.57L1068.61 454.95L1064.65 468H1061.83L1056.67 451.56H1059.46L1063.24 465.36L1067.32 451.56H1070.11L1074.1 465.39L1077.82 451.56H1080.52Z" fill="#617ABE"/>
|
|
||||||
<path d="M1098.23 459.15C1098.23 459.67 1098.2 460.22 1098.14 460.8H1085C1085.1 462.42 1085.65 463.69 1086.65 464.61C1087.67 465.51 1088.9 465.96 1090.34 465.96C1091.52 465.96 1092.5 465.69 1093.28 465.15C1094.08 464.59 1094.64 463.85 1094.96 462.93H1097.9C1097.46 464.51 1096.58 465.8 1095.26 466.8C1093.94 467.78 1092.3 468.27 1090.34 468.27C1088.78 468.27 1087.38 467.92 1086.14 467.22C1084.92 466.52 1083.96 465.53 1083.26 464.25C1082.56 462.95 1082.21 461.45 1082.21 459.75C1082.21 458.05 1082.55 456.56 1083.23 455.28C1083.91 454 1084.86 453.02 1086.08 452.34C1087.32 451.64 1088.74 451.29 1090.34 451.29C1091.9 451.29 1093.28 451.63 1094.48 452.31C1095.68 452.99 1096.6 453.93 1097.24 455.13C1097.9 456.31 1098.23 457.65 1098.23 459.15ZM1095.41 458.58C1095.41 457.54 1095.18 456.65 1094.72 455.91C1094.26 455.15 1093.63 454.58 1092.83 454.2C1092.05 453.8 1091.18 453.6 1090.22 453.6C1088.84 453.6 1087.66 454.04 1086.68 454.92C1085.72 455.8 1085.17 457.02 1085.03 458.58H1095.41Z" fill="#617ABE"/>
|
|
||||||
<path d="M1100.81 459.72C1100.81 458.04 1101.15 456.57 1101.83 455.31C1102.51 454.03 1103.44 453.04 1104.62 452.34C1105.82 451.64 1107.15 451.29 1108.61 451.29C1110.05 451.29 1111.3 451.6 1112.36 452.22C1113.42 452.84 1114.21 453.62 1114.73 454.56V451.56H1117.49V468H1114.73V464.94C1114.19 465.9 1113.38 466.7 1112.3 467.34C1111.24 467.96 1110 468.27 1108.58 468.27C1107.12 468.27 1105.8 467.91 1104.62 467.19C1103.44 466.47 1102.51 465.46 1101.83 464.16C1101.15 462.86 1100.81 461.38 1100.81 459.72ZM1114.73 459.75C1114.73 458.51 1114.48 457.43 1113.98 456.51C1113.48 455.59 1112.8 454.89 1111.94 454.41C1111.1 453.91 1110.17 453.66 1109.15 453.66C1108.13 453.66 1107.2 453.9 1106.36 454.38C1105.52 454.86 1104.85 455.56 1104.35 456.48C1103.85 457.4 1103.6 458.48 1103.6 459.72C1103.6 460.98 1103.85 462.08 1104.35 463.02C1104.85 463.94 1105.52 464.65 1106.36 465.15C1107.2 465.63 1108.13 465.87 1109.15 465.87C1110.17 465.87 1111.1 465.63 1111.94 465.15C1112.8 464.65 1113.48 463.94 1113.98 463.02C1114.48 462.08 1114.73 460.99 1114.73 459.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M1128.22 465.48L1133.32 451.56H1136.23L1129.78 468H1126.6L1120.15 451.56H1123.09L1128.22 465.48Z" fill="#617ABE"/>
|
|
||||||
<path d="M1153.92 459.15C1153.92 459.67 1153.89 460.22 1153.83 460.8H1140.69C1140.79 462.42 1141.34 463.69 1142.34 464.61C1143.36 465.51 1144.59 465.96 1146.03 465.96C1147.21 465.96 1148.19 465.69 1148.97 465.15C1149.77 464.59 1150.33 463.85 1150.65 462.93H1153.59C1153.15 464.51 1152.27 465.8 1150.95 466.8C1149.63 467.78 1147.99 468.27 1146.03 468.27C1144.47 468.27 1143.07 467.92 1141.83 467.22C1140.61 466.52 1139.65 465.53 1138.95 464.25C1138.25 462.95 1137.9 461.45 1137.9 459.75C1137.9 458.05 1138.24 456.56 1138.92 455.28C1139.6 454 1140.55 453.02 1141.77 452.34C1143.01 451.64 1144.43 451.29 1146.03 451.29C1147.59 451.29 1148.97 451.63 1150.17 452.31C1151.37 452.99 1152.29 453.93 1152.93 455.13C1153.59 456.31 1153.92 457.65 1153.92 459.15ZM1151.1 458.58C1151.1 457.54 1150.87 456.65 1150.41 455.91C1149.95 455.15 1149.32 454.58 1148.52 454.2C1147.74 453.8 1146.87 453.6 1145.91 453.6C1144.53 453.6 1143.35 454.04 1142.37 454.92C1141.41 455.8 1140.86 457.02 1140.72 458.58H1151.1Z" fill="#617ABE"/>
|
|
||||||
<path d="M1017.45 566.159C1019.24 566.541 1020.67 567.435 1021.76 568.843C1022.85 570.222 1023.39 571.806 1023.39 573.595C1023.39 576.177 1022.48 578.23 1020.66 579.755C1018.87 581.251 1016.36 581.999 1013.14 581.999H998.748V551.111H1012.65C1015.79 551.111 1018.24 551.83 1020 553.267C1021.79 554.705 1022.68 556.655 1022.68 559.119C1022.68 560.938 1022.2 562.449 1021.23 563.651C1020.29 564.854 1019.03 565.69 1017.45 566.159ZM1006.27 563.607H1011.2C1012.43 563.607 1013.37 563.343 1014.02 562.815C1014.69 562.258 1015.03 561.451 1015.03 560.395C1015.03 559.339 1014.69 558.533 1014.02 557.975C1013.37 557.418 1012.43 557.139 1011.2 557.139H1006.27V563.607ZM1011.82 575.927C1013.08 575.927 1014.05 575.649 1014.72 575.091C1015.42 574.505 1015.78 573.669 1015.78 572.583C1015.78 571.498 1015.41 570.647 1014.68 570.031C1013.97 569.415 1012.99 569.107 1011.73 569.107H1006.27V575.927H1011.82Z" fill="#233562"/>
|
|
||||||
<path d="M1052 557.447V581.999H1044.47V578.655C1043.71 579.741 1042.67 580.621 1041.35 581.295C1040.06 581.941 1038.62 582.263 1037.04 582.263C1035.16 582.263 1033.5 581.853 1032.06 581.031C1030.63 580.181 1029.51 578.963 1028.72 577.379C1027.93 575.795 1027.53 573.933 1027.53 571.791V557.447H1035.01V570.779C1035.01 572.422 1035.44 573.698 1036.29 574.607C1037.14 575.517 1038.28 575.971 1039.72 575.971C1041.19 575.971 1042.35 575.517 1043.2 574.607C1044.05 573.698 1044.47 572.422 1044.47 570.779V557.447H1052Z" fill="#233562"/>
|
|
||||||
<path d="M1072.36 557.183C1075.24 557.183 1077.52 558.122 1079.22 559.999C1080.96 561.847 1081.82 564.399 1081.82 567.655V581.999H1074.34V568.667C1074.34 567.025 1073.92 565.749 1073.06 564.839C1072.21 563.93 1071.07 563.475 1069.63 563.475C1068.2 563.475 1067.05 563.93 1066.2 564.839C1065.35 565.749 1064.92 567.025 1064.92 568.667V581.999H1057.4V557.447H1064.92V560.703C1065.69 559.618 1066.71 558.767 1068 558.151C1069.3 557.506 1070.75 557.183 1072.36 557.183Z" fill="#233562"/>
|
|
||||||
<path d="M1085.55 569.679C1085.55 567.157 1086.02 564.942 1086.96 563.035C1087.93 561.129 1089.23 559.662 1090.88 558.635C1092.52 557.609 1094.35 557.095 1096.38 557.095C1097.99 557.095 1099.46 557.433 1100.78 558.107C1102.13 558.782 1103.18 559.691 1103.94 560.835V549.439H1111.47V581.999H1103.94V578.479C1103.24 579.653 1102.23 580.591 1100.91 581.295C1099.62 581.999 1098.11 582.351 1096.38 582.351C1094.35 582.351 1092.52 581.838 1090.88 580.811C1089.23 579.755 1087.93 578.274 1086.96 576.367C1086.02 574.431 1085.55 572.202 1085.55 569.679ZM1103.94 569.723C1103.94 567.846 1103.42 566.365 1102.36 565.279C1101.33 564.194 1100.07 563.651 1098.58 563.651C1097.08 563.651 1095.8 564.194 1094.75 565.279C1093.72 566.335 1093.21 567.802 1093.21 569.679C1093.21 571.557 1093.72 573.053 1094.75 574.167C1095.8 575.253 1097.08 575.795 1098.58 575.795C1100.07 575.795 1101.33 575.253 1102.36 574.167C1103.42 573.082 1103.94 571.601 1103.94 569.723Z" fill="#233562"/>
|
|
||||||
<path d="M1124.44 549.439V581.999H1116.91V549.439H1124.44Z" fill="#233562"/>
|
|
||||||
<path d="M1137.41 561.539C1138.29 560.19 1139.39 559.134 1140.71 558.371C1142.03 557.579 1143.5 557.183 1145.11 557.183V565.147H1143.04C1141.17 565.147 1139.76 565.558 1138.82 566.379C1137.88 567.171 1137.41 568.579 1137.41 570.603V581.999H1129.89V557.447H1137.41V561.539Z" fill="#233562"/>
|
|
||||||
<path d="M1071 628.5V699" stroke="#CDDAFF" stroke-width="4" stroke-linecap="square"/>
|
|
||||||
<path d="M1991.08 369.151C1991.08 369.671 1991.05 370.221 1990.99 370.801H1977.85C1977.95 372.421 1978.5 373.691 1979.5 374.611C1980.52 375.511 1981.75 375.961 1983.19 375.961C1984.37 375.961 1985.35 375.691 1986.13 375.151C1986.93 374.591 1987.49 373.851 1987.81 372.931H1990.75C1990.31 374.511 1989.43 375.801 1988.11 376.801C1986.79 377.781 1985.15 378.271 1983.19 378.271C1981.63 378.271 1980.23 377.921 1978.99 377.221C1977.77 376.521 1976.81 375.531 1976.11 374.251C1975.41 372.951 1975.06 371.451 1975.06 369.751C1975.06 368.051 1975.4 366.561 1976.08 365.281C1976.76 364.001 1977.71 363.021 1978.93 362.341C1980.17 361.641 1981.59 361.291 1983.19 361.291C1984.75 361.291 1986.13 361.631 1987.33 362.311C1988.53 362.991 1989.45 363.931 1990.09 365.131C1990.75 366.311 1991.08 367.651 1991.08 369.151ZM1988.26 368.581C1988.26 367.541 1988.03 366.651 1987.57 365.911C1987.11 365.151 1986.48 364.581 1985.68 364.201C1984.9 363.801 1984.03 363.601 1983.07 363.601C1981.69 363.601 1980.51 364.041 1979.53 364.921C1978.57 365.801 1978.02 367.021 1977.88 368.581H1988.26Z" fill="#617ABE"/>
|
|
||||||
<path d="M2000.8 375.481L2005.9 361.561H2008.81L2002.36 378.001H1999.18L1992.73 361.561H1995.67L2000.8 375.481Z" fill="#617ABE"/>
|
|
||||||
<path d="M2010.48 369.721C2010.48 368.041 2010.82 366.571 2011.5 365.311C2012.18 364.031 2013.11 363.041 2014.29 362.341C2015.49 361.641 2016.82 361.291 2018.28 361.291C2019.72 361.291 2020.97 361.601 2022.03 362.221C2023.09 362.841 2023.88 363.621 2024.4 364.561V361.561H2027.16V378.001H2024.4V374.941C2023.86 375.901 2023.05 376.701 2021.97 377.341C2020.91 377.961 2019.67 378.271 2018.25 378.271C2016.79 378.271 2015.47 377.911 2014.29 377.191C2013.11 376.471 2012.18 375.461 2011.5 374.161C2010.82 372.861 2010.48 371.381 2010.48 369.721ZM2024.4 369.751C2024.4 368.511 2024.15 367.431 2023.65 366.511C2023.15 365.591 2022.47 364.891 2021.61 364.411C2020.77 363.911 2019.84 363.661 2018.82 363.661C2017.8 363.661 2016.87 363.901 2016.03 364.381C2015.19 364.861 2014.52 365.561 2014.02 366.481C2013.52 367.401 2013.27 368.481 2013.27 369.721C2013.27 370.981 2013.52 372.081 2014.02 373.021C2014.52 373.941 2015.19 374.651 2016.03 375.151C2016.87 375.631 2017.8 375.871 2018.82 375.871C2019.84 375.871 2020.77 375.631 2021.61 375.151C2022.47 374.651 2023.15 373.941 2023.65 373.021C2024.15 372.081 2024.4 370.991 2024.4 369.751Z" fill="#617ABE"/>
|
|
||||||
<path d="M2034.5 355.801V378.001H2031.77V355.801H2034.5Z" fill="#617ABE"/>
|
|
||||||
<path d="M2053.73 361.561V378.001H2051V375.571C2050.48 376.411 2049.75 377.071 2048.81 377.551C2047.89 378.011 2046.87 378.241 2045.75 378.241C2044.47 378.241 2043.32 377.981 2042.3 377.461C2041.28 376.921 2040.47 376.121 2039.87 375.061C2039.29 374.001 2039 372.711 2039 371.191V361.561H2041.7V370.831C2041.7 372.451 2042.11 373.701 2042.93 374.581C2043.75 375.441 2044.87 375.871 2046.29 375.871C2047.75 375.871 2048.9 375.421 2049.74 374.521C2050.58 373.621 2051 372.311 2051 370.591V361.561H2053.73Z" fill="#617ABE"/>
|
|
||||||
<path d="M2057.32 369.721C2057.32 368.041 2057.66 366.571 2058.34 365.311C2059.02 364.031 2059.95 363.041 2061.13 362.341C2062.33 361.641 2063.66 361.291 2065.12 361.291C2066.56 361.291 2067.81 361.601 2068.87 362.221C2069.93 362.841 2070.72 363.621 2071.24 364.561V361.561H2074V378.001H2071.24V374.941C2070.7 375.901 2069.89 376.701 2068.81 377.341C2067.75 377.961 2066.51 378.271 2065.09 378.271C2063.63 378.271 2062.31 377.911 2061.13 377.191C2059.95 376.471 2059.02 375.461 2058.34 374.161C2057.66 372.861 2057.32 371.381 2057.32 369.721ZM2071.24 369.751C2071.24 368.511 2070.99 367.431 2070.49 366.511C2069.99 365.591 2069.31 364.891 2068.45 364.411C2067.61 363.911 2066.68 363.661 2065.66 363.661C2064.64 363.661 2063.71 363.901 2062.87 364.381C2062.03 364.861 2061.36 365.561 2060.86 366.481C2060.36 367.401 2060.11 368.481 2060.11 369.721C2060.11 370.981 2060.36 372.081 2060.86 373.021C2061.36 373.941 2062.03 374.651 2062.87 375.151C2063.71 375.631 2064.64 375.871 2065.66 375.871C2066.68 375.871 2067.61 375.631 2068.45 375.151C2069.31 374.651 2069.99 373.941 2070.49 373.021C2070.99 372.081 2071.24 370.991 2071.24 369.751Z" fill="#617ABE"/>
|
|
||||||
<path d="M2081.95 363.811V373.501C2081.95 374.301 2082.12 374.871 2082.46 375.211C2082.8 375.531 2083.39 375.691 2084.23 375.691H2086.24V378.001H2083.78C2082.26 378.001 2081.12 377.651 2080.36 376.951C2079.6 376.251 2079.22 375.101 2079.22 373.501V363.811H2077.09V361.561H2079.22V357.421H2081.95V361.561H2086.24V363.811H2081.95Z" fill="#617ABE"/>
|
|
||||||
<path d="M2104.55 369.151C2104.55 369.671 2104.52 370.221 2104.46 370.801H2091.32C2091.42 372.421 2091.97 373.691 2092.97 374.611C2093.99 375.511 2095.22 375.961 2096.66 375.961C2097.84 375.961 2098.82 375.691 2099.6 375.151C2100.4 374.591 2100.96 373.851 2101.28 372.931H2104.22C2103.78 374.511 2102.9 375.801 2101.58 376.801C2100.26 377.781 2098.62 378.271 2096.66 378.271C2095.1 378.271 2093.7 377.921 2092.46 377.221C2091.24 376.521 2090.28 375.531 2089.58 374.251C2088.88 372.951 2088.53 371.451 2088.53 369.751C2088.53 368.051 2088.87 366.561 2089.55 365.281C2090.23 364.001 2091.18 363.021 2092.4 362.341C2093.64 361.641 2095.06 361.291 2096.66 361.291C2098.22 361.291 2099.6 361.631 2100.8 362.311C2102 362.991 2102.92 363.931 2103.56 365.131C2104.22 366.311 2104.55 367.651 2104.55 369.151ZM2101.73 368.581C2101.73 367.541 2101.5 366.651 2101.04 365.911C2100.58 365.151 2099.95 364.581 2099.15 364.201C2098.37 363.801 2097.5 363.601 2096.54 363.601C2095.16 363.601 2093.98 364.041 2093 364.921C2092.04 365.801 2091.49 367.021 2091.35 368.581H2101.73Z" fill="#617ABE"/>
|
|
||||||
<path d="M2113.97 378.271C2112.71 378.271 2111.58 378.061 2110.58 377.641C2109.58 377.201 2108.79 376.601 2108.21 375.841C2107.63 375.061 2107.31 374.171 2107.25 373.171H2110.07C2110.15 373.991 2110.53 374.661 2111.21 375.181C2111.91 375.701 2112.82 375.961 2113.94 375.961C2114.98 375.961 2115.8 375.731 2116.4 375.271C2117 374.811 2117.3 374.231 2117.3 373.531C2117.3 372.811 2116.98 372.281 2116.34 371.941C2115.7 371.581 2114.71 371.231 2113.37 370.891C2112.15 370.571 2111.15 370.251 2110.37 369.931C2109.61 369.591 2108.95 369.101 2108.39 368.461C2107.85 367.801 2107.58 366.941 2107.58 365.881C2107.58 365.041 2107.83 364.271 2108.33 363.571C2108.83 362.871 2109.54 362.321 2110.46 361.921C2111.38 361.501 2112.43 361.291 2113.61 361.291C2115.43 361.291 2116.9 361.751 2118.02 362.671C2119.14 363.591 2119.74 364.851 2119.82 366.451H2117.09C2117.03 365.591 2116.68 364.901 2116.04 364.381C2115.42 363.861 2114.58 363.601 2113.52 363.601C2112.54 363.601 2111.76 363.811 2111.18 364.231C2110.6 364.651 2110.31 365.201 2110.31 365.881C2110.31 366.421 2110.48 366.871 2110.82 367.231C2111.18 367.571 2111.62 367.851 2112.14 368.071C2112.68 368.271 2113.42 368.501 2114.36 368.761C2115.54 369.081 2116.5 369.401 2117.24 369.721C2117.98 370.021 2118.61 370.481 2119.13 371.101C2119.67 371.721 2119.95 372.531 2119.97 373.531C2119.97 374.431 2119.72 375.241 2119.22 375.961C2118.72 376.681 2118.01 377.251 2117.09 377.671C2116.19 378.071 2115.15 378.271 2113.97 378.271Z" fill="#617ABE"/>
|
|
||||||
<path d="M2135.15 363.811V373.501C2135.15 374.301 2135.32 374.871 2135.66 375.211C2136 375.531 2136.59 375.691 2137.43 375.691H2139.44V378.001H2136.98C2135.46 378.001 2134.32 377.651 2133.56 376.951C2132.8 376.251 2132.42 375.101 2132.42 373.501V363.811H2130.29V361.561H2132.42V357.421H2135.15V361.561H2139.44V363.811H2135.15Z" fill="#617ABE"/>
|
|
||||||
<path d="M2150.91 361.261C2152.15 361.261 2153.27 361.531 2154.27 362.071C2155.27 362.591 2156.05 363.381 2156.61 364.441C2157.19 365.501 2157.48 366.791 2157.48 368.311V378.001H2154.78V368.701C2154.78 367.061 2154.37 365.811 2153.55 364.951C2152.73 364.071 2151.61 363.631 2150.19 363.631C2148.75 363.631 2147.6 364.081 2146.74 364.981C2145.9 365.881 2145.48 367.191 2145.48 368.911V378.001H2142.75V355.801H2145.48V363.901C2146.02 363.061 2146.76 362.411 2147.7 361.951C2148.66 361.491 2149.73 361.261 2150.91 361.261Z" fill="#617ABE"/>
|
|
||||||
<path d="M2176.94 369.151C2176.94 369.671 2176.91 370.221 2176.85 370.801H2163.71C2163.81 372.421 2164.36 373.691 2165.36 374.611C2166.38 375.511 2167.61 375.961 2169.05 375.961C2170.23 375.961 2171.21 375.691 2171.99 375.151C2172.79 374.591 2173.35 373.851 2173.67 372.931H2176.61C2176.17 374.511 2175.29 375.801 2173.97 376.801C2172.65 377.781 2171.01 378.271 2169.05 378.271C2167.49 378.271 2166.09 377.921 2164.85 377.221C2163.63 376.521 2162.67 375.531 2161.97 374.251C2161.27 372.951 2160.92 371.451 2160.92 369.751C2160.92 368.051 2161.26 366.561 2161.94 365.281C2162.62 364.001 2163.57 363.021 2164.79 362.341C2166.03 361.641 2167.45 361.291 2169.05 361.291C2170.61 361.291 2171.99 361.631 2173.19 362.311C2174.39 362.991 2175.31 363.931 2175.95 365.131C2176.61 366.311 2176.94 367.651 2176.94 369.151ZM2174.12 368.581C2174.12 367.541 2173.89 366.651 2173.43 365.911C2172.97 365.151 2172.34 364.581 2171.54 364.201C2170.76 363.801 2169.89 363.601 2168.93 363.601C2167.55 363.601 2166.37 364.041 2165.39 364.921C2164.43 365.801 2163.88 367.021 2163.74 368.581H2174.12Z" fill="#617ABE"/>
|
|
||||||
<path d="M1926.59 408.811V418.501C1926.59 419.301 1926.76 419.871 1927.1 420.211C1927.44 420.531 1928.03 420.691 1928.87 420.691H1930.88V423.001H1928.42C1926.9 423.001 1925.76 422.651 1925 421.951C1924.24 421.251 1923.86 420.101 1923.86 418.501V408.811H1921.73V406.561H1923.86V402.421H1926.59V406.561H1930.88V408.811H1926.59Z" fill="#617ABE"/>
|
|
||||||
<path d="M1936.91 409.231C1937.39 408.291 1938.07 407.561 1938.95 407.041C1939.85 406.521 1940.94 406.261 1942.22 406.261V409.081H1941.5C1938.44 409.081 1936.91 410.741 1936.91 414.061V423.001H1934.18V406.561H1936.91V409.231Z" fill="#617ABE"/>
|
|
||||||
<path d="M1944.36 414.721C1944.36 413.041 1944.7 411.571 1945.38 410.311C1946.06 409.031 1946.99 408.041 1948.17 407.341C1949.37 406.641 1950.7 406.291 1952.16 406.291C1953.6 406.291 1954.85 406.601 1955.91 407.221C1956.97 407.841 1957.76 408.621 1958.28 409.561V406.561H1961.04V423.001H1958.28V419.941C1957.74 420.901 1956.93 421.701 1955.85 422.341C1954.79 422.961 1953.55 423.271 1952.13 423.271C1950.67 423.271 1949.35 422.911 1948.17 422.191C1946.99 421.471 1946.06 420.461 1945.38 419.161C1944.7 417.861 1944.36 416.381 1944.36 414.721ZM1958.28 414.751C1958.28 413.511 1958.03 412.431 1957.53 411.511C1957.03 410.591 1956.35 409.891 1955.49 409.411C1954.65 408.911 1953.72 408.661 1952.7 408.661C1951.68 408.661 1950.75 408.901 1949.91 409.381C1949.07 409.861 1948.4 410.561 1947.9 411.481C1947.4 412.401 1947.15 413.481 1947.15 414.721C1947.15 415.981 1947.4 417.081 1947.9 418.021C1948.4 418.941 1949.07 419.651 1949.91 420.151C1950.75 420.631 1951.68 420.871 1952.7 420.871C1953.72 420.871 1954.65 420.631 1955.49 420.151C1956.35 419.651 1957.03 418.941 1957.53 418.021C1958.03 417.081 1958.28 415.991 1958.28 414.751Z" fill="#617ABE"/>
|
|
||||||
<path d="M1973.66 406.261C1975.66 406.261 1977.28 406.871 1978.52 408.091C1979.76 409.291 1980.38 411.031 1980.38 413.311V423.001H1977.68V413.701C1977.68 412.061 1977.27 410.811 1976.45 409.951C1975.63 409.071 1974.51 408.631 1973.09 408.631C1971.65 408.631 1970.5 409.081 1969.64 409.981C1968.8 410.881 1968.38 412.191 1968.38 413.911V423.001H1965.65V406.561H1968.38V408.901C1968.92 408.061 1969.65 407.411 1970.57 406.951C1971.51 406.491 1972.54 406.261 1973.66 406.261Z" fill="#617ABE"/>
|
|
||||||
<path d="M1990.66 423.271C1989.4 423.271 1988.27 423.061 1987.27 422.641C1986.27 422.201 1985.48 421.601 1984.9 420.841C1984.32 420.061 1984 419.171 1983.94 418.171H1986.76C1986.84 418.991 1987.22 419.661 1987.9 420.181C1988.6 420.701 1989.51 420.961 1990.63 420.961C1991.67 420.961 1992.49 420.731 1993.09 420.271C1993.69 419.811 1993.99 419.231 1993.99 418.531C1993.99 417.811 1993.67 417.281 1993.03 416.941C1992.39 416.581 1991.4 416.231 1990.06 415.891C1988.84 415.571 1987.84 415.251 1987.06 414.931C1986.3 414.591 1985.64 414.101 1985.08 413.461C1984.54 412.801 1984.27 411.941 1984.27 410.881C1984.27 410.041 1984.52 409.271 1985.02 408.571C1985.52 407.871 1986.23 407.321 1987.15 406.921C1988.07 406.501 1989.12 406.291 1990.3 406.291C1992.12 406.291 1993.59 406.751 1994.71 407.671C1995.83 408.591 1996.43 409.851 1996.51 411.451H1993.78C1993.72 410.591 1993.37 409.901 1992.73 409.381C1992.11 408.861 1991.27 408.601 1990.21 408.601C1989.23 408.601 1988.45 408.811 1987.87 409.231C1987.29 409.651 1987 410.201 1987 410.881C1987 411.421 1987.17 411.871 1987.51 412.231C1987.87 412.571 1988.31 412.851 1988.83 413.071C1989.37 413.271 1990.11 413.501 1991.05 413.761C1992.23 414.081 1993.19 414.401 1993.93 414.721C1994.67 415.021 1995.3 415.481 1995.82 416.101C1996.36 416.721 1996.64 417.531 1996.66 418.531C1996.66 419.431 1996.41 420.241 1995.91 420.961C1995.41 421.681 1994.7 422.251 1993.78 422.671C1992.88 423.071 1991.84 423.271 1990.66 423.271Z" fill="#617ABE"/>
|
|
||||||
<path d="M1999.49 414.721C1999.49 413.041 1999.83 411.571 2000.51 410.311C2001.19 409.031 2002.12 408.041 2003.3 407.341C2004.5 406.641 2005.83 406.291 2007.29 406.291C2008.73 406.291 2009.98 406.601 2011.04 407.221C2012.1 407.841 2012.89 408.621 2013.41 409.561V406.561H2016.17V423.001H2013.41V419.941C2012.87 420.901 2012.06 421.701 2010.98 422.341C2009.92 422.961 2008.68 423.271 2007.26 423.271C2005.8 423.271 2004.48 422.911 2003.3 422.191C2002.12 421.471 2001.19 420.461 2000.51 419.161C1999.83 417.861 1999.49 416.381 1999.49 414.721ZM2013.41 414.751C2013.41 413.511 2013.16 412.431 2012.66 411.511C2012.16 410.591 2011.48 409.891 2010.62 409.411C2009.78 408.911 2008.85 408.661 2007.83 408.661C2006.81 408.661 2005.88 408.901 2005.04 409.381C2004.2 409.861 2003.53 410.561 2003.03 411.481C2002.53 412.401 2002.28 413.481 2002.28 414.721C2002.28 415.981 2002.53 417.081 2003.03 418.021C2003.53 418.941 2004.2 419.651 2005.04 420.151C2005.88 420.631 2006.81 420.871 2007.83 420.871C2008.85 420.871 2009.78 420.631 2010.62 420.151C2011.48 419.651 2012.16 418.941 2012.66 418.021C2013.16 417.081 2013.41 415.991 2013.41 414.751Z" fill="#617ABE"/>
|
|
||||||
<path d="M2019.77 414.751C2019.77 413.051 2020.11 411.571 2020.79 410.311C2021.47 409.031 2022.41 408.041 2023.61 407.341C2024.83 406.641 2026.22 406.291 2027.78 406.291C2029.8 406.291 2031.46 406.781 2032.76 407.761C2034.08 408.741 2034.95 410.101 2035.37 411.841H2032.43C2032.15 410.841 2031.6 410.051 2030.78 409.471C2029.98 408.891 2028.98 408.601 2027.78 408.601C2026.22 408.601 2024.96 409.141 2024 410.221C2023.04 411.281 2022.56 412.791 2022.56 414.751C2022.56 416.731 2023.04 418.261 2024 419.341C2024.96 420.421 2026.22 420.961 2027.78 420.961C2028.98 420.961 2029.98 420.681 2030.78 420.121C2031.58 419.561 2032.13 418.761 2032.43 417.721H2035.37C2034.93 419.401 2034.05 420.751 2032.73 421.771C2031.41 422.771 2029.76 423.271 2027.78 423.271C2026.22 423.271 2024.83 422.921 2023.61 422.221C2022.41 421.521 2021.47 420.531 2020.79 419.251C2020.11 417.971 2019.77 416.471 2019.77 414.751Z" fill="#617ABE"/>
|
|
||||||
<path d="M2042.34 408.811V418.501C2042.34 419.301 2042.51 419.871 2042.85 420.211C2043.19 420.531 2043.78 420.691 2044.62 420.691H2046.63V423.001H2044.17C2042.65 423.001 2041.51 422.651 2040.75 421.951C2039.99 421.251 2039.61 420.101 2039.61 418.501V408.811H2037.48V406.561H2039.61V402.421H2042.34V406.561H2046.63V408.811H2042.34Z" fill="#617ABE"/>
|
|
||||||
<path d="M2051.35 403.891C2050.83 403.891 2050.39 403.711 2050.03 403.351C2049.67 402.991 2049.49 402.551 2049.49 402.031C2049.49 401.511 2049.67 401.071 2050.03 400.711C2050.39 400.351 2050.83 400.171 2051.35 400.171C2051.85 400.171 2052.27 400.351 2052.61 400.711C2052.97 401.071 2053.15 401.511 2053.15 402.031C2053.15 402.551 2052.97 402.991 2052.61 403.351C2052.27 403.711 2051.85 403.891 2051.35 403.891ZM2052.67 406.561V423.001H2049.94V406.561H2052.67Z" fill="#617ABE"/>
|
|
||||||
<path d="M2064.49 423.271C2062.95 423.271 2061.55 422.921 2060.29 422.221C2059.05 421.521 2058.07 420.531 2057.35 419.251C2056.65 417.951 2056.3 416.451 2056.3 414.751C2056.3 413.071 2056.66 411.591 2057.38 410.311C2058.12 409.011 2059.12 408.021 2060.38 407.341C2061.64 406.641 2063.05 406.291 2064.61 406.291C2066.17 406.291 2067.58 406.641 2068.84 407.341C2070.1 408.021 2071.09 409.001 2071.81 410.281C2072.55 411.561 2072.92 413.051 2072.92 414.751C2072.92 416.451 2072.54 417.951 2071.78 419.251C2071.04 420.531 2070.03 421.521 2068.75 422.221C2067.47 422.921 2066.05 423.271 2064.49 423.271ZM2064.49 420.871C2065.47 420.871 2066.39 420.641 2067.25 420.181C2068.11 419.721 2068.8 419.031 2069.32 418.111C2069.86 417.191 2070.13 416.071 2070.13 414.751C2070.13 413.431 2069.87 412.311 2069.35 411.391C2068.83 410.471 2068.15 409.791 2067.31 409.351C2066.47 408.891 2065.56 408.661 2064.58 408.661C2063.58 408.661 2062.66 408.891 2061.82 409.351C2061 409.791 2060.34 410.471 2059.84 411.391C2059.34 412.311 2059.09 413.431 2059.09 414.751C2059.09 416.091 2059.33 417.221 2059.81 418.141C2060.31 419.061 2060.97 419.751 2061.79 420.211C2062.61 420.651 2063.51 420.871 2064.49 420.871Z" fill="#617ABE"/>
|
|
||||||
<path d="M2084.52 406.261C2086.52 406.261 2088.14 406.871 2089.38 408.091C2090.62 409.291 2091.24 411.031 2091.24 413.311V423.001H2088.54V413.701C2088.54 412.061 2088.13 410.811 2087.31 409.951C2086.49 409.071 2085.37 408.631 2083.95 408.631C2082.51 408.631 2081.36 409.081 2080.5 409.981C2079.66 410.881 2079.24 412.191 2079.24 413.911V423.001H2076.51V406.561H2079.24V408.901C2079.78 408.061 2080.51 407.411 2081.43 406.951C2082.37 406.491 2083.4 406.261 2084.52 406.261Z" fill="#617ABE"/>
|
|
||||||
<path d="M2101.52 423.271C2100.26 423.271 2099.13 423.061 2098.13 422.641C2097.13 422.201 2096.34 421.601 2095.76 420.841C2095.18 420.061 2094.86 419.171 2094.8 418.171H2097.62C2097.7 418.991 2098.08 419.661 2098.76 420.181C2099.46 420.701 2100.37 420.961 2101.49 420.961C2102.53 420.961 2103.35 420.731 2103.95 420.271C2104.55 419.811 2104.85 419.231 2104.85 418.531C2104.85 417.811 2104.53 417.281 2103.89 416.941C2103.25 416.581 2102.26 416.231 2100.92 415.891C2099.7 415.571 2098.7 415.251 2097.92 414.931C2097.16 414.591 2096.5 414.101 2095.94 413.461C2095.4 412.801 2095.13 411.941 2095.13 410.881C2095.13 410.041 2095.38 409.271 2095.88 408.571C2096.38 407.871 2097.09 407.321 2098.01 406.921C2098.93 406.501 2099.98 406.291 2101.16 406.291C2102.98 406.291 2104.45 406.751 2105.57 407.671C2106.69 408.591 2107.29 409.851 2107.37 411.451H2104.64C2104.58 410.591 2104.23 409.901 2103.59 409.381C2102.97 408.861 2102.13 408.601 2101.07 408.601C2100.09 408.601 2099.31 408.811 2098.73 409.231C2098.15 409.651 2097.86 410.201 2097.86 410.881C2097.86 411.421 2098.03 411.871 2098.37 412.231C2098.73 412.571 2099.17 412.851 2099.69 413.071C2100.23 413.271 2100.97 413.501 2101.91 413.761C2103.09 414.081 2104.05 414.401 2104.79 414.721C2105.53 415.021 2106.16 415.481 2106.68 416.101C2107.22 416.721 2107.5 417.531 2107.52 418.531C2107.52 419.431 2107.27 420.241 2106.77 420.961C2106.27 421.681 2105.56 422.251 2104.64 422.671C2103.74 423.071 2102.7 423.271 2101.52 423.271Z" fill="#617ABE"/>
|
|
||||||
<path d="M2118.35 414.721C2118.35 413.041 2118.69 411.571 2119.37 410.311C2120.05 409.031 2120.98 408.041 2122.16 407.341C2123.36 406.641 2124.69 406.291 2126.15 406.291C2127.59 406.291 2128.84 406.601 2129.9 407.221C2130.96 407.841 2131.75 408.621 2132.27 409.561V406.561H2135.03V423.001H2132.27V419.941C2131.73 420.901 2130.92 421.701 2129.84 422.341C2128.78 422.961 2127.54 423.271 2126.12 423.271C2124.66 423.271 2123.34 422.911 2122.16 422.191C2120.98 421.471 2120.05 420.461 2119.37 419.161C2118.69 417.861 2118.35 416.381 2118.35 414.721ZM2132.27 414.751C2132.27 413.511 2132.02 412.431 2131.52 411.511C2131.02 410.591 2130.34 409.891 2129.48 409.411C2128.64 408.911 2127.71 408.661 2126.69 408.661C2125.67 408.661 2124.74 408.901 2123.9 409.381C2123.06 409.861 2122.39 410.561 2121.89 411.481C2121.39 412.401 2121.14 413.481 2121.14 414.721C2121.14 415.981 2121.39 417.081 2121.89 418.021C2122.39 418.941 2123.06 419.651 2123.9 420.151C2124.74 420.631 2125.67 420.871 2126.69 420.871C2127.71 420.871 2128.64 420.631 2129.48 420.151C2130.34 419.651 2131.02 418.941 2131.52 418.021C2132.02 417.081 2132.27 415.991 2132.27 414.751Z" fill="#617ABE"/>
|
|
||||||
<path d="M2146.42 406.291C2147.84 406.291 2149.08 406.601 2150.14 407.221C2151.22 407.841 2152.02 408.621 2152.54 409.561V406.561H2155.3V423.361C2155.3 424.861 2154.98 426.191 2154.34 427.351C2153.7 428.531 2152.78 429.451 2151.58 430.111C2150.4 430.771 2149.02 431.101 2147.44 431.101C2145.28 431.101 2143.48 430.591 2142.04 429.571C2140.6 428.551 2139.75 427.161 2139.49 425.401H2142.19C2142.49 426.401 2143.11 427.201 2144.05 427.801C2144.99 428.421 2146.12 428.731 2147.44 428.731C2148.94 428.731 2150.16 428.261 2151.1 427.321C2152.06 426.381 2152.54 425.061 2152.54 423.361V419.911C2152 420.871 2151.2 421.671 2150.14 422.311C2149.08 422.951 2147.84 423.271 2146.42 423.271C2144.96 423.271 2143.63 422.911 2142.43 422.191C2141.25 421.471 2140.32 420.461 2139.64 419.161C2138.96 417.861 2138.62 416.381 2138.62 414.721C2138.62 413.041 2138.96 411.571 2139.64 410.311C2140.32 409.031 2141.25 408.041 2142.43 407.341C2143.63 406.641 2144.96 406.291 2146.42 406.291ZM2152.54 414.751C2152.54 413.511 2152.29 412.431 2151.79 411.511C2151.29 410.591 2150.61 409.891 2149.75 409.411C2148.91 408.911 2147.98 408.661 2146.96 408.661C2145.94 408.661 2145.01 408.901 2144.17 409.381C2143.33 409.861 2142.66 410.561 2142.16 411.481C2141.66 412.401 2141.41 413.481 2141.41 414.721C2141.41 415.981 2141.66 417.081 2142.16 418.021C2142.66 418.941 2143.33 419.651 2144.17 420.151C2145.01 420.631 2145.94 420.871 2146.96 420.871C2147.98 420.871 2148.91 420.631 2149.75 420.151C2150.61 419.651 2151.29 418.941 2151.79 418.021C2152.29 417.081 2152.54 415.991 2152.54 414.751Z" fill="#617ABE"/>
|
|
||||||
<path d="M2158.9 414.721C2158.9 413.041 2159.24 411.571 2159.92 410.311C2160.6 409.031 2161.53 408.041 2162.71 407.341C2163.91 406.641 2165.24 406.291 2166.7 406.291C2168.14 406.291 2169.39 406.601 2170.45 407.221C2171.51 407.841 2172.3 408.621 2172.82 409.561V406.561H2175.58V423.001H2172.82V419.941C2172.28 420.901 2171.47 421.701 2170.39 422.341C2169.33 422.961 2168.09 423.271 2166.67 423.271C2165.21 423.271 2163.89 422.911 2162.71 422.191C2161.53 421.471 2160.6 420.461 2159.92 419.161C2159.24 417.861 2158.9 416.381 2158.9 414.721ZM2172.82 414.751C2172.82 413.511 2172.57 412.431 2172.07 411.511C2171.57 410.591 2170.89 409.891 2170.03 409.411C2169.19 408.911 2168.26 408.661 2167.24 408.661C2166.22 408.661 2165.29 408.901 2164.45 409.381C2163.61 409.861 2162.94 410.561 2162.44 411.481C2161.94 412.401 2161.69 413.481 2161.69 414.721C2161.69 415.981 2161.94 417.081 2162.44 418.021C2162.94 418.941 2163.61 419.651 2164.45 420.151C2165.29 420.631 2166.22 420.871 2167.24 420.871C2168.26 420.871 2169.19 420.631 2170.03 420.151C2170.89 419.651 2171.57 418.941 2172.07 418.021C2172.57 417.081 2172.82 415.991 2172.82 414.751Z" fill="#617ABE"/>
|
|
||||||
<path d="M2181.6 403.891C2181.08 403.891 2180.64 403.711 2180.28 403.351C2179.92 402.991 2179.74 402.551 2179.74 402.031C2179.74 401.511 2179.92 401.071 2180.28 400.711C2180.64 400.351 2181.08 400.171 2181.6 400.171C2182.1 400.171 2182.52 400.351 2182.86 400.711C2183.22 401.071 2183.4 401.511 2183.4 402.031C2183.4 402.551 2183.22 402.991 2182.86 403.351C2182.52 403.711 2182.1 403.891 2181.6 403.891ZM2182.92 406.561V423.001H2180.19V406.561H2182.92Z" fill="#617ABE"/>
|
|
||||||
<path d="M2195.58 406.261C2197.58 406.261 2199.2 406.871 2200.44 408.091C2201.68 409.291 2202.3 411.031 2202.3 413.311V423.001H2199.6V413.701C2199.6 412.061 2199.19 410.811 2198.37 409.951C2197.55 409.071 2196.43 408.631 2195.01 408.631C2193.57 408.631 2192.42 409.081 2191.56 409.981C2190.72 410.881 2190.3 412.191 2190.3 413.911V423.001H2187.57V406.561H2190.3V408.901C2190.84 408.061 2191.57 407.411 2192.49 406.951C2193.43 406.491 2194.46 406.261 2195.58 406.261Z" fill="#617ABE"/>
|
|
||||||
<path d="M2212.58 423.271C2211.32 423.271 2210.19 423.061 2209.19 422.641C2208.19 422.201 2207.4 421.601 2206.82 420.841C2206.24 420.061 2205.92 419.171 2205.86 418.171H2208.68C2208.76 418.991 2209.14 419.661 2209.82 420.181C2210.52 420.701 2211.43 420.961 2212.55 420.961C2213.59 420.961 2214.41 420.731 2215.01 420.271C2215.61 419.811 2215.91 419.231 2215.91 418.531C2215.91 417.811 2215.59 417.281 2214.95 416.941C2214.31 416.581 2213.32 416.231 2211.98 415.891C2210.76 415.571 2209.76 415.251 2208.98 414.931C2208.22 414.591 2207.56 414.101 2207 413.461C2206.46 412.801 2206.19 411.941 2206.19 410.881C2206.19 410.041 2206.44 409.271 2206.94 408.571C2207.44 407.871 2208.15 407.321 2209.07 406.921C2209.99 406.501 2211.04 406.291 2212.22 406.291C2214.04 406.291 2215.51 406.751 2216.63 407.671C2217.75 408.591 2218.35 409.851 2218.43 411.451H2215.7C2215.64 410.591 2215.29 409.901 2214.65 409.381C2214.03 408.861 2213.19 408.601 2212.13 408.601C2211.15 408.601 2210.37 408.811 2209.79 409.231C2209.21 409.651 2208.92 410.201 2208.92 410.881C2208.92 411.421 2209.09 411.871 2209.43 412.231C2209.79 412.571 2210.23 412.851 2210.75 413.071C2211.29 413.271 2212.03 413.501 2212.97 413.761C2214.15 414.081 2215.11 414.401 2215.85 414.721C2216.59 415.021 2217.22 415.481 2217.74 416.101C2218.28 416.721 2218.56 417.531 2218.58 418.531C2218.58 419.431 2218.33 420.241 2217.83 420.961C2217.33 421.681 2216.62 422.251 2215.7 422.671C2214.8 423.071 2213.76 423.271 2212.58 423.271Z" fill="#617ABE"/>
|
|
||||||
<path d="M2225.77 408.811V418.501C2225.77 419.301 2225.94 419.871 2226.28 420.211C2226.62 420.531 2227.21 420.691 2228.05 420.691H2230.06V423.001H2227.6C2226.08 423.001 2224.94 422.651 2224.18 421.951C2223.42 421.251 2223.04 420.101 2223.04 418.501V408.811H2220.91V406.561H2223.04V402.421H2225.77V406.561H2230.06V408.811H2225.77Z" fill="#617ABE"/>
|
|
||||||
<path d="M1925.17 468.271C1923.91 468.271 1922.78 468.061 1921.78 467.641C1920.78 467.201 1919.99 466.601 1919.41 465.841C1918.83 465.061 1918.51 464.171 1918.45 463.171H1921.27C1921.35 463.991 1921.73 464.661 1922.41 465.181C1923.11 465.701 1924.02 465.961 1925.14 465.961C1926.18 465.961 1927 465.731 1927.6 465.271C1928.2 464.811 1928.5 464.231 1928.5 463.531C1928.5 462.811 1928.18 462.281 1927.54 461.941C1926.9 461.581 1925.91 461.231 1924.57 460.891C1923.35 460.571 1922.35 460.251 1921.57 459.931C1920.81 459.591 1920.15 459.101 1919.59 458.461C1919.05 457.801 1918.78 456.941 1918.78 455.881C1918.78 455.041 1919.03 454.271 1919.53 453.571C1920.03 452.871 1920.74 452.321 1921.66 451.921C1922.58 451.501 1923.63 451.291 1924.81 451.291C1926.63 451.291 1928.1 451.751 1929.22 452.671C1930.34 453.591 1930.94 454.851 1931.02 456.451H1928.29C1928.23 455.591 1927.88 454.901 1927.24 454.381C1926.62 453.861 1925.78 453.601 1924.72 453.601C1923.74 453.601 1922.96 453.811 1922.38 454.231C1921.8 454.651 1921.51 455.201 1921.51 455.881C1921.51 456.421 1921.68 456.871 1922.02 457.231C1922.38 457.571 1922.82 457.851 1923.34 458.071C1923.88 458.271 1924.62 458.501 1925.56 458.761C1926.74 459.081 1927.7 459.401 1928.44 459.721C1929.18 460.021 1929.81 460.481 1930.33 461.101C1930.87 461.721 1931.15 462.531 1931.17 463.531C1931.17 464.431 1930.92 465.241 1930.42 465.961C1929.92 466.681 1929.21 467.251 1928.29 467.671C1927.39 468.071 1926.35 468.271 1925.17 468.271Z" fill="#617ABE"/>
|
|
||||||
<path d="M1954.79 451.261C1956.07 451.261 1957.21 451.531 1958.21 452.071C1959.21 452.591 1960 453.381 1960.58 454.441C1961.16 455.501 1961.45 456.791 1961.45 458.311V468.001H1958.75V458.701C1958.75 457.061 1958.34 455.811 1957.52 454.951C1956.72 454.071 1955.63 453.631 1954.25 453.631C1952.83 453.631 1951.7 454.091 1950.86 455.011C1950.02 455.911 1949.6 457.221 1949.6 458.941V468.001H1946.9V458.701C1946.9 457.061 1946.49 455.811 1945.67 454.951C1944.87 454.071 1943.78 453.631 1942.4 453.631C1940.98 453.631 1939.85 454.091 1939.01 455.011C1938.17 455.911 1937.75 457.221 1937.75 458.941V468.001H1935.02V451.561H1937.75V453.931C1938.29 453.071 1939.01 452.411 1939.91 451.951C1940.83 451.491 1941.84 451.261 1942.94 451.261C1944.32 451.261 1945.54 451.571 1946.6 452.191C1947.66 452.811 1948.45 453.721 1948.97 454.921C1949.43 453.761 1950.19 452.861 1951.25 452.221C1952.31 451.581 1953.49 451.261 1954.79 451.261Z" fill="#617ABE"/>
|
|
||||||
<path d="M1964.91 459.721C1964.91 458.041 1965.25 456.571 1965.93 455.311C1966.61 454.031 1967.54 453.041 1968.72 452.341C1969.92 451.641 1971.25 451.291 1972.71 451.291C1974.15 451.291 1975.4 451.601 1976.46 452.221C1977.52 452.841 1978.31 453.621 1978.83 454.561V451.561H1981.59V468.001H1978.83V464.941C1978.29 465.901 1977.48 466.701 1976.4 467.341C1975.34 467.961 1974.1 468.271 1972.68 468.271C1971.22 468.271 1969.9 467.911 1968.72 467.191C1967.54 466.471 1966.61 465.461 1965.93 464.161C1965.25 462.861 1964.91 461.381 1964.91 459.721ZM1978.83 459.751C1978.83 458.511 1978.58 457.431 1978.08 456.511C1977.58 455.591 1976.9 454.891 1976.04 454.411C1975.2 453.911 1974.27 453.661 1973.25 453.661C1972.23 453.661 1971.3 453.901 1970.46 454.381C1969.62 454.861 1968.95 455.561 1968.45 456.481C1967.95 457.401 1967.7 458.481 1967.7 459.721C1967.7 460.981 1967.95 462.081 1968.45 463.021C1968.95 463.941 1969.62 464.651 1970.46 465.151C1971.3 465.631 1972.23 465.871 1973.25 465.871C1974.27 465.871 1975.2 465.631 1976.04 465.151C1976.9 464.651 1977.58 463.941 1978.08 463.021C1978.58 462.081 1978.83 460.991 1978.83 459.751Z" fill="#617ABE"/>
|
|
||||||
<path d="M1988.93 454.231C1989.41 453.291 1990.09 452.561 1990.97 452.041C1991.87 451.521 1992.96 451.261 1994.24 451.261V454.081H1993.52C1990.46 454.081 1988.93 455.741 1988.93 459.061V468.001H1986.2V451.561H1988.93V454.231Z" fill="#617ABE"/>
|
|
||||||
<path d="M2000.72 453.811V463.501C2000.72 464.301 2000.89 464.871 2001.23 465.211C2001.57 465.531 2002.16 465.691 2003 465.691H2005.01V468.001H2002.55C2001.03 468.001 1999.89 467.651 1999.13 466.951C1998.37 466.251 1997.99 465.101 1997.99 463.501V453.811H1995.86V451.561H1997.99V447.421H2000.72V451.561H2005.01V453.811H2000.72Z" fill="#617ABE"/>
|
|
||||||
<path d="M2019.72 455.851V458.161H2007.75V455.851H2019.72Z" fill="#617ABE"/>
|
|
||||||
<path d="M2023.82 459.751C2023.82 458.051 2024.16 456.571 2024.84 455.311C2025.52 454.031 2026.46 453.041 2027.66 452.341C2028.88 451.641 2030.27 451.291 2031.83 451.291C2033.85 451.291 2035.51 451.781 2036.81 452.761C2038.13 453.741 2039 455.101 2039.42 456.841H2036.48C2036.2 455.841 2035.65 455.051 2034.83 454.471C2034.03 453.891 2033.03 453.601 2031.83 453.601C2030.27 453.601 2029.01 454.141 2028.05 455.221C2027.09 456.281 2026.61 457.791 2026.61 459.751C2026.61 461.731 2027.09 463.261 2028.05 464.341C2029.01 465.421 2030.27 465.961 2031.83 465.961C2033.03 465.961 2034.03 465.681 2034.83 465.121C2035.63 464.561 2036.18 463.761 2036.48 462.721H2039.42C2038.98 464.401 2038.1 465.751 2036.78 466.771C2035.46 467.771 2033.81 468.271 2031.83 468.271C2030.27 468.271 2028.88 467.921 2027.66 467.221C2026.46 466.521 2025.52 465.531 2024.84 464.251C2024.16 462.971 2023.82 461.471 2023.82 459.751Z" fill="#617ABE"/>
|
|
||||||
<path d="M2050.24 468.271C2048.7 468.271 2047.3 467.921 2046.04 467.221C2044.8 466.521 2043.82 465.531 2043.1 464.251C2042.4 462.951 2042.05 461.451 2042.05 459.751C2042.05 458.071 2042.41 456.591 2043.13 455.311C2043.87 454.011 2044.87 453.021 2046.13 452.341C2047.39 451.641 2048.8 451.291 2050.36 451.291C2051.92 451.291 2053.33 451.641 2054.59 452.341C2055.85 453.021 2056.84 454.001 2057.56 455.281C2058.3 456.561 2058.67 458.051 2058.67 459.751C2058.67 461.451 2058.29 462.951 2057.53 464.251C2056.79 465.531 2055.78 466.521 2054.5 467.221C2053.22 467.921 2051.8 468.271 2050.24 468.271ZM2050.24 465.871C2051.22 465.871 2052.14 465.641 2053 465.181C2053.86 464.721 2054.55 464.031 2055.07 463.111C2055.61 462.191 2055.88 461.071 2055.88 459.751C2055.88 458.431 2055.62 457.311 2055.1 456.391C2054.58 455.471 2053.9 454.791 2053.06 454.351C2052.22 453.891 2051.31 453.661 2050.33 453.661C2049.33 453.661 2048.41 453.891 2047.57 454.351C2046.75 454.791 2046.09 455.471 2045.59 456.391C2045.09 457.311 2044.84 458.431 2044.84 459.751C2044.84 461.091 2045.08 462.221 2045.56 463.141C2046.06 464.061 2046.72 464.751 2047.54 465.211C2048.36 465.651 2049.26 465.871 2050.24 465.871Z" fill="#617ABE"/>
|
|
||||||
<path d="M2070.27 451.261C2072.27 451.261 2073.89 451.871 2075.13 453.091C2076.37 454.291 2076.99 456.031 2076.99 458.311V468.001H2074.29V458.701C2074.29 457.061 2073.88 455.811 2073.06 454.951C2072.24 454.071 2071.12 453.631 2069.7 453.631C2068.26 453.631 2067.11 454.081 2066.25 454.981C2065.41 455.881 2064.99 457.191 2064.99 458.911V468.001H2062.26V451.561H2064.99V453.901C2065.53 453.061 2066.26 452.411 2067.18 451.951C2068.12 451.491 2069.15 451.261 2070.27 451.261Z" fill="#617ABE"/>
|
|
||||||
<path d="M2084.77 453.811V463.501C2084.77 464.301 2084.94 464.871 2085.28 465.211C2085.62 465.531 2086.21 465.691 2087.05 465.691H2089.06V468.001H2086.6C2085.08 468.001 2083.94 467.651 2083.18 466.951C2082.42 466.251 2082.04 465.101 2082.04 463.501V453.811H2079.91V451.561H2082.04V447.421H2084.77V451.561H2089.06V453.811H2084.77Z" fill="#617ABE"/>
|
|
||||||
<path d="M2095.1 454.231C2095.58 453.291 2096.26 452.561 2097.14 452.041C2098.04 451.521 2099.13 451.261 2100.41 451.261V454.081H2099.69C2096.63 454.081 2095.1 455.741 2095.1 459.061V468.001H2092.37V451.561H2095.1V454.231Z" fill="#617ABE"/>
|
|
||||||
<path d="M2102.54 459.721C2102.54 458.041 2102.88 456.571 2103.56 455.311C2104.24 454.031 2105.17 453.041 2106.35 452.341C2107.55 451.641 2108.88 451.291 2110.34 451.291C2111.78 451.291 2113.03 451.601 2114.09 452.221C2115.15 452.841 2115.94 453.621 2116.46 454.561V451.561H2119.22V468.001H2116.46V464.941C2115.92 465.901 2115.11 466.701 2114.03 467.341C2112.97 467.961 2111.73 468.271 2110.31 468.271C2108.85 468.271 2107.53 467.911 2106.35 467.191C2105.17 466.471 2104.24 465.461 2103.56 464.161C2102.88 462.861 2102.54 461.381 2102.54 459.721ZM2116.46 459.751C2116.46 458.511 2116.21 457.431 2115.71 456.511C2115.21 455.591 2114.53 454.891 2113.67 454.411C2112.83 453.911 2111.9 453.661 2110.88 453.661C2109.86 453.661 2108.93 453.901 2108.09 454.381C2107.25 454.861 2106.58 455.561 2106.08 456.481C2105.58 457.401 2105.33 458.481 2105.33 459.721C2105.33 460.981 2105.58 462.081 2106.08 463.021C2106.58 463.941 2107.25 464.651 2108.09 465.151C2108.93 465.631 2109.86 465.871 2110.88 465.871C2111.9 465.871 2112.83 465.631 2113.67 465.151C2114.53 464.651 2115.21 463.941 2115.71 463.021C2116.21 462.081 2116.46 460.991 2116.46 459.751Z" fill="#617ABE"/>
|
|
||||||
<path d="M2122.82 459.751C2122.82 458.051 2123.16 456.571 2123.84 455.311C2124.52 454.031 2125.46 453.041 2126.66 452.341C2127.88 451.641 2129.27 451.291 2130.83 451.291C2132.85 451.291 2134.51 451.781 2135.81 452.761C2137.13 453.741 2138 455.101 2138.42 456.841H2135.48C2135.2 455.841 2134.65 455.051 2133.83 454.471C2133.03 453.891 2132.03 453.601 2130.83 453.601C2129.27 453.601 2128.01 454.141 2127.05 455.221C2126.09 456.281 2125.61 457.791 2125.61 459.751C2125.61 461.731 2126.09 463.261 2127.05 464.341C2128.01 465.421 2129.27 465.961 2130.83 465.961C2132.03 465.961 2133.03 465.681 2133.83 465.121C2134.63 464.561 2135.18 463.761 2135.48 462.721H2138.42C2137.98 464.401 2137.1 465.751 2135.78 466.771C2134.46 467.771 2132.81 468.271 2130.83 468.271C2129.27 468.271 2127.88 467.921 2126.66 467.221C2125.46 466.521 2124.52 465.531 2123.84 464.251C2123.16 462.971 2122.82 461.471 2122.82 459.751Z" fill="#617ABE"/>
|
|
||||||
<path d="M2145.39 453.811V463.501C2145.39 464.301 2145.56 464.871 2145.9 465.211C2146.24 465.531 2146.83 465.691 2147.67 465.691H2149.68V468.001H2147.22C2145.7 468.001 2144.56 467.651 2143.8 466.951C2143.04 466.251 2142.66 465.101 2142.66 463.501V453.811H2140.53V451.561H2142.66V447.421H2145.39V451.561H2149.68V453.811H2145.39Z" fill="#617ABE"/>
|
|
||||||
<path d="M2159.97 459.751C2159.97 458.051 2160.31 456.571 2160.99 455.311C2161.67 454.031 2162.61 453.041 2163.81 452.341C2165.03 451.641 2166.42 451.291 2167.98 451.291C2170 451.291 2171.66 451.781 2172.96 452.761C2174.28 453.741 2175.15 455.101 2175.57 456.841H2172.63C2172.35 455.841 2171.8 455.051 2170.98 454.471C2170.18 453.891 2169.18 453.601 2167.98 453.601C2166.42 453.601 2165.16 454.141 2164.2 455.221C2163.24 456.281 2162.76 457.791 2162.76 459.751C2162.76 461.731 2163.24 463.261 2164.2 464.341C2165.16 465.421 2166.42 465.961 2167.98 465.961C2169.18 465.961 2170.18 465.681 2170.98 465.121C2171.78 464.561 2172.33 463.761 2172.63 462.721H2175.57C2175.13 464.401 2174.25 465.751 2172.93 466.771C2171.61 467.771 2169.96 468.271 2167.98 468.271C2166.42 468.271 2165.03 467.921 2163.81 467.221C2162.61 466.521 2161.67 465.531 2160.99 464.251C2160.31 462.971 2159.97 461.471 2159.97 459.751Z" fill="#617ABE"/>
|
|
||||||
<path d="M2186.38 468.271C2184.84 468.271 2183.44 467.921 2182.18 467.221C2180.94 466.521 2179.96 465.531 2179.24 464.251C2178.54 462.951 2178.19 461.451 2178.19 459.751C2178.19 458.071 2178.55 456.591 2179.27 455.311C2180.01 454.011 2181.01 453.021 2182.27 452.341C2183.53 451.641 2184.94 451.291 2186.5 451.291C2188.06 451.291 2189.47 451.641 2190.73 452.341C2191.99 453.021 2192.98 454.001 2193.7 455.281C2194.44 456.561 2194.81 458.051 2194.81 459.751C2194.81 461.451 2194.43 462.951 2193.67 464.251C2192.93 465.531 2191.92 466.521 2190.64 467.221C2189.36 467.921 2187.94 468.271 2186.38 468.271ZM2186.38 465.871C2187.36 465.871 2188.28 465.641 2189.14 465.181C2190 464.721 2190.69 464.031 2191.21 463.111C2191.75 462.191 2192.02 461.071 2192.02 459.751C2192.02 458.431 2191.76 457.311 2191.24 456.391C2190.72 455.471 2190.04 454.791 2189.2 454.351C2188.36 453.891 2187.45 453.661 2186.47 453.661C2185.47 453.661 2184.55 453.891 2183.71 454.351C2182.89 454.791 2182.23 455.471 2181.73 456.391C2181.23 457.311 2180.98 458.431 2180.98 459.751C2180.98 461.091 2181.22 462.221 2181.7 463.141C2182.2 464.061 2182.86 464.751 2183.68 465.211C2184.5 465.651 2185.4 465.871 2186.38 465.871Z" fill="#617ABE"/>
|
|
||||||
<path d="M2197.38 459.721C2197.38 458.041 2197.72 456.571 2198.4 455.311C2199.08 454.031 2200.01 453.041 2201.19 452.341C2202.39 451.641 2203.73 451.291 2205.21 451.291C2206.49 451.291 2207.68 451.591 2208.78 452.191C2209.88 452.771 2210.72 453.541 2211.3 454.501V445.801H2214.06V468.001H2211.3V464.911C2210.76 465.891 2209.96 466.701 2208.9 467.341C2207.84 467.961 2206.6 468.271 2205.18 468.271C2203.72 468.271 2202.39 467.911 2201.19 467.191C2200.01 466.471 2199.08 465.461 2198.4 464.161C2197.72 462.861 2197.38 461.381 2197.38 459.721ZM2211.3 459.751C2211.3 458.511 2211.05 457.431 2210.55 456.511C2210.05 455.591 2209.37 454.891 2208.51 454.411C2207.67 453.911 2206.74 453.661 2205.72 453.661C2204.7 453.661 2203.77 453.901 2202.93 454.381C2202.09 454.861 2201.42 455.561 2200.92 456.481C2200.42 457.401 2200.17 458.481 2200.17 459.721C2200.17 460.981 2200.42 462.081 2200.92 463.021C2201.42 463.941 2202.09 464.651 2202.93 465.151C2203.77 465.631 2204.7 465.871 2205.72 465.871C2206.74 465.871 2207.67 465.631 2208.51 465.151C2209.37 464.651 2210.05 463.941 2210.55 463.021C2211.05 462.081 2211.3 460.991 2211.3 459.751Z" fill="#617ABE"/>
|
|
||||||
<path d="M2233.67 459.151C2233.67 459.671 2233.64 460.221 2233.58 460.801H2220.44C2220.54 462.421 2221.09 463.691 2222.09 464.611C2223.11 465.511 2224.34 465.961 2225.78 465.961C2226.96 465.961 2227.94 465.691 2228.72 465.151C2229.52 464.591 2230.08 463.851 2230.4 462.931H2233.34C2232.9 464.511 2232.02 465.801 2230.7 466.801C2229.38 467.781 2227.74 468.271 2225.78 468.271C2224.22 468.271 2222.82 467.921 2221.58 467.221C2220.36 466.521 2219.4 465.531 2218.7 464.251C2218 462.951 2217.65 461.451 2217.65 459.751C2217.65 458.051 2217.99 456.561 2218.67 455.281C2219.35 454.001 2220.3 453.021 2221.52 452.341C2222.76 451.641 2224.18 451.291 2225.78 451.291C2227.34 451.291 2228.72 451.631 2229.92 452.311C2231.12 452.991 2232.04 453.931 2232.68 455.131C2233.34 456.311 2233.67 457.651 2233.67 459.151ZM2230.85 458.581C2230.85 457.541 2230.62 456.651 2230.16 455.911C2229.7 455.151 2229.07 454.581 2228.27 454.201C2227.49 453.801 2226.62 453.601 2225.66 453.601C2224.28 453.601 2223.1 454.041 2222.12 454.921C2221.16 455.801 2220.61 457.021 2220.47 458.581H2230.85Z" fill="#617ABE"/>
|
|
||||||
<path d="M1906.56 557.14V563.388H1916.63V569.196H1906.56V575.972H1917.95V582H1899.03V551.112H1917.95V557.14H1906.56Z" fill="#233562"/>
|
|
||||||
<path d="M1933.88 574.96L1939.21 557.448H1947.21L1938.5 582H1929.22L1920.51 557.448H1928.56L1933.88 574.96Z" fill="#233562"/>
|
|
||||||
<path d="M1948.88 569.68C1948.88 567.157 1949.35 564.943 1950.29 563.036C1951.26 561.129 1952.57 559.663 1954.21 558.636C1955.85 557.609 1957.68 557.096 1959.71 557.096C1961.44 557.096 1962.95 557.448 1964.24 558.152C1965.56 558.856 1966.57 559.78 1967.28 560.924V557.448H1974.8V582H1967.28V578.524C1966.54 579.668 1965.52 580.592 1964.2 581.296C1962.91 582 1961.4 582.352 1959.66 582.352C1957.67 582.352 1955.85 581.839 1954.21 580.812C1952.57 579.756 1951.26 578.275 1950.29 576.368C1949.35 574.432 1948.88 572.203 1948.88 569.68ZM1967.28 569.724C1967.28 567.847 1966.75 566.365 1965.69 565.28C1964.67 564.195 1963.4 563.652 1961.91 563.652C1960.41 563.652 1959.14 564.195 1958.08 565.28C1957.05 566.336 1956.54 567.803 1956.54 569.68C1956.54 571.557 1957.05 573.053 1958.08 574.168C1959.14 575.253 1960.41 575.796 1961.91 575.796C1963.4 575.796 1964.67 575.253 1965.69 574.168C1966.75 573.083 1967.28 571.601 1967.28 569.724Z" fill="#233562"/>
|
|
||||||
<path d="M1987.77 549.44V582H1980.24V549.44H1987.77Z" fill="#233562"/>
|
|
||||||
<path d="M2017.46 557.448V582H2009.94V578.656C2009.18 579.741 2008.14 580.621 2006.82 581.296C2005.53 581.941 2004.09 582.264 2002.5 582.264C2000.63 582.264 1998.97 581.853 1997.53 581.032C1996.1 580.181 1994.98 578.964 1994.19 577.38C1993.4 575.796 1993 573.933 1993 571.792V557.448H2000.48V570.78C2000.48 572.423 2000.91 573.699 2001.76 574.608C2002.61 575.517 2003.75 575.972 2005.19 575.972C2006.66 575.972 2007.81 575.517 2008.66 574.608C2009.52 573.699 2009.94 572.423 2009.94 570.78V557.448H2017.46Z" fill="#233562"/>
|
|
||||||
<path d="M2021.37 569.68C2021.37 567.157 2021.84 564.943 2022.78 563.036C2023.75 561.129 2025.05 559.663 2026.7 558.636C2028.34 557.609 2030.17 557.096 2032.2 557.096C2033.93 557.096 2035.44 557.448 2036.73 558.152C2038.05 558.856 2039.06 559.78 2039.77 560.924V557.448H2047.29V582H2039.77V578.524C2039.03 579.668 2038.01 580.592 2036.69 581.296C2035.39 582 2033.88 582.352 2032.15 582.352C2030.16 582.352 2028.34 581.839 2026.7 580.812C2025.05 579.756 2023.75 578.275 2022.78 576.368C2021.84 574.432 2021.37 572.203 2021.37 569.68ZM2039.77 569.724C2039.77 567.847 2039.24 566.365 2038.18 565.28C2037.15 564.195 2035.89 563.652 2034.4 563.652C2032.9 563.652 2031.63 564.195 2030.57 565.28C2029.54 566.336 2029.03 567.803 2029.03 569.68C2029.03 571.557 2029.54 573.053 2030.57 574.168C2031.63 575.253 2032.9 575.796 2034.4 575.796C2035.89 575.796 2037.15 575.253 2038.18 574.168C2039.24 573.083 2039.77 571.601 2039.77 569.724Z" fill="#233562"/>
|
|
||||||
<path d="M2066.42 575.62V582H2062.59C2059.86 582 2057.73 581.34 2056.21 580.02C2054.68 578.671 2053.92 576.485 2053.92 573.464V563.696H2050.93V557.448H2053.92V551.464H2061.44V557.448H2066.37V563.696H2061.44V573.552C2061.44 574.285 2061.62 574.813 2061.97 575.136C2062.32 575.459 2062.91 575.62 2063.73 575.62H2066.42Z" fill="#233562"/>
|
|
||||||
<path d="M2081.78 582.352C2079.38 582.352 2077.21 581.839 2075.27 580.812C2073.36 579.785 2071.85 578.319 2070.74 576.412C2069.65 574.505 2069.11 572.276 2069.11 569.724C2069.11 567.201 2069.67 564.987 2070.78 563.08C2071.9 561.144 2073.42 559.663 2075.36 558.636C2077.3 557.609 2079.47 557.096 2081.87 557.096C2084.28 557.096 2086.45 557.609 2088.38 558.636C2090.32 559.663 2091.84 561.144 2092.96 563.08C2094.07 564.987 2094.63 567.201 2094.63 569.724C2094.63 572.247 2094.06 574.476 2092.92 576.412C2091.8 578.319 2090.26 579.785 2088.3 580.812C2086.36 581.839 2084.19 582.352 2081.78 582.352ZM2081.78 575.84C2083.22 575.84 2084.44 575.312 2085.44 574.256C2086.46 573.2 2086.98 571.689 2086.98 569.724C2086.98 567.759 2086.48 566.248 2085.48 565.192C2084.51 564.136 2083.31 563.608 2081.87 563.608C2080.4 563.608 2079.19 564.136 2078.22 565.192C2077.25 566.219 2076.77 567.729 2076.77 569.724C2076.77 571.689 2077.24 573.2 2078.18 574.256C2079.14 575.312 2080.35 575.84 2081.78 575.84Z" fill="#233562"/>
|
|
||||||
<path d="M2106.15 561.54C2107.03 560.191 2108.13 559.135 2109.45 558.372C2110.77 557.58 2112.23 557.184 2113.85 557.184V565.148H2111.78C2109.9 565.148 2108.49 565.559 2107.56 566.38C2106.62 567.172 2106.15 568.58 2106.15 570.604V582H2098.62V557.448H2106.15V561.54Z" fill="#233562"/>
|
|
||||||
<path d="M2136.89 591.196C2134.04 588.468 2131.83 584.948 2130.24 580.636C2128.66 576.324 2127.87 571.675 2127.87 566.688C2127.87 561.643 2128.69 556.935 2130.33 552.564C2131.97 548.164 2134.31 544.585 2137.33 541.828H2144.72V542.532C2141.64 545.583 2139.26 549.249 2137.59 553.532C2135.92 557.785 2135.08 562.171 2135.08 566.688C2135.08 571.176 2135.89 575.503 2137.5 579.668C2139.12 583.833 2141.39 587.441 2144.32 590.492V591.196H2136.89Z" fill="#233562"/>
|
|
||||||
<path d="M2158.91 582.308C2156.65 582.308 2154.63 581.941 2152.84 581.208C2151.05 580.475 2149.61 579.389 2148.53 577.952C2147.47 576.515 2146.92 574.784 2146.86 572.76H2154.86C2154.98 573.904 2155.38 574.784 2156.05 575.4C2156.73 575.987 2157.61 576.28 2158.69 576.28C2159.81 576.28 2160.69 576.031 2161.33 575.532C2161.98 575.004 2162.3 574.285 2162.3 573.376C2162.3 572.613 2162.04 571.983 2161.51 571.484C2161.01 570.985 2160.38 570.575 2159.62 570.252C2158.88 569.929 2157.83 569.563 2156.45 569.152C2154.45 568.536 2152.83 567.92 2151.56 567.304C2150.3 566.688 2149.22 565.779 2148.31 564.576C2147.4 563.373 2146.94 561.804 2146.94 559.868C2146.94 556.993 2147.99 554.749 2150.07 553.136C2152.15 551.493 2154.86 550.672 2158.21 550.672C2161.61 550.672 2164.35 551.493 2166.44 553.136C2168.52 554.749 2169.63 557.008 2169.78 559.912H2161.64C2161.58 558.915 2161.22 558.137 2160.54 557.58C2159.87 556.993 2159 556.7 2157.94 556.7C2157.04 556.7 2156.3 556.949 2155.74 557.448C2155.19 557.917 2154.91 558.607 2154.91 559.516C2154.91 560.513 2155.38 561.291 2156.32 561.848C2157.26 562.405 2158.72 563.007 2160.72 563.652C2162.71 564.327 2164.32 564.972 2165.56 565.588C2166.82 566.204 2167.9 567.099 2168.81 568.272C2169.72 569.445 2170.18 570.956 2170.18 572.804C2170.18 574.564 2169.72 576.163 2168.81 577.6C2167.93 579.037 2166.64 580.181 2164.94 581.032C2163.24 581.883 2161.23 582.308 2158.91 582.308Z" fill="#233562"/>
|
|
||||||
<path d="M2186.38 551.112C2189.63 551.112 2192.48 551.757 2194.91 553.048C2197.35 554.339 2199.23 556.157 2200.55 558.504C2201.9 560.821 2202.57 563.505 2202.57 566.556C2202.57 569.577 2201.9 572.261 2200.55 574.608C2199.23 576.955 2197.33 578.773 2194.87 580.064C2192.44 581.355 2189.61 582 2186.38 582H2174.81V551.112H2186.38ZM2185.89 575.488C2188.74 575.488 2190.95 574.711 2192.54 573.156C2194.12 571.601 2194.91 569.401 2194.91 566.556C2194.91 563.711 2194.12 561.496 2192.54 559.912C2190.95 558.328 2188.74 557.536 2185.89 557.536H2182.33V575.488H2185.89Z" fill="#233562"/>
|
|
||||||
<path d="M2224.68 582L2214.3 568.36V582H2206.78V551.112H2214.3V564.664L2224.6 551.112H2233.44L2221.47 566.248L2233.88 582H2224.68Z" fill="#233562"/>
|
|
||||||
<path d="M2235.43 591.196V590.492C2238.36 587.441 2240.64 583.833 2242.25 579.668C2243.86 575.503 2244.67 571.176 2244.67 566.688C2244.67 562.171 2243.84 557.785 2242.16 553.532C2240.49 549.249 2238.12 545.583 2235.04 542.532V541.828H2242.43C2245.45 544.585 2247.78 548.164 2249.42 552.564C2251.07 556.935 2251.89 561.643 2251.89 566.688C2251.89 571.675 2251.1 576.324 2249.51 580.636C2247.93 584.948 2245.71 588.468 2242.87 591.196H2235.43Z" fill="#233562"/>
|
|
||||||
<path d="M2076 628.5V699" stroke="#CDDAFF" stroke-width="4" stroke-linecap="square"/>
|
|
||||||
<path d="M1574 934.5V1005" stroke="#CDDAFF" stroke-width="4" stroke-linecap="square"/>
|
|
||||||
<path d="M1495.16 1060.88C1494.6 1059.85 1493.8 1059.08 1492.74 1058.55C1491.71 1057.99 1490.5 1057.71 1489.09 1057.71C1486.65 1057.71 1484.7 1058.52 1483.24 1060.13C1481.77 1061.72 1481.04 1063.84 1481.04 1066.51C1481.04 1069.36 1481.8 1071.59 1483.32 1073.2C1484.88 1074.78 1487.01 1075.58 1489.7 1075.58C1491.55 1075.58 1493.11 1075.11 1494.37 1074.17C1495.66 1073.23 1496.6 1071.88 1497.18 1070.12H1487.64V1064.58H1504V1071.57C1503.45 1073.45 1502.49 1075.19 1501.14 1076.81C1499.82 1078.42 1498.14 1079.73 1496.08 1080.72C1494.03 1081.72 1491.71 1082.22 1489.13 1082.22C1486.08 1082.22 1483.35 1081.56 1480.95 1080.24C1478.57 1078.89 1476.71 1077.03 1475.36 1074.65C1474.04 1072.28 1473.38 1069.56 1473.38 1066.51C1473.38 1063.46 1474.04 1060.75 1475.36 1058.37C1476.71 1055.97 1478.57 1054.1 1480.95 1052.78C1483.32 1051.43 1486.04 1050.76 1489.09 1050.76C1492.78 1050.76 1495.89 1051.65 1498.42 1053.44C1500.97 1055.23 1502.65 1057.71 1503.48 1060.88H1495.16Z" fill="#233562"/>
|
|
||||||
<path d="M1506.68 1069.68C1506.68 1067.16 1507.14 1064.94 1508.08 1063.04C1509.05 1061.13 1510.36 1059.66 1512 1058.64C1513.64 1057.61 1515.48 1057.1 1517.5 1057.1C1519.23 1057.1 1520.74 1057.45 1522.03 1058.15C1523.35 1058.86 1524.36 1059.78 1525.07 1060.92V1057.45H1532.59V1082H1525.07V1078.52C1524.33 1079.67 1523.31 1080.59 1521.99 1081.3C1520.7 1082 1519.19 1082.35 1517.46 1082.35C1515.46 1082.35 1513.64 1081.84 1512 1080.81C1510.36 1079.76 1509.05 1078.27 1508.08 1076.37C1507.14 1074.43 1506.68 1072.2 1506.68 1069.68ZM1525.07 1069.72C1525.07 1067.85 1524.54 1066.37 1523.48 1065.28C1522.46 1064.19 1521.2 1063.65 1519.7 1063.65C1518.2 1063.65 1516.93 1064.19 1515.87 1065.28C1514.84 1066.34 1514.33 1067.8 1514.33 1069.68C1514.33 1071.56 1514.84 1073.05 1515.87 1074.17C1516.93 1075.25 1518.2 1075.8 1519.7 1075.8C1521.2 1075.8 1522.46 1075.25 1523.48 1074.17C1524.54 1073.08 1525.07 1071.6 1525.07 1069.72Z" fill="#233562"/>
|
|
||||||
<path d="M1551.72 1075.62V1082H1547.89C1545.16 1082 1543.04 1081.34 1541.51 1080.02C1539.99 1078.67 1539.22 1076.49 1539.22 1073.46V1063.7H1536.23V1057.45H1539.22V1051.46H1546.75V1057.45H1551.67V1063.7H1546.75V1073.55C1546.75 1074.29 1546.92 1074.81 1547.27 1075.14C1547.63 1075.46 1548.21 1075.62 1549.03 1075.62H1551.72Z" fill="#233562"/>
|
|
||||||
<path d="M1579.05 1069.33C1579.05 1070.03 1579.01 1070.77 1578.92 1071.53H1561.89C1562.01 1073.05 1562.5 1074.23 1563.35 1075.05C1564.23 1075.84 1565.3 1076.24 1566.56 1076.24C1568.44 1076.24 1569.74 1075.44 1570.47 1073.86H1578.48C1578.07 1075.47 1577.32 1076.93 1576.24 1078.22C1575.18 1079.51 1573.85 1080.52 1572.23 1081.25C1570.62 1081.99 1568.82 1082.35 1566.82 1082.35C1564.42 1082.35 1562.28 1081.84 1560.4 1080.81C1558.52 1079.79 1557.05 1078.32 1556 1076.41C1554.94 1074.51 1554.41 1072.28 1554.41 1069.72C1554.41 1067.17 1554.93 1064.94 1555.95 1063.04C1557.01 1061.13 1558.48 1059.66 1560.35 1058.64C1562.23 1057.61 1564.39 1057.1 1566.82 1057.1C1569.2 1057.1 1571.31 1057.59 1573.16 1058.59C1575.01 1059.59 1576.44 1061.01 1577.47 1062.86C1578.53 1064.71 1579.05 1066.86 1579.05 1069.33ZM1571.35 1067.35C1571.35 1066.06 1570.91 1065.03 1570.03 1064.27C1569.15 1063.51 1568.05 1063.12 1566.73 1063.12C1565.47 1063.12 1564.4 1063.49 1563.52 1064.22C1562.67 1064.96 1562.14 1066 1561.94 1067.35H1571.35Z" fill="#233562"/>
|
|
||||||
<path d="M1618.27 1057.45L1611.62 1082H1603.31L1599.44 1066.07L1595.43 1082H1587.16L1580.47 1057.45H1588L1591.47 1075L1595.61 1057.45H1603.57L1607.75 1074.92L1611.18 1057.45H1618.27Z" fill="#233562"/>
|
|
||||||
<path d="M1619.64 1069.68C1619.64 1067.16 1620.11 1064.94 1621.05 1063.04C1622.02 1061.13 1623.32 1059.66 1624.96 1058.64C1626.61 1057.61 1628.44 1057.1 1630.46 1057.1C1632.2 1057.1 1633.71 1057.45 1635 1058.15C1636.32 1058.86 1637.33 1059.78 1638.03 1060.92V1057.45H1645.56V1082H1638.03V1078.52C1637.3 1079.67 1636.27 1080.59 1634.95 1081.3C1633.66 1082 1632.15 1082.35 1630.42 1082.35C1628.43 1082.35 1626.61 1081.84 1624.96 1080.81C1623.32 1079.76 1622.02 1078.27 1621.05 1076.37C1620.11 1074.43 1619.64 1072.2 1619.64 1069.68ZM1638.03 1069.72C1638.03 1067.85 1637.5 1066.37 1636.45 1065.28C1635.42 1064.19 1634.16 1063.65 1632.66 1063.65C1631.17 1063.65 1629.89 1064.19 1628.84 1065.28C1627.81 1066.34 1627.3 1067.8 1627.3 1069.68C1627.3 1071.56 1627.81 1073.05 1628.84 1074.17C1629.89 1075.25 1631.17 1075.8 1632.66 1075.8C1634.16 1075.8 1635.42 1075.25 1636.45 1074.17C1637.5 1073.08 1638.03 1071.6 1638.03 1069.72Z" fill="#233562"/>
|
|
||||||
<path d="M1676.08 1057.45L1660.68 1093.66H1652.58L1658.22 1081.16L1648.23 1057.45H1656.63L1662.31 1072.8L1667.94 1057.45H1676.08Z" fill="#233562"/>
|
|
||||||
<path d="M1394.26 1166.89C1393.74 1166.89 1393.3 1166.71 1392.94 1166.35C1392.58 1165.99 1392.4 1165.55 1392.4 1165.03C1392.4 1164.51 1392.58 1164.07 1392.94 1163.71C1393.3 1163.35 1393.74 1163.17 1394.26 1163.17C1394.76 1163.17 1395.18 1163.35 1395.52 1163.71C1395.88 1164.07 1396.06 1164.51 1396.06 1165.03C1396.06 1165.55 1395.88 1165.99 1395.52 1166.35C1395.18 1166.71 1394.76 1166.89 1394.26 1166.89ZM1395.58 1169.56V1186H1392.85V1169.56H1395.58Z" fill="#617ABE"/>
|
|
||||||
<path d="M1408.25 1169.26C1410.25 1169.26 1411.87 1169.87 1413.11 1171.09C1414.35 1172.29 1414.97 1174.03 1414.97 1176.31V1186H1412.27V1176.7C1412.27 1175.06 1411.86 1173.81 1411.04 1172.95C1410.22 1172.07 1409.1 1171.63 1407.68 1171.63C1406.24 1171.63 1405.09 1172.08 1404.23 1172.98C1403.39 1173.88 1402.97 1175.19 1402.97 1176.91V1186H1400.24V1169.56H1402.97V1171.9C1403.51 1171.06 1404.24 1170.41 1405.16 1169.95C1406.1 1169.49 1407.13 1169.26 1408.25 1169.26Z" fill="#617ABE"/>
|
|
||||||
<path d="M1418.41 1177.72C1418.41 1176.04 1418.75 1174.57 1419.43 1173.31C1420.11 1172.03 1421.04 1171.04 1422.22 1170.34C1423.42 1169.64 1424.76 1169.29 1426.24 1169.29C1427.52 1169.29 1428.71 1169.59 1429.81 1170.19C1430.91 1170.77 1431.75 1171.54 1432.33 1172.5V1163.8H1435.09V1186H1432.33V1182.91C1431.79 1183.89 1430.99 1184.7 1429.93 1185.34C1428.87 1185.96 1427.63 1186.27 1426.21 1186.27C1424.75 1186.27 1423.42 1185.91 1422.22 1185.19C1421.04 1184.47 1420.11 1183.46 1419.43 1182.16C1418.75 1180.86 1418.41 1179.38 1418.41 1177.72ZM1432.33 1177.75C1432.33 1176.51 1432.08 1175.43 1431.58 1174.51C1431.08 1173.59 1430.4 1172.89 1429.54 1172.41C1428.7 1171.91 1427.77 1171.66 1426.75 1171.66C1425.73 1171.66 1424.8 1171.9 1423.96 1172.38C1423.12 1172.86 1422.45 1173.56 1421.95 1174.48C1421.45 1175.4 1421.2 1176.48 1421.2 1177.72C1421.2 1178.98 1421.45 1180.08 1421.95 1181.02C1422.45 1181.94 1423.12 1182.65 1423.96 1183.15C1424.8 1183.63 1425.73 1183.87 1426.75 1183.87C1427.77 1183.87 1428.7 1183.63 1429.54 1183.15C1430.4 1182.65 1431.08 1181.94 1431.58 1181.02C1432.08 1180.08 1432.33 1178.99 1432.33 1177.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M1454.7 1177.15C1454.7 1177.67 1454.67 1178.22 1454.61 1178.8H1441.47C1441.57 1180.42 1442.12 1181.69 1443.12 1182.61C1444.14 1183.51 1445.37 1183.96 1446.81 1183.96C1447.99 1183.96 1448.97 1183.69 1449.75 1183.15C1450.55 1182.59 1451.11 1181.85 1451.43 1180.93H1454.37C1453.93 1182.51 1453.05 1183.8 1451.73 1184.8C1450.41 1185.78 1448.77 1186.27 1446.81 1186.27C1445.25 1186.27 1443.85 1185.92 1442.61 1185.22C1441.39 1184.52 1440.43 1183.53 1439.73 1182.25C1439.03 1180.95 1438.68 1179.45 1438.68 1177.75C1438.68 1176.05 1439.02 1174.56 1439.7 1173.28C1440.38 1172 1441.33 1171.02 1442.55 1170.34C1443.79 1169.64 1445.21 1169.29 1446.81 1169.29C1448.37 1169.29 1449.75 1169.63 1450.95 1170.31C1452.15 1170.99 1453.07 1171.93 1453.71 1173.13C1454.37 1174.31 1454.7 1175.65 1454.7 1177.15ZM1451.88 1176.58C1451.88 1175.54 1451.65 1174.65 1451.19 1173.91C1450.73 1173.15 1450.1 1172.58 1449.3 1172.2C1448.52 1171.8 1447.65 1171.6 1446.69 1171.6C1445.31 1171.6 1444.13 1172.04 1443.15 1172.92C1442.19 1173.8 1441.64 1175.02 1441.5 1176.58H1451.88Z" fill="#617ABE"/>
|
|
||||||
<path d="M1466.88 1186L1462.98 1179.88L1459.23 1186H1456.38L1461.69 1177.84L1456.38 1169.56H1459.47L1463.37 1175.65L1467.09 1169.56H1469.94L1464.66 1177.69L1469.97 1186H1466.88Z" fill="#617ABE"/>
|
|
||||||
<path d="M1487.66 1177.15C1487.66 1177.67 1487.63 1178.22 1487.57 1178.8H1474.43C1474.53 1180.42 1475.08 1181.69 1476.08 1182.61C1477.1 1183.51 1478.33 1183.96 1479.77 1183.96C1480.95 1183.96 1481.93 1183.69 1482.71 1183.15C1483.51 1182.59 1484.07 1181.85 1484.39 1180.93H1487.33C1486.89 1182.51 1486.01 1183.8 1484.69 1184.8C1483.37 1185.78 1481.73 1186.27 1479.77 1186.27C1478.21 1186.27 1476.81 1185.92 1475.57 1185.22C1474.35 1184.52 1473.39 1183.53 1472.69 1182.25C1471.99 1180.95 1471.64 1179.45 1471.64 1177.75C1471.64 1176.05 1471.98 1174.56 1472.66 1173.28C1473.34 1172 1474.29 1171.02 1475.51 1170.34C1476.75 1169.64 1478.17 1169.29 1479.77 1169.29C1481.33 1169.29 1482.71 1169.63 1483.91 1170.31C1485.11 1170.99 1486.03 1171.93 1486.67 1173.13C1487.33 1174.31 1487.66 1175.65 1487.66 1177.15ZM1484.84 1176.58C1484.84 1175.54 1484.61 1174.65 1484.15 1173.91C1483.69 1173.15 1483.06 1172.58 1482.26 1172.2C1481.48 1171.8 1480.61 1171.6 1479.65 1171.6C1478.27 1171.6 1477.09 1172.04 1476.11 1172.92C1475.15 1173.8 1474.6 1175.02 1474.46 1176.58H1484.84Z" fill="#617ABE"/>
|
|
||||||
<path d="M1497.08 1186.27C1495.82 1186.27 1494.69 1186.06 1493.69 1185.64C1492.69 1185.2 1491.9 1184.6 1491.32 1183.84C1490.74 1183.06 1490.42 1182.17 1490.36 1181.17H1493.18C1493.26 1181.99 1493.64 1182.66 1494.32 1183.18C1495.02 1183.7 1495.93 1183.96 1497.05 1183.96C1498.09 1183.96 1498.91 1183.73 1499.51 1183.27C1500.11 1182.81 1500.41 1182.23 1500.41 1181.53C1500.41 1180.81 1500.09 1180.28 1499.45 1179.94C1498.81 1179.58 1497.82 1179.23 1496.48 1178.89C1495.26 1178.57 1494.26 1178.25 1493.48 1177.93C1492.72 1177.59 1492.06 1177.1 1491.5 1176.46C1490.96 1175.8 1490.69 1174.94 1490.69 1173.88C1490.69 1173.04 1490.94 1172.27 1491.44 1171.57C1491.94 1170.87 1492.65 1170.32 1493.57 1169.92C1494.49 1169.5 1495.54 1169.29 1496.72 1169.29C1498.54 1169.29 1500.01 1169.75 1501.13 1170.67C1502.25 1171.59 1502.85 1172.85 1502.93 1174.45H1500.2C1500.14 1173.59 1499.79 1172.9 1499.15 1172.38C1498.53 1171.86 1497.69 1171.6 1496.63 1171.6C1495.65 1171.6 1494.87 1171.81 1494.29 1172.23C1493.71 1172.65 1493.42 1173.2 1493.42 1173.88C1493.42 1174.42 1493.59 1174.87 1493.93 1175.23C1494.29 1175.57 1494.73 1175.85 1495.25 1176.07C1495.79 1176.27 1496.53 1176.5 1497.47 1176.76C1498.65 1177.08 1499.61 1177.4 1500.35 1177.72C1501.09 1178.02 1501.72 1178.48 1502.24 1179.1C1502.78 1179.72 1503.06 1180.53 1503.08 1181.53C1503.08 1182.43 1502.83 1183.24 1502.33 1183.96C1501.83 1184.68 1501.12 1185.25 1500.2 1185.67C1499.3 1186.07 1498.26 1186.27 1497.08 1186.27Z" fill="#617ABE"/>
|
|
||||||
<path d="M1518.26 1171.81V1181.5C1518.26 1182.3 1518.43 1182.87 1518.77 1183.21C1519.11 1183.53 1519.7 1183.69 1520.54 1183.69H1522.55V1186H1520.09C1518.57 1186 1517.43 1185.65 1516.67 1184.95C1515.91 1184.25 1515.53 1183.1 1515.53 1181.5V1171.81H1513.4V1169.56H1515.53V1165.42H1518.26V1169.56H1522.55V1171.81H1518.26Z" fill="#617ABE"/>
|
|
||||||
<path d="M1534.02 1169.26C1535.26 1169.26 1536.38 1169.53 1537.38 1170.07C1538.38 1170.59 1539.16 1171.38 1539.72 1172.44C1540.3 1173.5 1540.59 1174.79 1540.59 1176.31V1186H1537.89V1176.7C1537.89 1175.06 1537.48 1173.81 1536.66 1172.95C1535.84 1172.07 1534.72 1171.63 1533.3 1171.63C1531.86 1171.63 1530.71 1172.08 1529.85 1172.98C1529.01 1173.88 1528.59 1175.19 1528.59 1176.91V1186H1525.86V1163.8H1528.59V1171.9C1529.13 1171.06 1529.87 1170.41 1530.81 1169.95C1531.77 1169.49 1532.84 1169.26 1534.02 1169.26Z" fill="#617ABE"/>
|
|
||||||
<path d="M1560.05 1177.15C1560.05 1177.67 1560.02 1178.22 1559.96 1178.8H1546.82C1546.92 1180.42 1547.47 1181.69 1548.47 1182.61C1549.49 1183.51 1550.72 1183.96 1552.16 1183.96C1553.34 1183.96 1554.32 1183.69 1555.1 1183.15C1555.9 1182.59 1556.46 1181.85 1556.78 1180.93H1559.72C1559.28 1182.51 1558.4 1183.8 1557.08 1184.8C1555.76 1185.78 1554.12 1186.27 1552.16 1186.27C1550.6 1186.27 1549.2 1185.92 1547.96 1185.22C1546.74 1184.52 1545.78 1183.53 1545.08 1182.25C1544.38 1180.95 1544.03 1179.45 1544.03 1177.75C1544.03 1176.05 1544.37 1174.56 1545.05 1173.28C1545.73 1172 1546.68 1171.02 1547.9 1170.34C1549.14 1169.64 1550.56 1169.29 1552.16 1169.29C1553.72 1169.29 1555.1 1169.63 1556.3 1170.31C1557.5 1170.99 1558.42 1171.93 1559.06 1173.13C1559.72 1174.31 1560.05 1175.65 1560.05 1177.15ZM1557.23 1176.58C1557.23 1175.54 1557 1174.65 1556.54 1173.91C1556.08 1173.15 1555.45 1172.58 1554.65 1172.2C1553.87 1171.8 1553 1171.6 1552.04 1171.6C1550.66 1171.6 1549.48 1172.04 1548.5 1172.92C1547.54 1173.8 1546.99 1175.02 1546.85 1176.58H1557.23Z" fill="#617ABE"/>
|
|
||||||
<path d="M1574.98 1171.81V1181.5C1574.98 1182.3 1575.15 1182.87 1575.49 1183.21C1575.83 1183.53 1576.42 1183.69 1577.26 1183.69H1579.27V1186H1576.81C1575.29 1186 1574.15 1185.65 1573.39 1184.95C1572.63 1184.25 1572.25 1183.1 1572.25 1181.5V1171.81H1570.12V1169.56H1572.25V1165.42H1574.98V1169.56H1579.27V1171.81H1574.98Z" fill="#617ABE"/>
|
|
||||||
<path d="M1585.31 1172.23C1585.79 1171.29 1586.47 1170.56 1587.35 1170.04C1588.25 1169.52 1589.34 1169.26 1590.62 1169.26V1172.08H1589.9C1586.84 1172.08 1585.31 1173.74 1585.31 1177.06V1186H1582.58V1169.56H1585.31V1172.23Z" fill="#617ABE"/>
|
|
||||||
<path d="M1592.75 1177.72C1592.75 1176.04 1593.09 1174.57 1593.77 1173.31C1594.45 1172.03 1595.38 1171.04 1596.56 1170.34C1597.76 1169.64 1599.09 1169.29 1600.55 1169.29C1601.99 1169.29 1603.24 1169.6 1604.3 1170.22C1605.36 1170.84 1606.15 1171.62 1606.67 1172.56V1169.56H1609.43V1186H1606.67V1182.94C1606.13 1183.9 1605.32 1184.7 1604.24 1185.34C1603.18 1185.96 1601.94 1186.27 1600.52 1186.27C1599.06 1186.27 1597.74 1185.91 1596.56 1185.19C1595.38 1184.47 1594.45 1183.46 1593.77 1182.16C1593.09 1180.86 1592.75 1179.38 1592.75 1177.72ZM1606.67 1177.75C1606.67 1176.51 1606.42 1175.43 1605.92 1174.51C1605.42 1173.59 1604.74 1172.89 1603.88 1172.41C1603.04 1171.91 1602.11 1171.66 1601.09 1171.66C1600.07 1171.66 1599.14 1171.9 1598.3 1172.38C1597.46 1172.86 1596.79 1173.56 1596.29 1174.48C1595.79 1175.4 1595.54 1176.48 1595.54 1177.72C1595.54 1178.98 1595.79 1180.08 1596.29 1181.02C1596.79 1181.94 1597.46 1182.65 1598.3 1183.15C1599.14 1183.63 1600.07 1183.87 1601.09 1183.87C1602.11 1183.87 1603.04 1183.63 1603.88 1183.15C1604.74 1182.65 1605.42 1181.94 1605.92 1181.02C1606.42 1180.08 1606.67 1178.99 1606.67 1177.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M1622.05 1169.26C1624.05 1169.26 1625.67 1169.87 1626.91 1171.09C1628.15 1172.29 1628.77 1174.03 1628.77 1176.31V1186H1626.07V1176.7C1626.07 1175.06 1625.66 1173.81 1624.84 1172.95C1624.02 1172.07 1622.9 1171.63 1621.48 1171.63C1620.04 1171.63 1618.89 1172.08 1618.03 1172.98C1617.19 1173.88 1616.77 1175.19 1616.77 1176.91V1186H1614.04V1169.56H1616.77V1171.9C1617.31 1171.06 1618.04 1170.41 1618.96 1169.95C1619.9 1169.49 1620.93 1169.26 1622.05 1169.26Z" fill="#617ABE"/>
|
|
||||||
<path d="M1639.05 1186.27C1637.79 1186.27 1636.66 1186.06 1635.66 1185.64C1634.66 1185.2 1633.87 1184.6 1633.29 1183.84C1632.71 1183.06 1632.39 1182.17 1632.33 1181.17H1635.15C1635.23 1181.99 1635.61 1182.66 1636.29 1183.18C1636.99 1183.7 1637.9 1183.96 1639.02 1183.96C1640.06 1183.96 1640.88 1183.73 1641.48 1183.27C1642.08 1182.81 1642.38 1182.23 1642.38 1181.53C1642.38 1180.81 1642.06 1180.28 1641.42 1179.94C1640.78 1179.58 1639.79 1179.23 1638.45 1178.89C1637.23 1178.57 1636.23 1178.25 1635.45 1177.93C1634.69 1177.59 1634.03 1177.1 1633.47 1176.46C1632.93 1175.8 1632.66 1174.94 1632.66 1173.88C1632.66 1173.04 1632.91 1172.27 1633.41 1171.57C1633.91 1170.87 1634.62 1170.32 1635.54 1169.92C1636.46 1169.5 1637.51 1169.29 1638.69 1169.29C1640.51 1169.29 1641.98 1169.75 1643.1 1170.67C1644.22 1171.59 1644.82 1172.85 1644.9 1174.45H1642.17C1642.11 1173.59 1641.76 1172.9 1641.12 1172.38C1640.5 1171.86 1639.66 1171.6 1638.6 1171.6C1637.62 1171.6 1636.84 1171.81 1636.26 1172.23C1635.68 1172.65 1635.39 1173.2 1635.39 1173.88C1635.39 1174.42 1635.56 1174.87 1635.9 1175.23C1636.26 1175.57 1636.7 1175.85 1637.22 1176.07C1637.76 1176.27 1638.5 1176.5 1639.44 1176.76C1640.62 1177.08 1641.58 1177.4 1642.32 1177.72C1643.06 1178.02 1643.69 1178.48 1644.21 1179.1C1644.75 1179.72 1645.03 1180.53 1645.05 1181.53C1645.05 1182.43 1644.8 1183.24 1644.3 1183.96C1643.8 1184.68 1643.09 1185.25 1642.17 1185.67C1641.27 1186.07 1640.23 1186.27 1639.05 1186.27Z" fill="#617ABE"/>
|
|
||||||
<path d="M1647.89 1177.72C1647.89 1176.04 1648.23 1174.57 1648.91 1173.31C1649.59 1172.03 1650.52 1171.04 1651.7 1170.34C1652.9 1169.64 1654.23 1169.29 1655.69 1169.29C1657.13 1169.29 1658.38 1169.6 1659.44 1170.22C1660.5 1170.84 1661.29 1171.62 1661.81 1172.56V1169.56H1664.57V1186H1661.81V1182.94C1661.27 1183.9 1660.46 1184.7 1659.38 1185.34C1658.32 1185.96 1657.08 1186.27 1655.66 1186.27C1654.2 1186.27 1652.88 1185.91 1651.7 1185.19C1650.52 1184.47 1649.59 1183.46 1648.91 1182.16C1648.23 1180.86 1647.89 1179.38 1647.89 1177.72ZM1661.81 1177.75C1661.81 1176.51 1661.56 1175.43 1661.06 1174.51C1660.56 1173.59 1659.88 1172.89 1659.02 1172.41C1658.18 1171.91 1657.25 1171.66 1656.23 1171.66C1655.21 1171.66 1654.28 1171.9 1653.44 1172.38C1652.6 1172.86 1651.93 1173.56 1651.43 1174.48C1650.93 1175.4 1650.68 1176.48 1650.68 1177.72C1650.68 1178.98 1650.93 1180.08 1651.43 1181.02C1651.93 1181.94 1652.6 1182.65 1653.44 1183.15C1654.28 1183.63 1655.21 1183.87 1656.23 1183.87C1657.25 1183.87 1658.18 1183.63 1659.02 1183.15C1659.88 1182.65 1660.56 1181.94 1661.06 1181.02C1661.56 1180.08 1661.81 1178.99 1661.81 1177.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M1668.16 1177.75C1668.16 1176.05 1668.5 1174.57 1669.18 1173.31C1669.86 1172.03 1670.8 1171.04 1672 1170.34C1673.22 1169.64 1674.61 1169.29 1676.17 1169.29C1678.19 1169.29 1679.85 1169.78 1681.15 1170.76C1682.47 1171.74 1683.34 1173.1 1683.76 1174.84H1680.82C1680.54 1173.84 1679.99 1173.05 1679.17 1172.47C1678.37 1171.89 1677.37 1171.6 1676.17 1171.6C1674.61 1171.6 1673.35 1172.14 1672.39 1173.22C1671.43 1174.28 1670.95 1175.79 1670.95 1177.75C1670.95 1179.73 1671.43 1181.26 1672.39 1182.34C1673.35 1183.42 1674.61 1183.96 1676.17 1183.96C1677.37 1183.96 1678.37 1183.68 1679.17 1183.12C1679.97 1182.56 1680.52 1181.76 1680.82 1180.72H1683.76C1683.32 1182.4 1682.44 1183.75 1681.12 1184.77C1679.8 1185.77 1678.15 1186.27 1676.17 1186.27C1674.61 1186.27 1673.22 1185.92 1672 1185.22C1670.8 1184.52 1669.86 1183.53 1669.18 1182.25C1668.5 1180.97 1668.16 1179.47 1668.16 1177.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M1690.73 1171.81V1181.5C1690.73 1182.3 1690.9 1182.87 1691.24 1183.21C1691.58 1183.53 1692.17 1183.69 1693.01 1183.69H1695.02V1186H1692.56C1691.04 1186 1689.9 1185.65 1689.14 1184.95C1688.38 1184.25 1688 1183.1 1688 1181.5V1171.81H1685.87V1169.56H1688V1165.42H1690.73V1169.56H1695.02V1171.81H1690.73Z" fill="#617ABE"/>
|
|
||||||
<path d="M1699.74 1166.89C1699.22 1166.89 1698.78 1166.71 1698.42 1166.35C1698.06 1165.99 1697.88 1165.55 1697.88 1165.03C1697.88 1164.51 1698.06 1164.07 1698.42 1163.71C1698.78 1163.35 1699.22 1163.17 1699.74 1163.17C1700.24 1163.17 1700.66 1163.35 1701 1163.71C1701.36 1164.07 1701.54 1164.51 1701.54 1165.03C1701.54 1165.55 1701.36 1165.99 1701 1166.35C1700.66 1166.71 1700.24 1166.89 1699.74 1166.89ZM1701.06 1169.56V1186H1698.33V1169.56H1701.06Z" fill="#617ABE"/>
|
|
||||||
<path d="M1712.88 1186.27C1711.34 1186.27 1709.94 1185.92 1708.68 1185.22C1707.44 1184.52 1706.46 1183.53 1705.74 1182.25C1705.04 1180.95 1704.69 1179.45 1704.69 1177.75C1704.69 1176.07 1705.05 1174.59 1705.77 1173.31C1706.51 1172.01 1707.51 1171.02 1708.77 1170.34C1710.03 1169.64 1711.44 1169.29 1713 1169.29C1714.56 1169.29 1715.97 1169.64 1717.23 1170.34C1718.49 1171.02 1719.48 1172 1720.2 1173.28C1720.94 1174.56 1721.31 1176.05 1721.31 1177.75C1721.31 1179.45 1720.93 1180.95 1720.17 1182.25C1719.43 1183.53 1718.42 1184.52 1717.14 1185.22C1715.86 1185.92 1714.44 1186.27 1712.88 1186.27ZM1712.88 1183.87C1713.86 1183.87 1714.78 1183.64 1715.64 1183.18C1716.5 1182.72 1717.19 1182.03 1717.71 1181.11C1718.25 1180.19 1718.52 1179.07 1718.52 1177.75C1718.52 1176.43 1718.26 1175.31 1717.74 1174.39C1717.22 1173.47 1716.54 1172.79 1715.7 1172.35C1714.86 1171.89 1713.95 1171.66 1712.97 1171.66C1711.97 1171.66 1711.05 1171.89 1710.21 1172.35C1709.39 1172.79 1708.73 1173.47 1708.23 1174.39C1707.73 1175.31 1707.48 1176.43 1707.48 1177.75C1707.48 1179.09 1707.72 1180.22 1708.2 1181.14C1708.7 1182.06 1709.36 1182.75 1710.18 1183.21C1711 1183.65 1711.9 1183.87 1712.88 1183.87Z" fill="#617ABE"/>
|
|
||||||
<path d="M1732.91 1169.26C1734.91 1169.26 1736.53 1169.87 1737.77 1171.09C1739.01 1172.29 1739.63 1174.03 1739.63 1176.31V1186H1736.93V1176.7C1736.93 1175.06 1736.52 1173.81 1735.7 1172.95C1734.88 1172.07 1733.76 1171.63 1732.34 1171.63C1730.9 1171.63 1729.75 1172.08 1728.89 1172.98C1728.05 1173.88 1727.63 1175.19 1727.63 1176.91V1186H1724.9V1169.56H1727.63V1171.9C1728.17 1171.06 1728.9 1170.41 1729.82 1169.95C1730.76 1169.49 1731.79 1169.26 1732.91 1169.26Z" fill="#617ABE"/>
|
|
||||||
<path d="M1749.91 1186.27C1748.65 1186.27 1747.52 1186.06 1746.52 1185.64C1745.52 1185.2 1744.73 1184.6 1744.15 1183.84C1743.57 1183.06 1743.25 1182.17 1743.19 1181.17H1746.01C1746.09 1181.99 1746.47 1182.66 1747.15 1183.18C1747.85 1183.7 1748.76 1183.96 1749.88 1183.96C1750.92 1183.96 1751.74 1183.73 1752.34 1183.27C1752.94 1182.81 1753.24 1182.23 1753.24 1181.53C1753.24 1180.81 1752.92 1180.28 1752.28 1179.94C1751.64 1179.58 1750.65 1179.23 1749.31 1178.89C1748.09 1178.57 1747.09 1178.25 1746.31 1177.93C1745.55 1177.59 1744.89 1177.1 1744.33 1176.46C1743.79 1175.8 1743.52 1174.94 1743.52 1173.88C1743.52 1173.04 1743.77 1172.27 1744.27 1171.57C1744.77 1170.87 1745.48 1170.32 1746.4 1169.92C1747.32 1169.5 1748.37 1169.29 1749.55 1169.29C1751.37 1169.29 1752.84 1169.75 1753.96 1170.67C1755.08 1171.59 1755.68 1172.85 1755.76 1174.45H1753.03C1752.97 1173.59 1752.62 1172.9 1751.98 1172.38C1751.36 1171.86 1750.52 1171.6 1749.46 1171.6C1748.48 1171.6 1747.7 1171.81 1747.12 1172.23C1746.54 1172.65 1746.25 1173.2 1746.25 1173.88C1746.25 1174.42 1746.42 1174.87 1746.76 1175.23C1747.12 1175.57 1747.56 1175.85 1748.08 1176.07C1748.62 1176.27 1749.36 1176.5 1750.3 1176.76C1751.48 1177.08 1752.44 1177.4 1753.18 1177.72C1753.92 1178.02 1754.55 1178.48 1755.07 1179.1C1755.61 1179.72 1755.89 1180.53 1755.91 1181.53C1755.91 1182.43 1755.66 1183.24 1755.16 1183.96C1754.66 1184.68 1753.95 1185.25 1753.03 1185.67C1752.13 1186.07 1751.09 1186.27 1749.91 1186.27Z" fill="#617ABE"/>
|
|
||||||
<path d="M1465.31 1216.81H1461.86V1231H1459.13V1216.81H1457V1214.56H1459.13V1213.39C1459.13 1211.55 1459.6 1210.21 1460.54 1209.37C1461.5 1208.51 1463.03 1208.08 1465.13 1208.08V1210.36C1463.93 1210.36 1463.08 1210.6 1462.58 1211.08C1462.1 1211.54 1461.86 1212.31 1461.86 1213.39V1214.56H1465.31V1216.81Z" fill="#617ABE"/>
|
|
||||||
<path d="M1475.67 1231.27C1474.13 1231.27 1472.73 1230.92 1471.47 1230.22C1470.23 1229.52 1469.25 1228.53 1468.53 1227.25C1467.83 1225.95 1467.48 1224.45 1467.48 1222.75C1467.48 1221.07 1467.84 1219.59 1468.56 1218.31C1469.3 1217.01 1470.3 1216.02 1471.56 1215.34C1472.82 1214.64 1474.23 1214.29 1475.79 1214.29C1477.35 1214.29 1478.76 1214.64 1480.02 1215.34C1481.28 1216.02 1482.27 1217 1482.99 1218.28C1483.73 1219.56 1484.1 1221.05 1484.1 1222.75C1484.1 1224.45 1483.72 1225.95 1482.96 1227.25C1482.22 1228.53 1481.21 1229.52 1479.93 1230.22C1478.65 1230.92 1477.23 1231.27 1475.67 1231.27ZM1475.67 1228.87C1476.65 1228.87 1477.57 1228.64 1478.43 1228.18C1479.29 1227.72 1479.98 1227.03 1480.5 1226.11C1481.04 1225.19 1481.31 1224.07 1481.31 1222.75C1481.31 1221.43 1481.05 1220.31 1480.53 1219.39C1480.01 1218.47 1479.33 1217.79 1478.49 1217.35C1477.65 1216.89 1476.74 1216.66 1475.76 1216.66C1474.76 1216.66 1473.84 1216.89 1473 1217.35C1472.18 1217.79 1471.52 1218.47 1471.02 1219.39C1470.52 1220.31 1470.27 1221.43 1470.27 1222.75C1470.27 1224.09 1470.51 1225.22 1470.99 1226.14C1471.49 1227.06 1472.15 1227.75 1472.97 1228.21C1473.79 1228.65 1474.69 1228.87 1475.67 1228.87Z" fill="#617ABE"/>
|
|
||||||
<path d="M1490.42 1217.23C1490.9 1216.29 1491.58 1215.56 1492.46 1215.04C1493.36 1214.52 1494.45 1214.26 1495.73 1214.26V1217.08H1495.01C1491.95 1217.08 1490.42 1218.74 1490.42 1222.06V1231H1487.69V1214.56H1490.42V1217.23Z" fill="#617ABE"/>
|
|
||||||
<path d="M1513.57 1216.81H1510.12V1231H1507.39V1216.81H1505.26V1214.56H1507.39V1213.39C1507.39 1211.55 1507.86 1210.21 1508.8 1209.37C1509.76 1208.51 1511.29 1208.08 1513.39 1208.08V1210.36C1512.19 1210.36 1511.34 1210.6 1510.84 1211.08C1510.36 1211.54 1510.12 1212.31 1510.12 1213.39V1214.56H1513.57V1216.81Z" fill="#617ABE"/>
|
|
||||||
<path d="M1515.73 1222.72C1515.73 1221.04 1516.07 1219.57 1516.75 1218.31C1517.43 1217.03 1518.36 1216.04 1519.54 1215.34C1520.74 1214.64 1522.07 1214.29 1523.53 1214.29C1524.97 1214.29 1526.22 1214.6 1527.28 1215.22C1528.34 1215.84 1529.13 1216.62 1529.65 1217.56V1214.56H1532.41V1231H1529.65V1227.94C1529.11 1228.9 1528.3 1229.7 1527.22 1230.34C1526.16 1230.96 1524.92 1231.27 1523.5 1231.27C1522.04 1231.27 1520.72 1230.91 1519.54 1230.19C1518.36 1229.47 1517.43 1228.46 1516.75 1227.16C1516.07 1225.86 1515.73 1224.38 1515.73 1222.72ZM1529.65 1222.75C1529.65 1221.51 1529.4 1220.43 1528.9 1219.51C1528.4 1218.59 1527.72 1217.89 1526.86 1217.41C1526.02 1216.91 1525.09 1216.66 1524.07 1216.66C1523.05 1216.66 1522.12 1216.9 1521.28 1217.38C1520.44 1217.86 1519.77 1218.56 1519.27 1219.48C1518.77 1220.4 1518.52 1221.48 1518.52 1222.72C1518.52 1223.98 1518.77 1225.08 1519.27 1226.02C1519.77 1226.94 1520.44 1227.65 1521.28 1228.15C1522.12 1228.63 1523.05 1228.87 1524.07 1228.87C1525.09 1228.87 1526.02 1228.63 1526.86 1228.15C1527.72 1227.65 1528.4 1226.94 1528.9 1226.02C1529.4 1225.08 1529.65 1223.99 1529.65 1222.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M1542.84 1231.27C1541.58 1231.27 1540.45 1231.06 1539.45 1230.64C1538.45 1230.2 1537.66 1229.6 1537.08 1228.84C1536.5 1228.06 1536.18 1227.17 1536.12 1226.17H1538.94C1539.02 1226.99 1539.4 1227.66 1540.08 1228.18C1540.78 1228.7 1541.69 1228.96 1542.81 1228.96C1543.85 1228.96 1544.67 1228.73 1545.27 1228.27C1545.87 1227.81 1546.17 1227.23 1546.17 1226.53C1546.17 1225.81 1545.85 1225.28 1545.21 1224.94C1544.57 1224.58 1543.58 1224.23 1542.24 1223.89C1541.02 1223.57 1540.02 1223.25 1539.24 1222.93C1538.48 1222.59 1537.82 1222.1 1537.26 1221.46C1536.72 1220.8 1536.45 1219.94 1536.45 1218.88C1536.45 1218.04 1536.7 1217.27 1537.2 1216.57C1537.7 1215.87 1538.41 1215.32 1539.33 1214.92C1540.25 1214.5 1541.3 1214.29 1542.48 1214.29C1544.3 1214.29 1545.77 1214.75 1546.89 1215.67C1548.01 1216.59 1548.61 1217.85 1548.69 1219.45H1545.96C1545.9 1218.59 1545.55 1217.9 1544.91 1217.38C1544.29 1216.86 1543.45 1216.6 1542.39 1216.6C1541.41 1216.6 1540.63 1216.81 1540.05 1217.23C1539.47 1217.65 1539.18 1218.2 1539.18 1218.88C1539.18 1219.42 1539.35 1219.87 1539.69 1220.23C1540.05 1220.57 1540.49 1220.85 1541.01 1221.07C1541.55 1221.27 1542.29 1221.5 1543.23 1221.76C1544.41 1222.08 1545.37 1222.4 1546.11 1222.72C1546.85 1223.02 1547.48 1223.48 1548 1224.1C1548.54 1224.72 1548.82 1225.53 1548.84 1226.53C1548.84 1227.43 1548.59 1228.24 1548.09 1228.96C1547.59 1229.68 1546.88 1230.25 1545.96 1230.67C1545.06 1231.07 1544.02 1231.27 1542.84 1231.27Z" fill="#617ABE"/>
|
|
||||||
<path d="M1556.03 1216.81V1226.5C1556.03 1227.3 1556.2 1227.87 1556.54 1228.21C1556.88 1228.53 1557.47 1228.69 1558.31 1228.69H1560.32V1231H1557.86C1556.34 1231 1555.2 1230.65 1554.44 1229.95C1553.68 1229.25 1553.3 1228.1 1553.3 1226.5V1216.81H1551.17V1214.56H1553.3V1210.42H1556.03V1214.56H1560.32V1216.81H1556.03Z" fill="#617ABE"/>
|
|
||||||
<path d="M1574.35 1217.23C1574.83 1216.29 1575.51 1215.56 1576.39 1215.04C1577.29 1214.52 1578.38 1214.26 1579.66 1214.26V1217.08H1578.94C1575.88 1217.08 1574.35 1218.74 1574.35 1222.06V1231H1571.62V1214.56H1574.35V1217.23Z" fill="#617ABE"/>
|
|
||||||
<path d="M1597.81 1222.15C1597.81 1222.67 1597.78 1223.22 1597.72 1223.8H1584.58C1584.68 1225.42 1585.23 1226.69 1586.23 1227.61C1587.25 1228.51 1588.48 1228.96 1589.92 1228.96C1591.1 1228.96 1592.08 1228.69 1592.86 1228.15C1593.66 1227.59 1594.22 1226.85 1594.54 1225.93H1597.48C1597.04 1227.51 1596.16 1228.8 1594.84 1229.8C1593.52 1230.78 1591.88 1231.27 1589.92 1231.27C1588.36 1231.27 1586.96 1230.92 1585.72 1230.22C1584.5 1229.52 1583.54 1228.53 1582.84 1227.25C1582.14 1225.95 1581.79 1224.45 1581.79 1222.75C1581.79 1221.05 1582.13 1219.56 1582.81 1218.28C1583.49 1217 1584.44 1216.02 1585.66 1215.34C1586.9 1214.64 1588.32 1214.29 1589.92 1214.29C1591.48 1214.29 1592.86 1214.63 1594.06 1215.31C1595.26 1215.99 1596.18 1216.93 1596.82 1218.13C1597.48 1219.31 1597.81 1220.65 1597.81 1222.15ZM1594.99 1221.58C1594.99 1220.54 1594.76 1219.65 1594.3 1218.91C1593.84 1218.15 1593.21 1217.58 1592.41 1217.2C1591.63 1216.8 1590.76 1216.6 1589.8 1216.6C1588.42 1216.6 1587.24 1217.04 1586.26 1217.92C1585.3 1218.8 1584.75 1220.02 1584.61 1221.58H1594.99Z" fill="#617ABE"/>
|
|
||||||
<path d="M1604.75 1216.81V1226.5C1604.75 1227.3 1604.92 1227.87 1605.26 1228.21C1605.6 1228.53 1606.19 1228.69 1607.03 1228.69H1609.04V1231H1606.58C1605.06 1231 1603.92 1230.65 1603.16 1229.95C1602.4 1229.25 1602.02 1228.1 1602.02 1226.5V1216.81H1599.89V1214.56H1602.02V1210.42H1604.75V1214.56H1609.04V1216.81H1604.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M1615.08 1217.23C1615.56 1216.29 1616.24 1215.56 1617.12 1215.04C1618.02 1214.52 1619.11 1214.26 1620.39 1214.26V1217.08H1619.67C1616.61 1217.08 1615.08 1218.74 1615.08 1222.06V1231H1612.35V1214.56H1615.08V1217.23Z" fill="#617ABE"/>
|
|
||||||
<path d="M1624.95 1211.89C1624.43 1211.89 1623.99 1211.71 1623.63 1211.35C1623.27 1210.99 1623.09 1210.55 1623.09 1210.03C1623.09 1209.51 1623.27 1209.07 1623.63 1208.71C1623.99 1208.35 1624.43 1208.17 1624.95 1208.17C1625.45 1208.17 1625.87 1208.35 1626.21 1208.71C1626.57 1209.07 1626.75 1209.51 1626.75 1210.03C1626.75 1210.55 1626.57 1210.99 1626.21 1211.35C1625.87 1211.71 1625.45 1211.89 1624.95 1211.89ZM1626.27 1214.56V1231H1623.54V1214.56H1626.27Z" fill="#617ABE"/>
|
|
||||||
<path d="M1645.92 1222.15C1645.92 1222.67 1645.89 1223.22 1645.83 1223.8H1632.69C1632.79 1225.42 1633.34 1226.69 1634.34 1227.61C1635.36 1228.51 1636.59 1228.96 1638.03 1228.96C1639.21 1228.96 1640.19 1228.69 1640.97 1228.15C1641.77 1227.59 1642.33 1226.85 1642.65 1225.93H1645.59C1645.15 1227.51 1644.27 1228.8 1642.95 1229.8C1641.63 1230.78 1639.99 1231.27 1638.03 1231.27C1636.47 1231.27 1635.07 1230.92 1633.83 1230.22C1632.61 1229.52 1631.65 1228.53 1630.95 1227.25C1630.25 1225.95 1629.9 1224.45 1629.9 1222.75C1629.9 1221.05 1630.24 1219.56 1630.92 1218.28C1631.6 1217 1632.55 1216.02 1633.77 1215.34C1635.01 1214.64 1636.43 1214.29 1638.03 1214.29C1639.59 1214.29 1640.97 1214.63 1642.17 1215.31C1643.37 1215.99 1644.29 1216.93 1644.93 1218.13C1645.59 1219.31 1645.92 1220.65 1645.92 1222.15ZM1643.1 1221.58C1643.1 1220.54 1642.87 1219.65 1642.41 1218.91C1641.95 1218.15 1641.32 1217.58 1640.52 1217.2C1639.74 1216.8 1638.87 1216.6 1637.91 1216.6C1636.53 1216.6 1635.35 1217.04 1634.37 1217.92C1633.41 1218.8 1632.86 1220.02 1632.72 1221.58H1643.1Z" fill="#617ABE"/>
|
|
||||||
<path d="M1655.64 1228.48L1660.74 1214.56H1663.65L1657.2 1231H1654.02L1647.57 1214.56H1650.51L1655.64 1228.48Z" fill="#617ABE"/>
|
|
||||||
<path d="M1665.32 1222.72C1665.32 1221.04 1665.66 1219.57 1666.34 1218.31C1667.02 1217.03 1667.95 1216.04 1669.13 1215.34C1670.33 1214.64 1671.66 1214.29 1673.12 1214.29C1674.56 1214.29 1675.81 1214.6 1676.87 1215.22C1677.93 1215.84 1678.72 1216.62 1679.24 1217.56V1214.56H1682V1231H1679.24V1227.94C1678.7 1228.9 1677.89 1229.7 1676.81 1230.34C1675.75 1230.96 1674.51 1231.27 1673.09 1231.27C1671.63 1231.27 1670.31 1230.91 1669.13 1230.19C1667.95 1229.47 1667.02 1228.46 1666.34 1227.16C1665.66 1225.86 1665.32 1224.38 1665.32 1222.72ZM1679.24 1222.75C1679.24 1221.51 1678.99 1220.43 1678.49 1219.51C1677.99 1218.59 1677.31 1217.89 1676.45 1217.41C1675.61 1216.91 1674.68 1216.66 1673.66 1216.66C1672.64 1216.66 1671.71 1216.9 1670.87 1217.38C1670.03 1217.86 1669.36 1218.56 1668.86 1219.48C1668.36 1220.4 1668.11 1221.48 1668.11 1222.72C1668.11 1223.98 1668.36 1225.08 1668.86 1226.02C1669.36 1226.94 1670.03 1227.65 1670.87 1228.15C1671.71 1228.63 1672.64 1228.87 1673.66 1228.87C1674.68 1228.87 1675.61 1228.63 1676.45 1228.15C1677.31 1227.65 1677.99 1226.94 1678.49 1226.02C1678.99 1225.08 1679.24 1223.99 1679.24 1222.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M1689.34 1208.8V1231H1686.61V1208.8H1689.34Z" fill="#617ABE"/>
|
|
||||||
<path d="M2076 1313.5V1384" stroke="#CDDAFF" stroke-width="4" stroke-linecap="square"/>
|
|
||||||
<path d="M2045.87 1430.11C2049.13 1430.11 2051.97 1430.76 2054.41 1432.05C2056.84 1433.34 2058.72 1435.16 2060.04 1437.5C2061.39 1439.82 2062.06 1442.5 2062.06 1445.56C2062.06 1448.58 2061.39 1451.26 2060.04 1453.61C2058.72 1455.95 2056.83 1457.77 2054.36 1459.06C2051.93 1460.35 2049.1 1461 2045.87 1461H2034.3V1430.11H2045.87ZM2045.39 1454.49C2048.23 1454.49 2050.45 1453.71 2052.03 1452.16C2053.61 1450.6 2054.41 1448.4 2054.41 1445.56C2054.41 1442.71 2053.61 1440.5 2052.03 1438.91C2050.45 1437.33 2048.23 1436.54 2045.39 1436.54H2041.82V1454.49H2045.39Z" fill="#233562"/>
|
|
||||||
<path d="M2073.79 1436.14V1442.39H2083.87V1448.2H2073.79V1454.97H2085.19V1461H2066.27V1430.11H2085.19V1436.14H2073.79Z" fill="#233562"/>
|
|
||||||
<path d="M2117.7 1461H2110.18L2097.6 1441.95V1461H2090.07V1430.11H2097.6L2110.18 1449.25V1430.11H2117.7V1461Z" fill="#233562"/>
|
|
||||||
<path d="M1918.37 1556.72C1918.37 1555.04 1918.71 1553.57 1919.39 1552.31C1920.07 1551.03 1921 1550.04 1922.18 1549.34C1923.38 1548.64 1924.72 1548.29 1926.2 1548.29C1927.48 1548.29 1928.67 1548.59 1929.77 1549.19C1930.87 1549.77 1931.71 1550.54 1932.29 1551.5V1542.8H1935.05V1565H1932.29V1561.91C1931.75 1562.89 1930.95 1563.7 1929.89 1564.34C1928.83 1564.96 1927.59 1565.27 1926.17 1565.27C1924.71 1565.27 1923.38 1564.91 1922.18 1564.19C1921 1563.47 1920.07 1562.46 1919.39 1561.16C1918.71 1559.86 1918.37 1558.38 1918.37 1556.72ZM1932.29 1556.75C1932.29 1555.51 1932.04 1554.43 1931.54 1553.51C1931.04 1552.59 1930.36 1551.89 1929.5 1551.41C1928.66 1550.91 1927.73 1550.66 1926.71 1550.66C1925.69 1550.66 1924.76 1550.9 1923.92 1551.38C1923.08 1551.86 1922.41 1552.56 1921.91 1553.48C1921.41 1554.4 1921.16 1555.48 1921.16 1556.72C1921.16 1557.98 1921.41 1559.08 1921.91 1560.02C1922.41 1560.94 1923.08 1561.65 1923.92 1562.15C1924.76 1562.63 1925.69 1562.87 1926.71 1562.87C1927.73 1562.87 1928.66 1562.63 1929.5 1562.15C1930.36 1561.65 1931.04 1560.94 1931.54 1560.02C1932.04 1559.08 1932.29 1557.99 1932.29 1556.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M1954.66 1556.15C1954.66 1556.67 1954.63 1557.22 1954.57 1557.8H1941.43C1941.53 1559.42 1942.08 1560.69 1943.08 1561.61C1944.1 1562.51 1945.33 1562.96 1946.77 1562.96C1947.95 1562.96 1948.93 1562.69 1949.71 1562.15C1950.51 1561.59 1951.07 1560.85 1951.39 1559.93H1954.33C1953.89 1561.51 1953.01 1562.8 1951.69 1563.8C1950.37 1564.78 1948.73 1565.27 1946.77 1565.27C1945.21 1565.27 1943.81 1564.92 1942.57 1564.22C1941.35 1563.52 1940.39 1562.53 1939.69 1561.25C1938.99 1559.95 1938.64 1558.45 1938.64 1556.75C1938.64 1555.05 1938.98 1553.56 1939.66 1552.28C1940.34 1551 1941.29 1550.02 1942.51 1549.34C1943.75 1548.64 1945.17 1548.29 1946.77 1548.29C1948.33 1548.29 1949.71 1548.63 1950.91 1549.31C1952.11 1549.99 1953.03 1550.93 1953.67 1552.13C1954.33 1553.31 1954.66 1554.65 1954.66 1556.15ZM1951.84 1555.58C1951.84 1554.54 1951.61 1553.65 1951.15 1552.91C1950.69 1552.15 1950.06 1551.58 1949.26 1551.2C1948.48 1550.8 1947.61 1550.6 1946.65 1550.6C1945.27 1550.6 1944.09 1551.04 1943.11 1551.92C1942.15 1552.8 1941.6 1554.02 1941.46 1555.58H1951.84Z" fill="#617ABE"/>
|
|
||||||
<path d="M1961 1542.8V1565H1958.27V1542.8H1961Z" fill="#617ABE"/>
|
|
||||||
<path d="M1980.65 1556.15C1980.65 1556.67 1980.62 1557.22 1980.56 1557.8H1967.42C1967.52 1559.42 1968.07 1560.69 1969.07 1561.61C1970.09 1562.51 1971.32 1562.96 1972.76 1562.96C1973.94 1562.96 1974.92 1562.69 1975.7 1562.15C1976.5 1561.59 1977.06 1560.85 1977.38 1559.93H1980.32C1979.88 1561.51 1979 1562.8 1977.68 1563.8C1976.36 1564.78 1974.72 1565.27 1972.76 1565.27C1971.2 1565.27 1969.8 1564.92 1968.56 1564.22C1967.34 1563.52 1966.38 1562.53 1965.68 1561.25C1964.98 1559.95 1964.63 1558.45 1964.63 1556.75C1964.63 1555.05 1964.97 1553.56 1965.65 1552.28C1966.33 1551 1967.28 1550.02 1968.5 1549.34C1969.74 1548.64 1971.16 1548.29 1972.76 1548.29C1974.32 1548.29 1975.7 1548.63 1976.9 1549.31C1978.1 1549.99 1979.02 1550.93 1979.66 1552.13C1980.32 1553.31 1980.65 1554.65 1980.65 1556.15ZM1977.83 1555.58C1977.83 1554.54 1977.6 1553.65 1977.14 1552.91C1976.68 1552.15 1976.05 1551.58 1975.25 1551.2C1974.47 1550.8 1973.6 1550.6 1972.64 1550.6C1971.26 1550.6 1970.08 1551.04 1969.1 1551.92C1968.14 1552.8 1967.59 1554.02 1967.45 1555.58H1977.83Z" fill="#617ABE"/>
|
|
||||||
<path d="M1991.03 1548.29C1992.45 1548.29 1993.69 1548.6 1994.75 1549.22C1995.83 1549.84 1996.63 1550.62 1997.15 1551.56V1548.56H1999.91V1565.36C1999.91 1566.86 1999.59 1568.19 1998.95 1569.35C1998.31 1570.53 1997.39 1571.45 1996.19 1572.11C1995.01 1572.77 1993.63 1573.1 1992.05 1573.1C1989.89 1573.1 1988.09 1572.59 1986.65 1571.57C1985.21 1570.55 1984.36 1569.16 1984.1 1567.4H1986.8C1987.1 1568.4 1987.72 1569.2 1988.66 1569.8C1989.6 1570.42 1990.73 1570.73 1992.05 1570.73C1993.55 1570.73 1994.77 1570.26 1995.71 1569.32C1996.67 1568.38 1997.15 1567.06 1997.15 1565.36V1561.91C1996.61 1562.87 1995.81 1563.67 1994.75 1564.31C1993.69 1564.95 1992.45 1565.27 1991.03 1565.27C1989.57 1565.27 1988.24 1564.91 1987.04 1564.19C1985.86 1563.47 1984.93 1562.46 1984.25 1561.16C1983.57 1559.86 1983.23 1558.38 1983.23 1556.72C1983.23 1555.04 1983.57 1553.57 1984.25 1552.31C1984.93 1551.03 1985.86 1550.04 1987.04 1549.34C1988.24 1548.64 1989.57 1548.29 1991.03 1548.29ZM1997.15 1556.75C1997.15 1555.51 1996.9 1554.43 1996.4 1553.51C1995.9 1552.59 1995.22 1551.89 1994.36 1551.41C1993.52 1550.91 1992.59 1550.66 1991.57 1550.66C1990.55 1550.66 1989.62 1550.9 1988.78 1551.38C1987.94 1551.86 1987.27 1552.56 1986.77 1553.48C1986.27 1554.4 1986.02 1555.48 1986.02 1556.72C1986.02 1557.98 1986.27 1559.08 1986.77 1560.02C1987.27 1560.94 1987.94 1561.65 1988.78 1562.15C1989.62 1562.63 1990.55 1562.87 1991.57 1562.87C1992.59 1562.87 1993.52 1562.63 1994.36 1562.15C1995.22 1561.65 1995.9 1560.94 1996.4 1560.02C1996.9 1559.08 1997.15 1557.99 1997.15 1556.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M2003.51 1556.72C2003.51 1555.04 2003.85 1553.57 2004.53 1552.31C2005.21 1551.03 2006.14 1550.04 2007.32 1549.34C2008.52 1548.64 2009.85 1548.29 2011.31 1548.29C2012.75 1548.29 2014 1548.6 2015.06 1549.22C2016.12 1549.84 2016.91 1550.62 2017.43 1551.56V1548.56H2020.19V1565H2017.43V1561.94C2016.89 1562.9 2016.08 1563.7 2015 1564.34C2013.94 1564.96 2012.7 1565.27 2011.28 1565.27C2009.82 1565.27 2008.5 1564.91 2007.32 1564.19C2006.14 1563.47 2005.21 1562.46 2004.53 1561.16C2003.85 1559.86 2003.51 1558.38 2003.51 1556.72ZM2017.43 1556.75C2017.43 1555.51 2017.18 1554.43 2016.68 1553.51C2016.18 1552.59 2015.5 1551.89 2014.64 1551.41C2013.8 1550.91 2012.87 1550.66 2011.85 1550.66C2010.83 1550.66 2009.9 1550.9 2009.06 1551.38C2008.22 1551.86 2007.55 1552.56 2007.05 1553.48C2006.55 1554.4 2006.3 1555.48 2006.3 1556.72C2006.3 1557.98 2006.55 1559.08 2007.05 1560.02C2007.55 1560.94 2008.22 1561.65 2009.06 1562.15C2009.9 1562.63 2010.83 1562.87 2011.85 1562.87C2012.87 1562.87 2013.8 1562.63 2014.64 1562.15C2015.5 1561.65 2016.18 1560.94 2016.68 1560.02C2017.18 1559.08 2017.43 1557.99 2017.43 1556.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M2028.13 1550.81V1560.5C2028.13 1561.3 2028.3 1561.87 2028.64 1562.21C2028.98 1562.53 2029.57 1562.69 2030.41 1562.69H2032.42V1565H2029.96C2028.44 1565 2027.3 1564.65 2026.54 1563.95C2025.78 1563.25 2025.4 1562.1 2025.4 1560.5V1550.81H2023.27V1548.56H2025.4V1544.42H2028.13V1548.56H2032.42V1550.81H2028.13Z" fill="#617ABE"/>
|
|
||||||
<path d="M2050.73 1556.15C2050.73 1556.67 2050.7 1557.22 2050.64 1557.8H2037.5C2037.6 1559.42 2038.15 1560.69 2039.15 1561.61C2040.17 1562.51 2041.4 1562.96 2042.84 1562.96C2044.02 1562.96 2045 1562.69 2045.78 1562.15C2046.58 1561.59 2047.14 1560.85 2047.46 1559.93H2050.4C2049.96 1561.51 2049.08 1562.8 2047.76 1563.8C2046.44 1564.78 2044.8 1565.27 2042.84 1565.27C2041.28 1565.27 2039.88 1564.92 2038.64 1564.22C2037.42 1563.52 2036.46 1562.53 2035.76 1561.25C2035.06 1559.95 2034.71 1558.45 2034.71 1556.75C2034.71 1555.05 2035.05 1553.56 2035.73 1552.28C2036.41 1551 2037.36 1550.02 2038.58 1549.34C2039.82 1548.64 2041.24 1548.29 2042.84 1548.29C2044.4 1548.29 2045.78 1548.63 2046.98 1549.31C2048.18 1549.99 2049.1 1550.93 2049.74 1552.13C2050.4 1553.31 2050.73 1554.65 2050.73 1556.15ZM2047.91 1555.58C2047.91 1554.54 2047.68 1553.65 2047.22 1552.91C2046.76 1552.15 2046.13 1551.58 2045.33 1551.2C2044.55 1550.8 2043.68 1550.6 2042.72 1550.6C2041.34 1550.6 2040.16 1551.04 2039.18 1551.92C2038.22 1552.8 2037.67 1554.02 2037.53 1555.58H2047.91Z" fill="#617ABE"/>
|
|
||||||
<path d="M2060.15 1565.27C2058.89 1565.27 2057.76 1565.06 2056.76 1564.64C2055.76 1564.2 2054.97 1563.6 2054.39 1562.84C2053.81 1562.06 2053.49 1561.17 2053.43 1560.17H2056.25C2056.33 1560.99 2056.71 1561.66 2057.39 1562.18C2058.09 1562.7 2059 1562.96 2060.12 1562.96C2061.16 1562.96 2061.98 1562.73 2062.58 1562.27C2063.18 1561.81 2063.48 1561.23 2063.48 1560.53C2063.48 1559.81 2063.16 1559.28 2062.52 1558.94C2061.88 1558.58 2060.89 1558.23 2059.55 1557.89C2058.33 1557.57 2057.33 1557.25 2056.55 1556.93C2055.79 1556.59 2055.13 1556.1 2054.57 1555.46C2054.03 1554.8 2053.76 1553.94 2053.76 1552.88C2053.76 1552.04 2054.01 1551.27 2054.51 1550.57C2055.01 1549.87 2055.72 1549.32 2056.64 1548.92C2057.56 1548.5 2058.61 1548.29 2059.79 1548.29C2061.61 1548.29 2063.08 1548.75 2064.2 1549.67C2065.32 1550.59 2065.92 1551.85 2066 1553.45H2063.27C2063.21 1552.59 2062.86 1551.9 2062.22 1551.38C2061.6 1550.86 2060.76 1550.6 2059.7 1550.6C2058.72 1550.6 2057.94 1550.81 2057.36 1551.23C2056.78 1551.65 2056.49 1552.2 2056.49 1552.88C2056.49 1553.42 2056.66 1553.87 2057 1554.23C2057.36 1554.57 2057.8 1554.85 2058.32 1555.07C2058.86 1555.27 2059.6 1555.5 2060.54 1555.76C2061.72 1556.08 2062.68 1556.4 2063.42 1556.72C2064.16 1557.02 2064.79 1557.48 2065.31 1558.1C2065.85 1558.72 2066.13 1559.53 2066.15 1560.53C2066.15 1561.43 2065.9 1562.24 2065.4 1562.96C2064.9 1563.68 2064.19 1564.25 2063.27 1564.67C2062.37 1565.07 2061.33 1565.27 2060.15 1565.27Z" fill="#617ABE"/>
|
|
||||||
<path d="M2093 1556.15C2093 1556.67 2092.97 1557.22 2092.91 1557.8H2079.77C2079.87 1559.42 2080.42 1560.69 2081.42 1561.61C2082.44 1562.51 2083.67 1562.96 2085.11 1562.96C2086.29 1562.96 2087.27 1562.69 2088.05 1562.15C2088.85 1561.59 2089.41 1560.85 2089.73 1559.93H2092.67C2092.23 1561.51 2091.35 1562.8 2090.03 1563.8C2088.71 1564.78 2087.07 1565.27 2085.11 1565.27C2083.55 1565.27 2082.15 1564.92 2080.91 1564.22C2079.69 1563.52 2078.73 1562.53 2078.03 1561.25C2077.33 1559.95 2076.98 1558.45 2076.98 1556.75C2076.98 1555.05 2077.32 1553.56 2078 1552.28C2078.68 1551 2079.63 1550.02 2080.85 1549.34C2082.09 1548.64 2083.51 1548.29 2085.11 1548.29C2086.67 1548.29 2088.05 1548.63 2089.25 1549.31C2090.45 1549.99 2091.37 1550.93 2092.01 1552.13C2092.67 1553.31 2093 1554.65 2093 1556.15ZM2090.18 1555.58C2090.18 1554.54 2089.95 1553.65 2089.49 1552.91C2089.03 1552.15 2088.4 1551.58 2087.6 1551.2C2086.82 1550.8 2085.95 1550.6 2084.99 1550.6C2083.61 1550.6 2082.43 1551.04 2081.45 1551.92C2080.49 1552.8 2079.94 1554.02 2079.8 1555.58H2090.18Z" fill="#617ABE"/>
|
|
||||||
<path d="M2102.73 1562.48L2107.83 1548.56H2110.74L2104.29 1565H2101.11L2094.66 1548.56H2097.6L2102.73 1562.48Z" fill="#617ABE"/>
|
|
||||||
<path d="M2112.4 1556.72C2112.4 1555.04 2112.74 1553.57 2113.42 1552.31C2114.1 1551.03 2115.03 1550.04 2116.21 1549.34C2117.41 1548.64 2118.74 1548.29 2120.2 1548.29C2121.64 1548.29 2122.89 1548.6 2123.95 1549.22C2125.01 1549.84 2125.8 1550.62 2126.32 1551.56V1548.56H2129.08V1565H2126.32V1561.94C2125.78 1562.9 2124.97 1563.7 2123.89 1564.34C2122.83 1564.96 2121.59 1565.27 2120.17 1565.27C2118.71 1565.27 2117.39 1564.91 2116.21 1564.19C2115.03 1563.47 2114.1 1562.46 2113.42 1561.16C2112.74 1559.86 2112.4 1558.38 2112.4 1556.72ZM2126.32 1556.75C2126.32 1555.51 2126.07 1554.43 2125.57 1553.51C2125.07 1552.59 2124.39 1551.89 2123.53 1551.41C2122.69 1550.91 2121.76 1550.66 2120.74 1550.66C2119.72 1550.66 2118.79 1550.9 2117.95 1551.38C2117.11 1551.86 2116.44 1552.56 2115.94 1553.48C2115.44 1554.4 2115.19 1555.48 2115.19 1556.72C2115.19 1557.98 2115.44 1559.08 2115.94 1560.02C2116.44 1560.94 2117.11 1561.65 2117.95 1562.15C2118.79 1562.63 2119.72 1562.87 2120.74 1562.87C2121.76 1562.87 2122.69 1562.63 2123.53 1562.15C2124.39 1561.65 2125.07 1560.94 2125.57 1560.02C2126.07 1559.08 2126.32 1557.99 2126.32 1556.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M2136.43 1542.8V1565H2133.7V1542.8H2136.43Z" fill="#617ABE"/>
|
|
||||||
<path d="M2155.66 1548.56V1565H2152.93V1562.57C2152.41 1563.41 2151.68 1564.07 2150.74 1564.55C2149.82 1565.01 2148.8 1565.24 2147.68 1565.24C2146.4 1565.24 2145.25 1564.98 2144.23 1564.46C2143.21 1563.92 2142.4 1563.12 2141.8 1562.06C2141.22 1561 2140.93 1559.71 2140.93 1558.19V1548.56H2143.63V1557.83C2143.63 1559.45 2144.04 1560.7 2144.86 1561.58C2145.68 1562.44 2146.8 1562.87 2148.22 1562.87C2149.68 1562.87 2150.83 1562.42 2151.67 1561.52C2152.51 1560.62 2152.93 1559.31 2152.93 1557.59V1548.56H2155.66Z" fill="#617ABE"/>
|
|
||||||
<path d="M2159.25 1556.72C2159.25 1555.04 2159.59 1553.57 2160.27 1552.31C2160.95 1551.03 2161.88 1550.04 2163.06 1549.34C2164.26 1548.64 2165.59 1548.29 2167.05 1548.29C2168.49 1548.29 2169.74 1548.6 2170.8 1549.22C2171.86 1549.84 2172.65 1550.62 2173.17 1551.56V1548.56H2175.93V1565H2173.17V1561.94C2172.63 1562.9 2171.82 1563.7 2170.74 1564.34C2169.68 1564.96 2168.44 1565.27 2167.02 1565.27C2165.56 1565.27 2164.24 1564.91 2163.06 1564.19C2161.88 1563.47 2160.95 1562.46 2160.27 1561.16C2159.59 1559.86 2159.25 1558.38 2159.25 1556.72ZM2173.17 1556.75C2173.17 1555.51 2172.92 1554.43 2172.42 1553.51C2171.92 1552.59 2171.24 1551.89 2170.38 1551.41C2169.54 1550.91 2168.61 1550.66 2167.59 1550.66C2166.57 1550.66 2165.64 1550.9 2164.8 1551.38C2163.96 1551.86 2163.29 1552.56 2162.79 1553.48C2162.29 1554.4 2162.04 1555.48 2162.04 1556.72C2162.04 1557.98 2162.29 1559.08 2162.79 1560.02C2163.29 1560.94 2163.96 1561.65 2164.8 1562.15C2165.64 1562.63 2166.57 1562.87 2167.59 1562.87C2168.61 1562.87 2169.54 1562.63 2170.38 1562.15C2171.24 1561.65 2171.92 1560.94 2172.42 1560.02C2172.92 1559.08 2173.17 1557.99 2173.17 1556.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M2183.87 1550.81V1560.5C2183.87 1561.3 2184.04 1561.87 2184.38 1562.21C2184.72 1562.53 2185.31 1562.69 2186.15 1562.69H2188.16V1565H2185.7C2184.18 1565 2183.04 1564.65 2182.28 1563.95C2181.52 1563.25 2181.14 1562.1 2181.14 1560.5V1550.81H2179.01V1548.56H2181.14V1544.42H2183.87V1548.56H2188.16V1550.81H2183.87Z" fill="#617ABE"/>
|
|
||||||
<path d="M2192.88 1545.89C2192.36 1545.89 2191.92 1545.71 2191.56 1545.35C2191.2 1544.99 2191.02 1544.55 2191.02 1544.03C2191.02 1543.51 2191.2 1543.07 2191.56 1542.71C2191.92 1542.35 2192.36 1542.17 2192.88 1542.17C2193.38 1542.17 2193.8 1542.35 2194.14 1542.71C2194.5 1543.07 2194.68 1543.51 2194.68 1544.03C2194.68 1544.55 2194.5 1544.99 2194.14 1545.35C2193.8 1545.71 2193.38 1545.89 2192.88 1545.89ZM2194.2 1548.56V1565H2191.47V1548.56H2194.2Z" fill="#617ABE"/>
|
|
||||||
<path d="M2206.02 1565.27C2204.48 1565.27 2203.08 1564.92 2201.82 1564.22C2200.58 1563.52 2199.6 1562.53 2198.88 1561.25C2198.18 1559.95 2197.83 1558.45 2197.83 1556.75C2197.83 1555.07 2198.19 1553.59 2198.91 1552.31C2199.65 1551.01 2200.65 1550.02 2201.91 1549.34C2203.17 1548.64 2204.58 1548.29 2206.14 1548.29C2207.7 1548.29 2209.11 1548.64 2210.37 1549.34C2211.63 1550.02 2212.62 1551 2213.34 1552.28C2214.08 1553.56 2214.45 1555.05 2214.45 1556.75C2214.45 1558.45 2214.07 1559.95 2213.31 1561.25C2212.57 1562.53 2211.56 1563.52 2210.28 1564.22C2209 1564.92 2207.58 1565.27 2206.02 1565.27ZM2206.02 1562.87C2207 1562.87 2207.92 1562.64 2208.78 1562.18C2209.64 1561.72 2210.33 1561.03 2210.85 1560.11C2211.39 1559.19 2211.66 1558.07 2211.66 1556.75C2211.66 1555.43 2211.4 1554.31 2210.88 1553.39C2210.36 1552.47 2209.68 1551.79 2208.84 1551.35C2208 1550.89 2207.09 1550.66 2206.11 1550.66C2205.11 1550.66 2204.19 1550.89 2203.35 1551.35C2202.53 1551.79 2201.87 1552.47 2201.37 1553.39C2200.87 1554.31 2200.62 1555.43 2200.62 1556.75C2200.62 1558.09 2200.86 1559.22 2201.34 1560.14C2201.84 1561.06 2202.5 1561.75 2203.32 1562.21C2204.14 1562.65 2205.04 1562.87 2206.02 1562.87Z" fill="#617ABE"/>
|
|
||||||
<path d="M2226.05 1548.26C2228.05 1548.26 2229.67 1548.87 2230.91 1550.09C2232.15 1551.29 2232.77 1553.03 2232.77 1555.31V1565H2230.07V1555.7C2230.07 1554.06 2229.66 1552.81 2228.84 1551.95C2228.02 1551.07 2226.9 1550.63 2225.48 1550.63C2224.04 1550.63 2222.89 1551.08 2222.03 1551.98C2221.19 1552.88 2220.77 1554.19 2220.77 1555.91V1565H2218.04V1548.56H2220.77V1550.9C2221.31 1550.06 2222.04 1549.41 2222.96 1548.95C2223.9 1548.49 2224.93 1548.26 2226.05 1548.26Z" fill="#617ABE"/>
|
|
||||||
<path d="M1907.46 1595.81V1605.5C1907.46 1606.3 1907.63 1606.87 1907.97 1607.21C1908.31 1607.53 1908.9 1607.69 1909.74 1607.69H1911.75V1610H1909.29C1907.77 1610 1906.63 1609.65 1905.87 1608.95C1905.11 1608.25 1904.73 1607.1 1904.73 1605.5V1595.81H1902.6V1593.56H1904.73V1589.42H1907.46V1593.56H1911.75V1595.81H1907.46Z" fill="#617ABE"/>
|
|
||||||
<path d="M1922.22 1610.27C1920.68 1610.27 1919.28 1609.92 1918.02 1609.22C1916.78 1608.52 1915.8 1607.53 1915.08 1606.25C1914.38 1604.95 1914.03 1603.45 1914.03 1601.75C1914.03 1600.07 1914.39 1598.59 1915.11 1597.31C1915.85 1596.01 1916.85 1595.02 1918.11 1594.34C1919.37 1593.64 1920.78 1593.29 1922.34 1593.29C1923.9 1593.29 1925.31 1593.64 1926.57 1594.34C1927.83 1595.02 1928.82 1596 1929.54 1597.28C1930.28 1598.56 1930.65 1600.05 1930.65 1601.75C1930.65 1603.45 1930.27 1604.95 1929.51 1606.25C1928.77 1607.53 1927.76 1608.52 1926.48 1609.22C1925.2 1609.92 1923.78 1610.27 1922.22 1610.27ZM1922.22 1607.87C1923.2 1607.87 1924.12 1607.64 1924.98 1607.18C1925.84 1606.72 1926.53 1606.03 1927.05 1605.11C1927.59 1604.19 1927.86 1603.07 1927.86 1601.75C1927.86 1600.43 1927.6 1599.31 1927.08 1598.39C1926.56 1597.47 1925.88 1596.79 1925.04 1596.35C1924.2 1595.89 1923.29 1595.66 1922.31 1595.66C1921.31 1595.66 1920.39 1595.89 1919.55 1596.35C1918.73 1596.79 1918.07 1597.47 1917.57 1598.39C1917.07 1599.31 1916.82 1600.43 1916.82 1601.75C1916.82 1603.09 1917.06 1604.22 1917.54 1605.14C1918.04 1606.06 1918.7 1606.75 1919.52 1607.21C1920.34 1607.65 1921.24 1607.87 1922.22 1607.87Z" fill="#617ABE"/>
|
|
||||||
<path d="M1941.22 1601.72C1941.22 1600.04 1941.56 1598.57 1942.24 1597.31C1942.92 1596.03 1943.85 1595.04 1945.03 1594.34C1946.23 1593.64 1947.56 1593.29 1949.02 1593.29C1950.46 1593.29 1951.71 1593.6 1952.77 1594.22C1953.83 1594.84 1954.62 1595.62 1955.14 1596.56V1593.56H1957.9V1610H1955.14V1606.94C1954.6 1607.9 1953.79 1608.7 1952.71 1609.34C1951.65 1609.96 1950.41 1610.27 1948.99 1610.27C1947.53 1610.27 1946.21 1609.91 1945.03 1609.19C1943.85 1608.47 1942.92 1607.46 1942.24 1606.16C1941.56 1604.86 1941.22 1603.38 1941.22 1601.72ZM1955.14 1601.75C1955.14 1600.51 1954.89 1599.43 1954.39 1598.51C1953.89 1597.59 1953.21 1596.89 1952.35 1596.41C1951.51 1595.91 1950.58 1595.66 1949.56 1595.66C1948.54 1595.66 1947.61 1595.9 1946.77 1596.38C1945.93 1596.86 1945.26 1597.56 1944.76 1598.48C1944.26 1599.4 1944.01 1600.48 1944.01 1601.72C1944.01 1602.98 1944.26 1604.08 1944.76 1605.02C1945.26 1605.94 1945.93 1606.65 1946.77 1607.15C1947.61 1607.63 1948.54 1607.87 1949.56 1607.87C1950.58 1607.87 1951.51 1607.63 1952.35 1607.15C1953.21 1606.65 1953.89 1605.94 1954.39 1605.02C1954.89 1604.08 1955.14 1602.99 1955.14 1601.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M1969.49 1601.72C1969.49 1600.04 1969.83 1598.57 1970.51 1597.31C1971.19 1596.03 1972.12 1595.04 1973.3 1594.34C1974.5 1593.64 1975.84 1593.29 1977.32 1593.29C1978.6 1593.29 1979.79 1593.59 1980.89 1594.19C1981.99 1594.77 1982.83 1595.54 1983.41 1596.5V1587.8H1986.17V1610H1983.41V1606.91C1982.87 1607.89 1982.07 1608.7 1981.01 1609.34C1979.95 1609.96 1978.71 1610.27 1977.29 1610.27C1975.83 1610.27 1974.5 1609.91 1973.3 1609.19C1972.12 1608.47 1971.19 1607.46 1970.51 1606.16C1969.83 1604.86 1969.49 1603.38 1969.49 1601.72ZM1983.41 1601.75C1983.41 1600.51 1983.16 1599.43 1982.66 1598.51C1982.16 1597.59 1981.48 1596.89 1980.62 1596.41C1979.78 1595.91 1978.85 1595.66 1977.83 1595.66C1976.81 1595.66 1975.88 1595.9 1975.04 1596.38C1974.2 1596.86 1973.53 1597.56 1973.03 1598.48C1972.53 1599.4 1972.28 1600.48 1972.28 1601.72C1972.28 1602.98 1972.53 1604.08 1973.03 1605.02C1973.53 1605.94 1974.2 1606.65 1975.04 1607.15C1975.88 1607.63 1976.81 1607.87 1977.83 1607.87C1978.85 1607.87 1979.78 1607.63 1980.62 1607.15C1981.48 1606.65 1982.16 1605.94 1982.66 1605.02C1983.16 1604.08 1983.41 1602.99 1983.41 1601.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M2005.79 1601.15C2005.79 1601.67 2005.76 1602.22 2005.7 1602.8H1992.56C1992.66 1604.42 1993.21 1605.69 1994.21 1606.61C1995.23 1607.51 1996.46 1607.96 1997.9 1607.96C1999.08 1607.96 2000.06 1607.69 2000.84 1607.15C2001.64 1606.59 2002.2 1605.85 2002.52 1604.93H2005.46C2005.02 1606.51 2004.14 1607.8 2002.82 1608.8C2001.5 1609.78 1999.86 1610.27 1997.9 1610.27C1996.34 1610.27 1994.94 1609.92 1993.7 1609.22C1992.48 1608.52 1991.52 1607.53 1990.82 1606.25C1990.12 1604.95 1989.77 1603.45 1989.77 1601.75C1989.77 1600.05 1990.11 1598.56 1990.79 1597.28C1991.47 1596 1992.42 1595.02 1993.64 1594.34C1994.88 1593.64 1996.3 1593.29 1997.9 1593.29C1999.46 1593.29 2000.84 1593.63 2002.04 1594.31C2003.24 1594.99 2004.16 1595.93 2004.8 1597.13C2005.46 1598.31 2005.79 1599.65 2005.79 1601.15ZM2002.97 1600.58C2002.97 1599.54 2002.74 1598.65 2002.28 1597.91C2001.82 1597.15 2001.19 1596.58 2000.39 1596.2C1999.61 1595.8 1998.74 1595.6 1997.78 1595.6C1996.4 1595.6 1995.22 1596.04 1994.24 1596.92C1993.28 1597.8 1992.73 1599.02 1992.59 1600.58H2002.97Z" fill="#617ABE"/>
|
|
||||||
<path d="M2008.37 1601.72C2008.37 1600.04 2008.71 1598.57 2009.39 1597.31C2010.07 1596.03 2011 1595.04 2012.18 1594.34C2013.38 1593.64 2014.72 1593.29 2016.2 1593.29C2017.48 1593.29 2018.67 1593.59 2019.77 1594.19C2020.87 1594.77 2021.71 1595.54 2022.29 1596.5V1587.8H2025.05V1610H2022.29V1606.91C2021.75 1607.89 2020.95 1608.7 2019.89 1609.34C2018.83 1609.96 2017.59 1610.27 2016.17 1610.27C2014.71 1610.27 2013.38 1609.91 2012.18 1609.19C2011 1608.47 2010.07 1607.46 2009.39 1606.16C2008.71 1604.86 2008.37 1603.38 2008.37 1601.72ZM2022.29 1601.75C2022.29 1600.51 2022.04 1599.43 2021.54 1598.51C2021.04 1597.59 2020.36 1596.89 2019.5 1596.41C2018.66 1595.91 2017.73 1595.66 2016.71 1595.66C2015.69 1595.66 2014.76 1595.9 2013.92 1596.38C2013.08 1596.86 2012.41 1597.56 2011.91 1598.48C2011.41 1599.4 2011.16 1600.48 2011.16 1601.72C2011.16 1602.98 2011.41 1604.08 2011.91 1605.02C2012.41 1605.94 2013.08 1606.65 2013.92 1607.15C2014.76 1607.63 2015.69 1607.87 2016.71 1607.87C2017.73 1607.87 2018.66 1607.63 2019.5 1607.15C2020.36 1606.65 2021.04 1605.94 2021.54 1605.02C2022.04 1604.08 2022.29 1602.99 2022.29 1601.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M2031.07 1590.89C2030.55 1590.89 2030.11 1590.71 2029.75 1590.35C2029.39 1589.99 2029.21 1589.55 2029.21 1589.03C2029.21 1588.51 2029.39 1588.07 2029.75 1587.71C2030.11 1587.35 2030.55 1587.17 2031.07 1587.17C2031.57 1587.17 2031.99 1587.35 2032.33 1587.71C2032.69 1588.07 2032.87 1588.51 2032.87 1589.03C2032.87 1589.55 2032.69 1589.99 2032.33 1590.35C2031.99 1590.71 2031.57 1590.89 2031.07 1590.89ZM2032.39 1593.56V1610H2029.66V1593.56H2032.39Z" fill="#617ABE"/>
|
|
||||||
<path d="M2036.03 1601.75C2036.03 1600.05 2036.37 1598.57 2037.05 1597.31C2037.73 1596.03 2038.67 1595.04 2039.87 1594.34C2041.09 1593.64 2042.48 1593.29 2044.04 1593.29C2046.06 1593.29 2047.72 1593.78 2049.02 1594.76C2050.34 1595.74 2051.21 1597.1 2051.63 1598.84H2048.69C2048.41 1597.84 2047.86 1597.05 2047.04 1596.47C2046.24 1595.89 2045.24 1595.6 2044.04 1595.6C2042.48 1595.6 2041.22 1596.14 2040.26 1597.22C2039.3 1598.28 2038.82 1599.79 2038.82 1601.75C2038.82 1603.73 2039.3 1605.26 2040.26 1606.34C2041.22 1607.42 2042.48 1607.96 2044.04 1607.96C2045.24 1607.96 2046.24 1607.68 2047.04 1607.12C2047.84 1606.56 2048.39 1605.76 2048.69 1604.72H2051.63C2051.19 1606.4 2050.31 1607.75 2048.99 1608.77C2047.67 1609.77 2046.02 1610.27 2044.04 1610.27C2042.48 1610.27 2041.09 1609.92 2039.87 1609.22C2038.67 1608.52 2037.73 1607.53 2037.05 1606.25C2036.37 1604.97 2036.03 1603.47 2036.03 1601.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M2054.25 1601.72C2054.25 1600.04 2054.59 1598.57 2055.27 1597.31C2055.95 1596.03 2056.88 1595.04 2058.06 1594.34C2059.26 1593.64 2060.59 1593.29 2062.05 1593.29C2063.49 1593.29 2064.74 1593.6 2065.8 1594.22C2066.86 1594.84 2067.65 1595.62 2068.17 1596.56V1593.56H2070.93V1610H2068.17V1606.94C2067.63 1607.9 2066.82 1608.7 2065.74 1609.34C2064.68 1609.96 2063.44 1610.27 2062.02 1610.27C2060.56 1610.27 2059.24 1609.91 2058.06 1609.19C2056.88 1608.47 2055.95 1607.46 2055.27 1606.16C2054.59 1604.86 2054.25 1603.38 2054.25 1601.72ZM2068.17 1601.75C2068.17 1600.51 2067.92 1599.43 2067.42 1598.51C2066.92 1597.59 2066.24 1596.89 2065.38 1596.41C2064.54 1595.91 2063.61 1595.66 2062.59 1595.66C2061.57 1595.66 2060.64 1595.9 2059.8 1596.38C2058.96 1596.86 2058.29 1597.56 2057.79 1598.48C2057.29 1599.4 2057.04 1600.48 2057.04 1601.72C2057.04 1602.98 2057.29 1604.08 2057.79 1605.02C2058.29 1605.94 2058.96 1606.65 2059.8 1607.15C2060.64 1607.63 2061.57 1607.87 2062.59 1607.87C2063.61 1607.87 2064.54 1607.63 2065.38 1607.15C2066.24 1606.65 2066.92 1605.94 2067.42 1605.02C2067.92 1604.08 2068.17 1602.99 2068.17 1601.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M2078.87 1595.81V1605.5C2078.87 1606.3 2079.04 1606.87 2079.38 1607.21C2079.72 1607.53 2080.31 1607.69 2081.15 1607.69H2083.16V1610H2080.7C2079.18 1610 2078.04 1609.65 2077.28 1608.95C2076.52 1608.25 2076.14 1607.1 2076.14 1605.5V1595.81H2074.01V1593.56H2076.14V1589.42H2078.87V1593.56H2083.16V1595.81H2078.87Z" fill="#617ABE"/>
|
|
||||||
<path d="M2101.47 1601.15C2101.47 1601.67 2101.44 1602.22 2101.38 1602.8H2088.24C2088.34 1604.42 2088.89 1605.69 2089.89 1606.61C2090.91 1607.51 2092.14 1607.96 2093.58 1607.96C2094.76 1607.96 2095.74 1607.69 2096.52 1607.15C2097.32 1606.59 2097.88 1605.85 2098.2 1604.93H2101.14C2100.7 1606.51 2099.82 1607.8 2098.5 1608.8C2097.18 1609.78 2095.54 1610.27 2093.58 1610.27C2092.02 1610.27 2090.62 1609.92 2089.38 1609.22C2088.16 1608.52 2087.2 1607.53 2086.5 1606.25C2085.8 1604.95 2085.45 1603.45 2085.45 1601.75C2085.45 1600.05 2085.79 1598.56 2086.47 1597.28C2087.15 1596 2088.1 1595.02 2089.32 1594.34C2090.56 1593.64 2091.98 1593.29 2093.58 1593.29C2095.14 1593.29 2096.52 1593.63 2097.72 1594.31C2098.92 1594.99 2099.84 1595.93 2100.48 1597.13C2101.14 1598.31 2101.47 1599.65 2101.47 1601.15ZM2098.65 1600.58C2098.65 1599.54 2098.42 1598.65 2097.96 1597.91C2097.5 1597.15 2096.87 1596.58 2096.07 1596.2C2095.29 1595.8 2094.42 1595.6 2093.46 1595.6C2092.08 1595.6 2090.9 1596.04 2089.92 1596.92C2088.96 1597.8 2088.41 1599.02 2088.27 1600.58H2098.65Z" fill="#617ABE"/>
|
|
||||||
<path d="M2104.05 1601.72C2104.05 1600.04 2104.39 1598.57 2105.07 1597.31C2105.75 1596.03 2106.68 1595.04 2107.86 1594.34C2109.06 1593.64 2110.4 1593.29 2111.88 1593.29C2113.16 1593.29 2114.35 1593.59 2115.45 1594.19C2116.55 1594.77 2117.39 1595.54 2117.97 1596.5V1587.8H2120.73V1610H2117.97V1606.91C2117.43 1607.89 2116.63 1608.7 2115.57 1609.34C2114.51 1609.96 2113.27 1610.27 2111.85 1610.27C2110.39 1610.27 2109.06 1609.91 2107.86 1609.19C2106.68 1608.47 2105.75 1607.46 2105.07 1606.16C2104.39 1604.86 2104.05 1603.38 2104.05 1601.72ZM2117.97 1601.75C2117.97 1600.51 2117.72 1599.43 2117.22 1598.51C2116.72 1597.59 2116.04 1596.89 2115.18 1596.41C2114.34 1595.91 2113.41 1595.66 2112.39 1595.66C2111.37 1595.66 2110.44 1595.9 2109.6 1596.38C2108.76 1596.86 2108.09 1597.56 2107.59 1598.48C2107.09 1599.4 2106.84 1600.48 2106.84 1601.72C2106.84 1602.98 2107.09 1604.08 2107.59 1605.02C2108.09 1605.94 2108.76 1606.65 2109.6 1607.15C2110.44 1607.63 2111.37 1607.87 2112.39 1607.87C2113.41 1607.87 2114.34 1607.63 2115.18 1607.15C2116.04 1606.65 2116.72 1605.94 2117.22 1605.02C2117.72 1604.08 2117.97 1602.99 2117.97 1601.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M2141.35 1593.26C2143.35 1593.26 2144.97 1593.87 2146.21 1595.09C2147.45 1596.29 2148.07 1598.03 2148.07 1600.31V1610H2145.37V1600.7C2145.37 1599.06 2144.96 1597.81 2144.14 1596.95C2143.32 1596.07 2142.2 1595.63 2140.78 1595.63C2139.34 1595.63 2138.19 1596.08 2137.33 1596.98C2136.49 1597.88 2136.07 1599.19 2136.07 1600.91V1610H2133.34V1593.56H2136.07V1595.9C2136.61 1595.06 2137.34 1594.41 2138.26 1593.95C2139.2 1593.49 2140.23 1593.26 2141.35 1593.26Z" fill="#617ABE"/>
|
|
||||||
<path d="M2167.53 1601.15C2167.53 1601.67 2167.5 1602.22 2167.44 1602.8H2154.3C2154.4 1604.42 2154.95 1605.69 2155.95 1606.61C2156.97 1607.51 2158.2 1607.96 2159.64 1607.96C2160.82 1607.96 2161.8 1607.69 2162.58 1607.15C2163.38 1606.59 2163.94 1605.85 2164.26 1604.93H2167.2C2166.76 1606.51 2165.88 1607.8 2164.56 1608.8C2163.24 1609.78 2161.6 1610.27 2159.64 1610.27C2158.08 1610.27 2156.68 1609.92 2155.44 1609.22C2154.22 1608.52 2153.26 1607.53 2152.56 1606.25C2151.86 1604.95 2151.51 1603.45 2151.51 1601.75C2151.51 1600.05 2151.85 1598.56 2152.53 1597.28C2153.21 1596 2154.16 1595.02 2155.38 1594.34C2156.62 1593.64 2158.04 1593.29 2159.64 1593.29C2161.2 1593.29 2162.58 1593.63 2163.78 1594.31C2164.98 1594.99 2165.9 1595.93 2166.54 1597.13C2167.2 1598.31 2167.53 1599.65 2167.53 1601.15ZM2164.71 1600.58C2164.71 1599.54 2164.48 1598.65 2164.02 1597.91C2163.56 1597.15 2162.93 1596.58 2162.13 1596.2C2161.35 1595.8 2160.48 1595.6 2159.52 1595.6C2158.14 1595.6 2156.96 1596.04 2155.98 1596.92C2155.02 1597.8 2154.47 1599.02 2154.33 1600.58H2164.71Z" fill="#617ABE"/>
|
|
||||||
<path d="M2174.47 1595.81V1605.5C2174.47 1606.3 2174.64 1606.87 2174.98 1607.21C2175.32 1607.53 2175.91 1607.69 2176.75 1607.69H2178.76V1610H2176.3C2174.78 1610 2173.64 1609.65 2172.88 1608.95C2172.12 1608.25 2171.74 1607.1 2171.74 1605.5V1595.81H2169.61V1593.56H2171.74V1589.42H2174.47V1593.56H2178.76V1595.81H2174.47Z" fill="#617ABE"/>
|
|
||||||
<path d="M2203.97 1593.56L2198.84 1610H2196.02L2192.06 1596.95L2188.1 1610H2185.28L2180.12 1593.56H2182.91L2186.69 1607.36L2190.77 1593.56H2193.56L2197.55 1607.39L2201.27 1593.56H2203.97Z" fill="#617ABE"/>
|
|
||||||
<path d="M2213.84 1610.27C2212.3 1610.27 2210.9 1609.92 2209.64 1609.22C2208.4 1608.52 2207.42 1607.53 2206.7 1606.25C2206 1604.95 2205.65 1603.45 2205.65 1601.75C2205.65 1600.07 2206.01 1598.59 2206.73 1597.31C2207.47 1596.01 2208.47 1595.02 2209.73 1594.34C2210.99 1593.64 2212.4 1593.29 2213.96 1593.29C2215.52 1593.29 2216.93 1593.64 2218.19 1594.34C2219.45 1595.02 2220.44 1596 2221.16 1597.28C2221.9 1598.56 2222.27 1600.05 2222.27 1601.75C2222.27 1603.45 2221.89 1604.95 2221.13 1606.25C2220.39 1607.53 2219.38 1608.52 2218.1 1609.22C2216.82 1609.92 2215.4 1610.27 2213.84 1610.27ZM2213.84 1607.87C2214.82 1607.87 2215.74 1607.64 2216.6 1607.18C2217.46 1606.72 2218.15 1606.03 2218.67 1605.11C2219.21 1604.19 2219.48 1603.07 2219.48 1601.75C2219.48 1600.43 2219.22 1599.31 2218.7 1598.39C2218.18 1597.47 2217.5 1596.79 2216.66 1596.35C2215.82 1595.89 2214.91 1595.66 2213.93 1595.66C2212.93 1595.66 2212.01 1595.89 2211.17 1596.35C2210.35 1596.79 2209.69 1597.47 2209.19 1598.39C2208.69 1599.31 2208.44 1600.43 2208.44 1601.75C2208.44 1603.09 2208.68 1604.22 2209.16 1605.14C2209.66 1606.06 2210.32 1606.75 2211.14 1607.21C2211.96 1607.65 2212.86 1607.87 2213.84 1607.87Z" fill="#617ABE"/>
|
|
||||||
<path d="M2228.59 1596.23C2229.07 1595.29 2229.75 1594.56 2230.63 1594.04C2231.53 1593.52 2232.62 1593.26 2233.9 1593.26V1596.08H2233.18C2230.12 1596.08 2228.59 1597.74 2228.59 1601.06V1610H2225.86V1593.56H2228.59V1596.23Z" fill="#617ABE"/>
|
|
||||||
<path d="M2246.24 1610L2239.79 1602.74V1610H2237.06V1587.8H2239.79V1600.85L2246.12 1593.56H2249.93L2242.19 1601.75L2249.96 1610H2246.24Z" fill="#617ABE"/>
|
|
||||||
<path d="M2020.49 1655.27C2018.95 1655.27 2017.55 1654.92 2016.29 1654.22C2015.05 1653.52 2014.07 1652.53 2013.35 1651.25C2012.65 1649.95 2012.3 1648.45 2012.3 1646.75C2012.3 1645.07 2012.66 1643.59 2013.38 1642.31C2014.12 1641.01 2015.12 1640.02 2016.38 1639.34C2017.64 1638.64 2019.05 1638.29 2020.61 1638.29C2022.17 1638.29 2023.58 1638.64 2024.84 1639.34C2026.1 1640.02 2027.09 1641 2027.81 1642.28C2028.55 1643.56 2028.92 1645.05 2028.92 1646.75C2028.92 1648.45 2028.54 1649.95 2027.78 1651.25C2027.04 1652.53 2026.03 1653.52 2024.75 1654.22C2023.47 1654.92 2022.05 1655.27 2020.49 1655.27ZM2020.49 1652.87C2021.47 1652.87 2022.39 1652.64 2023.25 1652.18C2024.11 1651.72 2024.8 1651.03 2025.32 1650.11C2025.86 1649.19 2026.13 1648.07 2026.13 1646.75C2026.13 1645.43 2025.87 1644.31 2025.35 1643.39C2024.83 1642.47 2024.15 1641.79 2023.31 1641.35C2022.47 1640.89 2021.56 1640.66 2020.58 1640.66C2019.58 1640.66 2018.66 1640.89 2017.82 1641.35C2017 1641.79 2016.34 1642.47 2015.84 1643.39C2015.34 1644.31 2015.09 1645.43 2015.09 1646.75C2015.09 1648.09 2015.33 1649.22 2015.81 1650.14C2016.31 1651.06 2016.97 1651.75 2017.79 1652.21C2018.61 1652.65 2019.51 1652.87 2020.49 1652.87Z" fill="#617ABE"/>
|
|
||||||
<path d="M2039.19 1640.81H2035.74V1655H2033.01V1640.81H2030.88V1638.56H2033.01V1637.39C2033.01 1635.55 2033.48 1634.21 2034.42 1633.37C2035.38 1632.51 2036.91 1632.08 2039.01 1632.08V1634.36C2037.81 1634.36 2036.96 1634.6 2036.46 1635.08C2035.98 1635.54 2035.74 1636.31 2035.74 1637.39V1638.56H2039.19V1640.81Z" fill="#617ABE"/>
|
|
||||||
<path d="M2058.39 1638.26C2060.39 1638.26 2062.01 1638.87 2063.25 1640.09C2064.49 1641.29 2065.11 1643.03 2065.11 1645.31V1655H2062.41V1645.7C2062.41 1644.06 2062 1642.81 2061.18 1641.95C2060.36 1641.07 2059.24 1640.63 2057.82 1640.63C2056.38 1640.63 2055.23 1641.08 2054.37 1641.98C2053.53 1642.88 2053.11 1644.19 2053.11 1645.91V1655H2050.38V1638.56H2053.11V1640.9C2053.65 1640.06 2054.38 1639.41 2055.3 1638.95C2056.24 1638.49 2057.27 1638.26 2058.39 1638.26Z" fill="#617ABE"/>
|
|
||||||
<path d="M2076.74 1655.27C2075.2 1655.27 2073.8 1654.92 2072.54 1654.22C2071.3 1653.52 2070.32 1652.53 2069.6 1651.25C2068.9 1649.95 2068.55 1648.45 2068.55 1646.75C2068.55 1645.07 2068.91 1643.59 2069.63 1642.31C2070.37 1641.01 2071.37 1640.02 2072.63 1639.34C2073.89 1638.64 2075.3 1638.29 2076.86 1638.29C2078.42 1638.29 2079.83 1638.64 2081.09 1639.34C2082.35 1640.02 2083.34 1641 2084.06 1642.28C2084.8 1643.56 2085.17 1645.05 2085.17 1646.75C2085.17 1648.45 2084.79 1649.95 2084.03 1651.25C2083.29 1652.53 2082.28 1653.52 2081 1654.22C2079.72 1654.92 2078.3 1655.27 2076.74 1655.27ZM2076.74 1652.87C2077.72 1652.87 2078.64 1652.64 2079.5 1652.18C2080.36 1651.72 2081.05 1651.03 2081.57 1650.11C2082.11 1649.19 2082.38 1648.07 2082.38 1646.75C2082.38 1645.43 2082.12 1644.31 2081.6 1643.39C2081.08 1642.47 2080.4 1641.79 2079.56 1641.35C2078.72 1640.89 2077.81 1640.66 2076.83 1640.66C2075.83 1640.66 2074.91 1640.89 2074.07 1641.35C2073.25 1641.79 2072.59 1642.47 2072.09 1643.39C2071.59 1644.31 2071.34 1645.43 2071.34 1646.75C2071.34 1648.09 2071.58 1649.22 2072.06 1650.14C2072.56 1651.06 2073.22 1651.75 2074.04 1652.21C2074.86 1652.65 2075.76 1652.87 2076.74 1652.87Z" fill="#617ABE"/>
|
|
||||||
<path d="M2087.73 1646.72C2087.73 1645.04 2088.07 1643.57 2088.75 1642.31C2089.43 1641.03 2090.36 1640.04 2091.54 1639.34C2092.74 1638.64 2094.08 1638.29 2095.56 1638.29C2096.84 1638.29 2098.03 1638.59 2099.13 1639.19C2100.23 1639.77 2101.07 1640.54 2101.65 1641.5V1632.8H2104.41V1655H2101.65V1651.91C2101.11 1652.89 2100.31 1653.7 2099.25 1654.34C2098.19 1654.96 2096.95 1655.27 2095.53 1655.27C2094.07 1655.27 2092.74 1654.91 2091.54 1654.19C2090.36 1653.47 2089.43 1652.46 2088.75 1651.16C2088.07 1649.86 2087.73 1648.38 2087.73 1646.72ZM2101.65 1646.75C2101.65 1645.51 2101.4 1644.43 2100.9 1643.51C2100.4 1642.59 2099.72 1641.89 2098.86 1641.41C2098.02 1640.91 2097.09 1640.66 2096.07 1640.66C2095.05 1640.66 2094.12 1640.9 2093.28 1641.38C2092.44 1641.86 2091.77 1642.56 2091.27 1643.48C2090.77 1644.4 2090.52 1645.48 2090.52 1646.72C2090.52 1647.98 2090.77 1649.08 2091.27 1650.02C2091.77 1650.94 2092.44 1651.65 2093.28 1652.15C2094.12 1652.63 2095.05 1652.87 2096.07 1652.87C2097.09 1652.87 2098.02 1652.63 2098.86 1652.15C2099.72 1651.65 2100.4 1650.94 2100.9 1650.02C2101.4 1649.08 2101.65 1647.99 2101.65 1646.75Z" fill="#617ABE"/>
|
|
||||||
<path d="M2124.03 1646.15C2124.03 1646.67 2124 1647.22 2123.94 1647.8H2110.8C2110.9 1649.42 2111.45 1650.69 2112.45 1651.61C2113.47 1652.51 2114.7 1652.96 2116.14 1652.96C2117.32 1652.96 2118.3 1652.69 2119.08 1652.15C2119.88 1651.59 2120.44 1650.85 2120.76 1649.93H2123.7C2123.26 1651.51 2122.38 1652.8 2121.06 1653.8C2119.74 1654.78 2118.1 1655.27 2116.14 1655.27C2114.58 1655.27 2113.18 1654.92 2111.94 1654.22C2110.72 1653.52 2109.76 1652.53 2109.06 1651.25C2108.36 1649.95 2108.01 1648.45 2108.01 1646.75C2108.01 1645.05 2108.35 1643.56 2109.03 1642.28C2109.71 1641 2110.66 1640.02 2111.88 1639.34C2113.12 1638.64 2114.54 1638.29 2116.14 1638.29C2117.7 1638.29 2119.08 1638.63 2120.28 1639.31C2121.48 1639.99 2122.4 1640.93 2123.04 1642.13C2123.7 1643.31 2124.03 1644.65 2124.03 1646.15ZM2121.21 1645.58C2121.21 1644.54 2120.98 1643.65 2120.52 1642.91C2120.06 1642.15 2119.43 1641.58 2118.63 1641.2C2117.85 1640.8 2116.98 1640.6 2116.02 1640.6C2114.64 1640.6 2113.46 1641.04 2112.48 1641.92C2111.52 1642.8 2110.97 1644.02 2110.83 1645.58H2121.21Z" fill="#617ABE"/>
|
|
||||||
<path d="M2133.45 1655.27C2132.19 1655.27 2131.06 1655.06 2130.06 1654.64C2129.06 1654.2 2128.27 1653.6 2127.69 1652.84C2127.11 1652.06 2126.79 1651.17 2126.73 1650.17H2129.55C2129.63 1650.99 2130.01 1651.66 2130.69 1652.18C2131.39 1652.7 2132.3 1652.96 2133.42 1652.96C2134.46 1652.96 2135.28 1652.73 2135.88 1652.27C2136.48 1651.81 2136.78 1651.23 2136.78 1650.53C2136.78 1649.81 2136.46 1649.28 2135.82 1648.94C2135.18 1648.58 2134.19 1648.23 2132.85 1647.89C2131.63 1647.57 2130.63 1647.25 2129.85 1646.93C2129.09 1646.59 2128.43 1646.1 2127.87 1645.46C2127.33 1644.8 2127.06 1643.94 2127.06 1642.88C2127.06 1642.04 2127.31 1641.27 2127.81 1640.57C2128.31 1639.87 2129.02 1639.32 2129.94 1638.92C2130.86 1638.5 2131.91 1638.29 2133.09 1638.29C2134.91 1638.29 2136.38 1638.75 2137.5 1639.67C2138.62 1640.59 2139.22 1641.85 2139.3 1643.45H2136.57C2136.51 1642.59 2136.16 1641.9 2135.52 1641.38C2134.9 1640.86 2134.06 1640.6 2133 1640.6C2132.02 1640.6 2131.24 1640.81 2130.66 1641.23C2130.08 1641.65 2129.79 1642.2 2129.79 1642.88C2129.79 1643.42 2129.96 1643.87 2130.3 1644.23C2130.66 1644.57 2131.1 1644.85 2131.62 1645.07C2132.16 1645.27 2132.9 1645.5 2133.84 1645.76C2135.02 1646.08 2135.98 1646.4 2136.72 1646.72C2137.46 1647.02 2138.09 1647.48 2138.61 1648.1C2139.15 1648.72 2139.43 1649.53 2139.45 1650.53C2139.45 1651.43 2139.2 1652.24 2138.7 1652.96C2138.2 1653.68 2137.49 1654.25 2136.57 1654.67C2135.67 1655.07 2134.63 1655.27 2133.45 1655.27Z" fill="#617ABE"/>
|
|
||||||
<g filter="url(#filter2_d_6_2146)">
|
|
||||||
<circle cx="567.5" cy="816.5" r="115.5" fill="white"/>
|
|
||||||
<circle cx="567.5" cy="816.5" r="115.5" stroke="#CDDAFF" stroke-width="4"/>
|
|
||||||
</g>
|
|
||||||
<g filter="url(#filter3_d_6_2146)">
|
|
||||||
<path d="M542.92 784.2V767.043H574.973V864H555.821V784.2H542.92Z" fill="#5982F1"/>
|
|
||||||
<path d="M603.741 864.931C600.372 864.931 597.579 863.911 595.362 861.872C593.234 859.744 592.17 857.128 592.17 854.025C592.17 850.922 593.234 848.35 595.362 846.311C597.579 844.183 600.372 843.119 603.741 843.119C607.022 843.119 609.726 844.183 611.854 846.311C613.982 848.35 615.046 850.922 615.046 854.025C615.046 857.128 613.982 859.744 611.854 861.872C609.726 863.911 607.022 864.931 603.741 864.931Z" fill="#5982F1"/>
|
|
||||||
</g>
|
|
||||||
<g filter="url(#filter4_d_6_2146)">
|
|
||||||
<circle cx="1071.5" cy="816.5" r="115.5" fill="white"/>
|
|
||||||
<circle cx="1071.5" cy="816.5" r="115.5" stroke="#CDDAFF" stroke-width="4"/>
|
|
||||||
</g>
|
|
||||||
<g filter="url(#filter5_d_6_2146)">
|
|
||||||
<path d="M1041.94 842.985C1050.45 835.892 1057.24 829.995 1062.29 825.296C1067.34 820.508 1071.56 815.543 1074.92 810.4C1078.29 805.257 1079.98 800.203 1079.98 795.238C1079.98 790.716 1078.91 787.169 1076.79 784.598C1074.66 782.027 1071.38 780.741 1066.94 780.741C1062.51 780.741 1059.1 782.248 1056.7 785.263C1054.31 788.189 1053.07 792.223 1052.98 797.366H1034.89C1035.25 786.726 1038.39 778.657 1044.33 773.16C1050.36 767.663 1057.99 764.914 1067.21 764.914C1077.32 764.914 1085.08 767.618 1090.49 773.027C1095.89 778.347 1098.6 785.396 1098.6 794.174C1098.6 801.09 1096.74 807.696 1093.01 813.991C1089.29 820.286 1085.03 825.784 1080.24 830.483C1075.46 835.094 1069.21 840.68 1061.49 847.241H1100.73V862.669H1035.02V848.837L1041.94 842.985Z" fill="#5982F1"/>
|
|
||||||
<path d="M1122.83 864.93C1119.46 864.93 1116.67 863.91 1114.45 861.871C1112.33 859.743 1111.26 857.127 1111.26 854.024C1111.26 850.921 1112.33 848.349 1114.45 846.31C1116.67 844.182 1119.46 843.118 1122.83 843.118C1126.11 843.118 1128.82 844.182 1130.95 846.31C1133.07 848.349 1134.14 850.921 1134.14 854.024C1134.14 857.127 1133.07 859.743 1130.95 861.871C1128.82 863.91 1126.11 864.93 1122.83 864.93Z" fill="#5982F1"/>
|
|
||||||
</g>
|
|
||||||
<g filter="url(#filter6_d_6_2146)">
|
|
||||||
<circle cx="1571.5" cy="816.5" r="115.5" fill="white"/>
|
|
||||||
<circle cx="1571.5" cy="816.5" r="115.5" stroke="#CDDAFF" stroke-width="4"/>
|
|
||||||
</g>
|
|
||||||
<g filter="url(#filter7_d_6_2146)">
|
|
||||||
<path d="M1523.51 845.114V830.484L1567 768.24H1588.68V828.888H1600.39V845.114H1588.68V864H1570.06V845.114H1523.51ZM1571.26 788.19L1543.99 828.888H1571.26V788.19Z" fill="#5982F1"/>
|
|
||||||
<path d="M1622.61 864.931C1619.25 864.931 1616.45 863.912 1614.24 861.872C1612.11 859.744 1611.04 857.129 1611.04 854.025C1611.04 850.922 1612.11 848.351 1614.24 846.311C1616.45 844.183 1619.25 843.119 1622.61 843.119C1625.9 843.119 1628.6 844.183 1630.73 846.311C1632.86 848.351 1633.92 850.922 1633.92 854.025C1633.92 857.129 1632.86 859.744 1630.73 861.872C1628.6 863.912 1625.9 864.931 1622.61 864.931Z" fill="#5982F1"/>
|
|
||||||
</g>
|
|
||||||
<g filter="url(#filter8_d_6_2146)">
|
|
||||||
<circle cx="1069.5" cy="1196.5" r="115.5" fill="white"/>
|
|
||||||
<circle cx="1069.5" cy="1196.5" r="115.5" stroke="#CDDAFF" stroke-width="4"/>
|
|
||||||
</g>
|
|
||||||
<g filter="url(#filter9_d_6_2146)">
|
|
||||||
<path d="M1032.73 1172.58C1033.17 1163.71 1036.28 1156.88 1042.04 1152.1C1047.89 1147.22 1055.56 1144.78 1065.05 1144.78C1071.52 1144.78 1077.06 1145.93 1081.68 1148.24C1086.29 1150.46 1089.74 1153.51 1092.05 1157.42C1094.44 1161.23 1095.64 1165.57 1095.64 1170.45C1095.64 1176.04 1094.18 1180.78 1091.25 1184.68C1088.41 1188.49 1085 1191.07 1081.01 1192.4V1192.93C1086.15 1194.52 1090.14 1197.36 1092.98 1201.44C1095.91 1205.52 1097.37 1210.75 1097.37 1217.13C1097.37 1222.45 1096.13 1227.2 1093.65 1231.36C1091.25 1235.53 1087.66 1238.81 1082.87 1241.21C1078.17 1243.51 1072.5 1244.66 1065.85 1244.66C1055.83 1244.66 1047.67 1242.14 1041.38 1237.08C1035.08 1232.03 1031.76 1224.58 1031.4 1214.74H1049.49C1049.67 1219.08 1051.13 1222.59 1053.88 1225.25C1056.72 1227.82 1060.57 1229.1 1065.45 1229.1C1069.97 1229.1 1073.43 1227.86 1075.82 1225.38C1078.31 1222.81 1079.55 1219.53 1079.55 1215.54C1079.55 1210.22 1077.86 1206.4 1074.49 1204.1C1071.12 1201.79 1065.89 1200.64 1058.8 1200.64H1054.94V1185.35H1058.8C1071.39 1185.35 1077.69 1181.13 1077.69 1172.71C1077.69 1168.9 1076.53 1165.93 1074.23 1163.8C1072.01 1161.67 1068.77 1160.61 1064.52 1160.61C1060.35 1160.61 1057.11 1161.76 1054.81 1164.07C1052.59 1166.28 1051.31 1169.12 1050.95 1172.58H1032.73Z" fill="#5982F1"/>
|
|
||||||
<path d="M1122.46 1244.93C1119.09 1244.93 1116.3 1243.91 1114.08 1241.87C1111.95 1239.74 1110.89 1237.13 1110.89 1234.02C1110.89 1230.92 1111.95 1228.35 1114.08 1226.31C1116.3 1224.18 1119.09 1223.12 1122.46 1223.12C1125.74 1223.12 1128.44 1224.18 1130.57 1226.31C1132.7 1228.35 1133.76 1230.92 1133.76 1234.02C1133.76 1237.13 1132.7 1239.74 1130.57 1241.87C1128.44 1243.91 1125.74 1244.93 1122.46 1244.93Z" fill="#5982F1"/>
|
|
||||||
</g>
|
|
||||||
<g filter="url(#filter10_d_6_2146)">
|
|
||||||
<circle cx="2076.5" cy="1196.5" r="115.5" fill="white"/>
|
|
||||||
<circle cx="2076.5" cy="1196.5" r="115.5" stroke="#CDDAFF" stroke-width="4"/>
|
|
||||||
</g>
|
|
||||||
<g filter="url(#filter11_d_6_2146)">
|
|
||||||
<path d="M2085.51 1171.25C2084.63 1167.52 2083.07 1164.73 2080.86 1162.87C2078.73 1161.01 2075.63 1160.08 2071.55 1160.08C2065.43 1160.08 2060.91 1162.56 2057.98 1167.52C2055.14 1172.4 2053.68 1180.38 2053.59 1191.46C2055.72 1187.92 2058.82 1185.17 2062.9 1183.22C2066.98 1181.18 2071.41 1180.16 2076.2 1180.16C2081.97 1180.16 2087.06 1181.4 2091.5 1183.88C2095.93 1186.37 2099.39 1190 2101.87 1194.79C2104.35 1199.49 2105.6 1205.16 2105.6 1211.81C2105.6 1218.11 2104.31 1223.74 2101.74 1228.7C2099.26 1233.58 2095.58 1237.39 2090.7 1240.14C2085.82 1242.89 2080.01 1244.27 2073.28 1244.27C2064.05 1244.27 2056.78 1242.23 2051.46 1238.15C2046.23 1234.07 2042.55 1228.39 2040.43 1221.12C2038.39 1213.76 2037.37 1204.72 2037.37 1193.99C2037.37 1177.77 2040.16 1165.53 2045.75 1157.28C2051.33 1148.95 2060.15 1144.78 2072.21 1144.78C2081.52 1144.78 2088.75 1147.31 2093.89 1152.36C2099.03 1157.42 2102 1163.71 2102.8 1171.25H2085.51ZM2071.95 1195.45C2067.25 1195.45 2063.3 1196.83 2060.11 1199.58C2056.92 1202.33 2055.32 1206.32 2055.32 1211.55C2055.32 1216.78 2056.78 1220.9 2059.71 1223.92C2062.72 1226.93 2066.94 1228.44 2072.35 1228.44C2077.13 1228.44 2080.9 1226.98 2083.65 1224.05C2086.49 1221.12 2087.91 1217.18 2087.91 1212.21C2087.91 1207.07 2086.53 1202.99 2083.78 1199.98C2081.12 1196.96 2077.18 1195.45 2071.95 1195.45Z" fill="#5982F1"/>
|
|
||||||
<path d="M2130.69 1244.93C2127.32 1244.93 2124.52 1243.91 2122.31 1241.87C2120.18 1239.74 2119.11 1237.13 2119.11 1234.02C2119.11 1230.92 2120.18 1228.35 2122.31 1226.31C2124.52 1224.18 2127.32 1223.12 2130.69 1223.12C2133.97 1223.12 2136.67 1224.18 2138.8 1226.31C2140.93 1228.35 2141.99 1230.92 2141.99 1234.02C2141.99 1237.13 2140.93 1239.74 2138.8 1241.87C2136.67 1243.91 2133.97 1244.93 2130.69 1244.93Z" fill="#5982F1"/>
|
|
||||||
</g>
|
|
||||||
<g filter="url(#filter12_d_6_2146)">
|
|
||||||
<circle cx="2076.5" cy="816.5" r="115.5" fill="white"/>
|
|
||||||
<circle cx="2076.5" cy="816.5" r="115.5" stroke="#CDDAFF" stroke-width="4"/>
|
|
||||||
</g>
|
|
||||||
<g filter="url(#filter13_d_6_2146)">
|
|
||||||
<path d="M2098.65 783.136H2055.56V805.879C2057.42 803.574 2060.08 801.712 2063.54 800.293C2066.99 798.786 2070.67 798.032 2074.58 798.032C2081.67 798.032 2087.48 799.584 2092 802.687C2096.52 805.791 2099.8 809.781 2101.84 814.657C2103.88 819.445 2104.9 824.588 2104.9 830.085C2104.9 840.282 2101.97 848.484 2096.12 854.69C2090.36 860.897 2082.11 864 2071.38 864C2061.28 864 2053.21 861.473 2047.18 856.419C2041.15 851.365 2037.73 844.76 2036.94 836.602H2055.02C2055.82 840.149 2057.6 842.986 2060.34 845.114C2063.18 847.242 2066.77 848.306 2071.12 848.306C2076.35 848.306 2080.29 846.666 2082.95 843.385C2085.61 840.105 2086.94 835.76 2086.94 830.351C2086.94 824.854 2085.57 820.687 2082.82 817.849C2080.16 814.923 2076.22 813.46 2070.98 813.46C2067.26 813.46 2064.16 814.391 2061.67 816.253C2059.19 818.115 2057.42 820.598 2056.35 823.701H2038.53V766.777H2098.65V783.136Z" fill="#5982F1"/>
|
|
||||||
<path d="M2129.45 864.931C2126.08 864.931 2123.28 863.912 2121.07 861.872C2118.94 859.744 2117.87 857.129 2117.87 854.025C2117.87 850.922 2118.94 848.351 2121.07 846.311C2123.28 844.183 2126.08 843.119 2129.45 843.119C2132.73 843.119 2135.43 844.183 2137.56 846.311C2139.69 848.351 2140.75 850.922 2140.75 854.025C2140.75 857.129 2139.69 859.744 2137.56 861.872C2135.43 863.912 2132.73 864.931 2129.45 864.931Z" fill="#5982F1"/>
|
|
||||||
</g>
|
|
||||||
<g filter="url(#filter14_d_6_2146)">
|
|
||||||
<path d="M717 816.727L913.5 816.727" stroke="#FFBC4B" stroke-width="10" stroke-linecap="round"/>
|
|
||||||
</g>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M929.554 814.116C931.125 815.317 931.125 817.683 929.554 818.884L902.822 839.315C900.848 840.824 898 839.416 898 836.931L898 796.069C898 793.584 900.848 792.176 902.822 793.685L929.554 814.116Z" fill="#FFBC4B"/>
|
|
||||||
<g filter="url(#filter15_d_6_2146)">
|
|
||||||
<path d="M1221 816.727L1417.5 816.727" stroke="#FFBC4B" stroke-width="10" stroke-linecap="round"/>
|
|
||||||
</g>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M1433.55 814.116C1435.12 815.317 1435.12 817.683 1433.55 818.884L1406.82 839.315C1404.85 840.824 1402 839.416 1402 836.931L1402 796.069C1402 793.584 1404.85 792.176 1406.82 793.685L1433.55 814.116Z" fill="#FFBC4B"/>
|
|
||||||
<g filter="url(#filter16_d_6_2146)">
|
|
||||||
<path d="M1189.5 1123.5L1432.84 887.271" stroke="#FFBC4B" stroke-width="10" stroke-linecap="round"/>
|
|
||||||
</g>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M1442.35 874.077C1444.31 873.815 1445.98 875.488 1445.72 877.448L1441.27 910.797C1440.94 913.26 1437.93 914.278 1436.17 912.521L1407.28 883.627C1405.52 881.87 1406.54 878.861 1409 878.532L1442.35 874.077Z" fill="#FFBC4B"/>
|
|
||||||
<g filter="url(#filter17_d_6_2146)">
|
|
||||||
<path d="M1072.27 964V1044" stroke="#FFBC4B" stroke-width="10" stroke-linecap="round"/>
|
|
||||||
</g>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M1074.88 1060.05C1073.68 1061.62 1071.32 1061.62 1070.12 1060.05L1049.69 1033.32C1048.18 1031.35 1049.58 1028.5 1052.07 1028.5H1092.93C1095.42 1028.5 1096.82 1031.35 1095.31 1033.32L1074.88 1060.05Z" fill="#FFBC4B"/>
|
|
||||||
<g filter="url(#filter18_d_6_2146)">
|
|
||||||
<path d="M2042.27 965V1045" stroke="#FFBC4B" stroke-width="10" stroke-linecap="round"/>
|
|
||||||
</g>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2044.88 1061.05C2043.68 1062.62 2041.32 1062.62 2040.12 1061.05L2019.69 1034.32C2018.18 1032.35 2019.58 1029.5 2022.07 1029.5H2062.93C2065.42 1029.5 2066.82 1032.35 2065.31 1034.32L2044.88 1061.05Z" fill="#FFBC4B"/>
|
|
||||||
<g filter="url(#filter19_d_6_2146)">
|
|
||||||
<path d="M2109.73 1054.5L2109.73 974.5" stroke="#FFBC4B" stroke-width="10" stroke-linecap="round"/>
|
|
||||||
</g>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2107.12 958.446C2108.32 956.875 2110.68 956.875 2111.88 958.446L2132.31 985.178C2133.82 987.152 2132.42 990 2129.93 990L2089.07 990C2086.58 990 2085.18 987.152 2086.69 985.178L2107.12 958.446Z" fill="#FFBC4B"/>
|
|
||||||
<g filter="url(#filter20_d_6_2146)">
|
|
||||||
<path d="M1721 816.727L1917.5 816.727" stroke="#FFBC4B" stroke-width="10" stroke-linecap="round"/>
|
|
||||||
</g>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M1933.55 814.116C1935.12 815.317 1935.12 817.683 1933.55 818.884L1906.82 839.315C1904.85 840.824 1902 839.416 1902 836.931L1902 796.069C1902 793.584 1904.85 792.176 1906.82 793.685L1933.55 814.116Z" fill="#FFBC4B"/>
|
|
||||||
<g filter="url(#filter21_d_6_2146)">
|
|
||||||
<path d="M405.501 824.036L403.449 821.848L403.449 821.848L405.501 824.036ZM313.104 910.684L311.052 908.496L311.052 908.496L313.104 910.684ZM313.104 728.635L311.052 730.824L311.052 730.824L313.104 728.635ZM405.501 815.283L403.449 817.471L403.449 817.471L405.501 815.283ZM303 733.012L306 733.012L303 733.012ZM303 906.308L300 906.308L303 906.308ZM403.449 821.848L311.052 908.496L315.156 912.872L407.553 826.225L403.449 821.848ZM311.052 730.824L403.449 817.471L407.553 813.095L315.156 726.447L311.052 730.824ZM306 760.5L306 733.012L300 733.012L300 760.5L306 760.5ZM306 906.308L306 878L300 878L300 906.308L306 906.308ZM315.156 726.447C309.409 721.057 300 725.132 300 733.012L306 733.012C306 730.385 309.136 729.027 311.052 730.824L315.156 726.447ZM311.052 908.496C309.136 910.293 306 908.934 306 906.308L300 906.308C300 914.187 309.409 918.262 315.156 912.872L311.052 908.496ZM407.553 826.225C411.345 822.669 411.345 816.65 407.553 813.095L403.449 817.471C404.713 818.657 404.713 820.663 403.449 821.848L407.553 826.225Z" fill="#FFBC4B"/>
|
|
||||||
</g>
|
|
||||||
<g filter="url(#filter22_d_6_2146)">
|
|
||||||
<line x1="31" y1="760" x2="303" y2="760" stroke="#FFBC4B" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
|
||||||
</g>
|
|
||||||
<g filter="url(#filter23_d_6_2146)">
|
|
||||||
<line x1="31" y1="878" x2="303" y2="878" stroke="#FFBC4B" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
|
||||||
</g>
|
|
||||||
<path d="M72.7602 811.37C71.3002 811.37 69.9802 811.12 68.8002 810.62C67.6402 810.12 66.7202 809.4 66.0402 808.46C65.3602 807.52 65.0102 806.41 64.9902 805.13H69.4902C69.5502 805.99 69.8502 806.67 70.3902 807.17C70.9502 807.67 71.7102 807.92 72.6702 807.92C73.6502 807.92 74.4202 807.69 74.9802 807.23C75.5402 806.75 75.8202 806.13 75.8202 805.37C75.8202 804.75 75.6302 804.24 75.2502 803.84C74.8702 803.44 74.3902 803.13 73.8102 802.91C73.2502 802.67 72.4702 802.41 71.4702 802.13C70.1102 801.73 69.0002 801.34 68.1402 800.96C67.3002 800.56 66.5702 799.97 65.9502 799.19C65.3502 798.39 65.0502 797.33 65.0502 796.01C65.0502 794.77 65.3602 793.69 65.9802 792.77C66.6002 791.85 67.4702 791.15 68.5902 790.67C69.7102 790.17 70.9902 789.92 72.4302 789.92C74.5902 789.92 76.3402 790.45 77.6802 791.51C79.0402 792.55 79.7902 794.01 79.9302 795.89H75.3102C75.2702 795.17 74.9602 794.58 74.3802 794.12C73.8202 793.64 73.0702 793.4 72.1302 793.4C71.3102 793.4 70.6502 793.61 70.1502 794.03C69.6702 794.45 69.4302 795.06 69.4302 795.86C69.4302 796.42 69.6102 796.89 69.9702 797.27C70.3502 797.63 70.8102 797.93 71.3502 798.17C71.9102 798.39 72.6902 798.65 73.6902 798.95C75.0502 799.35 76.1602 799.75 77.0202 800.15C77.8802 800.55 78.6202 801.15 79.2402 801.95C79.8602 802.75 80.1702 803.8 80.1702 805.1C80.1702 806.22 79.8802 807.26 79.3002 808.22C78.7202 809.18 77.8702 809.95 76.7502 810.53C75.6302 811.09 74.3002 811.37 72.7602 811.37Z" fill="#5982F1"/>
|
|
||||||
<path d="M104.451 794.3C106.491 794.3 108.131 794.93 109.371 796.19C110.631 797.43 111.261 799.17 111.261 801.41V811.16H107.061V801.98C107.061 800.68 106.731 799.69 106.071 799.01C105.411 798.31 104.511 797.96 103.371 797.96C102.231 797.96 101.321 798.31 100.641 799.01C99.9815 799.69 99.6515 800.68 99.6515 801.98V811.16H95.4515V801.98C95.4515 800.68 95.1215 799.69 94.4615 799.01C93.8015 798.31 92.9015 797.96 91.7615 797.96C90.6015 797.96 89.6815 798.31 89.0015 799.01C88.3415 799.69 88.0115 800.68 88.0115 801.98V811.16H83.8115V794.54H88.0115V796.55C88.5515 795.85 89.2415 795.3 90.0815 794.9C90.9415 794.5 91.8815 794.3 92.9015 794.3C94.2015 794.3 95.3615 794.58 96.3815 795.14C97.4015 795.68 98.1915 796.46 98.7515 797.48C99.2915 796.52 100.071 795.75 101.091 795.17C102.131 794.59 103.251 794.3 104.451 794.3Z" fill="#5982F1"/>
|
|
||||||
<path d="M114.167 802.79C114.167 801.11 114.497 799.62 115.157 798.32C115.837 797.02 116.747 796.02 117.887 795.32C119.047 794.62 120.337 794.27 121.757 794.27C122.997 794.27 124.077 794.52 124.997 795.02C125.937 795.52 126.687 796.15 127.247 796.91V794.54H131.477V811.16H127.247V808.73C126.707 809.51 125.957 810.16 124.997 810.68C124.057 811.18 122.967 811.43 121.727 811.43C120.327 811.43 119.047 811.07 117.887 810.35C116.747 809.63 115.837 808.62 115.157 807.32C114.497 806 114.167 804.49 114.167 802.79ZM127.247 802.85C127.247 801.83 127.047 800.96 126.647 800.24C126.247 799.5 125.707 798.94 125.027 798.56C124.347 798.16 123.617 797.96 122.837 797.96C122.057 797.96 121.337 798.15 120.677 798.53C120.017 798.91 119.477 799.47 119.057 800.21C118.657 800.93 118.457 801.79 118.457 802.79C118.457 803.79 118.657 804.67 119.057 805.43C119.477 806.17 120.017 806.74 120.677 807.14C121.357 807.54 122.077 807.74 122.837 807.74C123.617 807.74 124.347 807.55 125.027 807.17C125.707 806.77 126.247 806.21 126.647 805.49C127.047 804.75 127.247 803.87 127.247 802.85Z" fill="#5982F1"/>
|
|
||||||
<path d="M139.779 797.12C140.319 796.24 141.019 795.55 141.879 795.05C142.759 794.55 143.759 794.3 144.879 794.3V798.71H143.769C142.449 798.71 141.449 799.02 140.769 799.64C140.109 800.26 139.779 801.34 139.779 802.88V811.16H135.579V794.54H139.779V797.12Z" fill="#5982F1"/>
|
|
||||||
<path d="M152.598 797.99V806.03C152.598 806.59 152.728 807 152.988 807.26C153.268 807.5 153.728 807.62 154.368 807.62H156.318V811.16H153.678C150.138 811.16 148.368 809.44 148.368 806V797.99H146.388V794.54H148.368V790.43H152.598V794.54H156.318V797.99H152.598Z" fill="#5982F1"/>
|
|
||||||
<path d="M172.119 798.68V802.22H159.399V798.68H172.119Z" fill="#5982F1"/>
|
|
||||||
<path d="M175.749 802.85C175.749 801.13 176.099 799.63 176.799 798.35C177.499 797.05 178.469 796.05 179.709 795.35C180.949 794.63 182.369 794.27 183.969 794.27C186.029 794.27 187.729 794.79 189.069 795.83C190.429 796.85 191.339 798.29 191.799 800.15H187.269C187.029 799.43 186.619 798.87 186.039 798.47C185.479 798.05 184.779 797.84 183.939 797.84C182.739 797.84 181.789 798.28 181.089 799.16C180.389 800.02 180.039 801.25 180.039 802.85C180.039 804.43 180.389 805.66 181.089 806.54C181.789 807.4 182.739 807.83 183.939 807.83C185.639 807.83 186.749 807.07 187.269 805.55H191.799C191.339 807.35 190.429 808.78 189.069 809.84C187.709 810.9 186.009 811.43 183.969 811.43C182.369 811.43 180.949 811.08 179.709 810.38C178.469 809.66 177.499 808.66 176.799 807.38C176.099 806.08 175.749 804.57 175.749 802.85Z" fill="#5982F1"/>
|
|
||||||
<path d="M202.256 811.43C200.656 811.43 199.216 811.08 197.936 810.38C196.656 809.66 195.646 808.65 194.906 807.35C194.186 806.05 193.826 804.55 193.826 802.85C193.826 801.15 194.196 799.65 194.936 798.35C195.696 797.05 196.726 796.05 198.026 795.35C199.326 794.63 200.776 794.27 202.376 794.27C203.976 794.27 205.426 794.63 206.726 795.35C208.026 796.05 209.046 797.05 209.786 798.35C210.546 799.65 210.926 801.15 210.926 802.85C210.926 804.55 210.536 806.05 209.756 807.35C208.996 808.65 207.956 809.66 206.636 810.38C205.336 811.08 203.876 811.43 202.256 811.43ZM202.256 807.77C203.016 807.77 203.726 807.59 204.386 807.23C205.066 806.85 205.606 806.29 206.006 805.55C206.406 804.81 206.606 803.91 206.606 802.85C206.606 801.27 206.186 800.06 205.346 799.22C204.526 798.36 203.516 797.93 202.316 797.93C201.116 797.93 200.106 798.36 199.286 799.22C198.486 800.06 198.086 801.27 198.086 802.85C198.086 804.43 198.476 805.65 199.256 806.51C200.056 807.35 201.056 807.77 202.256 807.77Z" fill="#5982F1"/>
|
|
||||||
<path d="M223.217 794.3C225.197 794.3 226.797 794.93 228.017 796.19C229.237 797.43 229.847 799.17 229.847 801.41V811.16H225.647V801.98C225.647 800.66 225.317 799.65 224.657 798.95C223.997 798.23 223.097 797.87 221.957 797.87C220.797 797.87 219.877 798.23 219.197 798.95C218.537 799.65 218.207 800.66 218.207 801.98V811.16H214.007V794.54H218.207V796.61C218.767 795.89 219.477 795.33 220.337 794.93C221.217 794.51 222.177 794.3 223.217 794.3Z" fill="#5982F1"/>
|
|
||||||
<path d="M238.731 797.99V806.03C238.731 806.59 238.861 807 239.121 807.26C239.401 807.5 239.861 807.62 240.501 807.62H242.451V811.16H239.811C236.271 811.16 234.501 809.44 234.501 806V797.99H232.521V794.54H234.501V790.43H238.731V794.54H242.451V797.99H238.731Z" fill="#5982F1"/>
|
|
||||||
<path d="M249.672 797.12C250.212 796.24 250.912 795.55 251.772 795.05C252.652 794.55 253.652 794.3 254.772 794.3V798.71H253.662C252.342 798.71 251.342 799.02 250.662 799.64C250.002 800.26 249.672 801.34 249.672 802.88V811.16H245.472V794.54H249.672V797.12Z" fill="#5982F1"/>
|
|
||||||
<path d="M256.521 802.79C256.521 801.11 256.851 799.62 257.511 798.32C258.191 797.02 259.101 796.02 260.241 795.32C261.401 794.62 262.691 794.27 264.111 794.27C265.351 794.27 266.431 794.52 267.351 795.02C268.291 795.52 269.041 796.15 269.601 796.91V794.54H273.831V811.16H269.601V808.73C269.061 809.51 268.311 810.16 267.351 810.68C266.411 811.18 265.321 811.43 264.081 811.43C262.681 811.43 261.401 811.07 260.241 810.35C259.101 809.63 258.191 808.62 257.511 807.32C256.851 806 256.521 804.49 256.521 802.79ZM269.601 802.85C269.601 801.83 269.401 800.96 269.001 800.24C268.601 799.5 268.061 798.94 267.381 798.56C266.701 798.16 265.971 797.96 265.191 797.96C264.411 797.96 263.691 798.15 263.031 798.53C262.371 798.91 261.831 799.47 261.411 800.21C261.011 800.93 260.811 801.79 260.811 802.79C260.811 803.79 261.011 804.67 261.411 805.43C261.831 806.17 262.371 806.74 263.031 807.14C263.711 807.54 264.431 807.74 265.191 807.74C265.971 807.74 266.701 807.55 267.381 807.17C268.061 806.77 268.601 806.21 269.001 805.49C269.401 804.75 269.601 803.87 269.601 802.85Z" fill="#5982F1"/>
|
|
||||||
<path d="M276.853 802.85C276.853 801.13 277.203 799.63 277.903 798.35C278.603 797.05 279.573 796.05 280.813 795.35C282.053 794.63 283.473 794.27 285.073 794.27C287.133 794.27 288.833 794.79 290.173 795.83C291.533 796.85 292.443 798.29 292.903 800.15H288.373C288.133 799.43 287.723 798.87 287.143 798.47C286.583 798.05 285.883 797.84 285.043 797.84C283.843 797.84 282.893 798.28 282.193 799.16C281.493 800.02 281.143 801.25 281.143 802.85C281.143 804.43 281.493 805.66 282.193 806.54C282.893 807.4 283.843 807.83 285.043 807.83C286.743 807.83 287.853 807.07 288.373 805.55H292.903C292.443 807.35 291.533 808.78 290.173 809.84C288.813 810.9 287.113 811.43 285.073 811.43C283.473 811.43 282.053 811.08 280.813 810.38C279.573 809.66 278.603 808.66 277.903 807.38C277.203 806.08 276.853 804.57 276.853 802.85Z" fill="#5982F1"/>
|
|
||||||
<path d="M300.869 797.99V806.03C300.869 806.59 300.999 807 301.259 807.26C301.539 807.5 301.999 807.62 302.639 807.62H304.589V811.16H301.949C298.409 811.16 296.639 809.44 296.639 806V797.99H294.659V794.54H296.639V790.43H300.869V794.54H304.589V797.99H300.869Z" fill="#5982F1"/>
|
|
||||||
<path d="M104.809 832.56C104.069 832.56 103.449 832.33 102.949 831.87C102.469 831.39 102.229 830.8 102.229 830.1C102.229 829.4 102.469 828.82 102.949 828.36C103.449 827.88 104.069 827.64 104.809 827.64C105.549 827.64 106.159 827.88 106.639 828.36C107.139 828.82 107.389 829.4 107.389 830.1C107.389 830.8 107.139 831.39 106.639 831.87C106.159 832.33 105.549 832.56 104.809 832.56ZM106.879 834.54V851.16H102.679V834.54H106.879Z" fill="#5982F1"/>
|
|
||||||
<path d="M120.238 834.3C122.218 834.3 123.818 834.93 125.038 836.19C126.258 837.43 126.868 839.17 126.868 841.41V851.16H122.668V841.98C122.668 840.66 122.338 839.65 121.678 838.95C121.018 838.23 120.118 837.87 118.978 837.87C117.818 837.87 116.898 838.23 116.218 838.95C115.558 839.65 115.228 840.66 115.228 841.98V851.16H111.028V834.54H115.228V836.61C115.788 835.89 116.498 835.33 117.358 834.93C118.238 834.51 119.198 834.3 120.238 834.3Z" fill="#5982F1"/>
|
|
||||||
<path d="M135.752 837.99V846.03C135.752 846.59 135.882 847 136.142 847.26C136.422 847.5 136.882 847.62 137.522 847.62H139.472V851.16H136.832C133.292 851.16 131.522 849.44 131.522 846V837.99H129.542V834.54H131.522V830.43H135.752V834.54H139.472V837.99H135.752Z" fill="#5982F1"/>
|
|
||||||
<path d="M157.943 842.49C157.943 843.09 157.903 843.63 157.823 844.11H145.673C145.773 845.31 146.193 846.25 146.933 846.93C147.673 847.61 148.583 847.95 149.663 847.95C151.223 847.95 152.333 847.28 152.993 845.94H157.523C157.043 847.54 156.123 848.86 154.763 849.9C153.403 850.92 151.733 851.43 149.753 851.43C148.153 851.43 146.713 851.08 145.433 850.38C144.173 849.66 143.183 848.65 142.463 847.35C141.763 846.05 141.413 844.55 141.413 842.85C141.413 841.13 141.763 839.62 142.463 838.32C143.163 837.02 144.143 836.02 145.403 835.32C146.663 834.62 148.113 834.27 149.753 834.27C151.333 834.27 152.743 834.61 153.983 835.29C155.243 835.97 156.213 836.94 156.893 838.2C157.593 839.44 157.943 840.87 157.943 842.49ZM153.593 841.29C153.573 840.21 153.183 839.35 152.423 838.71C151.663 838.05 150.733 837.72 149.633 837.72C148.593 837.72 147.713 838.04 146.993 838.68C146.293 839.3 145.863 840.17 145.703 841.29H153.593Z" fill="#5982F1"/>
|
|
||||||
<path d="M165.209 837.12C165.749 836.24 166.449 835.55 167.309 835.05C168.189 834.55 169.189 834.3 170.309 834.3V838.71H169.199C167.879 838.71 166.879 839.02 166.199 839.64C165.539 840.26 165.209 841.34 165.209 842.88V851.16H161.009V834.54H165.209V837.12Z" fill="#5982F1"/>
|
|
||||||
<path d="M172.058 842.79C172.058 841.11 172.388 839.62 173.048 838.32C173.728 837.02 174.638 836.02 175.778 835.32C176.938 834.62 178.228 834.27 179.648 834.27C180.888 834.27 181.968 834.52 182.888 835.02C183.828 835.52 184.578 836.15 185.138 836.91V834.54H189.368V851.16H185.138V848.73C184.598 849.51 183.848 850.16 182.888 850.68C181.948 851.18 180.858 851.43 179.618 851.43C178.218 851.43 176.938 851.07 175.778 850.35C174.638 849.63 173.728 848.62 173.048 847.32C172.388 846 172.058 844.49 172.058 842.79ZM185.138 842.85C185.138 841.83 184.938 840.96 184.538 840.24C184.138 839.5 183.598 838.94 182.918 838.56C182.238 838.16 181.508 837.96 180.728 837.96C179.948 837.96 179.228 838.15 178.568 838.53C177.908 838.91 177.368 839.47 176.948 840.21C176.548 840.93 176.348 841.79 176.348 842.79C176.348 843.79 176.548 844.67 176.948 845.43C177.368 846.17 177.908 846.74 178.568 847.14C179.248 847.54 179.968 847.74 180.728 847.74C181.508 847.74 182.238 847.55 182.918 847.17C183.598 846.77 184.138 846.21 184.538 845.49C184.938 844.75 185.138 843.87 185.138 842.85Z" fill="#5982F1"/>
|
|
||||||
<path d="M192.39 842.85C192.39 841.13 192.74 839.63 193.44 838.35C194.14 837.05 195.11 836.05 196.35 835.35C197.59 834.63 199.01 834.27 200.61 834.27C202.67 834.27 204.37 834.79 205.71 835.83C207.07 836.85 207.98 838.29 208.44 840.15H203.91C203.67 839.43 203.26 838.87 202.68 838.47C202.12 838.05 201.42 837.84 200.58 837.84C199.38 837.84 198.43 838.28 197.73 839.16C197.03 840.02 196.68 841.25 196.68 842.85C196.68 844.43 197.03 845.66 197.73 846.54C198.43 847.4 199.38 847.83 200.58 847.83C202.28 847.83 203.39 847.07 203.91 845.55H208.44C207.98 847.35 207.07 848.78 205.71 849.84C204.35 850.9 202.65 851.43 200.61 851.43C199.01 851.43 197.59 851.08 196.35 850.38C195.11 849.66 194.14 848.66 193.44 847.38C192.74 846.08 192.39 844.57 192.39 842.85Z" fill="#5982F1"/>
|
|
||||||
<path d="M216.407 837.99V846.03C216.407 846.59 216.537 847 216.797 847.26C217.077 847.5 217.537 847.62 218.177 847.62H220.127V851.16H217.487C213.947 851.16 212.177 849.44 212.177 846V837.99H210.197V834.54H212.177V830.43H216.407V834.54H220.127V837.99H216.407Z" fill="#5982F1"/>
|
|
||||||
<path d="M225.277 832.56C224.537 832.56 223.917 832.33 223.417 831.87C222.937 831.39 222.697 830.8 222.697 830.1C222.697 829.4 222.937 828.82 223.417 828.36C223.917 827.88 224.537 827.64 225.277 827.64C226.017 827.64 226.627 827.88 227.107 828.36C227.607 828.82 227.857 829.4 227.857 830.1C227.857 830.8 227.607 831.39 227.107 831.87C226.627 832.33 226.017 832.56 225.277 832.56ZM227.347 834.54V851.16H223.147V834.54H227.347Z" fill="#5982F1"/>
|
|
||||||
<path d="M238.877 851.43C237.277 851.43 235.837 851.08 234.557 850.38C233.277 849.66 232.267 848.65 231.527 847.35C230.807 846.05 230.447 844.55 230.447 842.85C230.447 841.15 230.817 839.65 231.557 838.35C232.317 837.05 233.347 836.05 234.647 835.35C235.947 834.63 237.397 834.27 238.997 834.27C240.597 834.27 242.047 834.63 243.347 835.35C244.647 836.05 245.667 837.05 246.407 838.35C247.167 839.65 247.547 841.15 247.547 842.85C247.547 844.55 247.157 846.05 246.377 847.35C245.617 848.65 244.577 849.66 243.257 850.38C241.957 851.08 240.497 851.43 238.877 851.43ZM238.877 847.77C239.637 847.77 240.347 847.59 241.007 847.23C241.687 846.85 242.227 846.29 242.627 845.55C243.027 844.81 243.227 843.91 243.227 842.85C243.227 841.27 242.807 840.06 241.967 839.22C241.147 838.36 240.137 837.93 238.937 837.93C237.737 837.93 236.727 838.36 235.907 839.22C235.107 840.06 234.707 841.27 234.707 842.85C234.707 844.43 235.097 845.65 235.877 846.51C236.677 847.35 237.677 847.77 238.877 847.77Z" fill="#5982F1"/>
|
|
||||||
<path d="M259.838 834.3C261.818 834.3 263.418 834.93 264.638 836.19C265.858 837.43 266.468 839.17 266.468 841.41V851.16H262.268V841.98C262.268 840.66 261.938 839.65 261.278 838.95C260.618 838.23 259.718 837.87 258.578 837.87C257.418 837.87 256.498 838.23 255.818 838.95C255.158 839.65 254.828 840.66 254.828 841.98V851.16H250.628V834.54H254.828V836.61C255.388 835.89 256.098 835.33 256.958 834.93C257.838 834.51 258.798 834.3 259.838 834.3Z" fill="#5982F1"/>
|
|
||||||
<g filter="url(#filter24_d_6_2146)">
|
|
||||||
<path d="M2613.5 824.036L2611.45 821.848L2611.45 821.848L2613.5 824.036ZM2521.1 910.684L2519.05 908.496L2519.05 908.496L2521.1 910.684ZM2521.1 728.635L2519.05 730.824L2519.05 730.824L2521.1 728.635ZM2613.5 815.283L2611.45 817.471L2611.45 817.471L2613.5 815.283ZM2511 733.012L2514 733.012L2511 733.012ZM2511 906.308L2508 906.308L2511 906.308ZM2611.45 821.848L2519.05 908.496L2523.16 912.872L2615.55 826.225L2611.45 821.848ZM2519.05 730.824L2611.45 817.471L2615.55 813.095L2523.16 726.447L2519.05 730.824ZM2514 760.5L2514 733.012L2508 733.012L2508 760.5L2514 760.5ZM2514 906.308L2514 878L2508 878L2508 906.308L2514 906.308ZM2523.16 726.447C2517.41 721.057 2508 725.132 2508 733.012L2514 733.012C2514 730.385 2517.14 729.027 2519.05 730.824L2523.16 726.447ZM2519.05 908.496C2517.14 910.293 2514 908.934 2514 906.308L2508 906.308C2508 914.187 2517.41 918.262 2523.16 912.872L2519.05 908.496ZM2615.55 826.225C2619.34 822.669 2619.34 816.65 2615.55 813.095L2611.45 817.471C2612.71 818.657 2612.71 820.663 2611.45 821.848L2615.55 826.225Z" fill="#FFBC4B"/>
|
|
||||||
</g>
|
|
||||||
<g filter="url(#filter25_d_6_2146)">
|
|
||||||
<line x1="2239" y1="760" x2="2511" y2="760" stroke="#FFBC4B" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
|
||||||
</g>
|
|
||||||
<g filter="url(#filter26_d_6_2146)">
|
|
||||||
<line x1="2239" y1="878" x2="2511" y2="878" stroke="#FFBC4B" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
|
||||||
</g>
|
|
||||||
<path d="M2276.34 812.449V817.699H2283.39V821.029H2276.34V826.579H2284.29V829.999H2272.14V809.029H2284.29V812.449H2276.34Z" fill="#5982F1"/>
|
|
||||||
<path d="M2295.04 826.129L2299.24 813.379H2303.71L2297.56 829.999H2292.46L2286.34 813.379H2290.84L2295.04 826.129Z" fill="#5982F1"/>
|
|
||||||
<path d="M2304.99 821.629C2304.99 819.949 2305.32 818.459 2305.98 817.159C2306.66 815.859 2307.57 814.859 2308.71 814.159C2309.87 813.459 2311.16 813.109 2312.58 813.109C2313.82 813.109 2314.9 813.359 2315.82 813.859C2316.76 814.359 2317.51 814.989 2318.07 815.749V813.379H2322.3V829.999H2318.07V827.569C2317.53 828.349 2316.78 828.999 2315.82 829.519C2314.88 830.019 2313.79 830.269 2312.55 830.269C2311.15 830.269 2309.87 829.909 2308.71 829.189C2307.57 828.469 2306.66 827.459 2305.98 826.159C2305.32 824.839 2304.99 823.329 2304.99 821.629ZM2318.07 821.689C2318.07 820.669 2317.87 819.799 2317.47 819.079C2317.07 818.339 2316.53 817.779 2315.85 817.399C2315.17 816.999 2314.44 816.799 2313.66 816.799C2312.88 816.799 2312.16 816.989 2311.5 817.369C2310.84 817.749 2310.3 818.309 2309.88 819.049C2309.48 819.769 2309.28 820.629 2309.28 821.629C2309.28 822.629 2309.48 823.509 2309.88 824.269C2310.3 825.009 2310.84 825.579 2311.5 825.979C2312.18 826.379 2312.9 826.579 2313.66 826.579C2314.44 826.579 2315.17 826.389 2315.85 826.009C2316.53 825.609 2317.07 825.049 2317.47 824.329C2317.87 823.589 2318.07 822.709 2318.07 821.689Z" fill="#5982F1"/>
|
|
||||||
<path d="M2330.6 807.799V829.999H2326.4V807.799H2330.6Z" fill="#5982F1"/>
|
|
||||||
<path d="M2350.44 813.379V829.999H2346.21V827.899C2345.67 828.619 2344.96 829.189 2344.08 829.609C2343.22 830.009 2342.28 830.209 2341.26 830.209C2339.96 830.209 2338.81 829.939 2337.81 829.399C2336.81 828.839 2336.02 828.029 2335.44 826.969C2334.88 825.889 2334.6 824.609 2334.6 823.129V813.379H2338.8V822.529C2338.8 823.849 2339.13 824.869 2339.79 825.589C2340.45 826.289 2341.35 826.639 2342.49 826.639C2343.65 826.639 2344.56 826.289 2345.22 825.589C2345.88 824.869 2346.21 823.849 2346.21 822.529V813.379H2350.44Z" fill="#5982F1"/>
|
|
||||||
<path d="M2353.5 821.629C2353.5 819.949 2353.83 818.459 2354.49 817.159C2355.17 815.859 2356.08 814.859 2357.22 814.159C2358.38 813.459 2359.67 813.109 2361.09 813.109C2362.33 813.109 2363.41 813.359 2364.33 813.859C2365.27 814.359 2366.02 814.989 2366.58 815.749V813.379H2370.81V829.999H2366.58V827.569C2366.04 828.349 2365.29 828.999 2364.33 829.519C2363.39 830.019 2362.3 830.269 2361.06 830.269C2359.66 830.269 2358.38 829.909 2357.22 829.189C2356.08 828.469 2355.17 827.459 2354.49 826.159C2353.83 824.839 2353.5 823.329 2353.5 821.629ZM2366.58 821.689C2366.58 820.669 2366.38 819.799 2365.98 819.079C2365.58 818.339 2365.04 817.779 2364.36 817.399C2363.68 816.999 2362.95 816.799 2362.17 816.799C2361.39 816.799 2360.67 816.989 2360.01 817.369C2359.35 817.749 2358.81 818.309 2358.39 819.049C2357.99 819.769 2357.79 820.629 2357.79 821.629C2357.79 822.629 2357.99 823.509 2358.39 824.269C2358.81 825.009 2359.35 825.579 2360.01 825.979C2360.69 826.379 2361.41 826.579 2362.17 826.579C2362.95 826.579 2363.68 826.389 2364.36 826.009C2365.04 825.609 2365.58 825.049 2365.98 824.329C2366.38 823.589 2366.58 822.709 2366.58 821.689Z" fill="#5982F1"/>
|
|
||||||
<path d="M2379.81 816.829V824.869C2379.81 825.429 2379.94 825.839 2380.2 826.099C2380.48 826.339 2380.94 826.459 2381.58 826.459H2383.53V829.999H2380.89C2377.35 829.999 2375.58 828.279 2375.58 824.839V816.829H2373.6V813.379H2375.58V809.269H2379.81V813.379H2383.53V816.829H2379.81Z" fill="#5982F1"/>
|
|
||||||
<path d="M2402 821.329C2402 821.929 2401.96 822.469 2401.88 822.949H2389.73C2389.83 824.149 2390.25 825.089 2390.99 825.769C2391.73 826.449 2392.64 826.789 2393.72 826.789C2395.28 826.789 2396.39 826.119 2397.05 824.779H2401.58C2401.1 826.379 2400.18 827.699 2398.82 828.739C2397.46 829.759 2395.79 830.269 2393.81 830.269C2392.21 830.269 2390.77 829.919 2389.49 829.219C2388.23 828.499 2387.24 827.489 2386.52 826.189C2385.82 824.889 2385.47 823.389 2385.47 821.689C2385.47 819.969 2385.82 818.459 2386.52 817.159C2387.22 815.859 2388.2 814.859 2389.46 814.159C2390.72 813.459 2392.17 813.109 2393.81 813.109C2395.39 813.109 2396.8 813.449 2398.04 814.129C2399.3 814.809 2400.27 815.779 2400.95 817.039C2401.65 818.279 2402 819.709 2402 821.329ZM2397.65 820.129C2397.63 819.049 2397.24 818.189 2396.48 817.549C2395.72 816.889 2394.79 816.559 2393.69 816.559C2392.65 816.559 2391.77 816.879 2391.05 817.519C2390.35 818.139 2389.92 819.009 2389.76 820.129H2397.65Z" fill="#5982F1"/>
|
|
||||||
<path d="M2403.98 821.629C2403.98 819.949 2404.31 818.459 2404.97 817.159C2405.65 815.859 2406.57 814.859 2407.73 814.159C2408.89 813.459 2410.18 813.109 2411.6 813.109C2412.68 813.109 2413.71 813.349 2414.69 813.829C2415.67 814.289 2416.45 814.909 2417.03 815.689V807.799H2421.29V829.999H2417.03V827.539C2416.51 828.359 2415.78 829.019 2414.84 829.519C2413.9 830.019 2412.81 830.269 2411.57 830.269C2410.17 830.269 2408.89 829.909 2407.73 829.189C2406.57 828.469 2405.65 827.459 2404.97 826.159C2404.31 824.839 2403.98 823.329 2403.98 821.629ZM2417.06 821.689C2417.06 820.669 2416.86 819.799 2416.46 819.079C2416.06 818.339 2415.52 817.779 2414.84 817.399C2414.16 816.999 2413.43 816.799 2412.65 816.799C2411.87 816.799 2411.15 816.989 2410.49 817.369C2409.83 817.749 2409.29 818.309 2408.87 819.049C2408.47 819.769 2408.27 820.629 2408.27 821.629C2408.27 822.629 2408.47 823.509 2408.87 824.269C2409.29 825.009 2409.83 825.579 2410.49 825.979C2411.17 826.379 2411.89 826.579 2412.65 826.579C2413.43 826.579 2414.16 826.389 2414.84 826.009C2415.52 825.609 2416.06 825.049 2416.46 824.329C2416.86 823.589 2417.06 822.709 2417.06 821.689Z" fill="#5982F1"/>
|
|
||||||
<path d="M2438.9 830.269C2437.54 830.269 2436.32 830.029 2435.24 829.549C2434.16 829.049 2433.3 828.379 2432.66 827.539C2432.04 826.699 2431.7 825.769 2431.64 824.749H2435.87C2435.95 825.389 2436.26 825.919 2436.8 826.339C2437.36 826.759 2438.05 826.969 2438.87 826.969C2439.67 826.969 2440.29 826.809 2440.73 826.489C2441.19 826.169 2441.42 825.759 2441.42 825.259C2441.42 824.719 2441.14 824.319 2440.58 824.059C2440.04 823.779 2439.17 823.479 2437.97 823.159C2436.73 822.859 2435.71 822.549 2434.91 822.229C2434.13 821.909 2433.45 821.419 2432.87 820.759C2432.31 820.099 2432.03 819.209 2432.03 818.089C2432.03 817.169 2432.29 816.329 2432.81 815.569C2433.35 814.809 2434.11 814.209 2435.09 813.769C2436.09 813.329 2437.26 813.109 2438.6 813.109C2440.58 813.109 2442.16 813.609 2443.34 814.609C2444.52 815.589 2445.17 816.919 2445.29 818.599H2441.27C2441.21 817.939 2440.93 817.419 2440.43 817.039C2439.95 816.639 2439.3 816.439 2438.48 816.439C2437.72 816.439 2437.13 816.579 2436.71 816.859C2436.31 817.139 2436.11 817.529 2436.11 818.029C2436.11 818.589 2436.39 819.019 2436.95 819.319C2437.51 819.599 2438.38 819.889 2439.56 820.189C2440.76 820.489 2441.75 820.799 2442.53 821.119C2443.31 821.439 2443.98 821.939 2444.54 822.619C2445.12 823.279 2445.42 824.159 2445.44 825.259C2445.44 826.219 2445.17 827.079 2444.63 827.839C2444.11 828.599 2443.35 829.199 2442.35 829.639C2441.37 830.059 2440.22 830.269 2438.9 830.269Z" fill="#5982F1"/>
|
|
||||||
<path d="M2453.78 816.829V824.869C2453.78 825.429 2453.91 825.839 2454.17 826.099C2454.45 826.339 2454.91 826.459 2455.55 826.459H2457.5V829.999H2454.86C2451.32 829.999 2449.55 828.279 2449.55 824.839V816.829H2447.57V813.379H2449.55V809.269H2453.78V813.379H2457.5V816.829H2453.78Z" fill="#5982F1"/>
|
|
||||||
<path d="M2459.44 821.629C2459.44 819.949 2459.77 818.459 2460.43 817.159C2461.11 815.859 2462.02 814.859 2463.16 814.159C2464.32 813.459 2465.61 813.109 2467.03 813.109C2468.27 813.109 2469.35 813.359 2470.27 813.859C2471.21 814.359 2471.96 814.989 2472.52 815.749V813.379H2476.75V829.999H2472.52V827.569C2471.98 828.349 2471.23 828.999 2470.27 829.519C2469.33 830.019 2468.24 830.269 2467 830.269C2465.6 830.269 2464.32 829.909 2463.16 829.189C2462.02 828.469 2461.11 827.459 2460.43 826.159C2459.77 824.839 2459.44 823.329 2459.44 821.629ZM2472.52 821.689C2472.52 820.669 2472.32 819.799 2471.92 819.079C2471.52 818.339 2470.98 817.779 2470.3 817.399C2469.62 816.999 2468.89 816.799 2468.11 816.799C2467.33 816.799 2466.61 816.989 2465.95 817.369C2465.29 817.749 2464.75 818.309 2464.33 819.049C2463.93 819.769 2463.73 820.629 2463.73 821.629C2463.73 822.629 2463.93 823.509 2464.33 824.269C2464.75 825.009 2465.29 825.579 2465.95 825.979C2466.63 826.379 2467.35 826.579 2468.11 826.579C2468.89 826.579 2469.62 826.389 2470.3 826.009C2470.98 825.609 2471.52 825.049 2471.92 824.329C2472.32 823.589 2472.52 822.709 2472.52 821.689Z" fill="#5982F1"/>
|
|
||||||
<path d="M2485.74 816.829V824.869C2485.74 825.429 2485.87 825.839 2486.13 826.099C2486.41 826.339 2486.87 826.459 2487.51 826.459H2489.46V829.999H2486.82C2483.28 829.999 2481.51 828.279 2481.51 824.839V816.829H2479.53V813.379H2481.51V809.269H2485.74V813.379H2489.46V816.829H2485.74Z" fill="#5982F1"/>
|
|
||||||
<path d="M2507.93 821.329C2507.93 821.929 2507.89 822.469 2507.81 822.949H2495.66C2495.76 824.149 2496.18 825.089 2496.92 825.769C2497.66 826.449 2498.57 826.789 2499.65 826.789C2501.21 826.789 2502.32 826.119 2502.98 824.779H2507.51C2507.03 826.379 2506.11 827.699 2504.75 828.739C2503.39 829.759 2501.72 830.269 2499.74 830.269C2498.14 830.269 2496.7 829.919 2495.42 829.219C2494.16 828.499 2493.17 827.489 2492.45 826.189C2491.75 824.889 2491.4 823.389 2491.4 821.689C2491.4 819.969 2491.75 818.459 2492.45 817.159C2493.15 815.859 2494.13 814.859 2495.39 814.159C2496.65 813.459 2498.1 813.109 2499.74 813.109C2501.32 813.109 2502.73 813.449 2503.97 814.129C2505.23 814.809 2506.2 815.779 2506.88 817.039C2507.58 818.279 2507.93 819.709 2507.93 821.329ZM2503.58 820.129C2503.56 819.049 2503.17 818.189 2502.41 817.549C2501.65 816.889 2500.72 816.559 2499.62 816.559C2498.58 816.559 2497.7 816.879 2496.98 817.519C2496.28 818.139 2495.85 819.009 2495.69 820.129H2503.58Z" fill="#5982F1"/>
|
|
||||||
<rect width="2752" height="195" rx="97.5" fill="#F2F5FE"/>
|
|
||||||
<path d="M1117.97 90.6151V116.097C1117.97 117.871 1118.39 119.171 1119.21 119.995C1120.1 120.755 1121.56 121.136 1123.58 121.136H1129.76V132.355H1121.4C1110.18 132.355 1104.57 126.904 1104.57 116.001V90.6151H1098.29V79.6809H1104.57V66.6549H1117.97V79.6809H1129.76V90.6151H1117.97Z" fill="#5475FC"/>
|
|
||||||
<path d="M1152.65 87.8578C1154.36 85.0688 1156.58 82.8819 1159.31 81.2973C1162.09 79.7126 1165.26 78.9203 1168.81 78.9203V92.897H1165.3C1161.11 92.897 1157.94 93.8795 1155.79 95.8445C1153.7 97.8095 1152.65 101.232 1152.65 106.113V132.355H1139.34V79.6809H1152.65V87.8578Z" fill="#5475FC"/>
|
|
||||||
<path d="M1174.36 105.828C1174.36 100.503 1175.4 95.7811 1177.49 91.661C1179.65 87.5408 1182.53 84.3715 1186.15 82.153C1189.82 79.9344 1193.91 78.8252 1198.41 78.8252C1202.34 78.8252 1205.76 79.6175 1208.68 81.2022C1211.66 82.7868 1214.04 84.7835 1215.81 87.1922V79.6809H1229.22V132.355H1215.81V124.654C1214.1 127.126 1211.72 129.186 1208.68 130.834C1205.7 132.419 1202.25 133.211 1198.32 133.211C1193.88 133.211 1189.82 132.07 1186.15 129.788C1182.53 127.506 1179.65 124.305 1177.49 120.185C1175.4 116.001 1174.36 111.216 1174.36 105.828ZM1215.81 106.018C1215.81 102.785 1215.18 100.028 1213.91 97.7461C1212.64 95.4008 1210.93 93.626 1208.78 92.4216C1206.62 91.1539 1204.31 90.52 1201.83 90.52C1199.36 90.52 1197.08 91.1222 1194.99 92.3265C1192.9 93.5309 1191.19 95.3057 1189.85 97.651C1188.59 99.9329 1187.95 102.659 1187.95 105.828C1187.95 108.997 1188.59 111.786 1189.85 114.195C1191.19 116.54 1192.9 118.347 1194.99 119.615C1197.14 120.882 1199.43 121.516 1201.83 121.516C1204.31 121.516 1206.62 120.914 1208.78 119.71C1210.93 118.442 1212.64 116.667 1213.91 114.385C1215.18 112.04 1215.81 109.251 1215.81 106.018Z" fill="#5475FC"/>
|
|
||||||
<path d="M1271.41 78.9203C1277.68 78.9203 1282.75 80.9169 1286.62 84.9103C1290.49 88.8403 1292.42 94.3549 1292.42 101.454V132.355H1279.11V103.261C1279.11 99.0772 1278.06 95.8762 1275.97 93.6577C1273.88 91.3757 1271.03 90.2348 1267.41 90.2348C1263.74 90.2348 1260.82 91.3757 1258.67 93.6577C1256.58 95.8762 1255.53 99.0772 1255.53 103.261V132.355H1242.22V79.6809H1255.53V86.2414C1257.3 83.9595 1259.55 82.1847 1262.28 80.9169C1265.07 79.5858 1268.11 78.9203 1271.41 78.9203Z" fill="#5475FC"/>
|
|
||||||
<path d="M1325.24 133.211C1320.93 133.211 1317.06 132.45 1313.64 130.929C1310.21 129.344 1307.49 127.221 1305.46 124.559C1303.49 121.896 1302.42 118.949 1302.23 115.716H1315.63C1315.89 117.745 1316.87 119.424 1318.58 120.755C1320.35 122.087 1322.54 122.752 1325.14 122.752C1327.68 122.752 1329.64 122.245 1331.04 121.231C1332.49 120.217 1333.22 118.917 1333.22 117.333C1333.22 115.621 1332.33 114.353 1330.56 113.529C1328.85 112.642 1326.09 111.691 1322.29 110.677C1318.36 109.726 1315.13 108.744 1312.59 107.73C1310.12 106.715 1307.96 105.162 1306.12 103.071C1304.35 100.979 1303.46 98.1581 1303.46 94.6085C1303.46 91.6927 1304.29 89.0304 1305.93 86.6217C1307.65 84.213 1310.05 82.3114 1313.16 80.9169C1316.33 79.5224 1320.04 78.8252 1324.28 78.8252C1330.56 78.8252 1335.57 80.4098 1339.31 83.5792C1343.05 86.6851 1345.11 90.9003 1345.49 96.2248H1332.75C1332.56 94.1331 1331.67 92.485 1330.08 91.2807C1328.56 90.0129 1326.5 89.3791 1323.9 89.3791C1321.5 89.3791 1319.63 89.8228 1318.29 90.7102C1317.03 91.5976 1316.39 92.8336 1316.39 94.4183C1316.39 96.1931 1317.28 97.5559 1319.06 98.5067C1320.83 99.3942 1323.59 100.313 1327.33 101.264C1331.13 102.215 1334.27 103.197 1336.74 104.212C1339.21 105.226 1341.34 106.81 1343.11 108.966C1344.95 111.057 1345.9 113.846 1345.96 117.333C1345.96 120.375 1345.11 123.101 1343.4 125.509C1341.75 127.918 1339.34 129.82 1336.17 131.214C1333.06 132.545 1329.42 133.211 1325.24 133.211Z" fill="#5475FC"/>
|
|
||||||
<path d="M1353.47 105.828C1353.47 100.503 1354.51 95.7811 1356.6 91.661C1358.76 87.5408 1361.64 84.3715 1365.26 82.153C1368.93 79.9344 1373.02 78.8252 1377.52 78.8252C1381.45 78.8252 1384.87 79.6175 1387.79 81.2022C1390.77 82.7868 1393.15 84.7835 1394.92 87.1922V79.6809H1408.33V132.355H1394.92V124.654C1393.21 127.126 1390.83 129.186 1387.79 130.834C1384.81 132.419 1381.36 133.211 1377.43 133.211C1372.99 133.211 1368.93 132.07 1365.26 129.788C1361.64 127.506 1358.76 124.305 1356.6 120.185C1354.51 116.001 1353.47 111.216 1353.47 105.828ZM1394.92 106.018C1394.92 102.785 1394.29 100.028 1393.02 97.7461C1391.75 95.4008 1390.04 93.626 1387.89 92.4216C1385.73 91.1539 1383.42 90.52 1380.95 90.52C1378.47 90.52 1376.19 91.1222 1374.1 92.3265C1372.01 93.5309 1370.3 95.3057 1368.96 97.651C1367.7 99.9329 1367.06 102.659 1367.06 105.828C1367.06 108.997 1367.7 111.786 1368.96 114.195C1370.3 116.54 1372.01 118.347 1374.1 119.615C1376.25 120.882 1378.54 121.516 1380.95 121.516C1383.42 121.516 1385.73 120.914 1387.89 119.71C1390.04 118.442 1391.75 116.667 1393.02 114.385C1394.29 112.04 1394.92 109.251 1394.92 106.018Z" fill="#5475FC"/>
|
|
||||||
<path d="M1417.91 106.018C1417.91 100.567 1419.02 95.8128 1421.23 91.7561C1423.45 87.6359 1426.53 84.4666 1430.46 82.2481C1434.39 79.9661 1438.89 78.8252 1443.96 78.8252C1450.49 78.8252 1455.87 80.4732 1460.12 83.7693C1464.43 87.0021 1467.32 91.5659 1468.77 97.4609H1454.42C1453.66 95.1789 1452.36 93.4041 1450.52 92.1364C1448.74 90.8053 1446.52 90.1397 1443.86 90.1397C1440.06 90.1397 1437.05 91.5342 1434.83 94.3232C1432.61 97.0489 1431.5 100.947 1431.5 106.018C1431.5 111.026 1432.61 114.924 1434.83 117.713C1437.05 120.439 1440.06 121.801 1443.86 121.801C1449.25 121.801 1452.77 119.393 1454.42 114.575H1468.77C1467.32 120.28 1464.43 124.812 1460.12 128.172C1455.81 131.531 1450.42 133.211 1443.96 133.211C1438.89 133.211 1434.39 132.102 1430.46 129.883C1426.53 127.601 1423.45 124.432 1421.23 120.375C1419.02 116.255 1417.91 111.469 1417.91 106.018Z" fill="#5475FC"/>
|
|
||||||
<path d="M1494.02 90.6151V116.097C1494.02 117.871 1494.44 119.171 1495.26 119.995C1496.15 120.755 1497.6 121.136 1499.63 121.136H1505.81V132.355H1497.45C1486.23 132.355 1480.62 126.904 1480.62 116.001V90.6151H1474.34V79.6809H1480.62V66.6549H1494.02V79.6809H1505.81V90.6151H1494.02Z" fill="#5475FC"/>
|
|
||||||
<path d="M1522.14 73.4056C1519.79 73.4056 1517.83 72.6767 1516.24 71.2188C1514.72 69.6975 1513.96 67.8276 1513.96 65.6091C1513.96 63.3905 1514.72 61.5523 1516.24 60.0944C1517.83 58.5731 1519.79 57.8125 1522.14 57.8125C1524.48 57.8125 1526.42 58.5731 1527.94 60.0944C1529.52 61.5523 1530.31 63.3905 1530.31 65.6091C1530.31 67.8276 1529.52 69.6975 1527.94 71.2188C1526.42 72.6767 1524.48 73.4056 1522.14 73.4056ZM1528.7 79.6809V132.355H1515.39V79.6809H1528.7Z" fill="#5475FC"/>
|
|
||||||
<path d="M1565.24 133.211C1560.17 133.211 1555.6 132.102 1551.55 129.883C1547.49 127.601 1544.29 124.4 1541.95 120.28C1539.66 116.16 1538.52 111.406 1538.52 106.018C1538.52 100.63 1539.69 95.8762 1542.04 91.7561C1544.45 87.6359 1547.71 84.4666 1551.83 82.2481C1555.95 79.9661 1560.55 78.8252 1565.62 78.8252C1570.69 78.8252 1575.29 79.9661 1579.41 82.2481C1583.53 84.4666 1586.76 87.6359 1589.1 91.7561C1591.51 95.8762 1592.72 100.63 1592.72 106.018C1592.72 111.406 1591.48 116.16 1589.01 120.28C1586.6 124.4 1583.3 127.601 1579.12 129.883C1575 132.102 1570.37 133.211 1565.24 133.211ZM1565.24 121.611C1567.65 121.611 1569.9 121.041 1571.99 119.9C1574.15 118.695 1575.86 116.921 1577.12 114.575C1578.39 112.23 1579.03 109.378 1579.03 106.018C1579.03 101.011 1577.7 97.1756 1575.03 94.5134C1572.43 91.7878 1569.23 90.4249 1565.43 90.4249C1561.63 90.4249 1558.43 91.7878 1555.83 94.5134C1553.29 97.1756 1552.02 101.011 1552.02 106.018C1552.02 111.026 1553.26 114.892 1555.73 117.618C1558.27 120.28 1561.44 121.611 1565.24 121.611Z" fill="#5475FC"/>
|
|
||||||
<path d="M1631.67 78.9203C1637.95 78.9203 1643.02 80.9169 1646.88 84.9103C1650.75 88.8403 1652.68 94.3549 1652.68 101.454V132.355H1639.37V103.261C1639.37 99.0772 1638.33 95.8762 1636.24 93.6577C1634.14 91.3757 1631.29 90.2348 1627.68 90.2348C1624 90.2348 1621.09 91.3757 1618.93 93.6577C1616.84 95.8762 1615.79 99.0772 1615.79 103.261V132.355H1602.48V79.6809H1615.79V86.2414C1617.57 83.9595 1619.82 82.1847 1622.54 80.9169C1625.33 79.5858 1628.38 78.9203 1631.67 78.9203Z" fill="#5475FC"/>
|
|
||||||
<path d="M1685.5 133.211C1681.19 133.211 1677.32 132.45 1673.9 130.929C1670.48 129.344 1667.75 127.221 1665.72 124.559C1663.76 121.896 1662.68 118.949 1662.49 115.716H1675.9C1676.15 117.745 1677.13 119.424 1678.84 120.755C1680.62 122.087 1682.81 122.752 1685.4 122.752C1687.94 122.752 1689.9 122.245 1691.3 121.231C1692.76 120.217 1693.49 118.917 1693.49 117.333C1693.49 115.621 1692.6 114.353 1690.82 113.529C1689.11 112.642 1686.36 111.691 1682.55 110.677C1678.62 109.726 1675.39 108.744 1672.85 107.73C1670.38 106.715 1668.23 105.162 1666.39 103.071C1664.61 100.979 1663.73 98.1581 1663.73 94.6085C1663.73 91.6927 1664.55 89.0304 1666.2 86.6217C1667.91 84.213 1670.32 82.3114 1673.42 80.9169C1676.59 79.5224 1680.3 78.8252 1684.55 78.8252C1690.82 78.8252 1695.83 80.4098 1699.57 83.5792C1703.31 86.6851 1705.37 90.9003 1705.75 96.2248H1693.01C1692.82 94.1331 1691.93 92.485 1690.35 91.2807C1688.83 90.0129 1686.77 89.3791 1684.17 89.3791C1681.76 89.3791 1679.89 89.8228 1678.56 90.7102C1677.29 91.5976 1676.66 92.8336 1676.66 94.4183C1676.66 96.1931 1677.54 97.5559 1679.32 98.5067C1681.09 99.3942 1683.85 100.313 1687.59 101.264C1691.39 102.215 1694.53 103.197 1697 104.212C1699.48 105.226 1701.6 106.81 1703.37 108.966C1705.21 111.057 1706.16 113.846 1706.23 117.333C1706.23 120.375 1705.37 123.101 1703.66 125.509C1702.01 127.918 1699.6 129.82 1696.43 131.214C1693.33 132.545 1689.68 133.211 1685.5 133.211Z" fill="#5475FC"/>
|
|
||||||
<path d="M1763.12 61.996V132.355H1749.81V61.996H1763.12Z" fill="#5475FC"/>
|
|
||||||
<path d="M1783.02 73.4056C1780.68 73.4056 1778.71 72.6767 1777.13 71.2188C1775.61 69.6975 1774.85 67.8276 1774.85 65.6091C1774.85 63.3905 1775.61 61.5523 1777.13 60.0944C1778.71 58.5731 1780.68 57.8125 1783.02 57.8125C1785.37 57.8125 1787.3 58.5731 1788.82 60.0944C1790.41 61.5523 1791.2 63.3905 1791.2 65.6091C1791.2 67.8276 1790.41 69.6975 1788.82 71.2188C1787.3 72.6767 1785.37 73.4056 1783.02 73.4056ZM1789.58 79.6809V132.355H1776.27V79.6809H1789.58Z" fill="#5475FC"/>
|
|
||||||
<path d="M1826.89 90.6151H1817.66V132.355H1804.16V90.6151H1798.17V79.6809H1804.16V77.0187C1804.16 70.5532 1806 65.7992 1809.68 62.7567C1813.35 59.7141 1818.9 58.2879 1826.31 58.4781V69.6975C1823.08 69.6341 1820.83 70.1729 1819.56 71.3139C1818.3 72.4548 1817.66 74.5149 1817.66 77.4941V79.6809H1826.89V90.6151Z" fill="#5475FC"/>
|
|
||||||
<path d="M1884.48 104.877C1884.48 106.779 1884.35 108.49 1884.1 110.011H1845.59C1845.91 113.815 1847.24 116.794 1849.58 118.949C1851.93 121.104 1854.81 122.182 1858.24 122.182C1863.18 122.182 1866.7 120.058 1868.79 115.811H1883.15C1881.63 120.882 1878.71 125.066 1874.4 128.362C1870.09 131.595 1864.8 133.211 1858.52 133.211C1853.45 133.211 1848.89 132.102 1844.83 129.883C1840.84 127.601 1837.7 124.4 1835.42 120.28C1833.2 116.16 1832.09 111.406 1832.09 106.018C1832.09 100.567 1833.2 95.7811 1835.42 91.661C1837.64 87.5408 1840.74 84.3715 1844.73 82.153C1848.73 79.9344 1853.32 78.8252 1858.52 78.8252C1863.53 78.8252 1868 79.9028 1871.93 82.0579C1875.92 84.213 1878.99 87.2873 1881.15 91.2807C1883.37 95.2106 1884.48 99.7428 1884.48 104.877ZM1870.69 101.074C1870.63 97.651 1869.39 94.9254 1866.98 92.897C1864.57 90.8053 1861.63 89.7594 1858.14 89.7594C1854.84 89.7594 1852.06 90.7736 1849.77 92.8019C1847.56 94.7669 1846.19 97.5242 1845.69 101.074H1870.69Z" fill="#5475FC"/>
|
|
||||||
<path d="M1890.77 106.018C1890.77 100.567 1891.88 95.8128 1894.1 91.7561C1896.32 87.6359 1899.39 84.4666 1903.32 82.2481C1907.25 79.9661 1911.75 78.8252 1916.82 78.8252C1923.35 78.8252 1928.74 80.4732 1932.99 83.7693C1937.3 87.0021 1940.18 91.5659 1941.64 97.4609H1927.28C1926.52 95.1789 1925.22 93.4041 1923.38 92.1364C1921.61 90.8053 1919.39 90.1397 1916.73 90.1397C1912.92 90.1397 1909.91 91.5342 1907.7 94.3232C1905.48 97.0489 1904.37 100.947 1904.37 106.018C1904.37 111.026 1905.48 114.924 1907.7 117.713C1909.91 120.439 1912.92 121.801 1916.73 121.801C1922.12 121.801 1925.63 119.393 1927.28 114.575H1941.64C1940.18 120.28 1937.3 124.812 1932.99 128.172C1928.68 131.531 1923.29 133.211 1916.82 133.211C1911.75 133.211 1907.25 132.102 1903.32 129.883C1899.39 127.601 1896.32 124.432 1894.1 120.375C1891.88 116.255 1890.77 111.469 1890.77 106.018Z" fill="#5475FC"/>
|
|
||||||
<path d="M2001.78 79.6809L1969.17 157.266H1955L1966.41 131.024L1945.31 79.6809H1960.23L1973.83 116.477L1987.62 79.6809H2001.78Z" fill="#5475FC"/>
|
|
||||||
<path d="M2005.54 106.018C2005.54 100.567 2006.64 95.8128 2008.86 91.7561C2011.08 87.6359 2014.16 84.4666 2018.09 82.2481C2022.02 79.9661 2026.52 78.8252 2031.59 78.8252C2038.12 78.8252 2043.5 80.4732 2047.75 83.7693C2052.06 87.0021 2054.95 91.5659 2056.4 97.4609H2042.05C2041.29 95.1789 2039.99 93.4041 2038.15 92.1364C2036.37 90.8053 2034.15 90.1397 2031.49 90.1397C2027.69 90.1397 2024.68 91.5342 2022.46 94.3232C2020.24 97.0489 2019.13 100.947 2019.13 106.018C2019.13 111.026 2020.24 114.924 2022.46 117.713C2024.68 120.439 2027.69 121.801 2031.49 121.801C2036.88 121.801 2040.4 119.393 2042.05 114.575H2056.4C2054.95 120.28 2052.06 124.812 2047.75 128.172C2043.44 131.531 2038.05 133.211 2031.59 133.211C2026.52 133.211 2022.02 132.102 2018.09 129.883C2014.16 127.601 2011.08 124.432 2008.86 120.375C2006.64 116.255 2005.54 111.469 2005.54 106.018Z" fill="#5475FC"/>
|
|
||||||
<path d="M2079.47 61.996V132.355H2066.15V61.996H2079.47Z" fill="#5475FC"/>
|
|
||||||
<path d="M2141.58 104.877C2141.58 106.779 2141.46 108.49 2141.2 110.011H2102.7C2103.01 113.815 2104.34 116.794 2106.69 118.949C2109.03 121.104 2111.92 122.182 2115.34 122.182C2120.29 122.182 2123.8 120.058 2125.9 115.811H2140.25C2138.73 120.882 2135.82 125.066 2131.51 128.362C2127.2 131.595 2121.9 133.211 2115.63 133.211C2110.56 133.211 2105.99 132.102 2101.94 129.883C2097.94 127.601 2094.8 124.4 2092.52 120.28C2090.3 116.16 2089.19 111.406 2089.19 106.018C2089.19 100.567 2090.3 95.7811 2092.52 91.661C2094.74 87.5408 2097.85 84.3715 2101.84 82.153C2105.83 79.9344 2110.43 78.8252 2115.63 78.8252C2120.63 78.8252 2125.1 79.9028 2129.03 82.0579C2133.03 84.213 2136.1 87.2873 2138.26 91.2807C2140.47 95.2106 2141.58 99.7428 2141.58 104.877ZM2127.8 101.074C2127.73 97.651 2126.5 94.9254 2124.09 92.897C2121.68 90.8053 2118.73 89.7594 2115.25 89.7594C2111.95 89.7594 2109.16 90.7736 2106.88 92.8019C2104.66 94.7669 2103.3 97.5242 2102.79 101.074H2127.8Z" fill="#5475FC"/>
|
|
||||||
<path d="M774.012 132.325C773.457 132.325 772.962 131.978 772.772 131.457L747.973 63.3065C747.659 62.4456 748.297 61.5352 749.213 61.5352H761.474C762.029 61.5352 762.524 61.8813 762.714 62.4017L778.156 104.62C778.322 105.072 778.956 105.085 779.14 104.641L794.494 67.6293C794.699 67.1364 795.18 66.8151 795.713 66.8151H807.355C807.887 66.8151 808.368 67.1352 808.573 67.6267L824.023 104.645C824.208 105.089 824.841 105.074 825.006 104.623L840.423 62.4024C840.613 61.8816 841.108 61.5352 841.663 61.5352H853.868C854.784 61.5352 855.422 62.4456 855.108 63.3065L830.309 131.457C830.12 131.978 829.624 132.325 829.069 132.325H819.899C819.354 132.325 818.866 131.991 818.668 131.483L801.985 88.4933C801.81 88.0436 801.174 88.0441 801 88.4941L784.398 131.481C784.202 131.99 783.712 132.325 783.167 132.325H774.012Z" fill="#233562"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M864.448 130.411C866.564 131.688 868.893 132.326 871.432 132.326H914.063C914.792 132.326 915.383 131.735 915.383 131.006V89.2068C915.383 86.7089 914.755 84.4017 913.5 82.2853C912.245 80.1689 910.572 78.4757 908.48 77.2057C906.388 75.9358 904.048 75.3008 901.461 75.3008H863.598C862.869 75.3008 862.278 75.8918 862.278 76.6208V87.9867C862.278 88.7157 862.869 89.3067 863.598 89.3067H900.792C900.948 89.3067 901.082 89.3625 901.194 89.4742C901.306 89.5858 901.362 89.72 901.362 89.8766V96.2497C901.362 96.5376 901.131 96.7724 900.843 96.7776L869.71 97.3401C862.946 97.4623 857.526 102.981 857.526 109.746V118.42C857.526 120.939 858.151 123.249 859.4 125.348C860.649 127.447 862.331 129.135 864.448 130.411ZM900.833 118.32H872.102C871.945 118.32 871.811 118.264 871.7 118.152C871.588 118.041 871.532 117.906 871.532 117.75V109.712C871.532 109.42 871.769 109.184 872.06 109.184H900.833C901.125 109.184 901.361 109.42 901.361 109.712V117.792C901.361 118.083 901.125 118.32 900.833 118.32Z" fill="#233562"/>
|
|
||||||
<path d="M927.873 132.324C927.144 132.324 926.553 131.733 926.553 131.004V89.2049C926.553 86.6855 927.191 84.3762 928.468 82.2772C929.744 80.1782 931.441 78.4904 933.557 77.2138C935.674 75.9371 938.002 75.2988 940.542 75.2988H970.772C971.501 75.2988 972.092 75.8898 972.092 76.6188V87.9848C972.092 88.7138 971.501 89.3047 970.772 89.3047H941.129C940.972 89.3047 940.838 89.3606 940.726 89.4722C940.614 89.5838 940.559 89.718 940.559 89.8747V131.004C940.559 131.733 939.968 132.324 939.239 132.324H927.873Z" fill="#233562"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M980.901 145.7C980.901 146.429 981.492 147.02 982.221 147.02H993.587C994.316 147.02 994.907 146.429 994.907 145.7V132.854C994.907 132.562 995.144 132.326 995.435 132.326H1024.85C1027.39 132.326 1029.72 131.688 1031.84 130.411C1033.95 129.135 1035.64 127.447 1036.88 125.348C1038.13 123.249 1038.76 120.939 1038.76 118.42V89.2068C1038.76 86.6874 1038.13 84.3782 1036.88 82.2792C1035.64 80.1801 1033.95 78.4923 1031.84 77.2157C1029.72 75.9391 1027.39 75.3008 1024.85 75.3008H982.221C981.492 75.3008 980.901 75.8918 980.901 76.6208V145.7ZM1024.18 118.32H995.491C995.335 118.32 995.199 118.264 995.082 118.153C994.966 118.041 994.907 117.907 994.907 117.75V89.8766C994.907 89.7199 994.966 89.5857 995.082 89.4741C995.199 89.3625 995.335 89.3066 995.491 89.3066H1024.18C1024.34 89.3066 1024.47 89.3625 1024.58 89.4741C1024.7 89.5857 1024.75 89.7199 1024.75 89.8766V117.75C1024.75 117.907 1024.7 118.041 1024.58 118.153C1024.47 118.264 1024.34 118.32 1024.18 118.32Z" fill="#233562"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M612.407 64.3688C611.584 63.9303 611.551 62.7624 612.348 62.2781L659.817 33.4374C660.777 32.8542 661.981 32.8542 662.941 33.4374L710.214 62.1588C711.012 62.6438 710.977 63.8135 710.152 64.2507L698.063 70.6554C697.127 71.1516 695.998 71.1184 695.093 70.5681L662.942 51.034C661.982 50.4508 660.777 50.4508 659.817 51.034L627.44 70.7055C626.532 71.257 625.401 71.289 624.464 70.7897L612.407 64.3688ZM700.486 135.13C701.271 135.591 701.279 136.723 700.501 137.196L662.941 160.016C661.981 160.6 660.777 160.6 659.817 160.016L622.245 137.188C621.475 136.72 621.474 135.602 622.243 135.133L633.44 128.298C634.4 127.712 635.608 127.711 636.57 128.295L659.817 142.42C660.777 143.003 661.982 143.003 662.942 142.42L685.962 128.433C686.909 127.858 688.094 127.849 689.049 128.41L700.486 135.13ZM647.107 122.538C646.374 123.012 646.374 124.085 647.107 124.559L660.137 132.983C660.833 133.433 661.728 133.433 662.424 132.983L675.454 124.559C676.187 124.085 676.187 123.012 675.454 122.538L662.424 114.114C661.728 113.664 660.833 113.664 660.137 114.114L647.107 122.538Z" fill="url(#paint0_linear_6_2146)"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M713.992 70.7735C714.793 70.3471 715.76 70.928 715.76 71.836V124.553C715.76 126.648 714.671 128.592 712.884 129.686L712.544 129.894C710.633 131.063 708.231 131.074 706.309 129.922L703.684 128.349L701.894 127.325L695.83 123.641L694.834 123.044L694.841 123.04L662.942 103.658C661.982 103.075 660.777 103.075 659.817 103.658L627.92 123.039L627.929 123.045L616.595 129.951C614.674 131.121 612.262 131.122 610.34 129.954L609.893 129.683C608.097 128.591 607 126.642 607 124.54V72.106C607 71.1984 607.966 70.6174 608.768 71.0432L620.44 77.2439C621.423 77.766 622.037 78.788 622.037 79.9009V109.017L659.817 86.0621C660.777 85.4789 661.982 85.4789 662.942 86.0621L700.723 109.018V79.6401C700.723 78.5279 701.337 77.5064 702.319 76.984L713.992 70.7735Z" fill="#233562"/>
|
|
||||||
<g filter="url(#filter27_d_6_2146)">
|
|
||||||
<rect x="397" y="1005" width="342" height="119" rx="23" stroke="#CDDAFF" stroke-width="4"/>
|
|
||||||
</g>
|
|
||||||
<g filter="url(#filter28_d_6_2146)">
|
|
||||||
<rect x="919" y="1386" width="304" height="119" rx="23" stroke="#CDDAFF" stroke-width="4"/>
|
|
||||||
</g>
|
|
||||||
<g filter="url(#filter29_d_6_2146)">
|
|
||||||
<rect x="944" y="507" width="253" height="119" rx="23" stroke="#CDDAFF" stroke-width="4"/>
|
|
||||||
</g>
|
|
||||||
<g filter="url(#filter30_d_6_2146)">
|
|
||||||
<rect x="1845" y="510" width="462" height="119" rx="23" stroke="#CDDAFF" stroke-width="4"/>
|
|
||||||
</g>
|
|
||||||
<g filter="url(#filter31_d_6_2146)">
|
|
||||||
<rect x="1420" y="1006" width="309" height="119" rx="23" stroke="#CDDAFF" stroke-width="4"/>
|
|
||||||
</g>
|
|
||||||
<g filter="url(#filter32_d_6_2146)">
|
|
||||||
<rect x="1978" y="1386" width="197" height="119" rx="23" stroke="#CDDAFF" stroke-width="4"/>
|
|
||||||
</g>
|
|
||||||
<defs>
|
|
||||||
<filter id="filter0_f_6_2146" x="373.086" y="520.086" width="704.828" height="704.828" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
||||||
<feGaussianBlur stdDeviation="67.957" result="effect1_foregroundBlur_6_2146"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter1_f_6_2146" x="1729.09" y="467.086" width="451.828" height="451.828" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
||||||
<feGaussianBlur stdDeviation="67.957" result="effect1_foregroundBlur_6_2146"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter2_d_6_2146" x="406" y="655" width="339" height="339" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dx="8" dy="8"/>
|
|
||||||
<feGaussianBlur stdDeviation="26"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 0.349741 0 0 0 0 0.508704 0 0 0 0 0.945525 0 0 0 0.368773 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter3_d_6_2146" x="528.92" y="757.043" width="100.127" height="125.889" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dy="4"/>
|
|
||||||
<feGaussianBlur stdDeviation="7"/>
|
|
||||||
<feComposite in2="hardAlpha" operator="out"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 0.349741 0 0 0 0 0.508704 0 0 0 0 0.945525 0 0 0 0.2 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter4_d_6_2146" x="910" y="655" width="339" height="339" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dx="8" dy="8"/>
|
|
||||||
<feGaussianBlur stdDeviation="26"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 0.349741 0 0 0 0 0.508704 0 0 0 0 0.945525 0 0 0 0.368773 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter5_d_6_2146" x="1020.89" y="754.914" width="127.247" height="128.016" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dy="4"/>
|
|
||||||
<feGaussianBlur stdDeviation="7"/>
|
|
||||||
<feComposite in2="hardAlpha" operator="out"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 0.349741 0 0 0 0 0.508704 0 0 0 0 0.945525 0 0 0 0.2 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter6_d_6_2146" x="1410" y="655" width="339" height="339" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dx="8" dy="8"/>
|
|
||||||
<feGaussianBlur stdDeviation="26"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 0.349741 0 0 0 0 0.508704 0 0 0 0 0.945525 0 0 0 0.368773 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter7_d_6_2146" x="1509.51" y="758.24" width="138.407" height="124.691" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dy="4"/>
|
|
||||||
<feGaussianBlur stdDeviation="7"/>
|
|
||||||
<feComposite in2="hardAlpha" operator="out"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 0.349741 0 0 0 0 0.508704 0 0 0 0 0.945525 0 0 0 0.2 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter8_d_6_2146" x="908" y="1035" width="339" height="339" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dx="8" dy="8"/>
|
|
||||||
<feGaussianBlur stdDeviation="26"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 0.349741 0 0 0 0 0.508704 0 0 0 0 0.945525 0 0 0 0.368773 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter9_d_6_2146" x="1017.4" y="1134.78" width="130.361" height="128.148" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dy="4"/>
|
|
||||||
<feGaussianBlur stdDeviation="7"/>
|
|
||||||
<feComposite in2="hardAlpha" operator="out"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 0.349741 0 0 0 0 0.508704 0 0 0 0 0.945525 0 0 0 0.2 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter10_d_6_2146" x="1915" y="1035" width="339" height="339" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dx="8" dy="8"/>
|
|
||||||
<feGaussianBlur stdDeviation="26"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 0.349741 0 0 0 0 0.508704 0 0 0 0 0.945525 0 0 0 0.368773 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter11_d_6_2146" x="2023.37" y="1134.78" width="132.624" height="128.148" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dy="4"/>
|
|
||||||
<feGaussianBlur stdDeviation="7"/>
|
|
||||||
<feComposite in2="hardAlpha" operator="out"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 0.349741 0 0 0 0 0.508704 0 0 0 0 0.945525 0 0 0 0.2 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter12_d_6_2146" x="1915" y="655" width="339" height="339" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dx="8" dy="8"/>
|
|
||||||
<feGaussianBlur stdDeviation="26"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 0.349741 0 0 0 0 0.508704 0 0 0 0 0.945525 0 0 0 0.368773 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter13_d_6_2146" x="2022.94" y="756.777" width="131.813" height="126.154" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dy="4"/>
|
|
||||||
<feGaussianBlur stdDeviation="7"/>
|
|
||||||
<feComposite in2="hardAlpha" operator="out"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 0.349741 0 0 0 0 0.508704 0 0 0 0 0.945525 0 0 0 0.2 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter14_d_6_2146" x="706" y="807.727" width="218.5" height="22" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dy="2"/>
|
|
||||||
<feGaussianBlur stdDeviation="3"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 0.736618 0 0 0 0 0.292771 0 0 0 0.286883 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter15_d_6_2146" x="1210" y="807.727" width="218.5" height="22" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dy="2"/>
|
|
||||||
<feGaussianBlur stdDeviation="3"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 0.736618 0 0 0 0 0.292771 0 0 0 0.286883 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter16_d_6_2146" x="1178.5" y="878.271" width="265.345" height="258.227" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dy="2"/>
|
|
||||||
<feGaussianBlur stdDeviation="3"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 0.736618 0 0 0 0 0.292771 0 0 0 0.286883 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter17_d_6_2146" x="1061.27" y="955" width="22" height="102" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dy="2"/>
|
|
||||||
<feGaussianBlur stdDeviation="3"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 0.736618 0 0 0 0 0.292771 0 0 0 0.286883 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter18_d_6_2146" x="2031.27" y="956" width="22" height="102" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dy="2"/>
|
|
||||||
<feGaussianBlur stdDeviation="3"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 0.736618 0 0 0 0 0.292771 0 0 0 0.286883 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter19_d_6_2146" x="2098.73" y="965.5" width="22" height="102" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dy="2"/>
|
|
||||||
<feGaussianBlur stdDeviation="3"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 0.736618 0 0 0 0 0.292771 0 0 0 0.286883 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter20_d_6_2146" x="1710" y="807.727" width="218.5" height="22" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dy="2"/>
|
|
||||||
<feGaussianBlur stdDeviation="3"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 0.736618 0 0 0 0 0.292771 0 0 0 0.286883 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter21_d_6_2146" x="284" y="707.994" width="150.397" height="231.332" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dx="4" dy="4"/>
|
|
||||||
<feGaussianBlur stdDeviation="10"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 0.736618 0 0 0 0 0.292771 0 0 0 0.46 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter22_d_6_2146" x="12" y="741" width="318" height="46" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dx="4" dy="4"/>
|
|
||||||
<feGaussianBlur stdDeviation="10"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 0.736618 0 0 0 0 0.292771 0 0 0 0.46 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter23_d_6_2146" x="12" y="859" width="318" height="46" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dx="4" dy="4"/>
|
|
||||||
<feGaussianBlur stdDeviation="10"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 0.736618 0 0 0 0 0.292771 0 0 0 0.46 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter24_d_6_2146" x="2492" y="707.994" width="150.397" height="231.332" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dx="4" dy="4"/>
|
|
||||||
<feGaussianBlur stdDeviation="10"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 0.736618 0 0 0 0 0.292771 0 0 0 0.46 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter25_d_6_2146" x="2220" y="741" width="318" height="46" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dx="4" dy="4"/>
|
|
||||||
<feGaussianBlur stdDeviation="10"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 0.736618 0 0 0 0 0.292771 0 0 0 0.46 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter26_d_6_2146" x="2220" y="859" width="318" height="46" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dx="4" dy="4"/>
|
|
||||||
<feGaussianBlur stdDeviation="10"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 0.736618 0 0 0 0 0.292771 0 0 0 0.46 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter27_d_6_2146" x="369" y="979" width="398" height="175" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dy="2"/>
|
|
||||||
<feGaussianBlur stdDeviation="13"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 0.34902 0 0 0 0 0.509804 0 0 0 0 0.945098 0 0 0 0.22 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter28_d_6_2146" x="891" y="1360" width="360" height="175" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dy="2"/>
|
|
||||||
<feGaussianBlur stdDeviation="13"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 0.34902 0 0 0 0 0.509804 0 0 0 0 0.945098 0 0 0 0.22 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter29_d_6_2146" x="916" y="481" width="309" height="175" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dy="2"/>
|
|
||||||
<feGaussianBlur stdDeviation="13"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 0.34902 0 0 0 0 0.509804 0 0 0 0 0.945098 0 0 0 0.22 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter30_d_6_2146" x="1817" y="484" width="518" height="175" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dy="2"/>
|
|
||||||
<feGaussianBlur stdDeviation="13"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 0.34902 0 0 0 0 0.509804 0 0 0 0 0.945098 0 0 0 0.22 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter31_d_6_2146" x="1392" y="980" width="365" height="175" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dy="2"/>
|
|
||||||
<feGaussianBlur stdDeviation="13"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 0.34902 0 0 0 0 0.509804 0 0 0 0 0.945098 0 0 0 0.22 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<filter id="filter32_d_6_2146" x="1950" y="1360" width="253" height="175" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
||||||
<feOffset dy="2"/>
|
|
||||||
<feGaussianBlur stdDeviation="13"/>
|
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 0.34902 0 0 0 0 0.509804 0 0 0 0 0.945098 0 0 0 0.22 0"/>
|
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_6_2146"/>
|
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_6_2146" result="shape"/>
|
|
||||||
</filter>
|
|
||||||
<linearGradient id="paint0_linear_6_2146" x1="610.055" y1="147.758" x2="704.206" y2="159.59" gradientUnits="userSpaceOnUse">
|
|
||||||
<stop stop-color="#7398FF"/>
|
|
||||||
<stop offset="1" stop-color="#4D6DFA"/>
|
|
||||||
</linearGradient>
|
|
||||||
</defs>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 320 KiB |
BIN
docs/img_1.png
BIN
docs/img_1.png
Binary file not shown.
|
Before Width: | Height: | Size: 168 KiB |
BIN
docs/img_2.png
BIN
docs/img_2.png
Binary file not shown.
|
Before Width: | Height: | Size: 183 KiB |
Reference in New Issue
Block a user