Compare commits

...
Author SHA1 Message Date
David Himmelstrup
583ee9f426
remove invalid site checking workflow 2025-02-06 19:32:19 +01:00
dependabot[bot]
82638c078c
Bump qs from 6.5.2 to 6.5.3 in /viewer-elm (#302) 2022-12-21 12:22:43 +01:00
dependabot[bot]
d8e853b1b7
Bump actions/cache from 3.0.10 to 3.0.11 (#297) 2022-12-21 12:22:12 +01:00
AndreasPK
7d949ea0ea
Fix build for ghc-9.2 (#301)
* Fix builds against hashable >= 1.4

Derive Eq for APolygon as required by the added Eq constraint on
Hashable.

* Bump version to 1.1.7 for new instance, relax aeson bounds.
2022-12-21 12:21:48 +01:00
dependabot[bot]
d4d3898831
Bump actions/cache from 3.0.5 to 3.0.10 (#296)
Bumps [actions/cache](https://github.com/actions/cache) from 3.0.5 to 3.0.10.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v3.0.5...v3.0.10)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-10-12 16:00:23 +02:00
dependabot[bot]
4a5f608654
Bump JamesIves/github-pages-deploy-action from 4.3.4 to 4.4.0 (#291)
Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 4.3.4 to 4.4.0.
- [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases)
- [Commits](https://github.com/JamesIves/github-pages-deploy-action/compare/v4.3.4...v4.4.0)

---
updated-dependencies:
- dependency-name: JamesIves/github-pages-deploy-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-07-21 14:05:06 +02:00
dependabot[bot]
c95b0fe9c2
Bump actions/cache from 3.0.4 to 3.0.5 (#290)
Bumps [actions/cache](https://github.com/actions/cache) from 3.0.4 to 3.0.5.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v3.0.4...v3.0.5)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-07-21 13:25:51 +02:00
dependabot[bot]
4a3ec6b43f
Bump JamesIves/github-pages-deploy-action from 4.3.3 to 4.3.4 (#289)
Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 4.3.3 to 4.3.4.
- [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases)
- [Commits](https://github.com/JamesIves/github-pages-deploy-action/compare/v4.3.3...v4.3.4)

---
updated-dependencies:
- dependency-name: JamesIves/github-pages-deploy-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-06-27 14:53:04 +02:00
Anjali Smith
d0263d15aa
Fork() and Waitpid() Simulator (#288)
Co-authored-by: Anjali Smith <anjalismith@Anjalis-Air.home>
2022-06-12 11:56:42 +02:00
dependabot[bot]
a1d946c1b9
Bump actions/cache from 3.0.3 to 3.0.4 (#283)
Bumps [actions/cache](https://github.com/actions/cache) from 3.0.3 to 3.0.4.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v3.0.3...v3.0.4)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-06-07 14:06:05 +02:00
David Himmelstrup
f58a00e56a
Disable hgeometry dependency and bump version. (#282) 2022-06-02 20:09:15 +02:00
Paul Gardiner
ed1c0ba6c1
Hierarchical sprites and objects (#269)
* Separate sprite creation from adding to scene

This is work towards supporting hierarchical sprites and objects:
the Sprite data definition is updated to include it's generator and
a new function newSpritePart is added to create a sprite without
adding the generator to the scene, making it invisible. Later commits
will provide a way for sprites created by newSpritePart to be used
in the definitions of other sprites.

* Support use of one sprite within another

This is work towards supporting hierarchical sprites and objects.
A new function, renderSprite, is defined that exposes its generator
in the form of a Frame context that can be used in the definitions
of other sprites.

Some internal types have had to be changed to support renderSprite. The
frame context created by renderSprite runs the sprite's generator, and must
supply the scene duration to it, and so the frame type has had to be updated
also to be dependent on the scene duration. In turn, a sprite's effects
mapping needs to be able to interpret a frame context in the implementation
of spriteModify, and so the effects mapping has also had to be made
dependent on the scene duration.

* Support use of objects within hierarchical sprites

Allow use of objects as leaves within a hierarchically
defined sprite. Two new functions are added:

  The function newObjectPart creates an object, not immediately
  added to the scene, so invisible even after calls to oShow, and
  mainfesting only if used within the definition of a sprite.

  The function renderObject exposes the generator of the object's
  internal sprite in the form of a frame context that can be used
  in the definitions of other sprites.

* Add example script showing use of newObjectPart and renderObject

This is a slightly contrived example, chosen to show an animation that
is difficult to contruct other than hiearchically. Two strings are placed
one over the other. They are shown using oDraw which requires their being
Objects. The overlapping strings are faded out, which requires
opacity to be applied at the group level: fading each individually would
lead to the lower string becoming visible through the upper one as opacity
is decreased.
2022-06-02 15:40:56 +02:00
dependabot[bot]
f70ef76ddb
Bump actions/cache from 3.0.2 to 3.0.3 (#280)
Bumps [actions/cache](https://github.com/actions/cache) from 3.0.2 to 3.0.3.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v3.0.2...v3.0.3)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-06-02 15:40:14 +02:00
dependabot[bot]
594a7a491f
Bump JamesIves/github-pages-deploy-action from 4.3.0 to 4.3.3 (#278)
Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 4.3.0 to 4.3.3.
- [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases)
- [Commits](https://github.com/JamesIves/github-pages-deploy-action/compare/v4.3.0...v4.3.3)

---
updated-dependencies:
- dependency-name: JamesIves/github-pages-deploy-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-06-02 15:40:03 +02:00
dependabot[bot]
6f0dba7284
Bump actions/cache from 3.0.1 to 3.0.2 (#276)
Bumps [actions/cache](https://github.com/actions/cache) from 3.0.1 to 3.0.2.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v3.0.1...v3.0.2)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-04-11 15:57:34 +02:00
dependabot[bot]
33a0d488aa
Bump JamesIves/github-pages-deploy-action from 4.2.5 to 4.3.0 (#275)
Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 4.2.5 to 4.3.0.
- [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases)
- [Commits](https://github.com/JamesIves/github-pages-deploy-action/compare/v4.2.5...v4.3.0)

---
updated-dependencies:
- dependency-name: JamesIves/github-pages-deploy-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-04-11 15:57:09 +02:00
dependabot[bot]
c5ab0606e7
Bump actions/cache from 2 to 3.0.1 (#274)
Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.0.1.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v2...v3.0.1)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-04-05 13:16:53 +02:00
dependabot[bot]
d0a606e7bb
Bump actions/checkout from 2 to 3 (#268)
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2...v3)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-03-30 14:15:11 +02:00
dependabot[bot]
19df0ae7a8
Bump minimist from 1.2.5 to 1.2.6 in /viewer-elm (#272)
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6.
- [Release notes](https://github.com/substack/minimist/releases)
- [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6)

---
updated-dependencies:
- dependency-name: minimist
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-03-30 14:14:11 +02:00
David Himmelstrup
e7b7469395
Restrict hgeometry dependency. (#273) 2022-03-30 13:25:15 +02:00
dependabot[bot]
c6e801683d
Bump actions/setup-node from 2.5.1 to 3 (#266)
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 2.5.1 to 3.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](https://github.com/actions/setup-node/compare/v2.5.1...v3)

---
updated-dependencies:
- dependency-name: actions/setup-node
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-02-25 12:48:54 +01:00
dependabot[bot]
67a4729802
Bump JamesIves/github-pages-deploy-action from 4.2.2 to 4.2.5 (#265)
Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 4.2.2 to 4.2.5.
- [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases)
- [Commits](https://github.com/JamesIves/github-pages-deploy-action/compare/v4.2.2...v4.2.5)

---
updated-dependencies:
- dependency-name: JamesIves/github-pages-deploy-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-02-25 12:48:41 +01:00
dependabot[bot]
c4a2f1dedd
Bump follow-redirects from 1.14.7 to 1.14.8 in /viewer-elm (#264)
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.14.7 to 1.14.8.
- [Release notes](https://github.com/follow-redirects/follow-redirects/releases)
- [Commits](https://github.com/follow-redirects/follow-redirects/compare/v1.14.7...v1.14.8)

---
updated-dependencies:
- dependency-name: follow-redirects
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-02-25 12:48:33 +01:00
dependabot[bot]
54ffee4e6d
Bump ajv from 6.10.2 to 6.12.6 in /viewer-elm (#263)
Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.10.2 to 6.12.6.
- [Release notes](https://github.com/ajv-validator/ajv/releases)
- [Commits](https://github.com/ajv-validator/ajv/compare/v6.10.2...v6.12.6)

---
updated-dependencies:
- dependency-name: ajv
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-02-25 12:48:25 +01:00
David Himmelstrup
8375edaaf5 Bump version to 1.1.5.0 2022-01-24 10:50:00 +01:00
dependabot[bot]
1536605cdd Bump follow-redirects from 1.9.0 to 1.14.7 in /viewer-elm
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.9.0 to 1.14.7.
- [Release notes](https://github.com/follow-redirects/follow-redirects/releases)
- [Commits](https://github.com/follow-redirects/follow-redirects/compare/v1.9.0...v1.14.7)

---
updated-dependencies:
- dependency-name: follow-redirects
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-01-24 09:47:47 +00:00
David Himmelstrup
c0b5eeea07 Update apt sources. 2022-01-24 09:40:40 +01:00
David Himmelstrup
f0e1eb413f Disable coverage. 2022-01-23 19:27:13 +01:00
David Himmelstrup
5bf94d0d05 Disable coverage for deps. 2022-01-23 19:02:38 +01:00
David Himmelstrup
4030ff877b Bump ghc version. 2022-01-23 18:54:52 +01:00
David Himmelstrup
5b76d53737
Fix CI. (#261) 2022-01-23 18:35:04 +01:00
David Himmelstrup
30359e9d37
Add 'signalS' and signalO for applying easing functions to sprites/objects. (#260) 2022-01-23 17:27:43 +01:00
dependabot[bot]
3c60c0d64d Bump actions/setup-node from 2.4.0 to 2.5.1
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 2.4.0 to 2.5.1.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](https://github.com/actions/setup-node/compare/v2.4.0...v2.5.1)

---
updated-dependencies:
- dependency-name: actions/setup-node
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-01-21 08:28:22 +00:00
dependabot[bot]
46c730569d Bump JamesIves/github-pages-deploy-action from 4.1.6 to 4.2.2
Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 4.1.6 to 4.2.2.
- [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases)
- [Commits](https://github.com/JamesIves/github-pages-deploy-action/compare/4.1.6...v4.2.2)

---
updated-dependencies:
- dependency-name: JamesIves/github-pages-deploy-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-01-21 08:28:12 +00:00
dependabot[bot]
d22af8dc38 Bump JamesIves/github-pages-deploy-action from 4.1.5 to 4.1.6
Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 4.1.5 to 4.1.6.
- [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases)
- [Commits](https://github.com/JamesIves/github-pages-deploy-action/compare/4.1.5...4.1.6)

---
updated-dependencies:
- dependency-name: JamesIves/github-pages-deploy-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-11-19 20:57:00 +08:00
Mike Pilgrem
d427ff5624
Merge pull request #242 from mpilgrem/fileUri
Fix #240 Use valid file URI format in `mkImage`
2021-11-13 09:51:35 +00:00
Mike Pilgrem
daa42a57f4 Fix #240 Use valid file URI format in mkImage 2021-11-13 01:54:26 +00:00
Mike Pilgrem
2d2a37b6ac
Merge pull request #239 from mpilgrem/bbRect
`svgBoundingPoints` for `RectangleTree` and `ImageTree`
2021-11-07 23:29:24 +00:00
Mike Pilgrem
f73c725db4 svgBoundingPoints for RectangleTree and ImageTree
Currently, the bounding points for a rectangle or an image are only the upper left corner and the bottom right corner (if the width and height are specified).

This pull request suggests that the other two corners of the rectangle need to be specified as bounding points (in case the rectangle is rotated by other than an integral multiple of 90 degrees).

It also adds helper functions `rectPoints` and `rectPoints'` to reduce code duplication.
2021-11-07 22:50:29 +00:00
Mike Pilgrem
10862baa8a
Merge pull request #237 from mpilgrem/bump-ci
Bump Azure Windows CI to `stack.yaml` (lts-18.16)
2021-11-07 18:39:47 +00:00
Mike Pilgrem
bdeabc6520 Bump Azure Windows CI to stack.yaml (lts-18.16) 2021-11-07 17:35:20 +00:00
Mike Pilgrem
9e7472bcae
Merge pull request #236 from mpilgrem/bump
Bump stack.yaml resolver to lts-18.15
2021-11-07 17:25:45 +00:00
Mike Pilgrem
744178deb0 Bump stack.yaml to LTS 18.15
Also adds explicit imports to module `Reanimate.Math.Triangulate`, to avoid name shadowing errors.
2021-11-07 16:51:53 +00:00
Mike Pilgrem
5f02799402 Add bounding boxes for svg nodes
`Reanimate.Svg.BoundingBox.boundingBox` computes bounding boxes on a best-effort basis but currently makes no effort for `svg` nodes. This pull request proposes that the bounding box for svg nodes should be at least estimated based on the document's width and height.

In addition, the addition of helper functions `ellipsePoints` and `toUserUnit'` reduce code duplication in function `svgBoundingPoints`.
2021-11-06 11:44:17 +08:00
Mike Pilgrem
13d3e81c05 Fix #196: Improve Haddock documentation of withFillColor 2021-11-02 06:28:02 +08:00
Mike Pilgrem
584ef607a5 Fix #233 Enforce positive Animation durations
This pull request:

* causes `mkAnimation` to check (at run time) that the duration is positive, and exports new `unsafeMkAnimation` which still does not check;
* uses the 'smart' constructor, and its check, in `staticFrame`, `pause`, `pauseAtBeginning`, `adjustDuration`, `repeatA`, `takeA` and `dropA`. Consequently, `takeA` and `dropA` do not need to clamp;
* allows `pauseAtBeginning` and `pauseAtEnd` to have a zero duration (and, consequently, `pauseAround`);
* allows `dropA` to drop 'nothing'; and
* expands Haddock documentation of functions introducing duration, to explain valid values of duration.

It also reformats some other Haddock comments with very long lines, so that code lines are no longer than 80 characters.
2021-11-02 06:27:38 +08:00
Mike Pilgrem
1f6e35235a Suppress false broken link reports
The link checker is reporting that the links in documentation to inkscape.org and wiki.gnome.org/Projects/LibRsvg are broken (with code 403 - Forbidden) when they are good links.
2021-10-20 18:53:09 +08:00
Mike Pilgrem
cb733df81d Correct and extend `Reanimate.Povray' Haddock documentation
This pull request corrects the Haddock documentation for `Reanimate.Povray' (incorrect narrative for some functions yielding `Tree' and inconsistent width x height dimensions).

It also extends the introductory Haddock documenation to describe the structure of the functions exported and the use of their arguments, common to all the functions.
2021-10-17 10:15:16 +08:00
Mike Pilgrem
a9b9728f0f Update POV-Ray examples to avoid POV-Ray warnings
This pull request updates the POV scripts in the two POV-Ray examples to avoid the warning messages in POV-Ray 3.7 (released November 2013).

POV-Ray 3.7 requires the `version` directive.

POV-Ray 3.7 considers the `assumed_gamma` keyword to be mandatory.

POV-Ray warns when a `polygon` is not closed.

POV-Ray warns when a scaling component is omitted.
2021-10-17 10:14:51 +08:00
Mike Pilgrem
f53332f93b Add documentation on obtaining dependencies on Windows
This pull request proposes an additional subsection in the documentation explaining to Windows users how they can obtain the FFmpeg, dvisvgm, POV-Ray, Blender, rsvg-convert, Inkscape, ImageMagick and LaTeX/XeLaTex dependencies.
2021-10-17 10:13:42 +08:00
Mike Pilgrem
d1096abb63 Refactor Reanimate.Povray and OS-specifc POVRay
Further to pull request #225, I realised subsequently that the common code in the two `POVRay.mkPovrayImage'` functions could be returned to module `Reanimate.Povray`, and all that needed to be Windows- or Unix-like-specific was a `runPOVRay` function.

This pull request does that refactoring.
2021-10-17 10:12:28 +08:00
Mike Pilgrem
ceb727e8da
Enable use of POV-Ray for Windows (#225)
This pull request reflects code changes made to be able to use POV-Ray for Windows, Version 3.7.0.msvc10.win64.

The changes have been tested on Windows 10 but not on unix-like operating systems. However, I don't think the code for unix-like operating systems has been affected.

The reason for the changes is explained below.

1. The POV-Ray for Windows executable is named `pvengine64.exe` on 64-bit Windows, not `povray

I've created two modules `POVRay`, specified separately for `windows` and `unix`, that export `povrayApp :: String`, yielding the correct name of the executable. The function is used in place of `"povray"` (eg in `Reanimate.Driver.Check.hasPovray`).

2. Generated file names containing `$` cause problems under PowerShell, due to automatic variables, and file names on Windows are not case sensitive

I've changed the 64-character `alphabet` in `Reanimate.Cache.encodeInt` for a 32-character one which includes only capital letters and digits. This affects both Windows and unix-like operating systems. (An alternative would be versions of `encodeInt` specified differently for `windows` and `unix`.)

3. POV-Ray for Windows requires the special command line option `/EXIT` to return

I've moved `Reanimate.Povray.mkPovrayImage'` to the two modules `POVRay`. In the `windows` version, `/EXIT` is now added to the list of switches passed to the POV-Ray executable.

4. POV-Ray for Windows cannot parse switches enclosed in `""` as switches

The cause of the problem is described in more detail in the comments in the source code of module `POVRay`.

As a work around, in the `windows` version of `mkPovrayImage'`, the POV-Ray command is written to a temporary batch file and it is that batch file which is passed to `runCmd`.

Other matters

In addition to the above, POV-Ray 3.7 includes 'Script I\O Restrictions` which can prevent the writing of files. These need to be disabled in the POV-Ray for Windows GUI (under the Options menu).
2021-10-16 16:20:34 +08:00
Mike Pilgrem
82abb4e434 Add mkColor "none" = FillNone to mkColor
Extending `mkColor :: String -> Texture` to yield `FillNone` for "none" would allow (for example) `withFillColor "none"` to 'turn color off'. For some users, that may be more intuitive and expressive than `withFillOpacity 0.0`.

The Haddock documentation is updated, accordingly.
2021-10-15 11:14:16 +08:00
Mike Pilgrem
ff162b6a33
Add withStrokeOpacity (#222)
Currently, `withFillOpacity` is provided but not the stroke equivalent.

Co-authored-by: David Himmelstrup <lemmih@gmail.com>
2021-10-13 17:16:47 +08:00
David Himmelstrup
a0780c67fc Limit aeson version to <2. 2021-10-13 15:17:08 +08:00
Mike Pilgrem
b36fdb1e1b Update for updated inkscape command line options
The current version of inkscape is 1.1.1. Its command line changed at some point and no longer includes `--without-gui`, `--file` or `--export-png`. See https://inkscape.org/doc/inkscape-man.html.

What was once:
~~~
inkscape --without-gui --file=test.svg --export-png=test.png
~~~

is now:
~~~
inkscape --export-type=png test.svg
~~~
2021-10-09 16:56:55 +08:00
Drew Fenwick
aadf8dcee5
Improve cabal hacking experience (#215)
* Add standard haskell gitignore entries

* Add cradles for using HLS with Cabal

Co-authored-by: David Himmelstrup <lemmih@gmail.com>
2021-09-11 17:43:41 +08:00
dependabot[bot]
5c0eb70584
Bump lodash from 4.17.15 to 4.17.21 in /viewer-elm (#206)
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.21.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.21)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-09-11 16:42:12 +08:00
dependabot[bot]
3aa746f6d4
Bump glob-parent from 5.1.0 to 5.1.2 in /viewer-elm (#207)
Bumps [glob-parent](https://github.com/gulpjs/glob-parent) from 5.1.0 to 5.1.2.
- [Release notes](https://github.com/gulpjs/glob-parent/releases)
- [Changelog](https://github.com/gulpjs/glob-parent/blob/main/CHANGELOG.md)
- [Commits](https://github.com/gulpjs/glob-parent/compare/v5.1.0...v5.1.2)

---
updated-dependencies:
- dependency-name: glob-parent
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-09-11 16:42:01 +08:00
dependabot[bot]
f3e5abf416
Bump tar from 4.4.13 to 4.4.19 in /viewer-elm (#214)
Bumps [tar](https://github.com/npm/node-tar) from 4.4.13 to 4.4.19.
- [Release notes](https://github.com/npm/node-tar/releases)
- [Changelog](https://github.com/npm/node-tar/blob/main/CHANGELOG.md)
- [Commits](https://github.com/npm/node-tar/compare/v4.4.13...v4.4.19)

---
updated-dependencies:
- dependency-name: tar
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-09-11 16:41:50 +08:00
dependabot[bot]
2118e05558
Bump JamesIves/github-pages-deploy-action from 3.7.1 to 4.1.5 (#217)
Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 3.7.1 to 4.1.5.
- [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases)
- [Commits](https://github.com/JamesIves/github-pages-deploy-action/compare/3.7.1...4.1.5)

---
updated-dependencies:
- dependency-name: JamesIves/github-pages-deploy-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-09-11 16:41:24 +08:00
dependabot[bot]
ae14f3b09f
Bump jorelali/setup-elm from 2 to 3 (#218)
Bumps [jorelali/setup-elm](https://github.com/jorelali/setup-elm) from 2 to 3.
- [Release notes](https://github.com/jorelali/setup-elm/releases)
- [Commits](https://github.com/jorelali/setup-elm/compare/v2...v3)

---
updated-dependencies:
- dependency-name: jorelali/setup-elm
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-09-11 16:41:00 +08:00
dependabot[bot]
a7e8751784
Bump actions/setup-node from 1 to 2.4.0 (#219)
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 1 to 2.4.0.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](https://github.com/actions/setup-node/compare/v1...v2.4.0)

---
updated-dependencies:
- dependency-name: actions/setup-node
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-09-11 16:40:48 +08:00
David Himmelstrup
df0f8e591b
Disable building against stackage nightly. (#216)
* Disable nightly build because github no longer accepts comments from forks.

* Disable azure nightly builds.

* Use stack-18 by default.
2021-09-11 13:34:52 +08:00
dependabot-preview[bot]
0f24e76ade
Upgrade to GitHub-native Dependabot (#204)
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2021-09-11 12:59:14 +08:00
David Himmelstrup
1232618b15 Fix cert renewal for web.rgeometry.org 2021-08-11 11:04:02 +08:00
David Himmelstrup
8e2b32ba7a Fix doc references. 2021-07-04 23:23:46 +08:00
David Himmelstrup
67b875246d Update documentation links. 2021-07-04 00:25:17 +08:00
David Himmelstrup
cc6a599334 Support the rgeometry backend. 2021-07-03 22:51:01 +08:00
David Himmelstrup
5ea023980f Bump version to 1.1.4.0 2021-03-11 16:21:48 +08:00
David Himmelstrup
5cc9de1acb Update ChangeLog.md 2021-03-11 16:21:33 +08:00
David Himmelstrup
8f36b657b9 Update getting-started section of docs. 2021-03-11 16:18:54 +08:00
Nick Bathum
df8e63e9b6 Typo: text is left-aligned. 2021-03-11 14:59:16 +08:00
David Himmelstrup
7887fef434
Update stack lts version. (#200)
* Use newest reanimate-svg.

* Use lts-16 for docker.
2021-03-11 13:08:14 +08:00
David Himmelstrup
9d9544df7d
Improve README and error handling when encountering cabal bug. (#201) 2021-03-11 13:07:34 +08:00
David Himmelstrup
3a8dc6c769
Use warnings instead of errors for stackage nightly tests. (#202) 2021-03-11 13:06:58 +08:00
David Himmelstrup
0e580e0fdf
Use newest reanimate-svg. (#197) 2021-02-20 18:46:26 +08:00
David Himmelstrup
f4878053b1 reanimateLiveEntry should recurse.
This fixes issue #195.
2021-02-09 20:47:52 +08:00
David Himmelstrup
33056d4372 Update test suite. 2021-02-06 18:44:58 +08:00
kunberg
f75196825b
Change mkRect definition
So that the RectangleNode does not get wrapped in an unnecessary GroupNode.
2021-01-17 08:39:42 +01:00
David Himmelstrup
d321b17818 Fix cabal file. 2021-01-14 16:23:17 +08:00
David Himmelstrup
4e79d3da1e Bump version to 1.1.3.2 2021-01-14 16:20:29 +08:00
David Himmelstrup
091f065e36
Create flag for toggling hgeometry dependency. (#192) 2021-01-14 16:17:21 +08:00
David Himmelstrup
5795a59d44 Fix discord docker build. 2021-01-04 21:37:13 +08:00
David Himmelstrup
62666f0a24 Bump to 1.1.3.1 2021-01-04 16:40:20 +08:00
David Himmelstrup
4187a6562e Update Changelog. 2021-01-04 16:40:02 +08:00
David Himmelstrup
7003c13bac Fix TCP windows issue, fix Firefox on windows. 2021-01-04 16:33:57 +08:00
David Himmelstrup
f320f5cfdf Fix docker build. 2021-01-04 15:07:40 +08:00
David Himmelstrup
300178d101 Bump version to 1.1.3.0 2021-01-04 14:35:42 +08:00
David Himmelstrup
717808f3dc Update documentation. 2021-01-04 14:35:33 +08:00
David Himmelstrup
fb4bdf73ed Clean-up and documentation. 2021-01-04 13:54:21 +08:00
David Himmelstrup
16fd952c9a
Rework live reloading. (#191) 2021-01-04 13:17:34 +08:00
David Himmelstrup
1181e0f802 Bump deployment script version. 2020-12-14 12:05:20 +08:00
David Himmelstrup
acbaefd723 Increase shared storage between playground and discord-bot images. 2020-12-04 19:20:23 +08:00
Xie Ruifeng
ccc69c0d83 add an example for using mathChunks with non-trivial Traversable 2020-11-10 08:36:51 +08:00
Xie Ruifeng
828b033504 add mathChunks/latexCfgChunksTrans 2020-11-10 08:36:51 +08:00
Xie Ruifeng
aed68fe34a export latexCfgChunks 2020-11-10 08:36:51 +08:00
Xie Ruifeng
81bf85bea8 LaTeX: extend latex[Cfg]Chunks to use Traversable 2020-11-10 08:36:51 +08:00
lemmih
47dcf6471c Correct documentation for 'parDropA'. 2020-10-30 20:19:42 +08:00
David Himmelstrup
fce34e92b2 Simplify base docker image. 2020-10-28 17:03:09 +08:00
David Himmelstrup
eca9226126 Add shared docker image for discord-bot and playground. 2020-10-28 16:49:36 +08:00
David Himmelstrup
4e38c3249f Bump version to 1.1.2.1 2020-10-27 19:00:23 +08:00
Xie Ruifeng
5da40eda1b fix LaTeX: headers and postscripts got swapped 2020-10-27 18:59:29 +08:00
David Himmelstrup
04c3fd6baf Drop chalkduster from fonts example. 2020-10-27 17:10:11 +08:00
Krantz-XRF
9944af167e add latexCfgChunks 2020-10-12 10:11:20 +08:00
Krantz-XRF
e266f5454c fix Reanimate.LaTeX.xelatex 2020-10-12 10:11:20 +08:00
David Himmelstrup
dec92f2299 Fix documentation for external data sets. 2020-10-12 08:58:02 +08:00
David Himmelstrup
53793fcf1b Bump version to 1.1.1.0 and update changelog. 2020-10-10 21:43:42 +08:00
David Himmelstrup
e7bce27d12 Switch back to stylish-haskell and enumerate imports. 2020-10-10 18:17:01 +08:00
David Himmelstrup
96cd95f865 Add logos from svgporn.com 2020-10-10 17:25:15 +08:00
David Himmelstrup
e9a2bd3bd0 Depend on reanimate-svg >= 0.13 2020-10-10 15:19:55 +08:00
David Himmelstrup
7d16bc79b0 Rename gh-pages dist folder. 2020-10-09 19:01:44 +08:00
David Himmelstrup
b1cc939dfa Disable HPC badge generation. 2020-10-09 17:26:10 +08:00
David Himmelstrup
1fa503721c Fix path to golden files. 2020-10-09 17:24:56 +08:00
Michal Kukiela
f14192f637 Move .golden files to a subdirectory. (#78) 2020-10-09 16:53:39 +08:00
David Himmelstrup
edd776beac
Add a few more built-in font configurations. (#179) 2020-10-08 15:26:19 +08:00
David Himmelstrup
54652dd51f
SimpleIcons.org external data set. (#178)
* Add 'simpleIcons' external icon set.

* Add complete support for Simple Icons.

* Add documentation gif.
2020-10-08 15:26:02 +08:00
David Himmelstrup
5ec3ef8af4 Add chalkduster to changelog. 2020-10-07 13:48:09 +08:00
280 changed files with 3217 additions and 2173 deletions

View file

@ -17,17 +17,14 @@ jobs:
stack-lts-14:
BUILD: stack
STACK_YAML: stack-lts-14.yaml
stack-lts-13:
BUILD: stack
STACK_YAML: stack-lts-13.yaml
stack-nightly:
BUILD: stack
ARGS: --resolver nightly --no-run-tests
#stack-nightly:
# BUILD: stack
# ARGS: --resolver nightly --no-run-tests
maxParallel: 6
steps:
- task: Cache@2
inputs:
key: ${{ parameters.name }} | ${{ parameters.vmImage }} | $(ARGS) | $(STACK_YAML) | stack-root | $(Agent.OS)
key: ${{ parameters.name }} | ${{ parameters.vmImage }} | $(ARGS) | $(STACK_YAML) | stack-root | $(Agent.OS) | v2
path: $(STACK_ROOT)
cacheHitVar: CACHE_RESTORED
displayName: Cache stack root

View file

@ -11,15 +11,12 @@ jobs:
BUILD: stack
STACK_YAML: stack.yaml
ARGS: --pedantic
stack-lts-15:
#stack-lts-16:
# BUILD: stack
# STACK_YAML: stack-lts-16.yaml
stack-lts-17:
BUILD: stack
STACK_YAML: stack-lts-14.yaml
stack-lts-14:
BUILD: stack
STACK_YAML: stack-lts-14.yaml
stack-lts-13:
BUILD: stack
STACK_YAML: stack-lts-13.yaml
STACK_YAML: stack-lts-17.yaml
maxParallel: 6
steps:
- task: Cache@2

View file

@ -7,10 +7,11 @@ jobs:
vmImage: ${{ parameters.vmImage }}
strategy:
matrix:
stack:
BUILD: stack
STACK_YAML: stack.yaml
ARGS: --pedantic
# lts-16.12 fails intermittently on windows. :(
# stack:
# BUILD: stack
# ARGS: --pedantic
# lts-15 fails due to segfaults. Think it is a GHC issue.
# stack-lts-15:
# BUILD: stack
@ -20,10 +21,6 @@ jobs:
BUILD: stack
STACK_YAML: stack-lts-14.yaml
ARGS: --no-run-tests
stack-lts-13:
BUILD: stack
STACK_YAML: stack-lts-13.yaml
ARGS: --no-run-tests
maxParallel: 6
steps:
- task: Cache@2

20
.github/dependabot.yml vendored Normal file
View file

@ -0,0 +1,20 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: daily
time: "11:00"
open-pull-requests-limit: 10
- package-ecosystem: elm
directory: "/viewer-elm"
schedule:
interval: daily
time: "11:00"
open-pull-requests-limit: 10
- package-ecosystem: elm
directory: "/playground/viewer-elm"
schedule:
interval: daily
time: "11:00"
open-pull-requests-limit: 10

View file

@ -1,8 +1,6 @@
name: Stackage nightly
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
@ -33,11 +31,27 @@ jobs:
${{ runner.os }}-
- name: Build nightly
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
run: |
rm -fr discord-bot playground dist-newstyle
rm -f stack.yaml && stack init --resolver nightly
# Build twice because the stackage servers are incredibly unreliable.
stack build --resolver nightly --haddock --test --only-dependencies --bench --no-run-benchmarks || stack build --resolver nightly --haddock --test --only-dependencies --bench --no-run-benchmarks
rm -f stack.yaml
stack init --resolver nightly \
&& echo "::set-env name=passed::true" \
|| echo "::set-env name=passed::false"
stack build --resolver nightly --haddock --test --only-dependencies --bench --no-run-benchmarks \
&& echo "::set-env name=passed::true" \
|| echo "::set-env name=passed::false"
- name: Test nightly
if: env.passed == 'true'
run: |
stack build --resolver nightly --haddock --test --bench --no-run-benchmarks
- name: Report status
if: env.passed == 'false'
uses: mshick/add-pr-comment@v1
with:
message: |
Warning: Failed to build against stack nightly.
repo-token: ${{ secrets.GITHUB_TOKEN }}
repo-token-user-login: 'github-actions[bot]' # The user.login for temporary GitHub tokens
allow-repeats: false # This is the default

View file

@ -9,17 +9,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/setup-haskell@v1
with:
ghc-version: '8.8'
ghc-version: 'latest'
cabal-version: 'latest'
- uses: jorelali/setup-elm@v2
- uses: jorelali/setup-elm@v3
with:
elm-version: 0.19.1
- name: Cache
uses: actions/cache@v2
uses: actions/cache@v3.0.11
with:
path: |
~/.cabal
@ -32,58 +32,62 @@ jobs:
- name: Install dependencies
run: |
cabal v2-update
cabal v2-build --enable-coverage --only-dependencies
cabal v2-build --only-dependencies
mkdir pages
- name: Build
run: |
cabal v2-build --enable-coverage
cabal v2-build
- name: Generate HPC files
run: |
set -o xtrace
for gold in examples/*.golden; do
cabal v2-exec --enable-coverage -- ghc -package reanimate "${gold%.golden}.hs" --make
reanimate_datadir=$(pwd) ${gold%.golden} test > /dev/null
done;
# - name: Generate HPC files
# run: |
# set -o xtrace
# for gold in examples/golden/*.golden; do
# BASE=examples/$(basename $gold)
# BASE=${BASE%.golden}
# cabal v2-exec --enable-coverage -- ghc -package reanimate "$BASE.hs" --make
# reanimate_datadir=$(pwd) ${BASE%.hs} test > /dev/null
# done;
- name: Merge HPC files
run: hpc sum --union *.tix --output=total.tix
# - name: Merge HPC files
# run: hpc sum --union *.tix --output=total.tix
- name: Report
run: |
hpc report --hpcdir $(find dist-newstyle -name 'hpc')/vanilla/mix/*/ total.tix
# - name: Report
# run: |
# hpc report --hpcdir $(find dist-newstyle -name 'hpc')/vanilla/mix/*/ total.tix
- name: Markup
run: |
hpc markup --destdir=hpc --hpcdir $(find dist-newstyle -name 'hpc')/vanilla/mix/*/ total.tix
# - name: Markup
# run: |
# hpc markup --destdir=hpc --hpcdir $(find dist-newstyle -name 'hpc')/vanilla/mix/*/ total.tix
- name: HPC Badge
run: |
COVERAGE=$(cat hpc/hpc_index.html | tr '\n' ' ' | sed "s/.*Program Coverage Total.*>\([0-9]\{1,3\}\)%.*>\([0-9]\{1,3\}\)%.*>\([0-9]\{1,3\}\)%.*/\1/")
echo "\
{ \"schemaVersion\": 1, \
\"label\": \"api tests\", \
\"message\": \"$COVERAGE%\", \
\"color\": \"success\" \
}" > hpc/hpc_badge.json
# - name: HPC Badge
# run: |
# COVERAGE=$(cat hpc/hpc_index.html | tr '\n' ' ' | sed "s/.*Program Coverage Total.*>\([0-9]\{1,3\}\)%.*>\([0-9]\{1,3\}\)%.*>\([0-9]\{1,3\}\)%.*/\1/")
# echo "\
# { \"schemaVersion\": 1, \
# \"label\": \"api tests\", \
# \"message\": \"$COVERAGE%\", \
# \"color\": \"success\" \
# }" > pages/hpc_badge.json
- name: Haddock Badge
run: |
# Stack is required because cabal doesn't build docs for dependencies.
# Without those, coverage will not reach 100%
stack build --haddock --only-dependencies
stack haddock 2>&1 | grep ") in " | sort -hr > hpc/haddock.txt
COVERAGE=$(awk '{good += $3; total += $5} END {printf "%.0f", good/total*100}' hpc/haddock.txt)
stack haddock 2>&1 | grep ") in " | sort -hr > pages/haddock.txt
COVERAGE=$(awk '{good += $3; total += $5} END {printf "%.0f", good/total*100}' pages/haddock.txt)
echo "\
{ \"schemaVersion\": 1, \
\"label\": \"api docs\", \
\"message\": \"$COVERAGE%\", \
\"color\": \"success\" \
}" > hpc/haddock_badge.json
}" > pages/haddock_badge.json
# Is there a way to reuse the script from playground.yml?
- name: Playground
run: |
sudo apt-get update
sudo apt-get -y install texlive texlive-latex-base texlive-latex-extra
CWD=`pwd`
stack build
@ -94,12 +98,12 @@ jobs:
cd viewer-elm
npm install
npm run build
mkdir $CWD/hpc/playground
cp dist/* $CWD/hpc/playground/
mkdir $CWD/pages/playground
cp dist/* $CWD/pages/playground/
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@3.5.9
uses: JamesIves/github-pages-deploy-action@v4.4.0
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: hpc # The folder the action should deploy.
FOLDER: pages # The folder the action should deploy.

View file

@ -12,14 +12,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/setup-haskell@v1
with:
ghc-version: '8.8.2'
ghc-version: 'latest'
cabal-version: '3.0'
- name: Cache
uses: actions/cache@v1
uses: actions/cache@v3.0.11
env:
cache-name: cache-cabal
with:

View file

@ -10,17 +10,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/setup-haskell@v1
with:
ghc-version: '8.8'
cabal-version: 'latest'
- uses: jorelali/setup-elm@v2
- uses: jorelali/setup-elm@v3
with:
elm-version: 0.19.1
- name: Cache
uses: actions/cache@v2
uses: actions/cache@v3.0.11
with:
path: |
~/.stack
@ -30,6 +30,7 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get -y install texlive texlive-latex-base texlive-latex-extra
stack build --only-dependencies
(cd playground && stack build --only-dependencies)

View file

@ -1,41 +0,0 @@
name: Site checker
on:
schedule:
- cron: "0 * * * *"
push:
branches: [ master, feature-ci ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 10.x
uses: actions/setup-node@v1
with:
node-version: 10.x
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get -y install w3c-linkchecker
- name: Check websocket connection
run: |
set -o xtrace
wget https://github.com/vi/websocat/releases/download/v1.6.0/websocat_amd64-linux-static -O websocat
chmod +x websocat
./websocat -q -uU "wss://reanimate.clozecards.com/ws/"
- name: Check links at reanimate.github.io
run: checklink --quiet --broken "https://reanimate.github.io/" >> failures.txt
- name: Check links at reanimate.readthedocs.io
run: checklink --quiet --broken "https://reanimate.readthedocs.io/" >> failures.txt
# Haddock generates 404 links by default. :(
#- name: Check links in haddock docs
# run: checklink --quiet --broken "https://hackage.haskell.org/package/reanimate/docs/Reanimate.html" >> failures.txt
- name: Check for failures
run: |
if [ -s failures.txt ]; then
cat failures.txt
exit 1
fi

24
.gitignore vendored
View file

@ -1 +1,23 @@
.stack-work
dist
dist-*
cabal-dev
*.o
*.hi
*.hie
*.chi
*.chs.h
*.dyn_o
*.dyn_hi
.hpc
.hsenv
.cabal-sandbox/
cabal.sandbox.config
*.prof
*.aux
*.hp
*.eventlog
.stack-work/
cabal.project.local
cabal.project.local~
.HTF/
.ghc.environment.*

View file

@ -6,6 +6,60 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and the
project adheres to the [Haskell Package Versioning
Policy (PVP)](https://pvp.haskell.org)
## 1.1.7.0 -- 2022-10-15
* Derive `Eq` for APolygon
## 1.1.6.0 -- 2022-06-02
* Drop hgeometry dependency.
## 1.1.4.0 -- 2021-03-11
* Fix build issue on M1 MacOS.
* Improve documentation.
* Fix bug in 'reanimateLiveEntry'.
* Simplify 'mkRect' definition.
## 1.1.3.2 -- 2021-01-14
* Add flag for disabling the HGeometry dependency.
## 1.1.3.1 -- 2021-01-04
* Fixed performance issue on Windows.
* Fixed live viewer with Firefox.
## 1.1.3.0 -- 2021-01-04
## Added
* Reanimate.reanimateLive
* Reanimate.reanimateLiveEntry
## 1.1.2.0 -- 2020-10-27
### Added
* Reanimate.LaTeX.latexCfgChunks.
### Other/Non-visible
* xeLaTeX bug fixes.
* Documentation for external data sets.
## 1.1.1.0 -- 2020-10-10
### Added
* External icon sets.
* Font configurations.
### Other/Non-visible
* Improved unicode support.
* Improved support for filter effects.
* Bug fix in the path parser.
## 1.1.0.0 -- 2020-10-07
### Added

26
Dockerfile.base Normal file
View file

@ -0,0 +1,26 @@
FROM haskell:8.8.4
ENV LANG=C.UTF-8 \
LC_ALL=C.UTF-8 \
PATH=/root/.local/bin:$PATH \
CUDA_PATH=/usr/local/cuda-$CUDA_VERSION \
CPATH=$JVM_PATH/include:$JVM_PATH/include/linux:$LLVM_PATH/include \
DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y --no-install-recommends \
libblas-dev liblapack-dev ffmpeg \
curl texlive texlive-latex-base texlive-latex-extra \
texlive-fonts-extra texlive-science texlive-xetex \
texlive-latex-recommended texlive-lang-english \
texlive-lang-chinese texlive-plain-generic \
unzip
WORKDIR /src
# Install reanimate dependencies and cache the layer
ADD reanimate.cabal stack-lts-16.yaml ./
ADD stack-lts-16.yaml ./stack.yaml
RUN stack build --only-dependencies --no-install-ghc --system-ghc --haddock
RUN rm reanimate.cabal stack.yaml

View file

@ -1,29 +1,11 @@
FROM haskell:8.8.4
ENV LANG=C.UTF-8 \
LC_ALL=C.UTF-8 \
PATH=/root/.local/bin:$PATH \
CUDA_PATH=/usr/local/cuda-$CUDA_VERSION \
CPATH=$JVM_PATH/include:$JVM_PATH/include/linux:$LLVM_PATH/include \
DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y --no-install-recommends \
libblas-dev liblapack-dev ffmpeg \
curl blender povray texlive texlive-latex-base texlive-latex-extra \
texlive-fonts-extra texlive-science texlive-xetex \
texlive-latex-recommended texlive-lang-english \
texlive-lang-chinese texlive-plain-generic
FROM reanimate/base
WORKDIR /src
# Install reanimate dependencies and cache the layer
ADD reanimate.cabal stack.yaml ./
RUN for i in 1 2 3; \
do \
stack build --only-dependencies --no-install-ghc --system-ghc --haddock && break; \
done
ADD reanimate.cabal ./
ADD stack-lts-16.yaml ./stack.yaml
RUN stack build --only-dependencies --no-install-ghc --system-ghc --haddock
# Install discord-bot dependencies and cache the layer
ADD discord-bot/discord-bot.cabal discord-bot/stack.yaml ./discord-bot/
@ -33,6 +15,8 @@ RUN cd discord-bot && \
# Add source after dependencies have been installed as to not invalidate the caches
ADD data data
ADD src src
ADD unix unix
ADD windows windows
ADD .git .git
ADD viewer-elm viewer-elm
ADD Setup.hs ./

View file

@ -1,32 +1,13 @@
FROM haskell:8.8.4
ENV LANG=C.UTF-8 \
LC_ALL=C.UTF-8 \
PATH=/root/.local/bin:$PATH \
CUDA_PATH=/usr/local/cuda-$CUDA_VERSION \
CPATH=$JVM_PATH/include:$JVM_PATH/include/linux:$LLVM_PATH/include \
DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y --no-install-recommends \
libblas-dev liblapack-dev ffmpeg \
curl blender povray texlive texlive-latex-base texlive-latex-extra \
texlive-fonts-extra texlive-science texlive-xetex \
texlive-latex-recommended texlive-lang-english \
texlive-lang-chinese texlive-plain-generic \
unzip
FROM reanimate/base
WORKDIR /src
# Install reanimate dependencies and cache the layer
ADD reanimate.cabal stack.yaml ./
RUN for i in 1 2 3; \
do \
stack build --only-dependencies --no-install-ghc --system-ghc --haddock && break || echo "retry"; \
done
ADD reanimate.cabal ./
ADD stack-lts-16.yaml ./stack.yaml
RUN stack build --only-dependencies --no-install-ghc --system-ghc --haddock
# Install discord-bot dependencies and cache the layer
# Install playground dependencies and cache the layer
ADD playground/playground.cabal playground/stack.yaml ./playground/
RUN cd playground && \
stack build --only-dependencies --no-install-ghc --system-ghc
@ -34,6 +15,8 @@ RUN cd playground && \
# Add source after dependencies have been installed as to not invalidate the caches
ADD data data
ADD src src
ADD unix unix
ADD windows windows
ADD .git .git
ADD viewer-elm viewer-elm
ADD Setup.hs ./

View file

@ -63,11 +63,26 @@ Optionally, you can install one or more of these programs to enable additional f
I highly recommend that you install at least 'ffmpeg' and 'latex'.
# Installing / Running an example
# Getting started / Running an example
Reanimate ships with a web-based viewer and automatic code reloading. To get a small demo
up and running, clone the repository, run one of the examples (this will install the library),
and wait for a browser window to open:
Reanimate offers stack templates for getting started with a minimal example and
automatic code reloading. Running the commands below will put a one-line animation
in the 'animate' folder and then display the animation in a browser window. You can
then edit the animation source code and watch the animation update in real time:
```console
$ stack new animate github:reanimate/plain
$ cd animate/
$ # both 'cabal repl' and 'stack repl' can be used here:
$ cabal repl
:cmd reanimateLive
```
## Running examples from the repository
Reanimate has a large collection of small examples which are both used for regression testing
and for GIFs in the API reference documentation. You can run these examples by first cloning the
repository and then running the examples as if they were executables:
```console
$ git clone https://github.com/reanimate/reanimate.git
@ -76,11 +91,11 @@ $ stack build
$ stack ./examples/doc_drawCircle.hs
```
This should render the `doc_drawCircle` example in a new browser window. If you then change the
animation source code, the browser window will automatically reload and show the updated animation.
This should render the `doc_drawCircle` example in a new browser window. Automatic code reloading
will not be enabled unless you run `:cmd reanimateLive` from a GHCi session.
## Using Cabal
## Running examples from the repository using Cabal
It's also possible to use cabal instead of stack:
@ -90,7 +105,7 @@ $ cd reanimate/
$ cabal v2-build
$ # Workaround for a cabal bug: https://github.com/haskell/cabal/issues/6235
$ export reanimate_datadir=`pwd`
$ cabal v2-exec -- runhaskell examples/doc_drawCircle.hs --ghc ghc
$ cabal v2-exec -- runhaskell examples/doc_drawCircle.hs
```
## Using Nix
@ -113,15 +128,15 @@ to pick up reanimate.
Now, still within the `nix-shell` you can run:
```console
[nix-shell:./reanimate]$ reanimate_datadir=. runhaskell examples/doc_drawCircle.hs --ghc `which ghc`
[nix-shell:./reanimate]$ reanimate_datadir=. runhaskell examples/doc_drawCircle.hs
```
# Documentation
* API reference: https://hackage.haskell.org/package/reanimate/docs/Reanimate.html
* Core concepts: https://reanimate.readthedocs.io/en/latest/introduction/
* Design overview: https://reanimate.readthedocs.io/en/latest/glue_tut/
* Core concepts: https://reanimate.readthedocs.io/en/latest/introduction.html
* Design overview: https://reanimate.readthedocs.io/en/latest/glue_tut.html
* N-Queens tutorial (somewhat dated, uses reanimate from October 2019): https://williamyaoh.com/posts/2020-05-31-reanimate-nqueens-tutorial.html
* You can also ask questions in the discord channel: <https://discord.gg/Qs28Dv6>

View file

@ -21,11 +21,11 @@ jobs:
vmImage: ubuntu-latest
os: linux
- template: ./.azure/azure-osx-template.yml
parameters:
name: macOS
vmImage: macOS-10.14
os: osx
#- template: ./.azure/azure-osx-template.yml
# parameters:
# name: macOS
# vmImage: macOS-11
# os: osx
- template: ./.azure/azure-windows-template.yml
parameters:

View file

@ -1,4 +1,4 @@
resolver: lts-16.12
resolver: lts-16.31
allow-newer: false

View file

@ -27,7 +27,7 @@ packages:
hackage: req-3.1.0@sha256:b058fd588ccdbced9e7d33b9112cd41960f29ce90acc7d77e2dd7518da171a01,4926
snapshots:
- completed:
size: 532377
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/16/12.yaml
sha256: f914cfa23fef85bdf895e300a8234d9d0edc2dbec67f4bc9c53f85867c50eab6
original: lts-16.12
size: 534126
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/16/31.yaml
sha256: 637fb77049b25560622a224845b7acfe81a09fdb6a96a3c75997a10b651667f6
original: lts-16.31

View file

@ -8,3 +8,4 @@ Made it easier to use built-in LaTeX fonts as well as TTF/OTF font files.
![Inconsolata](changelog/inconsolata.svg)
![ComputerModern](changelog/computermodern.svg)
![Magnolia](changelog/magnolia.svg)
![Chalkduster](changelog/chalkduster.svg)

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 827 KiB

BIN
docs/gifs/doc_biolinum.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

BIN
docs/gifs/doc_droidSans.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.3 KiB

After

Width:  |  Height:  |  Size: 7.1 KiB

Before After
Before After

BIN
docs/gifs/doc_svgLogo2.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View file

@ -7,7 +7,20 @@
# Getting started
## Viewing a basic animation
Reanimate offers stack templates for getting started with a minimal example and
automatic code reloading. Running the commands below will put a one-line animation
in the 'animate' folder and then display the animation in a browser window. You can
then edit the animation source code and watch the animation update in real time:
```console
$ stack new animate github:reanimate/plain
$ cd animate/
$ # both 'cabal repl' and 'stack repl' can be used here:
$ cabal repl
:cmd reanimateLive
```
## Running examples from the repository
```console
$ git clone https://github.com/reanimate/reanimate.git
@ -59,6 +72,38 @@ be able to generate stand-alone video files (but can still view animations
in a browser window). Without 'LaTeX' and 'dvisvgm', you won't be able use
LaTeX for typesetting.
### Obtaining the dependencies on Windows
The easiest way to obtain the [FFmpeg](https://www.ffmpeg.org/),
[rsvg-convert](https://wiki.gnome.org/Projects/LibRsvg) and
[ImageMagick](https://imagemagick.org/index.php) dependencies on Windows is to
use the [MSYS2](https://www.msys2.org/) installation that comes with `stack` and
is on the path in the `stack exec` environment, and its package manager
`pacman`. The MSYS2 `librsvg` package provides `rsvg-convert.exe`.
```
> stack exec -- pacman --sync --refresh
> stack exec -- pacman --sync mingw64/mingw-w64-x86_64-ffmpeg
> stack exec -- pacman --sync mingw64/mingw-w64-x86_64-librsvg
> stack exec -- pacman --sync mingw64/mingw-w64-x86_64-imagemagick
```
However, readily-available versions of FFmpeg on Windows have not been built
with the `--enable-librsvg` option. So, the `Has ffmpeg(rsvg)` dependency will
be `no` on Windows.
Windows versions of [POV-Ray](http://www.povray.org/),
[Inkscape](https://inkscape.org/), and [Blender](https://www.blender.org/) can
be downloaded and installed and the folders containing the executables added to
the `PATH` environment variable.
The [MiKTeX project](https://miktex.org/) provides a modern TeX distribution for
Windows, which also includes the [`dvisvgm` tool](https://dvisvgm.de/). The
folder containing the executables must be added to the `PATH` environment
variable. The `ctex` package (for Chinese typesetting) requires the `SimHei`
font, which is provided by the Windows Language Pack for Chinese (Simplified,
China).
## Rendering animations
**reanimate** has builtin support for rendering animations to video files and
@ -93,6 +138,6 @@ $ stack ./examples/doc_andThen.hs render --format gif
# Learning resources
* [API documentation](https://hackage.haskell.org/package/reanimate/docs/Reanimate.html)
* [Core concepts](introduction)
* [Core concepts](introduction.md)
* [Examples](https://github.com/reanimate/reanimate/tree/master/examples)
* [Design overview](glue_tut)
* [Design overview](glue_tut.md)

View file

@ -3,7 +3,7 @@
This document will introduce the foundamental concepts used in **reanimate**.
It is assumed that you are already familiar with Haskell. After reading, you will be able to understand all the concepts used in the [API reference documentation](https://hackage.haskell.org/package/reanimate/docs/Reanimate.html). This is not a tutorial, though, and you may have to look at the examples before you can turn these concepts into beautiful animations.
For a bird's eye view on the design philosophy and capabilities of **reanimate**, see [Gluing together animations](/glue_tut/). For help installing **reanimate**, see [Getting started](/#getting-started).
For a bird's eye view on the design philosophy and capabilities of **reanimate**, see [Gluing together animations](glue_tut.md). For help installing **reanimate**, see [Getting started](/#getting-started).
## Animations as Executables

View file

@ -363,7 +363,7 @@ API references:
[oScaleIn](https://hackage.haskell.org/package/reanimate/docs/Reanimate-Scene.html#v:oScaleIn),
[oGrow](https://hackage.haskell.org/package/reanimate/docs/Reanimate-Scene.html#v:oGrow).
Let's use the `oDraw` function to draw text on the screen and let's make sure the text is right-aligned:
Let's use the `oDraw` function to draw text on the screen and let's make sure the text is left-aligned:
<pre class="interactive">
animation :: Animation
@ -521,4 +521,4 @@ env = addStatic (mkBackground "lightblue") .
delay += 0;
}
},0);
</script>
</script>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M0,0 Q1,1 2,0 Z" /></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><path d="M2,0 L1.9375,0.067274 1.875,0.130208 1.8125,0.188802 1.75,0.243056 1.6875,0.292969 1.625,0.338542 1.5625,0.379774 1.5,0.416667 1.4375,0.449219 1.375,0.477431 1.3125,0.501302 1.25,0.520833 1.1875,0.536024 1.125,0.546875 1.0625,0.553385 1,0.555556 0.9375,0.553385 0.875,0.546875 0.8125,0.536024 0.75,0.520833 0.6875,0.501302 0.625,0.477431 0.5625,0.449219 0.5,0.416667 0.4375,0.379774 0.375,0.338542 0.3125,0.292969 0.25,0.243056 0.1875,0.188802 0.125,0.130208 0.0625,0.067274 0,0 Z" /></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><path d="M2,0 L1.9375,0.074002 1.875,0.143229 1.8125,0.207682 1.75,0.267361 1.6875,0.322266 1.625,0.372396 1.5625,0.417752 1.5,0.458333 1.4375,0.494141 1.375,0.525174 1.3125,0.551432 1.25,0.572917 1.1875,0.589627 1.125,0.601563 1.0625,0.608724 1,0.611111 0.9375,0.608724 0.875,0.601563 0.8125,0.589627 0.75,0.572917 0.6875,0.551432 0.625,0.525174 0.5625,0.494141 0.5,0.458333 0.4375,0.417752 0.375,0.372396 0.3125,0.322266 0.25,0.267361 0.1875,0.207682 0.125,0.143229 0.0625,0.074002 0,0 Z" /></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><path d="M2,0 L1.9375,0.080729 1.875,0.15625 1.8125,0.226563 1.75,0.291667 1.6875,0.351563 1.625,0.40625 1.5625,0.455729 1.5,0.5 1.4375,0.539063 1.375,0.572917 1.3125,0.601563 1.25,0.625 1.1875,0.643229 1.125,0.65625 1.0625,0.664063 1,0.666667 0.9375,0.664063 0.875,0.65625 0.8125,0.643229 0.75,0.625 0.6875,0.601563 0.625,0.572917 0.5625,0.539063 0.5,0.5 0.4375,0.455729 0.375,0.40625 0.3125,0.351563 0.25,0.291667 0.1875,0.226563 0.125,0.15625 0.0625,0.080729 0,0 Z" /></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><path d="M2,0 L1.9375,0.087457 1.875,0.169271 1.8125,0.245443 1.75,0.315972 1.6875,0.380859 1.625,0.440104 1.5625,0.493707 1.5,0.541667 1.4375,0.583984 1.375,0.62066 1.3125,0.651693 1.25,0.677083 1.1875,0.696832 1.125,0.710938 1.0625,0.719401 1,0.722222 0.9375,0.719401 0.875,0.710938 0.8125,0.696832 0.75,0.677083 0.6875,0.651693 0.625,0.62066 0.5625,0.583984 0.5,0.541667 0.4375,0.493707 0.375,0.440104 0.3125,0.380859 0.25,0.315972 0.1875,0.245443 0.125,0.169271 0.0625,0.087457 0,0 Z" /></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><path d="M2,0 L1.9375,0.094184 1.875,0.182292 1.8125,0.264323 1.75,0.340278 1.6875,0.410156 1.625,0.473958 1.5625,0.531684 1.5,0.583333 1.4375,0.628906 1.375,0.668403 1.3125,0.701823 1.25,0.729167 1.1875,0.750434 1.125,0.765625 1.0625,0.77474 1,0.777778 0.9375,0.77474 0.875,0.765625 0.8125,0.750434 0.75,0.729167 0.6875,0.701823 0.625,0.668403 0.5625,0.628906 0.5,0.583333 0.4375,0.531684 0.375,0.473958 0.3125,0.410156 0.25,0.340278 0.1875,0.264323 0.125,0.182292 0.0625,0.094184 0,0 Z" /></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><path d="M2,0 L1.9375,0.100911 1.875,0.195312 1.8125,0.283203 1.75,0.364583 1.6875,0.439453 1.625,0.507813 1.5625,0.569661 1.5,0.625 1.4375,0.673828 1.375,0.716146 1.3125,0.751953 1.25,0.78125 1.1875,0.804036 1.125,0.820313 1.0625,0.830078 1,0.833333 0.9375,0.830078 0.875,0.820313 0.8125,0.804036 0.75,0.78125 0.6875,0.751953 0.625,0.716146 0.5625,0.673828 0.5,0.625 0.4375,0.569661 0.375,0.507813 0.3125,0.439453 0.25,0.364583 0.1875,0.283203 0.125,0.195312 0.0625,0.100911 0,0 Z" /></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><path d="M2,0 L1.9375,0.107639 1.875,0.208333 1.8125,0.302083 1.75,0.388889 1.6875,0.46875 1.625,0.541667 1.5625,0.607639 1.5,0.666667 1.4375,0.71875 1.375,0.763889 1.3125,0.802083 1.25,0.833333 1.1875,0.857639 1.125,0.875 1.0625,0.885417 1,0.888889 0.9375,0.885417 0.875,0.875 0.8125,0.857639 0.75,0.833333 0.6875,0.802083 0.625,0.763889 0.5625,0.71875 0.5,0.666667 0.4375,0.607639 0.375,0.541667 0.3125,0.46875 0.25,0.388889 0.1875,0.302083 0.125,0.208333 0.0625,0.107639 0,0 Z" /></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><path d="M2,0 L1.9375,0.114366 1.875,0.221354 1.8125,0.320964 1.75,0.413194 1.6875,0.498047 1.625,0.575521 1.5625,0.645616 1.5,0.708333 1.4375,0.763672 1.375,0.811632 1.3125,0.852214 1.25,0.885417 1.1875,0.911241 1.125,0.929688 1.0625,0.940755 1,0.944444 0.9375,0.940755 0.875,0.929688 0.8125,0.911241 0.75,0.885417 0.6875,0.852214 0.625,0.811632 0.5625,0.763672 0.5,0.708333 0.4375,0.645616 0.375,0.575521 0.3125,0.498047 0.25,0.413194 0.1875,0.320964 0.125,0.221354 0.0625,0.114366 0,0 Z" /></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M0,0 Q1,2 2,0 Z" /></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g stroke-width="0" fill="#ADD8E6" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><path d="M-3,0 C-3,0 -3,0 -3,0" /></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g stroke-width="0" fill="#ADD8E6" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><path d="M-3,0 C-3,0.73638 -2.734687,1.410792 -2.294438,1.932862" /></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g stroke-width="0" fill="#ADD8E6" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><path d="M-3,0 C-3,1.472759 -1.938749,2.69765 -0.539254,2.951666" /></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g stroke-width="0" fill="#ADD8E6" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C0.552285,3 1.069713,2.850762 1.514157,2.590412" /></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g stroke-width="0" fill="#ADD8E6" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.288664,3 2.387555,2.18748 2.812312,1.046797" /></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g stroke-width="0" fill="#ADD8E6" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-0.36819 2.933672,-0.720888 2.812312,-1.046797" /></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g stroke-width="0" fill="#ADD8E6" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.104569 2.403046,-2.069713 1.514157,-2.590412" /></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g stroke-width="0" fill="#ADD8E6" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.184095,-3 -0.364317,-2.983418 -0.539254,-2.951666" /></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g stroke-width="0" fill="#ADD8E6" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.920475,-3 -1.744126,-2.585449 -2.294438,-1.932862" /></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g stroke-width="0" fill="#ADD8E6" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L0,0" /></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L5.555556,0" /></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,3.111111" /></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L3.833333,4.5" /></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L0,4.5 L0,2.777778" /></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 h8 v4.5 h-8 Z" /></g><path d="M-3,0 C-3,0.73638 -2.734687,1.410792 -2.294438,1.932862" /></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 h8 v4.5 h-8 Z" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C0.552285,3 1.069713,2.850762 1.514157,2.590412" /></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 h8 v4.5 h-8 Z" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-0.36819 2.933672,-0.720888 2.812312,-1.046797" /></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 h8 v4.5 h-8 Z" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.184095,-3 -0.364317,-2.983418 -0.539254,-2.951666" /></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 h8 v4.5 h-8 Z" /></g><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="rotate(0)"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L0,0" /></g></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="rotate(10)"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L2.777778,0" /></g></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="rotate(20)"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L5.555556,0" /></g></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="rotate(30)"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,0.333333" /></g></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="rotate(40)"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,3.111111" /></g></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="rotate(50)"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L6.611111,4.5" /></g></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="rotate(60)"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L3.833333,4.5" /></g></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="rotate(70)"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L1.055556,4.5" /></g></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="rotate(80)"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L0,4.5 L0,2.777778" /></g></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="rotate(90)"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 h8 v4.5 h-8 Z" /></g></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-5.135802, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-1.34321, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(3.555556, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(6.083951, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(6.083951, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(3.555556, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-1.34321, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-5.135802, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>

13
examples/doc_biolinum.hs Executable file
View file

@ -0,0 +1,13 @@
#!/usr/bin/env stack
-- stack runghc --package reanimate
{-# LANGUAGE OverloadedStrings #-}
module Main (main) where
import Reanimate
import Reanimate.LaTeX
import Reanimate.Builtin.Documentation
main :: IO ()
main = reanimate $ docEnv $ staticFrame 1 $
center $ withStrokeWidth 0 $ withFillOpacity 1 $ scale 4 $
latexCfg biolinum "biolinum"

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L0,0" /></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L6.944444,0" /></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L6.611111,4.5" /></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)" opacity="0.666667"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L0,4.5 L0,4.166667" /></g><path opacity="0.333333" d="M-3,0 C-3,0.552285 -2.850762,1.069713 -2.590412,1.514157" /></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C0.73638,3 1.410792,2.734687 1.932862,2.294438" /></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-0.920475 2.585449,-1.744126 1.932862,-2.294438" /></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path opacity="0.333333" d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-1.104569,-3 -2.069713,-2.403046 -2.590412,-1.514157" /><g opacity="0.666667"><line x1="-6.4" x2="6.4" /><g transform="translate(-4.266667, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-0.711111, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(2.844444, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAgUQAhUwAiVQAjVgAjWAAkWQAlWgAlXAAmXQAnXgAnXwAoYAApYQApYgAqYwArZAErZQIsZQMtZgQtZwUuZwUvaAYwaQcwaQgxagkyagsyagwzaw00aw40aw81bBA2bBI3bBM3bRQ4bRU5bRc5bRg6bRk7bRo7bRw8bh09bh4+biA+biE/biNAbiRAbiVBbidCbihDbilDbitEbixFbi5Fbi9GbjBHbjJIbjNIbjRJbjZKbjdKbjlLbjpMbjtNbj1Nbj5Obj9PbkFPbkJQbkNRbURSbUZSbUdTbUhUbUpUbUtVbUxWbU1XbU5XblBYblFZblJZblNablRbblZcbldcblhdblleblpebltfblxgbl1hbl5hbmBibmFjb2Jkb2Nkb2Rlb2Vmb2Zmb2dnb2hocGlpcGppcGtqcGxrcG1scG1scW5tcW9ucXBvcXFvcXJwcXNxcnRxcnVycnZzcnZ0cnd0c3h1c3l2c3p3c3t3dHt4dHx5dH16dH56dH97dYB8dYB9dYF9dYJ+dYN/doSAdoWAdoWBdoaCdoeDdoiEd4mEd4mFd4qGd4uHd4yHd42Id46JeI6KeI+KeJCLeJGMeJKNeJOOeJOOeJSPeJWQeJaReJeSeJiSeJmTeJqUeJuVeJuWeJyWeJ2XeJ6YeJ+ZeKCaeKGaeKKbeKOceKSdeKWed6aed6efd6igd6mhd6qidqujdqyjdq2kdq6lda+mdbCndbKodLOodLSpdLWqc7arc7escritcrqucruucbyvcb2wcL6xcL+yb8Gzb8K0bsO1bcS1bcW2bMe3bMi4a8m5asq6asy7ac28aM68aM+9Z9G+ZtK/ZtPAZdTBZNbCY9fDY9jEYtnFYdvGYNzGYN3HX97IXuDJXeHKXOLLXOPMW+TNWubOWefPWOjQWOnRV+rSVuvTVezUVO3UU+7VU/DWUvHXUfHYUPLZUPPaT/TbTvXcTfbdTffeTPjfS/jgS/nhSvriSfrjSfvkSPvlSPzmR/znRv3oRv3pRv3qRZkLZWrPPw90AAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAgUQAhUwAiVQAjVgAjWAAkWQAlWgAlXAAmXQAnXgAnXwAoYAApYQApYgAqYwArZAErZQIsZQMtZgQtZwUuZwUvaAYwaQcwaQgxagkyagsyagwzaw00aw40aw81bBA2bBI3bBM3bRQ4bRU5bRc5bRg6bRk7bRo7bRw8bh09bh4+biA+biE/biNAbiRAbiVBbidCbihDbilDbitEbixFbi5Fbi9GbjBHbjJIbjNIbjRJbjZKbjdKbjlLbjpMbjtNbj1Nbj5Obj9PbkFPbkJQbkNRbURSbUZSbUdTbUhUbUpUbUtVbUxWbU1XbU5XblBYblFZblJZblNablRbblZcbldcblhdblleblpebltfblxgbl1hbl5hbmBibmFjb2Jkb2Nkb2Rlb2Vmb2Zmb2dnb2hocGlpcGppcGtqcGxrcG1scG1scW5tcW9ucXBvcXFvcXJwcXNxcnRxcnVycnZzcnZ0cnd0c3h1c3l2c3p3c3t3dHt4dHx5dH16dH56dH97dYB8dYB9dYF9dYJ+dYN/doSAdoWAdoWBdoaCdoeDdoiEd4mEd4mFd4qGd4uHd4yHd42Id46JeI6KeI+KeJCLeJGMeJKNeJOOeJOOeJSPeJWQeJaReJeSeJiSeJmTeJqUeJuVeJuWeJyWeJ2XeJ6YeJ+ZeKCaeKGaeKKbeKOceKSdeKWed6aed6efd6igd6mhd6qidqujdqyjdq2kdq6lda+mdbCndbKodLOodLSpdLWqc7arc7escritcrqucruucbyvcb2wcL6xcL+yb8Gzb8K0bsO1bcS1bcW2bMe3bMi4a8m5asq6asy7ac28aM68aM+9Z9G+ZtK/ZtPAZdTBZNbCY9fDY9jEYtnFYdvGYNzGYN3HX97IXuDJXeHKXOLLXOPMW+TNWubOWefPWOjQWOnRV+rSVuvTVezUVO3UU+7VU/DWUvHXUfHYUPLZUPPaT/TbTvXcTfbdTffeTPjfS/jgS/nhSvriSfrjSfvkSPvlSPzmR/znRv3oRv3pRv3qRZkLZWrPPw90AAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAgUQAhUwAiVQAjVgAjWAAkWQAlWgAlXAAmXQAnXgAnXwAoYAApYQApYgAqYwArZAErZQIsZQMtZgQtZwUuZwUvaAYwaQcwaQgxagkyagsyagwzaw00aw40aw81bBA2bBI3bBM3bRQ4bRU5bRc5bRg6bRk7bRo7bRw8bh09bh4+biA+biE/biNAbiRAbiVBbidCbihDbilDbitEbixFbi5Fbi9GbjBHbjJIbjNIbjRJbjZKbjdKbjlLbjpMbjtNbj1Nbj5Obj9PbkFPbkJQbkNRbURSbUZSbUdTbUhUbUpUbUtVbUxWbU1XbU5XblBYblFZblJZblNablRbblZcbldcblhdblleblpebltfblxgbl1hbl5hbmBibmFjb2Jkb2Nkb2Rlb2Vmb2Zmb2dnb2hocGlpcGppcGtqcGxrcG1scG1scW5tcW9ucXBvcXFvcXJwcXNxcnRxcnVycnZzcnZ0cnd0c3h1c3l2c3p3c3t3dHt4dHx5dH16dH56dH97dYB8dYB9dYF9dYJ+dYN/doSAdoWAdoWBdoaCdoeDdoiEd4mEd4mFd4qGd4uHd4yHd42Id46JeI6KeI+KeJCLeJGMeJKNeJOOeJOOeJSPeJWQeJaReJeSeJiSeJmTeJqUeJuVeJuWeJyWeJ2XeJ6YeJ+ZeKCaeKGaeKKbeKOceKSdeKWed6aed6efd6igd6mhd6qidqujdqyjdq2kdq6lda+mdbCndbKodLOodLSpdLWqc7arc7escritcrqucruucbyvcb2wcL6xcL+yb8Gzb8K0bsO1bcS1bcW2bMe3bMi4a8m5asq6asy7ac28aM68aM+9Z9G+ZtK/ZtPAZdTBZNbCY9fDY9jEYtnFYdvGYNzGYN3HX97IXuDJXeHKXOLLXOPMW+TNWubOWefPWOjQWOnRV+rSVuvTVezUVO3UU+7VU/DWUvHXUfHYUPLZUPPaT/TbTvXcTfbdTffeTPjfS/jgS/nhSvriSfrjSfvkSPvlSPzmR/znRv3oRv3pRv3qRZkLZWrPPw90AAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAgUQAhUwAiVQAjVgAjWAAkWQAlWgAlXAAmXQAnXgAnXwAoYAApYQApYgAqYwArZAErZQIsZQMtZgQtZwUuZwUvaAYwaQcwaQgxagkyagsyagwzaw00aw40aw81bBA2bBI3bBM3bRQ4bRU5bRc5bRg6bRk7bRo7bRw8bh09bh4+biA+biE/biNAbiRAbiVBbidCbihDbilDbitEbixFbi5Fbi9GbjBHbjJIbjNIbjRJbjZKbjdKbjlLbjpMbjtNbj1Nbj5Obj9PbkFPbkJQbkNRbURSbUZSbUdTbUhUbUpUbUtVbUxWbU1XbU5XblBYblFZblJZblNablRbblZcbldcblhdblleblpebltfblxgbl1hbl5hbmBibmFjb2Jkb2Nkb2Rlb2Vmb2Zmb2dnb2hocGlpcGppcGtqcGxrcG1scG1scW5tcW9ucXBvcXFvcXJwcXNxcnRxcnVycnZzcnZ0cnd0c3h1c3l2c3p3c3t3dHt4dHx5dH16dH56dH97dYB8dYB9dYF9dYJ+dYN/doSAdoWAdoWBdoaCdoeDdoiEd4mEd4mFd4qGd4uHd4yHd42Id46JeI6KeI+KeJCLeJGMeJKNeJOOeJOOeJSPeJWQeJaReJeSeJiSeJmTeJqUeJuVeJuWeJyWeJ2XeJ6YeJ+ZeKCaeKGaeKKbeKOceKSdeKWed6aed6efd6igd6mhd6qidqujdqyjdq2kdq6lda+mdbCndbKodLOodLSpdLWqc7arc7escritcrqucruucbyvcb2wcL6xcL+yb8Gzb8K0bsO1bcS1bcW2bMe3bMi4a8m5asq6asy7ac28aM68aM+9Z9G+ZtK/ZtPAZdTBZNbCY9fDY9jEYtnFYdvGYNzGYN3HX97IXuDJXeHKXOLLXOPMW+TNWubOWefPWOjQWOnRV+rSVuvTVezUVO3UU+7VU/DWUvHXUfHYUPLZUPPaT/TbTvXcTfbdTffeTPjfS/jgS/nhSvriSfrjSfvkSPvlSPzmR/znRv3oRv3pRv3qRZkLZWrPPw90AAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAgUQAhUwAiVQAjVgAjWAAkWQAlWgAlXAAmXQAnXgAnXwAoYAApYQApYgAqYwArZAErZQIsZQMtZgQtZwUuZwUvaAYwaQcwaQgxagkyagsyagwzaw00aw40aw81bBA2bBI3bBM3bRQ4bRU5bRc5bRg6bRk7bRo7bRw8bh09bh4+biA+biE/biNAbiRAbiVBbidCbihDbilDbitEbixFbi5Fbi9GbjBHbjJIbjNIbjRJbjZKbjdKbjlLbjpMbjtNbj1Nbj5Obj9PbkFPbkJQbkNRbURSbUZSbUdTbUhUbUpUbUtVbUxWbU1XbU5XblBYblFZblJZblNablRbblZcbldcblhdblleblpebltfblxgbl1hbl5hbmBibmFjb2Jkb2Nkb2Rlb2Vmb2Zmb2dnb2hocGlpcGppcGtqcGxrcG1scG1scW5tcW9ucXBvcXFvcXJwcXNxcnRxcnVycnZzcnZ0cnd0c3h1c3l2c3p3c3t3dHt4dHx5dH16dH56dH97dYB8dYB9dYF9dYJ+dYN/doSAdoWAdoWBdoaCdoeDdoiEd4mEd4mFd4qGd4uHd4yHd42Id46JeI6KeI+KeJCLeJGMeJKNeJOOeJOOeJSPeJWQeJaReJeSeJiSeJmTeJqUeJuVeJuWeJyWeJ2XeJ6YeJ+ZeKCaeKGaeKKbeKOceKSdeKWed6aed6efd6igd6mhd6qidqujdqyjdq2kdq6lda+mdbCndbKodLOodLSpdLWqc7arc7escritcrqucruucbyvcb2wcL6xcL+yb8Gzb8K0bsO1bcS1bcW2bMe3bMi4a8m5asq6asy7ac28aM68aM+9Z9G+ZtK/ZtPAZdTBZNbCY9fDY9jEYtnFYdvGYNzGYN3HX97IXuDJXeHKXOLLXOPMW+TNWubOWefPWOjQWOnRV+rSVuvTVezUVO3UU+7VU/DWUvHXUfHYUPLZUPPaT/TbTvXcTfbdTffeTPjfS/jgS/nhSvriSfrjSfvkSPvlSPzmR/znRv3oRv3pRv3qRZkLZWrPPw90AAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAgUQAhUwAiVQAjVgAjWAAkWQAlWgAlXAAmXQAnXgAnXwAoYAApYQApYgAqYwArZAErZQIsZQMtZgQtZwUuZwUvaAYwaQcwaQgxagkyagsyagwzaw00aw40aw81bBA2bBI3bBM3bRQ4bRU5bRc5bRg6bRk7bRo7bRw8bh09bh4+biA+biE/biNAbiRAbiVBbidCbihDbilDbitEbixFbi5Fbi9GbjBHbjJIbjNIbjRJbjZKbjdKbjlLbjpMbjtNbj1Nbj5Obj9PbkFPbkJQbkNRbURSbUZSbUdTbUhUbUpUbUtVbUxWbU1XbU5XblBYblFZblJZblNablRbblZcbldcblhdblleblpebltfblxgbl1hbl5hbmBibmFjb2Jkb2Nkb2Rlb2Vmb2Zmb2dnb2hocGlpcGppcGtqcGxrcG1scG1scW5tcW9ucXBvcXFvcXJwcXNxcnRxcnVycnZzcnZ0cnd0c3h1c3l2c3p3c3t3dHt4dHx5dH16dH56dH97dYB8dYB9dYF9dYJ+dYN/doSAdoWAdoWBdoaCdoeDdoiEd4mEd4mFd4qGd4uHd4yHd42Id46JeI6KeI+KeJCLeJGMeJKNeJOOeJOOeJSPeJWQeJaReJeSeJiSeJmTeJqUeJuVeJuWeJyWeJ2XeJ6YeJ+ZeKCaeKGaeKKbeKOceKSdeKWed6aed6efd6igd6mhd6qidqujdqyjdq2kdq6lda+mdbCndbKodLOodLSpdLWqc7arc7escritcrqucruucbyvcb2wcL6xcL+yb8Gzb8K0bsO1bcS1bcW2bMe3bMi4a8m5asq6asy7ac28aM68aM+9Z9G+ZtK/ZtPAZdTBZNbCY9fDY9jEYtnFYdvGYNzGYN3HX97IXuDJXeHKXOLLXOPMW+TNWubOWefPWOjQWOnRV+rSVuvTVezUVO3UU+7VU/DWUvHXUfHYUPLZUPPaT/TbTvXcTfbdTffeTPjfS/jgS/nhSvriSfrjSfvkSPvlSPzmR/znRv3oRv3pRv3qRZkLZWrPPw90AAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAgUQAhUwAiVQAjVgAjWAAkWQAlWgAlXAAmXQAnXgAnXwAoYAApYQApYgAqYwArZAErZQIsZQMtZgQtZwUuZwUvaAYwaQcwaQgxagkyagsyagwzaw00aw40aw81bBA2bBI3bBM3bRQ4bRU5bRc5bRg6bRk7bRo7bRw8bh09bh4+biA+biE/biNAbiRAbiVBbidCbihDbilDbitEbixFbi5Fbi9GbjBHbjJIbjNIbjRJbjZKbjdKbjlLbjpMbjtNbj1Nbj5Obj9PbkFPbkJQbkNRbURSbUZSbUdTbUhUbUpUbUtVbUxWbU1XbU5XblBYblFZblJZblNablRbblZcbldcblhdblleblpebltfblxgbl1hbl5hbmBibmFjb2Jkb2Nkb2Rlb2Vmb2Zmb2dnb2hocGlpcGppcGtqcGxrcG1scG1scW5tcW9ucXBvcXFvcXJwcXNxcnRxcnVycnZzcnZ0cnd0c3h1c3l2c3p3c3t3dHt4dHx5dH16dH56dH97dYB8dYB9dYF9dYJ+dYN/doSAdoWAdoWBdoaCdoeDdoiEd4mEd4mFd4qGd4uHd4yHd42Id46JeI6KeI+KeJCLeJGMeJKNeJOOeJOOeJSPeJWQeJaReJeSeJiSeJmTeJqUeJuVeJuWeJyWeJ2XeJ6YeJ+ZeKCaeKGaeKKbeKOceKSdeKWed6aed6efd6igd6mhd6qidqujdqyjdq2kdq6lda+mdbCndbKodLOodLSpdLWqc7arc7escritcrqucruucbyvcb2wcL6xcL+yb8Gzb8K0bsO1bcS1bcW2bMe3bMi4a8m5asq6asy7ac28aM68aM+9Z9G+ZtK/ZtPAZdTBZNbCY9fDY9jEYtnFYdvGYNzGYN3HX97IXuDJXeHKXOLLXOPMW+TNWubOWefPWOjQWOnRV+rSVuvTVezUVO3UU+7VU/DWUvHXUfHYUPLZUPPaT/TbTvXcTfbdTffeTPjfS/jgS/nhSvriSfrjSfvkSPvlSPzmR/znRv3oRv3pRv3qRZkLZWrPPw90AAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAgUQAhUwAiVQAjVgAjWAAkWQAlWgAlXAAmXQAnXgAnXwAoYAApYQApYgAqYwArZAErZQIsZQMtZgQtZwUuZwUvaAYwaQcwaQgxagkyagsyagwzaw00aw40aw81bBA2bBI3bBM3bRQ4bRU5bRc5bRg6bRk7bRo7bRw8bh09bh4+biA+biE/biNAbiRAbiVBbidCbihDbilDbitEbixFbi5Fbi9GbjBHbjJIbjNIbjRJbjZKbjdKbjlLbjpMbjtNbj1Nbj5Obj9PbkFPbkJQbkNRbURSbUZSbUdTbUhUbUpUbUtVbUxWbU1XbU5XblBYblFZblJZblNablRbblZcbldcblhdblleblpebltfblxgbl1hbl5hbmBibmFjb2Jkb2Nkb2Rlb2Vmb2Zmb2dnb2hocGlpcGppcGtqcGxrcG1scG1scW5tcW9ucXBvcXFvcXJwcXNxcnRxcnVycnZzcnZ0cnd0c3h1c3l2c3p3c3t3dHt4dHx5dH16dH56dH97dYB8dYB9dYF9dYJ+dYN/doSAdoWAdoWBdoaCdoeDdoiEd4mEd4mFd4qGd4uHd4yHd42Id46JeI6KeI+KeJCLeJGMeJKNeJOOeJOOeJSPeJWQeJaReJeSeJiSeJmTeJqUeJuVeJuWeJyWeJ2XeJ6YeJ+ZeKCaeKGaeKKbeKOceKSdeKWed6aed6efd6igd6mhd6qidqujdqyjdq2kdq6lda+mdbCndbKodLOodLSpdLWqc7arc7escritcrqucruucbyvcb2wcL6xcL+yb8Gzb8K0bsO1bcS1bcW2bMe3bMi4a8m5asq6asy7ac28aM68aM+9Z9G+ZtK/ZtPAZdTBZNbCY9fDY9jEYtnFYdvGYNzGYN3HX97IXuDJXeHKXOLLXOPMW+TNWubOWefPWOjQWOnRV+rSVuvTVezUVO3UU+7VU/DWUvHXUfHYUPLZUPPaT/TbTvXcTfbdTffeTPjfS/jgS/nhSvriSfrjSfvkSPvlSPzmR/znRv3oRv3pRv3qRZkLZWrPPw90AAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAgUQAhUwAiVQAjVgAjWAAkWQAlWgAlXAAmXQAnXgAnXwAoYAApYQApYgAqYwArZAErZQIsZQMtZgQtZwUuZwUvaAYwaQcwaQgxagkyagsyagwzaw00aw40aw81bBA2bBI3bBM3bRQ4bRU5bRc5bRg6bRk7bRo7bRw8bh09bh4+biA+biE/biNAbiRAbiVBbidCbihDbilDbitEbixFbi5Fbi9GbjBHbjJIbjNIbjRJbjZKbjdKbjlLbjpMbjtNbj1Nbj5Obj9PbkFPbkJQbkNRbURSbUZSbUdTbUhUbUpUbUtVbUxWbU1XbU5XblBYblFZblJZblNablRbblZcbldcblhdblleblpebltfblxgbl1hbl5hbmBibmFjb2Jkb2Nkb2Rlb2Vmb2Zmb2dnb2hocGlpcGppcGtqcGxrcG1scG1scW5tcW9ucXBvcXFvcXJwcXNxcnRxcnVycnZzcnZ0cnd0c3h1c3l2c3p3c3t3dHt4dHx5dH16dH56dH97dYB8dYB9dYF9dYJ+dYN/doSAdoWAdoWBdoaCdoeDdoiEd4mEd4mFd4qGd4uHd4yHd42Id46JeI6KeI+KeJCLeJGMeJKNeJOOeJOOeJSPeJWQeJaReJeSeJiSeJmTeJqUeJuVeJuWeJyWeJ2XeJ6YeJ+ZeKCaeKGaeKKbeKOceKSdeKWed6aed6efd6igd6mhd6qidqujdqyjdq2kdq6lda+mdbCndbKodLOodLSpdLWqc7arc7escritcrqucruucbyvcb2wcL6xcL+yb8Gzb8K0bsO1bcS1bcW2bMe3bMi4a8m5asq6asy7ac28aM68aM+9Z9G+ZtK/ZtPAZdTBZNbCY9fDY9jEYtnFYdvGYNzGYN3HX97IXuDJXeHKXOLLXOPMW+TNWubOWefPWOjQWOnRV+rSVuvTVezUVO3UU+7VU/DWUvHXUfHYUPLZUPPaT/TbTvXcTfbdTffeTPjfS/jgS/nhSvriSfrjSfvkSPvlSPzmR/znRv3oRv3pRv3qRZkLZWrPPw90AAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAgUQAhUwAiVQAjVgAjWAAkWQAlWgAlXAAmXQAnXgAnXwAoYAApYQApYgAqYwArZAErZQIsZQMtZgQtZwUuZwUvaAYwaQcwaQgxagkyagsyagwzaw00aw40aw81bBA2bBI3bBM3bRQ4bRU5bRc5bRg6bRk7bRo7bRw8bh09bh4+biA+biE/biNAbiRAbiVBbidCbihDbilDbitEbixFbi5Fbi9GbjBHbjJIbjNIbjRJbjZKbjdKbjlLbjpMbjtNbj1Nbj5Obj9PbkFPbkJQbkNRbURSbUZSbUdTbUhUbUpUbUtVbUxWbU1XbU5XblBYblFZblJZblNablRbblZcbldcblhdblleblpebltfblxgbl1hbl5hbmBibmFjb2Jkb2Nkb2Rlb2Vmb2Zmb2dnb2hocGlpcGppcGtqcGxrcG1scG1scW5tcW9ucXBvcXFvcXJwcXNxcnRxcnVycnZzcnZ0cnd0c3h1c3l2c3p3c3t3dHt4dHx5dH16dH56dH97dYB8dYB9dYF9dYJ+dYN/doSAdoWAdoWBdoaCdoeDdoiEd4mEd4mFd4qGd4uHd4yHd42Id46JeI6KeI+KeJCLeJGMeJKNeJOOeJOOeJSPeJWQeJaReJeSeJiSeJmTeJqUeJuVeJuWeJyWeJ2XeJ6YeJ+ZeKCaeKGaeKKbeKOceKSdeKWed6aed6efd6igd6mhd6qidqujdqyjdq2kdq6lda+mdbCndbKodLOodLSpdLWqc7arc7escritcrqucruucbyvcb2wcL6xcL+yb8Gzb8K0bsO1bcS1bcW2bMe3bMi4a8m5asq6asy7ac28aM68aM+9Z9G+ZtK/ZtPAZdTBZNbCY9fDY9jEYtnFYdvGYNzGYN3HX97IXuDJXeHKXOLLXOPMW+TNWubOWefPWOjQWOnRV+rSVuvTVezUVO3UU+7VU/DWUvHXUfHYUPLZUPPaT/TbTvXcTfbdTffeTPjfS/jgS/nhSvriSfrjSfvkSPvlSPzmR/znRv3oRv3pRv3qRZkLZWrPPw90AAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(0, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(0, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(0, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(0, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(0, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(0, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(0, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(0, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(0, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(0, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-3.306228, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-0.802414, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(1.185185, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(2.730316, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(3.906722, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(4.788148, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(5.44834, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(5.961043, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-6.083951, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-5.135802, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-3.555556, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-1.34321, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(1.34321, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(3.555556, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(5.135802, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(6.083951, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><circle fill-opacity="1" r="1" /><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L0,0" /></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><circle fill-opacity="1" r="1" /><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L2.777778,0" /></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><circle fill-opacity="1" r="1" /><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L5.555556,0" /></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><circle fill-opacity="1" r="1" /><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,0.333333" /></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><circle fill-opacity="1" r="1" /><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,3.111111" /></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L6.611111,4.5" /></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L3.833333,4.5" /></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L1.055556,4.5" /></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L0,4.5 L0,2.777778" /></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 h8 v4.5 h-8 Z" /></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L0,0" /></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L2.777778,0" /></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L5.555556,0" /></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,0.333333" /></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,3.111111" /></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L6.611111,4.5" /></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L3.833333,4.5" /></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L1.055556,4.5" /></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L0,4.5 L0,2.777778" /></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 h8 v4.5 h-8 Z" /></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,0 -3,0 -3,0" /></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,0.73638 -2.734687,1.410792 -2.294438,1.932862" /></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.472759 -1.938749,2.69765 -0.539254,2.951666" /></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C0.552285,3 1.069713,2.850762 1.514157,2.590412" /></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.288664,3 2.387555,2.18748 2.812312,1.046797" /></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-0.36819 2.933672,-0.720888 2.812312,-1.046797" /></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.104569 2.403046,-2.069713 1.514157,-2.590412" /></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.184095,-3 -0.364317,-2.983418 -0.539254,-2.951666" /></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.920475,-3 -1.744126,-2.585449 -2.294438,-1.932862" /></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-4.977778, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-3.555556, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-2.133333, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-0.711111, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(0.711111, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(2.133333, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(3.555556, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(4.977778, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>

13
examples/doc_droidSans.hs Executable file
View file

@ -0,0 +1,13 @@
#!/usr/bin/env stack
-- stack runghc --package reanimate
{-# LANGUAGE OverloadedStrings #-}
module Main (main) where
import Reanimate
import Reanimate.LaTeX
import Reanimate.Builtin.Documentation
main :: IO ()
main = reanimate $ docEnv $ staticFrame 1 $
center $ withStrokeWidth 0 $ withFillOpacity 1 $ scale 3 $
latexCfg droidSans "droidSans"

13
examples/doc_droidSerif.hs Executable file
View file

@ -0,0 +1,13 @@
#!/usr/bin/env stack
-- stack runghc --package reanimate
{-# LANGUAGE OverloadedStrings #-}
module Main (main) where
import Reanimate
import Reanimate.LaTeX
import Reanimate.Builtin.Documentation
main :: IO ()
main = reanimate $ docEnv $ staticFrame 1 $
center $ withStrokeWidth 0 $ withFillOpacity 1 $ scale 3 $
latexCfg droidSerif "droidSerif"

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)" opacity="1"><path stroke-linecap="square" d="M0,0 L0,0" /></g><path opacity="0" d="M-3,0 C-3,0 -3,0 -3,0" /></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)" opacity="0.888889"><path stroke-linecap="square" d="M0,0 L2.777778,0" /></g><path opacity="0.111111" d="M-3,0 C-3,0.73638 -2.734687,1.410792 -2.294438,1.932862" /></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)" opacity="0.777778"><path stroke-linecap="square" d="M0,0 L5.555556,0" /></g><path opacity="0.222222" d="M-3,0 C-3,1.472759 -1.938749,2.69765 -0.539254,2.951666" /></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)" opacity="0.666667"><path stroke-linecap="square" d="M0,0 L8,0 L8,0.333333" /></g><path opacity="0.333333" d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C0.552285,3 1.069713,2.850762 1.514157,2.590412" /></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)" opacity="0.555556"><path stroke-linecap="square" d="M0,0 L8,0 L8,3.111111" /></g><path opacity="0.444444" d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.288664,3 2.387555,2.18748 2.812312,1.046797" /></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)" opacity="0.444444"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L6.611111,4.5" /></g><path opacity="0.555556" d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-0.36819 2.933672,-0.720888 2.812312,-1.046797" /></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)" opacity="0.333333"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L3.833333,4.5" /></g><path opacity="0.666667" d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.104569 2.403046,-2.069713 1.514157,-2.590412" /></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)" opacity="0.222222"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L1.055556,4.5" /></g><path opacity="0.777778" d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.184095,-3 -0.364317,-2.983418 -0.539254,-2.951666" /></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)" opacity="0.111111"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L0,4.5 L0,2.777778" /></g><path opacity="0.888889" d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.920475,-3 -1.744126,-2.585449 -2.294438,-1.932862" /></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)" opacity="0"><path stroke-linecap="square" d="M0,0 h8 v4.5 h-8 Z" /></g><path opacity="1" d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L0,0" /></g><path d="M-3,0 C-3,0 -3,0 -3,0" /></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L2.777778,0" /></g><path d="M-3,0 C-3,0.73638 -2.734687,1.410792 -2.294438,1.932862" /></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L5.555556,0" /></g><path d="M-3,0 C-3,1.472759 -1.938749,2.69765 -0.539254,2.951666" /></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,0.333333" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C0.552285,3 1.069713,2.850762 1.514157,2.590412" /></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,3.111111" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.288664,3 2.387555,2.18748 2.812312,1.046797" /></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L6.611111,4.5" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-0.36819 2.933672,-0.720888 2.812312,-1.046797" /></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L3.833333,4.5" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.104569 2.403046,-2.069713 1.514157,-2.590412" /></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L1.055556,4.5" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.184095,-3 -0.364317,-2.983418 -0.539254,-2.951666" /></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L0,4.5 L0,2.777778" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.920475,-3 -1.744126,-2.585449 -2.294438,-1.932862" /></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 h8 v4.5 h-8 Z" /></g><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(3.84, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(2.986667, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(2.133333, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(1.28, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(0.426667, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-0.426667, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-1.28, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-2.133333, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-2.986667, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-3.84, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-8, 4.5)"><g stroke-width="0" transform="scale(1, -1)" fill-opacity="1"><svg viewBox="0 0 256 250" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> <g> <path fill="#161614" d="M128.00106,0 C57.317293,0 0,57.306694 0,128.00106 C0,184.555281 36.6762,232.535542 87.534937,249.460899 C93.932022,250.645779 96.280588,246.684165 96.280588,243.303333 C96.280588,240.251045 96.161888,230.167899 96.106777,219.472176 C60.496758,227.215235 52.982621,204.369712 52.982621,204.369712 C47.159958,189.574598 38.770408,185.640538 38.770408,185.640538 C27.156879,177.696113 39.645821,177.859325 39.645821,177.859325 C52.499342,178.762293 59.267365,191.04987 59.267365,191.04987 C70.683768,210.618423 89.211575,204.961093 96.515868,201.690482 C97.664715,193.417512 100.981959,187.77078 104.642583,184.574357 C76.211799,181.33766 46.324819,170.362144 46.324819,121.315702 C46.324819,107.340889 51.325059,95.922368 59.513244,86.958394 C58.184227,83.734415 53.802923,70.715562 60.753235,53.084364 C60.753235,53.084364 71.50195,49.644181 95.962641,66.20496 C106.172967,63.368876 117.123047,61.946595 128.00106,61.897843 C138.879073,61.946595 149.837632,63.368876 160.067033,66.20496 C184.49805,49.644181 195.231926,53.084364 195.231926,53.084364 C202.199197,70.715562 197.815773,83.734415 196.486756,86.958394 C204.694018,95.922368 209.660343,107.340889 209.660343,121.315702 C209.660343,170.478725 179.716133,181.303747 151.213281,184.472614 C155.80443,188.444828 159.895342,196.234518 159.895342,208.176593 C159.895342,225.303317 159.746968,239.087361 159.746968,243.303333 C159.746968,246.709601 162.05102,250.70089 168.53925,249.443941 C219.370432,232.499507 256,184.536204 256,128.00106 C256,57.306694 198.691187,0 128.00106,0 Z M47.940559,182.340212 C47.658647,182.976105 46.658175,183.166873 45.746728,182.730227 C44.818323,182.312656 44.296891,181.445722 44.597881,180.80771 C44.873434,180.152739 45.876026,179.97045 46.80231,180.409216 C47.732834,180.826786 48.262745,181.702199 47.940559,182.340212 Z M54.236789,187.958254 C53.626332,188.524199 52.432972,188.261363 51.623268,187.366874 C50.786009,186.474504 50.629155,185.281144 51.248091,184.70672 C51.877625,184.140775 53.034951,184.405731 53.87433,185.298101 C54.711589,186.201069 54.874802,187.38595 54.236789,187.958254 Z M58.556241,195.146347 C57.771973,195.691096 56.489589,195.180261 55.696842,194.042013 C54.912573,192.903764 54.912573,191.538713 55.713799,190.991845 C56.508665,190.444977 57.771973,190.936735 58.575318,192.066505 C59.357467,193.22383 59.357467,194.58888 58.556241,195.146347 Z M65.861359,203.471174 C65.159757,204.244846 63.665408,204.03712 62.571672,202.981538 C61.4525,201.94927 61.140912,200.484596 61.844634,199.710926 C62.554715,198.935137 64.057542,199.15346 65.159757,200.200564 C66.270451,201.230712 66.609594,202.705984 65.861359,203.471174 Z M75.302515,206.281542 C74.993047,207.284134 73.553809,207.739857 72.103972,207.313809 C70.656256,206.875043 69.708775,205.700761 70.001286,204.687571 C70.302275,203.678621 71.747872,203.20382 73.208307,203.659543 C74.653904,204.09619 75.603505,205.261994 75.302515,206.281542 Z M86.046947,207.473627 C86.082981,208.529209 84.853587,209.404622 83.331683,209.4237 C81.8013,209.457614 80.563428,208.603398 80.546471,207.564772 C80.546471,206.498591 81.748309,205.631657 83.278692,205.606221 C84.800596,205.576546 86.046947,206.424403 86.046947,207.473627 Z M96.602147,207.069023 C96.784437,208.099171 95.726734,209.156872 94.215428,209.438785 C92.729558,209.710099 91.353909,209.074206 91.16526,208.052538 C90.980851,206.996955 92.057631,205.939253 93.541381,205.66582 C95.054807,205.402984 96.40926,206.021919 96.602147,207.069023 Z" /> </g></svg></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-8, 4.5)"><g stroke-width="0" transform="scale(1, -1)" fill-opacity="1"><svg viewBox="0 0 256 250" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> <g> <path fill="#161614" d="M128.00106,0 C57.317293,0 0,57.306694 0,128.00106 C0,184.555281 36.6762,232.535542 87.534937,249.460899 C93.932022,250.645779 96.280588,246.684165 96.280588,243.303333 C96.280588,240.251045 96.161888,230.167899 96.106777,219.472176 C60.496758,227.215235 52.982621,204.369712 52.982621,204.369712 C47.159958,189.574598 38.770408,185.640538 38.770408,185.640538 C27.156879,177.696113 39.645821,177.859325 39.645821,177.859325 C52.499342,178.762293 59.267365,191.04987 59.267365,191.04987 C70.683768,210.618423 89.211575,204.961093 96.515868,201.690482 C97.664715,193.417512 100.981959,187.77078 104.642583,184.574357 C76.211799,181.33766 46.324819,170.362144 46.324819,121.315702 C46.324819,107.340889 51.325059,95.922368 59.513244,86.958394 C58.184227,83.734415 53.802923,70.715562 60.753235,53.084364 C60.753235,53.084364 71.50195,49.644181 95.962641,66.20496 C106.172967,63.368876 117.123047,61.946595 128.00106,61.897843 C138.879073,61.946595 149.837632,63.368876 160.067033,66.20496 C184.49805,49.644181 195.231926,53.084364 195.231926,53.084364 C202.199197,70.715562 197.815773,83.734415 196.486756,86.958394 C204.694018,95.922368 209.660343,107.340889 209.660343,121.315702 C209.660343,170.478725 179.716133,181.303747 151.213281,184.472614 C155.80443,188.444828 159.895342,196.234518 159.895342,208.176593 C159.895342,225.303317 159.746968,239.087361 159.746968,243.303333 C159.746968,246.709601 162.05102,250.70089 168.53925,249.443941 C219.370432,232.499507 256,184.536204 256,128.00106 C256,57.306694 198.691187,0 128.00106,0 Z M47.940559,182.340212 C47.658647,182.976105 46.658175,183.166873 45.746728,182.730227 C44.818323,182.312656 44.296891,181.445722 44.597881,180.80771 C44.873434,180.152739 45.876026,179.97045 46.80231,180.409216 C47.732834,180.826786 48.262745,181.702199 47.940559,182.340212 Z M54.236789,187.958254 C53.626332,188.524199 52.432972,188.261363 51.623268,187.366874 C50.786009,186.474504 50.629155,185.281144 51.248091,184.70672 C51.877625,184.140775 53.034951,184.405731 53.87433,185.298101 C54.711589,186.201069 54.874802,187.38595 54.236789,187.958254 Z M58.556241,195.146347 C57.771973,195.691096 56.489589,195.180261 55.696842,194.042013 C54.912573,192.903764 54.912573,191.538713 55.713799,190.991845 C56.508665,190.444977 57.771973,190.936735 58.575318,192.066505 C59.357467,193.22383 59.357467,194.58888 58.556241,195.146347 Z M65.861359,203.471174 C65.159757,204.244846 63.665408,204.03712 62.571672,202.981538 C61.4525,201.94927 61.140912,200.484596 61.844634,199.710926 C62.554715,198.935137 64.057542,199.15346 65.159757,200.200564 C66.270451,201.230712 66.609594,202.705984 65.861359,203.471174 Z M75.302515,206.281542 C74.993047,207.284134 73.553809,207.739857 72.103972,207.313809 C70.656256,206.875043 69.708775,205.700761 70.001286,204.687571 C70.302275,203.678621 71.747872,203.20382 73.208307,203.659543 C74.653904,204.09619 75.603505,205.261994 75.302515,206.281542 Z M86.046947,207.473627 C86.082981,208.529209 84.853587,209.404622 83.331683,209.4237 C81.8013,209.457614 80.563428,208.603398 80.546471,207.564772 C80.546471,206.498591 81.748309,205.631657 83.278692,205.606221 C84.800596,205.576546 86.046947,206.424403 86.046947,207.473627 Z M96.602147,207.069023 C96.784437,208.099171 95.726734,209.156872 94.215428,209.438785 C92.729558,209.710099 91.353909,209.074206 91.16526,208.052538 C90.980851,206.996955 92.057631,205.939253 93.541381,205.66582 C95.054807,205.402984 96.40926,206.021919 96.602147,207.069023 Z" /> </g></svg></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-8, 4.5)"><g stroke-width="0" transform="scale(1, -1)" fill-opacity="1"><svg viewBox="0 0 256 250" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> <g> <path fill="#161614" d="M128.00106,0 C57.317293,0 0,57.306694 0,128.00106 C0,184.555281 36.6762,232.535542 87.534937,249.460899 C93.932022,250.645779 96.280588,246.684165 96.280588,243.303333 C96.280588,240.251045 96.161888,230.167899 96.106777,219.472176 C60.496758,227.215235 52.982621,204.369712 52.982621,204.369712 C47.159958,189.574598 38.770408,185.640538 38.770408,185.640538 C27.156879,177.696113 39.645821,177.859325 39.645821,177.859325 C52.499342,178.762293 59.267365,191.04987 59.267365,191.04987 C70.683768,210.618423 89.211575,204.961093 96.515868,201.690482 C97.664715,193.417512 100.981959,187.77078 104.642583,184.574357 C76.211799,181.33766 46.324819,170.362144 46.324819,121.315702 C46.324819,107.340889 51.325059,95.922368 59.513244,86.958394 C58.184227,83.734415 53.802923,70.715562 60.753235,53.084364 C60.753235,53.084364 71.50195,49.644181 95.962641,66.20496 C106.172967,63.368876 117.123047,61.946595 128.00106,61.897843 C138.879073,61.946595 149.837632,63.368876 160.067033,66.20496 C184.49805,49.644181 195.231926,53.084364 195.231926,53.084364 C202.199197,70.715562 197.815773,83.734415 196.486756,86.958394 C204.694018,95.922368 209.660343,107.340889 209.660343,121.315702 C209.660343,170.478725 179.716133,181.303747 151.213281,184.472614 C155.80443,188.444828 159.895342,196.234518 159.895342,208.176593 C159.895342,225.303317 159.746968,239.087361 159.746968,243.303333 C159.746968,246.709601 162.05102,250.70089 168.53925,249.443941 C219.370432,232.499507 256,184.536204 256,128.00106 C256,57.306694 198.691187,0 128.00106,0 Z M47.940559,182.340212 C47.658647,182.976105 46.658175,183.166873 45.746728,182.730227 C44.818323,182.312656 44.296891,181.445722 44.597881,180.80771 C44.873434,180.152739 45.876026,179.97045 46.80231,180.409216 C47.732834,180.826786 48.262745,181.702199 47.940559,182.340212 Z M54.236789,187.958254 C53.626332,188.524199 52.432972,188.261363 51.623268,187.366874 C50.786009,186.474504 50.629155,185.281144 51.248091,184.70672 C51.877625,184.140775 53.034951,184.405731 53.87433,185.298101 C54.711589,186.201069 54.874802,187.38595 54.236789,187.958254 Z M58.556241,195.146347 C57.771973,195.691096 56.489589,195.180261 55.696842,194.042013 C54.912573,192.903764 54.912573,191.538713 55.713799,190.991845 C56.508665,190.444977 57.771973,190.936735 58.575318,192.066505 C59.357467,193.22383 59.357467,194.58888 58.556241,195.146347 Z M65.861359,203.471174 C65.159757,204.244846 63.665408,204.03712 62.571672,202.981538 C61.4525,201.94927 61.140912,200.484596 61.844634,199.710926 C62.554715,198.935137 64.057542,199.15346 65.159757,200.200564 C66.270451,201.230712 66.609594,202.705984 65.861359,203.471174 Z M75.302515,206.281542 C74.993047,207.284134 73.553809,207.739857 72.103972,207.313809 C70.656256,206.875043 69.708775,205.700761 70.001286,204.687571 C70.302275,203.678621 71.747872,203.20382 73.208307,203.659543 C74.653904,204.09619 75.603505,205.261994 75.302515,206.281542 Z M86.046947,207.473627 C86.082981,208.529209 84.853587,209.404622 83.331683,209.4237 C81.8013,209.457614 80.563428,208.603398 80.546471,207.564772 C80.546471,206.498591 81.748309,205.631657 83.278692,205.606221 C84.800596,205.576546 86.046947,206.424403 86.046947,207.473627 Z M96.602147,207.069023 C96.784437,208.099171 95.726734,209.156872 94.215428,209.438785 C92.729558,209.710099 91.353909,209.074206 91.16526,208.052538 C90.980851,206.996955 92.057631,205.939253 93.541381,205.66582 C95.054807,205.402984 96.40926,206.021919 96.602147,207.069023 Z" /> </g></svg></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-8, 4.5)"><g stroke-width="0" transform="scale(1, -1)" fill-opacity="1"><svg viewBox="0 0 256 250" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> <g> <path fill="#161614" d="M128.00106,0 C57.317293,0 0,57.306694 0,128.00106 C0,184.555281 36.6762,232.535542 87.534937,249.460899 C93.932022,250.645779 96.280588,246.684165 96.280588,243.303333 C96.280588,240.251045 96.161888,230.167899 96.106777,219.472176 C60.496758,227.215235 52.982621,204.369712 52.982621,204.369712 C47.159958,189.574598 38.770408,185.640538 38.770408,185.640538 C27.156879,177.696113 39.645821,177.859325 39.645821,177.859325 C52.499342,178.762293 59.267365,191.04987 59.267365,191.04987 C70.683768,210.618423 89.211575,204.961093 96.515868,201.690482 C97.664715,193.417512 100.981959,187.77078 104.642583,184.574357 C76.211799,181.33766 46.324819,170.362144 46.324819,121.315702 C46.324819,107.340889 51.325059,95.922368 59.513244,86.958394 C58.184227,83.734415 53.802923,70.715562 60.753235,53.084364 C60.753235,53.084364 71.50195,49.644181 95.962641,66.20496 C106.172967,63.368876 117.123047,61.946595 128.00106,61.897843 C138.879073,61.946595 149.837632,63.368876 160.067033,66.20496 C184.49805,49.644181 195.231926,53.084364 195.231926,53.084364 C202.199197,70.715562 197.815773,83.734415 196.486756,86.958394 C204.694018,95.922368 209.660343,107.340889 209.660343,121.315702 C209.660343,170.478725 179.716133,181.303747 151.213281,184.472614 C155.80443,188.444828 159.895342,196.234518 159.895342,208.176593 C159.895342,225.303317 159.746968,239.087361 159.746968,243.303333 C159.746968,246.709601 162.05102,250.70089 168.53925,249.443941 C219.370432,232.499507 256,184.536204 256,128.00106 C256,57.306694 198.691187,0 128.00106,0 Z M47.940559,182.340212 C47.658647,182.976105 46.658175,183.166873 45.746728,182.730227 C44.818323,182.312656 44.296891,181.445722 44.597881,180.80771 C44.873434,180.152739 45.876026,179.97045 46.80231,180.409216 C47.732834,180.826786 48.262745,181.702199 47.940559,182.340212 Z M54.236789,187.958254 C53.626332,188.524199 52.432972,188.261363 51.623268,187.366874 C50.786009,186.474504 50.629155,185.281144 51.248091,184.70672 C51.877625,184.140775 53.034951,184.405731 53.87433,185.298101 C54.711589,186.201069 54.874802,187.38595 54.236789,187.958254 Z M58.556241,195.146347 C57.771973,195.691096 56.489589,195.180261 55.696842,194.042013 C54.912573,192.903764 54.912573,191.538713 55.713799,190.991845 C56.508665,190.444977 57.771973,190.936735 58.575318,192.066505 C59.357467,193.22383 59.357467,194.58888 58.556241,195.146347 Z M65.861359,203.471174 C65.159757,204.244846 63.665408,204.03712 62.571672,202.981538 C61.4525,201.94927 61.140912,200.484596 61.844634,199.710926 C62.554715,198.935137 64.057542,199.15346 65.159757,200.200564 C66.270451,201.230712 66.609594,202.705984 65.861359,203.471174 Z M75.302515,206.281542 C74.993047,207.284134 73.553809,207.739857 72.103972,207.313809 C70.656256,206.875043 69.708775,205.700761 70.001286,204.687571 C70.302275,203.678621 71.747872,203.20382 73.208307,203.659543 C74.653904,204.09619 75.603505,205.261994 75.302515,206.281542 Z M86.046947,207.473627 C86.082981,208.529209 84.853587,209.404622 83.331683,209.4237 C81.8013,209.457614 80.563428,208.603398 80.546471,207.564772 C80.546471,206.498591 81.748309,205.631657 83.278692,205.606221 C84.800596,205.576546 86.046947,206.424403 86.046947,207.473627 Z M96.602147,207.069023 C96.784437,208.099171 95.726734,209.156872 94.215428,209.438785 C92.729558,209.710099 91.353909,209.074206 91.16526,208.052538 C90.980851,206.996955 92.057631,205.939253 93.541381,205.66582 C95.054807,205.402984 96.40926,206.021919 96.602147,207.069023 Z" /> </g></svg></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-8, 4.5)"><g stroke-width="0" transform="scale(1, -1)" fill-opacity="1"><svg viewBox="0 0 256 250" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> <g> <path fill="#161614" d="M128.00106,0 C57.317293,0 0,57.306694 0,128.00106 C0,184.555281 36.6762,232.535542 87.534937,249.460899 C93.932022,250.645779 96.280588,246.684165 96.280588,243.303333 C96.280588,240.251045 96.161888,230.167899 96.106777,219.472176 C60.496758,227.215235 52.982621,204.369712 52.982621,204.369712 C47.159958,189.574598 38.770408,185.640538 38.770408,185.640538 C27.156879,177.696113 39.645821,177.859325 39.645821,177.859325 C52.499342,178.762293 59.267365,191.04987 59.267365,191.04987 C70.683768,210.618423 89.211575,204.961093 96.515868,201.690482 C97.664715,193.417512 100.981959,187.77078 104.642583,184.574357 C76.211799,181.33766 46.324819,170.362144 46.324819,121.315702 C46.324819,107.340889 51.325059,95.922368 59.513244,86.958394 C58.184227,83.734415 53.802923,70.715562 60.753235,53.084364 C60.753235,53.084364 71.50195,49.644181 95.962641,66.20496 C106.172967,63.368876 117.123047,61.946595 128.00106,61.897843 C138.879073,61.946595 149.837632,63.368876 160.067033,66.20496 C184.49805,49.644181 195.231926,53.084364 195.231926,53.084364 C202.199197,70.715562 197.815773,83.734415 196.486756,86.958394 C204.694018,95.922368 209.660343,107.340889 209.660343,121.315702 C209.660343,170.478725 179.716133,181.303747 151.213281,184.472614 C155.80443,188.444828 159.895342,196.234518 159.895342,208.176593 C159.895342,225.303317 159.746968,239.087361 159.746968,243.303333 C159.746968,246.709601 162.05102,250.70089 168.53925,249.443941 C219.370432,232.499507 256,184.536204 256,128.00106 C256,57.306694 198.691187,0 128.00106,0 Z M47.940559,182.340212 C47.658647,182.976105 46.658175,183.166873 45.746728,182.730227 C44.818323,182.312656 44.296891,181.445722 44.597881,180.80771 C44.873434,180.152739 45.876026,179.97045 46.80231,180.409216 C47.732834,180.826786 48.262745,181.702199 47.940559,182.340212 Z M54.236789,187.958254 C53.626332,188.524199 52.432972,188.261363 51.623268,187.366874 C50.786009,186.474504 50.629155,185.281144 51.248091,184.70672 C51.877625,184.140775 53.034951,184.405731 53.87433,185.298101 C54.711589,186.201069 54.874802,187.38595 54.236789,187.958254 Z M58.556241,195.146347 C57.771973,195.691096 56.489589,195.180261 55.696842,194.042013 C54.912573,192.903764 54.912573,191.538713 55.713799,190.991845 C56.508665,190.444977 57.771973,190.936735 58.575318,192.066505 C59.357467,193.22383 59.357467,194.58888 58.556241,195.146347 Z M65.861359,203.471174 C65.159757,204.244846 63.665408,204.03712 62.571672,202.981538 C61.4525,201.94927 61.140912,200.484596 61.844634,199.710926 C62.554715,198.935137 64.057542,199.15346 65.159757,200.200564 C66.270451,201.230712 66.609594,202.705984 65.861359,203.471174 Z M75.302515,206.281542 C74.993047,207.284134 73.553809,207.739857 72.103972,207.313809 C70.656256,206.875043 69.708775,205.700761 70.001286,204.687571 C70.302275,203.678621 71.747872,203.20382 73.208307,203.659543 C74.653904,204.09619 75.603505,205.261994 75.302515,206.281542 Z M86.046947,207.473627 C86.082981,208.529209 84.853587,209.404622 83.331683,209.4237 C81.8013,209.457614 80.563428,208.603398 80.546471,207.564772 C80.546471,206.498591 81.748309,205.631657 83.278692,205.606221 C84.800596,205.576546 86.046947,206.424403 86.046947,207.473627 Z M96.602147,207.069023 C96.784437,208.099171 95.726734,209.156872 94.215428,209.438785 C92.729558,209.710099 91.353909,209.074206 91.16526,208.052538 C90.980851,206.996955 92.057631,205.939253 93.541381,205.66582 C95.054807,205.402984 96.40926,206.021919 96.602147,207.069023 Z" /> </g></svg></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-8, 4.5)"><g stroke-width="0" transform="scale(1, -1)" fill-opacity="1"><svg viewBox="0 0 256 250" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> <g> <path fill="#161614" d="M128.00106,0 C57.317293,0 0,57.306694 0,128.00106 C0,184.555281 36.6762,232.535542 87.534937,249.460899 C93.932022,250.645779 96.280588,246.684165 96.280588,243.303333 C96.280588,240.251045 96.161888,230.167899 96.106777,219.472176 C60.496758,227.215235 52.982621,204.369712 52.982621,204.369712 C47.159958,189.574598 38.770408,185.640538 38.770408,185.640538 C27.156879,177.696113 39.645821,177.859325 39.645821,177.859325 C52.499342,178.762293 59.267365,191.04987 59.267365,191.04987 C70.683768,210.618423 89.211575,204.961093 96.515868,201.690482 C97.664715,193.417512 100.981959,187.77078 104.642583,184.574357 C76.211799,181.33766 46.324819,170.362144 46.324819,121.315702 C46.324819,107.340889 51.325059,95.922368 59.513244,86.958394 C58.184227,83.734415 53.802923,70.715562 60.753235,53.084364 C60.753235,53.084364 71.50195,49.644181 95.962641,66.20496 C106.172967,63.368876 117.123047,61.946595 128.00106,61.897843 C138.879073,61.946595 149.837632,63.368876 160.067033,66.20496 C184.49805,49.644181 195.231926,53.084364 195.231926,53.084364 C202.199197,70.715562 197.815773,83.734415 196.486756,86.958394 C204.694018,95.922368 209.660343,107.340889 209.660343,121.315702 C209.660343,170.478725 179.716133,181.303747 151.213281,184.472614 C155.80443,188.444828 159.895342,196.234518 159.895342,208.176593 C159.895342,225.303317 159.746968,239.087361 159.746968,243.303333 C159.746968,246.709601 162.05102,250.70089 168.53925,249.443941 C219.370432,232.499507 256,184.536204 256,128.00106 C256,57.306694 198.691187,0 128.00106,0 Z M47.940559,182.340212 C47.658647,182.976105 46.658175,183.166873 45.746728,182.730227 C44.818323,182.312656 44.296891,181.445722 44.597881,180.80771 C44.873434,180.152739 45.876026,179.97045 46.80231,180.409216 C47.732834,180.826786 48.262745,181.702199 47.940559,182.340212 Z M54.236789,187.958254 C53.626332,188.524199 52.432972,188.261363 51.623268,187.366874 C50.786009,186.474504 50.629155,185.281144 51.248091,184.70672 C51.877625,184.140775 53.034951,184.405731 53.87433,185.298101 C54.711589,186.201069 54.874802,187.38595 54.236789,187.958254 Z M58.556241,195.146347 C57.771973,195.691096 56.489589,195.180261 55.696842,194.042013 C54.912573,192.903764 54.912573,191.538713 55.713799,190.991845 C56.508665,190.444977 57.771973,190.936735 58.575318,192.066505 C59.357467,193.22383 59.357467,194.58888 58.556241,195.146347 Z M65.861359,203.471174 C65.159757,204.244846 63.665408,204.03712 62.571672,202.981538 C61.4525,201.94927 61.140912,200.484596 61.844634,199.710926 C62.554715,198.935137 64.057542,199.15346 65.159757,200.200564 C66.270451,201.230712 66.609594,202.705984 65.861359,203.471174 Z M75.302515,206.281542 C74.993047,207.284134 73.553809,207.739857 72.103972,207.313809 C70.656256,206.875043 69.708775,205.700761 70.001286,204.687571 C70.302275,203.678621 71.747872,203.20382 73.208307,203.659543 C74.653904,204.09619 75.603505,205.261994 75.302515,206.281542 Z M86.046947,207.473627 C86.082981,208.529209 84.853587,209.404622 83.331683,209.4237 C81.8013,209.457614 80.563428,208.603398 80.546471,207.564772 C80.546471,206.498591 81.748309,205.631657 83.278692,205.606221 C84.800596,205.576546 86.046947,206.424403 86.046947,207.473627 Z M96.602147,207.069023 C96.784437,208.099171 95.726734,209.156872 94.215428,209.438785 C92.729558,209.710099 91.353909,209.074206 91.16526,208.052538 C90.980851,206.996955 92.057631,205.939253 93.541381,205.66582 C95.054807,205.402984 96.40926,206.021919 96.602147,207.069023 Z" /> </g></svg></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-8, 4.5)"><g stroke-width="0" transform="scale(1, -1)" fill-opacity="1"><svg viewBox="0 0 256 250" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> <g> <path fill="#161614" d="M128.00106,0 C57.317293,0 0,57.306694 0,128.00106 C0,184.555281 36.6762,232.535542 87.534937,249.460899 C93.932022,250.645779 96.280588,246.684165 96.280588,243.303333 C96.280588,240.251045 96.161888,230.167899 96.106777,219.472176 C60.496758,227.215235 52.982621,204.369712 52.982621,204.369712 C47.159958,189.574598 38.770408,185.640538 38.770408,185.640538 C27.156879,177.696113 39.645821,177.859325 39.645821,177.859325 C52.499342,178.762293 59.267365,191.04987 59.267365,191.04987 C70.683768,210.618423 89.211575,204.961093 96.515868,201.690482 C97.664715,193.417512 100.981959,187.77078 104.642583,184.574357 C76.211799,181.33766 46.324819,170.362144 46.324819,121.315702 C46.324819,107.340889 51.325059,95.922368 59.513244,86.958394 C58.184227,83.734415 53.802923,70.715562 60.753235,53.084364 C60.753235,53.084364 71.50195,49.644181 95.962641,66.20496 C106.172967,63.368876 117.123047,61.946595 128.00106,61.897843 C138.879073,61.946595 149.837632,63.368876 160.067033,66.20496 C184.49805,49.644181 195.231926,53.084364 195.231926,53.084364 C202.199197,70.715562 197.815773,83.734415 196.486756,86.958394 C204.694018,95.922368 209.660343,107.340889 209.660343,121.315702 C209.660343,170.478725 179.716133,181.303747 151.213281,184.472614 C155.80443,188.444828 159.895342,196.234518 159.895342,208.176593 C159.895342,225.303317 159.746968,239.087361 159.746968,243.303333 C159.746968,246.709601 162.05102,250.70089 168.53925,249.443941 C219.370432,232.499507 256,184.536204 256,128.00106 C256,57.306694 198.691187,0 128.00106,0 Z M47.940559,182.340212 C47.658647,182.976105 46.658175,183.166873 45.746728,182.730227 C44.818323,182.312656 44.296891,181.445722 44.597881,180.80771 C44.873434,180.152739 45.876026,179.97045 46.80231,180.409216 C47.732834,180.826786 48.262745,181.702199 47.940559,182.340212 Z M54.236789,187.958254 C53.626332,188.524199 52.432972,188.261363 51.623268,187.366874 C50.786009,186.474504 50.629155,185.281144 51.248091,184.70672 C51.877625,184.140775 53.034951,184.405731 53.87433,185.298101 C54.711589,186.201069 54.874802,187.38595 54.236789,187.958254 Z M58.556241,195.146347 C57.771973,195.691096 56.489589,195.180261 55.696842,194.042013 C54.912573,192.903764 54.912573,191.538713 55.713799,190.991845 C56.508665,190.444977 57.771973,190.936735 58.575318,192.066505 C59.357467,193.22383 59.357467,194.58888 58.556241,195.146347 Z M65.861359,203.471174 C65.159757,204.244846 63.665408,204.03712 62.571672,202.981538 C61.4525,201.94927 61.140912,200.484596 61.844634,199.710926 C62.554715,198.935137 64.057542,199.15346 65.159757,200.200564 C66.270451,201.230712 66.609594,202.705984 65.861359,203.471174 Z M75.302515,206.281542 C74.993047,207.284134 73.553809,207.739857 72.103972,207.313809 C70.656256,206.875043 69.708775,205.700761 70.001286,204.687571 C70.302275,203.678621 71.747872,203.20382 73.208307,203.659543 C74.653904,204.09619 75.603505,205.261994 75.302515,206.281542 Z M86.046947,207.473627 C86.082981,208.529209 84.853587,209.404622 83.331683,209.4237 C81.8013,209.457614 80.563428,208.603398 80.546471,207.564772 C80.546471,206.498591 81.748309,205.631657 83.278692,205.606221 C84.800596,205.576546 86.046947,206.424403 86.046947,207.473627 Z M96.602147,207.069023 C96.784437,208.099171 95.726734,209.156872 94.215428,209.438785 C92.729558,209.710099 91.353909,209.074206 91.16526,208.052538 C90.980851,206.996955 92.057631,205.939253 93.541381,205.66582 C95.054807,205.402984 96.40926,206.021919 96.602147,207.069023 Z" /> </g></svg></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-8, 4.5)"><g stroke-width="0" transform="scale(1, -1)" fill-opacity="1"><svg viewBox="0 0 256 250" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> <g> <path fill="#161614" d="M128.00106,0 C57.317293,0 0,57.306694 0,128.00106 C0,184.555281 36.6762,232.535542 87.534937,249.460899 C93.932022,250.645779 96.280588,246.684165 96.280588,243.303333 C96.280588,240.251045 96.161888,230.167899 96.106777,219.472176 C60.496758,227.215235 52.982621,204.369712 52.982621,204.369712 C47.159958,189.574598 38.770408,185.640538 38.770408,185.640538 C27.156879,177.696113 39.645821,177.859325 39.645821,177.859325 C52.499342,178.762293 59.267365,191.04987 59.267365,191.04987 C70.683768,210.618423 89.211575,204.961093 96.515868,201.690482 C97.664715,193.417512 100.981959,187.77078 104.642583,184.574357 C76.211799,181.33766 46.324819,170.362144 46.324819,121.315702 C46.324819,107.340889 51.325059,95.922368 59.513244,86.958394 C58.184227,83.734415 53.802923,70.715562 60.753235,53.084364 C60.753235,53.084364 71.50195,49.644181 95.962641,66.20496 C106.172967,63.368876 117.123047,61.946595 128.00106,61.897843 C138.879073,61.946595 149.837632,63.368876 160.067033,66.20496 C184.49805,49.644181 195.231926,53.084364 195.231926,53.084364 C202.199197,70.715562 197.815773,83.734415 196.486756,86.958394 C204.694018,95.922368 209.660343,107.340889 209.660343,121.315702 C209.660343,170.478725 179.716133,181.303747 151.213281,184.472614 C155.80443,188.444828 159.895342,196.234518 159.895342,208.176593 C159.895342,225.303317 159.746968,239.087361 159.746968,243.303333 C159.746968,246.709601 162.05102,250.70089 168.53925,249.443941 C219.370432,232.499507 256,184.536204 256,128.00106 C256,57.306694 198.691187,0 128.00106,0 Z M47.940559,182.340212 C47.658647,182.976105 46.658175,183.166873 45.746728,182.730227 C44.818323,182.312656 44.296891,181.445722 44.597881,180.80771 C44.873434,180.152739 45.876026,179.97045 46.80231,180.409216 C47.732834,180.826786 48.262745,181.702199 47.940559,182.340212 Z M54.236789,187.958254 C53.626332,188.524199 52.432972,188.261363 51.623268,187.366874 C50.786009,186.474504 50.629155,185.281144 51.248091,184.70672 C51.877625,184.140775 53.034951,184.405731 53.87433,185.298101 C54.711589,186.201069 54.874802,187.38595 54.236789,187.958254 Z M58.556241,195.146347 C57.771973,195.691096 56.489589,195.180261 55.696842,194.042013 C54.912573,192.903764 54.912573,191.538713 55.713799,190.991845 C56.508665,190.444977 57.771973,190.936735 58.575318,192.066505 C59.357467,193.22383 59.357467,194.58888 58.556241,195.146347 Z M65.861359,203.471174 C65.159757,204.244846 63.665408,204.03712 62.571672,202.981538 C61.4525,201.94927 61.140912,200.484596 61.844634,199.710926 C62.554715,198.935137 64.057542,199.15346 65.159757,200.200564 C66.270451,201.230712 66.609594,202.705984 65.861359,203.471174 Z M75.302515,206.281542 C74.993047,207.284134 73.553809,207.739857 72.103972,207.313809 C70.656256,206.875043 69.708775,205.700761 70.001286,204.687571 C70.302275,203.678621 71.747872,203.20382 73.208307,203.659543 C74.653904,204.09619 75.603505,205.261994 75.302515,206.281542 Z M86.046947,207.473627 C86.082981,208.529209 84.853587,209.404622 83.331683,209.4237 C81.8013,209.457614 80.563428,208.603398 80.546471,207.564772 C80.546471,206.498591 81.748309,205.631657 83.278692,205.606221 C84.800596,205.576546 86.046947,206.424403 86.046947,207.473627 Z M96.602147,207.069023 C96.784437,208.099171 95.726734,209.156872 94.215428,209.438785 C92.729558,209.710099 91.353909,209.074206 91.16526,208.052538 C90.980851,206.996955 92.057631,205.939253 93.541381,205.66582 C95.054807,205.402984 96.40926,206.021919 96.602147,207.069023 Z" /> </g></svg></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-8, 4.5)"><g stroke-width="0" transform="scale(1, -1)" fill-opacity="1"><svg viewBox="0 0 256 250" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> <g> <path fill="#161614" d="M128.00106,0 C57.317293,0 0,57.306694 0,128.00106 C0,184.555281 36.6762,232.535542 87.534937,249.460899 C93.932022,250.645779 96.280588,246.684165 96.280588,243.303333 C96.280588,240.251045 96.161888,230.167899 96.106777,219.472176 C60.496758,227.215235 52.982621,204.369712 52.982621,204.369712 C47.159958,189.574598 38.770408,185.640538 38.770408,185.640538 C27.156879,177.696113 39.645821,177.859325 39.645821,177.859325 C52.499342,178.762293 59.267365,191.04987 59.267365,191.04987 C70.683768,210.618423 89.211575,204.961093 96.515868,201.690482 C97.664715,193.417512 100.981959,187.77078 104.642583,184.574357 C76.211799,181.33766 46.324819,170.362144 46.324819,121.315702 C46.324819,107.340889 51.325059,95.922368 59.513244,86.958394 C58.184227,83.734415 53.802923,70.715562 60.753235,53.084364 C60.753235,53.084364 71.50195,49.644181 95.962641,66.20496 C106.172967,63.368876 117.123047,61.946595 128.00106,61.897843 C138.879073,61.946595 149.837632,63.368876 160.067033,66.20496 C184.49805,49.644181 195.231926,53.084364 195.231926,53.084364 C202.199197,70.715562 197.815773,83.734415 196.486756,86.958394 C204.694018,95.922368 209.660343,107.340889 209.660343,121.315702 C209.660343,170.478725 179.716133,181.303747 151.213281,184.472614 C155.80443,188.444828 159.895342,196.234518 159.895342,208.176593 C159.895342,225.303317 159.746968,239.087361 159.746968,243.303333 C159.746968,246.709601 162.05102,250.70089 168.53925,249.443941 C219.370432,232.499507 256,184.536204 256,128.00106 C256,57.306694 198.691187,0 128.00106,0 Z M47.940559,182.340212 C47.658647,182.976105 46.658175,183.166873 45.746728,182.730227 C44.818323,182.312656 44.296891,181.445722 44.597881,180.80771 C44.873434,180.152739 45.876026,179.97045 46.80231,180.409216 C47.732834,180.826786 48.262745,181.702199 47.940559,182.340212 Z M54.236789,187.958254 C53.626332,188.524199 52.432972,188.261363 51.623268,187.366874 C50.786009,186.474504 50.629155,185.281144 51.248091,184.70672 C51.877625,184.140775 53.034951,184.405731 53.87433,185.298101 C54.711589,186.201069 54.874802,187.38595 54.236789,187.958254 Z M58.556241,195.146347 C57.771973,195.691096 56.489589,195.180261 55.696842,194.042013 C54.912573,192.903764 54.912573,191.538713 55.713799,190.991845 C56.508665,190.444977 57.771973,190.936735 58.575318,192.066505 C59.357467,193.22383 59.357467,194.58888 58.556241,195.146347 Z M65.861359,203.471174 C65.159757,204.244846 63.665408,204.03712 62.571672,202.981538 C61.4525,201.94927 61.140912,200.484596 61.844634,199.710926 C62.554715,198.935137 64.057542,199.15346 65.159757,200.200564 C66.270451,201.230712 66.609594,202.705984 65.861359,203.471174 Z M75.302515,206.281542 C74.993047,207.284134 73.553809,207.739857 72.103972,207.313809 C70.656256,206.875043 69.708775,205.700761 70.001286,204.687571 C70.302275,203.678621 71.747872,203.20382 73.208307,203.659543 C74.653904,204.09619 75.603505,205.261994 75.302515,206.281542 Z M86.046947,207.473627 C86.082981,208.529209 84.853587,209.404622 83.331683,209.4237 C81.8013,209.457614 80.563428,208.603398 80.546471,207.564772 C80.546471,206.498591 81.748309,205.631657 83.278692,205.606221 C84.800596,205.576546 86.046947,206.424403 86.046947,207.473627 Z M96.602147,207.069023 C96.784437,208.099171 95.726734,209.156872 94.215428,209.438785 C92.729558,209.710099 91.353909,209.074206 91.16526,208.052538 C90.980851,206.996955 92.057631,205.939253 93.541381,205.66582 C95.054807,205.402984 96.40926,206.021919 96.602147,207.069023 Z" /> </g></svg></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-8, 4.5)"><g stroke-width="0" transform="scale(1, -1)" fill-opacity="1"><svg viewBox="0 0 256 250" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> <g> <path fill="#161614" d="M128.00106,0 C57.317293,0 0,57.306694 0,128.00106 C0,184.555281 36.6762,232.535542 87.534937,249.460899 C93.932022,250.645779 96.280588,246.684165 96.280588,243.303333 C96.280588,240.251045 96.161888,230.167899 96.106777,219.472176 C60.496758,227.215235 52.982621,204.369712 52.982621,204.369712 C47.159958,189.574598 38.770408,185.640538 38.770408,185.640538 C27.156879,177.696113 39.645821,177.859325 39.645821,177.859325 C52.499342,178.762293 59.267365,191.04987 59.267365,191.04987 C70.683768,210.618423 89.211575,204.961093 96.515868,201.690482 C97.664715,193.417512 100.981959,187.77078 104.642583,184.574357 C76.211799,181.33766 46.324819,170.362144 46.324819,121.315702 C46.324819,107.340889 51.325059,95.922368 59.513244,86.958394 C58.184227,83.734415 53.802923,70.715562 60.753235,53.084364 C60.753235,53.084364 71.50195,49.644181 95.962641,66.20496 C106.172967,63.368876 117.123047,61.946595 128.00106,61.897843 C138.879073,61.946595 149.837632,63.368876 160.067033,66.20496 C184.49805,49.644181 195.231926,53.084364 195.231926,53.084364 C202.199197,70.715562 197.815773,83.734415 196.486756,86.958394 C204.694018,95.922368 209.660343,107.340889 209.660343,121.315702 C209.660343,170.478725 179.716133,181.303747 151.213281,184.472614 C155.80443,188.444828 159.895342,196.234518 159.895342,208.176593 C159.895342,225.303317 159.746968,239.087361 159.746968,243.303333 C159.746968,246.709601 162.05102,250.70089 168.53925,249.443941 C219.370432,232.499507 256,184.536204 256,128.00106 C256,57.306694 198.691187,0 128.00106,0 Z M47.940559,182.340212 C47.658647,182.976105 46.658175,183.166873 45.746728,182.730227 C44.818323,182.312656 44.296891,181.445722 44.597881,180.80771 C44.873434,180.152739 45.876026,179.97045 46.80231,180.409216 C47.732834,180.826786 48.262745,181.702199 47.940559,182.340212 Z M54.236789,187.958254 C53.626332,188.524199 52.432972,188.261363 51.623268,187.366874 C50.786009,186.474504 50.629155,185.281144 51.248091,184.70672 C51.877625,184.140775 53.034951,184.405731 53.87433,185.298101 C54.711589,186.201069 54.874802,187.38595 54.236789,187.958254 Z M58.556241,195.146347 C57.771973,195.691096 56.489589,195.180261 55.696842,194.042013 C54.912573,192.903764 54.912573,191.538713 55.713799,190.991845 C56.508665,190.444977 57.771973,190.936735 58.575318,192.066505 C59.357467,193.22383 59.357467,194.58888 58.556241,195.146347 Z M65.861359,203.471174 C65.159757,204.244846 63.665408,204.03712 62.571672,202.981538 C61.4525,201.94927 61.140912,200.484596 61.844634,199.710926 C62.554715,198.935137 64.057542,199.15346 65.159757,200.200564 C66.270451,201.230712 66.609594,202.705984 65.861359,203.471174 Z M75.302515,206.281542 C74.993047,207.284134 73.553809,207.739857 72.103972,207.313809 C70.656256,206.875043 69.708775,205.700761 70.001286,204.687571 C70.302275,203.678621 71.747872,203.20382 73.208307,203.659543 C74.653904,204.09619 75.603505,205.261994 75.302515,206.281542 Z M86.046947,207.473627 C86.082981,208.529209 84.853587,209.404622 83.331683,209.4237 C81.8013,209.457614 80.563428,208.603398 80.546471,207.564772 C80.546471,206.498591 81.748309,205.631657 83.278692,205.606221 C84.800596,205.576546 86.046947,206.424403 86.046947,207.473627 Z M96.602147,207.069023 C96.784437,208.099171 95.726734,209.156872 94.215428,209.438785 C92.729558,209.710099 91.353909,209.074206 91.16526,208.052538 C90.980851,206.996955 92.057631,205.939253 93.541381,205.66582 C95.054807,205.402984 96.40926,206.021919 96.602147,207.069023 Z" /> </g></svg></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAAAAEBAQICAgMDAwQEBAUFBQYGBgcHBwgICAkJCQoKCgsLCwwMDA0NDQ4ODg8PDxAQEBERERISEhMTExQUFBUVFRYWFhcXFxgYGBkZGRoaGhsbGxwcHB0dHR4eHh8fHyAgICEhISIiIiMjIyQkJCUlJSYmJicnJygoKCkpKSoqKisrKywsLC0tLS4uLi8vLzAwMDExMTIyMjMzMzQ0NDU1NTY2Njc3Nzg4ODk5OTo6Ojs7Ozw8PD09PT4+Pj8/P0BAQEFBQUJCQkNDQ0REREVFRUZGRkdHR0hISElJSUpKSktLS0xMTE1NTU5OTk9PT1BQUFFRUVJSUlNTU1RUVFVVVVZWVldXV1hYWFlZWVpaWltbW1xcXF1dXV5eXl9fX2BgYGFhYWJiYmNjY2RkZGVlZWZmZmdnZ2hoaGlpaWpqamtra2xsbG1tbW5ubm9vb3BwcHFxcXJycnNzc3R0dHV1dXZ2dnd3d3h4eHl5eXp6ent7e3x8fH19fX5+fn9/f4CAgIGBgYKCgoODg4SEhIWFhYaGhoeHh4iIiImJiYqKiouLi4yMjI2NjY6Ojo+Pj5CQkJGRkZKSkpOTk5SUlJWVlZaWlpeXl5iYmJmZmZqampubm5ycnJ2dnZ6enp+fn6CgoKGhoaKioqOjo6SkpKWlpaampqenp6ioqKmpqaqqqqurq6ysrK2tra6urq+vr7CwsLGxsbKysrOzs7S0tLW1tba2tre3t7i4uLm5ubq6uru7u7y8vL29vb6+vr+/v8DAwMHBwcLCwsPDw8TExMXFxcbGxsfHx8jIyMnJycrKysvLy8zMzM3Nzc7Ozs/Pz9DQ0NHR0dLS0tPT09TU1NXV1dbW1tfX19jY2NnZ2dra2tvb29zc3N3d3d7e3t/f3+Dg4OHh4eLi4uPj4+Tk5OXl5ebm5ufn5+jo6Onp6erq6uvr6+zs7O3t7e7u7u/v7/Dw8PHx8fLy8vPz8/T09PX19fb29vf39/j4+Pn5+fr6+vv7+/z8/P39/f7+/v///5ljfpBY+AC1AAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAAAAEBAQICAgMDAwQEBAUFBQYGBgcHBwgICAkJCQoKCgsLCwwMDA0NDQ4ODg8PDxAQEBERERISEhMTExQUFBUVFRYWFhcXFxgYGBkZGRoaGhsbGxwcHB0dHR4eHh8fHyAgICEhISIiIiMjIyQkJCUlJSYmJicnJygoKCkpKSoqKisrKywsLC0tLS4uLi8vLzAwMDExMTIyMjMzMzQ0NDU1NTY2Njc3Nzg4ODk5OTo6Ojs7Ozw8PD09PT4+Pj8/P0BAQEFBQUJCQkNDQ0REREVFRUZGRkdHR0hISElJSUpKSktLS0xMTE1NTU5OTk9PT1BQUFFRUVJSUlNTU1RUVFVVVVZWVldXV1hYWFlZWVpaWltbW1xcXF1dXV5eXl9fX2BgYGFhYWJiYmNjY2RkZGVlZWZmZmdnZ2hoaGlpaWpqamtra2xsbG1tbW5ubm9vb3BwcHFxcXJycnNzc3R0dHV1dXZ2dnd3d3h4eHl5eXp6ent7e3x8fH19fX5+fn9/f4CAgIGBgYKCgoODg4SEhIWFhYaGhoeHh4iIiImJiYqKiouLi4yMjI2NjY6Ojo+Pj5CQkJGRkZKSkpOTk5SUlJWVlZaWlpeXl5iYmJmZmZqampubm5ycnJ2dnZ6enp+fn6CgoKGhoaKioqOjo6SkpKWlpaampqenp6ioqKmpqaqqqqurq6ysrK2tra6urq+vr7CwsLGxsbKysrOzs7S0tLW1tba2tre3t7i4uLm5ubq6uru7u7y8vL29vb6+vr+/v8DAwMHBwcLCwsPDw8TExMXFxcbGxsfHx8jIyMnJycrKysvLy8zMzM3Nzc7Ozs/Pz9DQ0NHR0dLS0tPT09TU1NXV1dbW1tfX19jY2NnZ2dra2tvb29zc3N3d3d7e3t/f3+Dg4OHh4eLi4uPj4+Tk5OXl5ebm5ufn5+jo6Onp6erq6uvr6+zs7O3t7e7u7u/v7/Dw8PHx8fLy8vPz8/T09PX19fb29vf39/j4+Pn5+fr6+vv7+/z8/P39/f7+/v///5ljfpBY+AC1AAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAAAAEBAQICAgMDAwQEBAUFBQYGBgcHBwgICAkJCQoKCgsLCwwMDA0NDQ4ODg8PDxAQEBERERISEhMTExQUFBUVFRYWFhcXFxgYGBkZGRoaGhsbGxwcHB0dHR4eHh8fHyAgICEhISIiIiMjIyQkJCUlJSYmJicnJygoKCkpKSoqKisrKywsLC0tLS4uLi8vLzAwMDExMTIyMjMzMzQ0NDU1NTY2Njc3Nzg4ODk5OTo6Ojs7Ozw8PD09PT4+Pj8/P0BAQEFBQUJCQkNDQ0REREVFRUZGRkdHR0hISElJSUpKSktLS0xMTE1NTU5OTk9PT1BQUFFRUVJSUlNTU1RUVFVVVVZWVldXV1hYWFlZWVpaWltbW1xcXF1dXV5eXl9fX2BgYGFhYWJiYmNjY2RkZGVlZWZmZmdnZ2hoaGlpaWpqamtra2xsbG1tbW5ubm9vb3BwcHFxcXJycnNzc3R0dHV1dXZ2dnd3d3h4eHl5eXp6ent7e3x8fH19fX5+fn9/f4CAgIGBgYKCgoODg4SEhIWFhYaGhoeHh4iIiImJiYqKiouLi4yMjI2NjY6Ojo+Pj5CQkJGRkZKSkpOTk5SUlJWVlZaWlpeXl5iYmJmZmZqampubm5ycnJ2dnZ6enp+fn6CgoKGhoaKioqOjo6SkpKWlpaampqenp6ioqKmpqaqqqqurq6ysrK2tra6urq+vr7CwsLGxsbKysrOzs7S0tLW1tba2tre3t7i4uLm5ubq6uru7u7y8vL29vb6+vr+/v8DAwMHBwcLCwsPDw8TExMXFxcbGxsfHx8jIyMnJycrKysvLy8zMzM3Nzc7Ozs/Pz9DQ0NHR0dLS0tPT09TU1NXV1dbW1tfX19jY2NnZ2dra2tvb29zc3N3d3d7e3t/f3+Dg4OHh4eLi4uPj4+Tk5OXl5ebm5ufn5+jo6Onp6erq6uvr6+zs7O3t7e7u7u/v7/Dw8PHx8fLy8vPz8/T09PX19fb29vf39/j4+Pn5+fr6+vv7+/z8/P39/f7+/v///5ljfpBY+AC1AAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAAAAEBAQICAgMDAwQEBAUFBQYGBgcHBwgICAkJCQoKCgsLCwwMDA0NDQ4ODg8PDxAQEBERERISEhMTExQUFBUVFRYWFhcXFxgYGBkZGRoaGhsbGxwcHB0dHR4eHh8fHyAgICEhISIiIiMjIyQkJCUlJSYmJicnJygoKCkpKSoqKisrKywsLC0tLS4uLi8vLzAwMDExMTIyMjMzMzQ0NDU1NTY2Njc3Nzg4ODk5OTo6Ojs7Ozw8PD09PT4+Pj8/P0BAQEFBQUJCQkNDQ0REREVFRUZGRkdHR0hISElJSUpKSktLS0xMTE1NTU5OTk9PT1BQUFFRUVJSUlNTU1RUVFVVVVZWVldXV1hYWFlZWVpaWltbW1xcXF1dXV5eXl9fX2BgYGFhYWJiYmNjY2RkZGVlZWZmZmdnZ2hoaGlpaWpqamtra2xsbG1tbW5ubm9vb3BwcHFxcXJycnNzc3R0dHV1dXZ2dnd3d3h4eHl5eXp6ent7e3x8fH19fX5+fn9/f4CAgIGBgYKCgoODg4SEhIWFhYaGhoeHh4iIiImJiYqKiouLi4yMjI2NjY6Ojo+Pj5CQkJGRkZKSkpOTk5SUlJWVlZaWlpeXl5iYmJmZmZqampubm5ycnJ2dnZ6enp+fn6CgoKGhoaKioqOjo6SkpKWlpaampqenp6ioqKmpqaqqqqurq6ysrK2tra6urq+vr7CwsLGxsbKysrOzs7S0tLW1tba2tre3t7i4uLm5ubq6uru7u7y8vL29vb6+vr+/v8DAwMHBwcLCwsPDw8TExMXFxcbGxsfHx8jIyMnJycrKysvLy8zMzM3Nzc7Ozs/Pz9DQ0NHR0dLS0tPT09TU1NXV1dbW1tfX19jY2NnZ2dra2tvb29zc3N3d3d7e3t/f3+Dg4OHh4eLi4uPj4+Tk5OXl5ebm5ufn5+jo6Onp6erq6uvr6+zs7O3t7e7u7u/v7/Dw8PHx8fLy8vPz8/T09PX19fb29vf39/j4+Pn5+fr6+vv7+/z8/P39/f7+/v///5ljfpBY+AC1AAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAAAAEBAQICAgMDAwQEBAUFBQYGBgcHBwgICAkJCQoKCgsLCwwMDA0NDQ4ODg8PDxAQEBERERISEhMTExQUFBUVFRYWFhcXFxgYGBkZGRoaGhsbGxwcHB0dHR4eHh8fHyAgICEhISIiIiMjIyQkJCUlJSYmJicnJygoKCkpKSoqKisrKywsLC0tLS4uLi8vLzAwMDExMTIyMjMzMzQ0NDU1NTY2Njc3Nzg4ODk5OTo6Ojs7Ozw8PD09PT4+Pj8/P0BAQEFBQUJCQkNDQ0REREVFRUZGRkdHR0hISElJSUpKSktLS0xMTE1NTU5OTk9PT1BQUFFRUVJSUlNTU1RUVFVVVVZWVldXV1hYWFlZWVpaWltbW1xcXF1dXV5eXl9fX2BgYGFhYWJiYmNjY2RkZGVlZWZmZmdnZ2hoaGlpaWpqamtra2xsbG1tbW5ubm9vb3BwcHFxcXJycnNzc3R0dHV1dXZ2dnd3d3h4eHl5eXp6ent7e3x8fH19fX5+fn9/f4CAgIGBgYKCgoODg4SEhIWFhYaGhoeHh4iIiImJiYqKiouLi4yMjI2NjY6Ojo+Pj5CQkJGRkZKSkpOTk5SUlJWVlZaWlpeXl5iYmJmZmZqampubm5ycnJ2dnZ6enp+fn6CgoKGhoaKioqOjo6SkpKWlpaampqenp6ioqKmpqaqqqqurq6ysrK2tra6urq+vr7CwsLGxsbKysrOzs7S0tLW1tba2tre3t7i4uLm5ubq6uru7u7y8vL29vb6+vr+/v8DAwMHBwcLCwsPDw8TExMXFxcbGxsfHx8jIyMnJycrKysvLy8zMzM3Nzc7Ozs/Pz9DQ0NHR0dLS0tPT09TU1NXV1dbW1tfX19jY2NnZ2dra2tvb29zc3N3d3d7e3t/f3+Dg4OHh4eLi4uPj4+Tk5OXl5ebm5ufn5+jo6Onp6erq6uvr6+zs7O3t7e7u7u/v7/Dw8PHx8fLy8vPz8/T09PX19fb29vf39/j4+Pn5+fr6+vv7+/z8/P39/f7+/v///5ljfpBY+AC1AAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAAAAEBAQICAgMDAwQEBAUFBQYGBgcHBwgICAkJCQoKCgsLCwwMDA0NDQ4ODg8PDxAQEBERERISEhMTExQUFBUVFRYWFhcXFxgYGBkZGRoaGhsbGxwcHB0dHR4eHh8fHyAgICEhISIiIiMjIyQkJCUlJSYmJicnJygoKCkpKSoqKisrKywsLC0tLS4uLi8vLzAwMDExMTIyMjMzMzQ0NDU1NTY2Njc3Nzg4ODk5OTo6Ojs7Ozw8PD09PT4+Pj8/P0BAQEFBQUJCQkNDQ0REREVFRUZGRkdHR0hISElJSUpKSktLS0xMTE1NTU5OTk9PT1BQUFFRUVJSUlNTU1RUVFVVVVZWVldXV1hYWFlZWVpaWltbW1xcXF1dXV5eXl9fX2BgYGFhYWJiYmNjY2RkZGVlZWZmZmdnZ2hoaGlpaWpqamtra2xsbG1tbW5ubm9vb3BwcHFxcXJycnNzc3R0dHV1dXZ2dnd3d3h4eHl5eXp6ent7e3x8fH19fX5+fn9/f4CAgIGBgYKCgoODg4SEhIWFhYaGhoeHh4iIiImJiYqKiouLi4yMjI2NjY6Ojo+Pj5CQkJGRkZKSkpOTk5SUlJWVlZaWlpeXl5iYmJmZmZqampubm5ycnJ2dnZ6enp+fn6CgoKGhoaKioqOjo6SkpKWlpaampqenp6ioqKmpqaqqqqurq6ysrK2tra6urq+vr7CwsLGxsbKysrOzs7S0tLW1tba2tre3t7i4uLm5ubq6uru7u7y8vL29vb6+vr+/v8DAwMHBwcLCwsPDw8TExMXFxcbGxsfHx8jIyMnJycrKysvLy8zMzM3Nzc7Ozs/Pz9DQ0NHR0dLS0tPT09TU1NXV1dbW1tfX19jY2NnZ2dra2tvb29zc3N3d3d7e3t/f3+Dg4OHh4eLi4uPj4+Tk5OXl5ebm5ufn5+jo6Onp6erq6uvr6+zs7O3t7e7u7u/v7/Dw8PHx8fLy8vPz8/T09PX19fb29vf39/j4+Pn5+fr6+vv7+/z8/P39/f7+/v///5ljfpBY+AC1AAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAAAAEBAQICAgMDAwQEBAUFBQYGBgcHBwgICAkJCQoKCgsLCwwMDA0NDQ4ODg8PDxAQEBERERISEhMTExQUFBUVFRYWFhcXFxgYGBkZGRoaGhsbGxwcHB0dHR4eHh8fHyAgICEhISIiIiMjIyQkJCUlJSYmJicnJygoKCkpKSoqKisrKywsLC0tLS4uLi8vLzAwMDExMTIyMjMzMzQ0NDU1NTY2Njc3Nzg4ODk5OTo6Ojs7Ozw8PD09PT4+Pj8/P0BAQEFBQUJCQkNDQ0REREVFRUZGRkdHR0hISElJSUpKSktLS0xMTE1NTU5OTk9PT1BQUFFRUVJSUlNTU1RUVFVVVVZWVldXV1hYWFlZWVpaWltbW1xcXF1dXV5eXl9fX2BgYGFhYWJiYmNjY2RkZGVlZWZmZmdnZ2hoaGlpaWpqamtra2xsbG1tbW5ubm9vb3BwcHFxcXJycnNzc3R0dHV1dXZ2dnd3d3h4eHl5eXp6ent7e3x8fH19fX5+fn9/f4CAgIGBgYKCgoODg4SEhIWFhYaGhoeHh4iIiImJiYqKiouLi4yMjI2NjY6Ojo+Pj5CQkJGRkZKSkpOTk5SUlJWVlZaWlpeXl5iYmJmZmZqampubm5ycnJ2dnZ6enp+fn6CgoKGhoaKioqOjo6SkpKWlpaampqenp6ioqKmpqaqqqqurq6ysrK2tra6urq+vr7CwsLGxsbKysrOzs7S0tLW1tba2tre3t7i4uLm5ubq6uru7u7y8vL29vb6+vr+/v8DAwMHBwcLCwsPDw8TExMXFxcbGxsfHx8jIyMnJycrKysvLy8zMzM3Nzc7Ozs/Pz9DQ0NHR0dLS0tPT09TU1NXV1dbW1tfX19jY2NnZ2dra2tvb29zc3N3d3d7e3t/f3+Dg4OHh4eLi4uPj4+Tk5OXl5ebm5ufn5+jo6Onp6erq6uvr6+zs7O3t7e7u7u/v7/Dw8PHx8fLy8vPz8/T09PX19fb29vf39/j4+Pn5+fr6+vv7+/z8/P39/f7+/v///5ljfpBY+AC1AAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAAAAEBAQICAgMDAwQEBAUFBQYGBgcHBwgICAkJCQoKCgsLCwwMDA0NDQ4ODg8PDxAQEBERERISEhMTExQUFBUVFRYWFhcXFxgYGBkZGRoaGhsbGxwcHB0dHR4eHh8fHyAgICEhISIiIiMjIyQkJCUlJSYmJicnJygoKCkpKSoqKisrKywsLC0tLS4uLi8vLzAwMDExMTIyMjMzMzQ0NDU1NTY2Njc3Nzg4ODk5OTo6Ojs7Ozw8PD09PT4+Pj8/P0BAQEFBQUJCQkNDQ0REREVFRUZGRkdHR0hISElJSUpKSktLS0xMTE1NTU5OTk9PT1BQUFFRUVJSUlNTU1RUVFVVVVZWVldXV1hYWFlZWVpaWltbW1xcXF1dXV5eXl9fX2BgYGFhYWJiYmNjY2RkZGVlZWZmZmdnZ2hoaGlpaWpqamtra2xsbG1tbW5ubm9vb3BwcHFxcXJycnNzc3R0dHV1dXZ2dnd3d3h4eHl5eXp6ent7e3x8fH19fX5+fn9/f4CAgIGBgYKCgoODg4SEhIWFhYaGhoeHh4iIiImJiYqKiouLi4yMjI2NjY6Ojo+Pj5CQkJGRkZKSkpOTk5SUlJWVlZaWlpeXl5iYmJmZmZqampubm5ycnJ2dnZ6enp+fn6CgoKGhoaKioqOjo6SkpKWlpaampqenp6ioqKmpqaqqqqurq6ysrK2tra6urq+vr7CwsLGxsbKysrOzs7S0tLW1tba2tre3t7i4uLm5ubq6uru7u7y8vL29vb6+vr+/v8DAwMHBwcLCwsPDw8TExMXFxcbGxsfHx8jIyMnJycrKysvLy8zMzM3Nzc7Ozs/Pz9DQ0NHR0dLS0tPT09TU1NXV1dbW1tfX19jY2NnZ2dra2tvb29zc3N3d3d7e3t/f3+Dg4OHh4eLi4uPj4+Tk5OXl5ebm5ufn5+jo6Onp6erq6uvr6+zs7O3t7e7u7u/v7/Dw8PHx8fLy8vPz8/T09PX19fb29vf39/j4+Pn5+fr6+vv7+/z8/P39/f7+/v///5ljfpBY+AC1AAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAAAAEBAQICAgMDAwQEBAUFBQYGBgcHBwgICAkJCQoKCgsLCwwMDA0NDQ4ODg8PDxAQEBERERISEhMTExQUFBUVFRYWFhcXFxgYGBkZGRoaGhsbGxwcHB0dHR4eHh8fHyAgICEhISIiIiMjIyQkJCUlJSYmJicnJygoKCkpKSoqKisrKywsLC0tLS4uLi8vLzAwMDExMTIyMjMzMzQ0NDU1NTY2Njc3Nzg4ODk5OTo6Ojs7Ozw8PD09PT4+Pj8/P0BAQEFBQUJCQkNDQ0REREVFRUZGRkdHR0hISElJSUpKSktLS0xMTE1NTU5OTk9PT1BQUFFRUVJSUlNTU1RUVFVVVVZWVldXV1hYWFlZWVpaWltbW1xcXF1dXV5eXl9fX2BgYGFhYWJiYmNjY2RkZGVlZWZmZmdnZ2hoaGlpaWpqamtra2xsbG1tbW5ubm9vb3BwcHFxcXJycnNzc3R0dHV1dXZ2dnd3d3h4eHl5eXp6ent7e3x8fH19fX5+fn9/f4CAgIGBgYKCgoODg4SEhIWFhYaGhoeHh4iIiImJiYqKiouLi4yMjI2NjY6Ojo+Pj5CQkJGRkZKSkpOTk5SUlJWVlZaWlpeXl5iYmJmZmZqampubm5ycnJ2dnZ6enp+fn6CgoKGhoaKioqOjo6SkpKWlpaampqenp6ioqKmpqaqqqqurq6ysrK2tra6urq+vr7CwsLGxsbKysrOzs7S0tLW1tba2tre3t7i4uLm5ubq6uru7u7y8vL29vb6+vr+/v8DAwMHBwcLCwsPDw8TExMXFxcbGxsfHx8jIyMnJycrKysvLy8zMzM3Nzc7Ozs/Pz9DQ0NHR0dLS0tPT09TU1NXV1dbW1tfX19jY2NnZ2dra2tvb29zc3N3d3d7e3t/f3+Dg4OHh4eLi4uPj4+Tk5OXl5ebm5ufn5+jo6Onp6erq6uvr6+zs7O3t7e7u7u/v7/Dw8PHx8fLy8vPz8/T09PX19fb29vf39/j4+Pn5+fr6+vv7+/z8/P39/f7+/v///5ljfpBY+AC1AAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAAAAEBAQICAgMDAwQEBAUFBQYGBgcHBwgICAkJCQoKCgsLCwwMDA0NDQ4ODg8PDxAQEBERERISEhMTExQUFBUVFRYWFhcXFxgYGBkZGRoaGhsbGxwcHB0dHR4eHh8fHyAgICEhISIiIiMjIyQkJCUlJSYmJicnJygoKCkpKSoqKisrKywsLC0tLS4uLi8vLzAwMDExMTIyMjMzMzQ0NDU1NTY2Njc3Nzg4ODk5OTo6Ojs7Ozw8PD09PT4+Pj8/P0BAQEFBQUJCQkNDQ0REREVFRUZGRkdHR0hISElJSUpKSktLS0xMTE1NTU5OTk9PT1BQUFFRUVJSUlNTU1RUVFVVVVZWVldXV1hYWFlZWVpaWltbW1xcXF1dXV5eXl9fX2BgYGFhYWJiYmNjY2RkZGVlZWZmZmdnZ2hoaGlpaWpqamtra2xsbG1tbW5ubm9vb3BwcHFxcXJycnNzc3R0dHV1dXZ2dnd3d3h4eHl5eXp6ent7e3x8fH19fX5+fn9/f4CAgIGBgYKCgoODg4SEhIWFhYaGhoeHh4iIiImJiYqKiouLi4yMjI2NjY6Ojo+Pj5CQkJGRkZKSkpOTk5SUlJWVlZaWlpeXl5iYmJmZmZqampubm5ycnJ2dnZ6enp+fn6CgoKGhoaKioqOjo6SkpKWlpaampqenp6ioqKmpqaqqqqurq6ysrK2tra6urq+vr7CwsLGxsbKysrOzs7S0tLW1tba2tre3t7i4uLm5ubq6uru7u7y8vL29vb6+vr+/v8DAwMHBwcLCwsPDw8TExMXFxcbGxsfHx8jIyMnJycrKysvLy8zMzM3Nzc7Ozs/Pz9DQ0NHR0dLS0tPT09TU1NXV1dbW1tfX19jY2NnZ2dra2tvb29zc3N3d3d7e3t/f3+Dg4OHh4eLi4uPj4+Tk5OXl5ebm5ufn5+jo6Onp6erq6uvr6+zs7O3t7e7u7u/v7/Dw8PHx8fLy8vPz8/T09PX19fb29vf39/j4+Pn5+fr6+vv7+/z8/P39/f7+/v///5ljfpBY+AC1AAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-8, 4.5)"><g stroke-width="0" transform="scale(1, -1)" fill-opacity="1"><svg viewBox="0 0 256 181" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> <g> <path fill="#F97E2F" d="M0,180.6639 L60.221992,90.33195 L0,0 L45.165975,0 L105.387967,90.33195 L45.165975,180.6639 L0,180.6639 L0,180.6639 Z" /> <path fill="#95653A" d="M60.221992,180.6639 L120.443984,90.33195 L60.221992,0 L105.387967,0 L225.829875,180.6639 L180.6639,180.6639 L143.026971,124.207469 L105.387967,180.6639 L60.221992,180.6639 L60.221992,180.6639 Z" /> <path fill="#F97E2F" d="M205.757262,127.970954 L185.684647,97.860996 L255.941909,97.858921 L255.941909,127.970954 L205.757262,127.970954 L205.757262,127.970954 Z" /> <path fill="#F97E2F" d="M175.647303,82.804979 L155.572614,52.695021 L255.941909,52.692946 L255.941909,82.804979 L175.647303,82.804979 L175.647303,82.804979 Z" /> </g></svg></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-8, 4.5)"><g stroke-width="0" transform="scale(1, -1)" fill-opacity="1"><svg viewBox="0 0 256 181" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> <g> <path fill="#F97E2F" d="M0,180.6639 L60.221992,90.33195 L0,0 L45.165975,0 L105.387967,90.33195 L45.165975,180.6639 L0,180.6639 L0,180.6639 Z" /> <path fill="#95653A" d="M60.221992,180.6639 L120.443984,90.33195 L60.221992,0 L105.387967,0 L225.829875,180.6639 L180.6639,180.6639 L143.026971,124.207469 L105.387967,180.6639 L60.221992,180.6639 L60.221992,180.6639 Z" /> <path fill="#F97E2F" d="M205.757262,127.970954 L185.684647,97.860996 L255.941909,97.858921 L255.941909,127.970954 L205.757262,127.970954 L205.757262,127.970954 Z" /> <path fill="#F97E2F" d="M175.647303,82.804979 L155.572614,52.695021 L255.941909,52.692946 L255.941909,82.804979 L175.647303,82.804979 L175.647303,82.804979 Z" /> </g></svg></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-8, 4.5)"><g stroke-width="0" transform="scale(1, -1)" fill-opacity="1"><svg viewBox="0 0 256 181" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> <g> <path fill="#F97E2F" d="M0,180.6639 L60.221992,90.33195 L0,0 L45.165975,0 L105.387967,90.33195 L45.165975,180.6639 L0,180.6639 L0,180.6639 Z" /> <path fill="#95653A" d="M60.221992,180.6639 L120.443984,90.33195 L60.221992,0 L105.387967,0 L225.829875,180.6639 L180.6639,180.6639 L143.026971,124.207469 L105.387967,180.6639 L60.221992,180.6639 L60.221992,180.6639 Z" /> <path fill="#F97E2F" d="M205.757262,127.970954 L185.684647,97.860996 L255.941909,97.858921 L255.941909,127.970954 L205.757262,127.970954 L205.757262,127.970954 Z" /> <path fill="#F97E2F" d="M175.647303,82.804979 L155.572614,52.695021 L255.941909,52.692946 L255.941909,82.804979 L175.647303,82.804979 L175.647303,82.804979 Z" /> </g></svg></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-8, 4.5)"><g stroke-width="0" transform="scale(1, -1)" fill-opacity="1"><svg viewBox="0 0 256 181" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> <g> <path fill="#F97E2F" d="M0,180.6639 L60.221992,90.33195 L0,0 L45.165975,0 L105.387967,90.33195 L45.165975,180.6639 L0,180.6639 L0,180.6639 Z" /> <path fill="#95653A" d="M60.221992,180.6639 L120.443984,90.33195 L60.221992,0 L105.387967,0 L225.829875,180.6639 L180.6639,180.6639 L143.026971,124.207469 L105.387967,180.6639 L60.221992,180.6639 L60.221992,180.6639 Z" /> <path fill="#F97E2F" d="M205.757262,127.970954 L185.684647,97.860996 L255.941909,97.858921 L255.941909,127.970954 L205.757262,127.970954 L205.757262,127.970954 Z" /> <path fill="#F97E2F" d="M175.647303,82.804979 L155.572614,52.695021 L255.941909,52.692946 L255.941909,82.804979 L175.647303,82.804979 L175.647303,82.804979 Z" /> </g></svg></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-8, 4.5)"><g stroke-width="0" transform="scale(1, -1)" fill-opacity="1"><svg viewBox="0 0 256 181" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> <g> <path fill="#F97E2F" d="M0,180.6639 L60.221992,90.33195 L0,0 L45.165975,0 L105.387967,90.33195 L45.165975,180.6639 L0,180.6639 L0,180.6639 Z" /> <path fill="#95653A" d="M60.221992,180.6639 L120.443984,90.33195 L60.221992,0 L105.387967,0 L225.829875,180.6639 L180.6639,180.6639 L143.026971,124.207469 L105.387967,180.6639 L60.221992,180.6639 L60.221992,180.6639 Z" /> <path fill="#F97E2F" d="M205.757262,127.970954 L185.684647,97.860996 L255.941909,97.858921 L255.941909,127.970954 L205.757262,127.970954 L205.757262,127.970954 Z" /> <path fill="#F97E2F" d="M175.647303,82.804979 L155.572614,52.695021 L255.941909,52.692946 L255.941909,82.804979 L175.647303,82.804979 L175.647303,82.804979 Z" /> </g></svg></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-8, 4.5)"><g stroke-width="0" transform="scale(1, -1)" fill-opacity="1"><svg viewBox="0 0 256 181" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> <g> <path fill="#F97E2F" d="M0,180.6639 L60.221992,90.33195 L0,0 L45.165975,0 L105.387967,90.33195 L45.165975,180.6639 L0,180.6639 L0,180.6639 Z" /> <path fill="#95653A" d="M60.221992,180.6639 L120.443984,90.33195 L60.221992,0 L105.387967,0 L225.829875,180.6639 L180.6639,180.6639 L143.026971,124.207469 L105.387967,180.6639 L60.221992,180.6639 L60.221992,180.6639 Z" /> <path fill="#F97E2F" d="M205.757262,127.970954 L185.684647,97.860996 L255.941909,97.858921 L255.941909,127.970954 L205.757262,127.970954 L205.757262,127.970954 Z" /> <path fill="#F97E2F" d="M175.647303,82.804979 L155.572614,52.695021 L255.941909,52.692946 L255.941909,82.804979 L175.647303,82.804979 L175.647303,82.804979 Z" /> </g></svg></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-8, 4.5)"><g stroke-width="0" transform="scale(1, -1)" fill-opacity="1"><svg viewBox="0 0 256 181" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> <g> <path fill="#F97E2F" d="M0,180.6639 L60.221992,90.33195 L0,0 L45.165975,0 L105.387967,90.33195 L45.165975,180.6639 L0,180.6639 L0,180.6639 Z" /> <path fill="#95653A" d="M60.221992,180.6639 L120.443984,90.33195 L60.221992,0 L105.387967,0 L225.829875,180.6639 L180.6639,180.6639 L143.026971,124.207469 L105.387967,180.6639 L60.221992,180.6639 L60.221992,180.6639 Z" /> <path fill="#F97E2F" d="M205.757262,127.970954 L185.684647,97.860996 L255.941909,97.858921 L255.941909,127.970954 L205.757262,127.970954 L205.757262,127.970954 Z" /> <path fill="#F97E2F" d="M175.647303,82.804979 L155.572614,52.695021 L255.941909,52.692946 L255.941909,82.804979 L175.647303,82.804979 L175.647303,82.804979 Z" /> </g></svg></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-8, 4.5)"><g stroke-width="0" transform="scale(1, -1)" fill-opacity="1"><svg viewBox="0 0 256 181" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> <g> <path fill="#F97E2F" d="M0,180.6639 L60.221992,90.33195 L0,0 L45.165975,0 L105.387967,90.33195 L45.165975,180.6639 L0,180.6639 L0,180.6639 Z" /> <path fill="#95653A" d="M60.221992,180.6639 L120.443984,90.33195 L60.221992,0 L105.387967,0 L225.829875,180.6639 L180.6639,180.6639 L143.026971,124.207469 L105.387967,180.6639 L60.221992,180.6639 L60.221992,180.6639 Z" /> <path fill="#F97E2F" d="M205.757262,127.970954 L185.684647,97.860996 L255.941909,97.858921 L255.941909,127.970954 L205.757262,127.970954 L205.757262,127.970954 Z" /> <path fill="#F97E2F" d="M175.647303,82.804979 L155.572614,52.695021 L255.941909,52.692946 L255.941909,82.804979 L175.647303,82.804979 L175.647303,82.804979 Z" /> </g></svg></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-8, 4.5)"><g stroke-width="0" transform="scale(1, -1)" fill-opacity="1"><svg viewBox="0 0 256 181" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> <g> <path fill="#F97E2F" d="M0,180.6639 L60.221992,90.33195 L0,0 L45.165975,0 L105.387967,90.33195 L45.165975,180.6639 L0,180.6639 L0,180.6639 Z" /> <path fill="#95653A" d="M60.221992,180.6639 L120.443984,90.33195 L60.221992,0 L105.387967,0 L225.829875,180.6639 L180.6639,180.6639 L143.026971,124.207469 L105.387967,180.6639 L60.221992,180.6639 L60.221992,180.6639 Z" /> <path fill="#F97E2F" d="M205.757262,127.970954 L185.684647,97.860996 L255.941909,97.858921 L255.941909,127.970954 L205.757262,127.970954 L205.757262,127.970954 Z" /> <path fill="#F97E2F" d="M175.647303,82.804979 L155.572614,52.695021 L255.941909,52.692946 L255.941909,82.804979 L175.647303,82.804979 L175.647303,82.804979 Z" /> </g></svg></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-8, 4.5)"><g stroke-width="0" transform="scale(1, -1)" fill-opacity="1"><svg viewBox="0 0 256 181" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> <g> <path fill="#F97E2F" d="M0,180.6639 L60.221992,90.33195 L0,0 L45.165975,0 L105.387967,90.33195 L45.165975,180.6639 L0,180.6639 L0,180.6639 Z" /> <path fill="#95653A" d="M60.221992,180.6639 L120.443984,90.33195 L60.221992,0 L105.387967,0 L225.829875,180.6639 L180.6639,180.6639 L143.026971,124.207469 L105.387967,180.6639 L60.221992,180.6639 L60.221992,180.6639 Z" /> <path fill="#F97E2F" d="M205.757262,127.970954 L185.684647,97.860996 L255.941909,97.858921 L255.941909,127.970954 L205.757262,127.970954 L205.757262,127.970954 Z" /> <path fill="#F97E2F" d="M175.647303,82.804979 L155.572614,52.695021 L255.941909,52.692946 L255.941909,82.804979 L175.647303,82.804979 L175.647303,82.804979 Z" /> </g></svg></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAAs0lEQVR4nOXPkRbCAABA0UfRaBSNolEURdFoFEXRKBpFURRF0Wg0GkVRFEXRKBqNRqOd8zp9RdD9g4vgBAMMcYoRzjDGOS5wiStMMMU1bnCLGe4wxz0e8IgnPOMFCyyxwhqveMM7PvCJL2zwjS122OOAI6MM0ksnrbylkZc85SF3uclVaqmklEIucpaTHOUge8llJ5lsZSNrSSWRlSxlIXOJZSaRTCWUQCbf/L//f5rXX/8/3pF+DAOcE20AAAAASUVORK5CYII=" /></g></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAAs0lEQVR4nOXPkRbCAABA0UfRaBSNolEURdFoFEXRKBpFURRF0Wg0GkVRFEXRKBqNRqOd8zp9RdD9g4vgBAMMcYoRzjDGOS5wiStMMMU1bnCLGe4wxz0e8IgnPOMFCyyxwhqveMM7PvCJL2zwjS122OOAI6MM0ksnrbylkZc85SF3uclVaqmklEIucpaTHOUge8llJ5lsZSNrSSWRlSxlIXOJZSaRTCWUQCbf/L//f5rXX/8/3pF+DAOcE20AAAAASUVORK5CYII=" /></g></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAAs0lEQVR4nOXPkRbCAABA0UfRaBSNolEURdFoFEXRKBpFURRF0Wg0GkVRFEXRKBqNRqOd8zp9RdD9g4vgBAMMcYoRzjDGOS5wiStMMMU1bnCLGe4wxz0e8IgnPOMFCyyxwhqveMM7PvCJL2zwjS122OOAI6MM0ksnrbylkZc85SF3uclVaqmklEIucpaTHOUge8llJ5lsZSNrSSWRlSxlIXOJZSaRTCWUQCbf/L//f5rXX/8/3pF+DAOcE20AAAAASUVORK5CYII=" /></g></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAAs0lEQVR4nOXPkRbCAABA0UfRaBSNolEURdFoFEXRKBpFURRF0Wg0GkVRFEXRKBqNRqOd8zp9RdD9g4vgBAMMcYoRzjDGOS5wiStMMMU1bnCLGe4wxz0e8IgnPOMFCyyxwhqveMM7PvCJL2zwjS122OOAI6MM0ksnrbylkZc85SF3uclVaqmklEIucpaTHOUge8llJ5lsZSNrSSWRlSxlIXOJZSaRTCWUQCbf/L//f5rXX/8/3pF+DAOcE20AAAAASUVORK5CYII=" /></g></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAAs0lEQVR4nOXPkRbCAABA0UfRaBSNolEURdFoFEXRKBpFURRF0Wg0GkVRFEXRKBqNRqOd8zp9RdD9g4vgBAMMcYoRzjDGOS5wiStMMMU1bnCLGe4wxz0e8IgnPOMFCyyxwhqveMM7PvCJL2zwjS122OOAI6MM0ksnrbylkZc85SF3uclVaqmklEIucpaTHOUge8llJ5lsZSNrSSWRlSxlIXOJZSaRTCWUQCbf/L//f5rXX/8/3pF+DAOcE20AAAAASUVORK5CYII=" /></g></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAAs0lEQVR4nOXPkRbCAABA0UfRaBSNolEURdFoFEXRKBpFURRF0Wg0GkVRFEXRKBqNRqOd8zp9RdD9g4vgBAMMcYoRzjDGOS5wiStMMMU1bnCLGe4wxz0e8IgnPOMFCyyxwhqveMM7PvCJL2zwjS122OOAI6MM0ksnrbylkZc85SF3uclVaqmklEIucpaTHOUge8llJ5lsZSNrSSWRlSxlIXOJZSaRTCWUQCbf/L//f5rXX/8/3pF+DAOcE20AAAAASUVORK5CYII=" /></g></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAAs0lEQVR4nOXPkRbCAABA0UfRaBSNolEURdFoFEXRKBpFURRF0Wg0GkVRFEXRKBqNRqOd8zp9RdD9g4vgBAMMcYoRzjDGOS5wiStMMMU1bnCLGe4wxz0e8IgnPOMFCyyxwhqveMM7PvCJL2zwjS122OOAI6MM0ksnrbylkZc85SF3uclVaqmklEIucpaTHOUge8llJ5lsZSNrSSWRlSxlIXOJZSaRTCWUQCbf/L//f5rXX/8/3pF+DAOcE20AAAAASUVORK5CYII=" /></g></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAAs0lEQVR4nOXPkRbCAABA0UfRaBSNolEURdFoFEXRKBpFURRF0Wg0GkVRFEXRKBqNRqOd8zp9RdD9g4vgBAMMcYoRzjDGOS5wiStMMMU1bnCLGe4wxz0e8IgnPOMFCyyxwhqveMM7PvCJL2zwjS122OOAI6MM0ksnrbylkZc85SF3uclVaqmklEIucpaTHOUge8llJ5lsZSNrSSWRlSxlIXOJZSaRTCWUQCbf/L//f5rXX/8/3pF+DAOcE20AAAAASUVORK5CYII=" /></g></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAAs0lEQVR4nOXPkRbCAABA0UfRaBSNolEURdFoFEXRKBpFURRF0Wg0GkVRFEXRKBqNRqOd8zp9RdD9g4vgBAMMcYoRzjDGOS5wiStMMMU1bnCLGe4wxz0e8IgnPOMFCyyxwhqveMM7PvCJL2zwjS122OOAI6MM0ksnrbylkZc85SF3uclVaqmklEIucpaTHOUge8llJ5lsZSNrSSWRlSxlIXOJZSaRTCWUQCbf/L//f5rXX/8/3pF+DAOcE20AAAAASUVORK5CYII=" /></g></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAAs0lEQVR4nOXPkRbCAABA0UfRaBSNolEURdFoFEXRKBpFURRF0Wg0GkVRFEXRKBqNRqOd8zp9RdD9g4vgBAMMcYoRzjDGOS5wiStMMMU1bnCLGe4wxz0e8IgnPOMFCyyxwhqveMM7PvCJL2zwjS122OOAI6MM0ksnrbylkZc85SF3uclVaqmklEIucpaTHOUge8llJ5lsZSNrSSWRlSxlIXOJZSaRTCWUQCbf/L//f5rXX/8/3pF+DAOcE20AAAAASUVORK5CYII=" /></g></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAABPUlEQVR4nOXRgUYDAABAwUeMiBgjxogRMUaMERExxogYMcYYY8QYY0TEGBFjxBgRY0RExIgYY8QYESNGRESMiJe+I+4PDuVHvmUhX/IpH/IubzKXV5nJizzLVCbyJGMZyVAe5UEGci93cis3ci196cmVXEpXOnIhbWnJuZxJUxpyKidyLHWpSVUqciRlKUlRCpKXnBxKVg5kXzKSlpTsya7syLYkJSFbEpeYbMqGRGVdIhKWNQlJUFZlRZYlIEvCnyUM4DKu4CoGMYRrGMYIrmMUN3ATYxjHLUxgErdxB3dxD1OYxgzu4wFm8RBzmMcCFrGEZTzCClaxhnU8xhM8xQY28QzPsYVtvMAOdvESr7CHfbzGG7zFO7zHAT7gIw5xhGN8wglO8RlfcIavOMc3fMcP/MQvXOA3/vDv+38BFeJ+kBPM0CgAAAAASUVORK5CYII=" /></g></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAABPUlEQVR4nOXRgUYDAABAwUeMiBgjxogRMUaMERExxogYMcYYY8QYY0TEGBFjxBgRY0RExIgYY8QYESNGRESMiJe+I+4PDuVHvmUhX/IpH/IubzKXV5nJizzLVCbyJGMZyVAe5UEGci93cis3ci196cmVXEpXOnIhbWnJuZxJUxpyKidyLHWpSVUqciRlKUlRCpKXnBxKVg5kXzKSlpTsya7syLYkJSFbEpeYbMqGRGVdIhKWNQlJUFZlRZYlIEvCnyUM4DKu4CoGMYRrGMYIrmMUN3ATYxjHLUxgErdxB3dxD1OYxgzu4wFm8RBzmMcCFrGEZTzCClaxhnU8xhM8xQY28QzPsYVtvMAOdvESr7CHfbzGG7zFO7zHAT7gIw5xhGN8wglO8RlfcIavOMc3fMcP/MQvXOA3/vDv+38BFeJ+kBPM0CgAAAAASUVORK5CYII=" /></g></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAABPUlEQVR4nOXRgUYDAABAwUeMiBgjxogRMUaMERExxogYMcYYY8QYY0TEGBFjxBgRY0RExIgYY8QYESNGRESMiJe+I+4PDuVHvmUhX/IpH/IubzKXV5nJizzLVCbyJGMZyVAe5UEGci93cis3ci196cmVXEpXOnIhbWnJuZxJUxpyKidyLHWpSVUqciRlKUlRCpKXnBxKVg5kXzKSlpTsya7syLYkJSFbEpeYbMqGRGVdIhKWNQlJUFZlRZYlIEvCnyUM4DKu4CoGMYRrGMYIrmMUN3ATYxjHLUxgErdxB3dxD1OYxgzu4wFm8RBzmMcCFrGEZTzCClaxhnU8xhM8xQY28QzPsYVtvMAOdvESr7CHfbzGG7zFO7zHAT7gIw5xhGN8wglO8RlfcIavOMc3fMcP/MQvXOA3/vDv+38BFeJ+kBPM0CgAAAAASUVORK5CYII=" /></g></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAABPUlEQVR4nOXRgUYDAABAwUeMiBgjxogRMUaMERExxogYMcYYY8QYY0TEGBFjxBgRY0RExIgYY8QYESNGRESMiJe+I+4PDuVHvmUhX/IpH/IubzKXV5nJizzLVCbyJGMZyVAe5UEGci93cis3ci196cmVXEpXOnIhbWnJuZxJUxpyKidyLHWpSVUqciRlKUlRCpKXnBxKVg5kXzKSlpTsya7syLYkJSFbEpeYbMqGRGVdIhKWNQlJUFZlRZYlIEvCnyUM4DKu4CoGMYRrGMYIrmMUN3ATYxjHLUxgErdxB3dxD1OYxgzu4wFm8RBzmMcCFrGEZTzCClaxhnU8xhM8xQY28QzPsYVtvMAOdvESr7CHfbzGG7zFO7zHAT7gIw5xhGN8wglO8RlfcIavOMc3fMcP/MQvXOA3/vDv+38BFeJ+kBPM0CgAAAAASUVORK5CYII=" /></g></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAABPUlEQVR4nOXRgUYDAABAwUeMiBgjxogRMUaMERExxogYMcYYY8QYY0TEGBFjxBgRY0RExIgYY8QYESNGRESMiJe+I+4PDuVHvmUhX/IpH/IubzKXV5nJizzLVCbyJGMZyVAe5UEGci93cis3ci196cmVXEpXOnIhbWnJuZxJUxpyKidyLHWpSVUqciRlKUlRCpKXnBxKVg5kXzKSlpTsya7syLYkJSFbEpeYbMqGRGVdIhKWNQlJUFZlRZYlIEvCnyUM4DKu4CoGMYRrGMYIrmMUN3ATYxjHLUxgErdxB3dxD1OYxgzu4wFm8RBzmMcCFrGEZTzCClaxhnU8xhM8xQY28QzPsYVtvMAOdvESr7CHfbzGG7zFO7zHAT7gIw5xhGN8wglO8RlfcIavOMc3fMcP/MQvXOA3/vDv+38BFeJ+kBPM0CgAAAAASUVORK5CYII=" /></g></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAABPUlEQVR4nOXRgUYDAABAwUeMiBgjxogRMUaMERExxogYMcYYY8QYY0TEGBFjxBgRY0RExIgYY8QYESNGRESMiJe+I+4PDuVHvmUhX/IpH/IubzKXV5nJizzLVCbyJGMZyVAe5UEGci93cis3ci196cmVXEpXOnIhbWnJuZxJUxpyKidyLHWpSVUqciRlKUlRCpKXnBxKVg5kXzKSlpTsya7syLYkJSFbEpeYbMqGRGVdIhKWNQlJUFZlRZYlIEvCnyUM4DKu4CoGMYRrGMYIrmMUN3ATYxjHLUxgErdxB3dxD1OYxgzu4wFm8RBzmMcCFrGEZTzCClaxhnU8xhM8xQY28QzPsYVtvMAOdvESr7CHfbzGG7zFO7zHAT7gIw5xhGN8wglO8RlfcIavOMc3fMcP/MQvXOA3/vDv+38BFeJ+kBPM0CgAAAAASUVORK5CYII=" /></g></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAABPUlEQVR4nOXRgUYDAABAwUeMiBgjxogRMUaMERExxogYMcYYY8QYY0TEGBFjxBgRY0RExIgYY8QYESNGRESMiJe+I+4PDuVHvmUhX/IpH/IubzKXV5nJizzLVCbyJGMZyVAe5UEGci93cis3ci196cmVXEpXOnIhbWnJuZxJUxpyKidyLHWpSVUqciRlKUlRCpKXnBxKVg5kXzKSlpTsya7syLYkJSFbEpeYbMqGRGVdIhKWNQlJUFZlRZYlIEvCnyUM4DKu4CoGMYRrGMYIrmMUN3ATYxjHLUxgErdxB3dxD1OYxgzu4wFm8RBzmMcCFrGEZTzCClaxhnU8xhM8xQY28QzPsYVtvMAOdvESr7CHfbzGG7zFO7zHAT7gIw5xhGN8wglO8RlfcIavOMc3fMcP/MQvXOA3/vDv+38BFeJ+kBPM0CgAAAAASUVORK5CYII=" /></g></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAABPUlEQVR4nOXRgUYDAABAwUeMiBgjxogRMUaMERExxogYMcYYY8QYY0TEGBFjxBgRY0RExIgYY8QYESNGRESMiJe+I+4PDuVHvmUhX/IpH/IubzKXV5nJizzLVCbyJGMZyVAe5UEGci93cis3ci196cmVXEpXOnIhbWnJuZxJUxpyKidyLHWpSVUqciRlKUlRCpKXnBxKVg5kXzKSlpTsya7syLYkJSFbEpeYbMqGRGVdIhKWNQlJUFZlRZYlIEvCnyUM4DKu4CoGMYRrGMYIrmMUN3ATYxjHLUxgErdxB3dxD1OYxgzu4wFm8RBzmMcCFrGEZTzCClaxhnU8xhM8xQY28QzPsYVtvMAOdvESr7CHfbzGG7zFO7zHAT7gIw5xhGN8wglO8RlfcIavOMc3fMcP/MQvXOA3/vDv+38BFeJ+kBPM0CgAAAAASUVORK5CYII=" /></g></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAABPUlEQVR4nOXRgUYDAABAwUeMiBgjxogRMUaMERExxogYMcYYY8QYY0TEGBFjxBgRY0RExIgYY8QYESNGRESMiJe+I+4PDuVHvmUhX/IpH/IubzKXV5nJizzLVCbyJGMZyVAe5UEGci93cis3ci196cmVXEpXOnIhbWnJuZxJUxpyKidyLHWpSVUqciRlKUlRCpKXnBxKVg5kXzKSlpTsya7syLYkJSFbEpeYbMqGRGVdIhKWNQlJUFZlRZYlIEvCnyUM4DKu4CoGMYRrGMYIrmMUN3ATYxjHLUxgErdxB3dxD1OYxgzu4wFm8RBzmMcCFrGEZTzCClaxhnU8xhM8xQY28QzPsYVtvMAOdvESr7CHfbzGG7zFO7zHAT7gIw5xhGN8wglO8RlfcIavOMc3fMcP/MQvXOA3/vDv+38BFeJ+kBPM0CgAAAAASUVORK5CYII=" /></g></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAABPUlEQVR4nOXRgUYDAABAwUeMiBgjxogRMUaMERExxogYMcYYY8QYY0TEGBFjxBgRY0RExIgYY8QYESNGRESMiJe+I+4PDuVHvmUhX/IpH/IubzKXV5nJizzLVCbyJGMZyVAe5UEGci93cis3ci196cmVXEpXOnIhbWnJuZxJUxpyKidyLHWpSVUqciRlKUlRCpKXnBxKVg5kXzKSlpTsya7syLYkJSFbEpeYbMqGRGVdIhKWNQlJUFZlRZYlIEvCnyUM4DKu4CoGMYRrGMYIrmMUN3ATYxjHLUxgErdxB3dxD1OYxgzu4wFm8RBzmMcCFrGEZTzCClaxhnU8xhM8xQY28QzPsYVtvMAOdvESr7CHfbzGG7zFO7zHAT7gIw5xhGN8wglO8RlfcIavOMc3fMcP/MQvXOA3/vDv+38BFeJ+kBPM0CgAAAAASUVORK5CYII=" /></g></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAB3klEQVR4nBXQCWsIAACA0c8RC40sZ+4mljuWkPuIhUYWmVju3EcsGm2xplkYmms0FkazrMkma7LJ0EzWNBYmmxiaZU1m2SfvJzwE22FH7ILdsQ8OxCE4HMfgeJyMM3AuLsDFuAxX4hrciNtwN+7Dg3gYE/E4nsbzmIZX8Sbexrt4Hx/iYyzBl1iBb/Ejfsbv+BN/41+a5ZfUyzf5JB+kUl7JC3kmj+SB3JM7kiU3JF0uyTk5JcfkiBySAxItu2SrbJDVskKWyiKZL3NkukySUBktw2SwDJDe0k06Swdp+z+lFbbHTtgVe2BfHIRDcQSOxQk4BWfiPFyIS3A5rsK1uAm34x7cj7EYj0cxGVMwFS/jdczEbMzFfCzEYnyOZfga32M11mIdNmATtvBHGuWH1EqNVMkbKZdSeSJFUiB5kiO3JEOuSKqckWRJkgSJkxjZKztks6yTKImUCAmXMJklU2WijJOREiLB0k96SpAESoC0tg0GYCAGYS/sj8EYgqMwFCfiNJyNYRiOERiJUbget+BOjMYYjMMETMKTeBYvYjpmYBbmYB4WYBE+xVIsx0qswhr8ivXYiM0oLdIkDVInX6Ra3kmFlEmJFEuh5EuuZEumXJM0uSApckISJV5i/wHSroQXK5+ZtQAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAB3klEQVR4nBXQCWsIAACA0c8RC40sZ+4mljuWkPuIhUYWmVju3EcsGm2xplkYmms0FkazrMkma7LJ0EzWNBYmmxiaZU1m2SfvJzwE22FH7ILdsQ8OxCE4HMfgeJyMM3AuLsDFuAxX4hrciNtwN+7Dg3gYE/E4nsbzmIZX8Sbexrt4Hx/iYyzBl1iBb/Ejfsbv+BN/41+a5ZfUyzf5JB+kUl7JC3kmj+SB3JM7kiU3JF0uyTk5JcfkiBySAxItu2SrbJDVskKWyiKZL3NkukySUBktw2SwDJDe0k06Swdp+z+lFbbHTtgVe2BfHIRDcQSOxQk4BWfiPFyIS3A5rsK1uAm34x7cj7EYj0cxGVMwFS/jdczEbMzFfCzEYnyOZfga32M11mIdNmATtvBHGuWH1EqNVMkbKZdSeSJFUiB5kiO3JEOuSKqckWRJkgSJkxjZKztks6yTKImUCAmXMJklU2WijJOREiLB0k96SpAESoC0tg0GYCAGYS/sj8EYgqMwFCfiNJyNYRiOERiJUbget+BOjMYYjMMETMKTeBYvYjpmYBbmYB4WYBE+xVIsx0qswhr8ivXYiM0oLdIkDVInX6Ra3kmFlEmJFEuh5EuuZEumXJM0uSApckISJV5i/wHSroQXK5+ZtQAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAB3klEQVR4nBXQCWsIAACA0c8RC40sZ+4mljuWkPuIhUYWmVju3EcsGm2xplkYmms0FkazrMkma7LJ0EzWNBYmmxiaZU1m2SfvJzwE22FH7ILdsQ8OxCE4HMfgeJyMM3AuLsDFuAxX4hrciNtwN+7Dg3gYE/E4nsbzmIZX8Sbexrt4Hx/iYyzBl1iBb/Ejfsbv+BN/41+a5ZfUyzf5JB+kUl7JC3kmj+SB3JM7kiU3JF0uyTk5JcfkiBySAxItu2SrbJDVskKWyiKZL3NkukySUBktw2SwDJDe0k06Swdp+z+lFbbHTtgVe2BfHIRDcQSOxQk4BWfiPFyIS3A5rsK1uAm34x7cj7EYj0cxGVMwFS/jdczEbMzFfCzEYnyOZfga32M11mIdNmATtvBHGuWH1EqNVMkbKZdSeSJFUiB5kiO3JEOuSKqckWRJkgSJkxjZKztks6yTKImUCAmXMJklU2WijJOREiLB0k96SpAESoC0tg0GYCAGYS/sj8EYgqMwFCfiNJyNYRiOERiJUbget+BOjMYYjMMETMKTeBYvYjpmYBbmYB4WYBE+xVIsx0qswhr8ivXYiM0oLdIkDVInX6Ra3kmFlEmJFEuh5EuuZEumXJM0uSApckISJV5i/wHSroQXK5+ZtQAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAB3klEQVR4nBXQCWsIAACA0c8RC40sZ+4mljuWkPuIhUYWmVju3EcsGm2xplkYmms0FkazrMkma7LJ0EzWNBYmmxiaZU1m2SfvJzwE22FH7ILdsQ8OxCE4HMfgeJyMM3AuLsDFuAxX4hrciNtwN+7Dg3gYE/E4nsbzmIZX8Sbexrt4Hx/iYyzBl1iBb/Ejfsbv+BN/41+a5ZfUyzf5JB+kUl7JC3kmj+SB3JM7kiU3JF0uyTk5JcfkiBySAxItu2SrbJDVskKWyiKZL3NkukySUBktw2SwDJDe0k06Swdp+z+lFbbHTtgVe2BfHIRDcQSOxQk4BWfiPFyIS3A5rsK1uAm34x7cj7EYj0cxGVMwFS/jdczEbMzFfCzEYnyOZfga32M11mIdNmATtvBHGuWH1EqNVMkbKZdSeSJFUiB5kiO3JEOuSKqckWRJkgSJkxjZKztks6yTKImUCAmXMJklU2WijJOREiLB0k96SpAESoC0tg0GYCAGYS/sj8EYgqMwFCfiNJyNYRiOERiJUbget+BOjMYYjMMETMKTeBYvYjpmYBbmYB4WYBE+xVIsx0qswhr8ivXYiM0oLdIkDVInX6Ra3kmFlEmJFEuh5EuuZEumXJM0uSApckISJV5i/wHSroQXK5+ZtQAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAB3klEQVR4nBXQCWsIAACA0c8RC40sZ+4mljuWkPuIhUYWmVju3EcsGm2xplkYmms0FkazrMkma7LJ0EzWNBYmmxiaZU1m2SfvJzwE22FH7ILdsQ8OxCE4HMfgeJyMM3AuLsDFuAxX4hrciNtwN+7Dg3gYE/E4nsbzmIZX8Sbexrt4Hx/iYyzBl1iBb/Ejfsbv+BN/41+a5ZfUyzf5JB+kUl7JC3kmj+SB3JM7kiU3JF0uyTk5JcfkiBySAxItu2SrbJDVskKWyiKZL3NkukySUBktw2SwDJDe0k06Swdp+z+lFbbHTtgVe2BfHIRDcQSOxQk4BWfiPFyIS3A5rsK1uAm34x7cj7EYj0cxGVMwFS/jdczEbMzFfCzEYnyOZfga32M11mIdNmATtvBHGuWH1EqNVMkbKZdSeSJFUiB5kiO3JEOuSKqckWRJkgSJkxjZKztks6yTKImUCAmXMJklU2WijJOREiLB0k96SpAESoC0tg0GYCAGYS/sj8EYgqMwFCfiNJyNYRiOERiJUbget+BOjMYYjMMETMKTeBYvYjpmYBbmYB4WYBE+xVIsx0qswhr8ivXYiM0oLdIkDVInX6Ra3kmFlEmJFEuh5EuuZEumXJM0uSApckISJV5i/wHSroQXK5+ZtQAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAB3klEQVR4nBXQCWsIAACA0c8RC40sZ+4mljuWkPuIhUYWmVju3EcsGm2xplkYmms0FkazrMkma7LJ0EzWNBYmmxiaZU1m2SfvJzwE22FH7ILdsQ8OxCE4HMfgeJyMM3AuLsDFuAxX4hrciNtwN+7Dg3gYE/E4nsbzmIZX8Sbexrt4Hx/iYyzBl1iBb/Ejfsbv+BN/41+a5ZfUyzf5JB+kUl7JC3kmj+SB3JM7kiU3JF0uyTk5JcfkiBySAxItu2SrbJDVskKWyiKZL3NkukySUBktw2SwDJDe0k06Swdp+z+lFbbHTtgVe2BfHIRDcQSOxQk4BWfiPFyIS3A5rsK1uAm34x7cj7EYj0cxGVMwFS/jdczEbMzFfCzEYnyOZfga32M11mIdNmATtvBHGuWH1EqNVMkbKZdSeSJFUiB5kiO3JEOuSKqckWRJkgSJkxjZKztks6yTKImUCAmXMJklU2WijJOREiLB0k96SpAESoC0tg0GYCAGYS/sj8EYgqMwFCfiNJyNYRiOERiJUbget+BOjMYYjMMETMKTeBYvYjpmYBbmYB4WYBE+xVIsx0qswhr8ivXYiM0oLdIkDVInX6Ra3kmFlEmJFEuh5EuuZEumXJM0uSApckISJV5i/wHSroQXK5+ZtQAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAB3klEQVR4nBXQCWsIAACA0c8RC40sZ+4mljuWkPuIhUYWmVju3EcsGm2xplkYmms0FkazrMkma7LJ0EzWNBYmmxiaZU1m2SfvJzwE22FH7ILdsQ8OxCE4HMfgeJyMM3AuLsDFuAxX4hrciNtwN+7Dg3gYE/E4nsbzmIZX8Sbexrt4Hx/iYyzBl1iBb/Ejfsbv+BN/41+a5ZfUyzf5JB+kUl7JC3kmj+SB3JM7kiU3JF0uyTk5JcfkiBySAxItu2SrbJDVskKWyiKZL3NkukySUBktw2SwDJDe0k06Swdp+z+lFbbHTtgVe2BfHIRDcQSOxQk4BWfiPFyIS3A5rsK1uAm34x7cj7EYj0cxGVMwFS/jdczEbMzFfCzEYnyOZfga32M11mIdNmATtvBHGuWH1EqNVMkbKZdSeSJFUiB5kiO3JEOuSKqckWRJkgSJkxjZKztks6yTKImUCAmXMJklU2WijJOREiLB0k96SpAESoC0tg0GYCAGYS/sj8EYgqMwFCfiNJyNYRiOERiJUbget+BOjMYYjMMETMKTeBYvYjpmYBbmYB4WYBE+xVIsx0qswhr8ivXYiM0oLdIkDVInX6Ra3kmFlEmJFEuh5EuuZEumXJM0uSApckISJV5i/wHSroQXK5+ZtQAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAB3klEQVR4nBXQCWsIAACA0c8RC40sZ+4mljuWkPuIhUYWmVju3EcsGm2xplkYmms0FkazrMkma7LJ0EzWNBYmmxiaZU1m2SfvJzwE22FH7ILdsQ8OxCE4HMfgeJyMM3AuLsDFuAxX4hrciNtwN+7Dg3gYE/E4nsbzmIZX8Sbexrt4Hx/iYyzBl1iBb/Ejfsbv+BN/41+a5ZfUyzf5JB+kUl7JC3kmj+SB3JM7kiU3JF0uyTk5JcfkiBySAxItu2SrbJDVskKWyiKZL3NkukySUBktw2SwDJDe0k06Swdp+z+lFbbHTtgVe2BfHIRDcQSOxQk4BWfiPFyIS3A5rsK1uAm34x7cj7EYj0cxGVMwFS/jdczEbMzFfCzEYnyOZfga32M11mIdNmATtvBHGuWH1EqNVMkbKZdSeSJFUiB5kiO3JEOuSKqckWRJkgSJkxjZKztks6yTKImUCAmXMJklU2WijJOREiLB0k96SpAESoC0tg0GYCAGYS/sj8EYgqMwFCfiNJyNYRiOERiJUbget+BOjMYYjMMETMKTeBYvYjpmYBbmYB4WYBE+xVIsx0qswhr8ivXYiM0oLdIkDVInX6Ra3kmFlEmJFEuh5EuuZEumXJM0uSApckISJV5i/wHSroQXK5+ZtQAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAB3klEQVR4nBXQCWsIAACA0c8RC40sZ+4mljuWkPuIhUYWmVju3EcsGm2xplkYmms0FkazrMkma7LJ0EzWNBYmmxiaZU1m2SfvJzwE22FH7ILdsQ8OxCE4HMfgeJyMM3AuLsDFuAxX4hrciNtwN+7Dg3gYE/E4nsbzmIZX8Sbexrt4Hx/iYyzBl1iBb/Ejfsbv+BN/41+a5ZfUyzf5JB+kUl7JC3kmj+SB3JM7kiU3JF0uyTk5JcfkiBySAxItu2SrbJDVskKWyiKZL3NkukySUBktw2SwDJDe0k06Swdp+z+lFbbHTtgVe2BfHIRDcQSOxQk4BWfiPFyIS3A5rsK1uAm34x7cj7EYj0cxGVMwFS/jdczEbMzFfCzEYnyOZfga32M11mIdNmATtvBHGuWH1EqNVMkbKZdSeSJFUiB5kiO3JEOuSKqckWRJkgSJkxjZKztks6yTKImUCAmXMJklU2WijJOREiLB0k96SpAESoC0tg0GYCAGYS/sj8EYgqMwFCfiNJyNYRiOERiJUbget+BOjMYYjMMETMKTeBYvYjpmYBbmYB4WYBE+xVIsx0qswhr8ivXYiM0oLdIkDVInX6Ra3kmFlEmJFEuh5EuuZEumXJM0uSApckISJV5i/wHSroQXK5+ZtQAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAB3klEQVR4nBXQCWsIAACA0c8RC40sZ+4mljuWkPuIhUYWmVju3EcsGm2xplkYmms0FkazrMkma7LJ0EzWNBYmmxiaZU1m2SfvJzwE22FH7ILdsQ8OxCE4HMfgeJyMM3AuLsDFuAxX4hrciNtwN+7Dg3gYE/E4nsbzmIZX8Sbexrt4Hx/iYyzBl1iBb/Ejfsbv+BN/41+a5ZfUyzf5JB+kUl7JC3kmj+SB3JM7kiU3JF0uyTk5JcfkiBySAxItu2SrbJDVskKWyiKZL3NkukySUBktw2SwDJDe0k06Swdp+z+lFbbHTtgVe2BfHIRDcQSOxQk4BWfiPFyIS3A5rsK1uAm34x7cj7EYj0cxGVMwFS/jdczEbMzFfCzEYnyOZfga32M11mIdNmATtvBHGuWH1EqNVMkbKZdSeSJFUiB5kiO3JEOuSKqckWRJkgSJkxjZKztks6yTKImUCAmXMJklU2WijJOREiLB0k96SpAESoC0tg0GYCAGYS/sj8EYgqMwFCfiNJyNYRiOERiJUbget+BOjMYYjMMETMKTeBYvYjpmYBbmYB4WYBE+xVIsx0qswhr8ivXYiM0oLdIkDVInX6Ra3kmFlEmJFEuh5EuuZEumXJM0uSApckISJV5i/wHSroQXK5+ZtQAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAABAEABQEBBgEBCAIBCgICDAICDgMCEAQDEgQDFAUEFwYEGQcFGwgFHQkGHwoHIgsHJAwIJg0IKQ4JKxAJLREKMBIKMhQLNBULNxYLORgMPBkMPhsMQRwMQx4MRR8MSCEMSiMMTCQMTyYMUSgLUykLVSsLVy0LWS8KWzEKXDIKXjQKXzYJYTgJYjkJYzsJZD0JZT4JZkAKZ0IKaEQKaEUKaUcLakkLakoMa0wMa00NbE8NbFEObFIObVQPbVUPbVcQblkQbloRblwSbl0Sbl8TbmETbmIUbmQVbmUVbmcWbmkWbmoXbmwYbm0Ybm8ZbnEZbnIabnQabnUbbnccbXgcbXodbXwdbX0ebX8ebIAfbIIgbIQga4Uha4cha4giaooiaowjaY0jaY8kaZAlaJIlaJMmZ5UmZ5cnZpgnZpooZZspZJ0pZJ8qY6AqY6IrYqMsYaUsYKYtYKguX6kuXqsvXq0wXa4wXLAxW7EyWrMyWrQzWbY0WLc1V7k1Vro2Vbw3VL04U785UsA6UcE6UMM7T8Q8TsY9Tcc+TMg/S8pASstBScxCSM5DR89ERtBFRdJGRNNHQ9RIQtVKQddLP9hMPtlNPdpOPNtQO91ROt5SON9TN+BVNuFWNeJXNONZM+RaMeVcMOZdL+deLuhgLelhK+pjKutkKetmKOxnJu1pJe5qJO9sI+9uIfBvIPFxH/FzHfJ0HPN2G/N4GfR5GPV7F/V9FfZ+FPaAE/eCEveEEPiFD/iHDviJDPmLC/mMCvmOCfqQCPqSB/qUB/uWBvuXBvuZBvubBvudB/yfB/yhCPyjCfylCvymDPyoDfyqD/ysEfyuEvywFPyyFvy0GPu2Gvu4Hfu6H/u8Ifu+I/rAJvrCKPrEKvrGLfnHL/nJMvnLNfjNN/jPOvfRPffTQPbVQ/bXRvXZSfXbTPTdT/TfU/ThVvPjWvPlXfLmYfLoZfLqafHsbfHtcfHvdfHxefLyffL0gvP1hvP2ivT4jvX5kvb6lvj7mvn8nfr9ofz/pNKDO/afWurNAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAABAEABQEBBgEBCAIBCgICDAICDgMCEAQDEgQDFAUEFwYEGQcFGwgFHQkGHwoHIgsHJAwIJg0IKQ4JKxAJLREKMBIKMhQLNBULNxYLORgMPBkMPhsMQRwMQx4MRR8MSCEMSiMMTCQMTyYMUSgLUykLVSsLVy0LWS8KWzEKXDIKXjQKXzYJYTgJYjkJYzsJZD0JZT4JZkAKZ0IKaEQKaEUKaUcLakkLakoMa0wMa00NbE8NbFEObFIObVQPbVUPbVcQblkQbloRblwSbl0Sbl8TbmETbmIUbmQVbmUVbmcWbmkWbmoXbmwYbm0Ybm8ZbnEZbnIabnQabnUbbnccbXgcbXodbXwdbX0ebX8ebIAfbIIgbIQga4Uha4cha4giaooiaowjaY0jaY8kaZAlaJIlaJMmZ5UmZ5cnZpgnZpooZZspZJ0pZJ8qY6AqY6IrYqMsYaUsYKYtYKguX6kuXqsvXq0wXa4wXLAxW7EyWrMyWrQzWbY0WLc1V7k1Vro2Vbw3VL04U785UsA6UcE6UMM7T8Q8TsY9Tcc+TMg/S8pASstBScxCSM5DR89ERtBFRdJGRNNHQ9RIQtVKQddLP9hMPtlNPdpOPNtQO91ROt5SON9TN+BVNuFWNeJXNONZM+RaMeVcMOZdL+deLuhgLelhK+pjKutkKetmKOxnJu1pJe5qJO9sI+9uIfBvIPFxH/FzHfJ0HPN2G/N4GfR5GPV7F/V9FfZ+FPaAE/eCEveEEPiFD/iHDviJDPmLC/mMCvmOCfqQCPqSB/qUB/uWBvuXBvuZBvubBvudB/yfB/yhCPyjCfylCvymDPyoDfyqD/ysEfyuEvywFPyyFvy0GPu2Gvu4Hfu6H/u8Ifu+I/rAJvrCKPrEKvrGLfnHL/nJMvnLNfjNN/jPOvfRPffTQPbVQ/bXRvXZSfXbTPTdT/TfU/ThVvPjWvPlXfLmYfLoZfLqafHsbfHtcfHvdfHxefLyffL0gvP1hvP2ivT4jvX5kvb6lvj7mvn8nfr9ofz/pNKDO/afWurNAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAABAEABQEBBgEBCAIBCgICDAICDgMCEAQDEgQDFAUEFwYEGQcFGwgFHQkGHwoHIgsHJAwIJg0IKQ4JKxAJLREKMBIKMhQLNBULNxYLORgMPBkMPhsMQRwMQx4MRR8MSCEMSiMMTCQMTyYMUSgLUykLVSsLVy0LWS8KWzEKXDIKXjQKXzYJYTgJYjkJYzsJZD0JZT4JZkAKZ0IKaEQKaEUKaUcLakkLakoMa0wMa00NbE8NbFEObFIObVQPbVUPbVcQblkQbloRblwSbl0Sbl8TbmETbmIUbmQVbmUVbmcWbmkWbmoXbmwYbm0Ybm8ZbnEZbnIabnQabnUbbnccbXgcbXodbXwdbX0ebX8ebIAfbIIgbIQga4Uha4cha4giaooiaowjaY0jaY8kaZAlaJIlaJMmZ5UmZ5cnZpgnZpooZZspZJ0pZJ8qY6AqY6IrYqMsYaUsYKYtYKguX6kuXqsvXq0wXa4wXLAxW7EyWrMyWrQzWbY0WLc1V7k1Vro2Vbw3VL04U785UsA6UcE6UMM7T8Q8TsY9Tcc+TMg/S8pASstBScxCSM5DR89ERtBFRdJGRNNHQ9RIQtVKQddLP9hMPtlNPdpOPNtQO91ROt5SON9TN+BVNuFWNeJXNONZM+RaMeVcMOZdL+deLuhgLelhK+pjKutkKetmKOxnJu1pJe5qJO9sI+9uIfBvIPFxH/FzHfJ0HPN2G/N4GfR5GPV7F/V9FfZ+FPaAE/eCEveEEPiFD/iHDviJDPmLC/mMCvmOCfqQCPqSB/qUB/uWBvuXBvuZBvubBvudB/yfB/yhCPyjCfylCvymDPyoDfyqD/ysEfyuEvywFPyyFvy0GPu2Gvu4Hfu6H/u8Ifu+I/rAJvrCKPrEKvrGLfnHL/nJMvnLNfjNN/jPOvfRPffTQPbVQ/bXRvXZSfXbTPTdT/TfU/ThVvPjWvPlXfLmYfLoZfLqafHsbfHtcfHvdfHxefLyffL0gvP1hvP2ivT4jvX5kvb6lvj7mvn8nfr9ofz/pNKDO/afWurNAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAABAEABQEBBgEBCAIBCgICDAICDgMCEAQDEgQDFAUEFwYEGQcFGwgFHQkGHwoHIgsHJAwIJg0IKQ4JKxAJLREKMBIKMhQLNBULNxYLORgMPBkMPhsMQRwMQx4MRR8MSCEMSiMMTCQMTyYMUSgLUykLVSsLVy0LWS8KWzEKXDIKXjQKXzYJYTgJYjkJYzsJZD0JZT4JZkAKZ0IKaEQKaEUKaUcLakkLakoMa0wMa00NbE8NbFEObFIObVQPbVUPbVcQblkQbloRblwSbl0Sbl8TbmETbmIUbmQVbmUVbmcWbmkWbmoXbmwYbm0Ybm8ZbnEZbnIabnQabnUbbnccbXgcbXodbXwdbX0ebX8ebIAfbIIgbIQga4Uha4cha4giaooiaowjaY0jaY8kaZAlaJIlaJMmZ5UmZ5cnZpgnZpooZZspZJ0pZJ8qY6AqY6IrYqMsYaUsYKYtYKguX6kuXqsvXq0wXa4wXLAxW7EyWrMyWrQzWbY0WLc1V7k1Vro2Vbw3VL04U785UsA6UcE6UMM7T8Q8TsY9Tcc+TMg/S8pASstBScxCSM5DR89ERtBFRdJGRNNHQ9RIQtVKQddLP9hMPtlNPdpOPNtQO91ROt5SON9TN+BVNuFWNeJXNONZM+RaMeVcMOZdL+deLuhgLelhK+pjKutkKetmKOxnJu1pJe5qJO9sI+9uIfBvIPFxH/FzHfJ0HPN2G/N4GfR5GPV7F/V9FfZ+FPaAE/eCEveEEPiFD/iHDviJDPmLC/mMCvmOCfqQCPqSB/qUB/uWBvuXBvuZBvubBvudB/yfB/yhCPyjCfylCvymDPyoDfyqD/ysEfyuEvywFPyyFvy0GPu2Gvu4Hfu6H/u8Ifu+I/rAJvrCKPrEKvrGLfnHL/nJMvnLNfjNN/jPOvfRPffTQPbVQ/bXRvXZSfXbTPTdT/TfU/ThVvPjWvPlXfLmYfLoZfLqafHsbfHtcfHvdfHxefLyffL0gvP1hvP2ivT4jvX5kvb6lvj7mvn8nfr9ofz/pNKDO/afWurNAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAABAEABQEBBgEBCAIBCgICDAICDgMCEAQDEgQDFAUEFwYEGQcFGwgFHQkGHwoHIgsHJAwIJg0IKQ4JKxAJLREKMBIKMhQLNBULNxYLORgMPBkMPhsMQRwMQx4MRR8MSCEMSiMMTCQMTyYMUSgLUykLVSsLVy0LWS8KWzEKXDIKXjQKXzYJYTgJYjkJYzsJZD0JZT4JZkAKZ0IKaEQKaEUKaUcLakkLakoMa0wMa00NbE8NbFEObFIObVQPbVUPbVcQblkQbloRblwSbl0Sbl8TbmETbmIUbmQVbmUVbmcWbmkWbmoXbmwYbm0Ybm8ZbnEZbnIabnQabnUbbnccbXgcbXodbXwdbX0ebX8ebIAfbIIgbIQga4Uha4cha4giaooiaowjaY0jaY8kaZAlaJIlaJMmZ5UmZ5cnZpgnZpooZZspZJ0pZJ8qY6AqY6IrYqMsYaUsYKYtYKguX6kuXqsvXq0wXa4wXLAxW7EyWrMyWrQzWbY0WLc1V7k1Vro2Vbw3VL04U785UsA6UcE6UMM7T8Q8TsY9Tcc+TMg/S8pASstBScxCSM5DR89ERtBFRdJGRNNHQ9RIQtVKQddLP9hMPtlNPdpOPNtQO91ROt5SON9TN+BVNuFWNeJXNONZM+RaMeVcMOZdL+deLuhgLelhK+pjKutkKetmKOxnJu1pJe5qJO9sI+9uIfBvIPFxH/FzHfJ0HPN2G/N4GfR5GPV7F/V9FfZ+FPaAE/eCEveEEPiFD/iHDviJDPmLC/mMCvmOCfqQCPqSB/qUB/uWBvuXBvuZBvubBvudB/yfB/yhCPyjCfylCvymDPyoDfyqD/ysEfyuEvywFPyyFvy0GPu2Gvu4Hfu6H/u8Ifu+I/rAJvrCKPrEKvrGLfnHL/nJMvnLNfjNN/jPOvfRPffTQPbVQ/bXRvXZSfXbTPTdT/TfU/ThVvPjWvPlXfLmYfLoZfLqafHsbfHtcfHvdfHxefLyffL0gvP1hvP2ivT4jvX5kvb6lvj7mvn8nfr9ofz/pNKDO/afWurNAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAABAEABQEBBgEBCAIBCgICDAICDgMCEAQDEgQDFAUEFwYEGQcFGwgFHQkGHwoHIgsHJAwIJg0IKQ4JKxAJLREKMBIKMhQLNBULNxYLORgMPBkMPhsMQRwMQx4MRR8MSCEMSiMMTCQMTyYMUSgLUykLVSsLVy0LWS8KWzEKXDIKXjQKXzYJYTgJYjkJYzsJZD0JZT4JZkAKZ0IKaEQKaEUKaUcLakkLakoMa0wMa00NbE8NbFEObFIObVQPbVUPbVcQblkQbloRblwSbl0Sbl8TbmETbmIUbmQVbmUVbmcWbmkWbmoXbmwYbm0Ybm8ZbnEZbnIabnQabnUbbnccbXgcbXodbXwdbX0ebX8ebIAfbIIgbIQga4Uha4cha4giaooiaowjaY0jaY8kaZAlaJIlaJMmZ5UmZ5cnZpgnZpooZZspZJ0pZJ8qY6AqY6IrYqMsYaUsYKYtYKguX6kuXqsvXq0wXa4wXLAxW7EyWrMyWrQzWbY0WLc1V7k1Vro2Vbw3VL04U785UsA6UcE6UMM7T8Q8TsY9Tcc+TMg/S8pASstBScxCSM5DR89ERtBFRdJGRNNHQ9RIQtVKQddLP9hMPtlNPdpOPNtQO91ROt5SON9TN+BVNuFWNeJXNONZM+RaMeVcMOZdL+deLuhgLelhK+pjKutkKetmKOxnJu1pJe5qJO9sI+9uIfBvIPFxH/FzHfJ0HPN2G/N4GfR5GPV7F/V9FfZ+FPaAE/eCEveEEPiFD/iHDviJDPmLC/mMCvmOCfqQCPqSB/qUB/uWBvuXBvuZBvubBvudB/yfB/yhCPyjCfylCvymDPyoDfyqD/ysEfyuEvywFPyyFvy0GPu2Gvu4Hfu6H/u8Ifu+I/rAJvrCKPrEKvrGLfnHL/nJMvnLNfjNN/jPOvfRPffTQPbVQ/bXRvXZSfXbTPTdT/TfU/ThVvPjWvPlXfLmYfLoZfLqafHsbfHtcfHvdfHxefLyffL0gvP1hvP2ivT4jvX5kvb6lvj7mvn8nfr9ofz/pNKDO/afWurNAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAABAEABQEBBgEBCAIBCgICDAICDgMCEAQDEgQDFAUEFwYEGQcFGwgFHQkGHwoHIgsHJAwIJg0IKQ4JKxAJLREKMBIKMhQLNBULNxYLORgMPBkMPhsMQRwMQx4MRR8MSCEMSiMMTCQMTyYMUSgLUykLVSsLVy0LWS8KWzEKXDIKXjQKXzYJYTgJYjkJYzsJZD0JZT4JZkAKZ0IKaEQKaEUKaUcLakkLakoMa0wMa00NbE8NbFEObFIObVQPbVUPbVcQblkQbloRblwSbl0Sbl8TbmETbmIUbmQVbmUVbmcWbmkWbmoXbmwYbm0Ybm8ZbnEZbnIabnQabnUbbnccbXgcbXodbXwdbX0ebX8ebIAfbIIgbIQga4Uha4cha4giaooiaowjaY0jaY8kaZAlaJIlaJMmZ5UmZ5cnZpgnZpooZZspZJ0pZJ8qY6AqY6IrYqMsYaUsYKYtYKguX6kuXqsvXq0wXa4wXLAxW7EyWrMyWrQzWbY0WLc1V7k1Vro2Vbw3VL04U785UsA6UcE6UMM7T8Q8TsY9Tcc+TMg/S8pASstBScxCSM5DR89ERtBFRdJGRNNHQ9RIQtVKQddLP9hMPtlNPdpOPNtQO91ROt5SON9TN+BVNuFWNeJXNONZM+RaMeVcMOZdL+deLuhgLelhK+pjKutkKetmKOxnJu1pJe5qJO9sI+9uIfBvIPFxH/FzHfJ0HPN2G/N4GfR5GPV7F/V9FfZ+FPaAE/eCEveEEPiFD/iHDviJDPmLC/mMCvmOCfqQCPqSB/qUB/uWBvuXBvuZBvubBvudB/yfB/yhCPyjCfylCvymDPyoDfyqD/ysEfyuEvywFPyyFvy0GPu2Gvu4Hfu6H/u8Ifu+I/rAJvrCKPrEKvrGLfnHL/nJMvnLNfjNN/jPOvfRPffTQPbVQ/bXRvXZSfXbTPTdT/TfU/ThVvPjWvPlXfLmYfLoZfLqafHsbfHtcfHvdfHxefLyffL0gvP1hvP2ivT4jvX5kvb6lvj7mvn8nfr9ofz/pNKDO/afWurNAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAABAEABQEBBgEBCAIBCgICDAICDgMCEAQDEgQDFAUEFwYEGQcFGwgFHQkGHwoHIgsHJAwIJg0IKQ4JKxAJLREKMBIKMhQLNBULNxYLORgMPBkMPhsMQRwMQx4MRR8MSCEMSiMMTCQMTyYMUSgLUykLVSsLVy0LWS8KWzEKXDIKXjQKXzYJYTgJYjkJYzsJZD0JZT4JZkAKZ0IKaEQKaEUKaUcLakkLakoMa0wMa00NbE8NbFEObFIObVQPbVUPbVcQblkQbloRblwSbl0Sbl8TbmETbmIUbmQVbmUVbmcWbmkWbmoXbmwYbm0Ybm8ZbnEZbnIabnQabnUbbnccbXgcbXodbXwdbX0ebX8ebIAfbIIgbIQga4Uha4cha4giaooiaowjaY0jaY8kaZAlaJIlaJMmZ5UmZ5cnZpgnZpooZZspZJ0pZJ8qY6AqY6IrYqMsYaUsYKYtYKguX6kuXqsvXq0wXa4wXLAxW7EyWrMyWrQzWbY0WLc1V7k1Vro2Vbw3VL04U785UsA6UcE6UMM7T8Q8TsY9Tcc+TMg/S8pASstBScxCSM5DR89ERtBFRdJGRNNHQ9RIQtVKQddLP9hMPtlNPdpOPNtQO91ROt5SON9TN+BVNuFWNeJXNONZM+RaMeVcMOZdL+deLuhgLelhK+pjKutkKetmKOxnJu1pJe5qJO9sI+9uIfBvIPFxH/FzHfJ0HPN2G/N4GfR5GPV7F/V9FfZ+FPaAE/eCEveEEPiFD/iHDviJDPmLC/mMCvmOCfqQCPqSB/qUB/uWBvuXBvuZBvubBvudB/yfB/yhCPyjCfylCvymDPyoDfyqD/ysEfyuEvywFPyyFvy0GPu2Gvu4Hfu6H/u8Ifu+I/rAJvrCKPrEKvrGLfnHL/nJMvnLNfjNN/jPOvfRPffTQPbVQ/bXRvXZSfXbTPTdT/TfU/ThVvPjWvPlXfLmYfLoZfLqafHsbfHtcfHvdfHxefLyffL0gvP1hvP2ivT4jvX5kvb6lvj7mvn8nfr9ofz/pNKDO/afWurNAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAABAEABQEBBgEBCAIBCgICDAICDgMCEAQDEgQDFAUEFwYEGQcFGwgFHQkGHwoHIgsHJAwIJg0IKQ4JKxAJLREKMBIKMhQLNBULNxYLORgMPBkMPhsMQRwMQx4MRR8MSCEMSiMMTCQMTyYMUSgLUykLVSsLVy0LWS8KWzEKXDIKXjQKXzYJYTgJYjkJYzsJZD0JZT4JZkAKZ0IKaEQKaEUKaUcLakkLakoMa0wMa00NbE8NbFEObFIObVQPbVUPbVcQblkQbloRblwSbl0Sbl8TbmETbmIUbmQVbmUVbmcWbmkWbmoXbmwYbm0Ybm8ZbnEZbnIabnQabnUbbnccbXgcbXodbXwdbX0ebX8ebIAfbIIgbIQga4Uha4cha4giaooiaowjaY0jaY8kaZAlaJIlaJMmZ5UmZ5cnZpgnZpooZZspZJ0pZJ8qY6AqY6IrYqMsYaUsYKYtYKguX6kuXqsvXq0wXa4wXLAxW7EyWrMyWrQzWbY0WLc1V7k1Vro2Vbw3VL04U785UsA6UcE6UMM7T8Q8TsY9Tcc+TMg/S8pASstBScxCSM5DR89ERtBFRdJGRNNHQ9RIQtVKQddLP9hMPtlNPdpOPNtQO91ROt5SON9TN+BVNuFWNeJXNONZM+RaMeVcMOZdL+deLuhgLelhK+pjKutkKetmKOxnJu1pJe5qJO9sI+9uIfBvIPFxH/FzHfJ0HPN2G/N4GfR5GPV7F/V9FfZ+FPaAE/eCEveEEPiFD/iHDviJDPmLC/mMCvmOCfqQCPqSB/qUB/uWBvuXBvuZBvubBvudB/yfB/yhCPyjCfylCvymDPyoDfyqD/ysEfyuEvywFPyyFvy0GPu2Gvu4Hfu6H/u8Ifu+I/rAJvrCKPrEKvrGLfnHL/nJMvnLNfjNN/jPOvfRPffTQPbVQ/bXRvXZSfXbTPTdT/TfU/ThVvPjWvPlXfLmYfLoZfLqafHsbfHtcfHvdfHxefLyffL0gvP1hvP2ivT4jvX5kvb6lvj7mvn8nfr9ofz/pNKDO/afWurNAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAABAEABQEBBgEBCAIBCgICDAICDgMCEAQDEgQDFAUEFwYEGQcFGwgFHQkGHwoHIgsHJAwIJg0IKQ4JKxAJLREKMBIKMhQLNBULNxYLORgMPBkMPhsMQRwMQx4MRR8MSCEMSiMMTCQMTyYMUSgLUykLVSsLVy0LWS8KWzEKXDIKXjQKXzYJYTgJYjkJYzsJZD0JZT4JZkAKZ0IKaEQKaEUKaUcLakkLakoMa0wMa00NbE8NbFEObFIObVQPbVUPbVcQblkQbloRblwSbl0Sbl8TbmETbmIUbmQVbmUVbmcWbmkWbmoXbmwYbm0Ybm8ZbnEZbnIabnQabnUbbnccbXgcbXodbXwdbX0ebX8ebIAfbIIgbIQga4Uha4cha4giaooiaowjaY0jaY8kaZAlaJIlaJMmZ5UmZ5cnZpgnZpooZZspZJ0pZJ8qY6AqY6IrYqMsYaUsYKYtYKguX6kuXqsvXq0wXa4wXLAxW7EyWrMyWrQzWbY0WLc1V7k1Vro2Vbw3VL04U785UsA6UcE6UMM7T8Q8TsY9Tcc+TMg/S8pASstBScxCSM5DR89ERtBFRdJGRNNHQ9RIQtVKQddLP9hMPtlNPdpOPNtQO91ROt5SON9TN+BVNuFWNeJXNONZM+RaMeVcMOZdL+deLuhgLelhK+pjKutkKetmKOxnJu1pJe5qJO9sI+9uIfBvIPFxH/FzHfJ0HPN2G/N4GfR5GPV7F/V9FfZ+FPaAE/eCEveEEPiFD/iHDviJDPmLC/mMCvmOCfqQCPqSB/qUB/uWBvuXBvuZBvubBvudB/yfB/yhCPyjCfylCvymDPyoDfyqD/ysEfyuEvywFPyyFvy0GPu2Gvu4Hfu6H/u8Ifu+I/rAJvrCKPrEKvrGLfnHL/nJMvnLNfjNN/jPOvfRPffTQPbVQ/bXRvXZSfXbTPTdT/TfU/ThVvPjWvPlXfLmYfLoZfLqafHsbfHtcfHvdfHxefLyffL0gvP1hvP2ivT4jvX5kvb6lvj7mvn8nfr9ofz/pNKDO/afWurNAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAACFklEQVR4nB3SbWuNAQCA4VtZIWRqQm1NWSGEmlC0ZIUQamJFkhUysZpQ01qTYeRlk62lE1uG0bDJ1lonthgjZpOtpROWjZG3Ca3djucfXB8uIBfyoQAK4TScgwtQBiG4DJVQBdVwB+5BA4ThATyCVngOL+E1dEME3kEv9MNX+AG/YRAkRkbIGBkncTJR4iVRkmSazJI5kiwLZLGkSKosl9WyVtJko2yWrZIhOyRT9kq2HJAcyZV8OSaFclqKpETKJCTlclWqpFpqpE4aJCxN0iKt8lzapVO6JSLvpU/65av8lD8y6DCHYvw7yoGxfo/1S5wfJ9uT4Nspvkmya4Yds22b67NkHy+yeYn3l9qYav1Ka9d4e70307yWbsUWL23zYoaluyze49ksT2V7/JBHDpuX5+EjHjrm/pNmnTXzvDtLzbjotktuqTD9qhtuuP62q++6ot7URpfed0mzi1qc/9R5bc565fQuk9445a0JPU7uc8Jnx393zC9H/jVmKMofxD84gN+wH3vxPUawGzuxA19gKz7CJgxjA9ZhLd7CKqzEcgxhGZZgMZ7BQizAfMzFHDyI2bgPd+MO3I5bcTNuwjRch6twOS7DFFyMCzEZ5+JMnIZTMRHjcRLGYSyOxhE4PFrnf6Boo59BqU/wIUgWCcJF27UHBZ/AwyBlOAgabVoTlL0OV4LEoSB0tHVRUPwEHA3SR+v/A2yPbcQv3pluAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAACFklEQVR4nB3SbWuNAQCA4VtZIWRqQm1NWSGEmlC0ZIUQamJFkhUysZpQ01qTYeRlk62lE1uG0bDJ1lonthgjZpOtpROWjZG3Ca3djucfXB8uIBfyoQAK4TScgwtQBiG4DJVQBdVwB+5BA4ThATyCVngOL+E1dEME3kEv9MNX+AG/YRAkRkbIGBkncTJR4iVRkmSazJI5kiwLZLGkSKosl9WyVtJko2yWrZIhOyRT9kq2HJAcyZV8OSaFclqKpETKJCTlclWqpFpqpE4aJCxN0iKt8lzapVO6JSLvpU/65av8lD8y6DCHYvw7yoGxfo/1S5wfJ9uT4Nspvkmya4Yds22b67NkHy+yeYn3l9qYav1Ka9d4e70307yWbsUWL23zYoaluyze49ksT2V7/JBHDpuX5+EjHjrm/pNmnTXzvDtLzbjotktuqTD9qhtuuP62q++6ot7URpfed0mzi1qc/9R5bc565fQuk9445a0JPU7uc8Jnx393zC9H/jVmKMofxD84gN+wH3vxPUawGzuxA19gKz7CJgxjA9ZhLd7CKqzEcgxhGZZgMZ7BQizAfMzFHDyI2bgPd+MO3I5bcTNuwjRch6twOS7DFFyMCzEZ5+JMnIZTMRHjcRLGYSyOxhE4PFrnf6Boo59BqU/wIUgWCcJF27UHBZ/AwyBlOAgabVoTlL0OV4LEoSB0tHVRUPwEHA3SR+v/A2yPbcQv3pluAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAACFklEQVR4nB3SbWuNAQCA4VtZIWRqQm1NWSGEmlC0ZIUQamJFkhUysZpQ01qTYeRlk62lE1uG0bDJ1lonthgjZpOtpROWjZG3Ca3djucfXB8uIBfyoQAK4TScgwtQBiG4DJVQBdVwB+5BA4ThATyCVngOL+E1dEME3kEv9MNX+AG/YRAkRkbIGBkncTJR4iVRkmSazJI5kiwLZLGkSKosl9WyVtJko2yWrZIhOyRT9kq2HJAcyZV8OSaFclqKpETKJCTlclWqpFpqpE4aJCxN0iKt8lzapVO6JSLvpU/65av8lD8y6DCHYvw7yoGxfo/1S5wfJ9uT4Nspvkmya4Yds22b67NkHy+yeYn3l9qYav1Ka9d4e70307yWbsUWL23zYoaluyze49ksT2V7/JBHDpuX5+EjHjrm/pNmnTXzvDtLzbjotktuqTD9qhtuuP62q++6ot7URpfed0mzi1qc/9R5bc565fQuk9445a0JPU7uc8Jnx393zC9H/jVmKMofxD84gN+wH3vxPUawGzuxA19gKz7CJgxjA9ZhLd7CKqzEcgxhGZZgMZ7BQizAfMzFHDyI2bgPd+MO3I5bcTNuwjRch6twOS7DFFyMCzEZ5+JMnIZTMRHjcRLGYSyOxhE4PFrnf6Boo59BqU/wIUgWCcJF27UHBZ/AwyBlOAgabVoTlL0OV4LEoSB0tHVRUPwEHA3SR+v/A2yPbcQv3pluAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAACFklEQVR4nB3SbWuNAQCA4VtZIWRqQm1NWSGEmlC0ZIUQamJFkhUysZpQ01qTYeRlk62lE1uG0bDJ1lonthgjZpOtpROWjZG3Ca3djucfXB8uIBfyoQAK4TScgwtQBiG4DJVQBdVwB+5BA4ThATyCVngOL+E1dEME3kEv9MNX+AG/YRAkRkbIGBkncTJR4iVRkmSazJI5kiwLZLGkSKosl9WyVtJko2yWrZIhOyRT9kq2HJAcyZV8OSaFclqKpETKJCTlclWqpFpqpE4aJCxN0iKt8lzapVO6JSLvpU/65av8lD8y6DCHYvw7yoGxfo/1S5wfJ9uT4Nspvkmya4Yds22b67NkHy+yeYn3l9qYav1Ka9d4e70307yWbsUWL23zYoaluyze49ksT2V7/JBHDpuX5+EjHjrm/pNmnTXzvDtLzbjotktuqTD9qhtuuP62q++6ot7URpfed0mzi1qc/9R5bc565fQuk9445a0JPU7uc8Jnx393zC9H/jVmKMofxD84gN+wH3vxPUawGzuxA19gKz7CJgxjA9ZhLd7CKqzEcgxhGZZgMZ7BQizAfMzFHDyI2bgPd+MO3I5bcTNuwjRch6twOS7DFFyMCzEZ5+JMnIZTMRHjcRLGYSyOxhE4PFrnf6Boo59BqU/wIUgWCcJF27UHBZ/AwyBlOAgabVoTlL0OV4LEoSB0tHVRUPwEHA3SR+v/A2yPbcQv3pluAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAACFklEQVR4nB3SbWuNAQCA4VtZIWRqQm1NWSGEmlC0ZIUQamJFkhUysZpQ01qTYeRlk62lE1uG0bDJ1lonthgjZpOtpROWjZG3Ca3djucfXB8uIBfyoQAK4TScgwtQBiG4DJVQBdVwB+5BA4ThATyCVngOL+E1dEME3kEv9MNX+AG/YRAkRkbIGBkncTJR4iVRkmSazJI5kiwLZLGkSKosl9WyVtJko2yWrZIhOyRT9kq2HJAcyZV8OSaFclqKpETKJCTlclWqpFpqpE4aJCxN0iKt8lzapVO6JSLvpU/65av8lD8y6DCHYvw7yoGxfo/1S5wfJ9uT4Nspvkmya4Yds22b67NkHy+yeYn3l9qYav1Ka9d4e70307yWbsUWL23zYoaluyze49ksT2V7/JBHDpuX5+EjHjrm/pNmnTXzvDtLzbjotktuqTD9qhtuuP62q++6ot7URpfed0mzi1qc/9R5bc565fQuk9445a0JPU7uc8Jnx393zC9H/jVmKMofxD84gN+wH3vxPUawGzuxA19gKz7CJgxjA9ZhLd7CKqzEcgxhGZZgMZ7BQizAfMzFHDyI2bgPd+MO3I5bcTNuwjRch6twOS7DFFyMCzEZ5+JMnIZTMRHjcRLGYSyOxhE4PFrnf6Boo59BqU/wIUgWCcJF27UHBZ/AwyBlOAgabVoTlL0OV4LEoSB0tHVRUPwEHA3SR+v/A2yPbcQv3pluAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAACFklEQVR4nB3SbWuNAQCA4VtZIWRqQm1NWSGEmlC0ZIUQamJFkhUysZpQ01qTYeRlk62lE1uG0bDJ1lonthgjZpOtpROWjZG3Ca3djucfXB8uIBfyoQAK4TScgwtQBiG4DJVQBdVwB+5BA4ThATyCVngOL+E1dEME3kEv9MNX+AG/YRAkRkbIGBkncTJR4iVRkmSazJI5kiwLZLGkSKosl9WyVtJko2yWrZIhOyRT9kq2HJAcyZV8OSaFclqKpETKJCTlclWqpFpqpE4aJCxN0iKt8lzapVO6JSLvpU/65av8lD8y6DCHYvw7yoGxfo/1S5wfJ9uT4Nspvkmya4Yds22b67NkHy+yeYn3l9qYav1Ka9d4e70307yWbsUWL23zYoaluyze49ksT2V7/JBHDpuX5+EjHjrm/pNmnTXzvDtLzbjotktuqTD9qhtuuP62q++6ot7URpfed0mzi1qc/9R5bc565fQuk9445a0JPU7uc8Jnx393zC9H/jVmKMofxD84gN+wH3vxPUawGzuxA19gKz7CJgxjA9ZhLd7CKqzEcgxhGZZgMZ7BQizAfMzFHDyI2bgPd+MO3I5bcTNuwjRch6twOS7DFFyMCzEZ5+JMnIZTMRHjcRLGYSyOxhE4PFrnf6Boo59BqU/wIUgWCcJF27UHBZ/AwyBlOAgabVoTlL0OV4LEoSB0tHVRUPwEHA3SR+v/A2yPbcQv3pluAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAACFklEQVR4nB3SbWuNAQCA4VtZIWRqQm1NWSGEmlC0ZIUQamJFkhUysZpQ01qTYeRlk62lE1uG0bDJ1lonthgjZpOtpROWjZG3Ca3djucfXB8uIBfyoQAK4TScgwtQBiG4DJVQBdVwB+5BA4ThATyCVngOL+E1dEME3kEv9MNX+AG/YRAkRkbIGBkncTJR4iVRkmSazJI5kiwLZLGkSKosl9WyVtJko2yWrZIhOyRT9kq2HJAcyZV8OSaFclqKpETKJCTlclWqpFpqpE4aJCxN0iKt8lzapVO6JSLvpU/65av8lD8y6DCHYvw7yoGxfo/1S5wfJ9uT4Nspvkmya4Yds22b67NkHy+yeYn3l9qYav1Ka9d4e70307yWbsUWL23zYoaluyze49ksT2V7/JBHDpuX5+EjHjrm/pNmnTXzvDtLzbjotktuqTD9qhtuuP62q++6ot7URpfed0mzi1qc/9R5bc565fQuk9445a0JPU7uc8Jnx393zC9H/jVmKMofxD84gN+wH3vxPUawGzuxA19gKz7CJgxjA9ZhLd7CKqzEcgxhGZZgMZ7BQizAfMzFHDyI2bgPd+MO3I5bcTNuwjRch6twOS7DFFyMCzEZ5+JMnIZTMRHjcRLGYSyOxhE4PFrnf6Boo59BqU/wIUgWCcJF27UHBZ/AwyBlOAgabVoTlL0OV4LEoSB0tHVRUPwEHA3SR+v/A2yPbcQv3pluAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAACFklEQVR4nB3SbWuNAQCA4VtZIWRqQm1NWSGEmlC0ZIUQamJFkhUysZpQ01qTYeRlk62lE1uG0bDJ1lonthgjZpOtpROWjZG3Ca3djucfXB8uIBfyoQAK4TScgwtQBiG4DJVQBdVwB+5BA4ThATyCVngOL+E1dEME3kEv9MNX+AG/YRAkRkbIGBkncTJR4iVRkmSazJI5kiwLZLGkSKosl9WyVtJko2yWrZIhOyRT9kq2HJAcyZV8OSaFclqKpETKJCTlclWqpFpqpE4aJCxN0iKt8lzapVO6JSLvpU/65av8lD8y6DCHYvw7yoGxfo/1S5wfJ9uT4Nspvkmya4Yds22b67NkHy+yeYn3l9qYav1Ka9d4e70307yWbsUWL23zYoaluyze49ksT2V7/JBHDpuX5+EjHjrm/pNmnTXzvDtLzbjotktuqTD9qhtuuP62q++6ot7URpfed0mzi1qc/9R5bc565fQuk9445a0JPU7uc8Jnx393zC9H/jVmKMofxD84gN+wH3vxPUawGzuxA19gKz7CJgxjA9ZhLd7CKqzEcgxhGZZgMZ7BQizAfMzFHDyI2bgPd+MO3I5bcTNuwjRch6twOS7DFFyMCzEZ5+JMnIZTMRHjcRLGYSyOxhE4PFrnf6Boo59BqU/wIUgWCcJF27UHBZ/AwyBlOAgabVoTlL0OV4LEoSB0tHVRUPwEHA3SR+v/A2yPbcQv3pluAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAACFklEQVR4nB3SbWuNAQCA4VtZIWRqQm1NWSGEmlC0ZIUQamJFkhUysZpQ01qTYeRlk62lE1uG0bDJ1lonthgjZpOtpROWjZG3Ca3djucfXB8uIBfyoQAK4TScgwtQBiG4DJVQBdVwB+5BA4ThATyCVngOL+E1dEME3kEv9MNX+AG/YRAkRkbIGBkncTJR4iVRkmSazJI5kiwLZLGkSKosl9WyVtJko2yWrZIhOyRT9kq2HJAcyZV8OSaFclqKpETKJCTlclWqpFpqpE4aJCxN0iKt8lzapVO6JSLvpU/65av8lD8y6DCHYvw7yoGxfo/1S5wfJ9uT4Nspvkmya4Yds22b67NkHy+yeYn3l9qYav1Ka9d4e70307yWbsUWL23zYoaluyze49ksT2V7/JBHDpuX5+EjHjrm/pNmnTXzvDtLzbjotktuqTD9qhtuuP62q++6ot7URpfed0mzi1qc/9R5bc565fQuk9445a0JPU7uc8Jnx393zC9H/jVmKMofxD84gN+wH3vxPUawGzuxA19gKz7CJgxjA9ZhLd7CKqzEcgxhGZZgMZ7BQizAfMzFHDyI2bgPd+MO3I5bcTNuwjRch6twOS7DFFyMCzEZ5+JMnIZTMRHjcRLGYSyOxhE4PFrnf6Boo59BqU/wIUgWCcJF27UHBZ/AwyBlOAgabVoTlL0OV4LEoSB0tHVRUPwEHA3SR+v/A2yPbcQv3pluAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAACFklEQVR4nB3SbWuNAQCA4VtZIWRqQm1NWSGEmlC0ZIUQamJFkhUysZpQ01qTYeRlk62lE1uG0bDJ1lonthgjZpOtpROWjZG3Ca3djucfXB8uIBfyoQAK4TScgwtQBiG4DJVQBdVwB+5BA4ThATyCVngOL+E1dEME3kEv9MNX+AG/YRAkRkbIGBkncTJR4iVRkmSazJI5kiwLZLGkSKosl9WyVtJko2yWrZIhOyRT9kq2HJAcyZV8OSaFclqKpETKJCTlclWqpFpqpE4aJCxN0iKt8lzapVO6JSLvpU/65av8lD8y6DCHYvw7yoGxfo/1S5wfJ9uT4Nspvkmya4Yds22b67NkHy+yeYn3l9qYav1Ka9d4e70307yWbsUWL23zYoaluyze49ksT2V7/JBHDpuX5+EjHjrm/pNmnTXzvDtLzbjotktuqTD9qhtuuP62q++6ot7URpfed0mzi1qc/9R5bc565fQuk9445a0JPU7uc8Jnx393zC9H/jVmKMofxD84gN+wH3vxPUawGzuxA19gKz7CJgxjA9ZhLd7CKqzEcgxhGZZgMZ7BQizAfMzFHDyI2bgPd+MO3I5bcTNuwjRch6twOS7DFFyMCzEZ5+JMnIZTMRHjcRLGYSyOxhE4PFrnf6Boo59BqU/wIUgWCcJF27UHBZ/AwyBlOAgabVoTlL0OV4LEoSB0tHVRUPwEHA3SR+v/A2yPbcQv3pluAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AP//AP/+Cf79EP78Fv77Gv76Hv35Iv34Jf34KP33K/z2Lfz1MPz0MvvzNPvyNvvxOPrwOvrvPPruPvrtQPnsQvnsQ/nrRfjqR/jpSPjoSvfnS/fmTfflTvbkT/bjUfbiUvXhU/XgVfXgVvTfV/TeWfTdWvPcW/PbXPPaXfLZX/LYYPLXYfHWYvHVY/HUZPDUZfDTZu/SZ+/Rae/Qau7Pa+7ObO7Nbe3Mbu3Lb+zKcOzJcezJcuvIc+vHdOrGderFdurEdunDd+nCeOjBeejAeui/e+e/fOe+fea9fua8f+W7gOW6gOW5geS4guS3g+O2hOO1heK1huK0huGzh+GyiOCxieCwiuCvi9+ui9+tjN6sjd6rjt2rj92qkNypkNyokdunktumk9qlk9qklNmjldmiltihl9ihl9egmNefmdaemtWdmtWcm9SbnNSandOZntOYntKXn9KXoNGWodGVodCUos+To8+So86RpM6Qpc2PpsyOpsyOp8uNqMuMqcqLqcmKqsmJq8iIrMiHrMeGrcaFrsaErsWEr8SDsMSCscOBscKAssJ/s8F+s8B9tMB8tb97tb56tr56t715uLx4uLx3ubt2urp1url0u7lzvLhyvLdxvbdwvrZwvrVvv7RuwLNtwLNswbJrwrFqw7Bpw7BoxK9nxa5mxa1lxqxlx6tkx6tjyKpiyalhyahgyqdfy6Zey6VdzKVczaRbzaNazqJZz6FZz6BY0J9X0Z5W0Z1V0pxU05tT05pS1JlR1ZhQ1ZdP1pZO15VN15RM2JNL2ZJK2ZFJ2pBI245H241G3IxG3YtF3YpE3olD34dC34ZB4IVA4IQ/4YI+4oE94oA843475H065Hw55Xo45nk35nc153Y06HQz6HMy6XEx6nAw6m4v620u7Gst7Gks7Wcr7mYq7mQo72In72Am8F4l8Vwk8Voi8lgh81Ug81Mf9FEd9U4c9Uwb9kkZ90YY90MW+EAV+T0T+TkR+jUP+jEN+y0L/CcJ/CEH/RoE/hAC/gAA/75y5blmNXSSAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AP//AP/+Cf79EP78Fv77Gv76Hv35Iv34Jf34KP33K/z2Lfz1MPz0MvvzNPvyNvvxOPrwOvrvPPruPvrtQPnsQvnsQ/nrRfjqR/jpSPjoSvfnS/fmTfflTvbkT/bjUfbiUvXhU/XgVfXgVvTfV/TeWfTdWvPcW/PbXPPaXfLZX/LYYPLXYfHWYvHVY/HUZPDUZfDTZu/SZ+/Rae/Qau7Pa+7ObO7Nbe3Mbu3Lb+zKcOzJcezJcuvIc+vHdOrGderFdurEdunDd+nCeOjBeejAeui/e+e/fOe+fea9fua8f+W7gOW6gOW5geS4guS3g+O2hOO1heK1huK0huGzh+GyiOCxieCwiuCvi9+ui9+tjN6sjd6rjt2rj92qkNypkNyokdunktumk9qlk9qklNmjldmiltihl9ihl9egmNefmdaemtWdmtWcm9SbnNSandOZntOYntKXn9KXoNGWodGVodCUos+To8+So86RpM6Qpc2PpsyOpsyOp8uNqMuMqcqLqcmKqsmJq8iIrMiHrMeGrcaFrsaErsWEr8SDsMSCscOBscKAssJ/s8F+s8B9tMB8tb97tb56tr56t715uLx4uLx3ubt2urp1url0u7lzvLhyvLdxvbdwvrZwvrVvv7RuwLNtwLNswbJrwrFqw7Bpw7BoxK9nxa5mxa1lxqxlx6tkx6tjyKpiyalhyahgyqdfy6Zey6VdzKVczaRbzaNazqJZz6FZz6BY0J9X0Z5W0Z1V0pxU05tT05pS1JlR1ZhQ1ZdP1pZO15VN15RM2JNL2ZJK2ZFJ2pBI245H241G3IxG3YtF3YpE3olD34dC34ZB4IVA4IQ/4YI+4oE94oA843475H065Hw55Xo45nk35nc153Y06HQz6HMy6XEx6nAw6m4v620u7Gst7Gks7Wcr7mYq7mQo72In72Am8F4l8Vwk8Voi8lgh81Ug81Mf9FEd9U4c9Uwb9kkZ90YY90MW+EAV+T0T+TkR+jUP+jEN+y0L/CcJ/CEH/RoE/hAC/gAA/75y5blmNXSSAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AP//AP/+Cf79EP78Fv77Gv76Hv35Iv34Jf34KP33K/z2Lfz1MPz0MvvzNPvyNvvxOPrwOvrvPPruPvrtQPnsQvnsQ/nrRfjqR/jpSPjoSvfnS/fmTfflTvbkT/bjUfbiUvXhU/XgVfXgVvTfV/TeWfTdWvPcW/PbXPPaXfLZX/LYYPLXYfHWYvHVY/HUZPDUZfDTZu/SZ+/Rae/Qau7Pa+7ObO7Nbe3Mbu3Lb+zKcOzJcezJcuvIc+vHdOrGderFdurEdunDd+nCeOjBeejAeui/e+e/fOe+fea9fua8f+W7gOW6gOW5geS4guS3g+O2hOO1heK1huK0huGzh+GyiOCxieCwiuCvi9+ui9+tjN6sjd6rjt2rj92qkNypkNyokdunktumk9qlk9qklNmjldmiltihl9ihl9egmNefmdaemtWdmtWcm9SbnNSandOZntOYntKXn9KXoNGWodGVodCUos+To8+So86RpM6Qpc2PpsyOpsyOp8uNqMuMqcqLqcmKqsmJq8iIrMiHrMeGrcaFrsaErsWEr8SDsMSCscOBscKAssJ/s8F+s8B9tMB8tb97tb56tr56t715uLx4uLx3ubt2urp1url0u7lzvLhyvLdxvbdwvrZwvrVvv7RuwLNtwLNswbJrwrFqw7Bpw7BoxK9nxa5mxa1lxqxlx6tkx6tjyKpiyalhyahgyqdfy6Zey6VdzKVczaRbzaNazqJZz6FZz6BY0J9X0Z5W0Z1V0pxU05tT05pS1JlR1ZhQ1ZdP1pZO15VN15RM2JNL2ZJK2ZFJ2pBI245H241G3IxG3YtF3YpE3olD34dC34ZB4IVA4IQ/4YI+4oE94oA843475H065Hw55Xo45nk35nc153Y06HQz6HMy6XEx6nAw6m4v620u7Gst7Gks7Wcr7mYq7mQo72In72Am8F4l8Vwk8Voi8lgh81Ug81Mf9FEd9U4c9Uwb9kkZ90YY90MW+EAV+T0T+TkR+jUP+jEN+y0L/CcJ/CEH/RoE/hAC/gAA/75y5blmNXSSAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AP//AP/+Cf79EP78Fv77Gv76Hv35Iv34Jf34KP33K/z2Lfz1MPz0MvvzNPvyNvvxOPrwOvrvPPruPvrtQPnsQvnsQ/nrRfjqR/jpSPjoSvfnS/fmTfflTvbkT/bjUfbiUvXhU/XgVfXgVvTfV/TeWfTdWvPcW/PbXPPaXfLZX/LYYPLXYfHWYvHVY/HUZPDUZfDTZu/SZ+/Rae/Qau7Pa+7ObO7Nbe3Mbu3Lb+zKcOzJcezJcuvIc+vHdOrGderFdurEdunDd+nCeOjBeejAeui/e+e/fOe+fea9fua8f+W7gOW6gOW5geS4guS3g+O2hOO1heK1huK0huGzh+GyiOCxieCwiuCvi9+ui9+tjN6sjd6rjt2rj92qkNypkNyokdunktumk9qlk9qklNmjldmiltihl9ihl9egmNefmdaemtWdmtWcm9SbnNSandOZntOYntKXn9KXoNGWodGVodCUos+To8+So86RpM6Qpc2PpsyOpsyOp8uNqMuMqcqLqcmKqsmJq8iIrMiHrMeGrcaFrsaErsWEr8SDsMSCscOBscKAssJ/s8F+s8B9tMB8tb97tb56tr56t715uLx4uLx3ubt2urp1url0u7lzvLhyvLdxvbdwvrZwvrVvv7RuwLNtwLNswbJrwrFqw7Bpw7BoxK9nxa5mxa1lxqxlx6tkx6tjyKpiyalhyahgyqdfy6Zey6VdzKVczaRbzaNazqJZz6FZz6BY0J9X0Z5W0Z1V0pxU05tT05pS1JlR1ZhQ1ZdP1pZO15VN15RM2JNL2ZJK2ZFJ2pBI245H241G3IxG3YtF3YpE3olD34dC34ZB4IVA4IQ/4YI+4oE94oA843475H065Hw55Xo45nk35nc153Y06HQz6HMy6XEx6nAw6m4v620u7Gst7Gks7Wcr7mYq7mQo72In72Am8F4l8Vwk8Voi8lgh81Ug81Mf9FEd9U4c9Uwb9kkZ90YY90MW+EAV+T0T+TkR+jUP+jEN+y0L/CcJ/CEH/RoE/hAC/gAA/75y5blmNXSSAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AP//AP/+Cf79EP78Fv77Gv76Hv35Iv34Jf34KP33K/z2Lfz1MPz0MvvzNPvyNvvxOPrwOvrvPPruPvrtQPnsQvnsQ/nrRfjqR/jpSPjoSvfnS/fmTfflTvbkT/bjUfbiUvXhU/XgVfXgVvTfV/TeWfTdWvPcW/PbXPPaXfLZX/LYYPLXYfHWYvHVY/HUZPDUZfDTZu/SZ+/Rae/Qau7Pa+7ObO7Nbe3Mbu3Lb+zKcOzJcezJcuvIc+vHdOrGderFdurEdunDd+nCeOjBeejAeui/e+e/fOe+fea9fua8f+W7gOW6gOW5geS4guS3g+O2hOO1heK1huK0huGzh+GyiOCxieCwiuCvi9+ui9+tjN6sjd6rjt2rj92qkNypkNyokdunktumk9qlk9qklNmjldmiltihl9ihl9egmNefmdaemtWdmtWcm9SbnNSandOZntOYntKXn9KXoNGWodGVodCUos+To8+So86RpM6Qpc2PpsyOpsyOp8uNqMuMqcqLqcmKqsmJq8iIrMiHrMeGrcaFrsaErsWEr8SDsMSCscOBscKAssJ/s8F+s8B9tMB8tb97tb56tr56t715uLx4uLx3ubt2urp1url0u7lzvLhyvLdxvbdwvrZwvrVvv7RuwLNtwLNswbJrwrFqw7Bpw7BoxK9nxa5mxa1lxqxlx6tkx6tjyKpiyalhyahgyqdfy6Zey6VdzKVczaRbzaNazqJZz6FZz6BY0J9X0Z5W0Z1V0pxU05tT05pS1JlR1ZhQ1ZdP1pZO15VN15RM2JNL2ZJK2ZFJ2pBI245H241G3IxG3YtF3YpE3olD34dC34ZB4IVA4IQ/4YI+4oE94oA843475H065Hw55Xo45nk35nc153Y06HQz6HMy6XEx6nAw6m4v620u7Gst7Gks7Wcr7mYq7mQo72In72Am8F4l8Vwk8Voi8lgh81Ug81Mf9FEd9U4c9Uwb9kkZ90YY90MW+EAV+T0T+TkR+jUP+jEN+y0L/CcJ/CEH/RoE/hAC/gAA/75y5blmNXSSAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AP//AP/+Cf79EP78Fv77Gv76Hv35Iv34Jf34KP33K/z2Lfz1MPz0MvvzNPvyNvvxOPrwOvrvPPruPvrtQPnsQvnsQ/nrRfjqR/jpSPjoSvfnS/fmTfflTvbkT/bjUfbiUvXhU/XgVfXgVvTfV/TeWfTdWvPcW/PbXPPaXfLZX/LYYPLXYfHWYvHVY/HUZPDUZfDTZu/SZ+/Rae/Qau7Pa+7ObO7Nbe3Mbu3Lb+zKcOzJcezJcuvIc+vHdOrGderFdurEdunDd+nCeOjBeejAeui/e+e/fOe+fea9fua8f+W7gOW6gOW5geS4guS3g+O2hOO1heK1huK0huGzh+GyiOCxieCwiuCvi9+ui9+tjN6sjd6rjt2rj92qkNypkNyokdunktumk9qlk9qklNmjldmiltihl9ihl9egmNefmdaemtWdmtWcm9SbnNSandOZntOYntKXn9KXoNGWodGVodCUos+To8+So86RpM6Qpc2PpsyOpsyOp8uNqMuMqcqLqcmKqsmJq8iIrMiHrMeGrcaFrsaErsWEr8SDsMSCscOBscKAssJ/s8F+s8B9tMB8tb97tb56tr56t715uLx4uLx3ubt2urp1url0u7lzvLhyvLdxvbdwvrZwvrVvv7RuwLNtwLNswbJrwrFqw7Bpw7BoxK9nxa5mxa1lxqxlx6tkx6tjyKpiyalhyahgyqdfy6Zey6VdzKVczaRbzaNazqJZz6FZz6BY0J9X0Z5W0Z1V0pxU05tT05pS1JlR1ZhQ1ZdP1pZO15VN15RM2JNL2ZJK2ZFJ2pBI245H241G3IxG3YtF3YpE3olD34dC34ZB4IVA4IQ/4YI+4oE94oA843475H065Hw55Xo45nk35nc153Y06HQz6HMy6XEx6nAw6m4v620u7Gst7Gks7Wcr7mYq7mQo72In72Am8F4l8Vwk8Voi8lgh81Ug81Mf9FEd9U4c9Uwb9kkZ90YY90MW+EAV+T0T+TkR+jUP+jEN+y0L/CcJ/CEH/RoE/hAC/gAA/75y5blmNXSSAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AP//AP/+Cf79EP78Fv77Gv76Hv35Iv34Jf34KP33K/z2Lfz1MPz0MvvzNPvyNvvxOPrwOvrvPPruPvrtQPnsQvnsQ/nrRfjqR/jpSPjoSvfnS/fmTfflTvbkT/bjUfbiUvXhU/XgVfXgVvTfV/TeWfTdWvPcW/PbXPPaXfLZX/LYYPLXYfHWYvHVY/HUZPDUZfDTZu/SZ+/Rae/Qau7Pa+7ObO7Nbe3Mbu3Lb+zKcOzJcezJcuvIc+vHdOrGderFdurEdunDd+nCeOjBeejAeui/e+e/fOe+fea9fua8f+W7gOW6gOW5geS4guS3g+O2hOO1heK1huK0huGzh+GyiOCxieCwiuCvi9+ui9+tjN6sjd6rjt2rj92qkNypkNyokdunktumk9qlk9qklNmjldmiltihl9ihl9egmNefmdaemtWdmtWcm9SbnNSandOZntOYntKXn9KXoNGWodGVodCUos+To8+So86RpM6Qpc2PpsyOpsyOp8uNqMuMqcqLqcmKqsmJq8iIrMiHrMeGrcaFrsaErsWEr8SDsMSCscOBscKAssJ/s8F+s8B9tMB8tb97tb56tr56t715uLx4uLx3ubt2urp1url0u7lzvLhyvLdxvbdwvrZwvrVvv7RuwLNtwLNswbJrwrFqw7Bpw7BoxK9nxa5mxa1lxqxlx6tkx6tjyKpiyalhyahgyqdfy6Zey6VdzKVczaRbzaNazqJZz6FZz6BY0J9X0Z5W0Z1V0pxU05tT05pS1JlR1ZhQ1ZdP1pZO15VN15RM2JNL2ZJK2ZFJ2pBI245H241G3IxG3YtF3YpE3olD34dC34ZB4IVA4IQ/4YI+4oE94oA843475H065Hw55Xo45nk35nc153Y06HQz6HMy6XEx6nAw6m4v620u7Gst7Gks7Wcr7mYq7mQo72In72Am8F4l8Vwk8Voi8lgh81Ug81Mf9FEd9U4c9Uwb9kkZ90YY90MW+EAV+T0T+TkR+jUP+jEN+y0L/CcJ/CEH/RoE/hAC/gAA/75y5blmNXSSAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AP//AP/+Cf79EP78Fv77Gv76Hv35Iv34Jf34KP33K/z2Lfz1MPz0MvvzNPvyNvvxOPrwOvrvPPruPvrtQPnsQvnsQ/nrRfjqR/jpSPjoSvfnS/fmTfflTvbkT/bjUfbiUvXhU/XgVfXgVvTfV/TeWfTdWvPcW/PbXPPaXfLZX/LYYPLXYfHWYvHVY/HUZPDUZfDTZu/SZ+/Rae/Qau7Pa+7ObO7Nbe3Mbu3Lb+zKcOzJcezJcuvIc+vHdOrGderFdurEdunDd+nCeOjBeejAeui/e+e/fOe+fea9fua8f+W7gOW6gOW5geS4guS3g+O2hOO1heK1huK0huGzh+GyiOCxieCwiuCvi9+ui9+tjN6sjd6rjt2rj92qkNypkNyokdunktumk9qlk9qklNmjldmiltihl9ihl9egmNefmdaemtWdmtWcm9SbnNSandOZntOYntKXn9KXoNGWodGVodCUos+To8+So86RpM6Qpc2PpsyOpsyOp8uNqMuMqcqLqcmKqsmJq8iIrMiHrMeGrcaFrsaErsWEr8SDsMSCscOBscKAssJ/s8F+s8B9tMB8tb97tb56tr56t715uLx4uLx3ubt2urp1url0u7lzvLhyvLdxvbdwvrZwvrVvv7RuwLNtwLNswbJrwrFqw7Bpw7BoxK9nxa5mxa1lxqxlx6tkx6tjyKpiyalhyahgyqdfy6Zey6VdzKVczaRbzaNazqJZz6FZz6BY0J9X0Z5W0Z1V0pxU05tT05pS1JlR1ZhQ1ZdP1pZO15VN15RM2JNL2ZJK2ZFJ2pBI245H241G3IxG3YtF3YpE3olD34dC34ZB4IVA4IQ/4YI+4oE94oA843475H065Hw55Xo45nk35nc153Y06HQz6HMy6XEx6nAw6m4v620u7Gst7Gks7Wcr7mYq7mQo72In72Am8F4l8Vwk8Voi8lgh81Ug81Mf9FEd9U4c9Uwb9kkZ90YY90MW+EAV+T0T+TkR+jUP+jEN+y0L/CcJ/CEH/RoE/hAC/gAA/75y5blmNXSSAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AP//AP/+Cf79EP78Fv77Gv76Hv35Iv34Jf34KP33K/z2Lfz1MPz0MvvzNPvyNvvxOPrwOvrvPPruPvrtQPnsQvnsQ/nrRfjqR/jpSPjoSvfnS/fmTfflTvbkT/bjUfbiUvXhU/XgVfXgVvTfV/TeWfTdWvPcW/PbXPPaXfLZX/LYYPLXYfHWYvHVY/HUZPDUZfDTZu/SZ+/Rae/Qau7Pa+7ObO7Nbe3Mbu3Lb+zKcOzJcezJcuvIc+vHdOrGderFdurEdunDd+nCeOjBeejAeui/e+e/fOe+fea9fua8f+W7gOW6gOW5geS4guS3g+O2hOO1heK1huK0huGzh+GyiOCxieCwiuCvi9+ui9+tjN6sjd6rjt2rj92qkNypkNyokdunktumk9qlk9qklNmjldmiltihl9ihl9egmNefmdaemtWdmtWcm9SbnNSandOZntOYntKXn9KXoNGWodGVodCUos+To8+So86RpM6Qpc2PpsyOpsyOp8uNqMuMqcqLqcmKqsmJq8iIrMiHrMeGrcaFrsaErsWEr8SDsMSCscOBscKAssJ/s8F+s8B9tMB8tb97tb56tr56t715uLx4uLx3ubt2urp1url0u7lzvLhyvLdxvbdwvrZwvrVvv7RuwLNtwLNswbJrwrFqw7Bpw7BoxK9nxa5mxa1lxqxlx6tkx6tjyKpiyalhyahgyqdfy6Zey6VdzKVczaRbzaNazqJZz6FZz6BY0J9X0Z5W0Z1V0pxU05tT05pS1JlR1ZhQ1ZdP1pZO15VN15RM2JNL2ZJK2ZFJ2pBI245H241G3IxG3YtF3YpE3olD34dC34ZB4IVA4IQ/4YI+4oE94oA843475H065Hw55Xo45nk35nc153Y06HQz6HMy6XEx6nAw6m4v620u7Gst7Gks7Wcr7mYq7mQo72In72Am8F4l8Vwk8Voi8lgh81Ug81Mf9FEd9U4c9Uwb9kkZ90YY90MW+EAV+T0T+TkR+jUP+jEN+y0L/CcJ/CEH/RoE/hAC/gAA/75y5blmNXSSAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AP//AP/+Cf79EP78Fv77Gv76Hv35Iv34Jf34KP33K/z2Lfz1MPz0MvvzNPvyNvvxOPrwOvrvPPruPvrtQPnsQvnsQ/nrRfjqR/jpSPjoSvfnS/fmTfflTvbkT/bjUfbiUvXhU/XgVfXgVvTfV/TeWfTdWvPcW/PbXPPaXfLZX/LYYPLXYfHWYvHVY/HUZPDUZfDTZu/SZ+/Rae/Qau7Pa+7ObO7Nbe3Mbu3Lb+zKcOzJcezJcuvIc+vHdOrGderFdurEdunDd+nCeOjBeejAeui/e+e/fOe+fea9fua8f+W7gOW6gOW5geS4guS3g+O2hOO1heK1huK0huGzh+GyiOCxieCwiuCvi9+ui9+tjN6sjd6rjt2rj92qkNypkNyokdunktumk9qlk9qklNmjldmiltihl9ihl9egmNefmdaemtWdmtWcm9SbnNSandOZntOYntKXn9KXoNGWodGVodCUos+To8+So86RpM6Qpc2PpsyOpsyOp8uNqMuMqcqLqcmKqsmJq8iIrMiHrMeGrcaFrsaErsWEr8SDsMSCscOBscKAssJ/s8F+s8B9tMB8tb97tb56tr56t715uLx4uLx3ubt2urp1url0u7lzvLhyvLdxvbdwvrZwvrVvv7RuwLNtwLNswbJrwrFqw7Bpw7BoxK9nxa5mxa1lxqxlx6tkx6tjyKpiyalhyahgyqdfy6Zey6VdzKVczaRbzaNazqJZz6FZz6BY0J9X0Z5W0Z1V0pxU05tT05pS1JlR1ZhQ1ZdP1pZO15VN15RM2JNL2ZJK2ZFJ2pBI245H241G3IxG3YtF3YpE3olD34dC34ZB4IVA4IQ/4YI+4oE94oA843475H065Hw55Xo45nk35nc153Y06HQz6HMy6XEx6nAw6m4v620u7Gst7Gks7Wcr7mYq7mQo72In72Am8F4l8Vwk8Voi8lgh81Ug81Mf9FEd9U4c9Uwb9kkZ90YY90MW+EAV+T0T+TkR+jUP+jEN+y0L/CcJ/CEH/RoE/hAC/gAA/75y5blmNXSSAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g stroke-width="0" transform="scale(3)" fill-opacity="1"><g transform="translate(0, 0)"><g transform="scale(1, -1)" text-anchor="middle"><text font-size="2">$e^{i\pi}+1=0$</text></g></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g stroke-width="0" transform="scale(3)" fill-opacity="1"><g transform="translate(0, 0)"><g transform="scale(1, -1)" text-anchor="middle"><text font-size="2">$e^{i\pi}+1=0$</text></g></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g stroke-width="0" transform="scale(3)" fill-opacity="1"><g transform="translate(0, 0)"><g transform="scale(1, -1)" text-anchor="middle"><text font-size="2">$e^{i\pi}+1=0$</text></g></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g stroke-width="0" transform="scale(3)" fill-opacity="1"><g transform="translate(0, 0)"><g transform="scale(1, -1)" text-anchor="middle"><text font-size="2">$e^{i\pi}+1=0$</text></g></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g stroke-width="0" transform="scale(3)" fill-opacity="1"><g transform="translate(0, 0)"><g transform="scale(1, -1)" text-anchor="middle"><text font-size="2">$e^{i\pi}+1=0$</text></g></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g stroke-width="0" transform="scale(3)" fill-opacity="1"><g transform="translate(0, 0)"><g transform="scale(1, -1)" text-anchor="middle"><text font-size="2">$e^{i\pi}+1=0$</text></g></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g stroke-width="0" transform="scale(3)" fill-opacity="1"><g transform="translate(0, 0)"><g transform="scale(1, -1)" text-anchor="middle"><text font-size="2">$e^{i\pi}+1=0$</text></g></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g stroke-width="0" transform="scale(3)" fill-opacity="1"><g transform="translate(0, 0)"><g transform="scale(1, -1)" text-anchor="middle"><text font-size="2">$e^{i\pi}+1=0$</text></g></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g stroke-width="0" transform="scale(3)" fill-opacity="1"><g transform="translate(0, 0)"><g transform="scale(1, -1)" text-anchor="middle"><text font-size="2">$e^{i\pi}+1=0$</text></g></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g stroke-width="0" transform="scale(3)" fill-opacity="1"><g transform="translate(0, 0)"><g transform="scale(1, -1)" text-anchor="middle"><text font-size="2">$e^{i\pi}+1=0$</text></g></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g stroke-width="0" transform="scale(3)" fill-opacity="1"><g transform="translate(0, 0)"><g transform="scale(1, -1)" text-anchor="middle"><text font-size="2">\begin{align*}R = \frac{{\Delta x}}{{kA}}\end{align*}</text></g></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g stroke-width="0" transform="scale(3)" fill-opacity="1"><g transform="translate(0, 0)"><g transform="scale(1, -1)" text-anchor="middle"><text font-size="2">\begin{align*}R = \frac{{\Delta x}}{{kA}}\end{align*}</text></g></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g stroke-width="0" transform="scale(3)" fill-opacity="1"><g transform="translate(0, 0)"><g transform="scale(1, -1)" text-anchor="middle"><text font-size="2">\begin{align*}R = \frac{{\Delta x}}{{kA}}\end{align*}</text></g></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g stroke-width="0" transform="scale(3)" fill-opacity="1"><g transform="translate(0, 0)"><g transform="scale(1, -1)" text-anchor="middle"><text font-size="2">\begin{align*}R = \frac{{\Delta x}}{{kA}}\end{align*}</text></g></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g stroke-width="0" transform="scale(3)" fill-opacity="1"><g transform="translate(0, 0)"><g transform="scale(1, -1)" text-anchor="middle"><text font-size="2">\begin{align*}R = \frac{{\Delta x}}{{kA}}\end{align*}</text></g></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g stroke-width="0" transform="scale(3)" fill-opacity="1"><g transform="translate(0, 0)"><g transform="scale(1, -1)" text-anchor="middle"><text font-size="2">\begin{align*}R = \frac{{\Delta x}}{{kA}}\end{align*}</text></g></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g stroke-width="0" transform="scale(3)" fill-opacity="1"><g transform="translate(0, 0)"><g transform="scale(1, -1)" text-anchor="middle"><text font-size="2">\begin{align*}R = \frac{{\Delta x}}{{kA}}\end{align*}</text></g></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g stroke-width="0" transform="scale(3)" fill-opacity="1"><g transform="translate(0, 0)"><g transform="scale(1, -1)" text-anchor="middle"><text font-size="2">\begin{align*}R = \frac{{\Delta x}}{{kA}}\end{align*}</text></g></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g stroke-width="0" transform="scale(3)" fill-opacity="1"><g transform="translate(0, 0)"><g transform="scale(1, -1)" text-anchor="middle"><text font-size="2">\begin{align*}R = \frac{{\Delta x}}{{kA}}\end{align*}</text></g></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g stroke-width="0" transform="scale(3)" fill-opacity="1"><g transform="translate(0, 0)"><g transform="scale(1, -1)" text-anchor="middle"><text font-size="2">\begin{align*}R = \frac{{\Delta x}}{{kA}}\end{align*}</text></g></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAACVklEQVR4nB3CCUzNAQDH8e/MZrM1m1lma2bN1pqZWcMMa67F3GfuY7TEEpMjEZYjhMpVodyUJEkkISlJlFJJkujSffd6vff/mffZBwmLMIku0S6aRYOoE1WiUpSL7wbFBoUGeQa5Rr9so3+mMSDdGJhmtUuxDkq2Dk60Dom3Do21DrtrcbhpGR5lGRFhcbzYNzK0zym4zzmob1SgeXSAeYyfeayv2cWnd5xX74TNvRPXmia5m6YsNLnO6pnq2jN9XPdM5243++7ZdM2hax6dC+hcROcSOpbR4U77StpX07aWtvW0baR1E60etHjS4kXzNpq9afKhaSeNu2jcTcNe6v2o9+fvQf4eou4IdYHUHqP2BDUnqQ6m+ixVIVSF8ecCvy/xO5zKSCqv8iuaihtU3OLnHcrvUR7DjzjK4ilL4HsipUmUJvMthW+plKRR/JqidIoy+JpFYTaFORTk8uUzX/LJLyCviLwSPpfyqYxP5eRW8LGSnCpyavhQR3Y92Y28byarlcx2Mjt5102GiQwzby2kG7zR/6/FK5Fm+1Kkihe2KeK5eGabLJ6KJPHENlE8Fgm2j0S8eCjibB+IWBEj7ot7tnfFHXFb3BI3xQ1x3TZaRIlr4qq4IiJFhAgXl8UlcVFcEOdFmAgVIeKcOCvOiGBxWpwSQeKEOC6OiaMiUBwRh8UhESAOCH+xX+wTe8Ue4St2iZ1ih9guvMU2sVVsEZ7CQ2wSG8UGsU6sEavECrFcLBWLxUIxX8wVs4WbmCGmCVcxWUwU44WLGCNGCSfhKByEvbAT6B8DrYx5Ykn+OwAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAACVklEQVR4nB3CCUzNAQDH8e/MZrM1m1lma2bN1pqZWcMMa67F3GfuY7TEEpMjEZYjhMpVodyUJEkkISlJlFJJkujSffd6vff/mffZBwmLMIku0S6aRYOoE1WiUpSL7wbFBoUGeQa5Rr9so3+mMSDdGJhmtUuxDkq2Dk60Dom3Do21DrtrcbhpGR5lGRFhcbzYNzK0zym4zzmob1SgeXSAeYyfeayv2cWnd5xX74TNvRPXmia5m6YsNLnO6pnq2jN9XPdM5243++7ZdM2hax6dC+hcROcSOpbR4U77StpX07aWtvW0baR1E60etHjS4kXzNpq9afKhaSeNu2jcTcNe6v2o9+fvQf4eou4IdYHUHqP2BDUnqQ6m+ixVIVSF8ecCvy/xO5zKSCqv8iuaihtU3OLnHcrvUR7DjzjK4ilL4HsipUmUJvMthW+plKRR/JqidIoy+JpFYTaFORTk8uUzX/LJLyCviLwSPpfyqYxP5eRW8LGSnCpyavhQR3Y92Y28byarlcx2Mjt5102GiQwzby2kG7zR/6/FK5Fm+1Kkihe2KeK5eGabLJ6KJPHENlE8Fgm2j0S8eCjibB+IWBEj7ot7tnfFHXFb3BI3xQ1x3TZaRIlr4qq4IiJFhAgXl8UlcVFcEOdFmAgVIeKcOCvOiGBxWpwSQeKEOC6OiaMiUBwRh8UhESAOCH+xX+wTe8Ue4St2iZ1ih9guvMU2sVVsEZ7CQ2wSG8UGsU6sEavECrFcLBWLxUIxX8wVs4WbmCGmCVcxWUwU44WLGCNGCSfhKByEvbAT6B8DrYx5Ykn+OwAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAACVklEQVR4nB3CCUzNAQDH8e/MZrM1m1lma2bN1pqZWcMMa67F3GfuY7TEEpMjEZYjhMpVodyUJEkkISlJlFJJkujSffd6vff/mffZBwmLMIku0S6aRYOoE1WiUpSL7wbFBoUGeQa5Rr9so3+mMSDdGJhmtUuxDkq2Dk60Dom3Do21DrtrcbhpGR5lGRFhcbzYNzK0zym4zzmob1SgeXSAeYyfeayv2cWnd5xX74TNvRPXmia5m6YsNLnO6pnq2jN9XPdM5243++7ZdM2hax6dC+hcROcSOpbR4U77StpX07aWtvW0baR1E60etHjS4kXzNpq9afKhaSeNu2jcTcNe6v2o9+fvQf4eou4IdYHUHqP2BDUnqQ6m+ixVIVSF8ecCvy/xO5zKSCqv8iuaihtU3OLnHcrvUR7DjzjK4ilL4HsipUmUJvMthW+plKRR/JqidIoy+JpFYTaFORTk8uUzX/LJLyCviLwSPpfyqYxP5eRW8LGSnCpyavhQR3Y92Y28byarlcx2Mjt5102GiQwzby2kG7zR/6/FK5Fm+1Kkihe2KeK5eGabLJ6KJPHENlE8Fgm2j0S8eCjibB+IWBEj7ot7tnfFHXFb3BI3xQ1x3TZaRIlr4qq4IiJFhAgXl8UlcVFcEOdFmAgVIeKcOCvOiGBxWpwSQeKEOC6OiaMiUBwRh8UhESAOCH+xX+wTe8Ue4St2iZ1ih9guvMU2sVVsEZ7CQ2wSG8UGsU6sEavECrFcLBWLxUIxX8wVs4WbmCGmCVcxWUwU44WLGCNGCSfhKByEvbAT6B8DrYx5Ykn+OwAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAACVklEQVR4nB3CCUzNAQDH8e/MZrM1m1lma2bN1pqZWcMMa67F3GfuY7TEEpMjEZYjhMpVodyUJEkkISlJlFJJkujSffd6vff/mffZBwmLMIku0S6aRYOoE1WiUpSL7wbFBoUGeQa5Rr9so3+mMSDdGJhmtUuxDkq2Dk60Dom3Do21DrtrcbhpGR5lGRFhcbzYNzK0zym4zzmob1SgeXSAeYyfeayv2cWnd5xX74TNvRPXmia5m6YsNLnO6pnq2jN9XPdM5243++7ZdM2hax6dC+hcROcSOpbR4U77StpX07aWtvW0baR1E60etHjS4kXzNpq9afKhaSeNu2jcTcNe6v2o9+fvQf4eou4IdYHUHqP2BDUnqQ6m+ixVIVSF8ecCvy/xO5zKSCqv8iuaihtU3OLnHcrvUR7DjzjK4ilL4HsipUmUJvMthW+plKRR/JqidIoy+JpFYTaFORTk8uUzX/LJLyCviLwSPpfyqYxP5eRW8LGSnCpyavhQR3Y92Y28byarlcx2Mjt5102GiQwzby2kG7zR/6/FK5Fm+1Kkihe2KeK5eGabLJ6KJPHENlE8Fgm2j0S8eCjibB+IWBEj7ot7tnfFHXFb3BI3xQ1x3TZaRIlr4qq4IiJFhAgXl8UlcVFcEOdFmAgVIeKcOCvOiGBxWpwSQeKEOC6OiaMiUBwRh8UhESAOCH+xX+wTe8Ue4St2iZ1ih9guvMU2sVVsEZ7CQ2wSG8UGsU6sEavECrFcLBWLxUIxX8wVs4WbmCGmCVcxWUwU44WLGCNGCSfhKByEvbAT6B8DrYx5Ykn+OwAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAACVklEQVR4nB3CCUzNAQDH8e/MZrM1m1lma2bN1pqZWcMMa67F3GfuY7TEEpMjEZYjhMpVodyUJEkkISlJlFJJkujSffd6vff/mffZBwmLMIku0S6aRYOoE1WiUpSL7wbFBoUGeQa5Rr9so3+mMSDdGJhmtUuxDkq2Dk60Dom3Do21DrtrcbhpGR5lGRFhcbzYNzK0zym4zzmob1SgeXSAeYyfeayv2cWnd5xX74TNvRPXmia5m6YsNLnO6pnq2jN9XPdM5243++7ZdM2hax6dC+hcROcSOpbR4U77StpX07aWtvW0baR1E60etHjS4kXzNpq9afKhaSeNu2jcTcNe6v2o9+fvQf4eou4IdYHUHqP2BDUnqQ6m+ixVIVSF8ecCvy/xO5zKSCqv8iuaihtU3OLnHcrvUR7DjzjK4ilL4HsipUmUJvMthW+plKRR/JqidIoy+JpFYTaFORTk8uUzX/LJLyCviLwSPpfyqYxP5eRW8LGSnCpyavhQR3Y92Y28byarlcx2Mjt5102GiQwzby2kG7zR/6/FK5Fm+1Kkihe2KeK5eGabLJ6KJPHENlE8Fgm2j0S8eCjibB+IWBEj7ot7tnfFHXFb3BI3xQ1x3TZaRIlr4qq4IiJFhAgXl8UlcVFcEOdFmAgVIeKcOCvOiGBxWpwSQeKEOC6OiaMiUBwRh8UhESAOCH+xX+wTe8Ue4St2iZ1ih9guvMU2sVVsEZ7CQ2wSG8UGsU6sEavECrFcLBWLxUIxX8wVs4WbmCGmCVcxWUwU44WLGCNGCSfhKByEvbAT6B8DrYx5Ykn+OwAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAACVklEQVR4nB3CCUzNAQDH8e/MZrM1m1lma2bN1pqZWcMMa67F3GfuY7TEEpMjEZYjhMpVodyUJEkkISlJlFJJkujSffd6vff/mffZBwmLMIku0S6aRYOoE1WiUpSL7wbFBoUGeQa5Rr9so3+mMSDdGJhmtUuxDkq2Dk60Dom3Do21DrtrcbhpGR5lGRFhcbzYNzK0zym4zzmob1SgeXSAeYyfeayv2cWnd5xX74TNvRPXmia5m6YsNLnO6pnq2jN9XPdM5243++7ZdM2hax6dC+hcROcSOpbR4U77StpX07aWtvW0baR1E60etHjS4kXzNpq9afKhaSeNu2jcTcNe6v2o9+fvQf4eou4IdYHUHqP2BDUnqQ6m+ixVIVSF8ecCvy/xO5zKSCqv8iuaihtU3OLnHcrvUR7DjzjK4ilL4HsipUmUJvMthW+plKRR/JqidIoy+JpFYTaFORTk8uUzX/LJLyCviLwSPpfyqYxP5eRW8LGSnCpyavhQR3Y92Y28byarlcx2Mjt5102GiQwzby2kG7zR/6/FK5Fm+1Kkihe2KeK5eGabLJ6KJPHENlE8Fgm2j0S8eCjibB+IWBEj7ot7tnfFHXFb3BI3xQ1x3TZaRIlr4qq4IiJFhAgXl8UlcVFcEOdFmAgVIeKcOCvOiGBxWpwSQeKEOC6OiaMiUBwRh8UhESAOCH+xX+wTe8Ue4St2iZ1ih9guvMU2sVVsEZ7CQ2wSG8UGsU6sEavECrFcLBWLxUIxX8wVs4WbmCGmCVcxWUwU44WLGCNGCSfhKByEvbAT6B8DrYx5Ykn+OwAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAACVklEQVR4nB3CCUzNAQDH8e/MZrM1m1lma2bN1pqZWcMMa67F3GfuY7TEEpMjEZYjhMpVodyUJEkkISlJlFJJkujSffd6vff/mffZBwmLMIku0S6aRYOoE1WiUpSL7wbFBoUGeQa5Rr9so3+mMSDdGJhmtUuxDkq2Dk60Dom3Do21DrtrcbhpGR5lGRFhcbzYNzK0zym4zzmob1SgeXSAeYyfeayv2cWnd5xX74TNvRPXmia5m6YsNLnO6pnq2jN9XPdM5243++7ZdM2hax6dC+hcROcSOpbR4U77StpX07aWtvW0baR1E60etHjS4kXzNpq9afKhaSeNu2jcTcNe6v2o9+fvQf4eou4IdYHUHqP2BDUnqQ6m+ixVIVSF8ecCvy/xO5zKSCqv8iuaihtU3OLnHcrvUR7DjzjK4ilL4HsipUmUJvMthW+plKRR/JqidIoy+JpFYTaFORTk8uUzX/LJLyCviLwSPpfyqYxP5eRW8LGSnCpyavhQR3Y92Y28byarlcx2Mjt5102GiQwzby2kG7zR/6/FK5Fm+1Kkihe2KeK5eGabLJ6KJPHENlE8Fgm2j0S8eCjibB+IWBEj7ot7tnfFHXFb3BI3xQ1x3TZaRIlr4qq4IiJFhAgXl8UlcVFcEOdFmAgVIeKcOCvOiGBxWpwSQeKEOC6OiaMiUBwRh8UhESAOCH+xX+wTe8Ue4St2iZ1ih9guvMU2sVVsEZ7CQ2wSG8UGsU6sEavECrFcLBWLxUIxX8wVs4WbmCGmCVcxWUwU44WLGCNGCSfhKByEvbAT6B8DrYx5Ykn+OwAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAACVklEQVR4nB3CCUzNAQDH8e/MZrM1m1lma2bN1pqZWcMMa67F3GfuY7TEEpMjEZYjhMpVodyUJEkkISlJlFJJkujSffd6vff/mffZBwmLMIku0S6aRYOoE1WiUpSL7wbFBoUGeQa5Rr9so3+mMSDdGJhmtUuxDkq2Dk60Dom3Do21DrtrcbhpGR5lGRFhcbzYNzK0zym4zzmob1SgeXSAeYyfeayv2cWnd5xX74TNvRPXmia5m6YsNLnO6pnq2jN9XPdM5243++7ZdM2hax6dC+hcROcSOpbR4U77StpX07aWtvW0baR1E60etHjS4kXzNpq9afKhaSeNu2jcTcNe6v2o9+fvQf4eou4IdYHUHqP2BDUnqQ6m+ixVIVSF8ecCvy/xO5zKSCqv8iuaihtU3OLnHcrvUR7DjzjK4ilL4HsipUmUJvMthW+plKRR/JqidIoy+JpFYTaFORTk8uUzX/LJLyCviLwSPpfyqYxP5eRW8LGSnCpyavhQR3Y92Y28byarlcx2Mjt5102GiQwzby2kG7zR/6/FK5Fm+1Kkihe2KeK5eGabLJ6KJPHENlE8Fgm2j0S8eCjibB+IWBEj7ot7tnfFHXFb3BI3xQ1x3TZaRIlr4qq4IiJFhAgXl8UlcVFcEOdFmAgVIeKcOCvOiGBxWpwSQeKEOC6OiaMiUBwRh8UhESAOCH+xX+wTe8Ue4St2iZ1ih9guvMU2sVVsEZ7CQ2wSG8UGsU6sEavECrFcLBWLxUIxX8wVs4WbmCGmCVcxWUwU44WLGCNGCSfhKByEvbAT6B8DrYx5Ykn+OwAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAACVklEQVR4nB3CCUzNAQDH8e/MZrM1m1lma2bN1pqZWcMMa67F3GfuY7TEEpMjEZYjhMpVodyUJEkkISlJlFJJkujSffd6vff/mffZBwmLMIku0S6aRYOoE1WiUpSL7wbFBoUGeQa5Rr9so3+mMSDdGJhmtUuxDkq2Dk60Dom3Do21DrtrcbhpGR5lGRFhcbzYNzK0zym4zzmob1SgeXSAeYyfeayv2cWnd5xX74TNvRPXmia5m6YsNLnO6pnq2jN9XPdM5243++7ZdM2hax6dC+hcROcSOpbR4U77StpX07aWtvW0baR1E60etHjS4kXzNpq9afKhaSeNu2jcTcNe6v2o9+fvQf4eou4IdYHUHqP2BDUnqQ6m+ixVIVSF8ecCvy/xO5zKSCqv8iuaihtU3OLnHcrvUR7DjzjK4ilL4HsipUmUJvMthW+plKRR/JqidIoy+JpFYTaFORTk8uUzX/LJLyCviLwSPpfyqYxP5eRW8LGSnCpyavhQR3Y92Y28byarlcx2Mjt5102GiQwzby2kG7zR/6/FK5Fm+1Kkihe2KeK5eGabLJ6KJPHENlE8Fgm2j0S8eCjibB+IWBEj7ot7tnfFHXFb3BI3xQ1x3TZaRIlr4qq4IiJFhAgXl8UlcVFcEOdFmAgVIeKcOCvOiGBxWpwSQeKEOC6OiaMiUBwRh8UhESAOCH+xX+wTe8Ue4St2iZ1ih9guvMU2sVVsEZ7CQ2wSG8UGsU6sEavECrFcLBWLxUIxX8wVs4WbmCGmCVcxWUwU44WLGCNGCSfhKByEvbAT6B8DrYx5Ykn+OwAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAACVklEQVR4nB3CCUzNAQDH8e/MZrM1m1lma2bN1pqZWcMMa67F3GfuY7TEEpMjEZYjhMpVodyUJEkkISlJlFJJkujSffd6vff/mffZBwmLMIku0S6aRYOoE1WiUpSL7wbFBoUGeQa5Rr9so3+mMSDdGJhmtUuxDkq2Dk60Dom3Do21DrtrcbhpGR5lGRFhcbzYNzK0zym4zzmob1SgeXSAeYyfeayv2cWnd5xX74TNvRPXmia5m6YsNLnO6pnq2jN9XPdM5243++7ZdM2hax6dC+hcROcSOpbR4U77StpX07aWtvW0baR1E60etHjS4kXzNpq9afKhaSeNu2jcTcNe6v2o9+fvQf4eou4IdYHUHqP2BDUnqQ6m+ixVIVSF8ecCvy/xO5zKSCqv8iuaihtU3OLnHcrvUR7DjzjK4ilL4HsipUmUJvMthW+plKRR/JqidIoy+JpFYTaFORTk8uUzX/LJLyCviLwSPpfyqYxP5eRW8LGSnCpyavhQR3Y92Y28byarlcx2Mjt5102GiQwzby2kG7zR/6/FK5Fm+1Kkihe2KeK5eGabLJ6KJPHENlE8Fgm2j0S8eCjibB+IWBEj7ot7tnfFHXFb3BI3xQ1x3TZaRIlr4qq4IiJFhAgXl8UlcVFcEOdFmAgVIeKcOCvOiGBxWpwSQeKEOC6OiaMiUBwRh8UhESAOCH+xX+wTe8Ue4St2iZ1ih9guvMU2sVVsEZ7CQ2wSG8UGsU6sEavECrFcLBWLxUIxX8wVs4WbmCGmCVcxWUwU44WLGCNGCSfhKByEvbAT6B8DrYx5Ykn+OwAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAABAEABQEBBgEBCAIBCQICCwICDQMDDwMDEgQEFAUEFgYFGAYFGgcGHAgHHgkHIAoIIgsJJAwJJg0KKQ4LKxALLREMLxINMRMNNBQONhUOOBYPOxgPPRkQPxoQQhwQRB0RRx4RSSARSyERTiIRUCQSUyUSVScSWCkRWioRXCwRXy0RYS8RYzERZTMQZzQQaTYQazgQbDkPbjsPcD0PcT8PckAPdEIPdUQPdkUQd0cQeEkQeEoQeUwRek4Re08Se1ESfFITfFQTfVYUfVcVflkVfloWflwWf10Xf18Yf2AYgGIZgGQagGUagGcbgGgcgWocgWsdgW0dgW4egXAfgXIfgXMggXUhgXYhgXgigXkignsjgnwjgn4kgoAlgoElgYMmgYQmgYYngYgngYkogYspgYwpgY4qgZAqgZErgZMrgJQsgJYsgJgtgJktgJsuf5wuf54vf6Avf6EwfqMwfqUxfqYxfagyfaozfaszfK00fK40e7A1e7I1e7M2erU2erc3ebg3ebo4eLw5eL05d786d8A6dsI7dcQ8dcU8dMc9c8g+c8o+csw/cc1Acc9AcNBBb9JCb9NDbtVEbdZFbNhFbNlGa9tHatxIad5JaN9KaOBMZ+JNZuNOZeRPZOVQZOdSY+hTYulUYupWYetXYOxYYO1aX+5bXu9dXvBfXvFgXfJiXfJkXPNlXPRnXPRpXPVrXPZsXPZuXPdwXPdyXPh0XPh2XPl4Xfl5Xfl7Xfp9Xvp/XvqBX/uDX/uFYPuHYfyJYfyKYvyMY/yOZPyQZf2SZv2UZ/2WaP2Yaf2aav2ba/6dbP6fbf6hbv6jb/6lcf6ncv6pc/6qdP6sdv6ud/6weP6yev60e/62fP63fv65f/67gf69gv6/hP7Bhf7Ch/7EiP7Giv7IjP7Kjf7Mj/7NkP7Pkv7RlP7Tlf7Vl/7Xmf7Ymv3anP3cnv3eoP3gof3io/3jpf3lp/3nqf3pqv3rrPzsrvzusPzwsvzytPz0tvz2uPz3ufz5u/z7vfz9v2XLYBfYljPoAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAABAEABQEBBgEBCAIBCQICCwICDQMDDwMDEgQEFAUEFgYFGAYFGgcGHAgHHgkHIAoIIgsJJAwJJg0KKQ4LKxALLREMLxINMRMNNBQONhUOOBYPOxgPPRkQPxoQQhwQRB0RRx4RSSARSyERTiIRUCQSUyUSVScSWCkRWioRXCwRXy0RYS8RYzERZTMQZzQQaTYQazgQbDkPbjsPcD0PcT8PckAPdEIPdUQPdkUQd0cQeEkQeEoQeUwRek4Re08Se1ESfFITfFQTfVYUfVcVflkVfloWflwWf10Xf18Yf2AYgGIZgGQagGUagGcbgGgcgWocgWsdgW0dgW4egXAfgXIfgXMggXUhgXYhgXgigXkignsjgnwjgn4kgoAlgoElgYMmgYQmgYYngYgngYkogYspgYwpgY4qgZAqgZErgZMrgJQsgJYsgJgtgJktgJsuf5wuf54vf6Avf6EwfqMwfqUxfqYxfagyfaozfaszfK00fK40e7A1e7I1e7M2erU2erc3ebg3ebo4eLw5eL05d786d8A6dsI7dcQ8dcU8dMc9c8g+c8o+csw/cc1Acc9AcNBBb9JCb9NDbtVEbdZFbNhFbNlGa9tHatxIad5JaN9KaOBMZ+JNZuNOZeRPZOVQZOdSY+hTYulUYupWYetXYOxYYO1aX+5bXu9dXvBfXvFgXfJiXfJkXPNlXPRnXPRpXPVrXPZsXPZuXPdwXPdyXPh0XPh2XPl4Xfl5Xfl7Xfp9Xvp/XvqBX/uDX/uFYPuHYfyJYfyKYvyMY/yOZPyQZf2SZv2UZ/2WaP2Yaf2aav2ba/6dbP6fbf6hbv6jb/6lcf6ncv6pc/6qdP6sdv6ud/6weP6yev60e/62fP63fv65f/67gf69gv6/hP7Bhf7Ch/7EiP7Giv7IjP7Kjf7Mj/7NkP7Pkv7RlP7Tlf7Vl/7Xmf7Ymv3anP3cnv3eoP3gof3io/3jpf3lp/3nqf3pqv3rrPzsrvzusPzwsvzytPz0tvz2uPz3ufz5u/z7vfz9v2XLYBfYljPoAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAABAEABQEBBgEBCAIBCQICCwICDQMDDwMDEgQEFAUEFgYFGAYFGgcGHAgHHgkHIAoIIgsJJAwJJg0KKQ4LKxALLREMLxINMRMNNBQONhUOOBYPOxgPPRkQPxoQQhwQRB0RRx4RSSARSyERTiIRUCQSUyUSVScSWCkRWioRXCwRXy0RYS8RYzERZTMQZzQQaTYQazgQbDkPbjsPcD0PcT8PckAPdEIPdUQPdkUQd0cQeEkQeEoQeUwRek4Re08Se1ESfFITfFQTfVYUfVcVflkVfloWflwWf10Xf18Yf2AYgGIZgGQagGUagGcbgGgcgWocgWsdgW0dgW4egXAfgXIfgXMggXUhgXYhgXgigXkignsjgnwjgn4kgoAlgoElgYMmgYQmgYYngYgngYkogYspgYwpgY4qgZAqgZErgZMrgJQsgJYsgJgtgJktgJsuf5wuf54vf6Avf6EwfqMwfqUxfqYxfagyfaozfaszfK00fK40e7A1e7I1e7M2erU2erc3ebg3ebo4eLw5eL05d786d8A6dsI7dcQ8dcU8dMc9c8g+c8o+csw/cc1Acc9AcNBBb9JCb9NDbtVEbdZFbNhFbNlGa9tHatxIad5JaN9KaOBMZ+JNZuNOZeRPZOVQZOdSY+hTYulUYupWYetXYOxYYO1aX+5bXu9dXvBfXvFgXfJiXfJkXPNlXPRnXPRpXPVrXPZsXPZuXPdwXPdyXPh0XPh2XPl4Xfl5Xfl7Xfp9Xvp/XvqBX/uDX/uFYPuHYfyJYfyKYvyMY/yOZPyQZf2SZv2UZ/2WaP2Yaf2aav2ba/6dbP6fbf6hbv6jb/6lcf6ncv6pc/6qdP6sdv6ud/6weP6yev60e/62fP63fv65f/67gf69gv6/hP7Bhf7Ch/7EiP7Giv7IjP7Kjf7Mj/7NkP7Pkv7RlP7Tlf7Vl/7Xmf7Ymv3anP3cnv3eoP3gof3io/3jpf3lp/3nqf3pqv3rrPzsrvzusPzwsvzytPz0tvz2uPz3ufz5u/z7vfz9v2XLYBfYljPoAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAABAEABQEBBgEBCAIBCQICCwICDQMDDwMDEgQEFAUEFgYFGAYFGgcGHAgHHgkHIAoIIgsJJAwJJg0KKQ4LKxALLREMLxINMRMNNBQONhUOOBYPOxgPPRkQPxoQQhwQRB0RRx4RSSARSyERTiIRUCQSUyUSVScSWCkRWioRXCwRXy0RYS8RYzERZTMQZzQQaTYQazgQbDkPbjsPcD0PcT8PckAPdEIPdUQPdkUQd0cQeEkQeEoQeUwRek4Re08Se1ESfFITfFQTfVYUfVcVflkVfloWflwWf10Xf18Yf2AYgGIZgGQagGUagGcbgGgcgWocgWsdgW0dgW4egXAfgXIfgXMggXUhgXYhgXgigXkignsjgnwjgn4kgoAlgoElgYMmgYQmgYYngYgngYkogYspgYwpgY4qgZAqgZErgZMrgJQsgJYsgJgtgJktgJsuf5wuf54vf6Avf6EwfqMwfqUxfqYxfagyfaozfaszfK00fK40e7A1e7I1e7M2erU2erc3ebg3ebo4eLw5eL05d786d8A6dsI7dcQ8dcU8dMc9c8g+c8o+csw/cc1Acc9AcNBBb9JCb9NDbtVEbdZFbNhFbNlGa9tHatxIad5JaN9KaOBMZ+JNZuNOZeRPZOVQZOdSY+hTYulUYupWYetXYOxYYO1aX+5bXu9dXvBfXvFgXfJiXfJkXPNlXPRnXPRpXPVrXPZsXPZuXPdwXPdyXPh0XPh2XPl4Xfl5Xfl7Xfp9Xvp/XvqBX/uDX/uFYPuHYfyJYfyKYvyMY/yOZPyQZf2SZv2UZ/2WaP2Yaf2aav2ba/6dbP6fbf6hbv6jb/6lcf6ncv6pc/6qdP6sdv6ud/6weP6yev60e/62fP63fv65f/67gf69gv6/hP7Bhf7Ch/7EiP7Giv7IjP7Kjf7Mj/7NkP7Pkv7RlP7Tlf7Vl/7Xmf7Ymv3anP3cnv3eoP3gof3io/3jpf3lp/3nqf3pqv3rrPzsrvzusPzwsvzytPz0tvz2uPz3ufz5u/z7vfz9v2XLYBfYljPoAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAABAEABQEBBgEBCAIBCQICCwICDQMDDwMDEgQEFAUEFgYFGAYFGgcGHAgHHgkHIAoIIgsJJAwJJg0KKQ4LKxALLREMLxINMRMNNBQONhUOOBYPOxgPPRkQPxoQQhwQRB0RRx4RSSARSyERTiIRUCQSUyUSVScSWCkRWioRXCwRXy0RYS8RYzERZTMQZzQQaTYQazgQbDkPbjsPcD0PcT8PckAPdEIPdUQPdkUQd0cQeEkQeEoQeUwRek4Re08Se1ESfFITfFQTfVYUfVcVflkVfloWflwWf10Xf18Yf2AYgGIZgGQagGUagGcbgGgcgWocgWsdgW0dgW4egXAfgXIfgXMggXUhgXYhgXgigXkignsjgnwjgn4kgoAlgoElgYMmgYQmgYYngYgngYkogYspgYwpgY4qgZAqgZErgZMrgJQsgJYsgJgtgJktgJsuf5wuf54vf6Avf6EwfqMwfqUxfqYxfagyfaozfaszfK00fK40e7A1e7I1e7M2erU2erc3ebg3ebo4eLw5eL05d786d8A6dsI7dcQ8dcU8dMc9c8g+c8o+csw/cc1Acc9AcNBBb9JCb9NDbtVEbdZFbNhFbNlGa9tHatxIad5JaN9KaOBMZ+JNZuNOZeRPZOVQZOdSY+hTYulUYupWYetXYOxYYO1aX+5bXu9dXvBfXvFgXfJiXfJkXPNlXPRnXPRpXPVrXPZsXPZuXPdwXPdyXPh0XPh2XPl4Xfl5Xfl7Xfp9Xvp/XvqBX/uDX/uFYPuHYfyJYfyKYvyMY/yOZPyQZf2SZv2UZ/2WaP2Yaf2aav2ba/6dbP6fbf6hbv6jb/6lcf6ncv6pc/6qdP6sdv6ud/6weP6yev60e/62fP63fv65f/67gf69gv6/hP7Bhf7Ch/7EiP7Giv7IjP7Kjf7Mj/7NkP7Pkv7RlP7Tlf7Vl/7Xmf7Ymv3anP3cnv3eoP3gof3io/3jpf3lp/3nqf3pqv3rrPzsrvzusPzwsvzytPz0tvz2uPz3ufz5u/z7vfz9v2XLYBfYljPoAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAABAEABQEBBgEBCAIBCQICCwICDQMDDwMDEgQEFAUEFgYFGAYFGgcGHAgHHgkHIAoIIgsJJAwJJg0KKQ4LKxALLREMLxINMRMNNBQONhUOOBYPOxgPPRkQPxoQQhwQRB0RRx4RSSARSyERTiIRUCQSUyUSVScSWCkRWioRXCwRXy0RYS8RYzERZTMQZzQQaTYQazgQbDkPbjsPcD0PcT8PckAPdEIPdUQPdkUQd0cQeEkQeEoQeUwRek4Re08Se1ESfFITfFQTfVYUfVcVflkVfloWflwWf10Xf18Yf2AYgGIZgGQagGUagGcbgGgcgWocgWsdgW0dgW4egXAfgXIfgXMggXUhgXYhgXgigXkignsjgnwjgn4kgoAlgoElgYMmgYQmgYYngYgngYkogYspgYwpgY4qgZAqgZErgZMrgJQsgJYsgJgtgJktgJsuf5wuf54vf6Avf6EwfqMwfqUxfqYxfagyfaozfaszfK00fK40e7A1e7I1e7M2erU2erc3ebg3ebo4eLw5eL05d786d8A6dsI7dcQ8dcU8dMc9c8g+c8o+csw/cc1Acc9AcNBBb9JCb9NDbtVEbdZFbNhFbNlGa9tHatxIad5JaN9KaOBMZ+JNZuNOZeRPZOVQZOdSY+hTYulUYupWYetXYOxYYO1aX+5bXu9dXvBfXvFgXfJiXfJkXPNlXPRnXPRpXPVrXPZsXPZuXPdwXPdyXPh0XPh2XPl4Xfl5Xfl7Xfp9Xvp/XvqBX/uDX/uFYPuHYfyJYfyKYvyMY/yOZPyQZf2SZv2UZ/2WaP2Yaf2aav2ba/6dbP6fbf6hbv6jb/6lcf6ncv6pc/6qdP6sdv6ud/6weP6yev60e/62fP63fv65f/67gf69gv6/hP7Bhf7Ch/7EiP7Giv7IjP7Kjf7Mj/7NkP7Pkv7RlP7Tlf7Vl/7Xmf7Ymv3anP3cnv3eoP3gof3io/3jpf3lp/3nqf3pqv3rrPzsrvzusPzwsvzytPz0tvz2uPz3ufz5u/z7vfz9v2XLYBfYljPoAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAABAEABQEBBgEBCAIBCQICCwICDQMDDwMDEgQEFAUEFgYFGAYFGgcGHAgHHgkHIAoIIgsJJAwJJg0KKQ4LKxALLREMLxINMRMNNBQONhUOOBYPOxgPPRkQPxoQQhwQRB0RRx4RSSARSyERTiIRUCQSUyUSVScSWCkRWioRXCwRXy0RYS8RYzERZTMQZzQQaTYQazgQbDkPbjsPcD0PcT8PckAPdEIPdUQPdkUQd0cQeEkQeEoQeUwRek4Re08Se1ESfFITfFQTfVYUfVcVflkVfloWflwWf10Xf18Yf2AYgGIZgGQagGUagGcbgGgcgWocgWsdgW0dgW4egXAfgXIfgXMggXUhgXYhgXgigXkignsjgnwjgn4kgoAlgoElgYMmgYQmgYYngYgngYkogYspgYwpgY4qgZAqgZErgZMrgJQsgJYsgJgtgJktgJsuf5wuf54vf6Avf6EwfqMwfqUxfqYxfagyfaozfaszfK00fK40e7A1e7I1e7M2erU2erc3ebg3ebo4eLw5eL05d786d8A6dsI7dcQ8dcU8dMc9c8g+c8o+csw/cc1Acc9AcNBBb9JCb9NDbtVEbdZFbNhFbNlGa9tHatxIad5JaN9KaOBMZ+JNZuNOZeRPZOVQZOdSY+hTYulUYupWYetXYOxYYO1aX+5bXu9dXvBfXvFgXfJiXfJkXPNlXPRnXPRpXPVrXPZsXPZuXPdwXPdyXPh0XPh2XPl4Xfl5Xfl7Xfp9Xvp/XvqBX/uDX/uFYPuHYfyJYfyKYvyMY/yOZPyQZf2SZv2UZ/2WaP2Yaf2aav2ba/6dbP6fbf6hbv6jb/6lcf6ncv6pc/6qdP6sdv6ud/6weP6yev60e/62fP63fv65f/67gf69gv6/hP7Bhf7Ch/7EiP7Giv7IjP7Kjf7Mj/7NkP7Pkv7RlP7Tlf7Vl/7Xmf7Ymv3anP3cnv3eoP3gof3io/3jpf3lp/3nqf3pqv3rrPzsrvzusPzwsvzytPz0tvz2uPz3ufz5u/z7vfz9v2XLYBfYljPoAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAABAEABQEBBgEBCAIBCQICCwICDQMDDwMDEgQEFAUEFgYFGAYFGgcGHAgHHgkHIAoIIgsJJAwJJg0KKQ4LKxALLREMLxINMRMNNBQONhUOOBYPOxgPPRkQPxoQQhwQRB0RRx4RSSARSyERTiIRUCQSUyUSVScSWCkRWioRXCwRXy0RYS8RYzERZTMQZzQQaTYQazgQbDkPbjsPcD0PcT8PckAPdEIPdUQPdkUQd0cQeEkQeEoQeUwRek4Re08Se1ESfFITfFQTfVYUfVcVflkVfloWflwWf10Xf18Yf2AYgGIZgGQagGUagGcbgGgcgWocgWsdgW0dgW4egXAfgXIfgXMggXUhgXYhgXgigXkignsjgnwjgn4kgoAlgoElgYMmgYQmgYYngYgngYkogYspgYwpgY4qgZAqgZErgZMrgJQsgJYsgJgtgJktgJsuf5wuf54vf6Avf6EwfqMwfqUxfqYxfagyfaozfaszfK00fK40e7A1e7I1e7M2erU2erc3ebg3ebo4eLw5eL05d786d8A6dsI7dcQ8dcU8dMc9c8g+c8o+csw/cc1Acc9AcNBBb9JCb9NDbtVEbdZFbNhFbNlGa9tHatxIad5JaN9KaOBMZ+JNZuNOZeRPZOVQZOdSY+hTYulUYupWYetXYOxYYO1aX+5bXu9dXvBfXvFgXfJiXfJkXPNlXPRnXPRpXPVrXPZsXPZuXPdwXPdyXPh0XPh2XPl4Xfl5Xfl7Xfp9Xvp/XvqBX/uDX/uFYPuHYfyJYfyKYvyMY/yOZPyQZf2SZv2UZ/2WaP2Yaf2aav2ba/6dbP6fbf6hbv6jb/6lcf6ncv6pc/6qdP6sdv6ud/6weP6yev60e/62fP63fv65f/67gf69gv6/hP7Bhf7Ch/7EiP7Giv7IjP7Kjf7Mj/7NkP7Pkv7RlP7Tlf7Vl/7Xmf7Ymv3anP3cnv3eoP3gof3io/3jpf3lp/3nqf3pqv3rrPzsrvzusPzwsvzytPz0tvz2uPz3ufz5u/z7vfz9v2XLYBfYljPoAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAABAEABQEBBgEBCAIBCQICCwICDQMDDwMDEgQEFAUEFgYFGAYFGgcGHAgHHgkHIAoIIgsJJAwJJg0KKQ4LKxALLREMLxINMRMNNBQONhUOOBYPOxgPPRkQPxoQQhwQRB0RRx4RSSARSyERTiIRUCQSUyUSVScSWCkRWioRXCwRXy0RYS8RYzERZTMQZzQQaTYQazgQbDkPbjsPcD0PcT8PckAPdEIPdUQPdkUQd0cQeEkQeEoQeUwRek4Re08Se1ESfFITfFQTfVYUfVcVflkVfloWflwWf10Xf18Yf2AYgGIZgGQagGUagGcbgGgcgWocgWsdgW0dgW4egXAfgXIfgXMggXUhgXYhgXgigXkignsjgnwjgn4kgoAlgoElgYMmgYQmgYYngYgngYkogYspgYwpgY4qgZAqgZErgZMrgJQsgJYsgJgtgJktgJsuf5wuf54vf6Avf6EwfqMwfqUxfqYxfagyfaozfaszfK00fK40e7A1e7I1e7M2erU2erc3ebg3ebo4eLw5eL05d786d8A6dsI7dcQ8dcU8dMc9c8g+c8o+csw/cc1Acc9AcNBBb9JCb9NDbtVEbdZFbNhFbNlGa9tHatxIad5JaN9KaOBMZ+JNZuNOZeRPZOVQZOdSY+hTYulUYupWYetXYOxYYO1aX+5bXu9dXvBfXvFgXfJiXfJkXPNlXPRnXPRpXPVrXPZsXPZuXPdwXPdyXPh0XPh2XPl4Xfl5Xfl7Xfp9Xvp/XvqBX/uDX/uFYPuHYfyJYfyKYvyMY/yOZPyQZf2SZv2UZ/2WaP2Yaf2aav2ba/6dbP6fbf6hbv6jb/6lcf6ncv6pc/6qdP6sdv6ud/6weP6yev60e/62fP63fv65f/67gf69gv6/hP7Bhf7Ch/7EiP7Giv7IjP7Kjf7Mj/7NkP7Pkv7RlP7Tlf7Vl/7Xmf7Ymv3anP3cnv3eoP3gof3io/3jpf3lp/3nqf3pqv3rrPzsrvzusPzwsvzytPz0tvz2uPz3ufz5u/z7vfz9v2XLYBfYljPoAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AAAABAEABQEBBgEBCAIBCQICCwICDQMDDwMDEgQEFAUEFgYFGAYFGgcGHAgHHgkHIAoIIgsJJAwJJg0KKQ4LKxALLREMLxINMRMNNBQONhUOOBYPOxgPPRkQPxoQQhwQRB0RRx4RSSARSyERTiIRUCQSUyUSVScSWCkRWioRXCwRXy0RYS8RYzERZTMQZzQQaTYQazgQbDkPbjsPcD0PcT8PckAPdEIPdUQPdkUQd0cQeEkQeEoQeUwRek4Re08Se1ESfFITfFQTfVYUfVcVflkVfloWflwWf10Xf18Yf2AYgGIZgGQagGUagGcbgGgcgWocgWsdgW0dgW4egXAfgXIfgXMggXUhgXYhgXgigXkignsjgnwjgn4kgoAlgoElgYMmgYQmgYYngYgngYkogYspgYwpgY4qgZAqgZErgZMrgJQsgJYsgJgtgJktgJsuf5wuf54vf6Avf6EwfqMwfqUxfqYxfagyfaozfaszfK00fK40e7A1e7I1e7M2erU2erc3ebg3ebo4eLw5eL05d786d8A6dsI7dcQ8dcU8dMc9c8g+c8o+csw/cc1Acc9AcNBBb9JCb9NDbtVEbdZFbNhFbNlGa9tHatxIad5JaN9KaOBMZ+JNZuNOZeRPZOVQZOdSY+hTYulUYupWYetXYOxYYO1aX+5bXu9dXvBfXvFgXfJiXfJkXPNlXPRnXPRpXPVrXPZsXPZuXPdwXPdyXPh0XPh2XPl4Xfl5Xfl7Xfp9Xvp/XvqBX/uDX/uFYPuHYfyJYfyKYvyMY/yOZPyQZf2SZv2UZ/2WaP2Yaf2aav2ba/6dbP6fbf6hbv6jb/6lcf6ncv6pc/6qdP6sdv6ud/6weP6yev60e/62fP63fv65f/67gf69gv6/hP7Bhf7Ch/7EiP7Giv7IjP7Kjf7Mj/7NkP7Pkv7RlP7Tlf7Vl/7Xmf7Ymv3anP3cnv3eoP3gof3io/3jpf3lp/3nqf3pqv3rrPzsrvzusPzwsvzytPz0tvz2uPz3ufz5u/z7vfz9v2XLYBfYljPoAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="scale(0.5)"><path d="M-3,0 C-3,0 -3,0 -3,0" /></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="scale(0.5)"><path d="M-3,0 C-3,0.73638 -2.734687,1.410792 -2.294438,1.932862" /></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="scale(0.5)"><path d="M-3,0 C-3,1.472759 -1.938749,2.69765 -0.539254,2.951666" /></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="scale(0.5)"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C0.552285,3 1.069713,2.850762 1.514157,2.590412" /></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="scale(0.5)"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.288664,3 2.387555,2.18748 2.812312,1.046797" /></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="scale(0.5)"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-0.36819 2.933672,-0.720888 2.812312,-1.046797" /></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="scale(0.5)"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.104569 2.403046,-2.069713 1.514157,-2.590412" /></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="scale(0.5)"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.184095,-3 -0.364317,-2.983418 -0.539254,-2.951666" /></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="scale(0.5)"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.920475,-3 -1.744126,-2.585449 -2.294438,-1.932862" /></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="scale(0.5)"><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="scale(2)"><g stroke-width="0.05" transform="scale(1, -1)" text-anchor="middle"><text font-size="2"></text></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="scale(2)"><g stroke-width="0.05" transform="scale(1, -1)" text-anchor="middle"><text font-size="2">te</text></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="scale(2)"><g stroke-width="0.05" transform="scale(1, -1)" text-anchor="middle"><text font-size="2">tex</text></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="scale(2)"><g stroke-width="0.05" transform="scale(1, -1)" text-anchor="middle"><text font-size="2">text</text></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="scale(2)"><g stroke-width="0.05" transform="scale(1, -1)" text-anchor="middle"><text font-size="2">text</text></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="scale(2)"><g stroke-width="0.05" transform="scale(1, -1)" text-anchor="middle"><text font-size="2">text</text></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="scale(2)"><g stroke-width="0.05" transform="scale(1, -1)" text-anchor="middle"><text font-size="2">text</text></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="scale(2)"><g stroke-width="0.05" transform="scale(1, -1)" text-anchor="middle"><text font-size="2">text</text></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="scale(2)"><g stroke-width="0.05" transform="scale(1, -1)" text-anchor="middle"><text font-size="2">text</text></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="scale(2)"><g stroke-width="0.05" transform="scale(1, -1)" text-anchor="middle"><text font-size="2">text</text></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><circle /></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><circle r="0.222222" /></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><circle r="0.444444" /></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><circle r="0.666667" /></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><circle r="0.888889" /></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><circle r="1.111111" /></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><circle r="1.333333" /></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><circle r="1.555556" /></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><circle r="1.777778" /></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><circle r="2" /></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,0 -3,0 -3,0" /><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L0,0" /></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,1.472759 -1.938749,2.69765 -0.539254,2.951666" /><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L5.555556,0" /></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.288664,3 2.387555,2.18748 2.812312,1.046797" /><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,3.111111" /></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.104569 2.403046,-2.069713 1.514157,-2.590412" /><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L3.833333,4.5" /></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.920475,-3 -1.744126,-2.585449 -2.294438,-1.932862" /><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L0,4.5 L0,2.777778" /></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L0,4.5 L0,2.777778" /></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L3.833333,4.5" /></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,3.111111" /></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L5.555556,0" /></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L0,0" /></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,0 -3,0 -3,0" /><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L0,0" /></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,0.73638 -2.734687,1.410792 -2.294438,1.932862" /><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L5.555556,0" /></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,1.472759 -1.938749,2.69765 -0.539254,2.951666" /><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,3.111111" /></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C0.552285,3 1.069713,2.850762 1.514157,2.590412" /><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L3.833333,4.5" /></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.288664,3 2.387555,2.18748 2.812312,1.046797" /><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L0,4.5 L0,2.777778" /></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-0.36819 2.933672,-0.720888 2.812312,-1.046797" /><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L0,4.5 L0,2.777778" /></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.104569 2.403046,-2.069713 1.514157,-2.590412" /><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L3.833333,4.5" /></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.184095,-3 -0.364317,-2.983418 -0.539254,-2.951666" /><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,3.111111" /></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.920475,-3 -1.744126,-2.585449 -2.294438,-1.932862" /><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L5.555556,0" /></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L0,0" /></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g stroke-width="0" fill="#ADD8E6" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><path d="M-3,0 C-3,0 -3,0 -3,0" /></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g stroke-width="0" fill="#ADD8E6" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><path d="M-3,0 C-3,0.73638 -2.734687,1.410792 -2.294438,1.932862" /></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g stroke-width="0" fill="#ADD8E6" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><path d="M-3,0 C-3,1.472759 -1.938749,2.69765 -0.539254,2.951666" /></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g stroke-width="0" fill="#ADD8E6" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C0.552285,3 1.069713,2.850762 1.514157,2.590412" /></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g stroke-width="0" fill="#ADD8E6" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.288664,3 2.387555,2.18748 2.812312,1.046797" /></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g stroke-width="0" fill="#ADD8E6" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-0.36819 2.933672,-0.720888 2.812312,-1.046797" /></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g stroke-width="0" fill="#ADD8E6" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.104569 2.403046,-2.069713 1.514157,-2.590412" /></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g stroke-width="0" fill="#ADD8E6" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.184095,-3 -0.364317,-2.983418 -0.539254,-2.951666" /></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g stroke-width="0" fill="#ADD8E6" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.920475,-3 -1.744126,-2.585449 -2.294438,-1.932862" /></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g stroke-width="0" fill="#ADD8E6" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-3.555556, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-0.711111, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(2.133333, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(4.977778, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(4.977778, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(2.133333, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-0.711111, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-3.555556, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L0,0" /></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L4.861111,0" /></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,1.722222" /></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L5.916667,4.5" /></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)" opacity="0.888889"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L1.055556,4.5" /></g><path opacity="0.111111" d="M-3,0 C-3,0.184095 -2.983418,0.364317 -2.951666,0.539254" /></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)" opacity="0.111111"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L0,4.5 L0,0.694444" /></g><path opacity="0.888889" d="M-3,0 C-3,1.472759 -1.938749,2.69765 -0.539254,2.951666" /></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.104569,3 2.069713,2.403046 2.590412,1.514157" /></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-0.73638 2.734687,-1.410792 2.294438,-1.932862" /></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.36819,-3 -0.720888,-2.933672 -1.046797,-2.812312" /></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L0,0" /></g><path d="M-3,0 C-3,0 -3,0 -3,0" /></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L5.555556,0" /></g><path d="M-3,0 C-3,0.73638 -2.734687,1.410792 -2.294438,1.932862" /></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,3.111111" /></g><path d="M-3,0 C-3,1.472759 -1.938749,2.69765 -0.539254,2.951666" /></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L3.833333,4.5" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C0.552285,3 1.069713,2.850762 1.514157,2.590412" /></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L0,4.5 L0,2.777778" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.288664,3 2.387555,2.18748 2.812312,1.046797" /></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 h8 v4.5 h-8 Z" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-0.36819 2.933672,-0.720888 2.812312,-1.046797" /></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 h8 v4.5 h-8 Z" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.104569 2.403046,-2.069713 1.514157,-2.590412" /></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 h8 v4.5 h-8 Z" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.184095,-3 -0.364317,-2.983418 -0.539254,-2.951666" /></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 h8 v4.5 h-8 Z" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.920475,-3 -1.744126,-2.585449 -2.294438,-1.932862" /></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 h8 v4.5 h-8 Z" /></g><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L0,0" /></g><path d="M-3,0 C-3,0 -3,0 -3,0" /></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L5.555556,0" /></g><path d="M-3,0 C-3,0.73638 -2.734687,1.410792 -2.294438,1.932862" /></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,3.111111" /></g><path d="M-3,0 C-3,1.472759 -1.938749,2.69765 -0.539254,2.951666" /></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L3.833333,4.5" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C0.552285,3 1.069713,2.850762 1.514157,2.590412" /></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L0,4.5 L0,2.777778" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.288664,3 2.387555,2.18748 2.812312,1.046797" /></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-0.36819 2.933672,-0.720888 2.812312,-1.046797" /></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.104569 2.403046,-2.069713 1.514157,-2.590412" /></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.184095,-3 -0.364317,-2.983418 -0.539254,-2.951666" /></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.920475,-3 -1.744126,-2.585449 -2.294438,-1.932862" /></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L0,0" /></g><path d="M-3,0 C-3,0 -3,0 -3,0" /></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L5.555556,0" /></g><path d="M-3,0 C-3,0.73638 -2.734687,1.410792 -2.294438,1.932862" /></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,3.111111" /></g><path d="M-3,0 C-3,1.472759 -1.938749,2.69765 -0.539254,2.951666" /></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L3.833333,4.5" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C0.552285,3 1.069713,2.850762 1.514157,2.590412" /></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L0,4.5 L0,2.777778" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.288664,3 2.387555,2.18748 2.812312,1.046797" /></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L2.777778,0" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-0.36819 2.933672,-0.720888 2.812312,-1.046797" /></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,0.333333" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.104569 2.403046,-2.069713 1.514157,-2.590412" /></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L6.611111,4.5" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.184095,-3 -0.364317,-2.983418 -0.539254,-2.951666" /></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L1.055556,4.5" /></g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.920475,-3 -1.744126,-2.585449 -2.294438,-1.932862" /></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L0,0" /></g><path d="M-3,0 C-3,0 -3,0 -3,0" /></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78ADUqhzUsijYtjTYvkDYwkzYyljYzmTY1nDY2oDY4ozY5pjY7qTU9rDU+rzRAszNBtjJDuTFFvDBGvy5IwyxKxipMySdOzCRQ0CFS0x1U1hlX2RVZ2xBb3Qxd3ghf4AVh4ANi4QJk4QJl4QFm4QFo4QJp4QJq4QNr4QRs4AVt4AZu3wdv3whw3wlx3gpy3gtz3Qx03Q113A523A932xB42hB52hF62RJ72RJ82BN92BN+1xN/1xSA1hSB1hSC1RSD1RSE1BSF1BSG0xSH0xOI0xOJ0xKK0hKM0hGN0hCO0g+P0g6R0g2S0gyT0guV0gqW0gmX0QmY0QiZ0Qia0Aeb0AeczwedzwaezgafzgagzQahzAaiywajywakygakyQalyAamxwanxganxQaoxAapwwepwgeqwQirwAmrvwqsvgusvQytvA2uug+uuRCvuBKvtxOwthWwtBexsxiyshqysRyzrx6zriC0rSK0qyS1qia1qSi2pyu2pi23pS+3ozG4ojS4oDa5nzm5nTu6nD66mkC6mUO7l0a7lkm8lEu8k068kVG9kFS9jle9jVq9i12+imC+iGO+h2a+hWm+hGy/g2+/gXG/gHS/f3e/fnq/fH2/e4C/eoK/eYW/eIi/d4q/do2/dY+/dJK/cpS/cpe/cZm/cJy/b56+bqC+baO+bKW+a6e+aqq+aay+aK6+Z7C9ZrO9ZbW9Zbe9ZLm9Y7u9Yr28YcC8YMK8X8S8X8a8Xsi8Xcq7XMy7W867WtC7WdK7WdS7WNa6V9i6Vtq6Vdy6VN66U+C6UuK5UeS5UOa5T+i5Tuq5Tey5TO65S/C5SvK5SfS5SPa6Rvi6Rfm7Q/u8Qvy8QP29Pv6/Pf7AO//BOf/COP/EN//FNf7GNP7IM/7JMv3KMf3MMPzNLvzOLfvPLPvRK/rSKvnTKfnVKPjWJ/jXJvfZJffaJPbbI/bdIvXeIfXgIPXhH/XjHvTkHfTmHPToGvXpGfXrGPXtF/XvFvbxFPbzE/f1Evj3Efj5D/n7DgVgme6hHgXOAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78ADUqhzUsijYtjTYvkDYwkzYyljYzmTY1nDY2oDY4ozY5pjY7qTU9rDU+rzRAszNBtjJDuTFFvDBGvy5IwyxKxipMySdOzCRQ0CFS0x1U1hlX2RVZ2xBb3Qxd3ghf4AVh4ANi4QJk4QJl4QFm4QFo4QJp4QJq4QNr4QRs4AVt4AZu3wdv3whw3wlx3gpy3gtz3Qx03Q113A523A932xB42hB52hF62RJ72RJ82BN92BN+1xN/1xSA1hSB1hSC1RSD1RSE1BSF1BSG0xSH0xOI0xOJ0xKK0hKM0hGN0hCO0g+P0g6R0g2S0gyT0guV0gqW0gmX0QmY0QiZ0Qia0Aeb0AeczwedzwaezgafzgagzQahzAaiywajywakygakyQalyAamxwanxganxQaoxAapwwepwgeqwQirwAmrvwqsvgusvQytvA2uug+uuRCvuBKvtxOwthWwtBexsxiyshqysRyzrx6zriC0rSK0qyS1qia1qSi2pyu2pi23pS+3ozG4ojS4oDa5nzm5nTu6nD66mkC6mUO7l0a7lkm8lEu8k068kVG9kFS9jle9jVq9i12+imC+iGO+h2a+hWm+hGy/g2+/gXG/gHS/f3e/fnq/fH2/e4C/eoK/eYW/eIi/d4q/do2/dY+/dJK/cpS/cpe/cZm/cJy/b56+bqC+baO+bKW+a6e+aqq+aay+aK6+Z7C9ZrO9ZbW9Zbe9ZLm9Y7u9Yr28YcC8YMK8X8S8X8a8Xsi8Xcq7XMy7W867WtC7WdK7WdS7WNa6V9i6Vtq6Vdy6VN66U+C6UuK5UeS5UOa5T+i5Tuq5Tey5TO65S/C5SvK5SfS5SPa6Rvi6Rfm7Q/u8Qvy8QP29Pv6/Pf7AO//BOf/COP/EN//FNf7GNP7IM/7JMv3KMf3MMPzNLvzOLfvPLPvRK/rSKvnTKfnVKPjWJ/jXJvfZJffaJPbbI/bdIvXeIfXgIPXhH/XjHvTkHfTmHPToGvXpGfXrGPXtF/XvFvbxFPbzE/f1Evj3Efj5D/n7DgVgme6hHgXOAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78ADUqhzUsijYtjTYvkDYwkzYyljYzmTY1nDY2oDY4ozY5pjY7qTU9rDU+rzRAszNBtjJDuTFFvDBGvy5IwyxKxipMySdOzCRQ0CFS0x1U1hlX2RVZ2xBb3Qxd3ghf4AVh4ANi4QJk4QJl4QFm4QFo4QJp4QJq4QNr4QRs4AVt4AZu3wdv3whw3wlx3gpy3gtz3Qx03Q113A523A932xB42hB52hF62RJ72RJ82BN92BN+1xN/1xSA1hSB1hSC1RSD1RSE1BSF1BSG0xSH0xOI0xOJ0xKK0hKM0hGN0hCO0g+P0g6R0g2S0gyT0guV0gqW0gmX0QmY0QiZ0Qia0Aeb0AeczwedzwaezgafzgagzQahzAaiywajywakygakyQalyAamxwanxganxQaoxAapwwepwgeqwQirwAmrvwqsvgusvQytvA2uug+uuRCvuBKvtxOwthWwtBexsxiyshqysRyzrx6zriC0rSK0qyS1qia1qSi2pyu2pi23pS+3ozG4ojS4oDa5nzm5nTu6nD66mkC6mUO7l0a7lkm8lEu8k068kVG9kFS9jle9jVq9i12+imC+iGO+h2a+hWm+hGy/g2+/gXG/gHS/f3e/fnq/fH2/e4C/eoK/eYW/eIi/d4q/do2/dY+/dJK/cpS/cpe/cZm/cJy/b56+bqC+baO+bKW+a6e+aqq+aay+aK6+Z7C9ZrO9ZbW9Zbe9ZLm9Y7u9Yr28YcC8YMK8X8S8X8a8Xsi8Xcq7XMy7W867WtC7WdK7WdS7WNa6V9i6Vtq6Vdy6VN66U+C6UuK5UeS5UOa5T+i5Tuq5Tey5TO65S/C5SvK5SfS5SPa6Rvi6Rfm7Q/u8Qvy8QP29Pv6/Pf7AO//BOf/COP/EN//FNf7GNP7IM/7JMv3KMf3MMPzNLvzOLfvPLPvRK/rSKvnTKfnVKPjWJ/jXJvfZJffaJPbbI/bdIvXeIfXgIPXhH/XjHvTkHfTmHPToGvXpGfXrGPXtF/XvFvbxFPbzE/f1Evj3Efj5D/n7DgVgme6hHgXOAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78ADUqhzUsijYtjTYvkDYwkzYyljYzmTY1nDY2oDY4ozY5pjY7qTU9rDU+rzRAszNBtjJDuTFFvDBGvy5IwyxKxipMySdOzCRQ0CFS0x1U1hlX2RVZ2xBb3Qxd3ghf4AVh4ANi4QJk4QJl4QFm4QFo4QJp4QJq4QNr4QRs4AVt4AZu3wdv3whw3wlx3gpy3gtz3Qx03Q113A523A932xB42hB52hF62RJ72RJ82BN92BN+1xN/1xSA1hSB1hSC1RSD1RSE1BSF1BSG0xSH0xOI0xOJ0xKK0hKM0hGN0hCO0g+P0g6R0g2S0gyT0guV0gqW0gmX0QmY0QiZ0Qia0Aeb0AeczwedzwaezgafzgagzQahzAaiywajywakygakyQalyAamxwanxganxQaoxAapwwepwgeqwQirwAmrvwqsvgusvQytvA2uug+uuRCvuBKvtxOwthWwtBexsxiyshqysRyzrx6zriC0rSK0qyS1qia1qSi2pyu2pi23pS+3ozG4ojS4oDa5nzm5nTu6nD66mkC6mUO7l0a7lkm8lEu8k068kVG9kFS9jle9jVq9i12+imC+iGO+h2a+hWm+hGy/g2+/gXG/gHS/f3e/fnq/fH2/e4C/eoK/eYW/eIi/d4q/do2/dY+/dJK/cpS/cpe/cZm/cJy/b56+bqC+baO+bKW+a6e+aqq+aay+aK6+Z7C9ZrO9ZbW9Zbe9ZLm9Y7u9Yr28YcC8YMK8X8S8X8a8Xsi8Xcq7XMy7W867WtC7WdK7WdS7WNa6V9i6Vtq6Vdy6VN66U+C6UuK5UeS5UOa5T+i5Tuq5Tey5TO65S/C5SvK5SfS5SPa6Rvi6Rfm7Q/u8Qvy8QP29Pv6/Pf7AO//BOf/COP/EN//FNf7GNP7IM/7JMv3KMf3MMPzNLvzOLfvPLPvRK/rSKvnTKfnVKPjWJ/jXJvfZJffaJPbbI/bdIvXeIfXgIPXhH/XjHvTkHfTmHPToGvXpGfXrGPXtF/XvFvbxFPbzE/f1Evj3Efj5D/n7DgVgme6hHgXOAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78ADUqhzUsijYtjTYvkDYwkzYyljYzmTY1nDY2oDY4ozY5pjY7qTU9rDU+rzRAszNBtjJDuTFFvDBGvy5IwyxKxipMySdOzCRQ0CFS0x1U1hlX2RVZ2xBb3Qxd3ghf4AVh4ANi4QJk4QJl4QFm4QFo4QJp4QJq4QNr4QRs4AVt4AZu3wdv3whw3wlx3gpy3gtz3Qx03Q113A523A932xB42hB52hF62RJ72RJ82BN92BN+1xN/1xSA1hSB1hSC1RSD1RSE1BSF1BSG0xSH0xOI0xOJ0xKK0hKM0hGN0hCO0g+P0g6R0g2S0gyT0guV0gqW0gmX0QmY0QiZ0Qia0Aeb0AeczwedzwaezgafzgagzQahzAaiywajywakygakyQalyAamxwanxganxQaoxAapwwepwgeqwQirwAmrvwqsvgusvQytvA2uug+uuRCvuBKvtxOwthWwtBexsxiyshqysRyzrx6zriC0rSK0qyS1qia1qSi2pyu2pi23pS+3ozG4ojS4oDa5nzm5nTu6nD66mkC6mUO7l0a7lkm8lEu8k068kVG9kFS9jle9jVq9i12+imC+iGO+h2a+hWm+hGy/g2+/gXG/gHS/f3e/fnq/fH2/e4C/eoK/eYW/eIi/d4q/do2/dY+/dJK/cpS/cpe/cZm/cJy/b56+bqC+baO+bKW+a6e+aqq+aay+aK6+Z7C9ZrO9ZbW9Zbe9ZLm9Y7u9Yr28YcC8YMK8X8S8X8a8Xsi8Xcq7XMy7W867WtC7WdK7WdS7WNa6V9i6Vtq6Vdy6VN66U+C6UuK5UeS5UOa5T+i5Tuq5Tey5TO65S/C5SvK5SfS5SPa6Rvi6Rfm7Q/u8Qvy8QP29Pv6/Pf7AO//BOf/COP/EN//FNf7GNP7IM/7JMv3KMf3MMPzNLvzOLfvPLPvRK/rSKvnTKfnVKPjWJ/jXJvfZJffaJPbbI/bdIvXeIfXgIPXhH/XjHvTkHfTmHPToGvXpGfXrGPXtF/XvFvbxFPbzE/f1Evj3Efj5D/n7DgVgme6hHgXOAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78ADUqhzUsijYtjTYvkDYwkzYyljYzmTY1nDY2oDY4ozY5pjY7qTU9rDU+rzRAszNBtjJDuTFFvDBGvy5IwyxKxipMySdOzCRQ0CFS0x1U1hlX2RVZ2xBb3Qxd3ghf4AVh4ANi4QJk4QJl4QFm4QFo4QJp4QJq4QNr4QRs4AVt4AZu3wdv3whw3wlx3gpy3gtz3Qx03Q113A523A932xB42hB52hF62RJ72RJ82BN92BN+1xN/1xSA1hSB1hSC1RSD1RSE1BSF1BSG0xSH0xOI0xOJ0xKK0hKM0hGN0hCO0g+P0g6R0g2S0gyT0guV0gqW0gmX0QmY0QiZ0Qia0Aeb0AeczwedzwaezgafzgagzQahzAaiywajywakygakyQalyAamxwanxganxQaoxAapwwepwgeqwQirwAmrvwqsvgusvQytvA2uug+uuRCvuBKvtxOwthWwtBexsxiyshqysRyzrx6zriC0rSK0qyS1qia1qSi2pyu2pi23pS+3ozG4ojS4oDa5nzm5nTu6nD66mkC6mUO7l0a7lkm8lEu8k068kVG9kFS9jle9jVq9i12+imC+iGO+h2a+hWm+hGy/g2+/gXG/gHS/f3e/fnq/fH2/e4C/eoK/eYW/eIi/d4q/do2/dY+/dJK/cpS/cpe/cZm/cJy/b56+bqC+baO+bKW+a6e+aqq+aay+aK6+Z7C9ZrO9ZbW9Zbe9ZLm9Y7u9Yr28YcC8YMK8X8S8X8a8Xsi8Xcq7XMy7W867WtC7WdK7WdS7WNa6V9i6Vtq6Vdy6VN66U+C6UuK5UeS5UOa5T+i5Tuq5Tey5TO65S/C5SvK5SfS5SPa6Rvi6Rfm7Q/u8Qvy8QP29Pv6/Pf7AO//BOf/COP/EN//FNf7GNP7IM/7JMv3KMf3MMPzNLvzOLfvPLPvRK/rSKvnTKfnVKPjWJ/jXJvfZJffaJPbbI/bdIvXeIfXgIPXhH/XjHvTkHfTmHPToGvXpGfXrGPXtF/XvFvbxFPbzE/f1Evj3Efj5D/n7DgVgme6hHgXOAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78ADUqhzUsijYtjTYvkDYwkzYyljYzmTY1nDY2oDY4ozY5pjY7qTU9rDU+rzRAszNBtjJDuTFFvDBGvy5IwyxKxipMySdOzCRQ0CFS0x1U1hlX2RVZ2xBb3Qxd3ghf4AVh4ANi4QJk4QJl4QFm4QFo4QJp4QJq4QNr4QRs4AVt4AZu3wdv3whw3wlx3gpy3gtz3Qx03Q113A523A932xB42hB52hF62RJ72RJ82BN92BN+1xN/1xSA1hSB1hSC1RSD1RSE1BSF1BSG0xSH0xOI0xOJ0xKK0hKM0hGN0hCO0g+P0g6R0g2S0gyT0guV0gqW0gmX0QmY0QiZ0Qia0Aeb0AeczwedzwaezgafzgagzQahzAaiywajywakygakyQalyAamxwanxganxQaoxAapwwepwgeqwQirwAmrvwqsvgusvQytvA2uug+uuRCvuBKvtxOwthWwtBexsxiyshqysRyzrx6zriC0rSK0qyS1qia1qSi2pyu2pi23pS+3ozG4ojS4oDa5nzm5nTu6nD66mkC6mUO7l0a7lkm8lEu8k068kVG9kFS9jle9jVq9i12+imC+iGO+h2a+hWm+hGy/g2+/gXG/gHS/f3e/fnq/fH2/e4C/eoK/eYW/eIi/d4q/do2/dY+/dJK/cpS/cpe/cZm/cJy/b56+bqC+baO+bKW+a6e+aqq+aay+aK6+Z7C9ZrO9ZbW9Zbe9ZLm9Y7u9Yr28YcC8YMK8X8S8X8a8Xsi8Xcq7XMy7W867WtC7WdK7WdS7WNa6V9i6Vtq6Vdy6VN66U+C6UuK5UeS5UOa5T+i5Tuq5Tey5TO65S/C5SvK5SfS5SPa6Rvi6Rfm7Q/u8Qvy8QP29Pv6/Pf7AO//BOf/COP/EN//FNf7GNP7IM/7JMv3KMf3MMPzNLvzOLfvPLPvRK/rSKvnTKfnVKPjWJ/jXJvfZJffaJPbbI/bdIvXeIfXgIPXhH/XjHvTkHfTmHPToGvXpGfXrGPXtF/XvFvbxFPbzE/f1Evj3Efj5D/n7DgVgme6hHgXOAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78ADUqhzUsijYtjTYvkDYwkzYyljYzmTY1nDY2oDY4ozY5pjY7qTU9rDU+rzRAszNBtjJDuTFFvDBGvy5IwyxKxipMySdOzCRQ0CFS0x1U1hlX2RVZ2xBb3Qxd3ghf4AVh4ANi4QJk4QJl4QFm4QFo4QJp4QJq4QNr4QRs4AVt4AZu3wdv3whw3wlx3gpy3gtz3Qx03Q113A523A932xB42hB52hF62RJ72RJ82BN92BN+1xN/1xSA1hSB1hSC1RSD1RSE1BSF1BSG0xSH0xOI0xOJ0xKK0hKM0hGN0hCO0g+P0g6R0g2S0gyT0guV0gqW0gmX0QmY0QiZ0Qia0Aeb0AeczwedzwaezgafzgagzQahzAaiywajywakygakyQalyAamxwanxganxQaoxAapwwepwgeqwQirwAmrvwqsvgusvQytvA2uug+uuRCvuBKvtxOwthWwtBexsxiyshqysRyzrx6zriC0rSK0qyS1qia1qSi2pyu2pi23pS+3ozG4ojS4oDa5nzm5nTu6nD66mkC6mUO7l0a7lkm8lEu8k068kVG9kFS9jle9jVq9i12+imC+iGO+h2a+hWm+hGy/g2+/gXG/gHS/f3e/fnq/fH2/e4C/eoK/eYW/eIi/d4q/do2/dY+/dJK/cpS/cpe/cZm/cJy/b56+bqC+baO+bKW+a6e+aqq+aay+aK6+Z7C9ZrO9ZbW9Zbe9ZLm9Y7u9Yr28YcC8YMK8X8S8X8a8Xsi8Xcq7XMy7W867WtC7WdK7WdS7WNa6V9i6Vtq6Vdy6VN66U+C6UuK5UeS5UOa5T+i5Tuq5Tey5TO65S/C5SvK5SfS5SPa6Rvi6Rfm7Q/u8Qvy8QP29Pv6/Pf7AO//BOf/COP/EN//FNf7GNP7IM/7JMv3KMf3MMPzNLvzOLfvPLPvRK/rSKvnTKfnVKPjWJ/jXJvfZJffaJPbbI/bdIvXeIfXgIPXhH/XjHvTkHfTmHPToGvXpGfXrGPXtF/XvFvbxFPbzE/f1Evj3Efj5D/n7DgVgme6hHgXOAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78ADUqhzUsijYtjTYvkDYwkzYyljYzmTY1nDY2oDY4ozY5pjY7qTU9rDU+rzRAszNBtjJDuTFFvDBGvy5IwyxKxipMySdOzCRQ0CFS0x1U1hlX2RVZ2xBb3Qxd3ghf4AVh4ANi4QJk4QJl4QFm4QFo4QJp4QJq4QNr4QRs4AVt4AZu3wdv3whw3wlx3gpy3gtz3Qx03Q113A523A932xB42hB52hF62RJ72RJ82BN92BN+1xN/1xSA1hSB1hSC1RSD1RSE1BSF1BSG0xSH0xOI0xOJ0xKK0hKM0hGN0hCO0g+P0g6R0g2S0gyT0guV0gqW0gmX0QmY0QiZ0Qia0Aeb0AeczwedzwaezgafzgagzQahzAaiywajywakygakyQalyAamxwanxganxQaoxAapwwepwgeqwQirwAmrvwqsvgusvQytvA2uug+uuRCvuBKvtxOwthWwtBexsxiyshqysRyzrx6zriC0rSK0qyS1qia1qSi2pyu2pi23pS+3ozG4ojS4oDa5nzm5nTu6nD66mkC6mUO7l0a7lkm8lEu8k068kVG9kFS9jle9jVq9i12+imC+iGO+h2a+hWm+hGy/g2+/gXG/gHS/f3e/fnq/fH2/e4C/eoK/eYW/eIi/d4q/do2/dY+/dJK/cpS/cpe/cZm/cJy/b56+bqC+baO+bKW+a6e+aqq+aay+aK6+Z7C9ZrO9ZbW9Zbe9ZLm9Y7u9Yr28YcC8YMK8X8S8X8a8Xsi8Xcq7XMy7W867WtC7WdK7WdS7WNa6V9i6Vtq6Vdy6VN66U+C6UuK5UeS5UOa5T+i5Tuq5Tey5TO65S/C5SvK5SfS5SPa6Rvi6Rfm7Q/u8Qvy8QP29Pv6/Pf7AO//BOf/COP/EN//FNf7GNP7IM/7JMv3KMf3MMPzNLvzOLfvPLPvRK/rSKvnTKfnVKPjWJ/jXJvfZJffaJPbbI/bdIvXeIfXgIPXhH/XjHvTkHfTmHPToGvXpGfXrGPXtF/XvFvbxFPbzE/f1Evj3Efj5D/n7DgVgme6hHgXOAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78ADUqhzUsijYtjTYvkDYwkzYyljYzmTY1nDY2oDY4ozY5pjY7qTU9rDU+rzRAszNBtjJDuTFFvDBGvy5IwyxKxipMySdOzCRQ0CFS0x1U1hlX2RVZ2xBb3Qxd3ghf4AVh4ANi4QJk4QJl4QFm4QFo4QJp4QJq4QNr4QRs4AVt4AZu3wdv3whw3wlx3gpy3gtz3Qx03Q113A523A932xB42hB52hF62RJ72RJ82BN92BN+1xN/1xSA1hSB1hSC1RSD1RSE1BSF1BSG0xSH0xOI0xOJ0xKK0hKM0hGN0hCO0g+P0g6R0g2S0gyT0guV0gqW0gmX0QmY0QiZ0Qia0Aeb0AeczwedzwaezgafzgagzQahzAaiywajywakygakyQalyAamxwanxganxQaoxAapwwepwgeqwQirwAmrvwqsvgusvQytvA2uug+uuRCvuBKvtxOwthWwtBexsxiyshqysRyzrx6zriC0rSK0qyS1qia1qSi2pyu2pi23pS+3ozG4ojS4oDa5nzm5nTu6nD66mkC6mUO7l0a7lkm8lEu8k068kVG9kFS9jle9jVq9i12+imC+iGO+h2a+hWm+hGy/g2+/gXG/gHS/f3e/fnq/fH2/e4C/eoK/eYW/eIi/d4q/do2/dY+/dJK/cpS/cpe/cZm/cJy/b56+bqC+baO+bKW+a6e+aqq+aay+aK6+Z7C9ZrO9ZbW9Zbe9ZLm9Y7u9Yr28YcC8YMK8X8S8X8a8Xsi8Xcq7XMy7W867WtC7WdK7WdS7WNa6V9i6Vtq6Vdy6VN66U+C6UuK5UeS5UOa5T+i5Tuq5Tey5TO65S/C5SvK5SfS5SPa6Rvi6Rfm7Q/u8Qvy8QP29Pv6/Pf7AO//BOf/COP/EN//FNf7GNP7IM/7JMv3KMf3MMPzNLvzOLfvPLPvRK/rSKvnTKfnVKPjWJ/jXJvfZJffaJPbbI/bdIvXeIfXgIPXhH/XjHvTkHfTmHPToGvXpGfXrGPXtF/XvFvbxFPbzE/f1Evj3Efj5D/n7DgVgme6hHgXOAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, 2.25)"><path d="M-1,0 C-1,0 -1,0 -1,0" /></g><g transform="translate(4, 2.25)"><g transform="translate(-1, -1)"><path stroke-linecap="square" d="M0,0 L0,0" /></g></g><g transform="translate(-4, -2.25)"><path d="M-1,0 C-1,0 -1,0 -1,0" /></g><g transform="translate(4, -2.25)"><path d="M-1,-1 L-1,-1" /></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, 2.25)"><path d="M-1,0 C-1,0.24546 -0.911562,0.470264 -0.764813,0.644287" /></g><g transform="translate(4, 2.25)"><g transform="translate(-1, -1)"><path stroke-linecap="square" d="M0,0 L0.888889,0" /></g></g><g transform="translate(-4, -2.25)"><path d="M-1,0 C-1,0.12273 -0.911562,0.235132 -0.764813,0.322144" /></g><g transform="translate(4, -2.25)"><path d="M-1,-1 L-0.777778,-0.777778" /></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, 2.25)"><path d="M-1,0 C-1,0.49092 -0.64625,0.899217 -0.179751,0.983889" /></g><g transform="translate(4, 2.25)"><g transform="translate(-1, -1)"><path stroke-linecap="square" d="M0,0 L1.777778,0" /></g></g><g transform="translate(-4, -2.25)"><path d="M-1,0 C-1,0.24546 -0.64625,0.449608 -0.179751,0.491944" /></g><g transform="translate(4, -2.25)"><path d="M-1,-1 L-0.555556,-0.555556" /></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, 2.25)"><path d="M-1,0 C-1,0.552285 -0.552285,1 0,1 C0.184095,1 0.356571,0.950254 0.504719,0.863471" /></g><g transform="translate(4, 2.25)"><g transform="translate(-1, -1)"><path stroke-linecap="square" d="M0,0 L2,0 L2,0.666667" /></g></g><g transform="translate(-4, -2.25)"><path d="M-1,0 C-1,0.276142 -0.552285,0.5 0,0.5 C0.184095,0.5 0.356571,0.475127 0.504719,0.431735" /></g><g transform="translate(4, -2.25)"><path d="M-1,-1 L-0.333333,-0.333333" /></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, 2.25)"><path d="M-1,0 C-1,0.552285 -0.552285,1 0,1 C0.429555,1 0.795852,0.72916 0.937437,0.348932" /></g><g transform="translate(4, 2.25)"><g transform="translate(-1, -1)"><path stroke-linecap="square" d="M0,0 L2,0 L2,1.555556" /></g></g><g transform="translate(-4, -2.25)"><path d="M-1,0 C-1,0.276142 -0.552285,0.5 0,0.5 C0.429555,0.5 0.795852,0.36458 0.937437,0.174466" /></g><g transform="translate(4, -2.25)"><path d="M-1,-1 L-0.111111,-0.111111" /></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, 2.25)"><path d="M-1,0 C-1,0.552285 -0.552285,1 0,1 C0.552285,1 1,0.552285 1,0 C1,-0.12273 0.977891,-0.240296 0.937437,-0.348932" /></g><g transform="translate(4, 2.25)"><g transform="translate(-1, -1)"><path stroke-linecap="square" d="M0,0 L2,0 L2,2 L1.555556,2" /></g></g><g transform="translate(-4, -2.25)"><path d="M-1,0 C-1,0.276142 -0.552285,0.5 0,0.5 C0.552285,0.5 1,0.276142 1,0 C1,-0.061365 0.977891,-0.120148 0.937437,-0.174466" /></g><g transform="translate(4, -2.25)"><path d="M-1,-1 L0.111111,0.111111" /></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, 2.25)"><path d="M-1,0 C-1,0.552285 -0.552285,1 0,1 C0.552285,1 1,0.552285 1,0 C1,-0.36819 0.801015,-0.689904 0.504719,-0.863471" /></g><g transform="translate(4, 2.25)"><g transform="translate(-1, -1)"><path stroke-linecap="square" d="M0,0 L2,0 L2,2 L0.666667,2" /></g></g><g transform="translate(-4, -2.25)"><path d="M-1,0 C-1,0.276142 -0.552285,0.5 0,0.5 C0.552285,0.5 1,0.276142 1,0 C1,-0.184095 0.801015,-0.344952 0.504719,-0.431735" /></g><g transform="translate(4, -2.25)"><path d="M-1,-1 L0.333333,0.333333" /></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, 2.25)"><path d="M-1,0 C-1,0.552285 -0.552285,1 0,1 C0.552285,1 1,0.552285 1,0 C1,-0.552285 0.552285,-1 0,-1 C-0.061365,-1 -0.121439,-0.994473 -0.179751,-0.983889" /></g><g transform="translate(4, 2.25)"><g transform="translate(-1, -1)"><path stroke-linecap="square" d="M0,0 L2,0 L2,2 L0,2 L0,1.777778" /></g></g><g transform="translate(-4, -2.25)"><path d="M-1,0 C-1,0.276142 -0.552285,0.5 0,0.5 C0.552285,0.5 1,0.276142 1,0 C1,-0.276142 0.552285,-0.5 0,-0.5 C-0.061365,-0.5 -0.121439,-0.497236 -0.179751,-0.491944" /></g><g transform="translate(4, -2.25)"><path d="M-1,-1 L0.555556,0.555556" /></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, 2.25)"><path d="M-1,0 C-1,0.552285 -0.552285,1 0,1 C0.552285,1 1,0.552285 1,0 C1,-0.552285 0.552285,-1 0,-1 C-0.306825,-1 -0.581375,-0.861816 -0.764813,-0.644287" /></g><g transform="translate(4, 2.25)"><g transform="translate(-1, -1)"><path stroke-linecap="square" d="M0,0 L2,0 L2,2 L0,2 L0,0.888889" /></g></g><g transform="translate(-4, -2.25)"><path d="M-1,0 C-1,0.276142 -0.552285,0.5 0,0.5 C0.552285,0.5 1,0.276142 1,0 C1,-0.276142 0.552285,-0.5 0,-0.5 C-0.306825,-0.5 -0.581375,-0.430908 -0.764813,-0.322144" /></g><g transform="translate(4, -2.25)"><path d="M-1,-1 L0.777778,0.777778" /></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, 2.25)"><path d="M-1,0 a1 1 0 1 0 2,0 1 1 0 1 0 -2,0" /></g><g transform="translate(4, 2.25)"><g transform="translate(-1, -1)"><path stroke-linecap="square" d="M0,0 h2 v2 h-2 Z" /></g></g><g transform="translate(-4, -2.25)"><path d="M-1,0 a1 0.5 0 1 0 2,0 1 0.5 0 1 0 -2,0" /></g><g transform="translate(4, -2.25)"><path d="M-1,-1 L1,1" /></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-4.266667, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-2.133333, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(0, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(2.133333, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(4.266667, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><line x1="-6.4" x2="6.4" /><g transform="translate(-6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><line x1="-6.4" x2="6.4" /><g transform="translate(-6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><line x1="-6.4" x2="6.4" /><g transform="translate(-6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><line x1="-6.4" x2="6.4" /><g transform="translate(-4.266667, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><line x1="-6.4" x2="6.4" /><g transform="translate(-1.422222, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><line x1="-6.4" x2="6.4" /><g transform="translate(1.422222, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><line x1="-6.4" x2="6.4" /><g transform="translate(4.266667, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><line x1="-6.4" x2="6.4" /><g transform="translate(6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><line x1="-6.4" x2="6.4" /><g transform="translate(6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><line x1="-6.4" x2="6.4" /><g transform="translate(6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-4.266667, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-2.133333, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(0, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(2.133333, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(4.266667, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><line x1="-6.4" x2="6.4" /><g transform="translate(-6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><line x1="-6.4" x2="6.4" /><g transform="translate(-4.266667, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><line x1="-6.4" x2="6.4" /><g transform="translate(-2.133333, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><line x1="-6.4" x2="6.4" /><g transform="translate(0, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><line x1="-6.4" x2="6.4" /><g transform="translate(2.133333, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><line x1="-6.4" x2="6.4" /><g transform="translate(4.266667, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><line x1="-6.4" x2="6.4" /><g transform="translate(6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><line x1="-6.4" x2="6.4" /><g transform="translate(6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><line x1="-6.4" x2="6.4" /><g transform="translate(6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><line x1="-6.4" x2="6.4" /><g transform="translate(6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AA0IhxAHiBMHiRYHihkGjBsGjR0GjiAGjyIGkCQGkSYFkSgFkioFkywFlC4FlS8FljEFlzMFlzUEmDcEmTgEmjoEmjwEmz4EnD8EnEEEnUMDnkQDnkYDn0gDn0kDoEsDoUwCoU4ColAColECo1MCo1UCpFYBpFgBpFkBpVsBpVwBpl4BpmABpmEAp2MAp2QAp2YAp2cAqGkAqGoAqGwAqG4AqG8AqHEAqHIBqHQBqHUBqHcBqHgBqHoCqHsCqH0DqH4DqIAEqIEEp4MFp4QFp4YGpocHpogIpooJpYsKpY0LpY4MpI8NpJEOo5IPo5QQopURoZYToZgUoJkVn5oWn5wXnp0YnZ4ZnaAanKEbm6IdmqMemqUfmaYgmKchl6gilqojlasklKwmlK0nk64okrApkbEqkLIrj7MsjrQujbUvjLYwi7cxirgyiboziLs0iLw1h703hr44hb85hMA6g8E7gsI8gcM9gMQ+f8VAfsZBfcdCfMhDe8lEespFestGecxHeMxJd81Kds5Ldc9MdNBNc9FOctJPcdNRcdRScNVTb9VUbtZVbddWbNhXa9lYatpaatpbadtcaNxdZ91eZt5fZd5hZN9iY+BjY+FkYuJlYeJmYONoX+RpXuVqXeVrXeZsXOduW+dvWuhwWelxWOlyV+p0V+t1Vut2Vex3VO15U+16Uu57Ue98Ue9+UPB/T/CATvGBTfGDTPKES/OFS/OHSvSISfSJSPWLR/WMRvaNRfaPRPeQRPeRQ/eTQviUQfiVQPmXP/mYPvmaPvqbPfqcPPqeO/ufOvuhOfuiOPyjOPylN/ymNvyoNfypNP2rM/2sM/2uMv2vMf2xMP2yL/20L/21Lv63Lf64LP66LP67K/69Kv6+Kv7AKf3CKf3DKP3FJ/3GJ/3IJ/3KJv3LJvzNJfzOJfzQJfzSJfvTJPvVJPvXJPrYJPraJPncJPndJfjfJfjhJffiJffkJfbmJvboJvXpJvXrJ/TtJ/PuJ/PwJ/LyJ/H0JvH1JfD3JPD5IWX/eGt2qrtjAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AA0IhxAHiBMHiRYHihkGjBsGjR0GjiAGjyIGkCQGkSYFkSgFkioFkywFlC4FlS8FljEFlzMFlzUEmDcEmTgEmjoEmjwEmz4EnD8EnEEEnUMDnkQDnkYDn0gDn0kDoEsDoUwCoU4ColAColECo1MCo1UCpFYBpFgBpFkBpVsBpVwBpl4BpmABpmEAp2MAp2QAp2YAp2cAqGkAqGoAqGwAqG4AqG8AqHEAqHIBqHQBqHUBqHcBqHgBqHoCqHsCqH0DqH4DqIAEqIEEp4MFp4QFp4YGpocHpogIpooJpYsKpY0LpY4MpI8NpJEOo5IPo5QQopURoZYToZgUoJkVn5oWn5wXnp0YnZ4ZnaAanKEbm6IdmqMemqUfmaYgmKchl6gilqojlasklKwmlK0nk64okrApkbEqkLIrj7MsjrQujbUvjLYwi7cxirgyiboziLs0iLw1h703hr44hb85hMA6g8E7gsI8gcM9gMQ+f8VAfsZBfcdCfMhDe8lEespFestGecxHeMxJd81Kds5Ldc9MdNBNc9FOctJPcdNRcdRScNVTb9VUbtZVbddWbNhXa9lYatpaatpbadtcaNxdZ91eZt5fZd5hZN9iY+BjY+FkYuJlYeJmYONoX+RpXuVqXeVrXeZsXOduW+dvWuhwWelxWOlyV+p0V+t1Vut2Vex3VO15U+16Uu57Ue98Ue9+UPB/T/CATvGBTfGDTPKES/OFS/OHSvSISfSJSPWLR/WMRvaNRfaPRPeQRPeRQ/eTQviUQfiVQPmXP/mYPvmaPvqbPfqcPPqeO/ufOvuhOfuiOPyjOPylN/ymNvyoNfypNP2rM/2sM/2uMv2vMf2xMP2yL/20L/21Lv63Lf64LP66LP67K/69Kv6+Kv7AKf3CKf3DKP3FJ/3GJ/3IJ/3KJv3LJvzNJfzOJfzQJfzSJfvTJPvVJPvXJPrYJPraJPncJPndJfjfJfjhJffiJffkJfbmJvboJvXpJvXrJ/TtJ/PuJ/PwJ/LyJ/H0JvH1JfD3JPD5IWX/eGt2qrtjAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AA0IhxAHiBMHiRYHihkGjBsGjR0GjiAGjyIGkCQGkSYFkSgFkioFkywFlC4FlS8FljEFlzMFlzUEmDcEmTgEmjoEmjwEmz4EnD8EnEEEnUMDnkQDnkYDn0gDn0kDoEsDoUwCoU4ColAColECo1MCo1UCpFYBpFgBpFkBpVsBpVwBpl4BpmABpmEAp2MAp2QAp2YAp2cAqGkAqGoAqGwAqG4AqG8AqHEAqHIBqHQBqHUBqHcBqHgBqHoCqHsCqH0DqH4DqIAEqIEEp4MFp4QFp4YGpocHpogIpooJpYsKpY0LpY4MpI8NpJEOo5IPo5QQopURoZYToZgUoJkVn5oWn5wXnp0YnZ4ZnaAanKEbm6IdmqMemqUfmaYgmKchl6gilqojlasklKwmlK0nk64okrApkbEqkLIrj7MsjrQujbUvjLYwi7cxirgyiboziLs0iLw1h703hr44hb85hMA6g8E7gsI8gcM9gMQ+f8VAfsZBfcdCfMhDe8lEespFestGecxHeMxJd81Kds5Ldc9MdNBNc9FOctJPcdNRcdRScNVTb9VUbtZVbddWbNhXa9lYatpaatpbadtcaNxdZ91eZt5fZd5hZN9iY+BjY+FkYuJlYeJmYONoX+RpXuVqXeVrXeZsXOduW+dvWuhwWelxWOlyV+p0V+t1Vut2Vex3VO15U+16Uu57Ue98Ue9+UPB/T/CATvGBTfGDTPKES/OFS/OHSvSISfSJSPWLR/WMRvaNRfaPRPeQRPeRQ/eTQviUQfiVQPmXP/mYPvmaPvqbPfqcPPqeO/ufOvuhOfuiOPyjOPylN/ymNvyoNfypNP2rM/2sM/2uMv2vMf2xMP2yL/20L/21Lv63Lf64LP66LP67K/69Kv6+Kv7AKf3CKf3DKP3FJ/3GJ/3IJ/3KJv3LJvzNJfzOJfzQJfzSJfvTJPvVJPvXJPrYJPraJPncJPndJfjfJfjhJffiJffkJfbmJvboJvXpJvXrJ/TtJ/PuJ/PwJ/LyJ/H0JvH1JfD3JPD5IWX/eGt2qrtjAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AA0IhxAHiBMHiRYHihkGjBsGjR0GjiAGjyIGkCQGkSYFkSgFkioFkywFlC4FlS8FljEFlzMFlzUEmDcEmTgEmjoEmjwEmz4EnD8EnEEEnUMDnkQDnkYDn0gDn0kDoEsDoUwCoU4ColAColECo1MCo1UCpFYBpFgBpFkBpVsBpVwBpl4BpmABpmEAp2MAp2QAp2YAp2cAqGkAqGoAqGwAqG4AqG8AqHEAqHIBqHQBqHUBqHcBqHgBqHoCqHsCqH0DqH4DqIAEqIEEp4MFp4QFp4YGpocHpogIpooJpYsKpY0LpY4MpI8NpJEOo5IPo5QQopURoZYToZgUoJkVn5oWn5wXnp0YnZ4ZnaAanKEbm6IdmqMemqUfmaYgmKchl6gilqojlasklKwmlK0nk64okrApkbEqkLIrj7MsjrQujbUvjLYwi7cxirgyiboziLs0iLw1h703hr44hb85hMA6g8E7gsI8gcM9gMQ+f8VAfsZBfcdCfMhDe8lEespFestGecxHeMxJd81Kds5Ldc9MdNBNc9FOctJPcdNRcdRScNVTb9VUbtZVbddWbNhXa9lYatpaatpbadtcaNxdZ91eZt5fZd5hZN9iY+BjY+FkYuJlYeJmYONoX+RpXuVqXeVrXeZsXOduW+dvWuhwWelxWOlyV+p0V+t1Vut2Vex3VO15U+16Uu57Ue98Ue9+UPB/T/CATvGBTfGDTPKES/OFS/OHSvSISfSJSPWLR/WMRvaNRfaPRPeQRPeRQ/eTQviUQfiVQPmXP/mYPvmaPvqbPfqcPPqeO/ufOvuhOfuiOPyjOPylN/ymNvyoNfypNP2rM/2sM/2uMv2vMf2xMP2yL/20L/21Lv63Lf64LP66LP67K/69Kv6+Kv7AKf3CKf3DKP3FJ/3GJ/3IJ/3KJv3LJvzNJfzOJfzQJfzSJfvTJPvVJPvXJPrYJPraJPncJPndJfjfJfjhJffiJffkJfbmJvboJvXpJvXrJ/TtJ/PuJ/PwJ/LyJ/H0JvH1JfD3JPD5IWX/eGt2qrtjAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AA0IhxAHiBMHiRYHihkGjBsGjR0GjiAGjyIGkCQGkSYFkSgFkioFkywFlC4FlS8FljEFlzMFlzUEmDcEmTgEmjoEmjwEmz4EnD8EnEEEnUMDnkQDnkYDn0gDn0kDoEsDoUwCoU4ColAColECo1MCo1UCpFYBpFgBpFkBpVsBpVwBpl4BpmABpmEAp2MAp2QAp2YAp2cAqGkAqGoAqGwAqG4AqG8AqHEAqHIBqHQBqHUBqHcBqHgBqHoCqHsCqH0DqH4DqIAEqIEEp4MFp4QFp4YGpocHpogIpooJpYsKpY0LpY4MpI8NpJEOo5IPo5QQopURoZYToZgUoJkVn5oWn5wXnp0YnZ4ZnaAanKEbm6IdmqMemqUfmaYgmKchl6gilqojlasklKwmlK0nk64okrApkbEqkLIrj7MsjrQujbUvjLYwi7cxirgyiboziLs0iLw1h703hr44hb85hMA6g8E7gsI8gcM9gMQ+f8VAfsZBfcdCfMhDe8lEespFestGecxHeMxJd81Kds5Ldc9MdNBNc9FOctJPcdNRcdRScNVTb9VUbtZVbddWbNhXa9lYatpaatpbadtcaNxdZ91eZt5fZd5hZN9iY+BjY+FkYuJlYeJmYONoX+RpXuVqXeVrXeZsXOduW+dvWuhwWelxWOlyV+p0V+t1Vut2Vex3VO15U+16Uu57Ue98Ue9+UPB/T/CATvGBTfGDTPKES/OFS/OHSvSISfSJSPWLR/WMRvaNRfaPRPeQRPeRQ/eTQviUQfiVQPmXP/mYPvmaPvqbPfqcPPqeO/ufOvuhOfuiOPyjOPylN/ymNvyoNfypNP2rM/2sM/2uMv2vMf2xMP2yL/20L/21Lv63Lf64LP66LP67K/69Kv6+Kv7AKf3CKf3DKP3FJ/3GJ/3IJ/3KJv3LJvzNJfzOJfzQJfzSJfvTJPvVJPvXJPrYJPraJPncJPndJfjfJfjhJffiJffkJfbmJvboJvXpJvXrJ/TtJ/PuJ/PwJ/LyJ/H0JvH1JfD3JPD5IWX/eGt2qrtjAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AA0IhxAHiBMHiRYHihkGjBsGjR0GjiAGjyIGkCQGkSYFkSgFkioFkywFlC4FlS8FljEFlzMFlzUEmDcEmTgEmjoEmjwEmz4EnD8EnEEEnUMDnkQDnkYDn0gDn0kDoEsDoUwCoU4ColAColECo1MCo1UCpFYBpFgBpFkBpVsBpVwBpl4BpmABpmEAp2MAp2QAp2YAp2cAqGkAqGoAqGwAqG4AqG8AqHEAqHIBqHQBqHUBqHcBqHgBqHoCqHsCqH0DqH4DqIAEqIEEp4MFp4QFp4YGpocHpogIpooJpYsKpY0LpY4MpI8NpJEOo5IPo5QQopURoZYToZgUoJkVn5oWn5wXnp0YnZ4ZnaAanKEbm6IdmqMemqUfmaYgmKchl6gilqojlasklKwmlK0nk64okrApkbEqkLIrj7MsjrQujbUvjLYwi7cxirgyiboziLs0iLw1h703hr44hb85hMA6g8E7gsI8gcM9gMQ+f8VAfsZBfcdCfMhDe8lEespFestGecxHeMxJd81Kds5Ldc9MdNBNc9FOctJPcdNRcdRScNVTb9VUbtZVbddWbNhXa9lYatpaatpbadtcaNxdZ91eZt5fZd5hZN9iY+BjY+FkYuJlYeJmYONoX+RpXuVqXeVrXeZsXOduW+dvWuhwWelxWOlyV+p0V+t1Vut2Vex3VO15U+16Uu57Ue98Ue9+UPB/T/CATvGBTfGDTPKES/OFS/OHSvSISfSJSPWLR/WMRvaNRfaPRPeQRPeRQ/eTQviUQfiVQPmXP/mYPvmaPvqbPfqcPPqeO/ufOvuhOfuiOPyjOPylN/ymNvyoNfypNP2rM/2sM/2uMv2vMf2xMP2yL/20L/21Lv63Lf64LP66LP67K/69Kv6+Kv7AKf3CKf3DKP3FJ/3GJ/3IJ/3KJv3LJvzNJfzOJfzQJfzSJfvTJPvVJPvXJPrYJPraJPncJPndJfjfJfjhJffiJffkJfbmJvboJvXpJvXrJ/TtJ/PuJ/PwJ/LyJ/H0JvH1JfD3JPD5IWX/eGt2qrtjAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AA0IhxAHiBMHiRYHihkGjBsGjR0GjiAGjyIGkCQGkSYFkSgFkioFkywFlC4FlS8FljEFlzMFlzUEmDcEmTgEmjoEmjwEmz4EnD8EnEEEnUMDnkQDnkYDn0gDn0kDoEsDoUwCoU4ColAColECo1MCo1UCpFYBpFgBpFkBpVsBpVwBpl4BpmABpmEAp2MAp2QAp2YAp2cAqGkAqGoAqGwAqG4AqG8AqHEAqHIBqHQBqHUBqHcBqHgBqHoCqHsCqH0DqH4DqIAEqIEEp4MFp4QFp4YGpocHpogIpooJpYsKpY0LpY4MpI8NpJEOo5IPo5QQopURoZYToZgUoJkVn5oWn5wXnp0YnZ4ZnaAanKEbm6IdmqMemqUfmaYgmKchl6gilqojlasklKwmlK0nk64okrApkbEqkLIrj7MsjrQujbUvjLYwi7cxirgyiboziLs0iLw1h703hr44hb85hMA6g8E7gsI8gcM9gMQ+f8VAfsZBfcdCfMhDe8lEespFestGecxHeMxJd81Kds5Ldc9MdNBNc9FOctJPcdNRcdRScNVTb9VUbtZVbddWbNhXa9lYatpaatpbadtcaNxdZ91eZt5fZd5hZN9iY+BjY+FkYuJlYeJmYONoX+RpXuVqXeVrXeZsXOduW+dvWuhwWelxWOlyV+p0V+t1Vut2Vex3VO15U+16Uu57Ue98Ue9+UPB/T/CATvGBTfGDTPKES/OFS/OHSvSISfSJSPWLR/WMRvaNRfaPRPeQRPeRQ/eTQviUQfiVQPmXP/mYPvmaPvqbPfqcPPqeO/ufOvuhOfuiOPyjOPylN/ymNvyoNfypNP2rM/2sM/2uMv2vMf2xMP2yL/20L/21Lv63Lf64LP66LP67K/69Kv6+Kv7AKf3CKf3DKP3FJ/3GJ/3IJ/3KJv3LJvzNJfzOJfzQJfzSJfvTJPvVJPvXJPrYJPraJPncJPndJfjfJfjhJffiJffkJfbmJvboJvXpJvXrJ/TtJ/PuJ/PwJ/LyJ/H0JvH1JfD3JPD5IWX/eGt2qrtjAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AA0IhxAHiBMHiRYHihkGjBsGjR0GjiAGjyIGkCQGkSYFkSgFkioFkywFlC4FlS8FljEFlzMFlzUEmDcEmTgEmjoEmjwEmz4EnD8EnEEEnUMDnkQDnkYDn0gDn0kDoEsDoUwCoU4ColAColECo1MCo1UCpFYBpFgBpFkBpVsBpVwBpl4BpmABpmEAp2MAp2QAp2YAp2cAqGkAqGoAqGwAqG4AqG8AqHEAqHIBqHQBqHUBqHcBqHgBqHoCqHsCqH0DqH4DqIAEqIEEp4MFp4QFp4YGpocHpogIpooJpYsKpY0LpY4MpI8NpJEOo5IPo5QQopURoZYToZgUoJkVn5oWn5wXnp0YnZ4ZnaAanKEbm6IdmqMemqUfmaYgmKchl6gilqojlasklKwmlK0nk64okrApkbEqkLIrj7MsjrQujbUvjLYwi7cxirgyiboziLs0iLw1h703hr44hb85hMA6g8E7gsI8gcM9gMQ+f8VAfsZBfcdCfMhDe8lEespFestGecxHeMxJd81Kds5Ldc9MdNBNc9FOctJPcdNRcdRScNVTb9VUbtZVbddWbNhXa9lYatpaatpbadtcaNxdZ91eZt5fZd5hZN9iY+BjY+FkYuJlYeJmYONoX+RpXuVqXeVrXeZsXOduW+dvWuhwWelxWOlyV+p0V+t1Vut2Vex3VO15U+16Uu57Ue98Ue9+UPB/T/CATvGBTfGDTPKES/OFS/OHSvSISfSJSPWLR/WMRvaNRfaPRPeQRPeRQ/eTQviUQfiVQPmXP/mYPvmaPvqbPfqcPPqeO/ufOvuhOfuiOPyjOPylN/ymNvyoNfypNP2rM/2sM/2uMv2vMf2xMP2yL/20L/21Lv63Lf64LP66LP67K/69Kv6+Kv7AKf3CKf3DKP3FJ/3GJ/3IJ/3KJv3LJvzNJfzOJfzQJfzSJfvTJPvVJPvXJPrYJPraJPncJPndJfjfJfjhJffiJffkJfbmJvboJvXpJvXrJ/TtJ/PuJ/PwJ/LyJ/H0JvH1JfD3JPD5IWX/eGt2qrtjAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AA0IhxAHiBMHiRYHihkGjBsGjR0GjiAGjyIGkCQGkSYFkSgFkioFkywFlC4FlS8FljEFlzMFlzUEmDcEmTgEmjoEmjwEmz4EnD8EnEEEnUMDnkQDnkYDn0gDn0kDoEsDoUwCoU4ColAColECo1MCo1UCpFYBpFgBpFkBpVsBpVwBpl4BpmABpmEAp2MAp2QAp2YAp2cAqGkAqGoAqGwAqG4AqG8AqHEAqHIBqHQBqHUBqHcBqHgBqHoCqHsCqH0DqH4DqIAEqIEEp4MFp4QFp4YGpocHpogIpooJpYsKpY0LpY4MpI8NpJEOo5IPo5QQopURoZYToZgUoJkVn5oWn5wXnp0YnZ4ZnaAanKEbm6IdmqMemqUfmaYgmKchl6gilqojlasklKwmlK0nk64okrApkbEqkLIrj7MsjrQujbUvjLYwi7cxirgyiboziLs0iLw1h703hr44hb85hMA6g8E7gsI8gcM9gMQ+f8VAfsZBfcdCfMhDe8lEespFestGecxHeMxJd81Kds5Ldc9MdNBNc9FOctJPcdNRcdRScNVTb9VUbtZVbddWbNhXa9lYatpaatpbadtcaNxdZ91eZt5fZd5hZN9iY+BjY+FkYuJlYeJmYONoX+RpXuVqXeVrXeZsXOduW+dvWuhwWelxWOlyV+p0V+t1Vut2Vex3VO15U+16Uu57Ue98Ue9+UPB/T/CATvGBTfGDTPKES/OFS/OHSvSISfSJSPWLR/WMRvaNRfaPRPeQRPeRQ/eTQviUQfiVQPmXP/mYPvmaPvqbPfqcPPqeO/ufOvuhOfuiOPyjOPylN/ymNvyoNfypNP2rM/2sM/2uMv2vMf2xMP2yL/20L/21Lv63Lf64LP66LP67K/69Kv6+Kv7AKf3CKf3DKP3FJ/3GJ/3IJ/3KJv3LJvzNJfzOJfzQJfzSJfvTJPvVJPvXJPrYJPraJPncJPndJfjfJfjhJffiJffkJfbmJvboJvXpJvXrJ/TtJ/PuJ/PwJ/LyJ/H0JvH1JfD3JPD5IWX/eGt2qrtjAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AA0IhxAHiBMHiRYHihkGjBsGjR0GjiAGjyIGkCQGkSYFkSgFkioFkywFlC4FlS8FljEFlzMFlzUEmDcEmTgEmjoEmjwEmz4EnD8EnEEEnUMDnkQDnkYDn0gDn0kDoEsDoUwCoU4ColAColECo1MCo1UCpFYBpFgBpFkBpVsBpVwBpl4BpmABpmEAp2MAp2QAp2YAp2cAqGkAqGoAqGwAqG4AqG8AqHEAqHIBqHQBqHUBqHcBqHgBqHoCqHsCqH0DqH4DqIAEqIEEp4MFp4QFp4YGpocHpogIpooJpYsKpY0LpY4MpI8NpJEOo5IPo5QQopURoZYToZgUoJkVn5oWn5wXnp0YnZ4ZnaAanKEbm6IdmqMemqUfmaYgmKchl6gilqojlasklKwmlK0nk64okrApkbEqkLIrj7MsjrQujbUvjLYwi7cxirgyiboziLs0iLw1h703hr44hb85hMA6g8E7gsI8gcM9gMQ+f8VAfsZBfcdCfMhDe8lEespFestGecxHeMxJd81Kds5Ldc9MdNBNc9FOctJPcdNRcdRScNVTb9VUbtZVbddWbNhXa9lYatpaatpbadtcaNxdZ91eZt5fZd5hZN9iY+BjY+FkYuJlYeJmYONoX+RpXuVqXeVrXeZsXOduW+dvWuhwWelxWOlyV+p0V+t1Vut2Vex3VO15U+16Uu57Ue98Ue9+UPB/T/CATvGBTfGDTPKES/OFS/OHSvSISfSJSPWLR/WMRvaNRfaPRPeQRPeRQ/eTQviUQfiVQPmXP/mYPvmaPvqbPfqcPPqeO/ufOvuhOfuiOPyjOPylN/ymNvyoNfypNP2rM/2sM/2uMv2vMf2xMP2yL/20L/21Lv63Lf64LP66LP67K/69Kv6+Kv7AKf3CKf3DKP3FJ/3GJ/3IJ/3KJv3LJvzNJfzOJfzQJfzSJfvTJPvVJPvXJPrYJPraJPncJPndJfjfJfjhJffiJffkJfbmJvboJvXpJvXrJ/TtJ/PuJ/PwJ/LyJ/H0JvH1JfD3JPD5IWX/eGt2qrtjAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L0,0" /></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L5.555556,0" /></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,3.111111" /></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L3.833333,4.5" /></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L0,4.5 L0,2.777778" /></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,0.73638 -2.734687,1.410792 -2.294438,1.932862" /></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C0.552285,3 1.069713,2.850762 1.514157,2.590412" /></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-0.36819 2.933672,-0.720888 2.812312,-1.046797" /></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.184095,-3 -0.364317,-2.983418 -0.539254,-2.951666" /></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,0 -3,0 -3,0" /></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.472759 -1.938749,2.69765 -0.539254,2.951666" /></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.288664,3 2.387555,2.18748 2.812312,1.046797" /></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.104569 2.403046,-2.069713 1.514157,-2.590412" /></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.920475,-3 -1.744126,-2.585449 -2.294438,-1.932862" /></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.920475,-3 -1.744126,-2.585449 -2.294438,-1.932862" /></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.104569 2.403046,-2.069713 1.514157,-2.590412" /></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.288664,3 2.387555,2.18748 2.812312,1.046797" /></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.472759 -1.938749,2.69765 -0.539254,2.951666" /></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,0 -3,0 -3,0" /></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,0 -3,0 -3,0" /></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,1.104569 -2.403046,2.069713 -1.514157,2.590412" /></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C0.552285,3 1.069713,2.850762 1.514157,2.590412" /></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,0 3,0 3,0" /></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.104569 2.403046,-2.069713 1.514157,-2.590412" /></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.552285,-3 -1.069713,-2.850762 -1.514157,-2.590412" /></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="scale(2)"><g stroke-width="0.05" transform="scale(1, -1)" text-anchor="middle"><text font-size="2">Now=2.0</text></g></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="scale(2)"><g stroke-width="0.05" transform="scale(1, -1)" text-anchor="middle"><text font-size="2">Now=2.0</text></g></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="scale(2)"><g stroke-width="0.05" transform="scale(1, -1)" text-anchor="middle"><text font-size="2">Now=2.0</text></g></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="scale(2)"><g stroke-width="0.05" transform="scale(1, -1)" text-anchor="middle"><text font-size="2">Now=2.0</text></g></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,0 -3,0 -3,0" /></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.104569 -2.403046,2.069713 -1.514157,2.590412" /></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C0.552285,3 1.069713,2.850762 1.514157,2.590412" /></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,0 3,0 3,0" /></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.104569 2.403046,-2.069713 1.514157,-2.590412" /></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.552285,-3 -1.069713,-2.850762 -1.514157,-2.590412" /></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,0 -3,0 -3,0" /></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.104569 -2.403046,2.069713 -1.514157,2.590412" /></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C0.552285,3 1.069713,2.850762 1.514157,2.590412" /></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,0 3,0 3,0" /></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.920475,-3 -1.744126,-2.585449 -2.294438,-1.932862" /></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.184095,-3 -0.364317,-2.983418 -0.539254,-2.951666" /></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.104569 2.403046,-2.069713 1.514157,-2.590412" /></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-0.36819 2.933672,-0.720888 2.812312,-1.046797" /></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.288664,3 2.387555,2.18748 2.812312,1.046797" /></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C0.552285,3 1.069713,2.850762 1.514157,2.590412" /></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.472759 -1.938749,2.69765 -0.539254,2.951666" /></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,0.73638 -2.734687,1.410792 -2.294438,1.932862" /></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,0 -3,0 -3,0" /></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(4.977778, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(3.555556, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(2.133333, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(0.711111, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-0.711111, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-2.133333, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-3.555556, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-4.977778, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><line x1="-6.4" x2="6.4" /><g transform="translate(-6.4, 0)"><circle fill-opacity="1" r="0.5" /></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AP//AP7+Af39Avz8A/v7BPr6Bfn5Bvj4B/f3CPb2CfX1CvT0C/PzDPLyDfHxDvDwD+/vEO7uEe3tEuzsE+vrFOrqFenpFujoF+fnGObmGeXlGuTkG+PjHOLiHeHhHuDgH9/fIN7eId3dItzcI9vbJNraJdnZJtjYJ9fXKNbWKdXVKtTUK9PTLNLSLdHRLtDQL8/PMM7OMc3NMszMM8vLNMrKNcnJNsjIN8fHOMbGOcXFOsTEO8PDPMLCPcHBPsDAP7+/QL6+Qb29Qry8Q7u7RLq6Rbm5Rri4R7e3SLa2SbW1SrS0S7OzTLKyTbGxTrCwT6+vUK6uUa2tUqysU6urVKqqVampVqioV6enWKamWaWlWqSkW6OjXKKiXaGhXqCgX5+fYJ6eYZ2dYpycY5ubZJqaZZmZZpiYZ5eXaJaWaZWVapSUa5OTbJKSbZGRbpCQb4+PcI6OcY2NcoyMc4uLdIqKdYmJdoiId4eHeIaGeYWFeoSEe4ODfIKCfYGBfoCAf39/gH5+gX19gnx8g3t7hHp6hXl5hnh4h3d3iHZ2iXV1inR0i3NzjHJyjXFxjnBwj29vkG5ukW1tkmxsk2trlGpqlWlplmhol2dnmGZmmWVlmmRkm2NjnGJinWFhnmBgn19foF5eoV1dolxco1tbpFpapVlZplhYp1dXqFZWqVVVqlRUq1NTrFJSrVFRrlBQr09PsE5OsU1NskxMs0tLtEpKtUlJtkhIt0dHuEZGuUVFukREu0NDvEJCvUFBvkBAvz8/wD4+wT09wjw8wzs7xDo6xTk5xjg4xzc3yDY2yTU1yjQ0yzMzzDIyzTExzjAwzy8v0C4u0S0t0iws0ysr1Coq1Skp1igo1ycn2CYm2SUl2iQk2yMj3CIi3SEh3iAg3x8f4B4e4R0d4hwc4xsb5Boa5RkZ5hgY5xcX6BYW6RUV6hQU6xMT7BIS7RER7hAQ7w8P8A4O8Q0N8gwM8wsL9AoK9QkJ9ggI9wcH+AYG+QUF+gQE+wMD/AIC/QEB/gAA/6djfpDD/FhZAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AP//AP7+Af39Avz8A/v7BPr6Bfn5Bvj4B/f3CPb2CfX1CvT0C/PzDPLyDfHxDvDwD+/vEO7uEe3tEuzsE+vrFOrqFenpFujoF+fnGObmGeXlGuTkG+PjHOLiHeHhHuDgH9/fIN7eId3dItzcI9vbJNraJdnZJtjYJ9fXKNbWKdXVKtTUK9PTLNLSLdHRLtDQL8/PMM7OMc3NMszMM8vLNMrKNcnJNsjIN8fHOMbGOcXFOsTEO8PDPMLCPcHBPsDAP7+/QL6+Qb29Qry8Q7u7RLq6Rbm5Rri4R7e3SLa2SbW1SrS0S7OzTLKyTbGxTrCwT6+vUK6uUa2tUqysU6urVKqqVampVqioV6enWKamWaWlWqSkW6OjXKKiXaGhXqCgX5+fYJ6eYZ2dYpycY5ubZJqaZZmZZpiYZ5eXaJaWaZWVapSUa5OTbJKSbZGRbpCQb4+PcI6OcY2NcoyMc4uLdIqKdYmJdoiId4eHeIaGeYWFeoSEe4ODfIKCfYGBfoCAf39/gH5+gX19gnx8g3t7hHp6hXl5hnh4h3d3iHZ2iXV1inR0i3NzjHJyjXFxjnBwj29vkG5ukW1tkmxsk2trlGpqlWlplmhol2dnmGZmmWVlmmRkm2NjnGJinWFhnmBgn19foF5eoV1dolxco1tbpFpapVlZplhYp1dXqFZWqVVVqlRUq1NTrFJSrVFRrlBQr09PsE5OsU1NskxMs0tLtEpKtUlJtkhIt0dHuEZGuUVFukREu0NDvEJCvUFBvkBAvz8/wD4+wT09wjw8wzs7xDo6xTk5xjg4xzc3yDY2yTU1yjQ0yzMzzDIyzTExzjAwzy8v0C4u0S0t0iws0ysr1Coq1Skp1igo1ycn2CYm2SUl2iQk2yMj3CIi3SEh3iAg3x8f4B4e4R0d4hwc4xsb5Boa5RkZ5hgY5xcX6BYW6RUV6hQU6xMT7BIS7RER7hAQ7w8P8A4O8Q0N8gwM8wsL9AoK9QkJ9ggI9wcH+AYG+QUF+gQE+wMD/AIC/QEB/gAA/6djfpDD/FhZAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AP//AP7+Af39Avz8A/v7BPr6Bfn5Bvj4B/f3CPb2CfX1CvT0C/PzDPLyDfHxDvDwD+/vEO7uEe3tEuzsE+vrFOrqFenpFujoF+fnGObmGeXlGuTkG+PjHOLiHeHhHuDgH9/fIN7eId3dItzcI9vbJNraJdnZJtjYJ9fXKNbWKdXVKtTUK9PTLNLSLdHRLtDQL8/PMM7OMc3NMszMM8vLNMrKNcnJNsjIN8fHOMbGOcXFOsTEO8PDPMLCPcHBPsDAP7+/QL6+Qb29Qry8Q7u7RLq6Rbm5Rri4R7e3SLa2SbW1SrS0S7OzTLKyTbGxTrCwT6+vUK6uUa2tUqysU6urVKqqVampVqioV6enWKamWaWlWqSkW6OjXKKiXaGhXqCgX5+fYJ6eYZ2dYpycY5ubZJqaZZmZZpiYZ5eXaJaWaZWVapSUa5OTbJKSbZGRbpCQb4+PcI6OcY2NcoyMc4uLdIqKdYmJdoiId4eHeIaGeYWFeoSEe4ODfIKCfYGBfoCAf39/gH5+gX19gnx8g3t7hHp6hXl5hnh4h3d3iHZ2iXV1inR0i3NzjHJyjXFxjnBwj29vkG5ukW1tkmxsk2trlGpqlWlplmhol2dnmGZmmWVlmmRkm2NjnGJinWFhnmBgn19foF5eoV1dolxco1tbpFpapVlZplhYp1dXqFZWqVVVqlRUq1NTrFJSrVFRrlBQr09PsE5OsU1NskxMs0tLtEpKtUlJtkhIt0dHuEZGuUVFukREu0NDvEJCvUFBvkBAvz8/wD4+wT09wjw8wzs7xDo6xTk5xjg4xzc3yDY2yTU1yjQ0yzMzzDIyzTExzjAwzy8v0C4u0S0t0iws0ysr1Coq1Skp1igo1ycn2CYm2SUl2iQk2yMj3CIi3SEh3iAg3x8f4B4e4R0d4hwc4xsb5Boa5RkZ5hgY5xcX6BYW6RUV6hQU6xMT7BIS7RER7hAQ7w8P8A4O8Q0N8gwM8wsL9AoK9QkJ9ggI9wcH+AYG+QUF+gQE+wMD/AIC/QEB/gAA/6djfpDD/FhZAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AP//AP7+Af39Avz8A/v7BPr6Bfn5Bvj4B/f3CPb2CfX1CvT0C/PzDPLyDfHxDvDwD+/vEO7uEe3tEuzsE+vrFOrqFenpFujoF+fnGObmGeXlGuTkG+PjHOLiHeHhHuDgH9/fIN7eId3dItzcI9vbJNraJdnZJtjYJ9fXKNbWKdXVKtTUK9PTLNLSLdHRLtDQL8/PMM7OMc3NMszMM8vLNMrKNcnJNsjIN8fHOMbGOcXFOsTEO8PDPMLCPcHBPsDAP7+/QL6+Qb29Qry8Q7u7RLq6Rbm5Rri4R7e3SLa2SbW1SrS0S7OzTLKyTbGxTrCwT6+vUK6uUa2tUqysU6urVKqqVampVqioV6enWKamWaWlWqSkW6OjXKKiXaGhXqCgX5+fYJ6eYZ2dYpycY5ubZJqaZZmZZpiYZ5eXaJaWaZWVapSUa5OTbJKSbZGRbpCQb4+PcI6OcY2NcoyMc4uLdIqKdYmJdoiId4eHeIaGeYWFeoSEe4ODfIKCfYGBfoCAf39/gH5+gX19gnx8g3t7hHp6hXl5hnh4h3d3iHZ2iXV1inR0i3NzjHJyjXFxjnBwj29vkG5ukW1tkmxsk2trlGpqlWlplmhol2dnmGZmmWVlmmRkm2NjnGJinWFhnmBgn19foF5eoV1dolxco1tbpFpapVlZplhYp1dXqFZWqVVVqlRUq1NTrFJSrVFRrlBQr09PsE5OsU1NskxMs0tLtEpKtUlJtkhIt0dHuEZGuUVFukREu0NDvEJCvUFBvkBAvz8/wD4+wT09wjw8wzs7xDo6xTk5xjg4xzc3yDY2yTU1yjQ0yzMzzDIyzTExzjAwzy8v0C4u0S0t0iws0ysr1Coq1Skp1igo1ycn2CYm2SUl2iQk2yMj3CIi3SEh3iAg3x8f4B4e4R0d4hwc4xsb5Boa5RkZ5hgY5xcX6BYW6RUV6hQU6xMT7BIS7RER7hAQ7w8P8A4O8Q0N8gwM8wsL9AoK9QkJ9ggI9wcH+AYG+QUF+gQE+wMD/AIC/QEB/gAA/6djfpDD/FhZAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AP//AP7+Af39Avz8A/v7BPr6Bfn5Bvj4B/f3CPb2CfX1CvT0C/PzDPLyDfHxDvDwD+/vEO7uEe3tEuzsE+vrFOrqFenpFujoF+fnGObmGeXlGuTkG+PjHOLiHeHhHuDgH9/fIN7eId3dItzcI9vbJNraJdnZJtjYJ9fXKNbWKdXVKtTUK9PTLNLSLdHRLtDQL8/PMM7OMc3NMszMM8vLNMrKNcnJNsjIN8fHOMbGOcXFOsTEO8PDPMLCPcHBPsDAP7+/QL6+Qb29Qry8Q7u7RLq6Rbm5Rri4R7e3SLa2SbW1SrS0S7OzTLKyTbGxTrCwT6+vUK6uUa2tUqysU6urVKqqVampVqioV6enWKamWaWlWqSkW6OjXKKiXaGhXqCgX5+fYJ6eYZ2dYpycY5ubZJqaZZmZZpiYZ5eXaJaWaZWVapSUa5OTbJKSbZGRbpCQb4+PcI6OcY2NcoyMc4uLdIqKdYmJdoiId4eHeIaGeYWFeoSEe4ODfIKCfYGBfoCAf39/gH5+gX19gnx8g3t7hHp6hXl5hnh4h3d3iHZ2iXV1inR0i3NzjHJyjXFxjnBwj29vkG5ukW1tkmxsk2trlGpqlWlplmhol2dnmGZmmWVlmmRkm2NjnGJinWFhnmBgn19foF5eoV1dolxco1tbpFpapVlZplhYp1dXqFZWqVVVqlRUq1NTrFJSrVFRrlBQr09PsE5OsU1NskxMs0tLtEpKtUlJtkhIt0dHuEZGuUVFukREu0NDvEJCvUFBvkBAvz8/wD4+wT09wjw8wzs7xDo6xTk5xjg4xzc3yDY2yTU1yjQ0yzMzzDIyzTExzjAwzy8v0C4u0S0t0iws0ysr1Coq1Skp1igo1ycn2CYm2SUl2iQk2yMj3CIi3SEh3iAg3x8f4B4e4R0d4hwc4xsb5Boa5RkZ5hgY5xcX6BYW6RUV6hQU6xMT7BIS7RER7hAQ7w8P8A4O8Q0N8gwM8wsL9AoK9QkJ9ggI9wcH+AYG+QUF+gQE+wMD/AIC/QEB/gAA/6djfpDD/FhZAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AP//AP7+Af39Avz8A/v7BPr6Bfn5Bvj4B/f3CPb2CfX1CvT0C/PzDPLyDfHxDvDwD+/vEO7uEe3tEuzsE+vrFOrqFenpFujoF+fnGObmGeXlGuTkG+PjHOLiHeHhHuDgH9/fIN7eId3dItzcI9vbJNraJdnZJtjYJ9fXKNbWKdXVKtTUK9PTLNLSLdHRLtDQL8/PMM7OMc3NMszMM8vLNMrKNcnJNsjIN8fHOMbGOcXFOsTEO8PDPMLCPcHBPsDAP7+/QL6+Qb29Qry8Q7u7RLq6Rbm5Rri4R7e3SLa2SbW1SrS0S7OzTLKyTbGxTrCwT6+vUK6uUa2tUqysU6urVKqqVampVqioV6enWKamWaWlWqSkW6OjXKKiXaGhXqCgX5+fYJ6eYZ2dYpycY5ubZJqaZZmZZpiYZ5eXaJaWaZWVapSUa5OTbJKSbZGRbpCQb4+PcI6OcY2NcoyMc4uLdIqKdYmJdoiId4eHeIaGeYWFeoSEe4ODfIKCfYGBfoCAf39/gH5+gX19gnx8g3t7hHp6hXl5hnh4h3d3iHZ2iXV1inR0i3NzjHJyjXFxjnBwj29vkG5ukW1tkmxsk2trlGpqlWlplmhol2dnmGZmmWVlmmRkm2NjnGJinWFhnmBgn19foF5eoV1dolxco1tbpFpapVlZplhYp1dXqFZWqVVVqlRUq1NTrFJSrVFRrlBQr09PsE5OsU1NskxMs0tLtEpKtUlJtkhIt0dHuEZGuUVFukREu0NDvEJCvUFBvkBAvz8/wD4+wT09wjw8wzs7xDo6xTk5xjg4xzc3yDY2yTU1yjQ0yzMzzDIyzTExzjAwzy8v0C4u0S0t0iws0ysr1Coq1Skp1igo1ycn2CYm2SUl2iQk2yMj3CIi3SEh3iAg3x8f4B4e4R0d4hwc4xsb5Boa5RkZ5hgY5xcX6BYW6RUV6hQU6xMT7BIS7RER7hAQ7w8P8A4O8Q0N8gwM8wsL9AoK9QkJ9ggI9wcH+AYG+QUF+gQE+wMD/AIC/QEB/gAA/6djfpDD/FhZAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AP//AP7+Af39Avz8A/v7BPr6Bfn5Bvj4B/f3CPb2CfX1CvT0C/PzDPLyDfHxDvDwD+/vEO7uEe3tEuzsE+vrFOrqFenpFujoF+fnGObmGeXlGuTkG+PjHOLiHeHhHuDgH9/fIN7eId3dItzcI9vbJNraJdnZJtjYJ9fXKNbWKdXVKtTUK9PTLNLSLdHRLtDQL8/PMM7OMc3NMszMM8vLNMrKNcnJNsjIN8fHOMbGOcXFOsTEO8PDPMLCPcHBPsDAP7+/QL6+Qb29Qry8Q7u7RLq6Rbm5Rri4R7e3SLa2SbW1SrS0S7OzTLKyTbGxTrCwT6+vUK6uUa2tUqysU6urVKqqVampVqioV6enWKamWaWlWqSkW6OjXKKiXaGhXqCgX5+fYJ6eYZ2dYpycY5ubZJqaZZmZZpiYZ5eXaJaWaZWVapSUa5OTbJKSbZGRbpCQb4+PcI6OcY2NcoyMc4uLdIqKdYmJdoiId4eHeIaGeYWFeoSEe4ODfIKCfYGBfoCAf39/gH5+gX19gnx8g3t7hHp6hXl5hnh4h3d3iHZ2iXV1inR0i3NzjHJyjXFxjnBwj29vkG5ukW1tkmxsk2trlGpqlWlplmhol2dnmGZmmWVlmmRkm2NjnGJinWFhnmBgn19foF5eoV1dolxco1tbpFpapVlZplhYp1dXqFZWqVVVqlRUq1NTrFJSrVFRrlBQr09PsE5OsU1NskxMs0tLtEpKtUlJtkhIt0dHuEZGuUVFukREu0NDvEJCvUFBvkBAvz8/wD4+wT09wjw8wzs7xDo6xTk5xjg4xzc3yDY2yTU1yjQ0yzMzzDIyzTExzjAwzy8v0C4u0S0t0iws0ysr1Coq1Skp1igo1ycn2CYm2SUl2iQk2yMj3CIi3SEh3iAg3x8f4B4e4R0d4hwc4xsb5Boa5RkZ5hgY5xcX6BYW6RUV6hQU6xMT7BIS7RER7hAQ7w8P8A4O8Q0N8gwM8wsL9AoK9QkJ9ggI9wcH+AYG+QUF+gQE+wMD/AIC/QEB/gAA/6djfpDD/FhZAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AP//AP7+Af39Avz8A/v7BPr6Bfn5Bvj4B/f3CPb2CfX1CvT0C/PzDPLyDfHxDvDwD+/vEO7uEe3tEuzsE+vrFOrqFenpFujoF+fnGObmGeXlGuTkG+PjHOLiHeHhHuDgH9/fIN7eId3dItzcI9vbJNraJdnZJtjYJ9fXKNbWKdXVKtTUK9PTLNLSLdHRLtDQL8/PMM7OMc3NMszMM8vLNMrKNcnJNsjIN8fHOMbGOcXFOsTEO8PDPMLCPcHBPsDAP7+/QL6+Qb29Qry8Q7u7RLq6Rbm5Rri4R7e3SLa2SbW1SrS0S7OzTLKyTbGxTrCwT6+vUK6uUa2tUqysU6urVKqqVampVqioV6enWKamWaWlWqSkW6OjXKKiXaGhXqCgX5+fYJ6eYZ2dYpycY5ubZJqaZZmZZpiYZ5eXaJaWaZWVapSUa5OTbJKSbZGRbpCQb4+PcI6OcY2NcoyMc4uLdIqKdYmJdoiId4eHeIaGeYWFeoSEe4ODfIKCfYGBfoCAf39/gH5+gX19gnx8g3t7hHp6hXl5hnh4h3d3iHZ2iXV1inR0i3NzjHJyjXFxjnBwj29vkG5ukW1tkmxsk2trlGpqlWlplmhol2dnmGZmmWVlmmRkm2NjnGJinWFhnmBgn19foF5eoV1dolxco1tbpFpapVlZplhYp1dXqFZWqVVVqlRUq1NTrFJSrVFRrlBQr09PsE5OsU1NskxMs0tLtEpKtUlJtkhIt0dHuEZGuUVFukREu0NDvEJCvUFBvkBAvz8/wD4+wT09wjw8wzs7xDo6xTk5xjg4xzc3yDY2yTU1yjQ0yzMzzDIyzTExzjAwzy8v0C4u0S0t0iws0ysr1Coq1Skp1igo1ycn2CYm2SUl2iQk2yMj3CIi3SEh3iAg3x8f4B4e4R0d4hwc4xsb5Boa5RkZ5hgY5xcX6BYW6RUV6hQU6xMT7BIS7RER7hAQ7w8P8A4O8Q0N8gwM8wsL9AoK9QkJ9ggI9wcH+AYG+QUF+gQE+wMD/AIC/QEB/gAA/6djfpDD/FhZAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AP//AP7+Af39Avz8A/v7BPr6Bfn5Bvj4B/f3CPb2CfX1CvT0C/PzDPLyDfHxDvDwD+/vEO7uEe3tEuzsE+vrFOrqFenpFujoF+fnGObmGeXlGuTkG+PjHOLiHeHhHuDgH9/fIN7eId3dItzcI9vbJNraJdnZJtjYJ9fXKNbWKdXVKtTUK9PTLNLSLdHRLtDQL8/PMM7OMc3NMszMM8vLNMrKNcnJNsjIN8fHOMbGOcXFOsTEO8PDPMLCPcHBPsDAP7+/QL6+Qb29Qry8Q7u7RLq6Rbm5Rri4R7e3SLa2SbW1SrS0S7OzTLKyTbGxTrCwT6+vUK6uUa2tUqysU6urVKqqVampVqioV6enWKamWaWlWqSkW6OjXKKiXaGhXqCgX5+fYJ6eYZ2dYpycY5ubZJqaZZmZZpiYZ5eXaJaWaZWVapSUa5OTbJKSbZGRbpCQb4+PcI6OcY2NcoyMc4uLdIqKdYmJdoiId4eHeIaGeYWFeoSEe4ODfIKCfYGBfoCAf39/gH5+gX19gnx8g3t7hHp6hXl5hnh4h3d3iHZ2iXV1inR0i3NzjHJyjXFxjnBwj29vkG5ukW1tkmxsk2trlGpqlWlplmhol2dnmGZmmWVlmmRkm2NjnGJinWFhnmBgn19foF5eoV1dolxco1tbpFpapVlZplhYp1dXqFZWqVVVqlRUq1NTrFJSrVFRrlBQr09PsE5OsU1NskxMs0tLtEpKtUlJtkhIt0dHuEZGuUVFukREu0NDvEJCvUFBvkBAvz8/wD4+wT09wjw8wzs7xDo6xTk5xjg4xzc3yDY2yTU1yjQ0yzMzzDIyzTExzjAwzy8v0C4u0S0t0iws0ysr1Coq1Skp1igo1ycn2CYm2SUl2iQk2yMj3CIi3SEh3iAg3x8f4B4e4R0d4hwc4xsb5Boa5RkZ5hgY5xcX6BYW6RUV6hQU6xMT7BIS7RER7hAQ7w8P8A4O8Q0N8gwM8wsL9AoK9QkJ9ggI9wcH+AYG+QUF+gQE+wMD/AIC/QEB/gAA/6djfpDD/FhZAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAADDElEQVR4nAEBA/78AP//AP7+Af39Avz8A/v7BPr6Bfn5Bvj4B/f3CPb2CfX1CvT0C/PzDPLyDfHxDvDwD+/vEO7uEe3tEuzsE+vrFOrqFenpFujoF+fnGObmGeXlGuTkG+PjHOLiHeHhHuDgH9/fIN7eId3dItzcI9vbJNraJdnZJtjYJ9fXKNbWKdXVKtTUK9PTLNLSLdHRLtDQL8/PMM7OMc3NMszMM8vLNMrKNcnJNsjIN8fHOMbGOcXFOsTEO8PDPMLCPcHBPsDAP7+/QL6+Qb29Qry8Q7u7RLq6Rbm5Rri4R7e3SLa2SbW1SrS0S7OzTLKyTbGxTrCwT6+vUK6uUa2tUqysU6urVKqqVampVqioV6enWKamWaWlWqSkW6OjXKKiXaGhXqCgX5+fYJ6eYZ2dYpycY5ubZJqaZZmZZpiYZ5eXaJaWaZWVapSUa5OTbJKSbZGRbpCQb4+PcI6OcY2NcoyMc4uLdIqKdYmJdoiId4eHeIaGeYWFeoSEe4ODfIKCfYGBfoCAf39/gH5+gX19gnx8g3t7hHp6hXl5hnh4h3d3iHZ2iXV1inR0i3NzjHJyjXFxjnBwj29vkG5ukW1tkmxsk2trlGpqlWlplmhol2dnmGZmmWVlmmRkm2NjnGJinWFhnmBgn19foF5eoV1dolxco1tbpFpapVlZplhYp1dXqFZWqVVVqlRUq1NTrFJSrVFRrlBQr09PsE5OsU1NskxMs0tLtEpKtUlJtkhIt0dHuEZGuUVFukREu0NDvEJCvUFBvkBAvz8/wD4+wT09wjw8wzs7xDo6xTk5xjg4xzc3yDY2yTU1yjQ0yzMzzDIyzTExzjAwzy8v0C4u0S0t0iws0ysr1Coq1Skp1igo1ycn2CYm2SUl2iQk2yMj3CIi3SEh3iAg3x8f4B4e4R0d4hwc4xsb5Boa5RkZ5hgY5xcX6BYW6RUV6hQU6xMT7BIS7RER7hAQ7w8P8A4O8Q0N8gwM8wsL9AoK9QkJ9ggI9wcH+AYG+QUF+gQE+wMD/AIC/QEB/gAA/6djfpDD/FhZAAAAAElFTkSuQmCC" /></g></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L0,0" /></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L5.555556,0" /></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,3.111111" /></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L3.833333,4.5" /></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(-4, -2.25)"><path stroke-linecap="square" d="M0,0 L8,0 L8,4.5 L0,4.5 L0,2.777778" /></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,0.73638 -2.734687,1.410792 -2.294438,1.932862" /></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C0.552285,3 1.069713,2.850762 1.514157,2.590412" /></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-0.36819 2.933672,-0.720888 2.812312,-1.046797" /></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.184095,-3 -0.364317,-2.983418 -0.539254,-2.951666" /></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C0,3 0,3 0,3" /></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C0.36819,3 0.720888,2.933672 1.046797,2.812312" /></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C0.73638,3 1.410792,2.734687 1.932862,2.294438" /></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.104569,3 2.069713,2.403046 2.590412,1.514157" /></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.472759,3 2.69765,1.938749 2.951666,0.539254" /></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-0.184095 2.983418,-0.364317 2.951666,-0.539254" /></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-0.552285 2.850762,-1.069713 2.590412,-1.514157" /></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-0.920475 2.585449,-1.744126 1.932862,-2.294438" /></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.288664 2.18748,-2.387555 1.046797,-2.812312" /></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C0,-3 0,-3 0,-3" /></g></g></g></svg>

27
examples/doc_signalO.hs Normal file
View file

@ -0,0 +1,27 @@
#!/usr/bin/env stack
-- stack runghc --package reanimate
module Main(main) where
import Reanimate
import Reanimate.Scene
import Reanimate.Builtin.Documentation
import Control.Lens
import Control.Monad
main :: IO ()
main = reanimate $ docEnv $ scene $ do
objs <- waitOn $ replicateM 3 $ do
obj1 <- newObject $ mkCircle 1
oModifyS obj1 $ oEasing .= id
oModifyS obj1 $ oRightX .= screenRight
fork $ oShowWith obj1 oFadeIn
fork $ oTweenS obj1 2 $ \t ->
oLeftX %= \origin -> fromToS origin screenLeft t
wait 1
oHideWith obj1 oFadeOut
wait (-1.5)
return obj1
dur <- queryNow
wait (-dur)
forM_ objs $ \obj -> do
signalO obj dur $ curveS 2

13
examples/doc_signalS.hs Executable file
View file

@ -0,0 +1,13 @@
#!/usr/bin/env stack
-- stack runghc --package reanimate
module Main(main) where
import Reanimate
import Reanimate.Builtin.Documentation
main :: IO ()
main = reanimate $ docEnv $ playThenReverseA $ scene $ do
sprite <- fork $ newSpriteA $ drawCircle
signalS sprite 1 (curveS 2)
wait 1
signalS sprite 1 (powerS 2)

13
examples/doc_simpleIcon.hs Executable file
View file

@ -0,0 +1,13 @@
#!/usr/bin/env stack
-- stack runghc --package reanimate
module Main(main) where
import Reanimate
import Reanimate.External
import Codec.Picture.Types
main :: IO ()
main = reanimate $ staticFrame 1 $
let icon = "cplusplus" in mkGroup
[ mkBackgroundPixel (promotePixel $ simpleIconColor icon)
, withFillOpacity 1 $ simpleIcon icon ]

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><circle /></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><circle r="0.5" /></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><circle r="1" /></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><circle r="1.5" /></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><circle r="2" /></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><circle r="2.5" /></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><circle r="3" /></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><circle r="3.5" /></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><circle r="4" /></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><circle r="4.5" /></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAClUlEQVR4nHXRW6cqYQAA0G9muquUpCRJJIlsEolIREREREREREREDxERET1EREREREQkIhKRSCKJJElKSulmqpk5DJv9cn7CsgBhNhMWE2E1EjYDbtfjDh3u/MFcWsyt+XrUH6/q7VOifgUakL+CsmdI+ghL7hHxLSq6xoSXuOCc4J+SvGOKe0hz9hn2Lsva5pibPGNdoK+KtGWJuihT5hVkVkWmNXhSh8cNaNSEhi0waIN+B/S6oNsDnT5oD0BrCJojqDGG6hO4NoWrM6QyR8oLSmlJLa5ohTU9v2HktszsjpXZs9MHTurITZ54iTM/fhHErsLoTRS5i8MPSegpDb5kAVTuRxW+t9L7UXm+ajemcWFaJ/7jwHV2XG8jDFbCaCFMZsJsIixGwmogbHrcrsMdP7hTi7k0mFv99ag+XuXbp0D9cjQgewWlz5DkERbfI6JbVHiNCS5x/jnBOyW5xxTnkGbvM6xdlrnNMTZ5+rpAWxWpyxJlUUZIP0z6IdIP/uOHSD9M+hHSTykvqKUlrbiiF9aM/IaZ27KyO3Zmz0kfuKkjL3niJ86C+EUYu4qiN3HkLgk/pKGnLPiSB1CFH1X63irvR+35atyY1oX9OHGdA9fbcYONMFoJk+VvPvGbj5P5mEf99ao+PuWbzEeDsldI+gxLHhHxPSq6xYTXuOCS4J+TvFOKe0xzDhn2Psva5ZjbPGNToK+LtFWJuixTFhVkXkVmNXhahycNaNyERi0wbINBB/S7oNcD3T7oDEB7CFojqDmGGhO4PoVrM6Q6RyoLSnlJLa1oxTW9sGHkt8zcjpXdszMHTvrITZ14yTM/cRHEr8LYTRS9iyMPSfgpDb1kQZT0v5W+j8r7VXsw0o//+ok//n/CrH6kwe5bLgAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAClUlEQVR4nHXRW6cqYQAA0G9muquUpCRJJIlsEolIREREREREREREDxERET1EREREREQkIhKRSCKJJElKSulmqpk5DJv9cn7CsgBhNhMWE2E1EjYDbtfjDh3u/MFcWsyt+XrUH6/q7VOifgUakL+CsmdI+ghL7hHxLSq6xoSXuOCc4J+SvGOKe0hz9hn2Lsva5pibPGNdoK+KtGWJuihT5hVkVkWmNXhSh8cNaNSEhi0waIN+B/S6oNsDnT5oD0BrCJojqDGG6hO4NoWrM6QyR8oLSmlJLa5ohTU9v2HktszsjpXZs9MHTurITZ54iTM/fhHErsLoTRS5i8MPSegpDb5kAVTuRxW+t9L7UXm+ajemcWFaJ/7jwHV2XG8jDFbCaCFMZsJsIixGwmogbHrcrsMdP7hTi7k0mFv99ag+XuXbp0D9cjQgewWlz5DkERbfI6JbVHiNCS5x/jnBOyW5xxTnkGbvM6xdlrnNMTZ5+rpAWxWpyxJlUUZIP0z6IdIP/uOHSD9M+hHSTykvqKUlrbiiF9aM/IaZ27KyO3Zmz0kfuKkjL3niJ86C+EUYu4qiN3HkLgk/pKGnLPiSB1CFH1X63irvR+35atyY1oX9OHGdA9fbcYONMFoJk+VvPvGbj5P5mEf99ao+PuWbzEeDsldI+gxLHhHxPSq6xYTXuOCS4J+TvFOKe0xzDhn2Psva5ZjbPGNToK+LtFWJuixTFhVkXkVmNXhahycNaNyERi0wbINBB/S7oNcD3T7oDEB7CFojqDmGGhO4PoVrM6Q6RyoLSnlJLa1oxTW9sGHkt8zcjpXdszMHTvrITZ14yTM/cRHEr8LYTRS9iyMPSfgpDb1kQZT0v5W+j8r7VXsw0o//+ok//n/CrH6kwe5bLgAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAClUlEQVR4nHXRW6cqYQAA0G9muquUpCRJJIlsEolIREREREREREREDxERET1EREREREQkIhKRSCKJJElKSulmqpk5DJv9cn7CsgBhNhMWE2E1EjYDbtfjDh3u/MFcWsyt+XrUH6/q7VOifgUakL+CsmdI+ghL7hHxLSq6xoSXuOCc4J+SvGOKe0hz9hn2Lsva5pibPGNdoK+KtGWJuihT5hVkVkWmNXhSh8cNaNSEhi0waIN+B/S6oNsDnT5oD0BrCJojqDGG6hO4NoWrM6QyR8oLSmlJLa5ohTU9v2HktszsjpXZs9MHTurITZ54iTM/fhHErsLoTRS5i8MPSegpDb5kAVTuRxW+t9L7UXm+ajemcWFaJ/7jwHV2XG8jDFbCaCFMZsJsIixGwmogbHrcrsMdP7hTi7k0mFv99ag+XuXbp0D9cjQgewWlz5DkERbfI6JbVHiNCS5x/jnBOyW5xxTnkGbvM6xdlrnNMTZ5+rpAWxWpyxJlUUZIP0z6IdIP/uOHSD9M+hHSTykvqKUlrbiiF9aM/IaZ27KyO3Zmz0kfuKkjL3niJ86C+EUYu4qiN3HkLgk/pKGnLPiSB1CFH1X63irvR+35atyY1oX9OHGdA9fbcYONMFoJk+VvPvGbj5P5mEf99ao+PuWbzEeDsldI+gxLHhHxPSq6xYTXuOCS4J+TvFOKe0xzDhn2Psva5ZjbPGNToK+LtFWJuixTFhVkXkVmNXhahycNaNyERi0wbINBB/S7oNcD3T7oDEB7CFojqDmGGhO4PoVrM6Q6RyoLSnlJLa1oxTW9sGHkt8zcjpXdszMHTvrITZ14yTM/cRHEr8LYTRS9iyMPSfgpDb1kQZT0v5W+j8r7VXsw0o//+ok//n/CrH6kwe5bLgAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAClUlEQVR4nHXRW6cqYQAA0G9muquUpCRJJIlsEolIREREREREREREDxERET1EREREREQkIhKRSCKJJElKSulmqpk5DJv9cn7CsgBhNhMWE2E1EjYDbtfjDh3u/MFcWsyt+XrUH6/q7VOifgUakL+CsmdI+ghL7hHxLSq6xoSXuOCc4J+SvGOKe0hz9hn2Lsva5pibPGNdoK+KtGWJuihT5hVkVkWmNXhSh8cNaNSEhi0waIN+B/S6oNsDnT5oD0BrCJojqDGG6hO4NoWrM6QyR8oLSmlJLa5ohTU9v2HktszsjpXZs9MHTurITZ54iTM/fhHErsLoTRS5i8MPSegpDb5kAVTuRxW+t9L7UXm+ajemcWFaJ/7jwHV2XG8jDFbCaCFMZsJsIixGwmogbHrcrsMdP7hTi7k0mFv99ag+XuXbp0D9cjQgewWlz5DkERbfI6JbVHiNCS5x/jnBOyW5xxTnkGbvM6xdlrnNMTZ5+rpAWxWpyxJlUUZIP0z6IdIP/uOHSD9M+hHSTykvqKUlrbiiF9aM/IaZ27KyO3Zmz0kfuKkjL3niJ86C+EUYu4qiN3HkLgk/pKGnLPiSB1CFH1X63irvR+35atyY1oX9OHGdA9fbcYONMFoJk+VvPvGbj5P5mEf99ao+PuWbzEeDsldI+gxLHhHxPSq6xYTXuOCS4J+TvFOKe0xzDhn2Psva5ZjbPGNToK+LtFWJuixTFhVkXkVmNXhahycNaNyERi0wbINBB/S7oNcD3T7oDEB7CFojqDmGGhO4PoVrM6Q6RyoLSnlJLa1oxTW9sGHkt8zcjpXdszMHTvrITZ14yTM/cRHEr8LYTRS9iyMPSfgpDb1kQZT0v5W+j8r7VXsw0o//+ok//n/CrH6kwe5bLgAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAClUlEQVR4nHXRW6cqYQAA0G9muquUpCRJJIlsEolIREREREREREREDxERET1EREREREQkIhKRSCKJJElKSulmqpk5DJv9cn7CsgBhNhMWE2E1EjYDbtfjDh3u/MFcWsyt+XrUH6/q7VOifgUakL+CsmdI+ghL7hHxLSq6xoSXuOCc4J+SvGOKe0hz9hn2Lsva5pibPGNdoK+KtGWJuihT5hVkVkWmNXhSh8cNaNSEhi0waIN+B/S6oNsDnT5oD0BrCJojqDGG6hO4NoWrM6QyR8oLSmlJLa5ohTU9v2HktszsjpXZs9MHTurITZ54iTM/fhHErsLoTRS5i8MPSegpDb5kAVTuRxW+t9L7UXm+ajemcWFaJ/7jwHV2XG8jDFbCaCFMZsJsIixGwmogbHrcrsMdP7hTi7k0mFv99ag+XuXbp0D9cjQgewWlz5DkERbfI6JbVHiNCS5x/jnBOyW5xxTnkGbvM6xdlrnNMTZ5+rpAWxWpyxJlUUZIP0z6IdIP/uOHSD9M+hHSTykvqKUlrbiiF9aM/IaZ27KyO3Zmz0kfuKkjL3niJ86C+EUYu4qiN3HkLgk/pKGnLPiSB1CFH1X63irvR+35atyY1oX9OHGdA9fbcYONMFoJk+VvPvGbj5P5mEf99ao+PuWbzEeDsldI+gxLHhHxPSq6xYTXuOCS4J+TvFOKe0xzDhn2Psva5ZjbPGNToK+LtFWJuixTFhVkXkVmNXhahycNaNyERi0wbINBB/S7oNcD3T7oDEB7CFojqDmGGhO4PoVrM6Q6RyoLSnlJLa1oxTW9sGHkt8zcjpXdszMHTvrITZ14yTM/cRHEr8LYTRS9iyMPSfgpDb1kQZT0v5W+j8r7VXsw0o//+ok//n/CrH6kwe5bLgAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAClUlEQVR4nHXRW6cqYQAA0G9muquUpCRJJIlsEolIREREREREREREDxERET1EREREREQkIhKRSCKJJElKSulmqpk5DJv9cn7CsgBhNhMWE2E1EjYDbtfjDh3u/MFcWsyt+XrUH6/q7VOifgUakL+CsmdI+ghL7hHxLSq6xoSXuOCc4J+SvGOKe0hz9hn2Lsva5pibPGNdoK+KtGWJuihT5hVkVkWmNXhSh8cNaNSEhi0waIN+B/S6oNsDnT5oD0BrCJojqDGG6hO4NoWrM6QyR8oLSmlJLa5ohTU9v2HktszsjpXZs9MHTurITZ54iTM/fhHErsLoTRS5i8MPSegpDb5kAVTuRxW+t9L7UXm+ajemcWFaJ/7jwHV2XG8jDFbCaCFMZsJsIixGwmogbHrcrsMdP7hTi7k0mFv99ag+XuXbp0D9cjQgewWlz5DkERbfI6JbVHiNCS5x/jnBOyW5xxTnkGbvM6xdlrnNMTZ5+rpAWxWpyxJlUUZIP0z6IdIP/uOHSD9M+hHSTykvqKUlrbiiF9aM/IaZ27KyO3Zmz0kfuKkjL3niJ86C+EUYu4qiN3HkLgk/pKGnLPiSB1CFH1X63irvR+35atyY1oX9OHGdA9fbcYONMFoJk+VvPvGbj5P5mEf99ao+PuWbzEeDsldI+gxLHhHxPSq6xYTXuOCS4J+TvFOKe0xzDhn2Psva5ZjbPGNToK+LtFWJuixTFhVkXkVmNXhahycNaNyERi0wbINBB/S7oNcD3T7oDEB7CFojqDmGGhO4PoVrM6Q6RyoLSnlJLa1oxTW9sGHkt8zcjpXdszMHTvrITZ14yTM/cRHEr8LYTRS9iyMPSfgpDb1kQZT0v5W+j8r7VXsw0o//+ok//n/CrH6kwe5bLgAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAClUlEQVR4nHXRW6cqYQAA0G9muquUpCRJJIlsEolIREREREREREREDxERET1EREREREQkIhKRSCKJJElKSulmqpk5DJv9cn7CsgBhNhMWE2E1EjYDbtfjDh3u/MFcWsyt+XrUH6/q7VOifgUakL+CsmdI+ghL7hHxLSq6xoSXuOCc4J+SvGOKe0hz9hn2Lsva5pibPGNdoK+KtGWJuihT5hVkVkWmNXhSh8cNaNSEhi0waIN+B/S6oNsDnT5oD0BrCJojqDGG6hO4NoWrM6QyR8oLSmlJLa5ohTU9v2HktszsjpXZs9MHTurITZ54iTM/fhHErsLoTRS5i8MPSegpDb5kAVTuRxW+t9L7UXm+ajemcWFaJ/7jwHV2XG8jDFbCaCFMZsJsIixGwmogbHrcrsMdP7hTi7k0mFv99ag+XuXbp0D9cjQgewWlz5DkERbfI6JbVHiNCS5x/jnBOyW5xxTnkGbvM6xdlrnNMTZ5+rpAWxWpyxJlUUZIP0z6IdIP/uOHSD9M+hHSTykvqKUlrbiiF9aM/IaZ27KyO3Zmz0kfuKkjL3niJ86C+EUYu4qiN3HkLgk/pKGnLPiSB1CFH1X63irvR+35atyY1oX9OHGdA9fbcYONMFoJk+VvPvGbj5P5mEf99ao+PuWbzEeDsldI+gxLHhHxPSq6xYTXuOCS4J+TvFOKe0xzDhn2Psva5ZjbPGNToK+LtFWJuixTFhVkXkVmNXhahycNaNyERi0wbINBB/S7oNcD3T7oDEB7CFojqDmGGhO4PoVrM6Q6RyoLSnlJLa1oxTW9sGHkt8zcjpXdszMHTvrITZ14yTM/cRHEr8LYTRS9iyMPSfgpDb1kQZT0v5W+j8r7VXsw0o//+ok//n/CrH6kwe5bLgAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAClUlEQVR4nHXRW6cqYQAA0G9muquUpCRJJIlsEolIREREREREREREDxERET1EREREREQkIhKRSCKJJElKSulmqpk5DJv9cn7CsgBhNhMWE2E1EjYDbtfjDh3u/MFcWsyt+XrUH6/q7VOifgUakL+CsmdI+ghL7hHxLSq6xoSXuOCc4J+SvGOKe0hz9hn2Lsva5pibPGNdoK+KtGWJuihT5hVkVkWmNXhSh8cNaNSEhi0waIN+B/S6oNsDnT5oD0BrCJojqDGG6hO4NoWrM6QyR8oLSmlJLa5ohTU9v2HktszsjpXZs9MHTurITZ54iTM/fhHErsLoTRS5i8MPSegpDb5kAVTuRxW+t9L7UXm+ajemcWFaJ/7jwHV2XG8jDFbCaCFMZsJsIixGwmogbHrcrsMdP7hTi7k0mFv99ag+XuXbp0D9cjQgewWlz5DkERbfI6JbVHiNCS5x/jnBOyW5xxTnkGbvM6xdlrnNMTZ5+rpAWxWpyxJlUUZIP0z6IdIP/uOHSD9M+hHSTykvqKUlrbiiF9aM/IaZ27KyO3Zmz0kfuKkjL3niJ86C+EUYu4qiN3HkLgk/pKGnLPiSB1CFH1X63irvR+35atyY1oX9OHGdA9fbcYONMFoJk+VvPvGbj5P5mEf99ao+PuWbzEeDsldI+gxLHhHxPSq6xYTXuOCS4J+TvFOKe0xzDhn2Psva5ZjbPGNToK+LtFWJuixTFhVkXkVmNXhahycNaNyERi0wbINBB/S7oNcD3T7oDEB7CFojqDmGGhO4PoVrM6Q6RyoLSnlJLa1oxTW9sGHkt8zcjpXdszMHTvrITZ14yTM/cRHEr8LYTRS9iyMPSfgpDb1kQZT0v5W+j8r7VXsw0o//+ok//n/CrH6kwe5bLgAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAClUlEQVR4nHXRW6cqYQAA0G9muquUpCRJJIlsEolIREREREREREREDxERET1EREREREQkIhKRSCKJJElKSulmqpk5DJv9cn7CsgBhNhMWE2E1EjYDbtfjDh3u/MFcWsyt+XrUH6/q7VOifgUakL+CsmdI+ghL7hHxLSq6xoSXuOCc4J+SvGOKe0hz9hn2Lsva5pibPGNdoK+KtGWJuihT5hVkVkWmNXhSh8cNaNSEhi0waIN+B/S6oNsDnT5oD0BrCJojqDGG6hO4NoWrM6QyR8oLSmlJLa5ohTU9v2HktszsjpXZs9MHTurITZ54iTM/fhHErsLoTRS5i8MPSegpDb5kAVTuRxW+t9L7UXm+ajemcWFaJ/7jwHV2XG8jDFbCaCFMZsJsIixGwmogbHrcrsMdP7hTi7k0mFv99ag+XuXbp0D9cjQgewWlz5DkERbfI6JbVHiNCS5x/jnBOyW5xxTnkGbvM6xdlrnNMTZ5+rpAWxWpyxJlUUZIP0z6IdIP/uOHSD9M+hHSTykvqKUlrbiiF9aM/IaZ27KyO3Zmz0kfuKkjL3niJ86C+EUYu4qiN3HkLgk/pKGnLPiSB1CFH1X63irvR+35atyY1oX9OHGdA9fbcYONMFoJk+VvPvGbj5P5mEf99ao+PuWbzEeDsldI+gxLHhHxPSq6xYTXuOCS4J+TvFOKe0xzDhn2Psva5ZjbPGNToK+LtFWJuixTFhVkXkVmNXhahycNaNyERi0wbINBB/S7oNcD3T7oDEB7CFojqDmGGhO4PoVrM6Q6RyoLSnlJLa1oxTW9sGHkt8zcjpXdszMHTvrITZ14yTM/cRHEr8LYTRS9iyMPSfgpDb1kQZT0v5W+j8r7VXsw0o//+ok//n/CrH6kwe5bLgAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g transform="translate(0, 0)"><g transform="scale(0.0625, 9)"><g transform="scale(1, -1)"><image width="256" height="1" x="-128" y="-0.5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAABCAIAAAC+O+cgAAAClUlEQVR4nHXRW6cqYQAA0G9muquUpCRJJIlsEolIREREREREREREDxERET1EREREREQkIhKRSCKJJElKSulmqpk5DJv9cn7CsgBhNhMWE2E1EjYDbtfjDh3u/MFcWsyt+XrUH6/q7VOifgUakL+CsmdI+ghL7hHxLSq6xoSXuOCc4J+SvGOKe0hz9hn2Lsva5pibPGNdoK+KtGWJuihT5hVkVkWmNXhSh8cNaNSEhi0waIN+B/S6oNsDnT5oD0BrCJojqDGG6hO4NoWrM6QyR8oLSmlJLa5ohTU9v2HktszsjpXZs9MHTurITZ54iTM/fhHErsLoTRS5i8MPSegpDb5kAVTuRxW+t9L7UXm+ajemcWFaJ/7jwHV2XG8jDFbCaCFMZsJsIixGwmogbHrcrsMdP7hTi7k0mFv99ag+XuXbp0D9cjQgewWlz5DkERbfI6JbVHiNCS5x/jnBOyW5xxTnkGbvM6xdlrnNMTZ5+rpAWxWpyxJlUUZIP0z6IdIP/uOHSD9M+hHSTykvqKUlrbiiF9aM/IaZ27KyO3Zmz0kfuKkjL3niJ86C+EUYu4qiN3HkLgk/pKGnLPiSB1CFH1X63irvR+35atyY1oX9OHGdA9fbcYONMFoJk+VvPvGbj5P5mEf99ao+PuWbzEeDsldI+gxLHhHxPSq6xYTXuOCS4J+TvFOKe0xzDhn2Psva5ZjbPGNToK+LtFWJuixTFhVkXkVmNXhahycNaNyERi0wbINBB/S7oNcD3T7oDEB7CFojqDmGGhO4PoVrM6Q6RyoLSnlJLa1oxTW9sGHkt8zcjpXdszMHTvrITZ14yTM/cRHEr8LYTRS9iyMPSfgpDb1kQZT0v5W+j8r7VXsw0o//+ok//n/CrH6kwe5bLgAAAABJRU5ErkJggg==" /></g></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(0, 0)"><path d="M-3,0 C-3,0 -3,0 -3,0" /></g><g transform="translate(0, 0)"><g transform="translate(0, 9)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 C-3,0 -3,0 -3,0" /></g></g></g></g></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(0, -0.5)"><path d="M-3,0 C-3,0.36819 -2.933672,0.720888 -2.812312,1.046797" /></g><g transform="translate(0, -0.5)"><g transform="translate(0, 9)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 C-3,0.36819 -2.933672,0.720888 -2.812312,1.046797" /></g></g></g></g></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(0, -2)"><path d="M-3,0 C-3,1.472759 -1.938749,2.69765 -0.539254,2.951666" /></g><g transform="translate(0, -2)"><g transform="translate(0, 9)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 C-3,1.472759 -1.938749,2.69765 -0.539254,2.951666" /></g></g></g></g></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(0, -4.5)"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,0 3,0 3,0" /></g><g transform="translate(0, -4.5)"><g transform="translate(0, 9)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,0 3,0 3,0" /></g></g></g></g></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(0, -7)"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.184095,-3 -0.364317,-2.983418 -0.539254,-2.951666" /></g><g transform="translate(0, -7)"><g transform="translate(0, 9)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.184095,-3 -0.364317,-2.983418 -0.539254,-2.951666" /></g></g></g></g></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(0, -8.5)"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-1.288664,-3 -2.387555,-2.18748 -2.812312,-1.046797" /></g><g transform="translate(0, -8.5)"><g transform="translate(0, 9)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-1.288664,-3 -2.387555,-2.18748 -2.812312,-1.046797" /></g></g></g></g></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(0, -9)"><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g><g transform="translate(0, -9)"><g transform="translate(0, 9)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g></g></g></g></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(0, -9)"><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g><g transform="translate(0, -9)"><g transform="translate(0, 9)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g></g></g></g></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(0, -9)"><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g><g transform="translate(0, -9)"><g transform="translate(0, 9)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g></g></g></g></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(0, -9)"><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g><g transform="translate(0, -9)"><g transform="translate(0, 9)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g></g></g></g></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(0, 0)"><path d="M-3,0 C-3,0 -3,0 -3,0" /></g><g transform="translate(0, 0)"><g transform="translate(16, 0)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 C-3,0 -3,0 -3,0" /></g></g></g></g></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(-0.888889, 0)"><path d="M-3,0 C-3,0.36819 -2.933672,0.720888 -2.812312,1.046797" /></g><g transform="translate(-0.888889, 0)"><g transform="translate(16, 0)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 C-3,0.36819 -2.933672,0.720888 -2.812312,1.046797" /></g></g></g></g></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(-3.555556, 0)"><path d="M-3,0 C-3,1.472759 -1.938749,2.69765 -0.539254,2.951666" /></g><g transform="translate(-3.555556, 0)"><g transform="translate(16, 0)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 C-3,1.472759 -1.938749,2.69765 -0.539254,2.951666" /></g></g></g></g></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(-8, 0)"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,0 3,0 3,0" /></g><g transform="translate(-8, 0)"><g transform="translate(16, 0)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,0 3,0 3,0" /></g></g></g></g></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(-12.444444, 0)"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.184095,-3 -0.364317,-2.983418 -0.539254,-2.951666" /></g><g transform="translate(-12.444444, 0)"><g transform="translate(16, 0)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.184095,-3 -0.364317,-2.983418 -0.539254,-2.951666" /></g></g></g></g></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(-15.111111, 0)"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-1.288664,-3 -2.387555,-2.18748 -2.812312,-1.046797" /></g><g transform="translate(-15.111111, 0)"><g transform="translate(16, 0)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-1.288664,-3 -2.387555,-2.18748 -2.812312,-1.046797" /></g></g></g></g></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(-16, 0)"><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g><g transform="translate(-16, 0)"><g transform="translate(16, 0)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g></g></g></g></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(-16, 0)"><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g><g transform="translate(-16, 0)"><g transform="translate(16, 0)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g></g></g></g></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(-16, 0)"><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g><g transform="translate(-16, 0)"><g transform="translate(16, 0)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g></g></g></g></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(-16, 0)"><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g><g transform="translate(-16, 0)"><g transform="translate(16, 0)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g></g></g></g></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(0, 0)"><path d="M-3,0 C-3,0 -3,0 -3,0" /></g><g transform="translate(0, 0)"><g transform="translate(0, -9)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 C-3,0 -3,0 -3,0" /></g></g></g></g></g></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(0, 0.5)"><path d="M-3,0 C-3,0.36819 -2.933672,0.720888 -2.812312,1.046797" /></g><g transform="translate(0, 0.5)"><g transform="translate(0, -9)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 C-3,0.36819 -2.933672,0.720888 -2.812312,1.046797" /></g></g></g></g></g></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(0, 2)"><path d="M-3,0 C-3,1.472759 -1.938749,2.69765 -0.539254,2.951666" /></g><g transform="translate(0, 2)"><g transform="translate(0, -9)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 C-3,1.472759 -1.938749,2.69765 -0.539254,2.951666" /></g></g></g></g></g></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(0, 4.5)"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,0 3,0 3,0" /></g><g transform="translate(0, 4.5)"><g transform="translate(0, -9)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,0 3,0 3,0" /></g></g></g></g></g></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(0, 7)"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.184095,-3 -0.364317,-2.983418 -0.539254,-2.951666" /></g><g transform="translate(0, 7)"><g transform="translate(0, -9)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.184095,-3 -0.364317,-2.983418 -0.539254,-2.951666" /></g></g></g></g></g></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(0, 8.5)"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-1.288664,-3 -2.387555,-2.18748 -2.812312,-1.046797" /></g><g transform="translate(0, 8.5)"><g transform="translate(0, -9)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-1.288664,-3 -2.387555,-2.18748 -2.812312,-1.046797" /></g></g></g></g></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(0, 9)"><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g><g transform="translate(0, 9)"><g transform="translate(0, -9)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g></g></g></g></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(0, 9)"><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g><g transform="translate(0, 9)"><g transform="translate(0, -9)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g></g></g></g></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(0, 9)"><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g><g transform="translate(0, 9)"><g transform="translate(0, -9)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g></g></g></g></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g><g transform="translate(0, 9)"><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g><g transform="translate(0, 9)"><g transform="translate(0, -9)"><g><g stroke-width="0" fill="#000000" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g transform="scale(-1, 1)"><path stroke="#FFFFFF" d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g></g></g></g></g></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path opacity="0" d="M-3,0 C-3,0 -3,0 -3,0" /></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path opacity="0.222222" d="M-3,0 C-3,0.73638 -2.734687,1.410792 -2.294438,1.932862" /></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path opacity="0.444444" d="M-3,0 C-3,1.472759 -1.938749,2.69765 -0.539254,2.951666" /></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path opacity="0.666667" d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C0.552285,3 1.069713,2.850762 1.514157,2.590412" /></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path opacity="0.888889" d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.288664,3 2.387555,2.18748 2.812312,1.046797" /></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-0.36819 2.933672,-0.720888 2.812312,-1.046797" /></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.104569 2.403046,-2.069713 1.514157,-2.590412" /></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path opacity="0.888889" d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.184095,-3 -0.364317,-2.983418 -0.539254,-2.951666" /></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path opacity="0.444444" d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.920475,-3 -1.744126,-2.585449 -2.294438,-1.932862" /></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path opacity="0" d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g></g></g></g></svg>

View file

@ -1,10 +0,0 @@
0<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,0 -3,0 -3,0" /></g></g></g></g></svg>
1<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,0.73638 -2.734687,1.410792 -2.294438,1.932862" /></g></g></g></g></svg>
2<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,1.472759 -1.938749,2.69765 -0.539254,2.951666" /></g></g></g></g></svg>
3<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C0.552285,3 1.069713,2.850762 1.514157,2.590412" /></g></g></g></g></svg>
4<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.288664,3 2.387555,2.18748 2.812312,1.046797" /></g></g></g></g></svg>
5<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="scale(1, -1)"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-0.36819 2.933672,-0.720888 2.812312,-1.046797" /></g></g></g></g></g></svg>
6<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="scale(1, -1)"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.104569 2.403046,-2.069713 1.514157,-2.590412" /></g></g></g></g></g></svg>
7<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="scale(1, -1)"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.184095,-3 -0.364317,-2.983418 -0.539254,-2.951666" /></g></g></g></g></g></svg>
8<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="scale(1, -1)"><path d="M-3,0 C-3,1.656854 -1.656854,3 0,3 C1.656854,3 3,1.656854 3,0 C3,-1.656854 1.656854,-3 0,-3 C-0.920475,-3 -1.744126,-2.585449 -2.294438,-1.932862" /></g></g></g></g></g></svg>
9<svg viewBox="-8 -4.5 16 9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" preserveAspectRatio="none"><g stroke-width="0.05" transform="scale(1, -1)"><g><g stroke-width="0" fill="#FFFFFF" transform="translate(-8, -4.5)" fill-opacity="1"><rect width="16" height="9" /></g><g stroke-width="0.1" stroke="#000000" fill-opacity="0"><g><g transform="scale(1, -1)"><path d="M-3,0 a3 3 0 1 0 6,0 3 3 0 1 0 -6,0" /></g></g></g></g></g></svg>

Some files were not shown because too many files have changed in this diff Show more