word-games-theme 0.2.8 → 0.2.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_data/theme/colors.json +5 -0
- data/_includes/WordPointTables/table.html +10 -0
- data/_includes/adsense/adsense.html +4 -0
- data/_includes/header/index.html +2 -2
- data/_includes/section/commonPage.html +7 -3
- data/_includes/section/feature.html +1 -0
- data/_includes/section/home.html +10 -4
- data/_includes/section/home2.html +11 -5
- data/_includes/section/news.html +1 -0
- data/_layouts/default.html +0 -2
- data/_layouts/page2.html +1 -0
- data/assets/css/blog.css +8 -1
- data/assets/css/home.css +4 -0
- data/assets/images/header.svg +1 -0
- data/assets/images/hero-media-illustration-dark.svg +1 -0
- data/assets/images/hero-media-illustration-light.svg +1 -0
- data/assets/images/left_obj_01 (1).svg +5 -0
- data/assets/images/left_obj_01.svg +19 -0
- data/assets/images/puzzle.png +0 -0
- data/assets/images/star.svg +8 -1
- data/assets/images/test.png +0 -0
- data/assets/images/vectorpaint.svg +8 -0
- data/assets/js/WordPointTables.js +231 -0
- data/assets/js/X-letter.js +1 -1
- metadata +14 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 41aee26b67921d3bdee447ff6771de82acd9200429329c3e501ee144b2f94c41
|
4
|
+
data.tar.gz: a1644da4d840b72c0d2e2c5456a3dd9bb086fcff597df9c4841b8c4b3fde9fab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 234964b2a0903ee392f9a27d5de124a72fbee4d4219f721ce5a859cb9b42323b3f3426d28e2ea23cb2e4c7df534843ce8985c28a0ee6c88f62c492c2484121ae
|
7
|
+
data.tar.gz: 8d9325d019261be776693b90e26dec41a0b41c754edd8dd5530de9704a0236ad3e0ca68f90c4cf4d9a0f514f23964a1538e695c4f06afaa1c596d955c088f6a9
|
data/_includes/header/index.html
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
{% assign lang = page.lang %}
|
2
2
|
{% assign dataToShow = site.data.header[lang].data %}
|
3
|
+
{%- assign CustomColor = site.data.theme.colors -%}
|
3
4
|
|
4
5
|
<!-- header starts -->
|
5
6
|
<header id="header">
|
6
7
|
<!-- navigation startss -->
|
7
|
-
<nav class="navbar navbar-expand-lg navbar-dark
|
8
|
+
<nav class="navbar navbar-expand-lg navbar-dark" style="background: {{CustomColor.navbarBg}}">
|
8
9
|
<a class="navbar-brand" href="/" title="words with letters">
|
9
10
|
<img src="{{ site.favicon | relative_url }}" alt="{{site.name}}-logo" style="width:35px; height:35px;">
|
10
11
|
</a>
|
11
12
|
|
12
|
-
|
13
13
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent">
|
14
14
|
<i class="bi bi-list bi-2x bars"></i>
|
15
15
|
</button>
|
@@ -2,6 +2,7 @@
|
|
2
2
|
{% assign lang = page.lang %}
|
3
3
|
{% assign dataToShow = site.data.[page.folderName][lang][file] %}
|
4
4
|
|
5
|
+
{%- assign CustomColor = site.data.theme.colors -%}
|
5
6
|
<!-- start commonPage as LandingPage -->
|
6
7
|
<div class="container" id="containerWd">
|
7
8
|
<section class="sticky_nav">
|
@@ -16,9 +17,12 @@
|
|
16
17
|
<div class="serachSection2">
|
17
18
|
<div class="position-relative serachBox">
|
18
19
|
<form action="" id='form'>
|
19
|
-
<input
|
20
|
-
maxlength="15" value
|
21
|
-
|
20
|
+
<input style="border-radius: {{CustomColor.inputFieldBorder}}" type="text"
|
21
|
+
placeholder="Enter up to 15 letters?" class="txtBox" value name="search" maxlength="15" value
|
22
|
+
required>
|
23
|
+
<input
|
24
|
+
style="border-radius: {{CustomColor.inputFieldBorder}}; background-color: {{CustomColor.inputButtonBg}};"
|
25
|
+
type="submit" class="serachBtn" id="serach" value>
|
22
26
|
<div class="dictonaryDropdown">
|
23
27
|
<select class="form-select select_dropDown2" name="dictonary"
|
24
28
|
aria-label="Default select example">
|
data/_includes/section/home.html
CHANGED
@@ -2,6 +2,8 @@
|
|
2
2
|
{% assign lang = page.lang %}
|
3
3
|
{% assign dataToShow = site.data.[page.folderName][lang][file] %}
|
4
4
|
|
5
|
+
{%- assign CustomColor = site.data.theme.colors -%}
|
6
|
+
|
5
7
|
<!-- starting landingPage -->
|
6
8
|
<div class="pageHeaderBg">
|
7
9
|
<div class="container">
|
@@ -18,9 +20,12 @@
|
|
18
20
|
<div class="serachSection">
|
19
21
|
<div class="position-relative serachBox">
|
20
22
|
<form action="/result" id='form' method="GET">
|
21
|
-
<input
|
22
|
-
maxlength="15"
|
23
|
-
|
23
|
+
<input style="border-radius: {{CustomColor.inputFieldBorder}}" type="text"
|
24
|
+
placeholder="Enter up to 15 letters?" class="txtBox" value name="search" maxlength="15"
|
25
|
+
required>
|
26
|
+
<input style="border-radius: {{CustomColor.inputFieldBorder}};
|
27
|
+
background-color: {{CustomColor.inputButtonBg}};" type="submit" class="serachBtn" id="serach"
|
28
|
+
value>
|
24
29
|
<div class="dictonaryDropdown">
|
25
30
|
<select class="form-select select_dropDown2" name="dictonary"
|
26
31
|
aria-label="Default select example">
|
@@ -66,7 +71,8 @@
|
|
66
71
|
<input type="text" id="wordLength" placeholder="Length" name="length">
|
67
72
|
<div style="margin-top: 1.2rem;">
|
68
73
|
<input type="submit" value="Apply" class="btn-info w-100 text-white"
|
69
|
-
style="background:
|
74
|
+
style="background-color: {{CustomColor.inputButtonBg}};">
|
75
|
+
|
70
76
|
</div>
|
71
77
|
</div>
|
72
78
|
|
@@ -2,6 +2,7 @@
|
|
2
2
|
{% assign lang = page.lang %}
|
3
3
|
{% assign dataToShow = site.data.[page.folderName][lang][file] %}
|
4
4
|
|
5
|
+
{%- assign CustomColor = site.data.theme.colors -%}
|
5
6
|
<!-- starting landingPage -->
|
6
7
|
<div class="pageHeaderBg">
|
7
8
|
<div class="container">
|
@@ -18,9 +19,13 @@
|
|
18
19
|
<div class="serachSection">
|
19
20
|
<div class="position-relative serachBox">
|
20
21
|
<form action="{{page.url}}/result" id='form' method="GET">
|
21
|
-
<input
|
22
|
-
maxlength="15"
|
23
|
-
|
22
|
+
<input style="border-radius: {{CustomColor.inputFieldBorder}}" type="text"
|
23
|
+
placeholder="Enter up to 15 letters?" class="txtBox" value name="search" maxlength="15"
|
24
|
+
required>
|
25
|
+
<input
|
26
|
+
style="border-radius: {{CustomColor.inputFieldBorder}}; background-color: {{CustomColor.inputButtonBg}};"
|
27
|
+
type="submit" class="serachBtn" id="serach" value>
|
28
|
+
|
24
29
|
<div class="dictonaryDropdown">
|
25
30
|
<select class="form-select select_dropDown2" name="dictonary"
|
26
31
|
aria-label="Default select example">
|
@@ -63,10 +68,9 @@
|
|
63
68
|
<input type="text" class="filter_val" id="wordLength" placeholder="Length" name="length"
|
64
69
|
value="">
|
65
70
|
</div>
|
66
|
-
|
67
71
|
<div style="margin-top: 1.2rem;">
|
68
72
|
<input type="submit" value="Apply" class="btn-info w-100 text-white"
|
69
|
-
style="background:
|
73
|
+
style="background-color: {{CustomColor.inputButtonBg}};">
|
70
74
|
</div>
|
71
75
|
</div>
|
72
76
|
</form>
|
@@ -74,6 +78,8 @@
|
|
74
78
|
</div>
|
75
79
|
</div>
|
76
80
|
</div>
|
81
|
+
|
82
|
+
|
77
83
|
<!-- close landingPage -->
|
78
84
|
<script>
|
79
85
|
const advancedFilter = document.querySelector('.advancedFilter')
|
data/_includes/section/news.html
CHANGED
data/_layouts/default.html
CHANGED
@@ -19,7 +19,6 @@
|
|
19
19
|
|
20
20
|
{% include section/feature.html %}
|
21
21
|
|
22
|
-
|
23
22
|
{%- if dataToShow.faqList -%}
|
24
23
|
{%- if dataToShow.faqList.first.Question !='' -%}
|
25
24
|
{% include section/news.html %}
|
@@ -35,7 +34,6 @@
|
|
35
34
|
{%- include Rating/rating.html -%}
|
36
35
|
{%- include footer/index.html -%}
|
37
36
|
|
38
|
-
|
39
37
|
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
|
40
38
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js"></script>
|
41
39
|
|
data/_layouts/page2.html
CHANGED
data/assets/css/blog.css
CHANGED
@@ -443,6 +443,14 @@ header {
|
|
443
443
|
.socialIons > .item-lists2 {
|
444
444
|
justify-content: center;
|
445
445
|
}
|
446
|
+
.socialIons > .item-lists2 {
|
447
|
+
flex-direction: row;
|
448
|
+
align-items: center;
|
449
|
+
}
|
450
|
+
.socialIons > .item-lists2 > li {
|
451
|
+
padding-right: 30px;
|
452
|
+
margin: 0;
|
453
|
+
}
|
446
454
|
}
|
447
455
|
|
448
456
|
@media (max-width: 768px) {
|
@@ -470,7 +478,6 @@ header {
|
|
470
478
|
margin: 18px 0;
|
471
479
|
text-align: left;
|
472
480
|
}
|
473
|
-
|
474
481
|
.navbar {
|
475
482
|
padding-left: 7% !important;
|
476
483
|
padding-right: 7% !important;
|
data/assets/css/home.css
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
<svg width="1440" height="324" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient x1="50%" y1="0%" x2="50%" y2="70.462%" id="a"><stop stop-color="#535FD7" stop-opacity=".08" offset="0%"/><stop stop-color="#F9F9F9" stop-opacity="0" offset="100%"/></linearGradient><linearGradient x1="98.887%" y1="48.887%" x2="1.113%" y2="48.887%" id="b"><stop stop-color="#FFF" offset="0%"/><stop stop-color="#FFF" stop-opacity="0" offset="100%"/></linearGradient><linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="c"><stop stop-color="#FFBC48" offset="0%"/><stop stop-color="#FFBC48" stop-opacity=".48" offset="100%"/></linearGradient><linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="d"><stop stop-color="#FE7E1F" offset="0%"/><stop stop-color="#FE7E1F" stop-opacity="0" offset="100%"/></linearGradient><linearGradient x1="6.251%" y1="50%" x2="25.292%" y2="102.06%" id="e"><stop stop-color="#FE7E1F" stop-opacity=".11" offset="0%"/><stop stop-color="#FE7E1F" offset="100%"/></linearGradient></defs><g fill="none" fill-rule="evenodd"><path fill="url(#a)" d="M60 219h1440v439H60z" transform="translate(-60 -219)"/><path d="M561 351c22.708-59.794 128.225-106.128 316.55-139C717.696 119.333 612.179 73 561 73c-76.768 0-139 62.232-139 139s104.938 228.691 139 139z" fill="url(#b)" transform="translate(-60 -219)"/><path d="M175.832 318.348c18.707 110.547 305.856-85.055 139-139-166.855-53.946-62.232-139-139-139s-139 62.232-139 139c0 76.767 120.293 28.453 139 139z" fill="url(#b)" transform="rotate(-164 156.396 90.713)"/><g transform="translate(872 -221)"><path d="M508 528c185.316 72 210-94.02 210-210s-94.02-210-210-210-173.035 101-210 210 24.684 138 210 210z" fill="url(#c)"/><circle fill="url(#d)" cx="508" cy="318" r="120"/><path d="M699.233 420c185.316 72 210-94.02 210-210s-94.02-210-210-210-173.035 101-210 210 24.683 138 210 210z" fill="url(#e)"/><path d="M142.155 251.626c-.93.393-1.983.745-3.115 1.04a42.301 42.301 0 0 1-3.592.718c-2.483.415-5.11.562-7.478.654-2.413.053-4.555.009-6.153-.11-.292-1.26.48-1.203 1.135-1.291.646-.095 1.171-.333.416-2.153 1.267.792 1.414 4.198 3.684 2.732-.032-2.311-1.222-1.893-2.25-1.85 1-2.06 2.35-1.258 3.73-.511 1.267.693 2.594 1.355 3.64-.202.07-.141.155-.294.274-.47-.089.178-.181.33-.275.47-.696 1.396.915 1.177 3.495.452 2.847-.77 6.814-2.16 10.21-2.482-.5 1.226-1.859 2.22-3.72 3.003m-77.218-31.511c-.467.486-2.151.446-3.493-1.555-.777.68-1.763.735-2.89.354.351-.807.934-.858 1.205-1.9-.501-.336-.718.24-.927.865-1.622-3.32 3.296-1.78 2.612.681 3.278.082 3.962 1.066 3.493 1.555m-9.541 2.388c1.192-1.973 4.994.195 5.449 1.427-1.984 1.44-2.689-.527-5.449-1.427M469.855 92.526a80.53 80.53 0 0 0-2.239-11.893 86.453 86.453 0 0 0-.652-2.287c-.458-1.509-.963-3.086-1.51-4.533a87.754 87.754 0 0 0-1.78-4.42c-.639-1.49-1.322-2.868-2.053-4.305-1.46-2.879-3.113-5.6-4.958-8.341a82.028 82.028 0 0 0-13.704-15.385c-1.666-1.456-3.43-2.812-5.223-4.095l-.675-.477-.619-.417-1.225-.796a70.417 70.417 0 0 0-2.494-1.51 60.765 60.765 0 0 0-10.104-4.607c-6.75-2.356-13.353-3.332-19.459-3.448-6.118-.116-11.757.615-16.883 1.666-5.132 1.054-9.761 2.427-13.967 3.658a41.17 41.17 0 0 0-3.17 1.107c-1 .423-2 .876-2.97 1.37a62.726 62.726 0 0 0-5.563 3.372c-3.61 2.41-7.052 5.305-10.262 8.176-6.441 5.785-11.983 11.799-16.894 15.464-.553.41-1.17-1.659-2.263-1.09-2.776 1.507-5.726 5.014-8.426 8.629-2.716 3.675-5.18 7.362-7.293 9.215-2.48-.418-3.719 2.338-4.867 4.463-1.163 2.11-2.227 3.66-4.64.82a50.43 50.43 0 0 1-3.013 5.175c-1.052 1.59-2.143 3.094-3.27 4.45-1.127 1.367-2.29 2.59-3.47 3.755a48.999 48.999 0 0 1-3.585 3.27c-.605.5-1.213.98-1.823 1.439-.608.464-1.211.945-1.818 1.389a73.019 73.019 0 0 1-3.62 2.509c-1.202.764-2.362 1.59-3.51 2.321l-3.332 2.154c.192 2.716 2.475 4.685 1.542 5.138-1.364 1.048-2.184-3.293-3.582-2.235.143 2.518 2.34 3.489 1.302 4.091-.596-1.144-1.203-2.168-1.858-2.789.401 1.816 1.492 2.415.994 3.066-.435.133-.243.992-.526 1.293-.805-.434-1.362-3.897-2.228-3.796.716 2.228.164 2.03-.431 1.867-.593-.16-1.241-.31-.677 1.934.712-.32 1.36.381 1.969 1.56-2.81.855-5.627 3.412-8.141 5.952a67.274 67.274 0 0 1-1.887 1.785c-.614.573-1.207 1.13-1.805 1.595-1.194.936-2.378 1.565-3.598 1.656.21 2.465-.502 3.237-1.4 3.85-.449.307-.942.574-1.377.99-.434.422-.806 1.02-1.01 1.938-1.708-3.97-2.53-2.203-2.544-1.066.525-.145 1.058-.207 1.79 1.477-.222 2.16-1.466 2.41-2.873 2.36-1.402-.07-2.963-.514-3.709.125-.826.714.266 5.705-1.174 5.72-1.692.015-2.74 1.059-3.62 2.35-.877 1.29-1.608 2.913-2.72 4.209a62.767 62.767 0 0 1-5.19 5.31c-1.91 1.756-3.918 3.43-6.067 5.13-4.264 3.362-8.924 6.656-13.596 9.897l-3.478 2.42-3.417 2.403c-2.29 1.592-4.431 3.19-6.528 4.773-1.041.792-2.01 1.6-2.984 2.394a53.748 53.748 0 0 0-2.766 2.407c-1.715 1.635-3.305 3.238-4.554 4.942-1.636-.61-3.293-.448-4.9.17-1.609.616-3.202 1.623-4.677 2.753-1.485 1.104-2.874 2.28-4.054 3.208-1.187.909-2.174 1.544-2.832 1.573-1.927.08-1.166 2.651-4.32 4.066-5.504 2.441-9.554 4.7-14.213-.6-1.03 1.713-2.472 2.786-4.088 3.453-1.612.685-3.384 1.006-5.094 1.243-.854.125-1.69.238-2.482.382-.796.132-1.55.288-2.235.518-1.371.454-2.467 1.209-3.119 2.533 1.096.364 2.349-.014 3.193 1.424a118.02 118.02 0 0 1-3.784.91l-.967-4.179c-1.517.583-3.037.914-4.54 1.101-1.502.194-2.97.317-4.408.442-1.435.132-2.82.35-4.164.755a11 11 0 0 0-3.885 2.047c.625.16 1.574 1.533.866 2.03-1.7-.07-4.149 1.798-4.701-1.488 1.236-1.354 3.078 2.857 3.29-.462-1.345-.659-2.439-1.922-4.119-1.605.11 1.605.706 3.903-.012 4.328-3.597-.708-6.847-.296-9.803.423a81.722 81.722 0 0 0-4.22 1.154c-1.335.37-2.592.7-3.746.892.165-.664 1.32-4.176-.119-4.287-2.79 3.756-7.19 2.769-11.344 1.501-4.187-1.249-8.06-2.655-11.012.68-.11-2.808-1.397-3.656-2.906-3.434-1.504.232-3.25 1.628-4.153 3.45.427-2.31-.016-3.607-.927-4.34-.912-.731-2.305-.897-3.827-1.018-1.363.01.28 3.049-1.977 2.844a22.319 22.319 0 0 0-2.426-2.066 18.46 18.46 0 0 0-2.493-1.516c-1.695-.922-3.495-1.519-5.37-2.175-1.872-.662-3.877-1.258-5.937-2.169-2.085-.855-4.219-2.028-6.409-3.6-1.89 1.816-.238 4.344-1.883 3.853-2.013.33-3.943-.877-5.512-2.375-1.56-1.525-2.832-3.22-3.747-3.939.91.751-1.236 1.477-.551-.345 1.556-1.587 2.006-.572 2.657.445.637 1.026 1.45 2.12 3.443.654-.818-.535-2.246-2.27-3.715-3.662-1.468-1.405-3.073-2.368-4.497-1.327-.91 1.548.181 1.303 1.072 1.168.887-.127 1.574-.116-.065 2.028-.939-.164-1.647-.407-2.24-.747-.59-.345-1.078-.768-1.605-1.264-.528-.496-1.094-1.065-1.841-1.708a27.228 27.228 0 0 0-2.867-2.247c1.047-1.026 1.975-1.08 3.11-3.031-1.702 1.165-3.172 1.242-4.785 1.068-1.62-.17-3.452-.486-5.998-.125.63 1.263 1.38 2.38 2.173 3.448.398.53.81 1.044 1.238 1.539.437.48.887.946 1.348 1.398.925.9 1.873 1.774 2.88 2.576 1.008.799 2.04 1.574 3.085 2.354 4.24 3.065 8.66 6.013 13.118 10.84-6.12-3.142-10.69-5.824-14.718-8.697a78.118 78.118 0 0 1-2.899-2.244c-.945-.759-1.825-1.602-2.715-2.452-1.787-1.69-3.433-3.656-5.097-5.874-.902.887-1.89 2.397-2.626 1.983 1.156-2.022.443-3.593-.859-4.835-1.298-1.243-3.147-2.25-4.342-2.947 2.79 3.318-.42.375-2.026 1.026.895.303 1.12 1.97 1.069 3.344-.05 1.266-.35 2.267-.676 1.637.685 1.733 2.41 3.028 4.046 4.278 1.705 1.295 3.399 2.428 3.906 4 .248.726-2.23 2.033-1.43 2.984-.065-.087 2.029-2.506 2.568-2.072 1.417 1.143.806 4.161 2.19 5.675 1.377 1.436 4.595 1.747 6.125 2.892 7.453 5.604 15.86 11.697 25.476 16.78 9.659 5.176 20.123 9.161 29.945 11.269 6.596 1.436 13.138 2.145 19.45 2.455 6.318.31 12.41.227 18.26.08 5.851-.149 11.466-.353 16.9-.332 5.437.052 10.823.257 16.262.965a71.631 71.631 0 0 0-6.785.506c-2.323.234-4.682.628-7.108.983-4.804.775-9.962 1.682-15.402 2.371-5.439.685-11.182 1.13-17.056.927-5.865-.2-11.866-1.052-17.615-2.89-1.44 3.536-3.04-.917-4.05 2.837 6.091.64 13.656 1.18 20.85 1.571 7.212.415 14.067.726 19.21 1.506.769 2.85-3.223-.444-2.484 2.397 1.63.639 5.048-2.452 4.962 1.663-11.275.66-24.41.292-38.021-1.381a250.398 250.398 0 0 1-20.455-3.386c-1.675-.323-3.375-.73-5.034-1.092-1.657-.353-3.319-.765-4.954-1.161l-2.436-.586-2.43-.634c-1.603-.425-3.197-.813-4.736-1.232 2.094 1.56 4.346 2.897 6.708 4.124 2.334 1.155 4.834 2.26 7.443 3.196 2.636.99 5.385 1.845 8.358 2.755l4.568 1.31c1.588.461 3.181.867 4.874 1.34 7.204 1.961 14.92 3.12 22.508 3.651 7.584.527 15.039.442 22.008.107l2.603-.13 2.535-.162c1.696-.1 3.33-.225 4.943-.346l9.279-.727c5.963-.44 11.445-.857 16.254-.76 1.347-1.56 5.83-3.196 10.497-4.348 2.34-.56 4.72-1.03 6.819-1.2 2.09-.198 3.885-.143 5.033.323 6.794-2.314 13.9-5.145 21.021-8.311 7.125-3.164 14.266-6.66 21.204-10.231 3.514-1.788 6.793-3.567 10.094-5.262 3.107-1.667 6.29-3.284 9.109-4.713l2.157-1.06 2.087-1a119.468 119.468 0 0 1 4.008-1.81c.649-.271 1.29-.539 1.924-.802.621-.252 1.24-.494 1.856-.725a62.787 62.787 0 0 1 3.623-1.247c-.19.426-.867.617-.303 1.495a40.734 40.734 0 0 0 5.636-2.54 36.896 36.896 0 0 0 5.13-3.347c1.496-1.182 2.912-2.536 4.006-3.925 1.059-1.362 1.91-2.846 2.433-4.403-2.027-1.849-2.76 2.658-4.83.678.69-.933 1.418-1.978 2.43-2.821a5.992 5.992 0 0 1 1.694-1.02 6.724 6.724 0 0 1 2.255-.44c.738 1.156.381 1.529 1.432 2.906l1.214-.887 1.14-.805 2.267-1.568 2.12-1.393c.702-.456 1.417-.926 2.047-1.303l1.94-1.2c.332-.213.628-.382.923-.554l.889-.524.884-.531c.296-.184.587-.36.848-.502a62.645 62.645 0 0 0 1.6-.94c.548-.348 1.015-.6 1.49-.887.476-.282.95-.59 1.412-.888a25.479 25.479 0 0 0 2.645-1.757 25.853 25.853 0 0 0 2.72-2.003c.953-.679 1.877-1.476 2.828-2.345 2.746-2.385 5.605-5.194 8.695-8.423.784-.785 1.587-1.586 2.388-2.443l1.217-1.303 1.262-1.293 5.28-5.593c3.686-3.848 7.666-8.127 12.037-12.539 2.172-2.283 4.455-4.483 6.812-6.893l3.616-3.547c1.229-1.21 2.48-2.451 3.757-3.649.945-.9 1.923-1.816 2.91-2.722l1.485-1.347 1.473-1.267c1.94-1.656 3.83-3.21 5.317-4.415 2.461-1.991 4.606-3.08 6.698-4.062 2.093-.978 4.12-1.86 6.514-3.372 3.057-1.919 6.56-4.773 10.838-7.16 2.118-1.177 4.443-2.257 6.874-2.971a26.13 26.13 0 0 1 3.73-.841c1.245-.147 2.562-.248 3.829-.16 2.194.092 4.608.761 7.097 1.864 2.491 1.1 5.031 2.662 7.436 4.552 2.413 1.88 4.726 4.06 6.875 6.268.547.544 1.048 1.11 1.58 1.648.523.542 1.067 1.062 1.557 1.591a36.56 36.56 0 0 0 1.53 1.5c.257.237.517.467.779.69.25.226.5.445.754.655a45.177 45.177 0 0 0 3.387 2.548 28.36 28.36 0 0 0 3.307 2.034c2.226 1.156 4.497 1.884 6.815 2.116 2.318.234 4.682-.03 7.049-.793 2.366-.759 4.732-2.018 7.02-3.68 2.274-1.65 4.402-3.668 6.418-5.905a67.184 67.184 0 0 0 2.86-3.407c.909-1.153 1.781-2.32 2.62-3.467l2.4-3.291a66.434 66.434 0 0 1 2.228-2.884c1.451-1.749 2.846-3.096 4.278-3.689.92-6.89.958-13.78.223-20.218" fill="url(#c)"/></g></g></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg width="733" height="749" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient x1="74.95%" y1="53.242%" x2="1.425%" y2="3.15%" id="a"><stop stop-color="#7C85E1" stop-opacity="0" offset="0%"/><stop stop-color="#2E358E" stop-opacity=".858" offset="40.849%"/><stop stop-color="#7C85E1" offset="100%"/></linearGradient><linearGradient x1="74.95%" y1="53.242%" x2="2.797%" y2="52.227%" id="b"><stop stop-color="#7C85E1" stop-opacity="0" offset="0%"/><stop stop-color="#212880" offset="100%"/></linearGradient><linearGradient x1="74.95%" y1="53.242%" x2="1.425%" y2="3.15%" id="c"><stop stop-color="#7C85E1" stop-opacity="0" offset="0%"/><stop stop-color="#303790" stop-opacity=".84" offset="68.484%"/><stop stop-color="#7C85E1" offset="100%"/></linearGradient><linearGradient x1="3.889%" y1="87.071%" x2="48.538%" y2="99.59%" id="d"><stop stop-color="#2FEAFC" offset="0%"/><stop stop-color="#2FEAFC" stop-opacity="0" offset="100%"/></linearGradient></defs><g fill="none" fill-rule="evenodd"><path d="M481.636 278.995c68.395-85.596 283.288 114.496 499.598 141.24 144.207 17.83 216.008.217 215.402-52.837l-27.273 441.597c-140.502-132.3-238.118-193.949-292.848-184.945-54.73 9.003-93.023 36.652-114.879 82.945 17.055-191.173-14.945-258.244-96-201.213-121.582 85.547-252.395-141.19-184-226.787z" fill="url(#a)" transform="rotate(6 839.799 360.69)"/><path d="M163.032 64.417c-75.639-76.513 250.091 34.532 466.402 61.276 144.207 17.83 230.337 13.541 258.39-12.866C689.066 243.045 561.308 302.457 504.55 291.06c-56.757-11.395-88.328 29.069-94.714 121.392 17.055-191.173-14.945-258.244-96-201.213-121.582 85.547-75.166-70.31-150.804-146.823z" fill="url(#b)" transform="rotate(6 529.928 52.472)"/><path d="M48.634 315.836c46.011 63.226 153.516-11.671 369.826 15.073 144.207 17.83 159.653 2.058 46.337-47.317-78.078 175.773-135.151 246.668-171.22 212.685-36.069-33.982-62.757-20.452-80.065 40.59 7.289-137.305-29.595-177.442-110.65-120.411-121.58 85.547-100.238-163.846-54.227-100.62z" fill="url(#c)" transform="rotate(6 286.017 237.5)"/><path d="M312.97 376.93c68.395-85.597 283.287 114.495 499.597 141.24 144.207 17.829 216.008.216 215.403-52.839l-79.92 257.496c-74.47-81.156-169.826-80.725-286.07 1.292-174.365 123.027-22.094-66.692-205.393-43.46C273.29 703.892 244.575 462.525 312.97 376.93z" fill="url(#b)" transform="rotate(-164 644.359 561.136)"/><path d="M416.989 422.148c-.092-.248.209-.673.073-.901.675-.18.746-.372 1.316-1.291.38.577-.898 1.106-1.389 2.192zm-1.012.11c-.757.639-1.194 2.703-2.519 2.696 1.089-1.43 1.528-2 1.374-2.702.437-.21.813-.185 1.457-1.176-.058.43-.38.98-.178 1.296-.295.297-.267.042-.134-.114zm7.37-9.568c-1.352.212 1.098-1.648 1.721-2.825-.017.296-.404.753-.072.895-.595.522-1.966 1.289-1.649 1.93zm108.472-67.015c-4.333-.065-9.052-1.347-13.518-1.092.917-.327 3.315-.294 5.983.005 2.669.29 5.579.853 7.535 1.087zM379.709 460.87c-.515.202-1.004.378-.964.035-2.478.939-3.006 1.85-5.433 2.603.258.35.665.594 1.605.439.686-.696 1.828-1.89 3.372-1.725-.063-.332.08-.637.59-.992.072.162.815-.112.83-.36zm-6.848 2.767c-2.006.387-.995 1.465.178.678.11.198.244.365 1.012.073-.026-.528-1.176-.213-1.19-.751zm18.424-10.526c.808-.272 2.799-2.057 2.506-2.623-.254.4-.911.913-1.483 1.4-.59.472-1.103.91-1.023 1.223zm3.736-3.625c1.351-1.167 3.925-3.778 2.99-3.745-.871 1.225-2.64 2.738-2.99 3.745zm-4.579 1.849c-.115.583-.634 1.248-1.334 1.938-.35.345-.746.696-1.158 1.047-.397.348-.946.717-1.411 1.065-.958.722-1.906 1.325-2.56 1.873-.648.558-1.025 1.019-.852 1.394 1.624-1.247 1.337-1.04 3.099-1.778-.827-.762 1.238-1.07 1.388-1.956.486-.32.487.035.876-.19.897-.986.516-1.213 2.373-2.177-.075-.48.464-.906 1.111-1.42.64-.521 1.418-1.105 1.877-1.824l-.221-.27c-.193.143-.377.272-.415.11-.75.805-.687 1.413-1.708 2.276-.218-.272-1.008.465-1.065-.088zm13.129-13.126c-.37-.384-1.048.095-1.545.074-.442.447-.87.905-1.335 1.338.319.449-.591 1.325-1.16 2.084-.369-.214-1.036-.011-.726-.762-.204.962-.691 2.286.259 1.938-.797.26-.5.746-.888 1.305.487-.185 3.347-3.171 1.165-1.57 2.138-1.578 2.485-2.917 4.23-4.407zm123.85-5.83c-.068.73 2.756-.991 2.799-1.296-1.321.59-1.085.453-2.799 1.297zm-87.544-53.474l-2.104 1.707c.256-.05 1.505-.945 2.69-1.914 1.181-.975 2.358-1.953 2.362-2.311-1.598 1.193-2.403 1.873-2.948 2.518zm24.973-19.628c2.483-.504 8.041-3.54 10.392-4.847a52.282 52.282 0 0 0-5.203 2.326l-2.485 1.218c-.847.428-1.733.865-2.704 1.303zm23.378-9.735c-.879.225-4.12.946-5.185 2.012.438-.203 1.255-.522 2.167-.86l2.755-.916c1.639-.541 2.501-.837.263-.236zm-8.11 99.332c-1.831-.136-4.944.006-8.239-.305-1.643-.098-3.321-.384-4.874-.681a25.678 25.678 0 0 1-4.102-1.242c1.553.34 2.933.7 4.246.902 1.315.18 2.55.426 3.797.5 1.247.082 2.512.238 3.866.222 1.36.026 2.821.04 4.458-.066-.066-.396-1.718.009-2.441-.115 5.046-.088 9.531-.72 13.636-1.536 4.106-.826 7.844-1.848 11.414-2.966 7.131-2.292 13.543-4.894 20.636-8.203 1.05-.627.399-.832.729-1.12a132.308 132.308 0 0 0 7.144-3.68c.063.996 1.427.21 2.299.104.982-.434-.657-.565.318-1.005-.245-.294-1.035.179-1.858.672 4.467-2.775 10.038-6.448 15.265-11.661 2.589-2.576 5.135-5.611 7.239-8.976 2.107-3.354 3.851-7.015 5.003-10.877-.25-.373.802-2.355.076-2.136 1.358-2.807 1.791-5.863 1.732-8.94-.066-3.093-.602-6.202-1.315-9.52-.284 1.063-.374-1.58-1.462-2.704-.427-1.01-.08-.535.161-.528-2.378-5.78-6.518-10.661-11.275-14.224-4.769-3.591-10.161-5.984-15.568-7.276-5.372-1.275-10.613-1.551-15.356-1.266-4.752.277-9.023 1.063-12.703 1.99-3.066.234-6.351.976-10.216 2.584-6.442 1.738-13.599 4.117-18.602 7.792-.246-.217.13-.422.537-.628-2.861 1.02-7.54 3.29-10.63 5.39-.722.41.637.163.418.77-.635.435-2.232.99-2.178 1.41-1.748.327 1.83-1.08.944-1.347-2.344.855-4.385 2.56-6.118 4.22-4.926 2.698-9.829 6.46-14.088 10.362-4.279 3.892-7.904 7.92-10.773 10.942-.127.789 1.388-.897.636.11-.489.393-.391.583-.267.764-1.02.887-.269-.481-1.133-.082-4.431 5.444-6.543 7.84-9.007 12.064.046-1.067-.42.476-.979.606-.561 1.4-.575 2.555-2.134 4.417-.498-.315 1.217-2.004 1.452-3.078-3.256 3.909-6.176 7.302-8.468 12.494.801.204 1.255-1.87 1.825-1.342-1.159 2.382-2.244 4.067-4.158 5.658-.083-.194.389-.634.218-.79.173.293-2.518 3.256-1.78 3.869-1.558 1.009-2.37 2.312-1.868 3.354-.857.584-1.886 1.734-2.554 1.715-.184.414.37.227-.411 1.173 1.621-.496 2.134-1.493 4.116-3.871.233-.743-.385-.05-.648-.59 1.199-1.103.682.2 1.901-.8 1.796-2.297 1.423-2.716 3.404-4.934.446 1.412-2.104 3.708-3.392 5.449-.138.655-1.208 2.553-1.128 2.534-.105.659-.677.459-.644-.08-2.235 2.765-1.724 3.362-1.59 4.242-.91.662-1.269.536-1.29-.186-.457.636-1.038 1.313-1.639 1.998-.61.68-1.268 1.354-1.826 2.019-1.116 1.33-1.919 2.582-1.571 3.556-.376.18-.574-.03-1.116.523.069 1.088-2.452 1.97-2.296 3.385-1.674.389-3.205 2.802-4.51 4.004l-.525-.704a43.884 43.884 0 0 0-2.434 2.28c-.87.76-1.72 1.568-2.692 2.298.832.006 1.672-.717 2.572-1.538.866-.827 1.581-1.748 2.542-2.378-1.873 2.324-4.598 4.75-7.438 6.693-2.886 1.979-6.061 3.74-9.967 5.279l3.276-1.694c1.017-.584 2.056-1.084 3.024-1.686.977-.59 1.973-1.152 2.933-1.831.48-.332.969-.67 1.469-1.013l1.464-1.152c-1.146.158-1.798 1.474-2.877 1.37-.984.968-2.873 2.289-4.885 3.293-.997.513-2.008.96-2.931 1.255-.914.307-1.676.533-2.22.552-1.319 1.323-5.772 2.442-10.872 2.957-2.026-.416 1.726-.345 1.748-.662-.171-.576-2.739.459-2.278-.41 2.66.044 2.514-.173 3.382.366-.011-.78 1.489-.223 1.561-.98 1.13-.16 1.026.155 1.111.429.302-.534.419-1.125 2.442-1.072-.159-.49-1.335-.392-2.515-.121-1.205.24-2.491.59-2.636.868-.664.005-1.411-.046-2.175-.088-.769-.05-1.523-.042-2.327-.104-1.626-.151-3.213-.201-4.762-.375-1.331-.376-1.174-.776-.963-1.166-.127.082-.478.05-.927-.16a9.098 9.098 0 0 1-1.427-.834c-.907-.65-1.487-1.335-.747-1.316-.831-.55-1.469-1.095-2.03-1.491-.55-.427-1.044-.721-1.455-1.106-.816-.753-1.65-1.405-2.573-2.718 1.632.934-.262-.47 1.466.177-.095-.64-1.187-2.045-1.715-3.072.333-.783 1.718.862 2.355.784-1.495-1.675 1.052.012-1.33-2.278.856.328 2.037 1.279.694-.536.282-.67 1.512 1.14 1.933.855.398-.477-.292-1.497.157-1.926.215-.393.804.33.951-.25l1.207.73c.401.239.873.4 1.299.599.448.172.842.41 1.317.522l1.372.38c1.85.404 3.725.563 5.621.35.933-.033 1.886-.263 2.815-.408.468-.098.938-.241 1.404-.354a11.56 11.56 0 0 0 1.393-.406c1.858-.543 3.682-1.39 5.478-2.223a39.036 39.036 0 0 0 7.83-5.17l.891-.763.919-.863 1.843-1.72c1.224-1.156 2.385-2.417 3.586-3.613 4.691-4.976 9.051-10.491 13.4-16.218 5.272-6.896 11.266-15.271 17.314-22.704 5.157-6.36 10.135-12.026 15.388-17.01a144.014 144.014 0 0 1 16.238-13.405c5.745-4.051 11.915-7.878 19.115-11.42 7.194-3.545 15.385-6.901 25.227-9.633 7.868-2.167 17.19-4.203 27.467-3.908 2.555.069 5.16.302 7.764.727 1.302.187 2.6.476 3.899.755 1.325.337 2.649.667 3.932 1.1a47.358 47.358 0 0 1 7.432 3.07 45.032 45.032 0 0 1 6.702 4.168c1.919 1.422 2.708 2.238 2.903 2.422.185.205-.267-.13-.998-.693-.721-.583-1.776-1.276-2.721-1.953l-2.252-1.431c-4.448-2.635-8.964-4.528-13.58-5.734-4.588-1.218-8.989-1.772-13.346-1.916-8.699-.273-16.912 1.095-25.133 3.418 1.982-.254 5.8-1.083 8.385-1.695a178.5 178.5 0 0 0-10.789 2.967c-1.817.557-3.659 1.113-5.492 1.748-1.848.592-3.684 1.264-5.522 1.935-7.355 2.678-14.53 5.987-20.754 9.52.247-.69 1.196-.825 2.631-1.766-5.082 2.054-8.383 4.85-13.906 8.203.93-.163 1.817-.741 2.878-1.493 1.056-.753 2.278-1.702 3.925-2.465.547-.297 1.261-.82 1.451-.63l-1.364.782c-5.484 3.684-10.949 7.624-15.984 11.828-5.028 4.19-9.65 8.673-13.392 13.17 2.967-3.09 6.453-6.217 10.084-9.408 3.647-3.192 7.545-6.364 11.442-9.678-.113.263-.218.52.195.292 7.26-5.185 14.689-9.335 21.868-12.838-9.501 5.044-19.079 10.787-28.008 18.278 4.748-3.06 9.377-7.128 15.769-10.552.758-.34.519-.584.416-.844 4.679-2.054 9.187-4.546 13.67-6.552a164.894 164.894 0 0 1 12.847-5.007c4.33-1.416 8.614-2.7 13.05-3.733 8.843-2.04 18.381-3.272 28.489-1.794 2.502.353 5.051.928 7.614 1.704a46.498 46.498 0 0 1 7.469 2.977c4.86 2.4 9.483 5.742 13.458 10.169a38.381 38.381 0 0 1 5.216 7.532c1.461 2.779 2.633 5.836 3.304 8.988.684 3.144 1.027 6.389.903 9.585a45.58 45.58 0 0 1-1.348 9.45c-.558 2.03-1.202 3.92-2.247 6.563a19.986 19.986 0 0 1-.698 1.538c-.273.5-.574.992-.871 1.487-.582.997-1.249 1.936-1.802 2.906-1.447 2.437-2.909 5.028-4.682 7.24-1.717 2.19-3.545 3.995-5.49 4.996-1.043 1.169-3.911 3.335-2.672 2.132 2.42-2.371 4.754-4.681 6.832-7.027 2.124-2.411 3.935-4.844 5.336-7.221 2.89-5.008 5.004-10.462 6.021-16.263.522-2.893.692-5.887.585-8.884-.1-3.001-.661-6.021-1.502-8.933-1.749-5.863-5.038-11.05-8.971-15.03a42.83 42.83 0 0 0-6.294-5.274 47.523 47.523 0 0 0-6.857-3.834c3.908 2.084 7.702 4.57 11.09 7.719 1.721 1.534 3.28 3.304 4.76 5.136 1.427 1.89 2.759 3.88 3.834 6.037 2.213 4.287 3.418 9.048 3.738 13.582a37.872 37.872 0 0 1-1.298 12.82c-1 3.636-2.529 7.499-4.474 11.015-1.925 3.517-4.286 6.706-6.552 9.102-5.098 5.399-10.928 9.73-16.88 13.338-5.973 3.613-12.062 6.542-18.12 9.196-6.095 2.67-12.473 5.102-19.22 6.818-6.726 1.718-13.885 2.7-21.142 2.25 1.64-.423 2.921-.46 3.703-.612zm-76.598-9.11c.432-.52 1.178.204.23.77-.05-.153.145-.398.019-.521-1.455 1.005.145.874-.987 1.734.204-1.172-.711.715-1.799 1.483.741-1.352 1.819-2.45 2.537-3.465zm13.547-20.431c.6-.27.864-1.275 1.884-2.245-.232 1.299-1.295 2.293-1.314 3.203-.871.656-.595-.638-.57-.958zm4.367-4.924c.175-.258.274-.22.368-.166.172-.617-.389-1.367.64-1.844.324.312-.865 1.31-.035 1.399-.426.598-.762.85-.973.61zm-.804 1.228c-.675.433.258-1.946.872-2.125.396.4-.752 1.493-.872 2.125zm3.198-5.402l.399.343c-.449.464-1.047 1.498-1.211.878.441-.482.335-.723.812-1.221zm5.609-6.65c.295-.26.423.054.744-.296-.024.576-1.375 1.682-1.304 2.218-.946.445.053-1.32.82-1.685l-.26-.236zm-1.433 2.114c-.525.388-2.344 2.512-1.989 3.068-.672.159-.747.35-1.316 1.258-.535-.11.201-.778-.06-1.01 1.611-1.043 2.212-3.66 3.365-3.316zm17.174-18.447c.976-.972.876.358 1.331.502-.845.658-1.522-.047-1.331-.502zm10.468-8.975c-.291.518-.976 1.088-1.924 1.693-.042-.49 1.464-1.612 1.924-1.693zm-21.115 17.159c-.037.235-.068.468.114.628-1.041-.1-2.638 4.22-3.168 2.49.741-.148 1.182-.844 1.597-1.553.427-.697.834-1.398 1.457-1.565zm24.705-19.646c-.504.755-2.172 1.827-3.205 3.073.333-.523.81-1.065.732-1.536 1.292-.62 1.591-1.444 2.473-1.537zm-22.073 16.608c.278-.132.557-.27.92-.615.519.172-.289.75-.055 1.009-.569.308-1.109.188-.865-.394zm-1.721 1.889c-.304-.225.854-.978 1.187-1.395.113.349-.27.853.076 1.133-.906.729-.892.062-1.263.262zm44.598-29.883c-.233.785-2.876 1.419-3.852 2.165.468-1.156 2.041-1.085 3.852-2.165zm.553-2.651c-.215.248-.232.51-.096.786-.698.252-1.381.537-2.066.82-.037-.913 1.279-.781 2.162-1.606zm26.012 79.694c3.078-1.791 9.08-3.365 15.613-6.697-2.928 1.848-10.578 4.818-15.613 6.697zm16.275-2.553c1.834-1.148 3.026-1.67 3.169-1.64.141.039-.778.648-3.169 1.64zm11.918-6.195c1.532-1.208 2.699-1.915 2.912-1.945.209-.044-.536.649-2.912 1.945zm-47.199-81.135c.036-.811 3.369-1.193 4.817-1.74.927-.057-.128.219-1.492.58-1.368.354-3.017.887-3.325 1.16zm22.931-6.693c-.418.283-1.561.375-2.716.453-1.137.109-2.285.21-2.662.538-.555-.2.645-.49 2.067-.694 1.423-.204 3.062-.32 3.311-.297zm2.54-.533c.366-.05.41.049.441.154 6.346-.55.084.906-.441-.154zm39.097 11.024c-2.015-1.28-3.331-2.222-3.479-2.418-.15-.196.941.276 3.479 2.418zm-6.99-4.508c-.75-.402-1.734-.8-2.791-1.263-1.076-.411-2.229-.883-3.386-1.276-2.295-.844-4.547-1.535-5.801-2.29 2.091.544 4.465 1.374 6.642 2.224 2.159.898 4.102 1.86 5.336 2.605zm15.025 62.455c-.951 1.64-.669 1.285.022.254.698-1.025 1.694-2.798 2.266-3.904 1.584-2.907 2.921-6.612 2.894-7.681-.3.806-.624 1.746-1.008 2.729-.413.962-.822 2.009-1.296 3.022a75.44 75.44 0 0 1-2.878 5.58z" fill="url(#d)" transform="rotate(6 465.273 232.939)"/><path fill-opacity=".24" fill="#535FD7" d="M113.696 9l1.812.833.492 1.765-.579 1.68-1.725.722-1.624-.82L111 11.599l.81-1.837z"/><path fill="#61EFFD" d="M43.314 43l2.899 1.334.787 2.823-.926 2.688L43.314 51l-2.6-1.31L39 47.156l1.295-2.94z"/><path fill="#7C85E1" d="M88.314 38l2.899 1.334.787 2.823-.926 2.688L88.314 46l-2.6-1.31L84 42.156l1.295-2.94z"/><path fill="#2FEAFC" d="M108.696 72l1.812.833.492 1.765-.579 1.68-1.725.722-1.624-.82L106 74.599l.81-1.837zm-44-12l1.812.833.492 1.765-.579 1.68-1.725.722-1.624-.82L62 62.599l.81-1.837z"/><path fill="#93F4FE" d="M64.696 4l1.812.833L67 6.598l-.579 1.68L64.696 9l-1.624-.82L62 6.599l.81-1.837z"/><path fill-opacity=".24" fill="#61EFFD" d="M121.696 43l1.812.833.492 1.765-.579 1.68-1.725.722-1.624-.82L119 45.599l.81-1.837z"/><path fill="#FFF" d="M171.618 63l1.087.5.295 1.059-.347 1.008-1.035.433-.975-.492-.643-.95.486-1.101z"/><path fill-opacity=".32" fill="#93F4FE" d="M616.696 604l1.812.833.492 1.765-.579 1.68-1.725.722-1.624-.82-1.072-1.582.81-1.837z"/><path fill="#182538" d="M690.696 546l1.812.833.492 1.765-.579 1.68-1.725.722-1.624-.82-1.072-1.582.81-1.837z"/><path fill="#93F4FE" d="M633.696 585l1.812.833.492 1.765-.579 1.68-1.725.722-1.624-.82-1.072-1.582.81-1.837z"/><path fill="#61EFFD" d="M606.314 311l2.899 1.334.787 2.823-.926 2.688-2.76 1.155-2.6-1.31-1.714-2.533 1.295-2.94zm33.382 8l1.812.833.492 1.765-.579 1.68-1.725.722-1.624-.82-1.072-1.582.81-1.837z"/><path fill="#7C85E1" d="M611.696 337l1.812.833.492 1.765-.579 1.68-1.725.722-1.624-.82-1.072-1.582.81-1.837z"/><path fill="#FFF" d="M595.618 605l1.087.5.295 1.059-.347 1.008-1.035.433-.975-.492-.643-.95.486-1.101z"/><path d="M427.409 523.063c.18-.377.52-.694.646-1.09.124-.396.326-.765.411-1.176.086-.412-.274-.997-.22-1.423.055-.426-.328-1.023-.297-1.462.03-.438.19-.825.208-1.27.02-.442.122-.854.139-1.3.015-.447.585-.668.604-1.115.018-.446-.65-1.18-.616-1.624.036-.442.425-.737.487-1.17.068-.49.187-.961.336-1.42.152-.457.699-.738.887-1.177.188-.441.263-.933.451-1.374.188-.44.14-.991.288-1.45.147-.453.605-.758.792-1.19.187-.431.033-1.027.26-1.442.228-.413.272-.917.543-1.31.268-.394 1.13-.489 1.444-.857.283-.33-.055-.98.283-1.284.337-.304 1.34-.258 1.704-.542.363-.286.062-.924.435-1.204.374-.28 1.037-.4 1.4-.682.362-.283 1.037-.393 1.36-.692.098-.09.713.246.63.344-.306.36-.264.908-.497 1.306-.236.399-.988.526-1.164.958-.177.432.207 1.149.08 1.603-.129.452-.402.83-.501 1.298-.1.466.007 1.033-.081 1.502-.086.47-.047 1.001-.136 1.468-.09.466-.431.812-.536 1.27-.105.459-.439.808-.575 1.25-.14.449.069 1.059-.11 1.487-.176.43-.32.876-.57 1.271-.252.396-.48.805-.836 1.153s-1.007.567-1.502.856c-.498.29-.76.684-1.076 1.053-.319.372-1.02.577-1.212 1.005-.19.429-.274.903-.389 1.362-.116.458-.065.985-.156 1.453-.08.42-.216.817-.317 1.228-.103.41-.174.831-.316 1.224-.14.394-.218.813-.408 1.188-.19.375-.556.682-.806 1.035-.25.353-.395.747-.723 1.073-.032.031-.363-.095-.344-.133" fill="#61EFFD"/><path d="M428.286 464.538c.342-.047.727.07 1.057-.033.33-.101.68-.138.994-.295.317-.157.503-.77.802-.965.3-.198.465-.845.75-1.067.286-.218.607-.322.884-.566.275-.246.58-.393.847-.651.267-.256.728.054.997-.2.269-.251.274-1.222.536-1.463.261-.245.658-.125.924-.356a5.4 5.4 0 0 1 .953-.645c.327-.184.816.032 1.162-.116.346-.144.633-.427.972-.583.341-.156.57-.558.883-.77.306-.207.763-.089 1.085-.265.324-.175.483-.69.821-.823.34-.138.58-.468.938-.568.356-.097 1.01.377 1.392.306.342-.065.362-.735.725-.756.364-.018 1.094.624 1.485.63.391.006.402-.662.793-.653.39.006.952.299 1.336.28.385-.018.958.268 1.33.213.111-.017.48.58.376.61-.382.116-.558.569-.899.754-.34.189-.987-.151-1.294.082-.307.233-.308 1.006-.606 1.273-.296.266-.665.4-.951.687-.287.287-.469.777-.754 1.076-.287.298-.518.708-.814 1-.296.293-.723.32-1.035.582-.313.262-.73.305-1.064.521-.338.223-.52.798-.881.981-.363.176-.714.386-1.11.488-.393.103-.79.208-1.228.193-.44-.018-.995-.34-1.486-.52-.492-.178-.883-.108-1.3-.114-.423-.005-.977-.405-1.344-.283-.37.12-.707.338-1.054.53-.344.195-.643.542-.99.748-.312.182-.638.32-.961.468-.322.152-.636.336-.97.448-.336.112-.659.272-1.01.325-.351.052-.749-.08-1.117-.104-.368-.024-.708.065-1.092-.039-.038-.01-.117-.354-.082-.36" fill-opacity=".64" fill="#2FEAFC"/><path d="M510.24 452.562c.503.218.947.597 1.47.761.524.164 1.022.401 1.561.521.54.12 1.244-.208 1.796-.123.552.085 1.262-.272 1.823-.213.561.06 1.076.245 1.642.288.566.043 1.101.175 1.668.211.57.036.937.636 1.505.675.567.04 1.384-.63 1.946-.58.562.051.996.465 1.55.538.628.083 1.24.217 1.84.381.6.164 1.053.734 1.64.936.587.202 1.218.28 1.806.478.588.198 1.264.147 1.867.298.594.15 1.071.626 1.65.814.58.188 1.284.021 1.85.25.564.228 1.198.261 1.75.533.548.27.877 1.16 1.413 1.475.482.284 1.2-.087 1.662.251.462.337.67 1.382 1.123 1.751.453.368 1.163.022 1.613.397.45.376.788 1.064 1.244 1.424.456.361.793 1.06 1.263 1.381.142.097-.089.76-.237.678-.543-.3-1.214-.229-1.783-.452-.569-.224-.946-1.008-1.536-1.172-.589-.164-1.38.265-1.986.145-.605-.12-1.159-.39-1.773-.482-.615-.093-1.303.031-1.922-.05-.618-.082-1.28-.036-1.899-.123-.617-.087-1.142-.444-1.752-.553-.61-.109-1.138-.455-1.734-.6-.604-.15-1.338.063-1.93-.129-.59-.19-1.195-.349-1.758-.617-.563-.269-1.136-.52-1.658-.9s-.93-1.065-1.397-1.59c-.467-.529-1.019-.812-1.548-1.157-.533-.346-.918-1.084-1.497-1.3-.579-.216-1.196-.328-1.803-.469-.605-.14-1.27-.12-1.886-.242-.55-.109-1.083-.27-1.623-.405s-1.094-.238-1.62-.41c-.527-.175-1.076-.29-1.584-.517-.507-.225-.947-.628-1.43-.918-.482-.29-1.007-.473-1.46-.84-.046-.037.082-.366.133-.344m31.901 109.777c-.26-.468-.378-1.03-.687-1.468-.307-.439-.56-.915-.915-1.32-.356-.407-1.1-.548-1.488-.926-.39-.379-1.164-.487-1.573-.846-.408-.362-.717-.79-1.145-1.135-.43-.341-.776-.744-1.218-1.075-.439-.332-.398-1.022-.835-1.356-.436-.335-1.478-.201-1.904-.534-.429-.332-.55-.902-.968-1.242a12.872 12.872 0 0 1-1.302-1.244c-.408-.433-.48-1.136-.859-1.596-.375-.462-.87-.827-1.255-1.279-.386-.453-.978-.731-1.41-1.141-.425-.404-.579-1.04-.978-1.465-.4-.427-1.08-.605-1.444-1.058-.368-.452-.897-.76-1.234-1.24-.333-.48-.194-1.394-.508-1.901-.284-.457-1.071-.45-1.318-.936-.245-.49.057-1.497-.17-2.014-.225-.52-1.012-.504-1.236-1.023-.227-.518-.216-1.27-.466-1.774-.246-.505-.242-1.263-.521-1.744-.085-.145.407-.644.503-.51.355.491.988.701 1.401 1.134.415.433.393 1.295.845 1.686.45.39 1.346.35 1.825.722.477.372.848.847 1.342 1.204.495.357 1.157.558 1.664.91.504.353 1.101.623 1.6.986.501.362.78.923 1.254 1.31.475.387.767.934 1.203 1.355.444.424 1.182.602 1.596 1.06.405.46.841.9 1.184 1.414.345.51.691 1.026.934 1.615.243.59.225 1.382.328 2.07.104.69.416 1.211.663 1.782.25.573.16 1.392.517 1.877.354.488.79.916 1.207 1.36.416.443.963.793 1.39 1.235.38.396.724.817 1.074 1.235.354.416.737.813 1.057 1.253.319.44.68.853.95 1.327.268.475.378 1.052.578 1.57.202.515.5.969.632 1.527.013.057-.287.242-.313.195" fill="#182538"/><path d="M547.76 531.579c.109-.045.328.042.401-.047.073-.09.194-.12.237-.244.043-.125-.22-.617-.201-.771.019-.153-.262-.668-.261-.843.002-.174.09-.245.08-.433-.01-.188.041-.303.027-.496-.014-.193.355.073.342-.118-.012-.191-.504-.96-.508-1.14-.004-.181.239-.066.25-.23.012-.184.06-.326.128-.446.067-.118.411.095.504.008.094-.088.103-.278.194-.368.091-.091.013-.385.073-.514.058-.126.338.016.423-.08.085-.093-.07-.478.042-.54.113-.06.092-.281.234-.308.14-.027.701.453.871.462.154.008-.135-.52.055-.467.19.052.859.684 1.069.762.211.077-.061-.432.155-.35.216.085.642.424.847.495.206.07.639.417.819.457.053.01.5.55.456.552-.16.004-.069.31-.177.377-.109.066-.596-.324-.664-.21-.068.116.264.712.226.862-.039.15-.179.179-.199.352-.02.173.107.52.094.702-.012.182.062.468.046.645-.016.178-.215.136-.246.295-.03.16-.221.127-.277.256-.058.13.13.556.044.652-.086.096-.148.22-.287.254-.138.033-.264.08-.478.022-.215-.058-.635-.367-.948-.547-.315-.18-.464-.161-.654-.192-.192-.032-.649-.385-.752-.31-.103.074-.135.235-.187.37-.052.137.006.406-.033.559-.035.137-.105.23-.157.346-.052.116-.083.258-.161.34-.079.085-.118.217-.232.258-.114.04-.349-.064-.507-.076-.158-.012-.243.064-.454-.012a1.98 1.98 0 0 1-.234-.284" fill="#304057"/></g></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg width="733" height="749" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient x1="74.95%" y1="53.242%" x2="2.797%" y2="52.227%" id="a"><stop stop-color="#61EFFD" stop-opacity="0" offset="0%"/><stop stop-color="#61EFFD" offset="51.929%"/><stop stop-color="#535FD7" offset="100%"/></linearGradient><linearGradient x1="74.95%" y1="53.242%" x2="2.797%" y2="52.227%" id="b"><stop stop-color="#61EFFD" stop-opacity="0" offset="0%"/><stop stop-color="#61EFFD" offset="51.929%"/><stop stop-color="#535FD7" stop-opacity=".24" offset="100%"/></linearGradient><linearGradient x1="74.709%" y1="54.738%" x2="2.797%" y2="52.227%" id="c"><stop stop-color="#61EFFD" stop-opacity="0" offset="0%"/><stop stop-color="#61EFFD" offset="100%"/></linearGradient><linearGradient x1="3.889%" y1="87.071%" x2="50%" y2="100%" id="d"><stop stop-color="#2FEAFC" offset="0%"/><stop stop-color="#FFF" stop-opacity=".48" offset="100%"/></linearGradient></defs><g fill="none" fill-rule="evenodd"><path d="M481.636 278.995c68.395-85.596 283.288 114.496 499.598 141.24 144.207 17.83 216.008.217 215.402-52.837l-27.273 441.597c-140.502-132.3-238.118-193.949-292.848-184.945-54.73 9.003-93.023 36.652-114.879 82.945 17.055-191.173-14.945-258.244-96-201.213-121.582 85.547-252.395-141.19-184-226.787z" fill="url(#a)" transform="rotate(6 839.799 360.69)"/><path d="M163.032 64.417c-75.639-76.513 250.091 34.532 466.402 61.276 144.207 17.83 230.337 13.541 258.39-12.866C689.066 243.045 561.308 302.457 504.55 291.06c-56.757-11.395-88.328 29.069-94.714 121.392 17.055-191.173-14.945-258.244-96-201.213-121.582 85.547-75.166-70.31-150.804-146.823z" fill="url(#a)" transform="rotate(6 529.928 52.472)"/><path d="M48.634 315.836c46.011 63.226 153.516-11.671 369.826 15.073 144.207 17.83 159.653 2.058 46.337-47.317-78.078 175.773-135.151 246.668-171.22 212.685-36.069-33.982-62.757-20.452-80.065 40.59 7.289-137.305-29.595-177.442-110.65-120.411-121.58 85.547-100.238-163.846-54.227-100.62z" fill="url(#b)" transform="rotate(6 286.017 237.5)"/><path d="M312.97 376.93c68.395-85.597 283.287 114.495 499.597 141.24 144.207 17.829 216.008.216 215.403-52.839l-79.92 257.496c-74.47-81.156-169.826-80.725-286.07 1.292-174.365 123.027-22.094-66.692-205.393-43.46C273.29 703.892 244.575 462.525 312.97 376.93z" fill="url(#c)" transform="rotate(-164 644.359 561.136)"/><path d="M416.989 422.148c-.092-.248.209-.673.073-.901.675-.18.746-.372 1.316-1.291.38.577-.898 1.106-1.389 2.192zm-1.012.11c-.757.639-1.194 2.703-2.519 2.696 1.089-1.43 1.528-2 1.374-2.702.437-.21.813-.185 1.457-1.176-.058.43-.38.98-.178 1.296-.295.297-.267.042-.134-.114zm7.37-9.568c-1.352.212 1.098-1.648 1.721-2.825-.017.296-.404.753-.072.895-.595.522-1.966 1.289-1.649 1.93zm108.472-67.015c-4.333-.065-9.052-1.347-13.518-1.092.917-.327 3.315-.294 5.983.005 2.669.29 5.579.853 7.535 1.087zM379.709 460.87c-.515.202-1.004.378-.964.035-2.478.939-3.006 1.85-5.433 2.603.258.35.665.594 1.605.439.686-.696 1.828-1.89 3.372-1.725-.063-.332.08-.637.59-.992.072.162.815-.112.83-.36zm-6.848 2.767c-2.006.387-.995 1.465.178.678.11.198.244.365 1.012.073-.026-.528-1.176-.213-1.19-.751zm18.424-10.526c.808-.272 2.799-2.057 2.506-2.623-.254.4-.911.913-1.483 1.4-.59.472-1.103.91-1.023 1.223zm3.736-3.625c1.351-1.167 3.925-3.778 2.99-3.745-.871 1.225-2.64 2.738-2.99 3.745zm-4.579 1.849c-.115.583-.634 1.248-1.334 1.938-.35.345-.746.696-1.158 1.047-.397.348-.946.717-1.411 1.065-.958.722-1.906 1.325-2.56 1.873-.648.558-1.025 1.019-.852 1.394 1.624-1.247 1.337-1.04 3.099-1.778-.827-.762 1.238-1.07 1.388-1.956.486-.32.487.035.876-.19.897-.986.516-1.213 2.373-2.177-.075-.48.464-.906 1.111-1.42.64-.521 1.418-1.105 1.877-1.824l-.221-.27c-.193.143-.377.272-.415.11-.75.805-.687 1.413-1.708 2.276-.218-.272-1.008.465-1.065-.088zm13.129-13.126c-.37-.384-1.048.095-1.545.074-.442.447-.87.905-1.335 1.338.319.449-.591 1.325-1.16 2.084-.369-.214-1.036-.011-.726-.762-.204.962-.691 2.286.259 1.938-.797.26-.5.746-.888 1.305.487-.185 3.347-3.171 1.165-1.57 2.138-1.578 2.485-2.917 4.23-4.407zm123.85-5.83c-.068.73 2.756-.991 2.799-1.296-1.321.59-1.085.453-2.799 1.297zm-87.544-53.474l-2.104 1.707c.256-.05 1.505-.945 2.69-1.914 1.181-.975 2.358-1.953 2.362-2.311-1.598 1.193-2.403 1.873-2.948 2.518zm24.973-19.628c2.483-.504 8.041-3.54 10.392-4.847a52.282 52.282 0 0 0-5.203 2.326l-2.485 1.218c-.847.428-1.733.865-2.704 1.303zm23.378-9.735c-.879.225-4.12.946-5.185 2.012.438-.203 1.255-.522 2.167-.86l2.755-.916c1.639-.541 2.501-.837.263-.236zm-8.11 99.332c-1.831-.136-4.944.006-8.239-.305-1.643-.098-3.321-.384-4.874-.681a25.678 25.678 0 0 1-4.102-1.242c1.553.34 2.933.7 4.246.902 1.315.18 2.55.426 3.797.5 1.247.082 2.512.238 3.866.222 1.36.026 2.821.04 4.458-.066-.066-.396-1.718.009-2.441-.115 5.046-.088 9.531-.72 13.636-1.536 4.106-.826 7.844-1.848 11.414-2.966 7.131-2.292 13.543-4.894 20.636-8.203 1.05-.627.399-.832.729-1.12a132.308 132.308 0 0 0 7.144-3.68c.063.996 1.427.21 2.299.104.982-.434-.657-.565.318-1.005-.245-.294-1.035.179-1.858.672 4.467-2.775 10.038-6.448 15.265-11.661 2.589-2.576 5.135-5.611 7.239-8.976 2.107-3.354 3.851-7.015 5.003-10.877-.25-.373.802-2.355.076-2.136 1.358-2.807 1.791-5.863 1.732-8.94-.066-3.093-.602-6.202-1.315-9.52-.284 1.063-.374-1.58-1.462-2.704-.427-1.01-.08-.535.161-.528-2.378-5.78-6.518-10.661-11.275-14.224-4.769-3.591-10.161-5.984-15.568-7.276-5.372-1.275-10.613-1.551-15.356-1.266-4.752.277-9.023 1.063-12.703 1.99-3.066.234-6.351.976-10.216 2.584-6.442 1.738-13.599 4.117-18.602 7.792-.246-.217.13-.422.537-.628-2.861 1.02-7.54 3.29-10.63 5.39-.722.41.637.163.418.77-.635.435-2.232.99-2.178 1.41-1.748.327 1.83-1.08.944-1.347-2.344.855-4.385 2.56-6.118 4.22-4.926 2.698-9.829 6.46-14.088 10.362-4.279 3.892-7.904 7.92-10.773 10.942-.127.789 1.388-.897.636.11-.489.393-.391.583-.267.764-1.02.887-.269-.481-1.133-.082-4.431 5.444-6.543 7.84-9.007 12.064.046-1.067-.42.476-.979.606-.561 1.4-.575 2.555-2.134 4.417-.498-.315 1.217-2.004 1.452-3.078-3.256 3.909-6.176 7.302-8.468 12.494.801.204 1.255-1.87 1.825-1.342-1.159 2.382-2.244 4.067-4.158 5.658-.083-.194.389-.634.218-.79.173.293-2.518 3.256-1.78 3.869-1.558 1.009-2.37 2.312-1.868 3.354-.857.584-1.886 1.734-2.554 1.715-.184.414.37.227-.411 1.173 1.621-.496 2.134-1.493 4.116-3.871.233-.743-.385-.05-.648-.59 1.199-1.103.682.2 1.901-.8 1.796-2.297 1.423-2.716 3.404-4.934.446 1.412-2.104 3.708-3.392 5.449-.138.655-1.208 2.553-1.128 2.534-.105.659-.677.459-.644-.08-2.235 2.765-1.724 3.362-1.59 4.242-.91.662-1.269.536-1.29-.186-.457.636-1.038 1.313-1.639 1.998-.61.68-1.268 1.354-1.826 2.019-1.116 1.33-1.919 2.582-1.571 3.556-.376.18-.574-.03-1.116.523.069 1.088-2.452 1.97-2.296 3.385-1.674.389-3.205 2.802-4.51 4.004l-.525-.704a43.884 43.884 0 0 0-2.434 2.28c-.87.76-1.72 1.568-2.692 2.298.832.006 1.672-.717 2.572-1.538.866-.827 1.581-1.748 2.542-2.378-1.873 2.324-4.598 4.75-7.438 6.693-2.886 1.979-6.061 3.74-9.967 5.279l3.276-1.694c1.017-.584 2.056-1.084 3.024-1.686.977-.59 1.973-1.152 2.933-1.831.48-.332.969-.67 1.469-1.013l1.464-1.152c-1.146.158-1.798 1.474-2.877 1.37-.984.968-2.873 2.289-4.885 3.293-.997.513-2.008.96-2.931 1.255-.914.307-1.676.533-2.22.552-1.319 1.323-5.772 2.442-10.872 2.957-2.026-.416 1.726-.345 1.748-.662-.171-.576-2.739.459-2.278-.41 2.66.044 2.514-.173 3.382.366-.011-.78 1.489-.223 1.561-.98 1.13-.16 1.026.155 1.111.429.302-.534.419-1.125 2.442-1.072-.159-.49-1.335-.392-2.515-.121-1.205.24-2.491.59-2.636.868-.664.005-1.411-.046-2.175-.088-.769-.05-1.523-.042-2.327-.104-1.626-.151-3.213-.201-4.762-.375-1.331-.376-1.174-.776-.963-1.166-.127.082-.478.05-.927-.16a9.098 9.098 0 0 1-1.427-.834c-.907-.65-1.487-1.335-.747-1.316-.831-.55-1.469-1.095-2.03-1.491-.55-.427-1.044-.721-1.455-1.106-.816-.753-1.65-1.405-2.573-2.718 1.632.934-.262-.47 1.466.177-.095-.64-1.187-2.045-1.715-3.072.333-.783 1.718.862 2.355.784-1.495-1.675 1.052.012-1.33-2.278.856.328 2.037 1.279.694-.536.282-.67 1.512 1.14 1.933.855.398-.477-.292-1.497.157-1.926.215-.393.804.33.951-.25l1.207.73c.401.239.873.4 1.299.599.448.172.842.41 1.317.522l1.372.38c1.85.404 3.725.563 5.621.35.933-.033 1.886-.263 2.815-.408.468-.098.938-.241 1.404-.354a11.56 11.56 0 0 0 1.393-.406c1.858-.543 3.682-1.39 5.478-2.223a39.036 39.036 0 0 0 7.83-5.17l.891-.763.919-.863 1.843-1.72c1.224-1.156 2.385-2.417 3.586-3.613 4.691-4.976 9.051-10.491 13.4-16.218 5.272-6.896 11.266-15.271 17.314-22.704 5.157-6.36 10.135-12.026 15.388-17.01a144.014 144.014 0 0 1 16.238-13.405c5.745-4.051 11.915-7.878 19.115-11.42 7.194-3.545 15.385-6.901 25.227-9.633 7.868-2.167 17.19-4.203 27.467-3.908 2.555.069 5.16.302 7.764.727 1.302.187 2.6.476 3.899.755 1.325.337 2.649.667 3.932 1.1a47.358 47.358 0 0 1 7.432 3.07 45.032 45.032 0 0 1 6.702 4.168c1.919 1.422 2.708 2.238 2.903 2.422.185.205-.267-.13-.998-.693-.721-.583-1.776-1.276-2.721-1.953l-2.252-1.431c-4.448-2.635-8.964-4.528-13.58-5.734-4.588-1.218-8.989-1.772-13.346-1.916-8.699-.273-16.912 1.095-25.133 3.418 1.982-.254 5.8-1.083 8.385-1.695a178.5 178.5 0 0 0-10.789 2.967c-1.817.557-3.659 1.113-5.492 1.748-1.848.592-3.684 1.264-5.522 1.935-7.355 2.678-14.53 5.987-20.754 9.52.247-.69 1.196-.825 2.631-1.766-5.082 2.054-8.383 4.85-13.906 8.203.93-.163 1.817-.741 2.878-1.493 1.056-.753 2.278-1.702 3.925-2.465.547-.297 1.261-.82 1.451-.63l-1.364.782c-5.484 3.684-10.949 7.624-15.984 11.828-5.028 4.19-9.65 8.673-13.392 13.17 2.967-3.09 6.453-6.217 10.084-9.408 3.647-3.192 7.545-6.364 11.442-9.678-.113.263-.218.52.195.292 7.26-5.185 14.689-9.335 21.868-12.838-9.501 5.044-19.079 10.787-28.008 18.278 4.748-3.06 9.377-7.128 15.769-10.552.758-.34.519-.584.416-.844 4.679-2.054 9.187-4.546 13.67-6.552a164.894 164.894 0 0 1 12.847-5.007c4.33-1.416 8.614-2.7 13.05-3.733 8.843-2.04 18.381-3.272 28.489-1.794 2.502.353 5.051.928 7.614 1.704a46.498 46.498 0 0 1 7.469 2.977c4.86 2.4 9.483 5.742 13.458 10.169a38.381 38.381 0 0 1 5.216 7.532c1.461 2.779 2.633 5.836 3.304 8.988.684 3.144 1.027 6.389.903 9.585a45.58 45.58 0 0 1-1.348 9.45c-.558 2.03-1.202 3.92-2.247 6.563a19.986 19.986 0 0 1-.698 1.538c-.273.5-.574.992-.871 1.487-.582.997-1.249 1.936-1.802 2.906-1.447 2.437-2.909 5.028-4.682 7.24-1.717 2.19-3.545 3.995-5.49 4.996-1.043 1.169-3.911 3.335-2.672 2.132 2.42-2.371 4.754-4.681 6.832-7.027 2.124-2.411 3.935-4.844 5.336-7.221 2.89-5.008 5.004-10.462 6.021-16.263.522-2.893.692-5.887.585-8.884-.1-3.001-.661-6.021-1.502-8.933-1.749-5.863-5.038-11.05-8.971-15.03a42.83 42.83 0 0 0-6.294-5.274 47.523 47.523 0 0 0-6.857-3.834c3.908 2.084 7.702 4.57 11.09 7.719 1.721 1.534 3.28 3.304 4.76 5.136 1.427 1.89 2.759 3.88 3.834 6.037 2.213 4.287 3.418 9.048 3.738 13.582a37.872 37.872 0 0 1-1.298 12.82c-1 3.636-2.529 7.499-4.474 11.015-1.925 3.517-4.286 6.706-6.552 9.102-5.098 5.399-10.928 9.73-16.88 13.338-5.973 3.613-12.062 6.542-18.12 9.196-6.095 2.67-12.473 5.102-19.22 6.818-6.726 1.718-13.885 2.7-21.142 2.25 1.64-.423 2.921-.46 3.703-.612zm-76.598-9.11c.432-.52 1.178.204.23.77-.05-.153.145-.398.019-.521-1.455 1.005.145.874-.987 1.734.204-1.172-.711.715-1.799 1.483.741-1.352 1.819-2.45 2.537-3.465zm13.547-20.431c.6-.27.864-1.275 1.884-2.245-.232 1.299-1.295 2.293-1.314 3.203-.871.656-.595-.638-.57-.958zm4.367-4.924c.175-.258.274-.22.368-.166.172-.617-.389-1.367.64-1.844.324.312-.865 1.31-.035 1.399-.426.598-.762.85-.973.61zm-.804 1.228c-.675.433.258-1.946.872-2.125.396.4-.752 1.493-.872 2.125zm3.198-5.402l.399.343c-.449.464-1.047 1.498-1.211.878.441-.482.335-.723.812-1.221zm5.609-6.65c.295-.26.423.054.744-.296-.024.576-1.375 1.682-1.304 2.218-.946.445.053-1.32.82-1.685l-.26-.236zm-1.433 2.114c-.525.388-2.344 2.512-1.989 3.068-.672.159-.747.35-1.316 1.258-.535-.11.201-.778-.06-1.01 1.611-1.043 2.212-3.66 3.365-3.316zm17.174-18.447c.976-.972.876.358 1.331.502-.845.658-1.522-.047-1.331-.502zm10.468-8.975c-.291.518-.976 1.088-1.924 1.693-.042-.49 1.464-1.612 1.924-1.693zm-21.115 17.159c-.037.235-.068.468.114.628-1.041-.1-2.638 4.22-3.168 2.49.741-.148 1.182-.844 1.597-1.553.427-.697.834-1.398 1.457-1.565zm24.705-19.646c-.504.755-2.172 1.827-3.205 3.073.333-.523.81-1.065.732-1.536 1.292-.62 1.591-1.444 2.473-1.537zm-22.073 16.608c.278-.132.557-.27.92-.615.519.172-.289.75-.055 1.009-.569.308-1.109.188-.865-.394zm-1.721 1.889c-.304-.225.854-.978 1.187-1.395.113.349-.27.853.076 1.133-.906.729-.892.062-1.263.262zm44.598-29.883c-.233.785-2.876 1.419-3.852 2.165.468-1.156 2.041-1.085 3.852-2.165zm.553-2.651c-.215.248-.232.51-.096.786-.698.252-1.381.537-2.066.82-.037-.913 1.279-.781 2.162-1.606zm26.012 79.694c3.078-1.791 9.08-3.365 15.613-6.697-2.928 1.848-10.578 4.818-15.613 6.697zm16.275-2.553c1.834-1.148 3.026-1.67 3.169-1.64.141.039-.778.648-3.169 1.64zm11.918-6.195c1.532-1.208 2.699-1.915 2.912-1.945.209-.044-.536.649-2.912 1.945zm-47.199-81.135c.036-.811 3.369-1.193 4.817-1.74.927-.057-.128.219-1.492.58-1.368.354-3.017.887-3.325 1.16zm22.931-6.693c-.418.283-1.561.375-2.716.453-1.137.109-2.285.21-2.662.538-.555-.2.645-.49 2.067-.694 1.423-.204 3.062-.32 3.311-.297zm2.54-.533c.366-.05.41.049.441.154 6.346-.55.084.906-.441-.154zm39.097 11.024c-2.015-1.28-3.331-2.222-3.479-2.418-.15-.196.941.276 3.479 2.418zm-6.99-4.508c-.75-.402-1.734-.8-2.791-1.263-1.076-.411-2.229-.883-3.386-1.276-2.295-.844-4.547-1.535-5.801-2.29 2.091.544 4.465 1.374 6.642 2.224 2.159.898 4.102 1.86 5.336 2.605zm15.025 62.455c-.951 1.64-.669 1.285.022.254.698-1.025 1.694-2.798 2.266-3.904 1.584-2.907 2.921-6.612 2.894-7.681-.3.806-.624 1.746-1.008 2.729-.413.962-.822 2.009-1.296 3.022a75.44 75.44 0 0 1-2.878 5.58z" fill="url(#d)" transform="rotate(6 465.273 232.939)"/><path fill-opacity=".24" fill="#535FD7" d="M113.696 9l1.812.833.492 1.765-.579 1.68-1.725.722-1.624-.82L111 11.599l.81-1.837z"/><path fill="#61EFFD" d="M43.314 43l2.899 1.334.787 2.823-.926 2.688L43.314 51l-2.6-1.31L39 47.156l1.295-2.94z"/><path fill="#7C85E1" d="M88.314 38l2.899 1.334.787 2.823-.926 2.688L88.314 46l-2.6-1.31L84 42.156l1.295-2.94z"/><path fill="#2FEAFC" d="M108.696 72l1.812.833.492 1.765-.579 1.68-1.725.722-1.624-.82L106 74.599l.81-1.837zm-44-12l1.812.833.492 1.765-.579 1.68-1.725.722-1.624-.82L62 62.599l.81-1.837z"/><path fill="#93F4FE" d="M64.696 4l1.812.833L67 6.598l-.579 1.68L64.696 9l-1.624-.82L62 6.599l.81-1.837z"/><path fill-opacity=".24" fill="#61EFFD" d="M121.696 43l1.812.833.492 1.765-.579 1.68-1.725.722-1.624-.82L119 45.599l.81-1.837z"/><path fill="#FFF" d="M171.618 63l1.087.5.295 1.059-.347 1.008-1.035.433-.975-.492-.643-.95.486-1.101zm445.078 541l1.812.833.492 1.765-.579 1.68-1.725.722-1.624-.82-1.072-1.582.81-1.837z"/><path fill-opacity=".32" fill="#FFF" d="M690.696 546l1.812.833.492 1.765-.579 1.68-1.725.722-1.624-.82-1.072-1.582.81-1.837z"/><path fill="#FFF" d="M633.696 585l1.812.833.492 1.765-.579 1.68-1.725.722-1.624-.82-1.072-1.582.81-1.837z"/><path fill-opacity=".64" fill="#FFF" d="M606.314 311l2.899 1.334.787 2.823-.926 2.688-2.76 1.155-2.6-1.31-1.714-2.533 1.295-2.94z"/><path fill="#FFF" d="M639.696 319l1.812.833.492 1.765-.579 1.68-1.725.722-1.624-.82-1.072-1.582.81-1.837zm-28 18l1.812.833.492 1.765-.579 1.68-1.725.722-1.624-.82-1.072-1.582.81-1.837zm-16.078 268l1.087.5.295 1.059-.347 1.008-1.035.433-.975-.492-.643-.95.486-1.101z"/><path d="M427.409 523.063c.18-.377.52-.694.646-1.09.124-.396.326-.765.411-1.176.086-.412-.274-.997-.22-1.423.055-.426-.328-1.023-.297-1.462.03-.438.19-.825.208-1.27.02-.442.122-.854.139-1.3.015-.447.585-.668.604-1.115.018-.446-.65-1.18-.616-1.624.036-.442.425-.737.487-1.17.068-.49.187-.961.336-1.42.152-.457.699-.738.887-1.177.188-.441.263-.933.451-1.374.188-.44.14-.991.288-1.45.147-.453.605-.758.792-1.19.187-.431.033-1.027.26-1.442.228-.413.272-.917.543-1.31.268-.394 1.13-.489 1.444-.857.283-.33-.055-.98.283-1.284.337-.304 1.34-.258 1.704-.542.363-.286.062-.924.435-1.204.374-.28 1.037-.4 1.4-.682.362-.283 1.037-.393 1.36-.692.098-.09.713.246.63.344-.306.36-.264.908-.497 1.306-.236.399-.988.526-1.164.958-.177.432.207 1.149.08 1.603-.129.452-.402.83-.501 1.298-.1.466.007 1.033-.081 1.502-.086.47-.047 1.001-.136 1.468-.09.466-.431.812-.536 1.27-.105.459-.439.808-.575 1.25-.14.449.069 1.059-.11 1.487-.176.43-.32.876-.57 1.271-.252.396-.48.805-.836 1.153s-1.007.567-1.502.856c-.498.29-.76.684-1.076 1.053-.319.372-1.02.577-1.212 1.005-.19.429-.274.903-.389 1.362-.116.458-.065.985-.156 1.453-.08.42-.216.817-.317 1.228-.103.41-.174.831-.316 1.224-.14.394-.218.813-.408 1.188-.19.375-.556.682-.806 1.035-.25.353-.395.747-.723 1.073-.032.031-.363-.095-.344-.133" fill="#61EFFD"/><path d="M428.286 464.538c.342-.047.727.07 1.057-.033.33-.101.68-.138.994-.295.317-.157.503-.77.802-.965.3-.198.465-.845.75-1.067.286-.218.607-.322.884-.566.275-.246.58-.393.847-.651.267-.256.728.054.997-.2.269-.251.274-1.222.536-1.463.261-.245.658-.125.924-.356a5.4 5.4 0 0 1 .953-.645c.327-.184.816.032 1.162-.116.346-.144.633-.427.972-.583.341-.156.57-.558.883-.77.306-.207.763-.089 1.085-.265.324-.175.483-.69.821-.823.34-.138.58-.468.938-.568.356-.097 1.01.377 1.392.306.342-.065.362-.735.725-.756.364-.018 1.094.624 1.485.63.391.006.402-.662.793-.653.39.006.952.299 1.336.28.385-.018.958.268 1.33.213.111-.017.48.58.376.61-.382.116-.558.569-.899.754-.34.189-.987-.151-1.294.082-.307.233-.308 1.006-.606 1.273-.296.266-.665.4-.951.687-.287.287-.469.777-.754 1.076-.287.298-.518.708-.814 1-.296.293-.723.32-1.035.582-.313.262-.73.305-1.064.521-.338.223-.52.798-.881.981-.363.176-.714.386-1.11.488-.393.103-.79.208-1.228.193-.44-.018-.995-.34-1.486-.52-.492-.178-.883-.108-1.3-.114-.423-.005-.977-.405-1.344-.283-.37.12-.707.338-1.054.53-.344.195-.643.542-.99.748-.312.182-.638.32-.961.468-.322.152-.636.336-.97.448-.336.112-.659.272-1.01.325-.351.052-.749-.08-1.117-.104-.368-.024-.708.065-1.092-.039-.038-.01-.117-.354-.082-.36" fill-opacity=".64" fill="#2FEAFC"/><path d="M510.24 452.562c.503.218.947.597 1.47.761.524.164 1.022.401 1.561.521.54.12 1.244-.208 1.796-.123.552.085 1.262-.272 1.823-.213.561.06 1.076.245 1.642.288.566.043 1.101.175 1.668.211.57.036.937.636 1.505.675.567.04 1.384-.63 1.946-.58.562.051.996.465 1.55.538.628.083 1.24.217 1.84.381.6.164 1.053.734 1.64.936.587.202 1.218.28 1.806.478.588.198 1.264.147 1.867.298.594.15 1.071.626 1.65.814.58.188 1.284.021 1.85.25.564.228 1.198.261 1.75.533.548.27.877 1.16 1.413 1.475.482.284 1.2-.087 1.662.251.462.337.67 1.382 1.123 1.751.453.368 1.163.022 1.613.397.45.376.788 1.064 1.244 1.424.456.361.793 1.06 1.263 1.381.142.097-.089.76-.237.678-.543-.3-1.214-.229-1.783-.452-.569-.224-.946-1.008-1.536-1.172-.589-.164-1.38.265-1.986.145-.605-.12-1.159-.39-1.773-.482-.615-.093-1.303.031-1.922-.05-.618-.082-1.28-.036-1.899-.123-.617-.087-1.142-.444-1.752-.553-.61-.109-1.138-.455-1.734-.6-.604-.15-1.338.063-1.93-.129-.59-.19-1.195-.349-1.758-.617-.563-.269-1.136-.52-1.658-.9s-.93-1.065-1.397-1.59c-.467-.529-1.019-.812-1.548-1.157-.533-.346-.918-1.084-1.497-1.3-.579-.216-1.196-.328-1.803-.469-.605-.14-1.27-.12-1.886-.242-.55-.109-1.083-.27-1.623-.405s-1.094-.238-1.62-.41c-.527-.175-1.076-.29-1.584-.517-.507-.225-.947-.628-1.43-.918-.482-.29-1.007-.473-1.46-.84-.046-.037.082-.366.133-.344" fill-opacity=".48" fill="#FFF"/><path d="M542.14 562.339c-.26-.468-.378-1.03-.687-1.468-.307-.439-.56-.915-.915-1.32-.356-.407-1.1-.548-1.488-.926-.39-.379-1.164-.487-1.573-.846-.408-.362-.717-.79-1.145-1.135-.43-.341-.776-.744-1.218-1.075-.439-.332-.398-1.022-.835-1.356-.436-.335-1.478-.201-1.904-.534-.429-.332-.55-.902-.968-1.242a12.872 12.872 0 0 1-1.302-1.244c-.408-.433-.48-1.136-.859-1.596-.375-.462-.87-.827-1.255-1.279-.386-.453-.978-.731-1.41-1.141-.425-.404-.579-1.04-.978-1.465-.4-.427-1.08-.605-1.444-1.058-.368-.452-.897-.76-1.234-1.24-.333-.48-.194-1.394-.508-1.901-.284-.457-1.071-.45-1.318-.936-.245-.49.057-1.497-.17-2.014-.225-.52-1.012-.504-1.236-1.023-.227-.518-.216-1.27-.466-1.774-.246-.505-.242-1.263-.521-1.744-.085-.145.407-.644.503-.51.355.491.988.701 1.401 1.134.415.433.393 1.295.845 1.686.45.39 1.346.35 1.825.722.477.372.848.847 1.342 1.204.495.357 1.157.558 1.664.91.504.353 1.101.623 1.6.986.501.362.78.923 1.254 1.31.475.387.767.934 1.203 1.355.444.424 1.182.602 1.596 1.06.405.46.841.9 1.184 1.414.345.51.691 1.026.934 1.615.243.59.225 1.382.328 2.07.104.69.416 1.211.663 1.782.25.573.16 1.392.517 1.877.354.488.79.916 1.207 1.36.416.443.963.793 1.39 1.235.38.396.724.817 1.074 1.235.354.416.737.813 1.057 1.253.319.44.68.853.95 1.327.268.475.378 1.052.578 1.57.202.515.5.969.632 1.527.013.057-.287.242-.313.195m5.62-30.76c.109-.045.328.042.401-.047.073-.09.194-.12.237-.244.043-.125-.22-.617-.201-.771.019-.153-.262-.668-.261-.843.002-.174.09-.245.08-.433-.01-.188.041-.303.027-.496-.014-.193.355.073.342-.118-.012-.191-.504-.96-.508-1.14-.004-.181.239-.066.25-.23.012-.184.06-.326.128-.446.067-.118.411.095.504.008.094-.088.103-.278.194-.368.091-.091.013-.385.073-.514.058-.126.338.016.423-.08.085-.093-.07-.478.042-.54.113-.06.092-.281.234-.308.14-.027.701.453.871.462.154.008-.135-.52.055-.467.19.052.859.684 1.069.762.211.077-.061-.432.155-.35.216.085.642.424.847.495.206.07.639.417.819.457.053.01.5.55.456.552-.16.004-.069.31-.177.377-.109.066-.596-.324-.664-.21-.068.116.264.712.226.862-.039.15-.179.179-.199.352-.02.173.107.52.094.702-.012.182.062.468.046.645-.016.178-.215.136-.246.295-.03.16-.221.127-.277.256-.058.13.13.556.044.652-.086.096-.148.22-.287.254-.138.033-.264.08-.478.022-.215-.058-.635-.367-.948-.547-.315-.18-.464-.161-.654-.192-.192-.032-.649-.385-.752-.31-.103.074-.135.235-.187.37-.052.137.006.406-.033.559-.035.137-.105.23-.157.346-.052.116-.083.258-.161.34-.079.085-.118.217-.232.258-.114.04-.349-.064-.507-.076-.158-.012-.243.064-.454-.012a1.98 1.98 0 0 1-.234-.284" fill="#FFF"/></g></svg>
|
@@ -0,0 +1,5 @@
|
|
1
|
+
<svg id="SvgjsSvg1001" width="288" height="288" xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.com/svgjs"><defs id="SvgjsDefs1002"></defs><g id="SvgjsG1008" transform="matrix(1,0,0,1,0,0)"><svg xmlns="http://www.w3.org/2000/svg" width="288" height="288" version="1.0" viewBox="0 0 700 905"><path d="M305 8992 c-120 -42 -214 -125 -268 -240 l-32 -67 0 -4190 0 -419032 -66 c39 -79 102 -140 181 -177 51 -24 68 -27 167 -27 l110 1 1615 623 c888
|
2
|
+
343 1901 733 2250 867 754 290 803 315 975 495 114 119 187 233 239 371 14 37
|
3
|
+
335 1094 713 2350 l687 2283 4 102 c4 110 -9 177 -53 263 -51 101 -162 202
|
4
|
+
-264 240 -30 12 -1364 313 -2965 670 -1601 358 -2967 663 -3036 680 -149 35
|
5
|
+
-276 39 -355 12z" transform="matrix(.1 0 0 -.1 0 905)" fill="#66ccff" class="color000 svgShape"></path></svg></g></svg>
|
@@ -0,0 +1,19 @@
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
3
|
+
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
4
|
+
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
5
|
+
width="700.000000pt" height="905.000000pt" viewBox="0 0 700.000000 905.000000"
|
6
|
+
preserveAspectRatio="xMidYMid meet">
|
7
|
+
<metadata>
|
8
|
+
Created by potrace 1.16, written by Peter Selinger 2001-2019
|
9
|
+
</metadata>
|
10
|
+
<g transform="translate(0.000000,905.000000) scale(0.100000,-0.100000)"
|
11
|
+
fill="#000000" stroke="none">
|
12
|
+
<path d="M305 8992 c-120 -42 -214 -125 -268 -240 l-32 -67 0 -4190 0 -4190
|
13
|
+
32 -66 c39 -79 102 -140 181 -177 51 -24 68 -27 167 -27 l110 1 1615 623 c888
|
14
|
+
343 1901 733 2250 867 754 290 803 315 975 495 114 119 187 233 239 371 14 37
|
15
|
+
335 1094 713 2350 l687 2283 4 102 c4 110 -9 177 -53 263 -51 101 -162 202
|
16
|
+
-264 240 -30 12 -1364 313 -2965 670 -1601 358 -2967 663 -3036 680 -149 35
|
17
|
+
-276 39 -355 12z"/>
|
18
|
+
</g>
|
19
|
+
</svg>
|
Binary file
|
data/assets/images/star.svg
CHANGED
@@ -1 +1,8 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg"
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="512" height="512" preserveAspectRatio="xMidYMid meet"><rect id="backgroundrect" width="100%" height="100%" x="0" y="0" fill="none" stroke="none"/>
|
2
|
+
<metadata>
|
3
|
+
Created by potrace 1.16, written by Peter Selinger 2001-2019
|
4
|
+
</metadata>
|
5
|
+
|
6
|
+
<g class="currentLayer" style=""><title>Layer 1</title><g transform="translate(0,512) scale(0.10000000149011612,-0.10000000149011612) " fill="#919191" stroke="none" id="svg_1" class="selected" fill-opacity="1">
|
7
|
+
<path d="M2680 5104 c-219 -57 -403 -245 -454 -464 -9 -36 -16 -80 -16 -97 l0 -33 -598 0 c-678 0 -646 4 -689 -80 l-23 -44 0 -612 0 -612 -68 -7 c-175 -17 -289 -71 -407 -189 -120 -121 -172 -236 -181 -406 -12 -190 45 -340 181 -476 118 -118 237 -174 403 -190 l72 -7 0 -611 c0 -578 1 -613 19 -653 38 -82 -2 -77 685 -83 l609 -5 14 -60 c49 -215 237 -404 458 -460 76 -19 234 -19 310 0 221 56 409 245 458 460 l14 60 661 5 c648 5 661 5 689 26 15 11 36 36 45 55 17 31 18 89 18 767 0 715 0 734 -20 772 -25 50 -87 84 -139 77 -20 -2 -65 -12 -100 -22 -193 -52 -386 88 -399 290 -14 227 209 395 427 321 95 -33 180 -6 215 68 14 30 16 111 16 768 0 817 3 777 -69 825 l-34 23 -653 0 -654 0 0 33 c0 55 -29 159 -67 236 -50 104 -169 224 -273 274 -41 20 -102 44 -135 52 -75 19 -241 19 -315 -1z m-532 -1838 c15 -8 36 -24 47 -36 12 -13 79 -199 161 -443 77 -232 144 -422 148 -422 4 0 52 117 106 261 54 144 103 271 110 283 30 58 134 80 197 41 40 -24 39 -21 168 -338 66 -161 111 -259 115 -250 4 7 63 193 130 413 67 220 129 413 139 430 24 42 77 75 121 75 69 0 142 -69 143 -137 1 -42 -374 -1272 -399 -1311 -52 -80 -190 -80 -236 0 -7 13 -65 148 -128 302 -63 153 -119 279 -123 280 -5 0 -58 -129 -117 -287 -59 -159 -116 -297 -127 -309 -59 -66 -171 -62 -220 8 -30 43 -436 1269 -436 1316 0 95 118 167 201 124z" id="svg_2" fill="#919191" fill-opacity="1"/>
|
8
|
+
</g></g></svg>
|
Binary file
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="700.000000" height="905.000000" preserveAspectRatio="xMidYMid meet"><rect id="backgroundrect" width="100%" height="100%" x="0" y="0" fill="none" stroke="none"/>
|
2
|
+
<metadata>
|
3
|
+
Created by potrace 1.16, written by Peter Selinger 2001-2019
|
4
|
+
</metadata>
|
5
|
+
|
6
|
+
<g class="currentLayer" style=""><title>Layer 1</title><g transform="translate(0,905) scale(0.10000000149011612,-0.10000000149011612) " fill="#6767e7" stroke="none" id="svg_1" class="selected" fill-opacity="1">
|
7
|
+
<path d="M305 8992 c-120 -42 -214 -125 -268 -240 l-32 -67 0 -4190 0 -4190 32 -66 c39 -79 102 -140 181 -177 51 -24 68 -27 167 -27 l110 1 1615 623 c888 343 1901 733 2250 867 754 290 803 315 975 495 114 119 187 233 239 371 14 37 335 1094 713 2350 l687 2283 4 102 c4 110 -9 177 -53 263 -51 101 -162 202 -264 240 -30 12 -1364 313 -2965 670 -1601 358 -2967 663 -3036 680 -149 35 -276 39 -355 12z" id="svg_2" fill="#6767e7" fill-opacity="1"/>
|
8
|
+
</g></g></svg>
|
@@ -0,0 +1,231 @@
|
|
1
|
+
---
|
2
|
+
---
|
3
|
+
const getScript=document.currentScript
|
4
|
+
const letterLen = getScript.dataset.letter
|
5
|
+
|
6
|
+
|
7
|
+
const folderName=getScript.dataset.foldername
|
8
|
+
const fileName=getScript.dataset.filename
|
9
|
+
const jsonData={{site.data | jsonify }}
|
10
|
+
const newArr= jsonData[folderName][fileName]
|
11
|
+
|
12
|
+
|
13
|
+
let filterData
|
14
|
+
let errorMsg = document.querySelector('#errorMsg')
|
15
|
+
let Xletters = document.querySelector('.Xletters')
|
16
|
+
|
17
|
+
Xletters.innerHTML = `Highest scoring X letter words for scrabble containing letters ABC`
|
18
|
+
|
19
|
+
async function Scrabble() {
|
20
|
+
try {
|
21
|
+
newArr.map(async (val) => {
|
22
|
+
const response = await fetch(
|
23
|
+
`http://127.0.0.1:9000/getWords?name=${val.word}`
|
24
|
+
)
|
25
|
+
const data = await response.json()
|
26
|
+
if (typeof data === 'string') {
|
27
|
+
errorMsg.innerHTML = 'No words found'
|
28
|
+
wordCount.innerHTML = `<strong> 0 words with letters ${serachValue.split(
|
29
|
+
''
|
30
|
+
)}</strong>`
|
31
|
+
} else {
|
32
|
+
|
33
|
+
|
34
|
+
if (letterLen) {
|
35
|
+
filterData = data.filter((item) => item.length == letterLen)
|
36
|
+
}
|
37
|
+
|
38
|
+
|
39
|
+
if (filterData.length === 0) {
|
40
|
+
table.innerHTML += ''
|
41
|
+
errorMsg.innerHTML = 'Table Not Found'
|
42
|
+
} else {
|
43
|
+
const result = filterData.map((item) => {
|
44
|
+
let ScrabbleLetterScore = ScrabbleScore()
|
45
|
+
sum = 0
|
46
|
+
item = item.toLowerCase()
|
47
|
+
for (let i = 0; i < item.length; i++) {
|
48
|
+
sum += ScrabbleLetterScore[item[i]] || 0 // for unknown characters
|
49
|
+
}
|
50
|
+
return `
|
51
|
+
<tr>
|
52
|
+
<td>${item}</td>
|
53
|
+
<td>${sum}</td>
|
54
|
+
</tr>
|
55
|
+
`
|
56
|
+
})
|
57
|
+
|
58
|
+
let table = document.createElement('table')
|
59
|
+
table.className = 'table table-bordered'
|
60
|
+
table.style.margin = '30px 0'
|
61
|
+
table.style.fontSize = '15px'
|
62
|
+
|
63
|
+
let wordpointtables = document.querySelector('.wordpointtables')
|
64
|
+
table.innerHTML += `<tbody><tr><th>Word</th><th>Points</th></tr></tbody>
|
65
|
+
<tbody style="border:0;">
|
66
|
+
${result}
|
67
|
+
</tbody>
|
68
|
+
`
|
69
|
+
wordpointtables.appendChild(table)
|
70
|
+
}
|
71
|
+
}
|
72
|
+
})
|
73
|
+
} catch (error) {
|
74
|
+
console.log(error)
|
75
|
+
}
|
76
|
+
}
|
77
|
+
|
78
|
+
Scrabble() // calling function
|
79
|
+
|
80
|
+
// Scrabble Point Counts
|
81
|
+
const ScrabbleScore = () => {
|
82
|
+
let twl06_sowpods = {
|
83
|
+
a: 1,
|
84
|
+
e: 1,
|
85
|
+
i: 1,
|
86
|
+
o: 1,
|
87
|
+
u: 1,
|
88
|
+
l: 1,
|
89
|
+
n: 1,
|
90
|
+
r: 1,
|
91
|
+
s: 1,
|
92
|
+
t: 1,
|
93
|
+
d: 2,
|
94
|
+
g: 2,
|
95
|
+
b: 3,
|
96
|
+
c: 3,
|
97
|
+
m: 3,
|
98
|
+
p: 3,
|
99
|
+
f: 4,
|
100
|
+
h: 4,
|
101
|
+
v: 4,
|
102
|
+
w: 4,
|
103
|
+
y: 4,
|
104
|
+
k: 5,
|
105
|
+
j: 8,
|
106
|
+
x: 8,
|
107
|
+
q: 10,
|
108
|
+
z: 10,
|
109
|
+
}
|
110
|
+
|
111
|
+
let wwfScore = {
|
112
|
+
a: 1,
|
113
|
+
b: 4,
|
114
|
+
c: 4,
|
115
|
+
d: 2,
|
116
|
+
e: 1,
|
117
|
+
f: 4,
|
118
|
+
g: 3,
|
119
|
+
h: 3,
|
120
|
+
i: 1,
|
121
|
+
j: 10,
|
122
|
+
k: 5,
|
123
|
+
l: 2,
|
124
|
+
m: 4,
|
125
|
+
n: 2,
|
126
|
+
o: 1,
|
127
|
+
p: 4,
|
128
|
+
q: 10,
|
129
|
+
r: 1,
|
130
|
+
s: 1,
|
131
|
+
t: 1,
|
132
|
+
u: 2,
|
133
|
+
v: 5,
|
134
|
+
w: 4,
|
135
|
+
x: 8,
|
136
|
+
y: 3,
|
137
|
+
z: 10,
|
138
|
+
}
|
139
|
+
|
140
|
+
return wwfScore
|
141
|
+
}
|
142
|
+
|
143
|
+
async function wordswithfriends() {
|
144
|
+
try {
|
145
|
+
newArr.map(async (val) => {
|
146
|
+
const response = await fetch(
|
147
|
+
`http://127.0.0.1:9000/getWords?name=${val.word}`
|
148
|
+
)
|
149
|
+
const data = await response.json()
|
150
|
+
if (typeof data === 'string') {
|
151
|
+
errorMsg.innerHTML = 'No words found'
|
152
|
+
wordCount.innerHTML = `<strong> 0 words with letters ${serachValue.split(
|
153
|
+
''
|
154
|
+
)}</strong>`
|
155
|
+
} else {
|
156
|
+
|
157
|
+
if (letterLen) {
|
158
|
+
filterData = data.filter((item) => item.length == letterLen)
|
159
|
+
}
|
160
|
+
|
161
|
+
|
162
|
+
if (filterData.length === 0) {
|
163
|
+
table.innerHTML += ''
|
164
|
+
errorMsg.innerHTML = 'Table Not Found'
|
165
|
+
} else {
|
166
|
+
const result = filterData.map((item) => {
|
167
|
+
let ScrabbleLetterScore = twl06_sowpods()
|
168
|
+
sum = 0
|
169
|
+
item = item.toLowerCase()
|
170
|
+
for (let i = 0; i < item.length; i++) {
|
171
|
+
sum += ScrabbleLetterScore[item[i]] || 0 // for unknown characters
|
172
|
+
}
|
173
|
+
return `
|
174
|
+
<tr>
|
175
|
+
<td>${item}</td>
|
176
|
+
<td>${sum}</td>
|
177
|
+
</tr>
|
178
|
+
`
|
179
|
+
})
|
180
|
+
|
181
|
+
let table = document.createElement('table')
|
182
|
+
table.className = 'table table-bordered'
|
183
|
+
table.style.margin = '30px 0'
|
184
|
+
table.style.fontSize = '15px'
|
185
|
+
let wordpointtables = document.querySelector('.wordpointtables')
|
186
|
+
table.innerHTML += `<tr><th>Word</th><th>Points</th></tr></tbody>
|
187
|
+
<tbody style="border:0;">
|
188
|
+
${result}
|
189
|
+
`
|
190
|
+
wordpointtables.appendChild(table)
|
191
|
+
}
|
192
|
+
}
|
193
|
+
})
|
194
|
+
} catch (error) {
|
195
|
+
console.log(error)
|
196
|
+
}
|
197
|
+
}
|
198
|
+
|
199
|
+
wordswithfriends() // calling function
|
200
|
+
// Scrabble Point Counts
|
201
|
+
const twl06_sowpods = () => {
|
202
|
+
let twl06_sowpods = {
|
203
|
+
a: 1,
|
204
|
+
e: 1,
|
205
|
+
i: 1,
|
206
|
+
o: 1,
|
207
|
+
u: 1,
|
208
|
+
l: 1,
|
209
|
+
n: 1,
|
210
|
+
r: 1,
|
211
|
+
s: 1,
|
212
|
+
t: 1,
|
213
|
+
d: 2,
|
214
|
+
g: 2,
|
215
|
+
b: 3,
|
216
|
+
c: 3,
|
217
|
+
m: 3,
|
218
|
+
p: 3,
|
219
|
+
f: 4,
|
220
|
+
h: 4,
|
221
|
+
v: 4,
|
222
|
+
w: 4,
|
223
|
+
y: 4,
|
224
|
+
k: 5,
|
225
|
+
j: 8,
|
226
|
+
x: 8,
|
227
|
+
q: 10,
|
228
|
+
z: 10,
|
229
|
+
}
|
230
|
+
return twl06_sowpods
|
231
|
+
}
|
data/assets/js/X-letter.js
CHANGED
@@ -29,7 +29,7 @@ const getData = async (serachValue) => {
|
|
29
29
|
<img src='/assets/images/loading.gif'>
|
30
30
|
</div>`
|
31
31
|
const response = await fetch(
|
32
|
-
|
32
|
+
`http://127.0.0.1:9000/getWords?name=${serachValue}`
|
33
33
|
)
|
34
34
|
const data = await response.json()
|
35
35
|
main.innerHTML = ''
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: word-games-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- manpreet-appscms
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-07-
|
11
|
+
date: 2021-07-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -70,6 +70,7 @@ files:
|
|
70
70
|
- _data/footer/hi/data.json
|
71
71
|
- _data/footer/networksites.json
|
72
72
|
- _data/header/en/data.json
|
73
|
+
- _data/theme/colors.json
|
73
74
|
- _data/wordgames/en/anagram_word_finder.json
|
74
75
|
- _data/wordgames/en/eight_letter_word_finder.json
|
75
76
|
- _data/wordgames/en/eleven_letter_word_finder.json
|
@@ -90,6 +91,8 @@ files:
|
|
90
91
|
- _data/wordgames/en/words_with_friends_word_finder.json
|
91
92
|
- _includes/Rating/rating.html
|
92
93
|
- _includes/Rating/structureddata.html
|
94
|
+
- _includes/WordPointTables/table.html
|
95
|
+
- _includes/adsense/adsense.html
|
93
96
|
- _includes/author_bio.html
|
94
97
|
- _includes/authors/authors.html
|
95
98
|
- _includes/custom-head.html
|
@@ -151,9 +154,14 @@ files:
|
|
151
154
|
- assets/images/facebook.svg
|
152
155
|
- assets/images/footer.png
|
153
156
|
- assets/images/footer2-bg.webp
|
157
|
+
- assets/images/header.svg
|
158
|
+
- assets/images/hero-media-illustration-dark.svg
|
159
|
+
- assets/images/hero-media-illustration-light.svg
|
154
160
|
- assets/images/instagram-square.svg
|
155
161
|
- assets/images/keshav.webp
|
162
|
+
- assets/images/left_obj_01 (1).svg
|
156
163
|
- assets/images/left_obj_01.png
|
164
|
+
- assets/images/left_obj_01.svg
|
157
165
|
- assets/images/left_obj_02.png
|
158
166
|
- assets/images/linkedin.svg
|
159
167
|
- assets/images/linkedin2.svg
|
@@ -161,6 +169,7 @@ files:
|
|
161
169
|
- assets/images/next.webp
|
162
170
|
- assets/images/paavan.webp
|
163
171
|
- assets/images/prev.webp
|
172
|
+
- assets/images/puzzle.png
|
164
173
|
- assets/images/rating.webp
|
165
174
|
- assets/images/ratingStar.png
|
166
175
|
- assets/images/right.png
|
@@ -170,14 +179,17 @@ files:
|
|
170
179
|
- assets/images/right_obj_01.png
|
171
180
|
- assets/images/search.svg
|
172
181
|
- assets/images/star.svg
|
182
|
+
- assets/images/test.png
|
173
183
|
- assets/images/twitter-square.svg
|
174
184
|
- assets/images/twitter.svg
|
175
185
|
- assets/images/twitter2.svg
|
186
|
+
- assets/images/vectorpaint.svg
|
176
187
|
- assets/images/window-close.png
|
177
188
|
- assets/images/window-close.svg
|
178
189
|
- assets/images/word-games-logo.svg
|
179
190
|
- assets/images/yellow_bg.png
|
180
191
|
- assets/js/TopScroll.js
|
192
|
+
- assets/js/WordPointTables.js
|
181
193
|
- assets/js/X-letter.js
|
182
194
|
- assets/js/advancedFilter.js
|
183
195
|
- assets/js/advancedFilter2.js
|