Compare commits
54 Commits
nymkappa/o
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
76dd7cbd71 | ||
|
|
e710f6728d | ||
|
|
5d15c722c6 | ||
|
|
4e1eca22ca | ||
|
|
3d6973c73c | ||
|
|
0b80cc2b96 | ||
|
|
946e497409 | ||
|
|
ce1eb7aab2 | ||
|
|
01e01b6349 | ||
|
|
291b629411 | ||
|
|
89844ba6a4 | ||
|
|
15f9ca9388 | ||
|
|
537f5c71d4 | ||
|
|
cde352c9d1 | ||
|
|
c024a122a4 | ||
|
|
631a6ac9d1 | ||
|
|
7232533ad1 | ||
|
|
b8c66d6839 | ||
|
|
4153860aa0 | ||
|
|
a98b1e1472 | ||
|
|
53972ebbd0 | ||
|
|
1722882dd6 | ||
|
|
b684f4cc97 | ||
|
|
805271a93d | ||
|
|
eacf146f2b | ||
|
|
db9fea67aa | ||
|
|
557420075f | ||
|
|
3ffb455e31 | ||
|
|
6ee38e6628 | ||
|
|
89cc36e42e | ||
|
|
6902a36078 | ||
|
|
4d4fbff818 | ||
|
|
216c0452fa | ||
|
|
a50147a1ca | ||
|
|
d863704577 | ||
|
|
5e8a25b04d | ||
|
|
369388f4fe | ||
|
|
676c46f2fb | ||
|
|
22849e40cb | ||
|
|
5dff58dfad | ||
|
|
9e585c7229 | ||
|
|
b19487dc82 | ||
|
|
70dd165ddb | ||
|
|
819f67ebc4 | ||
|
|
334d4ab2ae | ||
|
|
c97597cd70 | ||
|
|
ad619860f0 | ||
|
|
b97e528d70 | ||
|
|
2daa2150be | ||
|
|
9590526fde | ||
|
|
1d88160fd9 | ||
|
|
2a8e918fd6 | ||
|
|
6640accf58 | ||
|
|
94747ac5ad |
84
.github/workflows/project-review-status.yml
vendored
Normal file
@ -0,0 +1,84 @@
|
||||
# Workflow: Automatically set project status to "Review Needed" when a reviewer is requested
|
||||
name: Set Project Status on Review Request
|
||||
|
||||
# Trigger: Runs whenever a reviewer is requested on a pull request
|
||||
on:
|
||||
pull_request:
|
||||
types: [review_requested]
|
||||
|
||||
jobs:
|
||||
update-project-status:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Update Project Status to Review Needed
|
||||
uses: actions/github-script@v7
|
||||
with:
|
||||
# Use the PAT stored in repository secrets (has project write access)
|
||||
github-token: ${{ secrets.PROJECT_TOKEN }}
|
||||
script: |
|
||||
// GraphQL query to find the PR's project items
|
||||
// This fetches all projects the PR is linked to
|
||||
const query = `
|
||||
query($owner: String!, $repo: String!, $pr: Int!) {
|
||||
repository(owner: $owner, name: $repo) {
|
||||
pullRequest(number: $pr) {
|
||||
projectItems(first: 10) {
|
||||
nodes {
|
||||
id
|
||||
project {
|
||||
number
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
// Execute the query with current repo/PR context
|
||||
const result = await github.graphql(query, {
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
pr: context.payload.pull_request.number
|
||||
});
|
||||
|
||||
// Find the project item that belongs to project #8
|
||||
const projectItems = result.repository.pullRequest.projectItems.nodes;
|
||||
const projectItem = projectItems.find(item => item.project.number === 8);
|
||||
|
||||
// Exit early if PR isn't in project #8
|
||||
if (!projectItem) {
|
||||
console.log('PR is not in project #8, skipping...');
|
||||
return;
|
||||
}
|
||||
|
||||
// GraphQL mutation to update the Status field
|
||||
const mutation = `
|
||||
mutation($projectId: ID!, $itemId: ID!, $fieldId: ID!, $optionId: String!) {
|
||||
updateProjectV2ItemFieldValue(
|
||||
input: {
|
||||
projectId: $projectId
|
||||
itemId: $itemId
|
||||
fieldId: $fieldId
|
||||
value: { singleSelectOptionId: $optionId }
|
||||
}
|
||||
) {
|
||||
projectV2Item {
|
||||
id
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
// Execute the mutation using IDs stored in repository variables
|
||||
// PROJECT_ID: The project's unique identifier
|
||||
// STATUS_FIELD_ID: The "Status" field's unique identifier
|
||||
// REVIEW_NEEDED_OPTION_ID: The "Review Needed" option's unique identifier
|
||||
await github.graphql(mutation, {
|
||||
projectId: "${{ secrets.PROJECT_ID }}",
|
||||
itemId: projectItem.id,
|
||||
fieldId: "${{ secrets.STATUS_FIELD_ID }}",
|
||||
optionId: "${{ secrets.REVIEW_NEEDED_OPTION_ID }}"
|
||||
});
|
||||
|
||||
console.log('Successfully updated project status to Review Needed');
|
||||
27
.github/workflows/validate-logos.yml
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
name: SVG Check
|
||||
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- "**.svg"
|
||||
pull_request:
|
||||
types: [opened, review_requested, synchronize]
|
||||
|
||||
jobs:
|
||||
svg_validator:
|
||||
name: Validate SVG logos
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '20'
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm install
|
||||
|
||||
- name: Check for unsafe content in SVG logos
|
||||
run: node check_logos.js
|
||||
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
node_modules/
|
||||
19
bitfufupool.svg
Normal file
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:i="http://ns.adobe.com/AdobeIllustrator/10.0/" version="1.1" viewBox="0 0 80 80">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: url(#_未命名的渐变);
|
||||
fill-rule: evenodd;
|
||||
}
|
||||
</style>
|
||||
<linearGradient id="_未命名的渐变" data-name="未命名的渐变" x1="40.5" y1="80.78" x2="40.5" y2=".78" gradientTransform="translate(0 81) scale(1 -1)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fed766"/>
|
||||
<stop offset=".58" stop-color="#f6ac00"/>
|
||||
<stop offset="1" stop-color="#f2ae1a"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="_图层_1" data-name="图层_1">
|
||||
<path id="_1" class="cls-1" d="M69.7,34.06l-6.97-11.19c.09-.78.16-1.55.2-2.33.04-.46.03-.92-.03-1.38-.28-1.19-.85-2.28-1.67-3.18.69-1.99.69-4.16-.01-6.15-.67-2-4.89-6.47-10.15-8.29,1.12,1.17,1.77,2.72,1.81,4.34-1.64-1.99-3.8-3.49-6.23-4.34-4.49-1.6-9.36-1.75-13.94-.44-1.95.54-3.79,1.42-5.44,2.61,5.31-.26,10.35.58,12.7,2.31-5.9-.56-11.85-.15-17.62,1.22-3.46,2.93-6.28,6.55-8.27,10.62-1.39,2.78-2.35,5.75-2.85,8.82,5.18-6.57,12.34-11.3,20.42-13.48-9.89,4.63-17.38,13.2-20.64,23.61.8,6.9,3.8,13.35,8.56,18.42,2.5,2.68,5.29,5.08,8.32,7.16-5.52-12.71-4.43-25.04,4.43-37.45-7.86,15.51-5.77,29.39,4.65,42.52,3.75,1.77,7.32,3.88,10.68,6.31,2.39,1.77,4.7,3.95,5.6,6.45.3-7.54-1.29-15.03-4.63-21.79,2.71,2.09,5.23,4.43,7.52,6.98-.36-5.8-1.55-10.64-3.59-14.13-1.37-2.35-3.11-3.59-4.63-6.36-1.22-2.29-1.98-4.79-2.24-7.37,1.11.39,2.15.95,3.08,1.66,0,0,4.76,3.48,6.54,6.8.51,1.14.75,2.39.71,3.64,1.69-1.15,3.15-2.6,4.3-4.29h0c.56-.95,1.07-1.94,1.52-2.95-1.08-.43-2.12-.97-3.09-1.62-.62-.12-1.26,0-1.79.34-.29.17-.63.22-.96.13-.22-.06-.44-.14-.65-.24-.33-.18-.54-.51-.55-.89-.05-.45.03-.9.22-1.31.18-.31.52-.49.87-.47,2.28.11,3.35,1.51,5.42,2.26.82.27,1.68.4,2.54.38,1.22-.64,2.37-1.42,3.41-2.31l-.95-1.15c-.57-.69-.79-1.6-.61-2.47.07-.37.42-.62.79-.58.38.05.65.38.64.75-.01.42-.03.87-.02.89.01.04,1.21,1.6,1.21,1.6.4-.38.79-.78,1.18-1.2.63-.68.74-1.69.25-2.48ZM61.9,28.23c-.44-.18-.83-.44-1.16-.77-.57.2-1.16.31-1.77.34-.62.02-1.23-.05-1.83-.23-.98-.26-1.84-.86-2.43-1.69l.14-.04c.57.51,1.22.93,1.92,1.25-1.27-1.02-1.52-2.87-.55-4.18-.26-.43-.63-.79-1.06-1.04-.52-.32-1.1-.5-1.7-.55l.05-.29c1.02-.05,2.04.13,2.98.53,1.44.56,2.56,1.72,3.06,3.19.4,1.44,1.37,2.65,2.69,3.36l-.35.12Z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.4 KiB |
10
braiinssolo.svg
Normal file
@ -0,0 +1,10 @@
|
||||
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M489.391 179.802L488.38 334.998C488.152 370.111 469.208 402.435 438.685 419.793L303.774 496.517C273.25 513.876 235.784 513.632 205.49 495.876L71.5914 417.401C41.2952 399.647 22.7736 367.078 23.0021 331.965L24.0129 176.769C24.2414 141.656 43.1851 109.333 73.7098 91.9741L208.621 15.2504C239.145 -2.10867 276.611 -1.86514 306.905 15.8909L440.804 94.3661C471.098 112.12 489.62 144.688 489.39 179.802H489.391Z" fill="#009DA7"/>
|
||||
<path d="M228.623 415.864C228.409 448.554 205.225 461.666 177.101 445.001L100.426 399.568C72.3011 382.903 49.4642 342.521 49.6778 309.832L50.2699 218.983C50.4834 186.293 73.6672 173.181 101.792 189.846L178.467 235.28C206.591 251.945 229.428 292.326 229.215 325.016L228.623 415.864Z" fill="#002A2D"/>
|
||||
<path d="M308.917 201.892C279.965 218.51 232.787 218.174 204.073 201.144L125.536 154.559C96.8243 137.529 97.0199 109.998 125.972 93.3773L204.767 48.145C233.719 31.5265 280.897 31.8629 309.61 48.8927L388.148 95.478C416.859 112.508 416.664 140.039 387.712 156.659L308.917 201.892Z" fill="#002A2D"/>
|
||||
<path d="M461.321 312.568C461.109 345.012 437.924 384.789 409.799 400.964L333.119 445.06C304.993 461.235 282.154 447.922 282.366 415.477L282.953 325.313C283.165 292.868 306.351 253.091 334.475 236.916L411.155 192.821C439.282 176.646 462.12 189.958 461.908 222.403L461.321 312.568Z" fill="#002A2D"/>
|
||||
<path d="M300.086 155.657L315.017 164.363L298.935 173.555L284.005 164.85L269.386 173.207L173.067 117.046L187.685 108.689L172.755 99.9839L188.836 90.7915L203.767 99.4969L213.561 93.8973L198.631 85.1919L214.712 75.9995L230.083 84.9618C244.705 78.9703 261.09 80.0828 274.264 87.764C287.584 95.5303 287.299 102.286 276.192 110.496L277.071 111.008C291.107 103.83 306.903 102.574 321.981 111.366C336.766 119.987 338.683 132.752 325.964 140.867L340.894 149.572L324.813 158.765L309.883 150.059L300.088 155.659L300.086 155.657ZM258.493 113.85C264.049 110.674 264.482 107.045 258.92 103.802L254.089 100.986C248.526 97.7421 242.236 97.9573 236.68 101.133L211.681 115.423L233.492 128.14L258.491 113.85H258.493ZM301.085 134.634C306.64 131.458 307.075 127.66 301.512 124.417L296.682 121.601C291.119 118.357 284.535 118.571 278.981 121.747L250.474 138.043L272.577 150.93L301.085 134.634Z" fill="white"/>
|
||||
<path d="M128.747 280.165C128.679 297.16 116.719 304.001 102.036 295.444C87.3506 286.887 75.5027 266.174 75.5711 249.178C75.6395 232.183 87.5992 225.342 102.283 233.899C116.968 242.456 128.816 263.17 128.747 280.165Z" fill="#009DA7"/>
|
||||
<path d="M196.125 387.141C196.057 404.137 184.097 410.977 169.414 402.42C154.729 393.863 142.881 373.15 142.949 356.154C143.017 339.159 154.977 332.318 169.661 340.875C184.346 349.432 196.194 370.146 196.125 387.141Z" fill="#009DA7"/>
|
||||
<path d="M399.028 303.652C398.96 320.659 386.938 341.291 372.176 349.734C357.414 358.178 345.503 351.237 345.572 334.232C345.64 317.225 357.661 296.593 372.423 288.149C387.185 279.706 399.097 286.647 399.028 303.652Z" fill="#009DA7"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.0 KiB |
1
btclab.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="688" height="688" viewBox="0 0 688 688" version="1.1"><path d="" stroke="none" fill="#fc941c" fill-rule="evenodd"/><path d="M 220 19.922 C 210.249 21.904, 202.145 29.252, 199.437 38.569 C 195.999 50.396, 200.136 62.218, 210.196 69.309 C 215.461 73.021, 216.502 73.360, 223.968 73.792 L 232.045 74.260 231.773 134.380 L 231.500 194.500 220.106 212 C 204.490 235.983, 193.265 253.349, 165.808 296 C 152.885 316.075, 139.245 337.225, 135.498 343 C 131.750 348.775, 116.897 371.950, 102.491 394.500 C 88.084 417.050, 61.988 457.775, 44.500 485 C 27.011 512.225, 11.432 537.036, 9.880 540.136 C 8.327 543.236, 5.836 549.761, 4.343 554.636 C 1.890 562.644, 1.622 565.045, 1.564 579.500 C 1.509 593.249, 1.826 596.696, 3.818 604 C 7.895 618.952, 15.370 632.055, 26.639 644.001 C 41.387 659.634, 61.396 669.540, 83.285 672.044 C 89.580 672.764, 174.108 673.003, 350 672.799 L 607.500 672.500 615.500 670.249 C 634.370 664.938, 653.165 652.974, 664.954 638.769 C 672.314 629.900, 680.220 614.428, 683.232 603 C 685.098 595.921, 685.461 591.993, 685.403 579.500 C 685.341 566.215, 685.027 563.494, 682.657 555.703 C 679.531 545.424, 675.855 537.837, 668.561 526.612 C 665.663 522.150, 652.496 501.625, 639.303 481 C 626.110 460.375, 607.205 430.900, 597.292 415.500 C 562.588 361.586, 533.426 316.145, 506.485 274 C 491.542 250.625, 473.842 222.950, 467.151 212.500 L 454.985 193.500 455.242 134 L 455.500 74.500 462.573 73.949 C 473.845 73.070, 482.658 66.699, 486.493 56.658 C 488.644 51.024, 488.218 40.181, 485.635 34.850 C 483.236 29.898, 477.656 24.504, 472.100 21.767 L 467.500 19.500 345.500 19.355 C 278.400 19.276, 221.925 19.531, 220 19.922 M 287.992 133.250 C 287.985 193.954, 287.584 201.630, 284.003 209.726 C 282.166 213.878, 271.395 230.808, 251.860 260.250 L 242.073 275 343.556 275 L 445.039 275 437.186 263.250 C 422.055 240.612, 404.346 212.459, 402.432 208 C 400.599 203.732, 400.485 200.167, 400.215 138.750 L 399.931 74 343.965 74 L 288 74 287.992 133.250 M 288 335 L 288 357 256.061 357 L 224.123 357 223.441 361.542 C 222.947 364.840, 223.308 384.072, 223.971 389.750 C 223.987 389.887, 229.596 390, 236.435 390 C 243.274 390, 250.137 390.478, 251.685 391.061 C 256.712 392.957, 260.832 397.876, 262.029 403.412 C 262.786 406.911, 263.031 429.113, 262.815 474.500 C 262.463 548.337, 262.927 543.767, 255.233 549.046 C 252.025 551.247, 250.441 551.534, 239.889 551.832 L 228.123 552.165 227.542 557.332 C 226.933 562.745, 225.002 583.955, 225.001 585.250 C 225 585.663, 239.175 586, 256.500 586 L 288 586 288 608 L 288 630 303.750 630 L 319.500 630.001 319.500 608.250 L 319.500 586.500 332.250 586.220 L 345 585.940 345 607.970 L 345 630 361 630 L 377 630 377 607.580 L 377 585.159 383.750 584.550 C 410.321 582.150, 423.701 577.580, 438.700 565.784 C 458.966 549.844, 467.057 520.936, 458.015 496.769 C 452.842 482.942, 444.034 473.764, 429.250 466.794 C 424.712 464.654, 421.012 462.588, 421.026 462.202 C 421.040 461.816, 423.265 459.999, 425.971 458.164 C 434.809 452.169, 442.823 439.478, 444.992 428.040 C 450.511 398.941, 434.995 374.252, 404.102 362.978 C 397.499 360.568, 381.841 357, 377.869 357 C 377.391 357, 377 347.100, 377 335 L 377 313 361 313 L 345 313 345 335.030 L 345 357.060 332.250 356.780 L 319.500 356.500 319.657 334.750 L 319.813 313 303.907 313 L 288 313 288 335 M 316 422 C 316 437.950, 315.999 451.337, 315.998 451.750 C 315.996 452.963, 353.902 453.180, 361 452.007 C 369.711 450.568, 379.080 445.893, 383.424 440.817 C 392.569 430.133, 392.053 413.119, 382.287 403.353 C 374.049 395.116, 364.907 393.041, 336.750 393.017 L 316 393 316 422 M 316 518.500 L 316 552 339.750 551.983 C 366.078 551.963, 373.066 551.029, 383.536 546.130 C 399.693 538.569, 407.053 524.014, 402.551 508.526 C 400.251 500.617, 392.114 492.312, 383.493 489.076 C 374.159 485.572, 368.342 485.012, 341.250 485.006 L 316 485 316 518.500" stroke="none" fill="#f4941c" fill-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 3.9 KiB |
119
check_logos.js
Executable file
@ -0,0 +1,119 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
import fs from 'fs';
|
||||
import path from 'path';
|
||||
import { JSDOM } from 'jsdom';
|
||||
import createDOMPurify from 'dompurify';
|
||||
|
||||
let foundUnsafe = false;
|
||||
|
||||
const files = fs.readdirSync('.')
|
||||
.filter(file => file.endsWith('.svg'))
|
||||
.filter(file => fs.statSync(file).isFile());
|
||||
|
||||
if (files.length === 0) {
|
||||
console.log('No SVG files found');
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
for (const file of files) {
|
||||
try {
|
||||
const svgContent = fs.readFileSync(file, 'utf8');
|
||||
|
||||
const dom = new JSDOM('<!DOCTYPE html>');
|
||||
const DOMPurify = createDOMPurify(dom.window);
|
||||
|
||||
const cleanSVG = DOMPurify.sanitize(svgContent, {
|
||||
USE_PROFILES: { svg: true },
|
||||
KEEP_CONTENT: true
|
||||
});
|
||||
|
||||
const issues = [];
|
||||
|
||||
const scriptMatches = svgContent.match(/<script[\s>][\s\S]*?<\/script>/gi);
|
||||
if (scriptMatches) {
|
||||
issues.push(`Found ${scriptMatches.length} script tag(s)`);
|
||||
}
|
||||
|
||||
const eventHandlers = svgContent.match(/\s(on\w+)\s*=/gi);
|
||||
if (eventHandlers) {
|
||||
const uniqueHandlers = [...new Set(eventHandlers.map(h => h.trim().toLowerCase()))];
|
||||
issues.push(`Found event handlers: ${uniqueHandlers.join(', ')}`);
|
||||
}
|
||||
|
||||
if (/javascript:/gi.test(svgContent)) {
|
||||
issues.push('Found javascript: URLs');
|
||||
}
|
||||
|
||||
const originalDOM = new JSDOM(svgContent, { contentType: 'image/svg+xml' });
|
||||
const sanitizedDOM = new JSDOM(cleanSVG, { contentType: 'image/svg+xml' });
|
||||
|
||||
const externalUrlPattern = /^(https?|ftp):\/\//i;
|
||||
const imageElements = originalDOM.window.document.querySelectorAll('image');
|
||||
const useElements = originalDOM.window.document.querySelectorAll('use');
|
||||
|
||||
imageElements.forEach((img, index) => {
|
||||
const href = img.getAttribute('href') || img.getAttribute('xlink:href');
|
||||
if (href && externalUrlPattern.test(href.trim())) {
|
||||
issues.push(`Found external URL in image element: ${href}`);
|
||||
}
|
||||
});
|
||||
|
||||
useElements.forEach((use, index) => {
|
||||
const href = use.getAttribute('href') || use.getAttribute('xlink:href');
|
||||
if (href && externalUrlPattern.test(href.trim())) {
|
||||
issues.push(`Found external URL in use element: ${href}`);
|
||||
}
|
||||
});
|
||||
|
||||
const originalScripts = originalDOM.window.document.querySelectorAll('script');
|
||||
const sanitizedScripts = sanitizedDOM.window.document.querySelectorAll('script');
|
||||
|
||||
if (originalScripts.length > sanitizedScripts.length) {
|
||||
issues.push(`DOMPurify removed ${originalScripts.length - sanitizedScripts.length} script element(s)`);
|
||||
}
|
||||
|
||||
const allElements = originalDOM.window.document.querySelectorAll('*');
|
||||
let eventHandlerCount = 0;
|
||||
allElements.forEach(el => {
|
||||
Array.from(el.attributes).forEach(attr => {
|
||||
if (attr.name.toLowerCase().startsWith('on')) {
|
||||
eventHandlerCount++;
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
if (eventHandlerCount > 0 && issues.length === 0) {
|
||||
const sanitizedAllElements = sanitizedDOM.window.document.querySelectorAll('*');
|
||||
let sanitizedEventHandlerCount = 0;
|
||||
sanitizedAllElements.forEach(el => {
|
||||
Array.from(el.attributes).forEach(attr => {
|
||||
if (attr.name.toLowerCase().startsWith('on')) {
|
||||
sanitizedEventHandlerCount++;
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
if (eventHandlerCount > sanitizedEventHandlerCount) {
|
||||
issues.push(`DOMPurify removed ${eventHandlerCount - sanitizedEventHandlerCount} event handler attribute(s)`);
|
||||
}
|
||||
}
|
||||
|
||||
if (issues.length > 0) {
|
||||
console.log(`Unsafe content found in: ${file}`);
|
||||
issues.forEach(issue => console.log(` - ${issue}`));
|
||||
foundUnsafe = true;
|
||||
}
|
||||
} catch (error) {
|
||||
console.error(`Error processing ${file}: ${error.message}`);
|
||||
foundUnsafe = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (foundUnsafe) {
|
||||
process.exit(1);
|
||||
} else {
|
||||
console.log('No unsafe content found in SVG files');
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
1
default.light.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="5.12 2.8 15.98 18.27"> <path d="M12.101 2.90055C12.2146 2.83225 12.3508 2.8119 12.4794 2.84399L15.8755 3.69071C16.1324 3.75477 16.2929 4.00688 16.2467 4.26372C18.6108 5.37088 20.3713 7.19467 21.0609 9.24662C21.1343 9.46479 21.0492 9.70483 20.8548 9.82812C20.6605 9.95141 20.4071 9.9261 20.2409 9.7668C19.0305 8.60617 17.4469 7.59561 15.5992 6.86542L15.5744 6.96513C15.5423 7.0938 15.4604 7.20446 15.3467 7.27276C15.2331 7.34106 15.0969 7.3614 14.9683 7.32932L14.4831 7.20836L13.5759 10.847C13.8439 10.9138 14.0069 11.1851 13.9401 11.4531L11.6418 20.6709C11.6098 20.7996 11.5279 20.9102 11.4142 20.9785C11.3005 21.0468 11.1644 21.0672 11.0357 21.0351L8.60999 20.4303C8.34205 20.3635 8.179 20.0921 8.24581 19.8242L10.5441 10.6064C10.5761 10.4777 10.658 10.367 10.7717 10.2987C10.8854 10.2304 11.0215 10.2101 11.1502 10.2422L12.0574 6.60356L11.5722 6.48259C11.3043 6.41579 11.1412 6.14443 11.208 5.87649L11.2329 5.77678C9.25866 5.55406 7.38598 5.70288 5.77237 6.15943C5.5509 6.22209 5.31527 6.12547 5.20155 5.92537C5.08782 5.72527 5.12539 5.47339 5.29255 5.31518C6.86478 3.82713 9.27548 3.04332 11.8826 3.17562C11.9196 3.06091 11.997 2.96302 12.101 2.90055Z" fill="#707070"></path> </svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
2
est3lar.svg
Normal file
|
After Width: | Height: | Size: 7.8 KiB |
1
foundryusa.light.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" id="b" data-name="Layer 2" style="zoom: 1;" viewBox="0 0 32 76"><defs><style>.d { fill: #000; } .e { fill: #ff8200; }</style></defs><g id="c" data-name="b"><circle class="e" cx="24" cy="32" r="8"/><circle class="e" cx="24" cy="56" r="8"/><circle class="e" cx="8" cy="68" r="8"/><g><circle class="d" cx="24" cy="8" r="8"/><circle class="d" cx="8" cy="20" r="8"/><circle class="d" cx="8" cy="44" r="8"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 455 B |
13
gdpool.svg
Normal file
@ -0,0 +1,13 @@
|
||||
<svg width="524" height="523" viewBox="0 0 524 523" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1499_2400)">
|
||||
<rect x="0.667969" y="1.30664" width="521.693" height="521.693" rx="260.846" fill="#212939"/>
|
||||
<path d="M117.307 211.847H190.409L261.516 178.906H405.726V131.406H117.307V211.847Z" fill="white"/>
|
||||
<path d="M405.726 211.847H332.623L261.516 244.788H117.307V292.288L405.726 292.288V211.847Z" fill="white"/>
|
||||
<path d="M332.623 312.465H405.726V392.906H117.307V345.406H261.516L332.623 312.465Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1499_2400">
|
||||
<rect width="523" height="523" fill="white" transform="translate(0.667969)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 686 B |
144
innopolistech.svg
Normal file
@ -0,0 +1,144 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="48.93285"
|
||||
height="49.999092"
|
||||
viewBox="0 0 48.93285 49.999092"
|
||||
fill="none"
|
||||
version="1.1"
|
||||
id="svg32"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="m 36.1808,29.522768 c 4.4576,-4.5547 4.4576,-11.9399 0,-16.4931 L 32.4823,9.2505875 c -5.6847,-5.80869 -14.486,-6.48679 -20.9006,-2.04059 L 4.12155,14.831168 c -5.4954,5.6151 -5.4954,14.7199 0,20.3367 l 10.39335,10.6199 c 5.4954,5.6151 14.406,5.6151 19.9029,0 l 2.9348,-2.9988 c -6.4146,4.4478 -15.2159,3.7681 -20.9007,-2.0406 l -3.6985,-3.7791 c -4.45757,-4.5547 -4.45757,-11.9399 0,-16.4931 l 3.6431,-3.7224 c 4.4576,-4.5548 11.6852,-4.5548 16.1413,0 4.4576,4.5547 4.4576,11.9399 0,16.493 l 3.643,-3.7224 z"
|
||||
fill="url(#paint0_linear_69_811)"
|
||||
id="path15"
|
||||
style="fill:url(#paint0_linear_69_811)" />
|
||||
<path
|
||||
d="m 37.3527,42.789068 7.4586,-7.6211 c 5.4954,-5.6152 5.4954,-14.72 0,-20.3367 L 34.4195,4.2113775 c -5.4954,-5.61517 -14.406,-5.61517 -19.9029,0 l -2.9348,2.99874 c 6.4146,-4.44777 15.2159,-3.76809 20.9007,2.04059 l 3.6985,3.7790605 c 4.4575,4.5548 4.4575,11.9399 0,16.4931 l -3.6431,3.7225 c -4.4576,4.5547 -11.6852,4.5547 -16.1413,0 -4.4576,-4.5548 -4.4576,-11.9399 0,-16.4931 l -3.6431,3.7225 c -4.45756,4.5547 -4.45756,11.9399 0,16.4931 l 3.6985,3.7791 c 5.6848,5.8087 14.4861,6.4868 20.9007,2.0406 z"
|
||||
fill="url(#paint1_linear_69_811)"
|
||||
id="path16"
|
||||
style="fill:url(#paint1_linear_69_811)" />
|
||||
<path
|
||||
d="m 32.5378,33.245268 0.5281,-0.5396 -0.0185,-0.0189 c -0.1632,0.1904 -0.331,0.3776 -0.5081,0.5585 z"
|
||||
fill="url(#paint2_linear_69_811)"
|
||||
id="path17"
|
||||
style="fill:url(#paint2_linear_69_811)" />
|
||||
<path
|
||||
d="m 26.3465,46.119968 c -3.7924,-0.2989 -7.3647,-1.9792 -10.0592,-4.7325 l -4.6778,-4.7798 c -4.53769,-4.6365 -4.53769,-12.1806 0,-16.8172 l 4.0434,-4.1315 c 4.5115,-4.6098 12.1887,-4.5516 16.7664,0.1259 l 0.5312,0.5428 c 3.8864,3.971 4.3283,10.1479 1.3304,14.624 -0.3542,0.6073 -0.7684,1.1878 -1.238,1.7353 l 0.0185,0.0189 3.1149,-3.1828 c 0.5189,-0.5302 0.9762,-1.1013 1.3735,-1.6992 2.6345,-4.5343 2.0463,-10.4972 -1.7661,-14.3927 l -3.1858,-3.2552 C 29.9126,7.4321175 25.9923,5.7518075 21.8427,5.5693075 c -4.2128,-0.1888 -8.1053,1.21932 -10.6859,3.8562 L 5.19485,15.517368 c -2.61759,2.6747 -4.0588,6.2304 -4.0588,10.011 0,3.7807 1.44121,7.338 4.0588,10.011 l 9.48185,9.6885 c 2.6976,2.7565 6.2853,4.3046 10.0992,4.355 0.0647,0 0.1309,0 0.1956,0 2.6253,0 5.1505,-0.7127 7.3616,-2.0453 0.7329,-0.5066 1.4304,-1.0888 2.0802,-1.7511 l 2.519,-2.574 -0.0631,-0.0912 c -3.0349,2.2293 -6.7719,3.2929 -10.5242,2.9971 z m 10.1085,-19.4069 c 0.7006,-3.7539 -0.368,-7.7894 -3.2058,-10.6906 l -0.5312,-0.5428 c -2.2958,-2.3459 -5.3799,-3.6549 -8.6858,-3.6863 -0.04,0 -0.08,0 -0.1201,0 -3.2719,0 -6.3068,1.2618 -8.5564,3.5604 l -4.0434,4.1315 c -4.70241,4.8049 -4.70241,12.6212 0,17.4261 l 4.6778,4.7797 c 2.7654,2.8257 6.4316,4.55 10.3241,4.8568 0.4219,0.0331 0.8437,0.0504 1.2641,0.0504 1.4859,0 2.9579,-0.2061 4.376,-0.6073 -5.4631,1.8376 -11.7006,0.4861 -15.9596,-3.8656 l -5.6386,-5.7615 c -4.69471,-4.7971 -4.69471,-12.6039 0,-17.4009 l 4.4268,-4.5233 c 2.2727,-2.3222 5.403,-3.5651 8.8059,-3.5069 3.3382,0.0598 6.5594,1.4285 8.8382,3.7571 l 1.0624,1.0855 c 2.8963,2.9595 3.8848,7.1413 2.9656,10.9362 z m -2.6992,-11.2083 -1.0624,-1.0856 c -2.3466,-2.3977 -5.6633,-3.809 -9.0985,-3.8703 -3.506,-0.0598 -6.7333,1.2225 -9.0784,3.6202 l -4.4268,4.5233 c -4.8425,4.9481 -4.8425,12.9987 0,17.9452 l 5.6386,5.7615 c 3.0949,3.1624 7.2092,4.7782 11.3373,4.7782 1.8323,0 3.6646,-0.321 5.4137,-0.9645 -5.5985,2.4434 -12.261,1.2681 -16.7787,-3.348 l -6.59939,-6.7432 c -2.35121,-2.4025 -3.6446,-5.5947 -3.6446,-8.9931 0,-3.3984 1.29493,-6.5906 3.6446,-8.9931 l 4.81019,-4.915 c 2.3143,-2.3647 5.6817,-3.6690005 9.2386,-3.5793205 3.5291,0.08968 6.9135,1.5308205 9.2847,3.9553205 l 1.5921,1.6268 c 3.0641,3.1309 3.9941,7.6259 2.7977,11.5875 0.2264,-0.933 0.3434,-1.9022 0.3434,-2.8886 0,-3.1813 -1.2118,-6.1721 -3.4136,-8.422 z m 0.5066,-0.5176 -1.5921,-1.6268 c -2.4313,-2.4843 -5.8988,-3.9631805 -9.5126,-4.0544305 -3.6462,-0.08968 -7.1029,1.2476305 -9.4819,3.6784305 l -4.81017,4.915 c -2.4128,2.4654 -3.74315,5.7458 -3.74315,9.2322 0,3.4865 1.32881,6.7669 3.74315,9.2323 l 6.59937,6.7432 c 3.0441,3.1104 7.0429,4.6932 11.0555,4.6932 1.9801,0 3.9618,-0.387 5.8341,-1.1643 -2.1464,1.0337 -4.5222,1.5387 -6.9489,1.4412 -3.7739,-0.151 -7.3246,-1.7385 -9.9976,-4.4698 l -7.56025,-7.7234 c -5.01037,-5.1196 -5.01037,-13.4487 0,-18.5683 l 5.19515,-5.3083 c 4.9488,-5.0566905 14.1966,-4.8175405 19.4009,0.5003 l 2.1234,2.1696 c 3.312,3.3842 4.1388,8.3621 2.4821,12.5424 1.375,-4.1504 0.448,-8.9285 -2.7855,-12.2325 z m 0.5066,-0.5176 -2.1234,-2.1696 C 30.1297,9.7291575 26.5113,8.1841575 22.7204,8.0614375 c -3.834,-0.12271 -7.4371,1.23978 -9.8837,3.7382305 l -5.19518,5.3083 c -5.12277,5.2345 -5.12277,13.7508 0,18.9853 l 7.56018,7.7234 c 2.7254,2.7847 6.3438,4.4021 10.1901,4.5563 0.2018,0.0079 0.4019,0.0126 0.6036,0.0126 2.3112,0 4.5654,-0.5334 6.6087,-1.5434 -5.5909,3.2001 -12.7692,2.3332 -17.4932,-2.4938 l -8.51949,-8.7051 c -2.50365,-2.5582 -3.88173,-5.9582 -3.88173,-9.5752 0,-3.6171 1.37808,-7.0186 3.88173,-9.5752 l 5.57849,-5.7001 c 2.4652,-2.5189305 6.1468,-3.8751305 10.1024,-3.7240905 3.9094,0.15104 7.6187,1.73537 10.1778,4.3501905 l 2.6545,2.7124 c 3.486,3.562 4.2236,8.8861 2.2127,13.1939 1.6952,-4.2842 0.8468,-9.3833 -2.5483,-12.8525 z m -9.7975,34.9119 c -0.0647,0 -0.1293,0 -0.1925,0 -3.7616,-0.0504 -7.2984,-1.5765 -9.9607,-4.2952 l -9.48179,-9.6884 c -2.5791,-2.6354 -4.00029,-6.1407 -4.00029,-9.8679 0,-3.7272 1.42119,-7.2325 4.00029,-9.8678 L 11.2984,9.5702475 c 5.2491,-5.36343 15.5316,-4.99842 21.1579,0.7505205 l 3.1857,3.2551 c 3.68,3.7603 4.3021,9.4777 1.8693,13.9034 2.0833,-4.41 1.3396,-9.8757 -2.2358,-13.5289 l -2.6545,-2.7124 C 30.0204,8.5806375 26.251,6.9679875 22.28,6.8153775 c -4.0218,-0.15104 -7.7712,1.22876 -10.284,3.7963905 l -5.57858,5.7001 c -2.54984,2.6055 -3.95256,6.0683 -3.95256,9.7515 0,3.6831 1.40426,7.1475 3.95256,9.7514 l 8.51948,8.7051 c 2.904,2.9673 6.721,4.4651 10.5427,4.4651 2.4898,0 4.9811,-0.6388 7.223,-1.9179 -2.2896,1.5057 -4.9565,2.3128 -7.7342,2.3128 z"
|
||||
fill="url(#paint3_linear_69_811)"
|
||||
id="path18"
|
||||
style="fill:url(#paint3_linear_69_811)" />
|
||||
<path
|
||||
d="m 16.3943,16.752468 -0.5281,0.5396 0.0185,0.0189 c 0.1632,-0.1904 0.331,-0.3776 0.5081,-0.5585 z"
|
||||
fill="url(#paint4_linear_69_811)"
|
||||
id="path19"
|
||||
style="fill:url(#paint4_linear_69_811)" />
|
||||
<path
|
||||
d="m 13.143,36.566868 3.1858,3.2551 c 2.6853,2.7439 6.6056,4.4242 10.7552,4.6067 0.2479,0.011 0.4943,0.0157 0.7391,0.0157 3.9248,0 7.5186,-1.3908 9.9468,-3.8719 l 5.962,-6.0919 c 2.6176,-2.6746 4.0588,-6.2303 4.0588,-10.011 0,-3.7807 -1.4412,-7.3379 -4.0588,-10.011 L 34.2516,4.7700975 c -2.7008,-2.75645 -6.2868,-4.303024 -10.1008,-4.354943 -2.7023,-0.03304 -5.3045,0.684393 -7.5741,2.056323 -0.7268,0.50346 -1.4181,1.08087 -2.0633,1.74009 l -2.519,2.57395 0.0631,0.09125 c 3.0349,-2.22939 6.7734,-3.29453 10.5243,-2.99717 3.7924,0.29893 7.3646,1.97923 10.0592,4.73254 l 4.6778,4.7797305 c 4.5376,4.6366 4.5376,12.1806 0,16.8172 l -4.0434,4.1315 c -4.5115,4.6098 -12.1887,4.5516 -16.7664,-0.1259 l -0.5313,-0.5428 c -3.8878,-3.971 -4.3282,-10.1478 -1.3303,-14.6255 0.3541,-0.6073 0.7668,-1.1879 1.238,-1.7354 l -0.0185,-0.0188 -3.115,3.1828 c -0.5188,0.5302 -0.9746,1.1013 -1.3734,1.6992 -2.63608,4.5343 -2.04789,10.4971 1.7661,14.3942 z m 2.536,-2.5913 0.5312,0.5428 c 2.2958,2.3458 5.38,3.6548 8.6858,3.6863 0.0401,0 0.0801,0 0.1201,0 3.272,0 6.3069,-1.2618 8.5564,-3.5604 l 4.0435,-4.1316 c 4.7024,-4.8049 4.7024,-12.6211 0,-17.426 L 32.9382,8.3069075 c -2.7654,-2.82567 -6.4316,-4.55003 -10.3241,-4.85683 -1.9155,-0.15103 -3.8263,0.04406 -5.6463,0.5601 5.4646,-1.84235 11.7052,-0.49087 15.9673,3.8625 l 5.6386,5.7614905 c 2.2742,2.3238 3.5276,5.4138 3.5276,8.7004 0,3.2867 -1.2519,6.3767 -3.5276,8.7005 l -4.4268,4.5233 c -2.2727,2.3222 -5.3953,3.5682 -8.8059,3.5069 -3.3382,-0.0598 -6.5594,-1.4286 -8.8382,-3.7571 l -1.0624,-1.0856 c -2.8963,-2.9594 -3.8848,-7.1413 -2.9656,-10.9345 -0.7006,3.7539 0.368,7.7879 3.2058,10.6891 z m -0.5066,0.5176 1.0625,1.0856 c 2.3466,2.3977 5.6632,3.809 9.0984,3.8704 0.0816,0 0.1617,0.0015 0.2433,0.0015 3.4152,0 6.544,-1.2806 8.8351,-3.6217 l 4.4268,-4.5233 c 2.3451,-2.3962 3.6369,-5.5837 3.6369,-8.9726 0,-3.389 -1.2918,-6.5765 -3.6369,-8.9727 L 33.1999,7.5989175 c -4.4699,-4.56734 -11.0693,-5.90623 -16.7618,-3.81057 5.6001,-2.44966 12.2688,-1.27439 16.788,3.34329 l 6.5994,6.7432305 c 4.8533,4.9575 4.8533,13.0255 0,17.9846 l -4.8102,4.915 c -4.8364,4.9418 -13.4914,4.7656 -18.5233,-0.376 l -1.5921,-1.6268 c -3.1041,-3.1718 -4.0188,-7.7454 -2.7485,-11.7464 -1.0208,3.9648 -0.0154,8.3653 3.021,11.4679 z m -0.5065,0.5176 1.5921,1.6269 c 2.6468,2.7045 6.2745,4.067 9.8483,4.067 3.389,0 6.7302,-1.2256 9.1446,-3.691 l 4.8102,-4.9151 c 4.9826,-5.0912 4.9826,-13.3747 0,-18.466 L 33.4617,6.8893475 c -4.5454,-4.64285 -11.2218,-5.87633 -16.8881,-3.52423 2.1464,-1.03366 4.5238,-1.5387 6.9505,-1.44273 3.7739,0.15104 7.3246,1.73852 9.9976,4.4698 l 7.5602,7.7249805 c 2.4267,2.4795 3.7632,5.7772 3.7632,9.2841 0,3.507 -1.3365,6.8046 -3.7632,9.2842 l -5.1951,5.3084 c -2.3897,2.4417 -5.9127,3.7743 -9.6697,3.6516 -3.7185,-0.1196 -7.2661,-1.6331 -9.7312,-4.152 l -2.1234,-2.1696 c -3.312,-3.3842 -4.1388,-8.3621 -2.4805,-12.5424 -1.375,4.1519 -0.4481,8.9301 2.7839,12.2325 z m -0.5066,0.5177 2.1233,2.1696 c 2.516,2.5708 6.1344,4.1158 9.9253,4.2385 0.1601,0.0047 0.3203,0.0078 0.4789,0.0078 3.6553,0 7.0613,-1.3514 9.4033,-3.746 l 5.1951,-5.3084 c 2.4821,-2.5362 3.8478,-5.9062 3.8478,-9.4918 0,-3.5856 -1.3673,-6.9572 -3.8478,-9.4918 L 33.725,6.1813575 c -2.7254,-2.78477 -6.3438,-4.40214 -10.1901,-4.55632 -2.5283,-0.1007 -5.0042,0.43738 -7.2292,1.54027 5.5924,-3.2079881 12.78,-2.344238 17.5101,2.48899 l 8.521,8.7051705 c 5.1675,5.28 5.1675,13.8719 0,19.152 l -5.5785,5.7001 c -2.4651,2.5189 -6.1467,3.8751 -10.1023,3.724 -3.9095,-0.151 -7.6188,-1.7353 -10.1778,-4.3502 l -2.6546,-2.7124 c -2.1433,-2.19 -3.3228,-5.1007 -3.3228,-8.197 0,-1.7967 0.4004,-3.5289 1.1518,-5.0959 -1.7492,4.3046 -0.9147,9.4556 2.5051,12.9515 z m -3.9018,-7.8556 c 0,3.1624 1.2057,6.1359 3.3937,8.3732 l 2.6545,2.7124 c 2.6007,2.6573 6.37,4.27 10.3395,4.4226 0.2032,0.0078 0.4065,0.011 0.6082,0.011 3.7909,0 7.2907,-1.3704 9.6758,-3.809 l 5.5786,-5.7001 c 5.2629,-5.3776 5.2629,-14.1268 0,-19.5044 L 33.9867,5.4733675 c -4.7978,-4.899308 -12.0871,-5.783512 -17.7703,-2.53776 2.3435,-1.54342 5.0812,-2.355255 7.9313,-2.315922 3.7616,0.050346 7.2984,1.576462 9.9607,4.295152 l 9.4803,9.6885305 c 2.5791,2.6353 4.0003,6.1406 4.0003,9.8678 0,3.7272 -1.4212,7.2325 -4.0003,9.8678 l -5.962,6.0919 c -2.5406,2.596 -6.3823,3.9805 -10.535,3.7964 -4.0988,-0.1809 -7.9713,-1.8376 -10.6228,-4.5469 l -3.1857,-3.2551 c -3.64926,-3.7288 -4.29134,-9.3817 -1.9309,-13.7917 -0.7191,1.5575 -1.0978,3.2709 -1.0978,5.044 z"
|
||||
fill="url(#paint5_linear_69_811)"
|
||||
id="path20"
|
||||
style="fill:url(#paint5_linear_69_811)" />
|
||||
<path
|
||||
d="m 28.1109,45.440168 c -4.3406,0 -8.421,-1.7275 -11.4897,-4.8631 l -3.6985,-3.7791 c -2.111,-2.157 -3.27352,-5.0252 -3.27352,-8.0758 0,-3.0507 1.16252,-5.9188 3.27352,-8.0759 l 1.2996,-1.3278 c -0.0077,0.0141 -0.0139,0.0283 -0.0216,0.0424 -0.0262,0.0488 -0.0493,0.0976 -0.0739,0.1464 -0.0323,0.0629 -0.0631,0.1258 -0.0939,0.1903 -0.793,1.6268 -1.2164,3.4299 -1.2164,5.3021 0,3.1797 1.2118,6.1706 3.4121,8.4188 2.2003,2.2483 5.1274,3.4865 8.2392,3.4865 3.1119,0 6.0205,-1.2319 8.2192,-3.4692 0.0062,-0.0063 0.0124,-0.0125 0.02,-0.0188 l 3.6431,-3.7225 c 4.5423,-4.6429 4.5423,-12.1948 0,-16.8376 L 32.6516,9.0777175 c -3.1596,-3.22844 -7.3585,-5.00472 -11.8269,-5.00472 -3.0271,0 -5.9311,0.81813 -8.4717,2.34896 l -2.0032,2.04689 c 2.927,-2.5299 6.5963,-3.90969 10.4734,-3.90969 4.3406,0 8.4209,1.7275 11.4897,4.86312 l 3.6985,3.7790905 c 4.3575,4.4525 4.3575,11.6976 0,16.1501 l -1.2996,1.3279 c 0.0077,-0.0142 0.0139,-0.0283 0.0216,-0.0409 0.0261,-0.0488 0.0508,-0.0991 0.0754,-0.1495 0.0308,-0.0629 0.0631,-0.1243 0.0924,-0.1872 0.793,-1.6268 1.2164,-3.4314 1.2164,-5.3021 0,-3.1797 -1.2118,-6.1705 -3.4121,-8.4188 -4.5423,-4.6429 -11.9347,-4.6429 -16.4785,0 l -3.643,3.7225 c -4.54233,4.6428 -4.54233,12.1947 0,16.8376 l 3.6985,3.7791 c 3.1595,3.2285 7.3585,5.0047 11.8268,5.0047 3.0272,0 5.9312,-0.8181 8.4718,-2.3489 l 2.0032,-2.0469 c -2.9271,2.5299 -6.5963,3.9097 -10.475,3.9097 z m -11.5467,-28.5163 c 2.1788,-2.2263 5.0412,-3.3386 7.9036,-3.3386 2.8624,0 5.7248,1.1139 7.9036,3.3386 2.111,2.157 3.2735,5.0252 3.2735,8.0758 0,3.0507 -1.1625,5.9188 -3.2735,8.0743 -2.111,2.157 -4.918,3.3448 -7.9036,3.3448 -2.9856,0 -5.7926,-1.1878 -7.9036,-3.3448 -2.111,-2.157 -3.2735,-5.0252 -3.2735,-8.0743 0,-3.0491 1.1625,-5.9188 3.2735,-8.0758 z"
|
||||
fill="#ffffff"
|
||||
id="path21" />
|
||||
<defs
|
||||
id="defs32">
|
||||
<linearGradient
|
||||
id="paint0_linear_69_811"
|
||||
x1="19.7609"
|
||||
y1="50.3447"
|
||||
x2="19.7609"
|
||||
y2="4.31604"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,-7.3249999e-4)">
|
||||
<stop
|
||||
stop-color="#FF7F00"
|
||||
id="stop21" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#FF0000"
|
||||
id="stop22" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="paint1_linear_69_811"
|
||||
x1="9.1666203"
|
||||
y1="22.8416"
|
||||
x2="49.272701"
|
||||
y2="22.8416"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,-7.3249999e-4)">
|
||||
<stop
|
||||
stop-color="#0055D6"
|
||||
id="stop23" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#0090FF"
|
||||
id="stop24" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="paint2_linear_69_811"
|
||||
x1="32.5378"
|
||||
y1="32.967602"
|
||||
x2="33.0644"
|
||||
y2="32.967602"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,-7.3249999e-4)">
|
||||
<stop
|
||||
stop-color="#FFB266"
|
||||
id="stop25" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#FF3333"
|
||||
id="stop26" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="paint3_linear_69_811"
|
||||
x1="20.153601"
|
||||
y1="49.585098"
|
||||
x2="20.153601"
|
||||
y2="5.5543098"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,-7.3249999e-4)">
|
||||
<stop
|
||||
stop-color="#FFB266"
|
||||
id="stop27" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#FF3333"
|
||||
id="stop28" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="paint4_linear_69_811"
|
||||
x1="15.8662"
|
||||
y1="17.033199"
|
||||
x2="16.3943"
|
||||
y2="17.033199"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,-7.3249999e-4)">
|
||||
<stop
|
||||
stop-color="#4C88E2"
|
||||
id="stop29" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#66BCFF"
|
||||
id="stop30" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="paint5_linear_69_811"
|
||||
x1="9.7617397"
|
||||
y1="22.431299"
|
||||
x2="47.789101"
|
||||
y2="22.431299"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,-7.3249999e-4)">
|
||||
<stop
|
||||
stop-color="#4C88E2"
|
||||
id="stop31" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#66BCFF"
|
||||
id="stop32" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 15 KiB |
32
marapool.svg
@ -1,26 +1,6 @@
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
||||
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
||||
|
||||
<svg width="71" height="71" viewBox="0 0 71 71" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M35.3359 70.0895C34.624 70.0895 33.9121 70.0571 33.2002 70.0248H33.006L33.2973 65.0415H33.4914C34.5269 65.1062 35.6271 65.1062 36.695 65.0739L37.2451 65.0415L37.5363 70.0248L36.9538 70.0571C36.4037 70.0571 35.8536 70.0895 35.3359 70.0895ZM33.4267 69.6365C34.5593 69.7012 35.7242 69.7012 36.9215 69.6688H37.1156L36.8891 65.4622H36.7273C35.6918 65.4945 34.6887 65.4945 33.6856 65.4622L33.4267 69.6365Z" fill="white"/>
|
||||
<path d="M13.8173 13.7847L10.549 10.5488C11.5198 9.57808 12.5553 8.67203 13.6231 7.79834L16.4707 11.4225C15.5323 12.1668 14.6262 12.9758 13.8173 13.7847Z" fill="white"/>
|
||||
<path d="M13.8172 14.076L10.2578 10.5489L10.3872 10.4195C11.358 9.44873 12.3934 8.51032 13.4613 7.66899L13.6231 7.53955L16.7295 11.455L16.5677 11.5844C15.6293 12.3287 14.7556 13.1053 13.9143 13.9466L13.8172 14.076ZM10.8079 10.5489L13.8172 13.5259C14.5615 12.7817 15.3705 12.0698 16.2118 11.3903L13.5907 8.08965C12.62 8.83391 11.6815 9.67524 10.8079 10.5489Z" fill="white"/>
|
||||
<path d="M19.4153 9.35172L16.9884 5.43629C18.1533 4.7244 19.383 4.04486 20.6126 3.4624L22.5865 7.6367C21.4539 8.15444 20.4184 8.7369 19.4153 9.35172Z" fill="white"/>
|
||||
<path d="M19.3506 9.61067L16.6972 5.37166L16.859 5.27458C18.0239 4.53033 19.2536 3.88315 20.4832 3.30069L20.645 3.20361L22.7807 7.73386L22.6189 7.83093C21.551 8.31632 20.5156 8.89878 19.5124 9.5136L19.3506 9.61067ZM17.2149 5.50109L19.4477 9.09293C20.3538 8.54283 21.2922 8.02509 22.2629 7.57206L20.4508 3.75371C19.383 4.27146 18.2828 4.85392 17.2149 5.50109Z" fill="white"/>
|
||||
<path d="M25.693 6.40713L24.1721 2.03868C25.4665 1.58565 26.7932 1.22971 28.1199 0.938477L29.0907 5.43636C27.9581 5.69523 26.7932 6.01882 25.693 6.40713Z" fill="white"/>
|
||||
<path d="M25.5635 6.66582L23.9456 1.94142L24.1397 1.8767C25.4341 1.42368 26.7931 1.06773 28.1199 0.7765L28.314 0.744141L29.3819 5.63033L29.1877 5.66269C28.0228 5.92156 26.8902 6.24515 25.79 6.63346L25.5635 6.66582ZM24.4309 2.16793L25.8224 6.18043C26.8255 5.82449 27.861 5.53326 28.8965 5.30674L27.9904 1.16481C26.7931 1.42368 25.5959 1.77962 24.4309 2.16793Z" fill="white"/>
|
||||
<path d="M23.266 62.9059L21.4216 67.1449C20.1596 66.5948 18.9299 65.98 17.765 65.3005L20.0949 61.3203C21.098 61.8704 22.1658 62.4205 23.266 62.9059Z" fill="white"/>
|
||||
<path d="M21.5187 67.3713L21.3569 67.3066C20.0949 66.7565 18.8652 66.1416 17.668 65.4297L17.5062 65.3327L20.0302 60.9966L20.192 61.0937C21.1951 61.6761 22.2629 62.2262 23.3631 62.7116L23.5249 62.7763L21.5187 67.3713ZM18.0239 65.2032C19.0918 65.8181 20.192 66.3682 21.3245 66.8859L23.0072 63.0028C22.0364 62.5822 21.0656 62.0968 20.1596 61.5467L18.0239 65.2032Z" fill="white"/>
|
||||
<path d="M29.9967 64.9121L29.1877 69.4424C27.8287 69.2159 26.5019 68.8599 25.1752 68.4716L26.5343 64.0708C27.6669 64.3944 28.8318 64.6856 29.9967 64.9121Z" fill="white"/>
|
||||
<path d="M29.3495 69.669L29.1553 69.6366C27.7963 69.3777 26.4372 69.0541 25.1428 68.6658L24.9487 68.6011L26.4048 63.812L26.599 63.8767C27.7315 64.2327 28.8965 64.4915 30.0614 64.7181L30.2555 64.7504L29.3495 69.669ZM25.4341 68.3422C26.6313 68.6982 27.8286 68.9894 29.0259 69.2159L29.7701 65.0416C28.7347 64.8475 27.6668 64.5886 26.6637 64.2974L25.4341 68.3422Z" fill="white"/>
|
||||
<path d="M17.0855 59.3137L14.335 63.0026C13.2348 62.1937 12.1669 61.2876 11.1962 60.3492L14.3673 56.9839C15.2087 57.8252 16.1147 58.6018 17.0855 59.3137Z" fill="white"/>
|
||||
<path d="M14.3674 63.2938L14.2056 63.1644C13.1054 62.3554 12.0375 61.4494 11.0344 60.511L10.905 60.3815L14.335 56.7573L14.4644 56.8868C15.3058 57.6957 16.2442 58.4723 17.1826 59.1519L17.3444 59.2813L14.3674 63.2938ZM11.4551 60.3492C12.3611 61.1905 13.2995 61.9995 14.3027 62.7437L16.8266 59.346C15.9853 58.6989 15.144 58.0193 14.3674 57.2751L11.4551 60.3492Z" fill="white"/>
|
||||
<path d="M32.9413 4.91881L32.5854 0.32385C32.9737 0.291491 33.3944 0.259132 33.7827 0.259132C34.7534 0.226774 35.7242 0.226774 36.695 0.259132L36.5332 4.85409C35.6918 4.82174 34.8505 4.82174 34.0092 4.85409C33.6532 4.85409 33.2973 4.88645 32.9413 4.91881Z" fill="white"/>
|
||||
<path d="M32.7796 5.11278L32.3589 0.129514H32.553C32.9413 0.0971554 33.362 0.0647965 33.7827 0.0647965C34.7858 0.0324376 35.7566 0.0324376 36.695 0.0647965H36.8891L36.695 5.04807H36.5008C35.6595 5.01571 34.8182 5.01571 34.0092 5.04807C33.6532 5.04807 33.2973 5.08042 32.9737 5.11278H32.7796ZM32.7796 0.485462L33.1031 4.69212C33.3944 4.65976 33.6856 4.65976 33.9768 4.6274C34.7534 4.59504 35.5301 4.59504 36.3067 4.6274L36.4685 0.388385C35.5948 0.356027 34.6887 0.356027 33.7827 0.420744C33.4591 0.420744 33.1355 0.453103 32.7796 0.485462Z" fill="white"/>
|
||||
<path d="M60.8347 18.38H61.3848C63.6499 18.38 65.4944 18.8007 66.8535 19.6097C61.1583 8.12226 49.2826 0.194336 35.6271 0.194336V4.82166C46.1438 4.82166 55.4308 10.2256 60.8347 18.38Z" fill="white"/>
|
||||
<path d="M67.3388 20.1272L66.7887 19.8036C65.4297 18.9947 63.6176 18.6064 61.4172 18.6064H60.77L60.7053 18.5093C55.1072 10.0636 45.7555 5.01563 35.6595 5.01563H35.4653V0H35.6595C49.0561 0 61.0936 7.4749 67.08 19.5448L67.3388 20.1272ZM60.9318 18.1857H61.3848C63.3911 18.1857 65.0737 18.5093 66.4328 19.1565C60.4788 7.60434 48.7972 0.453024 35.8213 0.388307V4.62732C45.9173 4.69204 55.3013 9.74003 60.9318 18.1857Z" fill="white"/>
|
||||
<path d="M69.9923 29.3496V32.7473C69.9923 36.4362 68.4714 38.7984 65.462 39.8339C63.1646 54.2659 50.6417 65.3003 35.5948 65.3003V69.8953C54.816 69.8953 70.4453 54.2659 70.4453 35.0448C70.4777 33.1032 70.3159 31.1941 69.9923 29.3496Z" fill="white"/>
|
||||
<path d="M35.6271 70.0896H35.433V65.1063H35.6271C42.8108 65.1063 49.768 62.5176 55.2043 57.8256C60.6082 53.1659 64.1677 46.7912 65.2679 39.8017L65.3002 39.6722L65.3973 39.6399C68.3096 38.6367 69.7981 36.3069 69.7981 32.7474V29.3497L70.1864 29.3174C70.51 31.2266 70.6718 33.1681 70.6718 35.0449C70.6718 54.3632 54.9454 70.0896 35.6271 70.0896ZM35.8213 65.4623V69.7013C54.8483 69.6042 70.2835 54.1043 70.2835 35.0449C70.2835 34.2359 70.2511 33.3946 70.1864 32.5533V32.7151C70.1864 36.4363 68.6656 38.8633 65.6562 39.9635C64.5236 46.9853 60.8994 53.4248 55.4631 58.1168C49.9945 62.8088 43.0373 65.4299 35.8213 65.4623Z" fill="white"/>
|
||||
<path d="M61.223 20.2241H37.7952H37.0509L23.0719 38.1833L9.31936 20.2241H3.33297C1.19728 24.7544 0 29.77 0 35.1092C0 40.4161 1.19728 45.4641 3.33297 49.9619H9.287C6.79537 45.5611 5.37158 40.5131 5.37158 35.1092C5.37158 31.8733 5.88932 28.7669 6.82773 25.8546C8.12208 27.8285 10.1607 30.8055 10.6461 31.485L21.8423 46.4348H23.0072H24.2045L35.4006 31.485C36.0802 30.5466 36.7273 29.5758 37.1804 28.4109C37.0509 29.6082 37.0186 30.6113 37.0186 31.5821V49.9943H42.6167V38.3775H61.1583C65.7209 38.3775 67.8566 36.7595 67.8566 32.6176V25.984C67.9213 21.8421 65.7856 20.2241 61.223 20.2241ZM61.223 30.9026C61.223 32.8764 60.2523 33.2648 58.1166 33.2648H42.6814V25.3692H58.1166C60.2523 25.3692 61.223 25.7575 61.223 27.7314V30.9026V30.9026Z" fill="white"/>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0 3.6008C0 2.34313 0 1.7143 0.244757 1.23394C0.460052 0.8114 0.803587 0.467864 1.22613 0.25257C1.70649 0.0078125 2.33532 0.0078125 3.59298 0.0078125H252.407C253.665 0.0078125 254.294 0.0078125 254.774 0.25257C255.196 0.467864 255.54 0.8114 255.755 1.23394C256 1.7143 256 2.34313 256 3.6008V252.415C256 253.672 256 254.301 255.755 254.782C255.54 255.204 255.196 255.548 254.774 255.763C254.294 256.008 253.665 256.008 252.407 256.008H3.59299C2.33532 256.008 1.70649 256.008 1.22613 255.763C0.803587 255.548 0.460052 255.204 0.244757 254.782C0 254.301 0 253.672 0 252.415V3.6008Z" fill="#272525"/>
|
||||
<path d="M59.285 48.0625C58.7889 48.0625 58.3867 48.4647 58.3867 48.9607V159.445C58.3867 159.941 58.7889 160.343 59.285 160.343H80.0749C80.5709 160.343 80.9731 159.941 80.9731 159.445V82.389H84.6335L117.649 159.797C117.79 160.128 118.116 160.343 118.475 160.343H137.809C138.169 160.343 138.494 160.128 138.635 159.797L171.651 82.389H175.311V159.445C175.311 159.941 175.714 160.343 176.21 160.343H197C197.496 160.343 197.898 159.941 197.898 159.445V48.9607C197.898 48.4647 197.496 48.0625 197 48.0625H164.29C163.931 48.0625 163.605 48.2773 163.464 48.6084L129.972 127.14H126.312L92.8202 48.6084C92.679 48.2773 92.3539 48.0625 91.994 48.0625H59.285Z" fill="#EEECE8"/>
|
||||
<path d="M58.3867 194.926C58.3867 194.43 58.7889 194.027 59.285 194.027H196.999C197.496 194.027 197.898 194.43 197.898 194.926V215.585C197.898 216.081 197.496 216.484 196.999 216.484H59.285C58.7889 216.484 58.3867 216.081 58.3867 215.585V194.926Z" fill="#F2A900"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 6.9 KiB After Width: | Height: | Size: 1.6 KiB |
6
maxipool.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 122">
|
||||
<defs>
|
||||
<style>.a{fill:#f99f00;}.b{fill:#fff;}</style>
|
||||
</defs>
|
||||
<path class="a" d="M129.88,0,69.93,105.09H50L89.92,35l-20-35L0,122.61H79.93l40-70.06,30,52.54-20,0-10-17.55-10,17.51,10,17.52h79.92Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 283 B |
136
miningsquared.svg
Normal file
@ -0,0 +1,136 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="49.000038"
|
||||
height="48.999992"
|
||||
viewBox="0 0 49.000038 48.999992"
|
||||
fill="none"
|
||||
version="1.1"
|
||||
id="svg23"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs23" />
|
||||
<path
|
||||
d="m 48.020438,24.496594 c 0,12.9897 -10.5302,23.52 -23.52,23.52 -12.9897,0 -23.51997002,-10.5303 -23.51997002,-23.52 0,-12.9898 10.53027002,-23.52003125 23.51997002,-23.52003125 12.9898,0 23.52,10.53023125 23.52,23.52003125 z"
|
||||
fill="#ffb852"
|
||||
id="path1" />
|
||||
<path
|
||||
fill-rule="evenodd"
|
||||
clip-rule="evenodd"
|
||||
d="m 6.976428,14.820994 c -1.58801,2.8688 -2.49205,6.1688 -2.49205,9.68 0,2.4371 0.43556,4.7725 1.23308,6.9326 l 0.77799,-0.7984 c -0.65548,-1.9246 -1.01107,-3.9879 -1.01107,-6.1342 0,-3.2618 0.82122,-6.3318 2.26819,-9.0146 z m 10.87511,-8.1417103 c 2.0698,-0.77257 4.3103,-1.19491 6.6494,-1.19491 7.6334,0 14.2163,4.4975 17.2434,10.9871203 l 1.0207,-0.1734 c -3.1328,-6.9645102 -10.1321,-11.8137203 -18.2641,-11.8137203 -2.656,0 -5.1912,0.51732 -7.5104,1.4567 z m 6.6494,36.8383103 c 7.4565,0 13.9107,-4.2916 17.0273,-10.5394 l 1.2054,-0.2049 c -3.148,6.9273 -10.1278,11.7443 -18.2327,11.7443 -4.1343,0 -7.976,-1.2535 -11.1655,-3.4011 l 0.71,-0.7286 c 2.9999,1.9783 6.5933,3.1297 10.4555,3.1297 z"
|
||||
fill="#000000"
|
||||
id="path2" />
|
||||
<mask
|
||||
id="mask0_15907_23"
|
||||
maskUnits="userSpaceOnUse"
|
||||
x="1"
|
||||
y="0"
|
||||
width="48"
|
||||
height="49">
|
||||
<path
|
||||
d="m 48.872,24.5005 c 0,12.9897 -10.5302,23.52 -23.52,23.52 -12.9897,0 -23.51997,-10.5303 -23.51997,-23.52 0,-12.9898 10.53027,-23.520031 23.51997,-23.520031 12.9898,0 23.52,10.530231 23.52,23.520031 z"
|
||||
fill="#ffb852"
|
||||
id="path3" />
|
||||
</mask>
|
||||
<g
|
||||
mask="url(#mask0_15907_23)"
|
||||
id="g12"
|
||||
transform="translate(-0.85156202,-0.00390625)">
|
||||
<path
|
||||
d="m 29.9494,19.2186 c -0.3798,0.0107 -0.765,-0.1685 -1.0552,-0.3503 l -2.7339,-2.5837 c -0.2929,-0.2768 -0.3985,-0.6539 -0.4093,-1.0338 -0.0107,-0.3798 0.1685,-0.765 0.3504,-1.0552 l 0.228,-0.231 c 0.5536,-0.5858 1.4082,-0.6099 1.994,-0.0563 l 2.7339,2.5837 c 0.5858,0.5536 0.6099,1.4082 0.0563,1.994 l -0.228,0.231 c -0.1819,0.2902 -0.5564,0.4909 -0.9362,0.5016 z"
|
||||
fill="#ffb900"
|
||||
stroke="#000000"
|
||||
stroke-width="0.8"
|
||||
id="path4" />
|
||||
<path
|
||||
d="M 4.48061,46.3083 C 4.10079,46.319 3.7156,46.1398 3.42537,45.958 L 0.691541,43.3743 C 0.39863,43.0975 0.292947,42.7204 0.28222,42.3405 0.271493,41.9607 0.450677,41.5755 0.632542,41.2853 L 17.0141,24.128 c 0.5537,-0.5859 1.4083,-0.61 1.9941,-0.0564 l 2.7338,2.5837 c 0.5858,0.5536 0.61,1.4082 0.0563,1.994 L 5.41675,45.8067 c -0.18187,0.2902 -0.55632,0.4909 -0.93614,0.5016 z"
|
||||
fill="#ffb900"
|
||||
stroke="#000000"
|
||||
stroke-width="0.8"
|
||||
id="path5" />
|
||||
<path
|
||||
d="m 23.0029,25.8289 -3.4173,-3.2295 c -0.9764,-0.9228 -1.0193,-2.442 -0.0939,-3.3234 l 1.9378,-2.0504 c 0.9227,-0.9764 2.442,-1.0193 3.3234,-0.0939 l 3.4173,3.2296 c 0.9763,0.9227 1.0193,2.442 0.0938,3.3234 l -1.9377,2.0504 c -0.8278,0.9737 -2.3471,1.0166 -3.3234,0.0938 z"
|
||||
fill="#000000"
|
||||
stroke="#000000"
|
||||
stroke-width="0.8"
|
||||
id="path6" />
|
||||
<path
|
||||
d="m 32.02,38.8804 c 0.1004,0.1872 0.293,0.2768 0.4829,0.2714 0.2848,-0.008 0.3744,-0.2006 0.464,-0.3932 l 0.3316,-1.7199 C 33.9321,32.5543 33.0437,28.018 30.7498,24.1865 30.5545,24.0019 30.2643,23.8201 30.0797,24.0153 l -3.6013,3.7129 c -0.1846,0.1953 -0.2715,0.4828 -0.0762,0.6674 1.1797,1.3921 2.1721,2.8846 2.8824,4.4801 z"
|
||||
fill="#ffe3bd"
|
||||
stroke="#000000"
|
||||
stroke-width="0.8"
|
||||
id="path7" />
|
||||
<path
|
||||
d="m 16.7371,19.3548 c 0.0976,0.0923 0.2875,0.087 0.3825,0.0843 0.0949,-0.0027 0.2822,-0.103 0.2822,-0.103 0.1952,0.1845 3.6882,-4.0005 3.8728,-4.1957 0.1845,-0.1953 0.1765,-0.4802 -0.0188,-0.6647 L 14.7244,8.25001 C 14.1386,7.69637 13.284,7.7205 12.7303,8.30632 l -2.5836,2.73388 c -0.1819,0.2902 -0.36108,0.6754 -0.35036,1.0552 0.01073,0.3798 0.11641,0.7569 0.40936,1.0338 z"
|
||||
fill="#ffe3bd"
|
||||
stroke="#000000"
|
||||
stroke-width="0.8"
|
||||
id="path8" />
|
||||
<path
|
||||
d="m 36.5775,20.2265 c 2.3433,-2.3434 6.1426,-2.3431 8.486,3e-4 2.3433,2.3433 2.3433,6.1423 0,8.4856 -2.3434,2.3434 -6.1427,2.3437 -8.486,3e-4 -2.3433,-2.3433 -2.3433,-6.1429 0,-8.4862 z"
|
||||
fill="#ffe3bd"
|
||||
stroke="#000000"
|
||||
stroke-width="0.8"
|
||||
id="path9" />
|
||||
<path
|
||||
d="m 42.4902,26.5569 c 0.0477,-0.1811 0.0664,-0.365 0.0584,-0.5503 0.1486,0.0028 0.2962,-0.0136 0.4421,-0.0506 0.3304,-0.084 0.6242,-0.2674 0.8822,-0.5255 0.4183,-0.4183 0.6678,-0.8973 0.6767,-1.4321 0.007,-0.4234 -0.1378,-0.836 -0.3954,-1.2334 l 0.1672,-0.1672 c 0.2945,-0.2945 0.2945,-0.7716 0,-1.0662 -0.2004,-0.2003 -0.4852,-0.2644 -0.7395,-0.1922 0.0721,-0.2543 0.0081,-0.5392 -0.1922,-0.7395 -0.2946,-0.2945 -0.7717,-0.2945 -1.0663,0 l -0.106,0.1061 -0.2745,-0.2745 c -0.092,-0.092 -0.2181,-0.1503 -0.361,-0.15 -0.1413,-3e-4 -0.2679,0.0563 -0.3613,0.1497 l -4.4076,4.4076 c -0.0933,0.0933 -0.15,0.2199 -0.1496,0.3612 -4e-4,0.143 0.0579,0.269 0.1499,0.3611 l 0.2745,0.2745 -0.0252,0.0252 c -0.2946,0.2945 -0.2946,0.7717 0,1.0662 0.2003,0.2003 0.4851,0.2644 0.7395,0.1922 -0.0722,0.2544 -0.0081,0.5392 0.1922,0.7395 0.2945,0.2945 0.7717,0.2945 1.0662,0 l 0.0869,-0.0869 c 0.3251,0.2076 0.6691,0.3445 1.0313,0.3962 0.6492,0.0927 1.2321,-0.1448 1.7249,-0.6377 0.2876,-0.2875 0.4913,-0.6115 0.5866,-0.9734 z m -5.9127,-6.3304 c 2.3433,-2.3434 6.1426,-2.3431 8.486,3e-4 2.3433,2.3433 2.3433,6.1423 0,8.4856 -2.3434,2.3434 -6.1427,2.3437 -8.486,3e-4 -2.3433,-2.3433 -2.3433,-6.1429 0,-8.4862 z"
|
||||
fill="#ffb900"
|
||||
stroke="#000000"
|
||||
stroke-width="0.8"
|
||||
id="path10" />
|
||||
<path
|
||||
d="m 40.7239,25.0169 -0.8086,-0.8087 c -0.0217,-0.0216 -0.0433,-0.0216 -0.065,0 l -1.0825,1.0826 c -0.0216,0.0216 -0.0216,0.0433 0,0.0649 l 0.815,0.8151 c 0.1999,0.1998 0.4076,0.3053 0.6226,0.3162 0.2151,0.0108 0.412,-0.0724 0.5902,-0.2506 0.1785,-0.1786 0.2617,-0.3754 0.2509,-0.5905 -0.0108,-0.2151 -0.1183,-0.4248 -0.3226,-0.629 z"
|
||||
fill="#ffb900"
|
||||
stroke="#000000"
|
||||
stroke-width="0.8"
|
||||
id="path11" />
|
||||
<path
|
||||
d="m 41.4242,24.2214 c 0.2042,0.2042 0.4105,0.3152 0.6192,0.3324 0.209,0.0176 0.3957,-0.0561 0.561,-0.2215 0.1695,-0.1694 0.2466,-0.3595 0.2314,-0.5709 -0.0153,-0.2107 -0.1252,-0.418 -0.3294,-0.6222 l -0.763,-0.763 c -0.0216,-0.0216 -0.0433,-0.0216 -0.0649,0 l -1.0173,1.0173 c -0.0216,0.0216 -0.0216,0.0433 0,0.0649 z"
|
||||
fill="#ffb900"
|
||||
stroke="#000000"
|
||||
stroke-width="0.8"
|
||||
id="path12" />
|
||||
</g>
|
||||
<path
|
||||
fill-rule="evenodd"
|
||||
clip-rule="evenodd"
|
||||
d="m 49.000038,24.499994 c 0,13.531 -10.9691,24.5 -24.5,24.5 -13.531,0 -24.500038025717046,-10.969 -24.500038025717046,-24.5 C -2.5717053e-8,10.968994 10.969038,0 24.500038,0 c 13.5309,0 24.5,10.968994 24.5,24.499994 z m -24.5,23.52 c 12.9897,0 23.52,-10.5303 23.52,-23.52 0,-12.9897 -10.5303,-23.51999425 -23.52,-23.51999425 -12.9898,0 -23.52004002,10.53029425 -23.52004002,23.51999425 0,12.9897 10.53024002,23.52 23.52004002,23.52 z"
|
||||
fill="#000000"
|
||||
id="path13" />
|
||||
<path
|
||||
d="m 43.203138,32.828094 c 0,0.5523 -0.4477,1 -1,1 -0.5523,0 -1,-0.4477 -1,-1 0,-0.5523 0.4477,-1 1,-1 0.5523,0 1,0.4477 1,1 z"
|
||||
fill="#000000"
|
||||
id="path16" />
|
||||
<path
|
||||
d="m 43.203138,16.015594 c 0,0.5523 -0.4477,1 -1,1 -0.5523,0 -1,-0.4477 -1,-1 0,-0.5523 0.4477,-1 1,-1 0.5523,0 1,0.4477 1,1 z"
|
||||
fill="#000000"
|
||||
id="path17" />
|
||||
<path
|
||||
d="m 18.535138,6.5156237 c 0,0.55229 -0.4477,1 -1,1 -0.5523,0 -1,-0.44771 -1,-1 0,-0.55228 0.4477,-1 1,-1 0.5523,0 1,0.44772 1,1 z"
|
||||
fill="#000000"
|
||||
id="path18" />
|
||||
<path
|
||||
d="m 7.968748,15.765594 c 0,0.5523 -0.44771,1 -1,1 -0.55228,0 -1,-0.4477 -1,-1 0,-0.5523 0.44772,-1 1,-1 0.55229,0 1,0.4477 1,1 z"
|
||||
fill="#000000"
|
||||
id="path19" />
|
||||
<path
|
||||
d="m 7.003908,30.828094 c 0,0.5523 -0.44772,1 -1,1 -0.55229,0 -1,-0.4477 -1,-1 0,-0.5523 0.44771,-1 1,-1 0.55228,0 1,0.4477 1,1 z"
|
||||
fill="#000000"
|
||||
id="path20" />
|
||||
<path
|
||||
d="m 14.597638,40.515594 c 0,0.5523 -0.4477,1 -1,1 -0.5523,0 -1,-0.4477 -1,-1 0,-0.5523 0.4477,-1 1,-1 0.5523,0 1,0.4477 1,1 z"
|
||||
fill="#000000"
|
||||
id="path21" />
|
||||
<path
|
||||
fill-rule="evenodd"
|
||||
clip-rule="evenodd"
|
||||
d="m 19.983938,25.984794 c 0.1526,-0.1598 0.1467,-0.413 -0.0131,-0.5655 -0.1597,-0.1526 -0.4129,-0.1467 -0.5655,0.0131 l -4.8075,5.0351 0.5659,0.5658 z m -8.2995,7.5341 2.0707,-2.1688 0.5659,0.5658 -2.0708,2.1688 z m -0.2769,1.4484 -0.5658,-0.5658 -1.2942,1.3555 0.5658,0.5658 z m -2.1369,2.2381 -0.56581,-0.5658 -0.62538,0.655 c -0.15256,0.1598 -0.1467,0.413 0.01308,0.5655 0.15978,0.1526 0.41297,0.1467 0.56553,-0.0131 z"
|
||||
fill="#000000"
|
||||
id="path22" />
|
||||
<path
|
||||
d="m 8.086768,40.333994 c -0.82704,0.0479 -1.45863,0.7572 -1.41071,1.5843 0.04793,0.827 0.75723,1.4586 1.58427,1.4107 0.82704,-0.048 1.45861,-0.7573 1.41071,-1.5843 -0.0479,-0.827 -0.75723,-1.4586 -1.58427,-1.4107 z"
|
||||
fill="#ffb900"
|
||||
stroke="#000000"
|
||||
stroke-width="0.8"
|
||||
id="path23" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.9 KiB |
122
mononaut.svg
Normal file
@ -0,0 +1,122 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="400"
|
||||
height="400"
|
||||
viewBox="0 0 105.833 105.833"
|
||||
version="1.1"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient
|
||||
id="B"
|
||||
x1="-1.336"
|
||||
y1="106.769"
|
||||
x2="107.977"
|
||||
y2="-2.01"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0"
|
||||
stop-color="#9200d1" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#040308" />
|
||||
</linearGradient>
|
||||
<path
|
||||
id="C"
|
||||
d="m 97.543,67.914 c 6.836,-5.259 13.744,-0.95 11.76,7.083 -3.595,11.403 -37.471,43.387 -55.859,40.09 -7.48,-3.118 -3.584,-9.598 -3.608,-13.363 z" />
|
||||
<path
|
||||
id="D"
|
||||
d="m 67.146,24.813 1.457,2.213 C 64.777,35.177 67.496,38.796 67.87,44.039 76.1,59.586 49.795,85.17 41.337,88.861 18.289,98.92 6.628,65.63 11.053,39.794 12.673,30.337 24.904,6.163 67.146,24.813 Z" />
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath2007">
|
||||
<circle
|
||||
style="fill:none;stroke:#d2d2d2;stroke-width:0.847709"
|
||||
cx="52.9165"
|
||||
cy="52.9165"
|
||||
r="52.492645" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<path
|
||||
d="M -2.138,-1.876 H 108.244 V 107.972 H -2.138 Z"
|
||||
fill="url(#B)"
|
||||
clip-path="url(#clipPath2007)"
|
||||
style="fill:url(#B)"
|
||||
transform="translate(0.42385455,-0.42385501)" />
|
||||
<use
|
||||
xlink:href="#D"
|
||||
fill="#a7a7a7"
|
||||
transform="matrix(0.91381607,0,0,0.91381607,5.4078264,3.7961222)" />
|
||||
<use
|
||||
xlink:href="#C"
|
||||
fill="#22676d"
|
||||
transform="matrix(0.91381607,0,0,0.91381607,5.2122698,3.8929867)" />
|
||||
<use
|
||||
xlink:href="#C"
|
||||
x="-5.8699999"
|
||||
y="-6.848"
|
||||
fill="#bae5e9"
|
||||
transform="matrix(0.91381607,0,0,0.91381607,5.2122698,3.8929867)" />
|
||||
<g
|
||||
transform="matrix(0.76144821,0.19638913,-0.19638913,0.76144821,11.773466,3.7104913)">
|
||||
<path
|
||||
d="m 35.095,56.217 c -6.897,2.534 -14.54,-2.389 -17.231,-4.852 1.232,-3.402 4.605,-5.926 8.723,-7.237 1.667,-0.531 3.456,-0.862 5.275,-0.973 9.172,1.09 10.688,11.787 3.234,13.062 z"
|
||||
fill="#deaa87" />
|
||||
<path
|
||||
d="m 30.309,23.863 c -7.896,9.706 -12.702,16.83 -7.27,28.958 4.306,9.614 -0.285,11.722 5.684,18.251 5.451,5.552 10.178,5.893 13.988,13.595 11.299,14.269 22.41,3.338 26.08,-5.859 C 81.867,56.072 88.323,34.99 70.681,21.167 55.19,12.329 46.139,12.585 30.308,23.863 Z"
|
||||
fill="#784421" />
|
||||
<path
|
||||
d="m 77.833,50.324 c 6.477,-6.036 5.342,-16.933 4.158,-21.167 -6.08,-0.74 -12.596,4.007 -16.442,10.583 -3.818,10.455 6.858,17.904 12.284,10.583 z m -39.09,-0.809 c 1.456,-4.067 6.299,-7.993 12.284,-6.993 15.426,4.293 4.804,19.41 -2.977,18.474 18.639,3.574 22.325,26.346 6.174,27.178 C 41.506,88.517 45.642,78.855 37.815,76.147 32.218,74.21 35.759,62.478 35.152,63.878 c -6.589,8.76 -12.047,-0.849 -11.528,-9.922 1.775,-2.871 4.82,-3.699 8.882,-1.039 4.79,2.255 5.347,-0.782 6.237,-3.402 z"
|
||||
fill="#deaa87" />
|
||||
<path
|
||||
d="m 60.073,75.352 c -5.07,-5.325 -4.322,-6.425 -6.725,-8.867 -1.507,-1.603 -6.296,-3.855 -11.279,-2.636 -1.699,0.415 -4.449,1.386 -6.199,3.3 -1.683,1.841 -1.026,7.464 2.778,9.202 3.896,1.781 4.088,2.792 5.889,6.981 3.63,8.44 20.554,1.587 15.536,-7.98 z"
|
||||
fill="#502d16" />
|
||||
<path
|
||||
d="m 38.957,52.607 c 1.042,-2.641 2.729,-4.765 10.224,-5.171 7.241,0.815 8.551,5.869 4.817,8.574 -3.148,3.346 -6.333,3.394 -8.936,2.931 -3.51,-0.18 -6.926,-0.203 -8.447,2.894 -5.221,5.911 -10.283,0.054 -10.312,-5.662 1.651,-1.605 3.813,-2.438 7.455,-1.033 4.248,1.104 4.568,-0.834 5.198,-2.532 z"
|
||||
fill="#e9c6af" />
|
||||
<path
|
||||
d="M 42.473,76.398 C 41.477,75.823 42.22,73.699 43.517,73.4 47.746,72.424 56.114,72.874 56.705,74.227 58.16,77.801 52.529,82.984 46.449,82.88 44.075,83.139 45.379,78 42.473,76.399 Z"
|
||||
fill="#28170b" />
|
||||
<path
|
||||
d="m 46.929,76.247 c 0.615,-1.755 8.221,-2.283 7.216,4.076 -0.212,1.375 3.358,1.465 4.41,3.341 1.056,4.793 -3.659,4.369 -6.949,2.773 -4.203,-2.192 -5.874,-5.476 -4.677,-10.19 z"
|
||||
fill="#da789c" />
|
||||
<path
|
||||
d="m 40.867,57.274 c 1.612,-2.043 0.701,-3.848 2.828,-5.021 2.852,-1.245 3.874,0.029 6.461,-0.488 -1.801,1.927 -1.088,3.183 -3.148,4.379 -2.486,1.343 -2.405,0.481 -6.141,1.129 z m -4.341,2.049 c -2.299,-0.611 -2.053,-2.431 -4.251,-2.123 -2.769,0.652 -2.384,2.077 -4.56,3.117 2.373,0.423 2.105,1.799 4.268,1.545 2.555,-0.38 1.455,-0.965 4.543,-2.539 z"
|
||||
fill="#28170b" />
|
||||
<path
|
||||
d="m 44.578,52.357 0.175,1.002 1.721,-0.919 z m -12.969,5.68 0.803,0.561 0.75,-0.484 z"
|
||||
fill="#f4e3d7" />
|
||||
<path
|
||||
d="m 76.762,47.728 c 4.556,-4.246 3.758,-11.911 2.925,-14.89 -4.277,-0.52 -8.861,2.819 -11.566,7.445 -2.686,7.354 4.825,12.595 8.641,7.445 z"
|
||||
fill="#e9c6af" />
|
||||
</g>
|
||||
<path
|
||||
d="M 32.0876,87.82151 C 45.020839,88.933624 74.256557,62.72081 67.428523,44.039668 64.474156,35.956051 66.540294,31.492974 68.013365,28.470984 68.430066,27.616566 67.377349,27.204435 66.581416,26.597661 63.54846,24.285706 37.331991,14.831365 25.052131,25.117279 24.6665,25.439856 19.974968,30.356187 19.947554,30.027213 19.759308,27.76369 19.162586,24.736218 20.335012,23.521756 32.128722,11.30769 47.57861,10.778591 55.769144,10.965923 79.974304,11.519696 82.387692,24.353329 84.135822,24.271085 97.952721,35.535696 101.0003,47.460082 92.252337,60.106383 78.570682,82.678553 66.478154,87.954927 54.345418,95.251749 44.685469,99.137294 28.274246,98.27648 25.294292,82.587172 c 3.090526,2.80907 2.876693,4.485923 6.793308,5.234338 z"
|
||||
fill="#bae5e9"
|
||||
style="stroke-width:0.913816" />
|
||||
<path
|
||||
d="m 42.690608,93.488084 c 1.901652,-0.424925 2.463648,-0.357303 3.447828,-0.04935 4.21452,1.322292 5.121939,0.805986 6.721118,0.04112 7.64864,-4.271176 14.152269,-10.013596 20.196248,-16.348169 l 0.249472,-11.47022 c -0.06397,-0.792278 -0.0064,-1.532469 0.33994,-2.152036 L 83.099555,47.068055 C 84.630197,41.960737 86.92022,34.276458 86.518141,28.783509 86.350912,26.495314 85.145589,26.728337 84.135822,24.271999 97.952721,35.53661 101.0003,47.460996 92.252337,60.107296 78.570682,82.678553 66.478154,87.954927 54.345418,95.251749 c -9.659949,3.885545 -19.076824,1.297618 -22.316302,-1.092924 4.400938,0.381975 6.500888,0.413044 10.661492,-0.670741 z"
|
||||
fill="#22676d"
|
||||
style="stroke-width:0.913816" />
|
||||
<ellipse
|
||||
cx="55.058643"
|
||||
cy="75.862694"
|
||||
rx="6.6196847"
|
||||
ry="10.306013"
|
||||
transform="matrix(0.88495586,-0.46567492,0.4892522,0.87214235,0,0)"
|
||||
fill="#133a3e"
|
||||
style="stroke-width:0.913816" />
|
||||
<path
|
||||
d="m 39.944591,25.038691 c 8.022391,-2.353076 14.264669,-0.629619 19.904742,3.053059 l 1.343309,4.152381 C 52.818432,28.36224 45.360779,26.488003 37.13552,28.703093 Z"
|
||||
opacity="0.753"
|
||||
fill="#ffffff"
|
||||
style="stroke-width:0.913816" />
|
||||
<use
|
||||
xlink:href="#D"
|
||||
fill="url(#A)"
|
||||
stroke="#000000"
|
||||
stroke-width="0.812"
|
||||
style="fill:none"
|
||||
transform="matrix(0.91381607,0,0,0.91381607,5.2223218,3.9231426)" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.8 KiB |
5
neopool.svg
Normal file
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<svg width="193" height="193" viewBox="0 0 193 193" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="193" height="193" rx="25" fill="#191919"/>
|
||||
<path d="M151.069 54.9047L143.939 81.5477L136.222 110.452L129.091 137.095L122.187 162.879C115.643 164.914 108.738 166 101.518 166C98.1781 166 94.8837 165.774 91.6796 165.321L99.2161 137.095L106.346 110.452L114.063 81.5477L117.177 69.8772C121.149 55.0404 98.494 54.9047 98.494 54.9047H91.2283L84.0979 81.5477L76.3809 110.452L69.2506 137.095L64.3767 155.325C54.7643 149.263 46.6862 140.895 41 131.034L46.5057 110.452L54.2227 81.5477L61.3531 54.9047L66.588 35.3635C76.8773 29.4378 88.8364 26 101.563 26C110.769 26 119.569 27.7641 127.602 31.021L121.194 54.9047H151.069Z" fill="#189CD8"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 795 B |
45
noderunners.light.svg
Normal file
@ -0,0 +1,45 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
enable-background="new 0 0 1024 1024"
|
||||
version="1.1"
|
||||
viewBox="0 0 1024 1024"
|
||||
xml:space="preserve"
|
||||
id="svg297"
|
||||
sodipodi:docname="publicpool.svg"
|
||||
inkscape:export-filename="noderunners-pool.light.svg"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:version="1.4.3 (0d15f75, 2025-12-25)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs297"><style
|
||||
id="style1">.cls-1{fill:#fff;}</style></defs><sodipodi:namedview
|
||||
id="namedview297"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="0.72851562"
|
||||
inkscape:cx="512"
|
||||
inkscape:cy="512"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1027"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="25"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg297" /><g
|
||||
id="g298"
|
||||
transform="matrix(12.564028,0,0,12.564028,-69.61519,-70.16255)"><path
|
||||
class="cls-1"
|
||||
d="M 77.51,34.72 A 4.69,4.69 0 0 1 71.07,34 h -9.35 a 1.11,1.11 0 0 0 -1.1,1.11 V 61.66 A 2.43,2.43 0 0 1 58.2,64.08 H 54.75 L 41.21,44.41 a 51.78,51.78 0 0 1 -3,-5 h -0.1 c 0,0 0.35,3 0.35,5 v 16.26 a 3.41,3.41 0 0 1 -3.41,3.41 h -13 a 4.74,4.74 0 0 1 -2.81,1.67 33.29,33.29 0 0 0 58.23,-31 z"
|
||||
id="path1-3"
|
||||
style="fill:#000000" /><path
|
||||
class="cls-1"
|
||||
d="m 18.42,56.41 a 4.71,4.71 0 0 1 3.93,2.1 h 0.87 c 0.62,0 8.71,-0.49 8.71,-1.1 V 30.89 a 2.42,2.42 0 0 1 2.42,-2.42 h 3.5 l 13.49,19.71 c 1.4,2 3,5 3,5 h 0.1 c 0,0 -0.35,-3 -0.35,-5 v -16.3 c 0,-2.36 1,-3.41 3.41,-3.41 h 13.17 a 4.65,4.65 0 0 1 2.41,-1.93 33.3,33.3 0 0 0 -58,31.3 4.72,4.72 0 0 1 3.34,-1.43 z"
|
||||
id="path2-8"
|
||||
style="fill:#000000" /></g></svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
46
noderunners.svg
Normal file
@ -0,0 +1,46 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
enable-background="new 0 0 1024 1024"
|
||||
version="1.1"
|
||||
viewBox="0 0 1024 1024"
|
||||
xml:space="preserve"
|
||||
id="svg297"
|
||||
sodipodi:docname="noderunners.svg"
|
||||
inkscape:export-filename="noderunners-pool.light.svg"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:version="1.4.3 (0d15f75, 2025-12-25)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs297"><style
|
||||
id="style1">.cls-1{fill:#fff;}</style></defs><sodipodi:namedview
|
||||
id="namedview297"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="0.72851562"
|
||||
inkscape:cx="512"
|
||||
inkscape:cy="512"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1027"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="25"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg297" /><g
|
||||
id="g298"
|
||||
transform="matrix(12.564028,0,0,12.564028,-69.61519,-70.16255)"
|
||||
style="fill:#ffffff"><path
|
||||
class="cls-1"
|
||||
d="M 77.51,34.72 A 4.69,4.69 0 0 1 71.07,34 h -9.35 a 1.11,1.11 0 0 0 -1.1,1.11 V 61.66 A 2.43,2.43 0 0 1 58.2,64.08 H 54.75 L 41.21,44.41 a 51.78,51.78 0 0 1 -3,-5 h -0.1 c 0,0 0.35,3 0.35,5 v 16.26 a 3.41,3.41 0 0 1 -3.41,3.41 h -13 a 4.74,4.74 0 0 1 -2.81,1.67 33.29,33.29 0 0 0 58.23,-31 z"
|
||||
id="path1-3"
|
||||
style="fill:#ffffff" /><path
|
||||
class="cls-1"
|
||||
d="m 18.42,56.41 a 4.71,4.71 0 0 1 3.93,2.1 h 0.87 c 0.62,0 8.71,-0.49 8.71,-1.1 V 30.89 a 2.42,2.42 0 0 1 2.42,-2.42 h 3.5 l 13.49,19.71 c 1.4,2 3,5 3,5 h 0.1 c 0,0 -0.35,-3 -0.35,-5 v -16.3 c 0,-2.36 1,-3.41 3.41,-3.41 h 13.17 a 4.65,4.65 0 0 1 2.41,-1.93 33.3,33.3 0 0 0 -58,31.3 4.72,4.72 0 0 1 3.34,-1.43 z"
|
||||
id="path2-8"
|
||||
style="fill:#ffffff" /></g></svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
806
package-lock.json
generated
Normal file
@ -0,0 +1,806 @@
|
||||
{
|
||||
"name": "mining-pool-logos",
|
||||
"version": "1.0.0",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "mining-pool-logos",
|
||||
"version": "1.0.0",
|
||||
"dependencies": {
|
||||
"dompurify": "^3.0.8",
|
||||
"jsdom": "^24.0.0"
|
||||
},
|
||||
"bin": {
|
||||
"check_logos": "check_logos.js"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@asamuzakjp/css-color": {
|
||||
"version": "3.2.0",
|
||||
"resolved": "https://registry.npmjs.org/@asamuzakjp/css-color/-/css-color-3.2.0.tgz",
|
||||
"integrity": "sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@csstools/css-calc": "^2.1.3",
|
||||
"@csstools/css-color-parser": "^3.0.9",
|
||||
"@csstools/css-parser-algorithms": "^3.0.4",
|
||||
"@csstools/css-tokenizer": "^3.0.3",
|
||||
"lru-cache": "^10.4.3"
|
||||
}
|
||||
},
|
||||
"node_modules/@csstools/color-helpers": {
|
||||
"version": "5.1.0",
|
||||
"resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.1.0.tgz",
|
||||
"integrity": "sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA==",
|
||||
"funding": [
|
||||
{
|
||||
"type": "github",
|
||||
"url": "https://github.com/sponsors/csstools"
|
||||
},
|
||||
{
|
||||
"type": "opencollective",
|
||||
"url": "https://opencollective.com/csstools"
|
||||
}
|
||||
],
|
||||
"license": "MIT-0",
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/@csstools/css-calc": {
|
||||
"version": "2.1.4",
|
||||
"resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.4.tgz",
|
||||
"integrity": "sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==",
|
||||
"funding": [
|
||||
{
|
||||
"type": "github",
|
||||
"url": "https://github.com/sponsors/csstools"
|
||||
},
|
||||
{
|
||||
"type": "opencollective",
|
||||
"url": "https://opencollective.com/csstools"
|
||||
}
|
||||
],
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@csstools/css-parser-algorithms": "^3.0.5",
|
||||
"@csstools/css-tokenizer": "^3.0.4"
|
||||
}
|
||||
},
|
||||
"node_modules/@csstools/css-color-parser": {
|
||||
"version": "3.1.0",
|
||||
"resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.1.0.tgz",
|
||||
"integrity": "sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA==",
|
||||
"funding": [
|
||||
{
|
||||
"type": "github",
|
||||
"url": "https://github.com/sponsors/csstools"
|
||||
},
|
||||
{
|
||||
"type": "opencollective",
|
||||
"url": "https://opencollective.com/csstools"
|
||||
}
|
||||
],
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@csstools/color-helpers": "^5.1.0",
|
||||
"@csstools/css-calc": "^2.1.4"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@csstools/css-parser-algorithms": "^3.0.5",
|
||||
"@csstools/css-tokenizer": "^3.0.4"
|
||||
}
|
||||
},
|
||||
"node_modules/@csstools/css-parser-algorithms": {
|
||||
"version": "3.0.5",
|
||||
"resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.5.tgz",
|
||||
"integrity": "sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==",
|
||||
"funding": [
|
||||
{
|
||||
"type": "github",
|
||||
"url": "https://github.com/sponsors/csstools"
|
||||
},
|
||||
{
|
||||
"type": "opencollective",
|
||||
"url": "https://opencollective.com/csstools"
|
||||
}
|
||||
],
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@csstools/css-tokenizer": "^3.0.4"
|
||||
}
|
||||
},
|
||||
"node_modules/@csstools/css-tokenizer": {
|
||||
"version": "3.0.4",
|
||||
"resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.4.tgz",
|
||||
"integrity": "sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==",
|
||||
"funding": [
|
||||
{
|
||||
"type": "github",
|
||||
"url": "https://github.com/sponsors/csstools"
|
||||
},
|
||||
{
|
||||
"type": "opencollective",
|
||||
"url": "https://opencollective.com/csstools"
|
||||
}
|
||||
],
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/@types/trusted-types": {
|
||||
"version": "2.0.7",
|
||||
"resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz",
|
||||
"integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==",
|
||||
"license": "MIT",
|
||||
"optional": true
|
||||
},
|
||||
"node_modules/agent-base": {
|
||||
"version": "7.1.4",
|
||||
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz",
|
||||
"integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">= 14"
|
||||
}
|
||||
},
|
||||
"node_modules/asynckit": {
|
||||
"version": "0.4.0",
|
||||
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
|
||||
"integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/call-bind-apply-helpers": {
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
|
||||
"integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"es-errors": "^1.3.0",
|
||||
"function-bind": "^1.1.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
}
|
||||
},
|
||||
"node_modules/combined-stream": {
|
||||
"version": "1.0.8",
|
||||
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
|
||||
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"delayed-stream": "~1.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.8"
|
||||
}
|
||||
},
|
||||
"node_modules/cssstyle": {
|
||||
"version": "4.6.0",
|
||||
"resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-4.6.0.tgz",
|
||||
"integrity": "sha512-2z+rWdzbbSZv6/rhtvzvqeZQHrBaqgogqt85sqFNbabZOuFbCVFb8kPeEtZjiKkbrm395irpNKiYeFeLiQnFPg==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@asamuzakjp/css-color": "^3.2.0",
|
||||
"rrweb-cssom": "^0.8.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/cssstyle/node_modules/rrweb-cssom": {
|
||||
"version": "0.8.0",
|
||||
"resolved": "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.8.0.tgz",
|
||||
"integrity": "sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/data-urls": {
|
||||
"version": "5.0.0",
|
||||
"resolved": "https://registry.npmjs.org/data-urls/-/data-urls-5.0.0.tgz",
|
||||
"integrity": "sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"whatwg-mimetype": "^4.0.0",
|
||||
"whatwg-url": "^14.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/debug": {
|
||||
"version": "4.4.3",
|
||||
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
|
||||
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"ms": "^2.1.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.0"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"supports-color": {
|
||||
"optional": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"node_modules/decimal.js": {
|
||||
"version": "10.6.0",
|
||||
"resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.6.0.tgz",
|
||||
"integrity": "sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/delayed-stream": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
|
||||
"integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=0.4.0"
|
||||
}
|
||||
},
|
||||
"node_modules/dompurify": {
|
||||
"version": "3.3.1",
|
||||
"resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.3.1.tgz",
|
||||
"integrity": "sha512-qkdCKzLNtrgPFP1Vo+98FRzJnBRGe4ffyCea9IwHB1fyxPOeNTHpLKYGd4Uk9xvNoH0ZoOjwZxNptyMwqrId1Q==",
|
||||
"license": "(MPL-2.0 OR Apache-2.0)",
|
||||
"optionalDependencies": {
|
||||
"@types/trusted-types": "^2.0.7"
|
||||
}
|
||||
},
|
||||
"node_modules/dunder-proto": {
|
||||
"version": "1.0.1",
|
||||
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
|
||||
"integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"call-bind-apply-helpers": "^1.0.1",
|
||||
"es-errors": "^1.3.0",
|
||||
"gopd": "^1.2.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
}
|
||||
},
|
||||
"node_modules/entities": {
|
||||
"version": "6.0.1",
|
||||
"resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz",
|
||||
"integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==",
|
||||
"license": "BSD-2-Clause",
|
||||
"engines": {
|
||||
"node": ">=0.12"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/fb55/entities?sponsor=1"
|
||||
}
|
||||
},
|
||||
"node_modules/es-define-property": {
|
||||
"version": "1.0.1",
|
||||
"resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
|
||||
"integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
}
|
||||
},
|
||||
"node_modules/es-errors": {
|
||||
"version": "1.3.0",
|
||||
"resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
|
||||
"integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
}
|
||||
},
|
||||
"node_modules/es-object-atoms": {
|
||||
"version": "1.1.1",
|
||||
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
|
||||
"integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"es-errors": "^1.3.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
}
|
||||
},
|
||||
"node_modules/es-set-tostringtag": {
|
||||
"version": "2.1.0",
|
||||
"resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
|
||||
"integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"es-errors": "^1.3.0",
|
||||
"get-intrinsic": "^1.2.6",
|
||||
"has-tostringtag": "^1.0.2",
|
||||
"hasown": "^2.0.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
}
|
||||
},
|
||||
"node_modules/form-data": {
|
||||
"version": "4.0.5",
|
||||
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz",
|
||||
"integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"asynckit": "^0.4.0",
|
||||
"combined-stream": "^1.0.8",
|
||||
"es-set-tostringtag": "^2.1.0",
|
||||
"hasown": "^2.0.2",
|
||||
"mime-types": "^2.1.12"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 6"
|
||||
}
|
||||
},
|
||||
"node_modules/function-bind": {
|
||||
"version": "1.1.2",
|
||||
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
||||
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
|
||||
"license": "MIT",
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
}
|
||||
},
|
||||
"node_modules/get-intrinsic": {
|
||||
"version": "1.3.0",
|
||||
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
|
||||
"integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"call-bind-apply-helpers": "^1.0.2",
|
||||
"es-define-property": "^1.0.1",
|
||||
"es-errors": "^1.3.0",
|
||||
"es-object-atoms": "^1.1.1",
|
||||
"function-bind": "^1.1.2",
|
||||
"get-proto": "^1.0.1",
|
||||
"gopd": "^1.2.0",
|
||||
"has-symbols": "^1.1.0",
|
||||
"hasown": "^2.0.2",
|
||||
"math-intrinsics": "^1.1.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
}
|
||||
},
|
||||
"node_modules/get-proto": {
|
||||
"version": "1.0.1",
|
||||
"resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
|
||||
"integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"dunder-proto": "^1.0.1",
|
||||
"es-object-atoms": "^1.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
}
|
||||
},
|
||||
"node_modules/gopd": {
|
||||
"version": "1.2.0",
|
||||
"resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
|
||||
"integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
}
|
||||
},
|
||||
"node_modules/has-symbols": {
|
||||
"version": "1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
|
||||
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
}
|
||||
},
|
||||
"node_modules/has-tostringtag": {
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
|
||||
"integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"has-symbols": "^1.0.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
}
|
||||
},
|
||||
"node_modules/hasown": {
|
||||
"version": "2.0.2",
|
||||
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
|
||||
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"function-bind": "^1.1.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
}
|
||||
},
|
||||
"node_modules/html-encoding-sniffer": {
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz",
|
||||
"integrity": "sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"whatwg-encoding": "^3.1.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/http-proxy-agent": {
|
||||
"version": "7.0.2",
|
||||
"resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz",
|
||||
"integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"agent-base": "^7.1.0",
|
||||
"debug": "^4.3.4"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 14"
|
||||
}
|
||||
},
|
||||
"node_modules/https-proxy-agent": {
|
||||
"version": "7.0.6",
|
||||
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz",
|
||||
"integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"agent-base": "^7.1.2",
|
||||
"debug": "4"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 14"
|
||||
}
|
||||
},
|
||||
"node_modules/iconv-lite": {
|
||||
"version": "0.6.3",
|
||||
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
|
||||
"integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"safer-buffer": ">= 2.1.2 < 3.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
}
|
||||
},
|
||||
"node_modules/is-potential-custom-element-name": {
|
||||
"version": "1.0.1",
|
||||
"resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz",
|
||||
"integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/jsdom": {
|
||||
"version": "24.1.3",
|
||||
"resolved": "https://registry.npmjs.org/jsdom/-/jsdom-24.1.3.tgz",
|
||||
"integrity": "sha512-MyL55p3Ut3cXbeBEG7Hcv0mVM8pp8PBNWxRqchZnSfAiES1v1mRnMeFfaHWIPULpwsYfvO+ZmMZz5tGCnjzDUQ==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"cssstyle": "^4.0.1",
|
||||
"data-urls": "^5.0.0",
|
||||
"decimal.js": "^10.4.3",
|
||||
"form-data": "^4.0.0",
|
||||
"html-encoding-sniffer": "^4.0.0",
|
||||
"http-proxy-agent": "^7.0.2",
|
||||
"https-proxy-agent": "^7.0.5",
|
||||
"is-potential-custom-element-name": "^1.0.1",
|
||||
"nwsapi": "^2.2.12",
|
||||
"parse5": "^7.1.2",
|
||||
"rrweb-cssom": "^0.7.1",
|
||||
"saxes": "^6.0.0",
|
||||
"symbol-tree": "^3.2.4",
|
||||
"tough-cookie": "^4.1.4",
|
||||
"w3c-xmlserializer": "^5.0.0",
|
||||
"webidl-conversions": "^7.0.0",
|
||||
"whatwg-encoding": "^3.1.1",
|
||||
"whatwg-mimetype": "^4.0.0",
|
||||
"whatwg-url": "^14.0.0",
|
||||
"ws": "^8.18.0",
|
||||
"xml-name-validator": "^5.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"canvas": "^2.11.2"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"canvas": {
|
||||
"optional": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"node_modules/lru-cache": {
|
||||
"version": "10.4.3",
|
||||
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
|
||||
"integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
|
||||
"license": "ISC"
|
||||
},
|
||||
"node_modules/math-intrinsics": {
|
||||
"version": "1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
|
||||
"integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
}
|
||||
},
|
||||
"node_modules/mime-db": {
|
||||
"version": "1.52.0",
|
||||
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
|
||||
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">= 0.6"
|
||||
}
|
||||
},
|
||||
"node_modules/mime-types": {
|
||||
"version": "2.1.35",
|
||||
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
|
||||
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"mime-db": "1.52.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.6"
|
||||
}
|
||||
},
|
||||
"node_modules/ms": {
|
||||
"version": "2.1.3",
|
||||
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
||||
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/nwsapi": {
|
||||
"version": "2.2.23",
|
||||
"resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.23.tgz",
|
||||
"integrity": "sha512-7wfH4sLbt4M0gCDzGE6vzQBo0bfTKjU7Sfpqy/7gs1qBfYz2vEJH6vXcBKpO3+6Yu1telwd0t9HpyOoLEQQbIQ==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/parse5": {
|
||||
"version": "7.3.0",
|
||||
"resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz",
|
||||
"integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"entities": "^6.0.0"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/inikulin/parse5?sponsor=1"
|
||||
}
|
||||
},
|
||||
"node_modules/psl": {
|
||||
"version": "1.15.0",
|
||||
"resolved": "https://registry.npmjs.org/psl/-/psl-1.15.0.tgz",
|
||||
"integrity": "sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"punycode": "^2.3.1"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/lupomontero"
|
||||
}
|
||||
},
|
||||
"node_modules/punycode": {
|
||||
"version": "2.3.1",
|
||||
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
|
||||
"integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=6"
|
||||
}
|
||||
},
|
||||
"node_modules/querystringify": {
|
||||
"version": "2.2.0",
|
||||
"resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz",
|
||||
"integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/requires-port": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz",
|
||||
"integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/rrweb-cssom": {
|
||||
"version": "0.7.1",
|
||||
"resolved": "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.7.1.tgz",
|
||||
"integrity": "sha512-TrEMa7JGdVm0UThDJSx7ddw5nVm3UJS9o9CCIZ72B1vSyEZoziDqBYP3XIoi/12lKrJR8rE3jeFHMok2F/Mnsg==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/safer-buffer": {
|
||||
"version": "2.1.2",
|
||||
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
|
||||
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/saxes": {
|
||||
"version": "6.0.0",
|
||||
"resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz",
|
||||
"integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"xmlchars": "^2.2.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=v12.22.7"
|
||||
}
|
||||
},
|
||||
"node_modules/symbol-tree": {
|
||||
"version": "3.2.4",
|
||||
"resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz",
|
||||
"integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/tough-cookie": {
|
||||
"version": "4.1.4",
|
||||
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.4.tgz",
|
||||
"integrity": "sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==",
|
||||
"license": "BSD-3-Clause",
|
||||
"dependencies": {
|
||||
"psl": "^1.1.33",
|
||||
"punycode": "^2.1.1",
|
||||
"universalify": "^0.2.0",
|
||||
"url-parse": "^1.5.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6"
|
||||
}
|
||||
},
|
||||
"node_modules/tr46": {
|
||||
"version": "5.1.1",
|
||||
"resolved": "https://registry.npmjs.org/tr46/-/tr46-5.1.1.tgz",
|
||||
"integrity": "sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"punycode": "^2.3.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/universalify": {
|
||||
"version": "0.2.0",
|
||||
"resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz",
|
||||
"integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">= 4.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/url-parse": {
|
||||
"version": "1.5.10",
|
||||
"resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz",
|
||||
"integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"querystringify": "^2.1.1",
|
||||
"requires-port": "^1.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/w3c-xmlserializer": {
|
||||
"version": "5.0.0",
|
||||
"resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-5.0.0.tgz",
|
||||
"integrity": "sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"xml-name-validator": "^5.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/webidl-conversions": {
|
||||
"version": "7.0.0",
|
||||
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz",
|
||||
"integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==",
|
||||
"license": "BSD-2-Clause",
|
||||
"engines": {
|
||||
"node": ">=12"
|
||||
}
|
||||
},
|
||||
"node_modules/whatwg-encoding": {
|
||||
"version": "3.1.1",
|
||||
"resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz",
|
||||
"integrity": "sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==",
|
||||
"deprecated": "Use @exodus/bytes instead for a more spec-conformant and faster implementation",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"iconv-lite": "0.6.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/whatwg-mimetype": {
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz",
|
||||
"integrity": "sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/whatwg-url": {
|
||||
"version": "14.2.0",
|
||||
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-14.2.0.tgz",
|
||||
"integrity": "sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"tr46": "^5.1.0",
|
||||
"webidl-conversions": "^7.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/ws": {
|
||||
"version": "8.18.3",
|
||||
"resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz",
|
||||
"integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=10.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"bufferutil": "^4.0.1",
|
||||
"utf-8-validate": ">=5.0.2"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"bufferutil": {
|
||||
"optional": true
|
||||
},
|
||||
"utf-8-validate": {
|
||||
"optional": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"node_modules/xml-name-validator": {
|
||||
"version": "5.0.0",
|
||||
"resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-5.0.0.tgz",
|
||||
"integrity": "sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
},
|
||||
"node_modules/xmlchars": {
|
||||
"version": "2.2.0",
|
||||
"resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
|
||||
"integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==",
|
||||
"license": "MIT"
|
||||
}
|
||||
}
|
||||
}
|
||||
20
package.json
Normal file
@ -0,0 +1,20 @@
|
||||
{
|
||||
"name": "mining-pool-logos",
|
||||
"version": "1.0.0",
|
||||
"description": "SVG logo checker",
|
||||
"type": "module",
|
||||
"bin": {
|
||||
"check_logos": "./check_logos.js"
|
||||
},
|
||||
"scripts": {
|
||||
"validate": "node check_logos.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"dompurify": "^3.0.8",
|
||||
"jsdom": "^24.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0"
|
||||
}
|
||||
}
|
||||
|
||||
127
parasite.svg
Normal file
@ -0,0 +1,127 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
width="109.74478"
|
||||
height="116.7427"
|
||||
viewBox="0 0 109.74478 116.7427"
|
||||
sodipodi:docname="Bug.ai"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs6">
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath20">
|
||||
<path
|
||||
d="M 0,89 H 165 V 0 H 0 Z"
|
||||
id="path18" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="namedview4"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="false"
|
||||
inkscape:zoom="3.9775279"
|
||||
inkscape:cx="73.663846"
|
||||
inkscape:cy="46.008477"
|
||||
inkscape:window-width="1704"
|
||||
inkscape:window-height="996"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="32"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g10" />
|
||||
<g
|
||||
id="g10"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Page 1"
|
||||
transform="matrix(1.3333333,0,0,-1.3333333,114.12769,150.07887)">
|
||||
<g
|
||||
id="g16"
|
||||
clip-path="url(#clipPath20)"
|
||||
transform="translate(-126.94128,24.28083)">
|
||||
<g
|
||||
id="g22"
|
||||
transform="translate(121.6635,53.6853)">
|
||||
<path
|
||||
d="m 0,0 c -1.706,-3.601 -4.296,-6.49 -7.442,-9.119 8.114,-7.355 9.246,-16.717 7.763,-27.087 -2.31,1.967 -1.654,4.906 -2.928,7.125 0.65,-4.55 -0.807,-8.654 -2.266,-12.758 -0.13,-0.016 -0.259,-0.031 -0.389,-0.047 -0.191,0.678 -0.495,1.347 -0.554,2.036 -0.277,3.238 -0.416,6.489 -0.744,9.72 -0.259,2.554 -1.37,4.756 -2.993,6.782 -1.381,1.724 -2.392,3.741 -3.732,5.503 -0.809,1.063 -1.933,1.886 -2.782,2.691 -3.079,-1.631 -5.984,-3.213 -8.929,-4.716 -3.17,-1.618 -6.404,-3.115 -9.547,-4.782 -0.499,-0.265 -0.963,-1.154 -0.944,-1.738 0.075,-2.325 0.356,-4.643 0.536,-6.966 0.023,-0.299 -0.099,-0.609 -0.154,-0.914 -0.331,0.104 -0.822,0.106 -0.967,0.331 -0.979,1.525 -1.982,3.05 -2.78,4.672 -0.512,1.041 -0.686,2.248 -1.035,3.463 -0.992,-0.169 -1.933,-0.283 -2.85,-0.496 -1.561,-0.361 -2.186,-1.118 -2.241,-3.09 -0.102,-3.639 -0.382,-7.291 0.597,-10.883 0.811,-2.972 0.012,-5.721 -1.378,-8.349 -0.333,-0.629 -0.705,-1.238 -1.253,-2.195 -0.404,2.439 -0.495,4.477 -1.107,6.343 -1.018,3.106 -2.387,6.097 -3.574,9.149 -0.339,0.872 -0.699,1.772 -0.809,2.688 -0.252,2.104 -0.356,4.226 -0.528,6.448 -1.711,-0.181 -2.407,-1.444 -3.133,-2.536 -1.365,-2.055 -2.791,-4.105 -3.843,-6.322 -1.074,-2.265 -1.614,-4.74 -1.284,-7.323 0.117,-0.916 0.056,-1.853 0.115,-2.778 0.148,-2.324 0.317,-4.646 0.484,-7.056 -1.08,0 -2.422,-0.05 -3.759,0.015 -1.357,0.065 -1.779,1.06 -1.994,2.218 -0.534,2.865 -0.353,5.726 -0.085,8.603 0.276,2.972 0.421,5.956 0.617,8.935 0.023,0.349 0.003,0.701 0.003,1.31 -0.812,-0.661 -1.436,-1.17 -2.241,-1.826 -0.605,0.954 -1.174,1.853 -1.744,2.751 -0.083,-0.018 -0.166,-0.036 -0.249,-0.053 0.234,-1.21 0.469,-2.419 0.7,-3.629 0.239,-1.255 0.615,-2.503 0.683,-3.768 0.183,-3.371 0.309,-6.75 0.302,-10.126 -0.004,-1.799 -0.362,-3.666 -2.225,-4.522 -0.982,-0.452 -2.174,-0.449 -3.357,-0.668 0.365,3.96 0.867,7.674 0.993,11.401 0.077,2.258 -0.438,4.535 -0.671,6.805 -0.187,1.823 -0.372,3.646 -0.515,5.472 -0.13,1.661 -0.274,3.326 -0.275,4.989 -0.001,1.361 0.199,2.722 0.046,4.185 -0.334,-1.301 -0.77,-2.585 -0.977,-3.906 -0.342,-2.174 -0.661,-4.366 -0.746,-6.561 -0.056,-1.446 0.191,-2.938 0.525,-4.357 0.581,-2.465 0.323,-4.89 0.025,-7.344 -0.239,-1.964 -0.363,-3.941 -0.538,-5.912 -0.158,-0.026 -0.316,-0.052 -0.474,-0.078 -0.222,0.95 -0.462,1.896 -0.662,2.85 -0.517,2.467 -0.859,4.983 -1.552,7.398 -1.909,6.649 -2.127,13.179 0.462,19.741 1.209,3.065 2.805,5.796 5.262,7.955 1.334,1.172 1.836,2.611 1.913,4.251 0.201,4.246 1.688,8.111 3.378,11.931 2.37,5.357 5.904,9.874 10.306,13.637 4.657,3.982 9.381,7.908 14.909,10.724 3.018,1.538 5.975,3.22 9.34,3.83 1.884,0.342 3.828,0.39 5.749,0.489 4.676,0.239 9.267,-0.222 13.499,-2.366 2.106,-1.068 4.25,-2.114 5.88,-3.996 1.583,-1.827 3.623,-3.279 5.079,-5.189 0,0 8.944,-10.611 3.084,-22.985"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path24" />
|
||||
</g>
|
||||
<g
|
||||
id="g26"
|
||||
transform="translate(74.6364,78.8385)">
|
||||
<path
|
||||
d="m 0,0 c 0,0 -21.828,-10.319 -23.168,-34.526 0,0 -14.265,-10.126 -6.797,-31.536 l 0.67,0.965 c 0,0 -6.51,17.745 6.989,29.8 0,0 4.116,22.663 22.306,35.297"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path28" />
|
||||
</g>
|
||||
<g
|
||||
id="g30"
|
||||
transform="translate(54.149,39.4908)">
|
||||
<path
|
||||
d="m 0,0 c 0,0 -2.681,-3.183 -3.542,-6.751 l -1.053,-0.578 c 0,0 -2.106,-5.69 0.574,-16.685 0,0 1.628,-8.294 -0.574,-13.598 0,0 5.84,0.082 1.244,16.781 0,0 -2.776,10.126 3.351,20.831"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path32" />
|
||||
</g>
|
||||
<g
|
||||
id="g34"
|
||||
transform="translate(64.0098,34.3927)">
|
||||
<path
|
||||
d="m 0,0 c 0,0 -1.436,-4.257 -4.595,-7.728 0,0 -4.213,-3.279 -2.489,-24.014 l 1.206,1.821 c 0,0 0.517,5.412 1.187,9.173 l -1.628,-5.593 c 0,0 -0.095,12.826 3.255,18.516 0,0 3.064,5.041 3.064,7.825"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path36" />
|
||||
</g>
|
||||
<g
|
||||
id="g38"
|
||||
transform="translate(76.1682,7.9548)">
|
||||
<path
|
||||
d="m 0,0 c 0,0 1.34,1.543 -0.862,5.401 0,0 -2.872,4.05 -2.776,8.197 0,0 0.192,8.39 -1.149,10.994 0,0 -1.723,-12.633 2.489,-19.095 0,0 1.689,-2.749 1.235,-6.666 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path40" />
|
||||
</g>
|
||||
<g
|
||||
id="g42"
|
||||
transform="translate(110.5372,41.5161)">
|
||||
<path
|
||||
d="m 0,0 c 0,0 8.425,-8.583 6.51,-25.267 0,0 4.691,18.034 -6.51,25.267"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path44" />
|
||||
</g>
|
||||
<g
|
||||
id="g46"
|
||||
transform="translate(120.015,30.9076)">
|
||||
<path
|
||||
d="m 0,0 c 0,0 -0.574,-4.918 1.245,-10.223 0,0 1.148,3.569 -1.245,10.223"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path48" />
|
||||
</g>
|
||||
<g
|
||||
id="g50"
|
||||
transform="translate(53.1917,32.5471)">
|
||||
<path
|
||||
d="m 0,0 c 0,0 0.287,-2.122 0.957,-2.797 0,0 0.862,3.016 6.702,4.643 0,0 2.202,-3.003 -6.127,-10.911 0,0 -0.575,-0.965 -1.532,0.385 0,0 -0.8,2.271 -1.734,3.762 0,0 0.585,-0.483 1.734,0.289 0,0 -1.184,0.52 -1.734,3.182 0,0 0.106,0.772 1.734,1.447"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path52" />
|
||||
</g>
|
||||
<g
|
||||
id="g54"
|
||||
transform="translate(59.1273,31.9685)">
|
||||
<path
|
||||
d="m 0,0 -4.978,-4.34 c 0,0 1.053,-0.771 2.489,0 0,0 3.159,2.025 2.489,4.34"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path56" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.3 KiB |
218
phoenix.svg
Normal file
@ -0,0 +1,218 @@
|
||||
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M25.6102 26.5859C25.5695 26.554 25.5369 26.5221 25.4961 26.4902C25.5287 26.5301 25.5695 26.562 25.6102 26.5859Z" fill="#CA5001"/>
|
||||
<path d="M25.0816 27.1443C25.3337 27.1443 25.5381 26.9443 25.5381 26.6976C25.5381 26.4509 25.3337 26.251 25.0816 26.251C24.8294 26.251 24.625 26.4509 24.625 26.6976C24.625 26.9443 24.8294 27.1443 25.0816 27.1443Z" fill="#C57D0A"/>
|
||||
<path d="M23.4409 26.4265C23.1882 26.4265 22.9844 26.2271 22.9844 25.9799C22.9844 25.7326 23.1882 25.5332 23.4409 25.5332C23.6937 25.5332 23.8975 25.7326 23.8975 25.9799C23.8975 26.2271 23.6937 26.4265 23.4409 26.4265Z" fill="#C57D0A"/>
|
||||
<path d="M21.8042 25.7165C22.0564 25.7165 22.2608 25.5166 22.2608 25.2699C22.2608 25.0232 22.0564 24.8232 21.8042 24.8232C21.5521 24.8232 21.3477 25.0232 21.3477 25.2699C21.3477 25.5166 21.5521 25.7165 21.8042 25.7165Z" fill="#C57D0A"/>
|
||||
<path d="M20.1558 24.9988C19.903 24.9988 19.6992 24.7994 19.6992 24.5521C19.6992 24.3049 19.903 24.1055 20.1558 24.1055C20.4085 24.1055 20.6123 24.3049 20.6123 24.5521C20.6123 24.7994 20.4085 24.9988 20.1558 24.9988Z" fill="#C57D0A"/>
|
||||
<path d="M18.5191 24.2888C18.7712 24.2888 18.9756 24.0888 18.9756 23.8422C18.9756 23.5955 18.7712 23.3955 18.5191 23.3955C18.2669 23.3955 18.0625 23.5955 18.0625 23.8422C18.0625 24.0888 18.2669 24.2888 18.5191 24.2888Z" fill="#C57D0A"/>
|
||||
<path d="M16.8784 23.571C16.6257 23.571 16.4219 23.3716 16.4219 23.1244C16.4219 22.8771 16.6257 22.6777 16.8784 22.6777C17.1312 22.6777 17.335 22.8771 17.335 23.1244C17.335 23.3716 17.1312 23.571 16.8784 23.571Z" fill="#C57D0A"/>
|
||||
<path d="M15.2417 22.8533C15.4939 22.8533 15.6983 22.6533 15.6983 22.4066C15.6983 22.1599 15.4939 21.96 15.2417 21.96C14.9896 21.96 14.7852 22.1599 14.7852 22.4066C14.7852 22.6533 14.9896 22.8533 15.2417 22.8533Z" fill="#C57D0A"/>
|
||||
<path d="M13.6011 22.1355C13.3484 22.1355 13.1445 21.9361 13.1445 21.6888C13.1445 21.4416 13.3484 21.2422 13.6011 21.2422C13.8538 21.2422 14.0576 21.4416 14.0576 21.6888C14.0576 21.9361 13.8457 22.1355 13.6011 22.1355Z" fill="#C57D0A"/>
|
||||
<path d="M25.4156 29.6883C25.3422 29.6883 25.2852 29.6325 25.2852 29.5607C25.2852 29.4889 25.3422 29.4331 25.4156 29.4331C25.489 29.4331 25.546 29.4889 25.546 29.5607C25.546 29.6325 25.489 29.6883 25.4156 29.6883Z" fill="#CA5001"/>
|
||||
<path d="M26.3856 31.6903C26.5251 31.6903 26.6383 31.5796 26.6383 31.4431C26.6383 31.3065 26.5251 31.1958 26.3856 31.1958C26.246 31.1958 26.1328 31.3065 26.1328 31.4431C26.1328 31.5796 26.246 31.6903 26.3856 31.6903Z" fill="#CA5001"/>
|
||||
<path d="M27.3637 33.6843C27.5753 33.6843 27.7468 33.5165 27.7468 33.3094C27.7468 33.1024 27.5753 32.9346 27.3637 32.9346C27.152 32.9346 26.9805 33.1024 26.9805 33.3094C26.9805 33.5165 27.152 33.6843 27.3637 33.6843Z" fill="#CA5001"/>
|
||||
<path d="M28.3261 35.6866C28.0408 35.6866 27.8125 35.4633 27.8125 35.1841C27.8125 34.905 28.0408 34.6816 28.3261 34.6816C28.6115 34.6816 28.8398 34.905 28.8398 35.1841C28.8398 35.4633 28.6033 35.6866 28.3261 35.6866Z" fill="#CA5001"/>
|
||||
<path d="M23.0914 28.7157C23.018 28.7157 22.9609 28.6598 22.9609 28.5881C22.9609 28.5163 23.018 28.4604 23.0914 28.4604C23.1648 28.4604 23.2218 28.5163 23.2218 28.5881C23.2218 28.6598 23.1566 28.7157 23.0914 28.7157Z" fill="#CA5001"/>
|
||||
<path d="M24.0613 30.7176C24.2009 30.7176 24.3141 30.6069 24.3141 30.4704C24.3141 30.3338 24.2009 30.2231 24.0613 30.2231C23.9217 30.2231 23.8086 30.3338 23.8086 30.4704C23.8086 30.6069 23.9217 30.7176 24.0613 30.7176Z" fill="#CA5001"/>
|
||||
<path d="M25.0394 32.7112C25.2511 32.7112 25.4226 32.5433 25.4226 32.3363C25.4226 32.1293 25.2511 31.9614 25.0394 31.9614C24.8278 31.9614 24.6562 32.1293 24.6562 32.3363C24.6562 32.5433 24.8278 32.7112 25.0394 32.7112Z" fill="#CA5001"/>
|
||||
<path d="M25.9941 34.7135C25.7087 34.7135 25.4805 34.4901 25.4805 34.211C25.4805 33.9318 25.7087 33.7085 25.9941 33.7085C26.2794 33.7085 26.5077 33.9318 26.5077 34.211C26.5077 34.4901 26.2794 34.7135 25.9941 34.7135Z" fill="#CA5001"/>
|
||||
<path d="M20.7594 27.7425C20.686 27.7425 20.6289 27.6867 20.6289 27.6149C20.6289 27.5431 20.686 27.4873 20.7594 27.4873C20.8327 27.4873 20.8898 27.5431 20.8898 27.6149C20.8898 27.6867 20.8327 27.7425 20.7594 27.7425Z" fill="#CA5001"/>
|
||||
<path d="M21.7293 29.7445C21.8689 29.7445 21.982 29.6338 21.982 29.4973C21.982 29.3607 21.8689 29.25 21.7293 29.25C21.5897 29.25 21.4766 29.3607 21.4766 29.4973C21.4766 29.6338 21.5897 29.7445 21.7293 29.7445Z" fill="#CA5001"/>
|
||||
<path d="M22.7074 31.7385C22.919 31.7385 23.0906 31.5707 23.0906 31.3636C23.0906 31.1566 22.919 30.9888 22.7074 30.9888C22.4958 30.9888 22.3242 31.1566 22.3242 31.3636C22.3242 31.5707 22.4958 31.7385 22.7074 31.7385Z" fill="#CA5001"/>
|
||||
<path d="M23.6621 33.7403C23.3767 33.7403 23.1484 33.517 23.1484 33.2378C23.1484 32.9587 23.3767 32.7354 23.6621 32.7354C23.9474 32.7354 24.1757 32.9587 24.1757 33.2378C24.1757 33.517 23.9474 33.7403 23.6621 33.7403Z" fill="#CA5001"/>
|
||||
<path d="M18.4273 26.7694C18.3539 26.7694 18.2969 26.7136 18.2969 26.6418C18.2969 26.57 18.3539 26.5142 18.4273 26.5142C18.5007 26.5142 18.5578 26.57 18.5578 26.6418C18.5578 26.7136 18.5007 26.7694 18.4273 26.7694Z" fill="#CA5001"/>
|
||||
<path d="M19.3973 28.7714C19.2587 28.7714 19.1445 28.6597 19.1445 28.5241C19.1445 28.3885 19.2587 28.2769 19.3973 28.2769C19.5359 28.2769 19.65 28.3885 19.65 28.5241C19.6582 28.6597 19.544 28.7714 19.3973 28.7714Z" fill="#CA5001"/>
|
||||
<path d="M20.3754 30.7654C20.587 30.7654 20.7586 30.5975 20.7586 30.3905C20.7586 30.1835 20.587 30.0156 20.3754 30.0156C20.1637 30.0156 19.9922 30.1835 19.9922 30.3905C19.9922 30.5975 20.1637 30.7654 20.3754 30.7654Z" fill="#CA5001"/>
|
||||
<path d="M21.3378 32.7672C21.0525 32.7672 20.8242 32.5438 20.8242 32.2647C20.8242 31.9855 21.0525 31.7622 21.3378 31.7622C21.6232 31.7622 21.8515 31.9855 21.8515 32.2647C21.8515 32.5438 21.615 32.7672 21.3378 32.7672Z" fill="#CA5001"/>
|
||||
<path d="M16.1031 25.7962C16.0297 25.7962 15.9727 25.7404 15.9727 25.6686C15.9727 25.5968 16.0297 25.541 16.1031 25.541C16.1765 25.541 16.2335 25.5968 16.2335 25.6686C16.2254 25.7404 16.1683 25.7962 16.1031 25.7962Z" fill="#CA5001"/>
|
||||
<path d="M17.073 27.7982C17.2126 27.7982 17.3258 27.6875 17.3258 27.551C17.3258 27.4144 17.2126 27.3037 17.073 27.3037C16.9335 27.3037 16.8203 27.4144 16.8203 27.551C16.8203 27.6875 16.9335 27.7982 17.073 27.7982Z" fill="#CA5001"/>
|
||||
<path d="M18.0512 29.7922C18.2628 29.7922 18.4343 29.6244 18.4343 29.4173C18.4343 29.2103 18.2628 29.0425 18.0512 29.0425C17.8395 29.0425 17.668 29.2103 17.668 29.4173C17.668 29.6244 17.8395 29.7922 18.0512 29.7922Z" fill="#CA5001"/>
|
||||
<path d="M19.0058 31.794C18.7205 31.794 18.4922 31.5707 18.4922 31.2915C18.4922 31.0124 18.7205 30.7891 19.0058 30.7891C19.2912 30.7891 19.5194 31.0124 19.5194 31.2915C19.5194 31.5707 19.2912 31.794 19.0058 31.794Z" fill="#CA5001"/>
|
||||
<path d="M13.7711 24.8231C13.6977 24.8231 13.6406 24.7673 13.6406 24.6955C13.6406 24.6237 13.6977 24.5679 13.7711 24.5679C13.8444 24.5679 13.9015 24.6237 13.9015 24.6955C13.9015 24.7673 13.8444 24.8231 13.7711 24.8231Z" fill="#CA5001"/>
|
||||
<path d="M14.741 26.8251C14.6024 26.8251 14.4883 26.7134 14.4883 26.5778C14.4883 26.4422 14.6024 26.3306 14.741 26.3306C14.8796 26.3306 14.9938 26.4422 14.9938 26.5778C14.9938 26.7134 14.8796 26.8251 14.741 26.8251Z" fill="#CA5001"/>
|
||||
<path d="M15.723 28.8191C15.9347 28.8191 16.1062 28.6512 16.1062 28.4442C16.1062 28.2372 15.9347 28.0693 15.723 28.0693C15.5114 28.0693 15.3398 28.2372 15.3398 28.4442C15.3398 28.6512 15.5114 28.8191 15.723 28.8191Z" fill="#CA5001"/>
|
||||
<path d="M16.6738 30.8209C16.3884 30.8209 16.1602 30.5976 16.1602 30.3184C16.1602 30.0392 16.3884 29.8159 16.6738 29.8159C16.9591 29.8159 17.1874 30.0392 17.1874 30.3184C17.1874 30.5976 16.9591 30.8209 16.6738 30.8209Z" fill="#CA5001"/>
|
||||
<path d="M11.439 23.8583C11.3657 23.8583 11.3086 23.8024 11.3086 23.7306C11.3086 23.6589 11.3657 23.603 11.439 23.603C11.5124 23.603 11.5695 23.6589 11.5695 23.7306C11.5695 23.7944 11.5124 23.8583 11.439 23.8583Z" fill="#CA5001"/>
|
||||
<path d="M12.4129 25.8519C12.2743 25.8519 12.1602 25.7403 12.1602 25.6047C12.1602 25.4691 12.2743 25.3574 12.4129 25.3574C12.5515 25.3574 12.6656 25.4691 12.6656 25.6047C12.6738 25.7403 12.5596 25.8519 12.4129 25.8519Z" fill="#CA5001"/>
|
||||
<path d="M13.391 27.8459C13.6026 27.8459 13.7742 27.6781 13.7742 27.4711C13.7742 27.264 13.6026 27.0962 13.391 27.0962C13.1794 27.0962 13.0078 27.264 13.0078 27.4711C13.0078 27.6781 13.1794 27.8459 13.391 27.8459Z" fill="#CA5001"/>
|
||||
<path d="M14.3535 29.8482C14.0681 29.8482 13.8398 29.6249 13.8398 29.3457C13.8398 29.0666 14.0681 28.8433 14.3535 28.8433C14.6388 28.8433 14.8671 29.0666 14.8671 29.3457C14.8671 29.6249 14.6307 29.8482 14.3535 29.8482Z" fill="#CA5001"/>
|
||||
<path d="M22.4373 21.3298C22.3884 21.3298 22.3477 21.2899 22.3477 21.242C22.3477 21.1942 22.3884 21.1543 22.4373 21.1543C22.4863 21.1543 22.527 21.1942 22.527 21.242C22.527 21.2899 22.4944 21.3298 22.4373 21.3298Z" fill="#CA5001"/>
|
||||
<path d="M23.1169 22.7733C23.019 22.7733 22.9375 22.6935 22.9375 22.5978C22.9375 22.5021 23.019 22.4224 23.1169 22.4224C23.2147 22.4224 23.2962 22.5021 23.2962 22.5978C23.2962 22.6935 23.2229 22.7733 23.1169 22.7733Z" fill="#CA5001"/>
|
||||
<path d="M23.8003 24.2173C23.6535 24.2173 23.5312 24.0977 23.5312 23.9541C23.5312 23.8106 23.6535 23.6909 23.8003 23.6909C23.947 23.6909 24.0693 23.8106 24.0693 23.9541C24.0693 24.0977 23.947 24.2173 23.8003 24.2173Z" fill="#CA5001"/>
|
||||
<path d="M24.4606 25.6685C24.6632 25.6685 24.8275 25.5078 24.8275 25.3096C24.8275 25.1114 24.6632 24.9507 24.4606 24.9507C24.258 24.9507 24.0938 25.1114 24.0938 25.3096C24.0938 25.5078 24.258 25.6685 24.4606 25.6685Z" fill="#CA5001"/>
|
||||
<path d="M20.8006 20.612C20.8501 20.612 20.8903 20.5727 20.8903 20.5243C20.8903 20.4758 20.8501 20.4365 20.8006 20.4365C20.7511 20.4365 20.7109 20.4758 20.7109 20.5243C20.7109 20.5727 20.7511 20.612 20.8006 20.612Z" fill="#CA5001"/>
|
||||
<path d="M21.4762 22.0555C21.3784 22.0555 21.2969 21.9758 21.2969 21.8801C21.2969 21.7843 21.3784 21.7046 21.4762 21.7046C21.5741 21.7046 21.6556 21.7843 21.6556 21.8801C21.6556 21.9758 21.5741 22.0555 21.4762 22.0555Z" fill="#CA5001"/>
|
||||
<path d="M22.1519 23.5074C22.0051 23.5074 21.8828 23.3877 21.8828 23.2442C21.8828 23.1006 22.0051 22.981 22.1519 22.981C22.2986 22.981 22.4209 23.1006 22.4209 23.2442C22.4291 23.3877 22.3068 23.5074 22.1519 23.5074Z" fill="#CA5001"/>
|
||||
<path d="M22.82 24.959C22.6162 24.959 22.4531 24.7995 22.4531 24.6001C22.4531 24.4007 22.6162 24.2412 22.82 24.2412C23.0238 24.2412 23.1869 24.4007 23.1869 24.6001C23.1869 24.7995 23.0238 24.959 22.82 24.959Z" fill="#CA5001"/>
|
||||
<path d="M19.16 19.8942C19.1111 19.8942 19.0703 19.8543 19.0703 19.8065C19.0703 19.7586 19.1111 19.7188 19.16 19.7188C19.2089 19.7188 19.2497 19.7586 19.2497 19.8065C19.2497 19.8543 19.2089 19.8942 19.16 19.8942Z" fill="#CA5001"/>
|
||||
<path d="M19.8395 21.3456C19.7417 21.3456 19.6602 21.2658 19.6602 21.1701C19.6602 21.0744 19.7417 20.9946 19.8395 20.9946C19.9374 20.9946 20.0189 21.0744 20.0189 21.1701C20.0189 21.2658 19.9374 21.3456 19.8395 21.3456Z" fill="#CA5001"/>
|
||||
<path d="M20.5151 22.7896C20.3684 22.7896 20.2461 22.67 20.2461 22.5264C20.2461 22.3828 20.3684 22.2632 20.5151 22.2632C20.6619 22.2632 20.7842 22.3828 20.7842 22.5264C20.7923 22.67 20.67 22.7896 20.5151 22.7896Z" fill="#CA5001"/>
|
||||
<path d="M21.1833 24.2408C20.9795 24.2408 20.8164 24.0813 20.8164 23.8819C20.8164 23.6825 20.9795 23.5229 21.1833 23.5229C21.3871 23.5229 21.5502 23.6825 21.5502 23.8819C21.5502 24.0813 21.3871 24.2408 21.1833 24.2408Z" fill="#CA5001"/>
|
||||
<path d="M17.5233 19.1843C17.5728 19.1843 17.613 19.145 17.613 19.0965C17.613 19.0481 17.5728 19.0088 17.5233 19.0088C17.4737 19.0088 17.4336 19.0481 17.4336 19.0965C17.4336 19.145 17.4737 19.1843 17.5233 19.1843Z" fill="#CA5001"/>
|
||||
<path d="M18.1911 20.6278C18.0932 20.6278 18.0117 20.548 18.0117 20.4523C18.0117 20.3566 18.0932 20.2769 18.1911 20.2769C18.2889 20.2769 18.3704 20.3566 18.3704 20.4523C18.3786 20.548 18.2971 20.6278 18.1911 20.6278Z" fill="#CA5001"/>
|
||||
<path d="M18.8745 22.0713C18.7278 22.0713 18.6055 21.9517 18.6055 21.8081C18.6055 21.6646 18.7278 21.5449 18.8745 21.5449C19.0213 21.5449 19.1436 21.6646 19.1436 21.8081C19.1436 21.9517 19.0213 22.0713 18.8745 22.0713Z" fill="#CA5001"/>
|
||||
<path d="M19.5427 23.523C19.3388 23.523 19.1758 23.3635 19.1758 23.1641C19.1758 22.9647 19.3388 22.8052 19.5427 22.8052C19.7465 22.8052 19.9095 22.9647 19.9095 23.1641C19.9095 23.3635 19.7383 23.523 19.5427 23.523Z" fill="#CA5001"/>
|
||||
<path d="M15.8827 18.4665C15.8337 18.4665 15.793 18.4266 15.793 18.3788C15.793 18.3309 15.8337 18.291 15.8827 18.291C15.9316 18.291 15.9723 18.3309 15.9723 18.3788C15.9723 18.4266 15.9316 18.4665 15.8827 18.4665Z" fill="#CA5001"/>
|
||||
<path d="M16.5505 19.9183C16.4526 19.9183 16.3711 19.8386 16.3711 19.7429C16.3711 19.6471 16.4526 19.5674 16.5505 19.5674C16.6483 19.5674 16.7298 19.6471 16.7298 19.7429C16.738 19.8386 16.6564 19.9183 16.5505 19.9183Z" fill="#CA5001"/>
|
||||
<path d="M17.2378 21.3619C17.091 21.3619 16.9688 21.2422 16.9688 21.0987C16.9688 20.9551 17.091 20.8354 17.2378 20.8354C17.3845 20.8354 17.5068 20.9551 17.5068 21.0987C17.5068 21.2422 17.3845 21.3619 17.2378 21.3619Z" fill="#CA5001"/>
|
||||
<path d="M17.8981 22.8135C17.6943 22.8135 17.5312 22.654 17.5312 22.4546C17.5312 22.2552 17.6943 22.0957 17.8981 22.0957C18.1019 22.0957 18.265 22.2552 18.265 22.4546C18.265 22.654 18.1019 22.8135 17.8981 22.8135Z" fill="#CA5001"/>
|
||||
<path d="M14.2381 17.7565C14.1892 17.7565 14.1484 17.7166 14.1484 17.6688C14.1484 17.6209 14.1892 17.5811 14.2381 17.5811C14.287 17.5811 14.3278 17.6209 14.3278 17.6688C14.3278 17.7166 14.287 17.7565 14.2381 17.7565Z" fill="#CA5001"/>
|
||||
<path d="M14.9137 19.2001C14.8159 19.2001 14.7344 19.1203 14.7344 19.0246C14.7344 18.9289 14.8159 18.8491 14.9137 18.8491C15.0116 18.8491 15.0931 18.9289 15.0931 19.0246C15.0931 19.1203 15.0116 19.2001 14.9137 19.2001Z" fill="#CA5001"/>
|
||||
<path d="M15.5894 20.6441C15.4426 20.6441 15.3203 20.5244 15.3203 20.3809C15.3203 20.2373 15.4426 20.1177 15.5894 20.1177C15.7361 20.1177 15.8584 20.2373 15.8584 20.3809C15.8666 20.5244 15.7443 20.6441 15.5894 20.6441Z" fill="#CA5001"/>
|
||||
<path d="M16.2575 22.0953C16.0537 22.0953 15.8906 21.9358 15.8906 21.7364C15.8906 21.537 16.0537 21.3774 16.2575 21.3774C16.4613 21.3774 16.6244 21.537 16.6244 21.7364C16.6244 21.9358 16.4613 22.0953 16.2575 22.0953Z" fill="#CA5001"/>
|
||||
<path d="M12.5975 17.0388C12.5486 17.0388 12.5078 16.9989 12.5078 16.951C12.5078 16.9032 12.5486 16.8633 12.5975 16.8633C12.6464 16.8633 12.6872 16.9032 12.6872 16.951C12.6872 16.9989 12.6464 17.0388 12.5975 17.0388Z" fill="#CA5001"/>
|
||||
<path d="M13.2731 18.4823C13.1753 18.4823 13.0938 18.4025 13.0938 18.3068C13.0938 18.2111 13.1753 18.1313 13.2731 18.1313C13.3709 18.1313 13.4525 18.2111 13.4525 18.3068C13.4525 18.4025 13.3709 18.4823 13.2731 18.4823Z" fill="#CA5001"/>
|
||||
<path d="M13.9526 19.9258C13.8059 19.9258 13.6836 19.8062 13.6836 19.6626C13.6836 19.5191 13.8059 19.3994 13.9526 19.3994C14.0994 19.3994 14.2217 19.5191 14.2217 19.6626C14.2298 19.8062 14.1075 19.9258 13.9526 19.9258Z" fill="#CA5001"/>
|
||||
<path d="M14.6208 21.3775C14.417 21.3775 14.2539 21.218 14.2539 21.0186C14.2539 20.8192 14.417 20.6597 14.6208 20.6597C14.8246 20.6597 14.9877 20.8192 14.9877 21.0186C14.9877 21.218 14.8246 21.3775 14.6208 21.3775Z" fill="#CA5001"/>
|
||||
<path d="M10.9608 16.321C10.9119 16.321 10.8711 16.2811 10.8711 16.2332C10.8711 16.1854 10.9119 16.1455 10.9608 16.1455C11.0097 16.1455 11.0505 16.1854 11.0505 16.2332C11.0505 16.2811 11.0097 16.321 10.9608 16.321Z" fill="#CA5001"/>
|
||||
<path d="M11.6364 17.7728C11.5386 17.7728 11.457 17.6931 11.457 17.5973C11.457 17.5016 11.5386 17.4219 11.6364 17.4219C11.7342 17.4219 11.8158 17.5016 11.8158 17.5973C11.8158 17.6931 11.7342 17.7728 11.6364 17.7728Z" fill="#CA5001"/>
|
||||
<path d="M12.312 19.2163C12.1653 19.2163 12.043 19.0967 12.043 18.9531C12.043 18.8096 12.1653 18.6899 12.312 18.6899C12.4588 18.6899 12.5811 18.8096 12.5811 18.9531C12.5892 19.0967 12.4669 19.2163 12.312 19.2163Z" fill="#CA5001"/>
|
||||
<path d="M12.9802 20.668C12.7763 20.668 12.6133 20.5085 12.6133 20.3091C12.6133 20.1097 12.7763 19.9502 12.9802 19.9502C13.184 19.9502 13.347 20.1097 13.347 20.3091C13.347 20.5085 13.1758 20.668 12.9802 20.668Z" fill="#CA5001"/>
|
||||
<path d="M9.32015 15.611C9.27123 15.611 9.23047 15.5711 9.23047 15.5233C9.23047 15.4754 9.27123 15.4355 9.32015 15.4355C9.36907 15.4355 9.40983 15.4754 9.40983 15.5233C9.40983 15.5711 9.36907 15.611 9.32015 15.611Z" fill="#CA5001"/>
|
||||
<path d="M9.98796 17.0546C9.89012 17.0546 9.80859 16.9748 9.80859 16.8791C9.80859 16.7834 9.89012 16.7036 9.98796 16.7036C10.0858 16.7036 10.1673 16.7834 10.1673 16.8791C10.1755 16.9748 10.0939 17.0546 9.98796 17.0546Z" fill="#CA5001"/>
|
||||
<path d="M10.6753 18.4986C10.5285 18.4986 10.4062 18.3789 10.4062 18.2354C10.4062 18.0918 10.5285 17.9722 10.6753 17.9722C10.822 17.9722 10.9443 18.0918 10.9443 18.2354C10.9443 18.3789 10.822 18.4986 10.6753 18.4986Z" fill="#CA5001"/>
|
||||
<path d="M11.3434 19.9498C11.1396 19.9498 10.9766 19.7902 10.9766 19.5908C10.9766 19.3915 11.1396 19.2319 11.3434 19.2319C11.5473 19.2319 11.7103 19.3915 11.7103 19.5908C11.7103 19.7902 11.5391 19.9498 11.3434 19.9498Z" fill="#CA5001"/>
|
||||
<path d="M7.67562 14.8932C7.6267 14.8932 7.58594 14.8534 7.58594 14.8055C7.58594 14.7577 7.6267 14.7178 7.67562 14.7178C7.72454 14.7178 7.7653 14.7577 7.7653 14.8055C7.7653 14.8534 7.72454 14.8932 7.67562 14.8932Z" fill="#CA5001"/>
|
||||
<path d="M8.35124 16.3451C8.2534 16.3451 8.17188 16.2653 8.17188 16.1696C8.17188 16.0739 8.2534 15.9941 8.35124 15.9941C8.44907 15.9941 8.5306 16.0739 8.5306 16.1696C8.5306 16.2653 8.44907 16.3451 8.35124 16.3451Z" fill="#CA5001"/>
|
||||
<path d="M9.03467 17.7886C8.88792 17.7886 8.76562 17.669 8.76562 17.5254C8.76562 17.3818 8.88792 17.2622 9.03467 17.2622C9.18142 17.2622 9.30371 17.3818 9.30371 17.5254C9.30371 17.669 9.18142 17.7886 9.03467 17.7886Z" fill="#CA5001"/>
|
||||
<path d="M9.695 19.2403C9.49118 19.2403 9.32812 19.0808 9.32812 18.8814C9.32812 18.682 9.49118 18.5225 9.695 18.5225C9.89882 18.5225 10.0619 18.682 10.0619 18.8814C10.0619 19.0808 9.89882 19.2403 9.695 19.2403Z" fill="#CA5001"/>
|
||||
<path d="M6.03499 14.1755C5.98608 14.1755 5.94531 14.1356 5.94531 14.0877C5.94531 14.0399 5.98608 14 6.03499 14C6.08391 14 6.12467 14.0399 6.12467 14.0877C6.12467 14.1356 6.08391 14.1755 6.03499 14.1755Z" fill="#CA5001"/>
|
||||
<path d="M6.71061 15.6273C6.80967 15.6273 6.88997 15.5487 6.88997 15.4518C6.88997 15.3549 6.80967 15.2764 6.71061 15.2764C6.61155 15.2764 6.53125 15.3549 6.53125 15.4518C6.53125 15.5487 6.61155 15.6273 6.71061 15.6273Z" fill="#CA5001"/>
|
||||
<path d="M7.39014 17.0708C7.24339 17.0708 7.12109 16.9512 7.12109 16.8076C7.12109 16.6641 7.24339 16.5444 7.39014 16.5444C7.53689 16.5444 7.65918 16.6641 7.65918 16.8076C7.66733 16.9512 7.54504 17.0708 7.39014 17.0708Z" fill="#CA5001"/>
|
||||
<path d="M8.05828 18.5225C7.85446 18.5225 7.69141 18.363 7.69141 18.1636C7.69141 17.9642 7.85446 17.8047 8.05828 17.8047C8.2621 17.8047 8.42516 17.9642 8.42516 18.1636C8.42516 18.363 8.2621 18.5225 8.05828 18.5225Z" fill="#CA5001"/>
|
||||
<path d="M9.11873 22.8851C9.04535 22.8851 8.98828 22.8293 8.98828 22.7575C8.98828 22.6857 9.04535 22.6299 9.11873 22.6299C9.1921 22.6299 9.24917 22.6857 9.24917 22.7575C9.24102 22.8213 9.18395 22.8851 9.11873 22.8851Z" fill="#CA5001"/>
|
||||
<path d="M10.0887 24.8793C9.95008 24.8793 9.83594 24.7676 9.83594 24.632C9.83594 24.4964 9.95008 24.3848 10.0887 24.3848C10.2273 24.3848 10.3414 24.4964 10.3414 24.632C10.3414 24.7676 10.2273 24.8793 10.0887 24.8793Z" fill="#CA5001"/>
|
||||
<path d="M11.0668 26.8733C11.2784 26.8733 11.45 26.7054 11.45 26.4984C11.45 26.2914 11.2784 26.1235 11.0668 26.1235C10.8552 26.1235 10.6836 26.2914 10.6836 26.4984C10.6836 26.7054 10.8552 26.8733 11.0668 26.8733Z" fill="#CA5001"/>
|
||||
<path d="M12.0214 28.8751C11.7361 28.8751 11.5078 28.6518 11.5078 28.3726C11.5078 28.0934 11.7361 27.8701 12.0214 27.8701C12.3068 27.8701 12.5351 28.0934 12.5351 28.3726C12.5351 28.6518 12.3068 28.8751 12.0214 28.8751Z" fill="#CA5001"/>
|
||||
<path d="M6.7867 21.912C6.71332 21.912 6.65625 21.8561 6.65625 21.7844C6.65625 21.7126 6.71332 21.6567 6.7867 21.6567C6.86007 21.6567 6.91714 21.7126 6.91714 21.7844C6.91714 21.8561 6.86007 21.912 6.7867 21.912Z" fill="#CA5001"/>
|
||||
<path d="M7.75664 23.9061C7.61805 23.9061 7.50391 23.7945 7.50391 23.6589C7.50391 23.5233 7.61805 23.4116 7.75664 23.4116C7.89524 23.4116 8.00938 23.5233 8.00938 23.6589C8.00938 23.7945 7.89524 23.9061 7.75664 23.9061Z" fill="#CA5001"/>
|
||||
<path d="M8.73475 25.9001C8.94637 25.9001 9.11793 25.7323 9.11793 25.5253C9.11793 25.3182 8.94637 25.1504 8.73475 25.1504C8.52312 25.1504 8.35156 25.3182 8.35156 25.5253C8.35156 25.7323 8.52312 25.9001 8.73475 25.9001Z" fill="#CA5001"/>
|
||||
<path d="M9.68941 27.9019C9.40406 27.9019 9.17578 27.6786 9.17578 27.3995C9.17578 27.1203 9.40406 26.897 9.68941 26.897C9.97476 26.897 10.203 27.1203 10.203 27.3995C10.203 27.6786 9.97476 27.9019 9.68941 27.9019Z" fill="#CA5001"/>
|
||||
<path d="M4.45466 20.9388C4.38129 20.9388 4.32422 20.883 4.32422 20.8112C4.32422 20.7394 4.38129 20.6836 4.45466 20.6836C4.52804 20.6836 4.58511 20.7394 4.58511 20.8112C4.58511 20.883 4.52804 20.9388 4.45466 20.9388Z" fill="#CA5001"/>
|
||||
<path d="M5.42461 22.933C5.28601 22.933 5.17188 22.8213 5.17188 22.6857C5.17188 22.5501 5.28601 22.4385 5.42461 22.4385C5.56321 22.4385 5.67735 22.5501 5.67735 22.6857C5.6855 22.8213 5.57136 22.933 5.42461 22.933Z" fill="#CA5001"/>
|
||||
<path d="M6.40271 24.927C6.61434 24.927 6.7859 24.7591 6.7859 24.5521C6.7859 24.3451 6.61434 24.1772 6.40271 24.1772C6.19109 24.1772 6.01953 24.3451 6.01953 24.5521C6.01953 24.7591 6.19109 24.927 6.40271 24.927Z" fill="#CA5001"/>
|
||||
<path d="M7.36519 26.9288C7.07984 26.9288 6.85156 26.7055 6.85156 26.4263C6.85156 26.1472 7.07984 25.9238 7.36519 25.9238C7.65054 25.9238 7.87882 26.1472 7.87882 26.4263C7.87882 26.7055 7.64239 26.9288 7.36519 26.9288Z" fill="#CA5001"/>
|
||||
<path d="M2.13045 19.9662C2.05707 19.9662 2 19.9103 2 19.8386C2 19.7668 2.05707 19.7109 2.13045 19.7109C2.20382 19.7109 2.26089 19.7668 2.26089 19.8386C2.25274 19.9024 2.19567 19.9662 2.13045 19.9662Z" fill="#CA5001"/>
|
||||
<path d="M61.3101 19.9662C61.2368 19.9662 61.1797 19.9103 61.1797 19.8386C61.1797 19.7668 61.2368 19.7109 61.3101 19.7109C61.3835 19.7109 61.4406 19.7668 61.4406 19.8386C61.4324 19.9024 61.3754 19.9662 61.3101 19.9662Z" fill="#CA5001"/>
|
||||
<path d="M3.10039 21.9598C2.9618 21.9598 2.84766 21.8482 2.84766 21.7126C2.84766 21.577 2.9618 21.4653 3.10039 21.4653C3.23899 21.4653 3.35313 21.577 3.35313 21.7126C3.35313 21.8482 3.23899 21.9598 3.10039 21.9598Z" fill="#CA5001"/>
|
||||
<path d="M4.0785 23.9538C4.29012 23.9538 4.46168 23.786 4.46168 23.579C4.46168 23.3719 4.29012 23.2041 4.0785 23.2041C3.86687 23.2041 3.69531 23.3719 3.69531 23.579C3.69531 23.786 3.86687 23.9538 4.0785 23.9538Z" fill="#CA5001"/>
|
||||
<path d="M5.03316 25.9556C4.74781 25.9556 4.51953 25.7323 4.51953 25.4532C4.51953 25.174 4.74781 24.9507 5.03316 24.9507C5.31851 24.9507 5.54679 25.174 5.54679 25.4532C5.54679 25.7323 5.31851 25.9556 5.03316 25.9556Z" fill="#CA5001"/>
|
||||
<path d="M38.3062 29.6883C38.2328 29.6883 38.1758 29.6325 38.1758 29.5607C38.1758 29.4889 38.2328 29.4331 38.3062 29.4331C38.3796 29.4331 38.4367 29.4889 38.4367 29.5607C38.4367 29.6325 38.3796 29.6883 38.3062 29.6883Z" fill="#CA5001"/>
|
||||
<path d="M37.3348 31.6903C37.1962 31.6903 37.082 31.5786 37.082 31.4431C37.082 31.3075 37.1962 31.1958 37.3348 31.1958C37.4734 31.1958 37.5875 31.3075 37.5875 31.4431C37.5875 31.5786 37.4734 31.6903 37.3348 31.6903Z" fill="#CA5001"/>
|
||||
<path d="M36.3558 33.6843C36.5675 33.6843 36.739 33.5165 36.739 33.3094C36.739 33.1024 36.5675 32.9346 36.3558 32.9346C36.1442 32.9346 35.9727 33.1024 35.9727 33.3094C35.9727 33.5165 36.1442 33.6843 36.3558 33.6843Z" fill="#CA5001"/>
|
||||
<path d="M35.4003 35.6866C35.115 35.6866 34.8867 35.4633 34.8867 35.1841C34.8867 34.905 35.115 34.6816 35.4003 34.6816C35.6857 34.6816 35.914 34.905 35.914 35.1841C35.914 35.4633 35.6775 35.6866 35.4003 35.6866Z" fill="#CA5001"/>
|
||||
<path d="M40.6344 28.7157C40.561 28.7157 40.5039 28.6598 40.5039 28.5881C40.5039 28.5163 40.561 28.4604 40.6344 28.4604C40.7077 28.4604 40.7648 28.5163 40.7648 28.5881C40.7566 28.6598 40.6996 28.7157 40.6344 28.7157Z" fill="#CA5001"/>
|
||||
<path d="M39.6668 30.7176C39.5282 30.7176 39.4141 30.606 39.4141 30.4704C39.4141 30.3348 39.5282 30.2231 39.6668 30.2231C39.8054 30.2231 39.9195 30.3348 39.9195 30.4704C39.9195 30.606 39.8054 30.7176 39.6668 30.7176Z" fill="#CA5001"/>
|
||||
<path d="M38.6879 32.7112C38.8995 32.7112 39.0711 32.5433 39.0711 32.3363C39.0711 32.1293 38.8995 31.9614 38.6879 31.9614C38.4762 31.9614 38.3047 32.1293 38.3047 32.3363C38.3047 32.5433 38.4762 32.7112 38.6879 32.7112Z" fill="#CA5001"/>
|
||||
<path d="M37.7246 34.7135C37.4392 34.7135 37.2109 34.4901 37.2109 34.211C37.2109 33.9318 37.4392 33.7085 37.7246 33.7085C38.0099 33.7085 38.2382 33.9318 38.2382 34.211C38.2382 34.4901 38.0099 34.7135 37.7246 34.7135Z" fill="#CA5001"/>
|
||||
<path d="M42.9586 27.7425C42.8852 27.7425 42.8281 27.6867 42.8281 27.6149C42.8281 27.5431 42.8852 27.4873 42.9586 27.4873C43.0319 27.4873 43.089 27.5431 43.089 27.6149C43.089 27.6867 43.0319 27.7425 42.9586 27.7425Z" fill="#CA5001"/>
|
||||
<path d="M41.991 29.7445C41.8524 29.7445 41.7383 29.6328 41.7383 29.4973C41.7383 29.3617 41.8524 29.25 41.991 29.25C42.1296 29.25 42.2438 29.3617 42.2438 29.4973C42.2438 29.6328 42.1378 29.7445 41.991 29.7445Z" fill="#CA5001"/>
|
||||
<path d="M41.0121 31.7385C41.2237 31.7385 41.3953 31.5707 41.3953 31.3636C41.3953 31.1566 41.2237 30.9888 41.0121 30.9888C40.8005 30.9888 40.6289 31.1566 40.6289 31.3636C40.6289 31.5707 40.8005 31.7385 41.0121 31.7385Z" fill="#CA5001"/>
|
||||
<path d="M40.0566 33.7403C39.7712 33.7403 39.543 33.517 39.543 33.2378C39.543 32.9587 39.7712 32.7354 40.0566 32.7354C40.3419 32.7354 40.5702 32.9587 40.5702 33.2378C40.5702 33.517 40.3419 33.7403 40.0566 33.7403Z" fill="#CA5001"/>
|
||||
<path d="M45.2906 26.7694C45.2172 26.7694 45.1602 26.7136 45.1602 26.6418C45.1602 26.57 45.2172 26.5142 45.2906 26.5142C45.364 26.5142 45.421 26.57 45.421 26.6418C45.421 26.7136 45.364 26.7694 45.2906 26.7694Z" fill="#CA5001"/>
|
||||
<path d="M44.323 28.7714C44.1845 28.7714 44.0703 28.6597 44.0703 28.5241C44.0703 28.3885 44.1845 28.2769 44.323 28.2769C44.4616 28.2769 44.5758 28.3885 44.5758 28.5241C44.5758 28.6597 44.4616 28.7714 44.323 28.7714Z" fill="#CA5001"/>
|
||||
<path d="M43.3441 30.7654C43.5557 30.7654 43.7273 30.5975 43.7273 30.3905C43.7273 30.1835 43.5557 30.0156 43.3441 30.0156C43.1325 30.0156 42.9609 30.1835 42.9609 30.3905C42.9609 30.5975 43.1325 30.7654 43.3441 30.7654Z" fill="#CA5001"/>
|
||||
<path d="M42.3886 32.7672C42.1033 32.7672 41.875 32.5438 41.875 32.2647C41.875 31.9855 42.1033 31.7622 42.3886 31.7622C42.674 31.7622 42.9023 31.9855 42.9023 32.2647C42.9023 32.5438 42.6658 32.7672 42.3886 32.7672Z" fill="#CA5001"/>
|
||||
<path d="M47.6226 25.7962C47.5493 25.7962 47.4922 25.7404 47.4922 25.6686C47.4922 25.5968 47.5493 25.541 47.6226 25.541C47.696 25.541 47.7531 25.5968 47.7531 25.6686C47.7449 25.7404 47.6879 25.7962 47.6226 25.7962Z" fill="#CA5001"/>
|
||||
<path d="M46.6512 27.7982C46.5126 27.7982 46.3984 27.6866 46.3984 27.551C46.3984 27.4154 46.5126 27.3037 46.6512 27.3037C46.7898 27.3037 46.9039 27.4154 46.9039 27.551C46.9039 27.6866 46.7898 27.7982 46.6512 27.7982Z" fill="#CA5001"/>
|
||||
<path d="M45.6762 29.7922C45.8878 29.7922 46.0593 29.6244 46.0593 29.4173C46.0593 29.2103 45.8878 29.0425 45.6762 29.0425C45.4645 29.0425 45.293 29.2103 45.293 29.4173C45.293 29.6244 45.4645 29.7922 45.6762 29.7922Z" fill="#CA5001"/>
|
||||
<path d="M44.7128 31.794C44.4275 31.794 44.1992 31.5707 44.1992 31.2915C44.1992 31.0124 44.4275 30.7891 44.7128 30.7891C44.9982 30.7891 45.2265 31.0124 45.2265 31.2915C45.2265 31.5707 44.9982 31.794 44.7128 31.794Z" fill="#CA5001"/>
|
||||
<path d="M49.9469 24.8231C49.8735 24.8231 49.8164 24.7673 49.8164 24.6955C49.8164 24.6237 49.8735 24.5679 49.9469 24.5679C50.0202 24.5679 50.0773 24.6237 50.0773 24.6955C50.0773 24.7673 50.0202 24.8231 49.9469 24.8231Z" fill="#CA5001"/>
|
||||
<path d="M48.9754 26.8251C48.8368 26.8251 48.7227 26.7134 48.7227 26.5778C48.7227 26.4422 48.8368 26.3306 48.9754 26.3306C49.114 26.3306 49.2281 26.4422 49.2281 26.5778C49.2363 26.7134 49.1221 26.8251 48.9754 26.8251Z" fill="#CA5001"/>
|
||||
<path d="M47.9965 28.8191C48.2081 28.8191 48.3797 28.6512 48.3797 28.4442C48.3797 28.2372 48.2081 28.0693 47.9965 28.0693C47.7848 28.0693 47.6133 28.2372 47.6133 28.4442C47.6133 28.6512 47.7848 28.8191 47.9965 28.8191Z" fill="#CA5001"/>
|
||||
<path d="M47.0449 30.8209C46.7595 30.8209 46.5312 30.5976 46.5312 30.3184C46.5312 30.0392 46.7595 29.8159 47.0449 29.8159C47.3302 29.8159 47.5585 30.0392 47.5585 30.3184C47.5585 30.5976 47.3302 30.8209 47.0449 30.8209Z" fill="#CA5001"/>
|
||||
<path d="M52.2789 23.8583C52.2055 23.8583 52.1484 23.8024 52.1484 23.7306C52.1484 23.6589 52.2055 23.603 52.2789 23.603C52.3523 23.603 52.4093 23.6589 52.4093 23.7306C52.4093 23.7944 52.3523 23.8583 52.2789 23.8583Z" fill="#CA5001"/>
|
||||
<path d="M51.3074 25.8519C51.1688 25.8519 51.0547 25.7403 51.0547 25.6047C51.0547 25.4691 51.1688 25.3574 51.3074 25.3574C51.446 25.3574 51.5602 25.4691 51.5602 25.6047C51.5602 25.7403 51.446 25.8519 51.3074 25.8519Z" fill="#CA5001"/>
|
||||
<path d="M50.3285 27.8459C50.5401 27.8459 50.7117 27.6781 50.7117 27.4711C50.7117 27.264 50.5401 27.0962 50.3285 27.0962C50.1169 27.0962 49.9453 27.264 49.9453 27.4711C49.9453 27.6781 50.1169 27.8459 50.3285 27.8459Z" fill="#CA5001"/>
|
||||
<path d="M49.3769 29.8482C49.0916 29.8482 48.8633 29.6249 48.8633 29.3457C48.8633 29.0666 49.0916 28.8433 49.3769 28.8433C49.6623 28.8433 49.8905 29.0666 49.8905 29.3457C49.8905 29.6249 49.6541 29.8482 49.3769 29.8482Z" fill="#CA5001"/>
|
||||
<path d="M54.6109 22.8851C54.5375 22.8851 54.4805 22.8293 54.4805 22.7575C54.4805 22.6857 54.5375 22.6299 54.6109 22.6299C54.6843 22.6299 54.7414 22.6857 54.7414 22.7575C54.7332 22.8213 54.6761 22.8851 54.6109 22.8851Z" fill="#CA5001"/>
|
||||
<path d="M53.6395 24.8793C53.5009 24.8793 53.3867 24.7676 53.3867 24.632C53.3867 24.4964 53.5009 24.3848 53.6395 24.3848C53.7781 24.3848 53.8922 24.4964 53.8922 24.632C53.8922 24.7676 53.7781 24.8793 53.6395 24.8793Z" fill="#CA5001"/>
|
||||
<path d="M52.6605 26.8733C52.8722 26.8733 53.0437 26.7054 53.0437 26.4984C53.0437 26.2914 52.8722 26.1235 52.6605 26.1235C52.4489 26.1235 52.2773 26.2914 52.2773 26.4984C52.2773 26.7054 52.4489 26.8733 52.6605 26.8733Z" fill="#CA5001"/>
|
||||
<path d="M51.7011 28.8751C51.4158 28.8751 51.1875 28.6518 51.1875 28.3726C51.1875 28.0934 51.4158 27.8701 51.7011 27.8701C51.9865 27.8701 52.2148 28.0934 52.2148 28.3726C52.2148 28.6518 51.9865 28.8751 51.7011 28.8751Z" fill="#CA5001"/>
|
||||
<path d="M56.9351 21.912C56.8618 21.912 56.8047 21.8561 56.8047 21.7844C56.8047 21.7126 56.8618 21.6567 56.9351 21.6567C57.0085 21.6567 57.0656 21.7126 57.0656 21.7844C57.0656 21.8561 57.0085 21.912 56.9351 21.912Z" fill="#CA5001"/>
|
||||
<path d="M55.9637 23.9061C55.8251 23.9061 55.7109 23.7945 55.7109 23.6589C55.7109 23.5233 55.8251 23.4116 55.9637 23.4116C56.1023 23.4116 56.2164 23.5233 56.2164 23.6589C56.2164 23.7945 56.1104 23.9061 55.9637 23.9061Z" fill="#CA5001"/>
|
||||
<path d="M54.9847 25.9001C55.1964 25.9001 55.3679 25.7323 55.3679 25.5253C55.3679 25.3182 55.1964 25.1504 54.9847 25.1504C54.7731 25.1504 54.6016 25.3182 54.6016 25.5253C54.6016 25.7323 54.7731 25.9001 54.9847 25.9001Z" fill="#CA5001"/>
|
||||
<path d="M54.0332 27.9019C53.7478 27.9019 53.5195 27.6786 53.5195 27.3995C53.5195 27.1203 53.7478 26.897 54.0332 26.897C54.3185 26.897 54.5468 27.1203 54.5468 27.3995C54.5468 27.6786 54.3185 27.9019 54.0332 27.9019Z" fill="#CA5001"/>
|
||||
<path d="M59.2672 20.9388C59.1938 20.9388 59.1367 20.883 59.1367 20.8112C59.1367 20.7394 59.1938 20.6836 59.2672 20.6836C59.3405 20.6836 59.3976 20.7394 59.3976 20.8112C59.3976 20.883 59.3405 20.9388 59.2672 20.9388Z" fill="#CA5001"/>
|
||||
<path d="M58.2957 22.933C58.1571 22.933 58.043 22.8213 58.043 22.6857C58.043 22.5501 58.1571 22.4385 58.2957 22.4385C58.4343 22.4385 58.5484 22.5501 58.5484 22.6857C58.5484 22.8213 58.4343 22.933 58.2957 22.933Z" fill="#CA5001"/>
|
||||
<path d="M57.3168 24.927C57.5284 24.927 57.7 24.7591 57.7 24.5521C57.7 24.3451 57.5284 24.1772 57.3168 24.1772C57.1052 24.1772 56.9336 24.3451 56.9336 24.5521C56.9336 24.7591 57.1052 24.927 57.3168 24.927Z" fill="#CA5001"/>
|
||||
<path d="M56.3613 26.9288C56.0759 26.9288 55.8477 26.7055 55.8477 26.4263C55.8477 26.1472 56.0759 25.9238 56.3613 25.9238C56.6466 25.9238 56.8749 26.1472 56.8749 26.4263C56.8749 26.7055 56.6385 26.9288 56.3613 26.9288Z" fill="#CA5001"/>
|
||||
<path d="M60.6277 21.9598C60.4891 21.9598 60.375 21.8482 60.375 21.7126C60.375 21.577 60.4891 21.4653 60.6277 21.4653C60.7663 21.4653 60.8805 21.577 60.8805 21.7126C60.8805 21.8482 60.7663 21.9598 60.6277 21.9598Z" fill="#CA5001"/>
|
||||
<path d="M59.6488 23.9538C59.8604 23.9538 60.032 23.786 60.032 23.579C60.032 23.3719 59.8604 23.2041 59.6488 23.2041C59.4372 23.2041 59.2656 23.3719 59.2656 23.579C59.2656 23.786 59.4372 23.9538 59.6488 23.9538Z" fill="#CA5001"/>
|
||||
<path d="M58.6855 25.9556C58.4002 25.9556 58.1719 25.7323 58.1719 25.4532C58.1719 25.174 58.4002 24.9507 58.6855 24.9507C58.9709 24.9507 59.1991 25.174 59.1991 25.4532C59.1991 25.7323 58.9709 25.9556 58.6855 25.9556Z" fill="#CA5001"/>
|
||||
<path d="M29.2066 37.728C29.5623 37.728 29.8506 37.4459 29.8506 37.0979C29.8506 36.7499 29.5623 36.4678 29.2066 36.4678C28.8509 36.4678 28.5625 36.7499 28.5625 37.0979C28.5625 37.4459 28.8509 37.728 29.2066 37.728Z" fill="#C57D0A"/>
|
||||
<path d="M26.8824 36.7548C27.2381 36.7548 27.5264 36.4727 27.5264 36.1247C27.5264 35.7767 27.2381 35.4946 26.8824 35.4946C26.5266 35.4946 26.2383 35.7767 26.2383 36.1247C26.2383 36.4727 26.5266 36.7548 26.8824 36.7548Z" fill="#C57D0A"/>
|
||||
<path d="M24.5503 35.7822C24.906 35.7822 25.1944 35.5001 25.1944 35.1521C25.1944 34.8041 24.906 34.522 24.5503 34.522C24.1946 34.522 23.9062 34.8041 23.9062 35.1521C23.9062 35.5001 24.1946 35.7822 24.5503 35.7822Z" fill="#C57D0A"/>
|
||||
<path d="M22.2183 34.809C22.574 34.809 22.8624 34.5269 22.8624 34.1789C22.8624 33.8309 22.574 33.5488 22.2183 33.5488C21.8626 33.5488 21.5742 33.8309 21.5742 34.1789C21.5742 34.5269 21.8626 34.809 22.2183 34.809Z" fill="#C57D0A"/>
|
||||
<path d="M19.8941 33.8359C20.2498 33.8359 20.5381 33.5538 20.5381 33.2058C20.5381 32.8578 20.2498 32.5757 19.8941 32.5757C19.5384 32.5757 19.25 32.8578 19.25 33.2058C19.25 33.5538 19.5384 33.8359 19.8941 33.8359Z" fill="#C57D0A"/>
|
||||
<path d="M17.562 32.8627C17.9178 32.8627 18.2061 32.5806 18.2061 32.2326C18.2061 31.8846 17.9178 31.6025 17.562 31.6025C17.2063 31.6025 16.918 31.8846 16.918 32.2326C16.918 32.5806 17.2063 32.8627 17.562 32.8627Z" fill="#C57D0A"/>
|
||||
<path d="M15.2339 31.8896C15.5896 31.8896 15.878 31.6075 15.878 31.2595C15.878 30.9115 15.5896 30.6294 15.2339 30.6294C14.8782 30.6294 14.5898 30.9115 14.5898 31.2595C14.5898 31.6075 14.8782 31.8896 15.2339 31.8896Z" fill="#C57D0A"/>
|
||||
<path d="M12.9097 30.9164C13.2654 30.9164 13.5538 30.6343 13.5538 30.2863C13.5538 29.9384 13.2654 29.6562 12.9097 29.6562C12.554 29.6562 12.2656 29.9384 12.2656 30.2863C12.2656 30.6343 12.554 30.9164 12.9097 30.9164Z" fill="#C57D0A"/>
|
||||
<path d="M10.5777 29.9438C10.9334 29.9438 11.2217 29.6617 11.2217 29.3137C11.2217 28.9657 10.9334 28.6836 10.5777 28.6836C10.222 28.6836 9.93359 28.9657 9.93359 29.3137C9.93359 29.6617 10.222 29.9438 10.5777 29.9438Z" fill="#C57D0A"/>
|
||||
<path d="M8.24564 28.9706C8.60135 28.9706 8.88971 28.6885 8.88971 28.3405C8.88971 27.9926 8.60135 27.7104 8.24564 27.7104C7.88992 27.7104 7.60156 27.9926 7.60156 28.3405C7.60156 28.6885 7.88992 28.9706 8.24564 28.9706Z" fill="#C57D0A"/>
|
||||
<path d="M5.92142 27.9975C6.27713 27.9975 6.56549 27.7154 6.56549 27.3674C6.56549 27.0194 6.27713 26.7373 5.92142 26.7373C5.56571 26.7373 5.27734 27.0194 5.27734 27.3674C5.27734 27.7154 5.56571 27.9975 5.92142 27.9975Z" fill="#C57D0A"/>
|
||||
<path d="M34.5152 37.728C34.8709 37.728 35.1592 37.4459 35.1592 37.0979C35.1592 36.7499 34.8709 36.4678 34.5152 36.4678C34.1595 36.4678 33.8711 36.7499 33.8711 37.0979C33.8711 37.4459 34.1595 37.728 34.5152 37.728Z" fill="#C57D0A"/>
|
||||
<path d="M36.8433 36.7548C37.199 36.7548 37.4874 36.4727 37.4874 36.1247C37.4874 35.7767 37.199 35.4946 36.8433 35.4946C36.4876 35.4946 36.1992 35.7767 36.1992 36.1247C36.1992 36.4727 36.4876 36.7548 36.8433 36.7548Z" fill="#C57D0A"/>
|
||||
<path d="M39.1675 35.7822C39.5232 35.7822 39.8116 35.5001 39.8116 35.1521C39.8116 34.8041 39.5232 34.522 39.1675 34.522C38.8118 34.522 38.5234 34.8041 38.5234 35.1521C38.5234 35.5001 38.8118 35.7822 39.1675 35.7822Z" fill="#C57D0A"/>
|
||||
<path d="M41.4995 34.809C41.8553 34.809 42.1436 34.5269 42.1436 34.1789C42.1436 33.8309 41.8553 33.5488 41.4995 33.5488C41.1438 33.5488 40.8555 33.8309 40.8555 34.1789C40.8555 34.5269 41.1438 34.809 41.4995 34.809Z" fill="#C57D0A"/>
|
||||
<path d="M43.8316 33.8359C44.1873 33.8359 44.4756 33.5538 44.4756 33.2058C44.4756 32.8578 44.1873 32.5757 43.8316 32.5757C43.4759 32.5757 43.1875 32.8578 43.1875 33.2058C43.1875 33.5538 43.4759 33.8359 43.8316 33.8359Z" fill="#C57D0A"/>
|
||||
<path d="M46.1558 32.8627C46.5115 32.8627 46.7999 32.5806 46.7999 32.2326C46.7999 31.8846 46.5115 31.6025 46.1558 31.6025C45.8001 31.6025 45.5117 31.8846 45.5117 32.2326C45.5117 32.5806 45.8001 32.8627 46.1558 32.8627Z" fill="#C57D0A"/>
|
||||
<path d="M48.4878 31.8896C48.8435 31.8896 49.1319 31.6075 49.1319 31.2595C49.1319 30.9115 48.8435 30.6294 48.4878 30.6294C48.1321 30.6294 47.8438 30.9115 47.8438 31.2595C47.8438 31.6075 48.1321 31.8896 48.4878 31.8896Z" fill="#C57D0A"/>
|
||||
<path d="M50.8199 30.9164C51.1756 30.9164 51.4639 30.6343 51.4639 30.2863C51.4639 29.9384 51.1756 29.6562 50.8199 29.6562C50.4641 29.6562 50.1758 29.9384 50.1758 30.2863C50.1758 30.6343 50.4641 30.9164 50.8199 30.9164Z" fill="#C57D0A"/>
|
||||
<path d="M53.1441 29.9438C53.4998 29.9438 53.7881 29.6617 53.7881 29.3137C53.7881 28.9657 53.4998 28.6836 53.1441 28.6836C52.7884 28.6836 52.5 28.9657 52.5 29.3137C52.5 29.6617 52.7884 29.9438 53.1441 29.9438Z" fill="#C57D0A"/>
|
||||
<path d="M55.4761 28.9706C55.8318 28.9706 56.1202 28.6885 56.1202 28.3405C56.1202 27.9926 55.8318 27.7104 55.4761 27.7104C55.1204 27.7104 54.832 27.9926 54.832 28.3405C54.832 28.6885 55.1204 28.9706 55.4761 28.9706Z" fill="#C57D0A"/>
|
||||
<path d="M57.8042 27.9975C58.1599 27.9975 58.4483 27.7154 58.4483 27.3674C58.4483 27.0194 58.1599 26.7373 57.8042 26.7373C57.4485 26.7373 57.1602 27.0194 57.1602 27.3674C57.1602 27.7154 57.4485 27.9975 57.8042 27.9975Z" fill="#C57D0A"/>
|
||||
<path d="M40.9881 21.3298C40.9392 21.3298 40.8984 21.2899 40.8984 21.242C40.8984 21.1942 40.9392 21.1543 40.9881 21.1543C41.037 21.1543 41.0778 21.1942 41.0778 21.242C41.0778 21.2899 41.037 21.3298 40.9881 21.3298Z" fill="#CA5001"/>
|
||||
<path d="M40.3083 22.7733C40.2104 22.7733 40.1289 22.6935 40.1289 22.5978C40.1289 22.5021 40.2104 22.4224 40.3083 22.4224C40.4061 22.4224 40.4876 22.5021 40.4876 22.5978C40.4876 22.6935 40.4061 22.7733 40.3083 22.7733Z" fill="#CA5001"/>
|
||||
<path d="M39.6245 24.2173C39.4778 24.2173 39.3555 24.0977 39.3555 23.9541C39.3555 23.8106 39.4778 23.6909 39.6245 23.6909C39.7713 23.6909 39.8936 23.8106 39.8936 23.9541C39.9017 24.0977 39.7794 24.2173 39.6245 24.2173Z" fill="#CA5001"/>
|
||||
<path d="M38.9645 25.6685C38.7607 25.6685 38.5977 25.509 38.5977 25.3096C38.5977 25.1102 38.7607 24.9507 38.9645 24.9507C39.1684 24.9507 39.3314 25.1102 39.3314 25.3096C39.3314 25.509 39.1602 25.6685 38.9645 25.6685Z" fill="#CA5001"/>
|
||||
<path d="M42.6248 20.612C42.5759 20.612 42.5352 20.5721 42.5352 20.5243C42.5352 20.4764 42.5759 20.4365 42.6248 20.4365C42.6738 20.4365 42.7145 20.4764 42.7145 20.5243C42.7145 20.5721 42.6738 20.612 42.6248 20.612Z" fill="#CA5001"/>
|
||||
<path d="M41.9489 22.0555C41.8511 22.0555 41.7695 21.9758 41.7695 21.8801C41.7695 21.7843 41.8511 21.7046 41.9489 21.7046C42.0467 21.7046 42.1283 21.7843 42.1283 21.8801C42.1283 21.9758 42.0467 22.0555 41.9489 22.0555Z" fill="#CA5001"/>
|
||||
<path d="M41.273 23.5074C41.1262 23.5074 41.0039 23.3877 41.0039 23.2442C41.0039 23.1006 41.1262 22.981 41.273 22.981C41.4197 22.981 41.542 23.1006 41.542 23.2442C41.542 23.3877 41.4197 23.5074 41.273 23.5074Z" fill="#CA5001"/>
|
||||
<path d="M40.6052 24.959C40.8078 24.959 40.972 24.7983 40.972 24.6001C40.972 24.4019 40.8078 24.2412 40.6052 24.2412C40.4025 24.2412 40.2383 24.4019 40.2383 24.6001C40.2383 24.7983 40.4025 24.959 40.6052 24.959Z" fill="#CA5001"/>
|
||||
<path d="M44.2655 19.8942C44.315 19.8942 44.3551 19.8549 44.3551 19.8065C44.3551 19.758 44.315 19.7188 44.2655 19.7188C44.2159 19.7188 44.1758 19.758 44.1758 19.8065C44.1758 19.8549 44.2159 19.8942 44.2655 19.8942Z" fill="#CA5001"/>
|
||||
<path d="M43.5895 21.3456C43.4917 21.3456 43.4102 21.2658 43.4102 21.1701C43.4102 21.0744 43.4917 20.9946 43.5895 20.9946C43.6874 20.9946 43.7689 21.0744 43.7689 21.1701C43.777 21.2658 43.6955 21.3456 43.5895 21.3456Z" fill="#CA5001"/>
|
||||
<path d="M42.9097 22.7896C42.7629 22.7896 42.6406 22.67 42.6406 22.5264C42.6406 22.3828 42.7629 22.2632 42.9097 22.2632C43.0564 22.2632 43.1787 22.3828 43.1787 22.5264C43.1787 22.67 43.0564 22.7896 42.9097 22.7896Z" fill="#CA5001"/>
|
||||
<path d="M42.2419 24.2408C42.0381 24.2408 41.875 24.0813 41.875 23.8819C41.875 23.6825 42.0381 23.5229 42.2419 23.5229C42.4457 23.5229 42.6088 23.6825 42.6088 23.8819C42.6088 24.0813 42.4457 24.2408 42.2419 24.2408Z" fill="#CA5001"/>
|
||||
<path d="M45.9022 19.1843C45.8533 19.1843 45.8125 19.1444 45.8125 19.0965C45.8125 19.0487 45.8533 19.0088 45.9022 19.0088C45.9511 19.0088 45.9919 19.0487 45.9919 19.0965C45.9919 19.1444 45.9511 19.1843 45.9022 19.1843Z" fill="#CA5001"/>
|
||||
<path d="M45.2341 20.6278C45.1362 20.6278 45.0547 20.548 45.0547 20.4523C45.0547 20.3566 45.1362 20.2769 45.2341 20.2769C45.3319 20.2769 45.4134 20.3566 45.4134 20.4523C45.4134 20.548 45.3319 20.6278 45.2341 20.6278Z" fill="#CA5001"/>
|
||||
<path d="M44.5503 22.0713C44.4035 22.0713 44.2812 21.9517 44.2812 21.8081C44.2812 21.6646 44.4035 21.5449 44.5503 21.5449C44.6971 21.5449 44.8193 21.6646 44.8193 21.8081C44.8275 21.9517 44.7052 22.0713 44.5503 22.0713Z" fill="#CA5001"/>
|
||||
<path d="M43.8825 23.5313C44.0851 23.5313 44.2494 23.3706 44.2494 23.1724C44.2494 22.9742 44.0851 22.8135 43.8825 22.8135C43.6799 22.8135 43.5156 22.9742 43.5156 23.1724C43.5156 23.3706 43.6799 23.5313 43.8825 23.5313Z" fill="#CA5001"/>
|
||||
<path d="M47.5506 18.4665C47.6002 18.4665 47.6403 18.4272 47.6403 18.3788C47.6403 18.3303 47.6002 18.291 47.5506 18.291C47.5011 18.291 47.4609 18.3303 47.4609 18.3788C47.4609 18.4272 47.5011 18.4665 47.5506 18.4665Z" fill="#CA5001"/>
|
||||
<path d="M46.8747 19.9183C46.7768 19.9183 46.6953 19.8386 46.6953 19.7429C46.6953 19.6471 46.7768 19.5674 46.8747 19.5674C46.9725 19.5674 47.054 19.6471 47.054 19.7429C47.054 19.8386 46.9725 19.9183 46.8747 19.9183Z" fill="#CA5001"/>
|
||||
<path d="M46.187 21.3619C46.0403 21.3619 45.918 21.2422 45.918 21.0987C45.918 20.9551 46.0403 20.8354 46.187 20.8354C46.3338 20.8354 46.4561 20.9551 46.4561 21.0987C46.4642 21.2422 46.3419 21.3619 46.187 21.3619Z" fill="#CA5001"/>
|
||||
<path d="M45.527 22.8135C45.3232 22.8135 45.1602 22.654 45.1602 22.4546C45.1602 22.2552 45.3232 22.0957 45.527 22.0957C45.7309 22.0957 45.8939 22.2552 45.8939 22.4546C45.8939 22.654 45.7227 22.8135 45.527 22.8135Z" fill="#CA5001"/>
|
||||
<path d="M49.1873 17.7565C49.1384 17.7565 49.0977 17.7166 49.0977 17.6688C49.0977 17.6209 49.1384 17.5811 49.1873 17.5811C49.2363 17.5811 49.277 17.6209 49.277 17.6688C49.277 17.7166 49.2363 17.7565 49.1873 17.7565Z" fill="#CA5001"/>
|
||||
<path d="M48.5114 19.2001C48.4136 19.2001 48.332 19.1203 48.332 19.0246C48.332 18.9289 48.4136 18.8491 48.5114 18.8491C48.6092 18.8491 48.6908 18.9289 48.6908 19.0246C48.6908 19.1203 48.6092 19.2001 48.5114 19.2001Z" fill="#CA5001"/>
|
||||
<path d="M47.8354 20.6441C47.6887 20.6441 47.5664 20.5244 47.5664 20.3809C47.5664 20.2373 47.6887 20.1177 47.8354 20.1177C47.9822 20.1177 48.1045 20.2373 48.1045 20.3809C48.1045 20.5244 47.9822 20.6441 47.8354 20.6441Z" fill="#CA5001"/>
|
||||
<path d="M47.1677 22.0953C46.9638 22.0953 46.8008 21.9358 46.8008 21.7364C46.8008 21.537 46.9638 21.3774 47.1677 21.3774C47.3715 21.3774 47.5345 21.537 47.5345 21.7364C47.5345 21.9358 47.3633 22.0953 47.1677 22.0953Z" fill="#CA5001"/>
|
||||
<path d="M50.828 17.0388C50.779 17.0388 50.7383 16.9989 50.7383 16.951C50.7383 16.9032 50.779 16.8633 50.828 16.8633C50.8769 16.8633 50.9176 16.9032 50.9176 16.951C50.9176 16.9989 50.8769 17.0388 50.828 17.0388Z" fill="#CA5001"/>
|
||||
<path d="M50.152 18.4823C50.0542 18.4823 49.9727 18.4025 49.9727 18.3068C49.9727 18.2111 50.0542 18.1313 50.152 18.1313C50.2498 18.1313 50.3314 18.2111 50.3314 18.3068C50.3395 18.4025 50.258 18.4823 50.152 18.4823Z" fill="#CA5001"/>
|
||||
<path d="M49.4722 19.9258C49.3254 19.9258 49.2031 19.8062 49.2031 19.6626C49.2031 19.5191 49.3254 19.3994 49.4722 19.3994C49.6189 19.3994 49.7412 19.5191 49.7412 19.6626C49.7412 19.8062 49.6189 19.9258 49.4722 19.9258Z" fill="#CA5001"/>
|
||||
<path d="M48.8044 21.3775C48.6006 21.3775 48.4375 21.218 48.4375 21.0186C48.4375 20.8192 48.6006 20.6597 48.8044 20.6597C49.0082 20.6597 49.1712 20.8192 49.1712 21.0186C49.1712 21.218 49.0082 21.3775 48.8044 21.3775Z" fill="#CA5001"/>
|
||||
<path d="M52.4647 16.321C52.4158 16.321 52.375 16.2811 52.375 16.2332C52.375 16.1854 52.4158 16.1455 52.4647 16.1455C52.5136 16.1455 52.5544 16.1854 52.5544 16.2332C52.5544 16.2811 52.5136 16.321 52.4647 16.321Z" fill="#CA5001"/>
|
||||
<path d="M51.7966 17.7728C51.6987 17.7728 51.6172 17.6931 51.6172 17.5973C51.6172 17.5016 51.6987 17.4219 51.7966 17.4219C51.8944 17.4219 51.9759 17.5016 51.9759 17.5973C51.9759 17.6931 51.8944 17.7728 51.7966 17.7728Z" fill="#CA5001"/>
|
||||
<path d="M51.1128 19.2163C50.966 19.2163 50.8438 19.0967 50.8438 18.9531C50.8438 18.8096 50.966 18.6899 51.1128 18.6899C51.2595 18.6899 51.3818 18.8096 51.3818 18.9531C51.39 19.0967 51.2677 19.2163 51.1128 19.2163Z" fill="#CA5001"/>
|
||||
<path d="M50.445 20.668C50.2412 20.668 50.0781 20.5085 50.0781 20.3091C50.0781 20.1097 50.2412 19.9502 50.445 19.9502C50.6488 19.9502 50.8119 20.1097 50.8119 20.3091C50.8119 20.5085 50.6488 20.668 50.445 20.668Z" fill="#CA5001"/>
|
||||
<path d="M54.1053 15.611C54.0564 15.611 54.0156 15.5711 54.0156 15.5233C54.0156 15.4754 54.0564 15.4355 54.1053 15.4355C54.1542 15.4355 54.195 15.4754 54.195 15.5233C54.2031 15.5711 54.1624 15.611 54.1053 15.611Z" fill="#CA5001"/>
|
||||
<path d="M53.4372 17.0546C53.3393 17.0546 53.2578 16.9748 53.2578 16.8791C53.2578 16.7834 53.3393 16.7036 53.4372 16.7036C53.535 16.7036 53.6165 16.7834 53.6165 16.8791C53.6165 16.9748 53.535 17.0546 53.4372 17.0546Z" fill="#CA5001"/>
|
||||
<path d="M52.7495 18.4986C52.6028 18.4986 52.4805 18.3789 52.4805 18.2354C52.4805 18.0918 52.6028 17.9722 52.7495 17.9722C52.8963 17.9722 53.0186 18.0918 53.0186 18.2354C53.0267 18.3789 52.9044 18.4986 52.7495 18.4986Z" fill="#CA5001"/>
|
||||
<path d="M52.0895 19.9498C51.8857 19.9498 51.7227 19.7902 51.7227 19.5908C51.7227 19.3915 51.8857 19.2319 52.0895 19.2319C52.2934 19.2319 52.4564 19.3915 52.4564 19.5908C52.4564 19.7902 52.2852 19.9498 52.0895 19.9498Z" fill="#CA5001"/>
|
||||
<path d="M55.7498 14.8932C55.7009 14.8932 55.6602 14.8534 55.6602 14.8055C55.6602 14.7577 55.7009 14.7178 55.7498 14.7178C55.7988 14.7178 55.8395 14.7577 55.8395 14.8055C55.8395 14.8534 55.7988 14.8932 55.7498 14.8932Z" fill="#CA5001"/>
|
||||
<path d="M55.0739 16.3451C54.9761 16.3451 54.8945 16.2653 54.8945 16.1696C54.8945 16.0739 54.9761 15.9941 55.0739 15.9941C55.1717 15.9941 55.2533 16.0739 55.2533 16.1696C55.2533 16.2653 55.1717 16.3451 55.0739 16.3451Z" fill="#CA5001"/>
|
||||
<path d="M54.3979 17.7886C54.2512 17.7886 54.1289 17.669 54.1289 17.5254C54.1289 17.3818 54.2512 17.2622 54.3979 17.2622C54.5447 17.2622 54.667 17.3818 54.667 17.5254C54.667 17.669 54.5447 17.7886 54.3979 17.7886Z" fill="#CA5001"/>
|
||||
<path d="M53.7302 19.2403C53.5263 19.2403 53.3633 19.0808 53.3633 18.8814C53.3633 18.682 53.5263 18.5225 53.7302 18.5225C53.934 18.5225 54.097 18.682 54.097 18.8814C54.097 19.0808 53.9258 19.2403 53.7302 19.2403Z" fill="#CA5001"/>
|
||||
<path d="M57.3905 14.1755C57.3415 14.1755 57.3008 14.1356 57.3008 14.0877C57.3008 14.0399 57.3415 14 57.3905 14C57.4394 14 57.4801 14.0399 57.4801 14.0877C57.4801 14.1356 57.4394 14.1755 57.3905 14.1755Z" fill="#CA5001"/>
|
||||
<path d="M56.7145 15.6273C56.6167 15.6273 56.5352 15.5475 56.5352 15.4518C56.5352 15.3561 56.6167 15.2764 56.7145 15.2764C56.8123 15.2764 56.8939 15.3561 56.8939 15.4518C56.902 15.5475 56.8205 15.6273 56.7145 15.6273Z" fill="#CA5001"/>
|
||||
<path d="M56.0386 17.0708C55.8918 17.0708 55.7695 16.9512 55.7695 16.8076C55.7695 16.6641 55.8918 16.5444 56.0386 16.5444C56.1853 16.5444 56.3076 16.6641 56.3076 16.8076C56.3076 16.9512 56.1853 17.0708 56.0386 17.0708Z" fill="#CA5001"/>
|
||||
<path d="M55.3669 18.5225C55.1631 18.5225 55 18.363 55 18.1636C55 17.9642 55.1631 17.8047 55.3669 17.8047C55.5707 17.8047 55.7338 17.9642 55.7338 18.1636C55.7338 18.363 55.5707 18.5225 55.3669 18.5225Z" fill="#CA5001"/>
|
||||
<path d="M38.3472 27.1443C38.0944 27.1443 37.8906 26.9449 37.8906 26.6976C37.8906 26.4504 38.0944 26.251 38.3472 26.251C38.5999 26.251 38.8037 26.4504 38.8037 26.6976C38.8037 26.9449 38.5999 27.1443 38.3472 27.1443Z" fill="#C57D0A"/>
|
||||
<path d="M39.9878 26.4265C40.24 26.4265 40.4444 26.2265 40.4444 25.9799C40.4444 25.7332 40.24 25.5332 39.9878 25.5332C39.7357 25.5332 39.5312 25.7332 39.5312 25.9799C39.5312 26.2265 39.7357 26.4265 39.9878 26.4265Z" fill="#C57D0A"/>
|
||||
<path d="M41.6245 25.7165C41.3718 25.7165 41.168 25.5171 41.168 25.2699C41.168 25.0226 41.3718 24.8232 41.6245 24.8232C41.8773 24.8232 42.0811 25.0226 42.0811 25.2699C42.0811 25.5171 41.8773 25.7165 41.6245 25.7165Z" fill="#C57D0A"/>
|
||||
<path d="M43.273 24.9988C43.5251 24.9988 43.7295 24.7988 43.7295 24.5521C43.7295 24.3054 43.5251 24.1055 43.273 24.1055C43.0208 24.1055 42.8164 24.3054 42.8164 24.5521C42.8164 24.7988 43.0208 24.9988 43.273 24.9988Z" fill="#C57D0A"/>
|
||||
<path d="M44.9097 24.281C44.6569 24.281 44.4531 24.0816 44.4531 23.8343C44.4531 23.5871 44.6569 23.3877 44.9097 23.3877C45.1624 23.3877 45.3662 23.5871 45.3662 23.8343C45.3662 24.0816 45.1624 24.281 44.9097 24.281Z" fill="#C57D0A"/>
|
||||
<path d="M46.5503 23.571C46.8025 23.571 47.0069 23.3711 47.0069 23.1244C47.0069 22.8777 46.8025 22.6777 46.5503 22.6777C46.2982 22.6777 46.0938 22.8777 46.0938 23.1244C46.0938 23.3711 46.2982 23.571 46.5503 23.571Z" fill="#C57D0A"/>
|
||||
<path d="M48.187 22.8533C47.9343 22.8533 47.7305 22.6539 47.7305 22.4066C47.7305 22.1594 47.9343 21.96 48.187 21.96C48.4398 21.96 48.6436 22.1594 48.6436 22.4066C48.6436 22.6539 48.4398 22.8533 48.187 22.8533Z" fill="#C57D0A"/>
|
||||
<path d="M49.8355 22.1433C50.0876 22.1433 50.292 21.9433 50.292 21.6966C50.292 21.45 50.0876 21.25 49.8355 21.25C49.5833 21.25 49.3789 21.45 49.3789 21.6966C49.3789 21.9433 49.5833 22.1433 49.8355 22.1433Z" fill="#C57D0A"/>
|
||||
<path d="M25.6172 39.5947C25.9433 39.7064 26.196 39.7782 26.4325 39.8739C28.1935 40.5997 29.9545 41.3335 31.7237 42.0513C31.8541 42.1071 32.0579 42.0912 32.1884 42.0353C34.088 41.2617 35.9794 40.4721 37.879 39.6984C37.9606 39.6665 38.0747 39.6825 38.1725 39.6745C38.1399 39.7702 38.1318 39.8739 38.0829 39.9536C36.5175 42.5139 34.9359 45.0662 33.3705 47.6264C32.9547 48.3123 32.5389 48.9983 32.1231 49.6842C31.9764 49.9235 31.9112 49.9235 31.7481 49.6682C30.6556 47.8896 29.5632 46.111 28.4707 44.3244C27.5576 42.8409 26.6444 41.3654 25.7313 39.8819C25.6987 39.826 25.6824 39.7622 25.6172 39.5947Z" fill="#CA5001"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 50 KiB |
301
publicpool.svg
Normal file
|
After Width: | Height: | Size: 124 KiB |
56
solopoolcom.svg
Normal file
@ -0,0 +1,56 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
version="1.0"
|
||||
width="342px"
|
||||
height="342px"
|
||||
viewBox="0 0 342 342"
|
||||
preserveAspectRatio="xMidYMid meet"
|
||||
id="svg8"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs8">
|
||||
<linearGradient
|
||||
id="linearGradient8">
|
||||
<stop
|
||||
style="stop-color:#fce003;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop8" />
|
||||
<stop
|
||||
style="stop-color:#fa7902;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop9" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient8"
|
||||
id="linearGradient9"
|
||||
x1="177.41998"
|
||||
y1="82.230019"
|
||||
x2="177.41998"
|
||||
y2="242.07001"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<g
|
||||
fill="#08a1f8"
|
||||
id="g7">
|
||||
<path
|
||||
d="M160.65 318.25 c-14.13 -8.18 -31.03 -17.93 -57.11 -32.96 -32.80 -18.87 -47.76 -27.52 -58.38 -33.73 l-7.08 -4.14 0 -33.06 0 -33.03 -1.90 0.20 c-11.26 1.24 -21.88 3.41 -31.33 6.38 -2 0.63 -3.94 1.24 -4.24 1.34 -0.57 0.17 -0.60 -0.23 -0.60 -5.28 l0 -5.44 2.94 -1.90 c12.29 -7.98 25.55 -13.79 39.44 -17.30 14.56 -3.67 33.26 -5.21 48.03 -3.97 8.08 0.67 25.45 3.47 26.22 4.24 0.13 0.13 0.27 10.82 0.27 23.78 0.03 22.11 0 23.55 -0.53 23.95 -0.77 0.57 -1.07 0.57 -11.09 0.60 -6.68 0 -8.48 0.10 -8.72 0.43 -0.17 0.27 -0.53 1.97 -0.87 3.84 -0.30 1.87 -1.77 9.99 -3.21 18 -1.44 8.05 -2.64 14.86 -2.64 15.13 0 0.43 2.64 0.50 21.14 0.57 l21.11 0.10 0.17 16.37 0.17 16.37 16.97 0.10 16.93 0.07 0 -16.20 0 -16.20 1.84 0 1.84 0 0.07 16.13 0.10 16.10 16.63 0.10 16.60 0.07 0 -16.27 c0 -8.98 0.13 -16.47 0.27 -16.67 0.13 -0.20 2.40 -0.60 5.08 -0.94 30.99 -3.67 48.49 -17 53.91 -40.91 0.43 -2.07 0.87 -3.84 0.94 -3.87 0.07 -0.07 2.97 0 6.45 0.17 6.51 0.30 18.20 -0.03 24.55 -0.67 9.02 -0.94 20.81 -3.04 29.02 -5.21 4.21 -1.14 16.53 -5.18 17.83 -5.84 0.53 -0.30 0.57 0.10 0.57 6.31 l0 6.68 -0.90 0.17 c-0.53 0.10 -2.07 0.94 -3.47 1.84 -7.78 5.11 -17.67 10.19 -26.02 13.43 -2.84 1.14 -5.84 2.30 -6.68 2.61 l-1.50 0.60 -0.10 13.69 -0.07 13.69 -2.94 1.70 c-1.60 0.90 -7.95 4.58 -14.09 8.12 -6.15 3.54 -20.04 11.59 -30.89 17.87 -10.82 6.25 -23.85 13.76 -28.89 16.70 -5.04 2.91 -12.26 7.08 -16.03 9.28 -3.77 2.20 -7.88 4.61 -9.18 5.34 -1.27 0.73 -5.48 3.17 -9.35 5.41 -18.17 10.52 -20.51 11.86 -20.94 11.86 -0.23 0 -4.88 -2.57 -10.29 -5.71z"
|
||||
id="path5" />
|
||||
<path
|
||||
d="M166.32 192.11 c0 -9.45 0.13 -16.47 0.30 -16.57 0.17 -0.13 1.57 0.33 3.11 1 10.22 4.41 28.42 11.19 35.84 13.36 2.40 0.67 4.51 1.40 4.71 1.60 0.27 0.27 0.33 0.94 0.13 2.27 -0.83 5.78 -5.31 10.09 -13.03 12.42 -5.58 1.70 -7.75 1.94 -19.77 2.10 l-11.29 0.17 0 -16.37z"
|
||||
id="path6" />
|
||||
<path
|
||||
d="M269.59 190.37 c-2.81 -0.13 -5.18 -0.33 -5.28 -0.43 -0.10 -0.10 -0.33 -1.74 -0.50 -3.64 -0.80 -8.55 -3.81 -16.87 -8.22 -22.81 -3.31 -4.44 -8.68 -9.05 -12.86 -11.05 -0.70 -0.33 -1.27 -0.70 -1.27 -0.83 0 -0.17 1.07 -1.57 2.34 -3.17 9.28 -11.59 11.05 -28.99 4.38 -42.78 -6.28 -12.96 -18.04 -20.94 -36.17 -24.61 -2.27 -0.43 -5.08 -0.94 -6.28 -1.07 -1.20 -0.10 -2.37 -0.37 -2.57 -0.57 -0.33 -0.23 -0.43 -4.07 -0.43 -17.13 l0 -16.83 -16.27 0.07 -16.30 0.10 -0.10 16.43 -0.07 16.47 -1.84 0 -1.84 0 -0.07 -16.43 -0.10 -16.47 -16.03 -0.10 c-8.82 -0.03 -16.37 0 -16.77 0.10 l-0.77 0.17 -0.07 16.63 -0.10 16.60 -19.94 0.17 c-13.39 0.10 -20.04 0.27 -20.31 0.53 -0.23 0.23 -0.30 5.51 -0.27 16.70 l0.10 16.33 11.76 0.17 c13.09 0.20 12.56 0.07 13.13 2.54 0.30 1.24 0.47 33.87 0.20 33.87 -0.07 0 -1.57 -0.30 -3.34 -0.67 -17.47 -3.57 -33.93 -4.44 -51.83 -2.64 -7.72 0.77 -18.47 2.71 -23.25 4.17 -0.57 0.17 -0.60 -1.30 -0.60 -27.89 l0 -28.09 1.30 -0.80 c0.73 -0.47 6.41 -3.77 12.62 -7.31 12.46 -7.18 15.23 -8.75 30.36 -17.50 5.71 -3.34 11.22 -6.48 12.19 -7.05 1 -0.53 9.18 -5.24 18.17 -10.42 9.02 -5.18 19 -10.95 22.21 -12.79 3.21 -1.84 9.02 -5.18 12.86 -7.41 3.87 -2.24 10.59 -6.11 14.93 -8.65 l7.95 -4.58 1.07 0.57 c0.60 0.30 4.04 2.24 7.61 4.31 3.57 2.07 9.52 5.48 13.19 7.58 3.67 2.10 8.12 4.68 9.85 5.68 3.11 1.80 8.35 4.81 24.55 14.13 4.41 2.54 9.45 5.44 11.19 6.45 4.68 2.71 17.03 9.82 23.55 13.59 21.21 12.19 40.55 23.48 41.18 23.95 0.30 0.27 0.40 10.15 0.40 47.39 l0 47.03 -1.74 0.33 c-2.97 0.57 -9.89 1.37 -14.96 1.70 -5.28 0.37 -9.12 0.37 -16.97 0z"
|
||||
id="path7" />
|
||||
</g>
|
||||
<g
|
||||
fill="#fdb50d"
|
||||
id="g8"
|
||||
style="fill:url(#linearGradient9)">
|
||||
<path
|
||||
d="M138.84 272.30 c-0.13 -0.10 -0.23 -7.55 -0.23 -16.53 l0 -16.30 -20.54 0 -20.57 0 0.20 -1.07 c1.97 -11.46 4.24 -23.15 4.51 -23.48 0.27 -0.33 2.17 -0.47 7.78 -0.60 8.38 -0.13 9.38 -0.37 11.32 -2.37 2.40 -2.44 2.27 0.60 2.27 -51.13 0 -41.21 -0.07 -46.66 -0.53 -48.23 -0.70 -2.40 -2.64 -4.48 -5.08 -5.44 -1.77 -0.67 -2.57 -0.73 -10.69 -0.87 l-8.75 -0.13 0.07 -10.05 0.10 -10.09 19.71 -0.17 c10.85 -0.10 19.91 -0.30 20.14 -0.43 0.30 -0.20 0.40 -3.94 0.40 -16.77 0 -14.70 0.07 -16.50 0.53 -16.67 0.30 -0.10 4.94 -0.20 10.35 -0.20 l9.82 0 0 16.50 0 16.47 2.27 0.20 c1.24 0.13 4.88 0.23 8.12 0.23 4.54 0 5.98 -0.10 6.28 -0.43 0.23 -0.33 0.40 -5.38 0.43 -16.63 l0.10 -16.16 9.79 -0.10 9.75 -0.07 0 16.83 0 16.83 2.27 0.20 c21.17 1.90 34.63 8.08 41.75 19.20 3.97 6.18 5.94 15 5.11 22.54 -1 8.95 -4.28 15.26 -11.59 22.44 l-4.11 4.04 2.24 0.77 c13.86 4.78 21.84 13.83 24.68 27.95 0.80 4.07 0.80 13.79 0 17.87 -1.37 6.81 -3.64 12.59 -6.81 17.40 -2.07 3.14 -7.58 8.78 -10.59 10.85 -2.81 1.94 -6.68 3.94 -10.39 5.34 -6.18 2.37 -16.33 4.51 -24.71 5.28 -3.31 0.27 -6.25 0.63 -6.51 0.77 -0.43 0.23 -0.53 2.50 -0.67 16.27 l-0.17 16 -10.05 0.10 -10.09 0.07 -0.23 -7.25 c-0.13 -4.01 -0.13 -9.75 -0.03 -12.79 0.13 -3.07 0.13 -7.01 0 -8.78 l-0.23 -3.24 -7.95 0 c-5.58 0 -8.02 0.10 -8.18 0.37 -0.23 0.40 -0.40 8.98 -0.43 23.11 l-0.03 8.58 -10.29 0 c-5.68 0 -10.42 -0.10 -10.52 -0.23z m54.57 -58.48 c5.84 -1.14 7.65 -1.70 11.32 -3.47 3.04 -1.47 3.87 -2.07 6.38 -4.58 4.44 -4.48 6.25 -9.05 5.88 -15.10 -0.60 -9.75 -7.18 -16.13 -19.84 -19.30 -6.95 -1.74 -8.78 -1.87 -23.48 -1.87 l-13.86 0 -0.10 22.64 -0.07 22.68 15.10 -0.13 c13.73 -0.13 15.46 -0.23 18.67 -0.87z m-8.28 -65.66 c7.58 -0.97 14.29 -3.87 18.07 -7.88 3.51 -3.77 4.88 -7.18 4.88 -12.36 0 -10.09 -7.15 -16.50 -20.87 -18.87 -2.40 -0.40 -5.41 -0.50 -15.03 -0.43 l-12.02 0.10 -0.23 1.84 c-0.27 2.44 -0.33 37.57 -0.03 37.84 0.43 0.47 21.21 0.23 25.25 -0.23z"
|
||||
id="path8"
|
||||
style="fill:url(#linearGradient9)" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.3 KiB |
@ -1,32 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="80px" height="80px" viewBox="0 0 80 80" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>Spiderpool</title>
|
||||
<defs>
|
||||
<path d="M15.1351588,0 C6.77602095,0 0,6.77645924 0,15.1351588 L0,15.1351588 L0,64.8648412 C0,73.223979 6.77602095,80 15.1351588,80 L15.1351588,80 L64.8648412,80 C73.2235408,80 80,73.223979 80,64.8648412 L80,64.8648412 L80,15.1351588 C80,6.77645924 73.2235408,0 64.8648412,0 L64.8648412,0 L15.1351588,0 Z" id="path-1"></path>
|
||||
<linearGradient x1="49.999971%" y1="4.96367641e-05%" x2="49.999971%" y2="99.9999917%" id="linearGradient-3">
|
||||
<stop stop-color="#504F4F" offset="0%"></stop>
|
||||
<stop stop-color="#272828" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<polygon id="path-4" points="0 0 53.1668797 0 53.1668797 71.3515444 0 71.3515444"></polygon>
|
||||
</defs>
|
||||
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="画板" transform="translate(-186.000000, -1712.000000)">
|
||||
<g id="编组" transform="translate(186.000000, 1712.000000)">
|
||||
<g>
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Clip-2"></g>
|
||||
<path d="M15.1351588,0 C6.77602095,0 0,6.77645924 0,15.1351588 L0,15.1351588 L0,64.8648412 C0,73.223979 6.77602095,80 15.1351588,80 L15.1351588,80 L64.8648412,80 C73.2235408,80 80,73.223979 80,64.8648412 L80,64.8648412 L80,15.1351588 C80,6.77645924 73.2235408,0 64.8648412,0 L64.8648412,0 L15.1351588,0 Z" id="Fill-1" fill="url(#linearGradient-3)" mask="url(#mask-2)"></path>
|
||||
</g>
|
||||
<g transform="translate(26.833076, 8.648456)">
|
||||
<mask id="mask-5" fill="white">
|
||||
<use xlink:href="#path-4"></use>
|
||||
</mask>
|
||||
<g id="Clip-4"></g>
|
||||
<path d="M53.1668797,56.2164294 L53.1668797,14.2892519 C52.7868791,14.2493672 52.4007423,14.2278908 52.0102226,14.2278908 C45.979301,14.2278908 41.0901345,19.116619 41.0901345,25.146664 C41.0901345,29.2552294 43.3596194,32.8338976 46.713443,34.6975225 C43.4003807,35.5543868 40.6391303,37.3277232 38.5826561,40.170058 L27.459638,30.837908 C24.0321811,27.9618246 22.0524084,23.7169499 22.0524084,19.2428476 L22.0524084,2.56489486 C22.0524084,1.14832955 20.9045171,0 19.4879518,0 C18.0770843,0 16.933576,1.14394662 16.933576,2.55481411 L16.933576,2.56489486 L17.0085242,21.7643514 C17.026056,26.2178539 19.0036373,30.4377459 22.4153156,33.2998039 L36.1834363,44.8514732 C35.9603448,45.4843694 35.7578531,46.1466312 35.5763995,46.8400118 L23.6000235,44.7291893 C19.1938567,43.9525328 15.3570335,41.2662306 13.1199823,37.3912758 L4.78100595,22.9477444 C4.0727233,21.7209603 2.50450836,21.3006366 1.27772423,22.0089193 C0.055761331,22.7141339 -0.362809174,24.276651 0.342843719,25.4986139 C0.3441586,25.501682 0.345911775,25.5043117 0.34766495,25.5073798 L10.0129181,42.0972355 C12.2543522,45.9450161 16.0767118,48.6102802 20.4627171,49.3834303 L34.696744,51.8931002 C34.549039,53.3683968 34.4727759,54.9462542 34.4718993,56.6284255 L16.550069,59.7876467 C12.1640637,60.5612351 8.34170416,63.2264992 6.09983176,67.0742798 L3.60813195,71.3515883 L9.47074878,71.3515883 C11.7380422,67.7098057 15.4468837,65.1900551 19.6873755,64.4427643 L34.854968,61.7691726 C34.9110696,62.1575008 34.9724307,62.5467057 35.039928,62.9359105 C34.4000191,62.8912045 33.7425786,63.0849304 33.2122431,63.5297985 L23.890174,71.3515883 L31.8693112,71.3515883 L36.1396069,67.7685371 C36.4775314,68.9751597 36.8584086,70.1725782 37.2743494,71.3515883 L38.0317209,71.3515883 C46.3908588,71.3515883 53.1668797,64.575129 53.1668797,56.2164294" id="Fill-3" fill="#F4B61A" mask="url(#mask-5)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<svg width="135" height="135" viewBox="0 0 135 135" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<title>Spiderpool</title>
|
||||
<path d="M133.549 29.1072V106.036C133.549 121.696 120.885 134.333 105.252 134.333H28.2967C12.6902 134.359 0 121.696 0 106.036V29.1072C0 13.5007 12.6902 0.810547 28.2967 0.810547H105.226C117.023 0.810547 127.112 8.00952 131.394 18.2562C132.787 21.593 133.549 25.245 133.549 29.1072Z" fill="#FFBE1E"/>
|
||||
<path d="M133.549 29.1072V101.754C127.138 107.849 119.282 111.107 114.711 111.107C112.504 111.107 110.454 109.373 108.694 106.115L92.4569 121.906C89.0413 125.216 88.2268 130.234 90.3287 134.359H77.5335C75.9045 126.871 78.1378 118.832 83.9705 113.157L101.889 95.7109L77.9013 100.256C75.5892 100.65 73.4348 101.885 71.8058 103.646L62.794 113.498C60.6133 115.889 56.5934 116.047 54.1762 113.866C51.7328 111.606 51.5751 107.744 53.8347 105.248L62.8991 95.3956C66.2621 91.7436 70.8074 89.2213 75.668 88.2755L105.331 82.6529C105.436 81.8121 105.541 80.9451 105.673 80.1044L85.9936 75.4539C76.4825 73.2207 68.2326 67.0726 63.372 58.5863L50.4191 35.8596C48.7638 32.9169 49.7622 29.2123 52.6786 27.5571C54.0974 26.7689 55.7264 26.5324 57.3028 26.9791C58.8792 27.3732 60.1666 28.4241 60.9548 29.8166L73.934 52.5433C77.0868 58.0871 82.5255 62.1332 88.7786 63.6308L107.118 67.9397L89.8821 51.8602C82.1576 44.6875 77.7699 34.5196 77.9276 23.9313L78.1903 0.810547H90.355L90.0923 24.0627C89.9872 31.2354 92.9298 38.1191 98.1583 42.9797L114.737 58.4286C117.601 54.724 120.99 52.228 124.931 50.8881C120.386 47.4462 117.627 42.0339 117.627 36.1486C117.627 27.5834 123.486 20.3581 131.421 18.2562C132.787 21.593 133.549 25.245 133.549 29.1072Z" fill="#18191C"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 1.7 KiB |
1
ultimuspool.light.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="453.543" height="120mm" viewBox="0 0 120 120" xmlns="http://www.w3.org/2000/svg"><path style="fill:#e2e8f0;stroke:#cbd5e1;stroke-width:.236232" transform="translate(-37.298 -116.055)" d="M157.18 176.055a59.882 59.882 0 0 1-59.882 59.882 59.882 59.882 0 0 1-59.882-59.882 59.882 59.882 0 0 1 59.882-59.882 59.882 59.882 0 0 1 59.882 59.882z"/><g style="font-size:107.89px;font-family:serif;-inkscape-font-specification:serif;fill:#1652ee;stroke:#1652ee;stroke-width:.561929"><path d="M85.79 82.063q0 7.984-3.56 14.457-3.453 6.365-10.573 10.142-7.013 3.668-17.802 3.668-15.32 0-23.304-7.768-7.984-7.876-7.984-20.715v-49.63h16.291v47.148q0 9.495 3.884 13.379 3.884 3.884 11.544 3.884 7.984 0 11.545-4.208 3.668-4.208 3.668-13.162v-47.04H85.79z" style="font-weight:700;font-family:"Noto Sans";-inkscape-font-specification:"Noto Sans Bold"" transform="scale(1.11745 .8949)" aria-label="U"/></g></svg>
|
||||
|
After Width: | Height: | Size: 982 B |
1
unknown.light.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="5.27 3 13.48 18"> <path d="M5.6417 18.3696C5.15834 17.8871 5.15833 17.113 5.64169 16.6304C7.26992 15.0051 9.51761 14 12 14C14.4825 14 16.7301 15.005 18.3583 16.6304C18.8417 17.1129 18.8417 17.8871 18.3584 18.3696C16.7301 19.9949 14.4824 21 12 21C9.51759 21 7.26993 19.995 5.6417 18.3696Z" fill="#707070"></path> <path fill-rule="evenodd" clip-rule="evenodd" d="M8.50003 7.5H15.5V8H16C16 10.6372 14.3188 13 12 13C9.68123 13 8.00003 10.6372 8.00003 8H8.50003V7.5ZM9.02273 8.5C9.21266 10.5678 10.5658 12 12 12C13.4343 12 14.7874 10.5678 14.9773 8.5H9.02273Z" fill="#707070"></path> <path fill-rule="evenodd" clip-rule="evenodd" d="M12 3C14.4853 3 16.5 5.23858 16.5 8H7.50003C7.50003 5.23858 9.51475 3 12 3ZM12 7.5C12.8285 7.5 13.5 6.82843 13.5 6C13.5 5.17157 12.8285 4.5 12 4.5C11.1716 4.5 10.5 5.17157 10.5 6C10.5 6.82843 11.1716 7.5 12 7.5Z" fill="#707070"></path> <path fill-rule="evenodd" clip-rule="evenodd" d="M6.50003 8.5C6.50003 8.22386 6.72389 8 7.00003 8H17C17.2762 8 17.5 8.22386 17.5 8.5C17.5 8.77614 17.2762 9 17 9H7.00003C6.72389 9 6.50003 8.77614 6.50003 8.5Z" fill="#707070"></path> </svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
28
whitepool.light.svg
Normal file
@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 23.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 49.200001 39.7"
|
||||
xml:space="preserve"
|
||||
width="49.200001"
|
||||
height="39.700001"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs191" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style182">
|
||||
.st0{fill:#EABC4C;}
|
||||
.st1{fill:#181834;}
|
||||
</style>
|
||||
|
||||
<path
|
||||
class="st1"
|
||||
d="M 38.6,0.1 C 33.8,0.1 29.9,4 29.9,8.8 H 19.4 L 28.1,0.1 H 17.5 C 12.7,0.1 8.8,4 8.8,8.8 v 0 H 8.7 C 3.9,8.8 0,12.7 0,17.5 H 8.8 V 24 c 0,8.7 7.1,15.7 15.7,15.7 h 16 V 8.7 L 49.2,0 Z m -9.1,23 c -1.3,-1.3 -1.3,-3.4 0,-4.7 l 4.7,4.7 c -1.3,1.3 -3.4,1.3 -4.7,0 z"
|
||||
id="path186"
|
||||
style="fill:#181834;fill-opacity:1" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 864 B |
28
whitepool.svg
Normal file
@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 23.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 49.200001 39.7"
|
||||
xml:space="preserve"
|
||||
width="49.200001"
|
||||
height="39.700001"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs191" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style182">
|
||||
.st0{fill:#EABC4C;}
|
||||
.st1{fill:#FFFFFF;}
|
||||
</style>
|
||||
|
||||
<path
|
||||
class="st1"
|
||||
d="M 38.6,0.1 C 33.8,0.1 29.9,4 29.9,8.8 H 19.4 L 28.1,0.1 H 17.5 C 12.7,0.1 8.8,4 8.8,8.8 v 0 H 8.7 C 3.9,8.8 0,12.7 0,17.5 H 8.8 V 24 c 0,8.7 7.1,15.7 15.7,15.7 h 16 V 8.7 L 49.2,0 Z m -9.1,23 c -1.3,-1.3 -1.3,-3.4 0,-4.7 l 4.7,4.7 c -1.3,1.3 -3.4,1.3 -4.7,0 z"
|
||||
id="path186"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 864 B |
41
wiz.svg
Normal file
@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" id="logo" version="1.0" viewBox="400 0 7410 7110" preserveAspectRatio="xMidYMid meet">
|
||||
<g id="layer101" fill="#000000" stroke="none">
|
||||
<path d="M0 3555 l0 -3555 8000 0 8000 0 0 3555 0 3555 -8000 0 -8000 0 0 -3555z"/>
|
||||
</g>
|
||||
<g id="layer102" fill="#630100" stroke="none">
|
||||
<path d="M1300 6418 c0 -222 8 -314 34 -389 12 -34 12 -44 1 -67 -18 -36 -35 -142 -35 -223 0 -220 96 -360 288 -419 l57 -18 0 -1453 0 -1454 -72 -275 c-69 -262 -74 -276 -105 -300 -99 -76 -157 -147 -212 -257 -58 -114 -72 -296 -36 -439 53 -207 240 -393 450 -449 72 -19 258 -19 330 0 195 51 365 210 439 409 28 75 38 223 22 326 -21 136 -116 296 -230 385 l-57 45 -67 262 c-37 145 -72 287 -77 317 -6 29 -10 238 -10 463 0 324 3 409 13 405 6 -3 53 -23 102 -45 176 -77 425 -149 695 -202 36 -7 75 -19 88 -27 24 -14 138 -240 267 -528 165 -368 674 -1411 810 -1660 211 -387 281 -495 322 -495 57 0 223 290 598 1045 134 270 279 569 323 665 110 241 362 777 414 880 51 99 41 94 268 142 246 51 572 166 742 261 169 95 307 246 308 340 0 38 -19 36 -207 -22 -270 -84 -531 -153 -733 -194 -127 -26 -137 -27 -150 -12 -9 10 0 19 42 42 98 52 138 143 138 311 0 157 -41 281 -119 367 -23 25 -42 59 -50 90 -34 133 -62 193 -109 237 l-47 43 -6 125 c-6 135 -24 198 -75 251 l-24 25 12 102 c9 77 9 119 0 174 -6 40 -8 76 -3 80 4 5 74 12 156 17 168 11 251 31 382 92 112 51 218 126 313 222 103 102 165 195 223 333 69 167 78 216 84 472 l6 222 -1107 0 c-608 0 -1106 -3 -1106 -7 0 -5 13 -28 30 -53 39 -58 45 -91 25 -129 l-16 -31 -32 24 c-80 60 -166 86 -283 86 -102 0 -189 -26 -263 -77 -94 -66 -101 -70 -126 -65 -21 4 -24 8 -19 31 11 47 53 127 89 171 19 23 35 44 35 46 0 2 -614 4 -1365 4 l-1365 0 0 -222z m1202 -1049 c115 -47 175 -60 321 -68 178 -10 172 -4 169 -159 -2 -64 1 -138 6 -164 9 -44 7 -49 -21 -83 -49 -60 -68 -126 -74 -257 l-6 -118 -35 -26 c-40 -31 -83 -116 -109 -219 -13 -53 -27 -81 -58 -116 -85 -97 -120 -207 -119 -379 0 -199 54 -289 192 -324 51 -13 73 -46 30 -46 -39 0 -175 27 -348 68 -91 22 -227 55 -304 74 l-139 33 7 215 c3 118 6 504 6 856 l0 641 48 18 c88 33 157 73 196 114 l40 41 63 -36 c35 -20 96 -49 135 -65z m1166 -1384 c91 -39 112 -85 112 -250 0 -148 -18 -194 -90 -232 -83 -44 -170 -23 -225 55 -28 41 -30 50 -33 155 -5 135 7 185 53 232 53 52 118 67 183 40z m1429 -4 c64 -29 92 -80 100 -178 12 -161 -10 -245 -80 -297 -43 -31 -141 -30 -189 4 -61 41 -72 70 -76 208 -5 143 9 196 62 237 64 49 116 56 183 26z"/>
|
||||
</g>
|
||||
<g id="layer103" fill="#3200d9" stroke="none">
|
||||
<path d="M1303 6378 c3 -212 8 -274 22 -318 21 -68 21 -68 0 -160 -21 -94 -21 -236 0 -315 34 -126 126 -217 262 -258 l73 -22 -2 -1450 -3 -1450 -58 -220 c-89 -333 -95 -351 -125 -371 -53 -35 -133 -118 -172 -180 -267 -423 36 -974 535 -974 432 0 738 424 601 834 -43 126 -138 255 -238 320 -31 20 -29 14 -119 361 l-63 240 -4 442 -3 442 87 -40 c175 -81 426 -157 689 -210 61 -12 120 -28 133 -36 24 -14 138 -241 267 -528 165 -368 674 -1411 810 -1660 211 -387 281 -495 322 -495 57 0 223 290 598 1045 134 270 279 569 323 665 110 241 362 777 414 880 51 99 41 94 268 142 246 51 572 166 742 261 169 95 307 246 308 340 0 38 -19 36 -207 -22 -315 -98 -646 -183 -840 -215 -42 -7 -67 19 -38 40 10 8 23 14 28 14 6 0 25 12 44 26 137 105 132 463 -10 632 -21 25 -43 67 -53 100 -46 159 -65 200 -112 244 l-47 43 -6 125 c-6 135 -24 198 -75 251 l-24 25 12 102 c9 77 9 119 0 174 -6 40 -8 76 -3 80 4 5 74 12 156 17 168 11 251 31 382 92 112 51 218 126 313 222 103 102 165 195 223 333 69 167 78 216 84 472 l6 222 -1107 0 c-608 0 -1106 -3 -1106 -7 0 -5 13 -28 30 -53 39 -58 45 -91 25 -129 l-16 -31 -32 24 c-80 60 -166 86 -283 86 -102 0 -189 -26 -263 -77 -94 -66 -101 -70 -126 -65 -21 4 -24 8 -19 31 11 47 53 127 89 171 19 23 35 44 35 46 0 2 -615 4 -1366 4 l-1366 0 5 -262z m1064 -944 c161 -90 274 -123 456 -133 178 -10 172 -4 169 -159 -2 -64 1 -138 6 -164 9 -44 7 -49 -21 -83 -49 -60 -68 -126 -74 -257 l-6 -118 -35 -26 c-40 -31 -82 -116 -109 -219 -12 -48 -30 -86 -56 -119 -73 -94 -98 -160 -117 -313 -7 -54 -6 -94 4 -153 24 -135 80 -204 189 -231 35 -8 47 -16 47 -30 0 -37 -55 -27 -672 123 l-138 33 3 859 2 860 88 34 c65 25 101 47 140 83 29 26 54 48 56 49 2 0 33 -16 68 -36z m1868 -683 c39 -4 110 -3 160 3 50 6 146 10 215 11 102 0 131 -3 158 -18 39 -21 65 -74 60 -121 l-3 -31 -125 -7 c-168 -10 -248 -23 -324 -55 l-64 -26 -64 26 c-89 37 -140 47 -299 54 -77 3 -142 10 -145 15 -4 5 -3 30 1 55 7 51 39 87 89 103 31 10 211 5 341 -9z m275 -569 c64 -32 88 -117 50 -180 -33 -53 -68 -62 -252 -62 -146 0 -166 2 -196 20 -41 25 -66 81 -57 126 7 38 48 92 79 104 12 5 93 9 181 9 133 1 166 -2 195 -17z m-796 -215 c61 -47 70 -74 70 -227 0 -107 -3 -141 -16 -165 -74 -136 -258 -136 -319 -1 -15 33 -19 66 -19 163 0 156 14 193 95 245 46 29 141 21 189 -15z m1401 10 c22 -13 49 -40 62 -62 20 -36 23 -53 23 -170 0 -105 -4 -138 -19 -171 -22 -49 -60 -80 -114 -95 -73 -19 -148 11 -194 80 -21 31 -23 45 -23 173 0 160 12 199 77 243 50 34 131 35 188 2z"/>
|
||||
</g>
|
||||
<g id="layer104" fill="#fe9a00" stroke="none">
|
||||
<path d="M1660 6485 l0 -155 -42 -26 c-109 -68 -188 -155 -247 -273 -84 -165 -84 -422 -1 -552 42 -64 128 -125 217 -152 l73 -22 -2 -1450 -3 -1450 -58 -220 c-89 -333 -95 -351 -125 -371 -53 -35 -133 -118 -172 -180 -267 -423 36 -974 535 -974 432 0 738 424 601 834 -43 126 -138 255 -238 320 -31 20 -30 16 -120 366 l-63 245 0 1439 0 1440 88 34 c71 27 101 46 148 91 82 77 109 155 109 310 0 238 -104 437 -289 551 l-63 38 1 156 2 156 -176 0 -175 0 0 -155z"/>
|
||||
<path d="M4167 6510 c-51 -16 -99 -43 -183 -105 -16 -12 -54 -16 -160 -18 -122 -2 -144 -5 -180 -24 -85 -45 -130 -125 -149 -264 l-7 -46 -70 -22 c-88 -27 -149 -70 -192 -135 -47 -73 -65 -125 -82 -238 -11 -78 -24 -118 -55 -179 -22 -44 -53 -120 -69 -168 -26 -76 -30 -104 -30 -192 1 -57 5 -123 9 -146 7 -38 5 -45 -22 -78 -49 -60 -68 -126 -74 -257 l-6 -118 -35 -26 c-40 -31 -82 -116 -109 -219 -12 -48 -30 -86 -56 -119 -73 -94 -98 -160 -117 -313 -7 -54 -6 -94 4 -153 24 -135 80 -204 188 -230 35 -9 48 -17 50 -33 4 -25 21 -30 188 -57 459 -74 758 -95 1320 -95 572 0 867 23 1330 101 243 41 237 39 219 60 -11 14 -10 18 6 30 10 8 23 14 28 14 6 0 25 12 44 26 137 105 132 463 -10 632 -21 25 -43 67 -53 100 -46 159 -65 200 -112 244 l-47 43 -6 125 c-6 135 -24 198 -75 251 -25 26 -25 27 -13 115 21 157 -1 260 -97 460 -31 65 -47 113 -55 170 -16 116 -35 175 -78 241 -48 75 -98 112 -191 143 l-75 26 -11 64 c-24 144 -61 202 -154 244 -61 28 -68 28 -184 24 l-121 -5 -55 42 c-66 52 -109 74 -175 91 -72 20 -208 17 -278 -6z m68 -1759 c39 -4 110 -3 160 3 50 6 146 10 215 11 102 0 131 -3 158 -18 39 -21 65 -74 60 -121 l-3 -31 -125 -7 c-168 -10 -248 -23 -324 -55 l-64 -26 -64 26 c-89 37 -140 47 -299 54 -77 3 -142 10 -145 15 -4 5 -3 30 1 55 7 51 39 87 89 103 31 10 211 5 341 -9z m275 -569 c64 -32 88 -117 50 -180 -33 -53 -68 -62 -252 -62 -146 0 -166 2 -196 20 -41 25 -66 81 -57 126 7 38 48 92 79 104 12 5 93 9 181 9 133 1 166 -2 195 -17z m-796 -215 c61 -47 70 -74 70 -227 0 -107 -3 -141 -16 -165 -74 -136 -258 -136 -319 -1 -15 33 -19 66 -19 163 0 156 14 193 95 245 46 29 141 21 189 -15z m1401 10 c22 -13 49 -40 62 -62 20 -36 23 -53 23 -170 0 -105 -4 -138 -19 -171 -22 -49 -60 -80 -114 -95 -73 -19 -148 11 -194 80 -21 31 -23 45 -23 173 0 160 12 199 77 243 50 34 131 35 188 2z"/>
|
||||
</g>
|
||||
|
||||
<g id="layer106" fill="#f1ad1f" stroke="none">
|
||||
<path d="M4167 6510 c-51 -16 -99 -43 -183 -105 -16 -12 -54 -16 -160 -18 -122 -2 -144 -5 -180 -24 -85 -45 -130 -125 -149 -264 l-7 -46 -70 -22 c-88 -27 -149 -70 -192 -135 -47 -73 -65 -125 -82 -238 -11 -78 -24 -118 -55 -179 -22 -44 -53 -120 -69 -168 -26 -76 -30 -104 -30 -192 1 -57 5 -123 9 -146 7 -38 5 -45 -22 -78 -49 -60 -68 -126 -74 -257 l-6 -118 -34 -26 c-18 -14 -44 -46 -57 -72 -25 -50 -66 -178 -66 -207 0 -10 -15 -34 -34 -55 -83 -93 -126 -219 -126 -376 0 -200 63 -293 222 -328 21 -5 27 -12 25 -28 -3 -26 12 -31 183 -58 459 -74 758 -95 1320 -95 572 0 867 23 1330 101 235 39 238 40 222 56 -21 21 -13 33 34 52 92 38 134 135 135 306 0 152 -37 269 -110 352 -16 18 -36 60 -46 93 -47 162 -65 203 -113 247 l-47 43 -6 125 c-6 135 -24 198 -75 251 -25 26 -25 27 -13 115 21 157 -1 260 -97 460 -31 65 -47 113 -55 170 -16 116 -35 175 -78 241 -48 75 -98 112 -191 143 l-75 26 -11 64 c-24 144 -61 202 -154 244 -61 28 -68 28 -184 24 l-121 -5 -55 42 c-66 52 -109 74 -175 91 -72 20 -208 17 -278 -6z m35 -1752 c80 -9 126 -8 265 6 137 15 180 16 232 6 100 -18 126 -44 135 -136 l4 -41 -51 -7 c-29 -3 -85 -6 -125 -6 -108 0 -208 -18 -283 -51 l-67 -29 -66 30 c-75 34 -163 49 -286 50 -47 0 -102 3 -122 6 -37 6 -38 8 -38 50 0 55 15 86 50 107 64 38 131 41 352 15z m314 -570 c41 -22 79 -97 70 -138 -8 -42 -34 -78 -70 -98 -46 -25 -356 -24 -403 1 -70 37 -85 148 -27 208 41 43 71 48 244 46 124 -2 161 -6 186 -19z m-848 -193 c44 -19 78 -49 100 -90 13 -24 17 -60 17 -171 0 -136 -1 -142 -27 -181 -49 -74 -153 -104 -227 -65 -19 9 -48 34 -64 54 -25 31 -31 50 -38 125 -11 107 2 223 31 263 49 68 134 95 208 65z m1407 4 c61 -17 111 -75 125 -146 15 -71 7 -224 -14 -274 -57 -135 -251 -145 -318 -15 -19 36 -22 58 -22 178 -1 136 -1 136 29 179 31 44 102 89 139 89 12 0 39 -5 61 -11z"/>
|
||||
<path d="M1709 6341 c-45 -9 -161 -86 -216 -143 -53 -54 -138 -196 -159 -262 -8 -28 -18 -97 -21 -153 -10 -172 23 -280 110 -360 96 -88 200 -122 384 -124 121 -2 136 0 225 30 210 70 297 175 313 381 5 62 2 93 -19 174 -28 109 -70 206 -112 261 -27 36 -178 160 -224 185 -29 16 -224 23 -281 11z"/>
|
||||
<path d="M1698 1914 c-122 -26 -232 -89 -324 -186 -292 -305 -200 -815 181 -1004 369 -182 812 34 901 440 71 327 -145 671 -468 745 -103 24 -194 26 -290 5z m112 -319 c0 -41 2 -45 25 -45 23 0 25 4 25 45 0 45 0 45 35 45 35 0 35 -1 35 -43 0 -42 1 -43 49 -60 68 -24 101 -65 101 -126 0 -55 -23 -92 -72 -117 l-31 -16 27 -17 c42 -28 55 -53 56 -103 0 -39 -5 -52 -30 -77 -17 -17 -46 -33 -65 -37 -34 -6 -35 -8 -35 -50 0 -44 0 -44 -35 -44 -34 0 -35 1 -35 40 0 36 -2 40 -25 40 -22 0 -25 -4 -25 -40 0 -39 -1 -40 -35 -40 -34 0 -35 1 -35 40 l0 39 -77 3 -78 3 -3 33 c-3 28 0 32 20 32 45 0 48 14 48 189 0 92 -4 171 -8 177 -4 7 -18 14 -32 15 -20 3 -26 11 -28 36 l-3 32 78 3 78 3 3 43 c3 41 4 42 38 42 34 0 34 0 34 -45z"/>
|
||||
</g>
|
||||
<g id="layer107" fill="#f5c124" stroke="none">
|
||||
<path d="M4167 6510 c-51 -16 -99 -43 -183 -105 -16 -12 -54 -16 -160 -18 -122 -2 -144 -5 -180 -24 -85 -45 -130 -125 -149 -264 l-7 -46 -70 -22 c-88 -27 -149 -70 -192 -135 -47 -73 -65 -125 -82 -238 -11 -78 -24 -118 -55 -179 -22 -44 -53 -120 -69 -168 -26 -76 -30 -104 -30 -192 1 -57 5 -123 9 -146 7 -38 5 -45 -22 -78 -49 -60 -68 -126 -74 -257 l-6 -118 -34 -26 c-18 -14 -44 -46 -57 -72 -25 -50 -66 -178 -66 -207 0 -10 -17 -41 -38 -69 -68 -90 -95 -162 -111 -292 -19 -151 23 -300 97 -346 20 -12 59 -30 87 -39 41 -13 50 -20 50 -39 0 -28 12 -32 185 -60 459 -74 758 -95 1320 -95 572 0 867 23 1330 101 235 39 238 40 222 56 -19 19 -14 38 16 50 53 23 83 50 106 96 47 94 57 208 31 338 -19 92 -44 151 -88 208 -18 24 -41 72 -51 107 -45 161 -66 207 -114 251 l-47 43 -6 125 c-6 135 -24 198 -75 251 -25 26 -25 27 -13 115 21 157 -1 260 -97 460 -31 65 -47 113 -55 170 -16 116 -35 175 -78 241 -48 75 -98 112 -191 143 l-75 26 -11 64 c-24 144 -61 202 -154 244 -61 28 -68 28 -184 24 l-121 -5 -55 42 c-66 52 -109 74 -175 91 -72 20 -208 17 -278 -6z m-3 -1747 c108 -14 134 -15 241 -2 176 20 334 19 368 -4 40 -26 67 -76 67 -123 l0 -41 -52 -7 c-29 -3 -86 -6 -126 -6 -108 0 -208 -18 -283 -51 l-67 -29 -66 30 c-75 34 -160 49 -296 51 -138 2 -154 7 -158 48 -6 62 35 123 94 141 47 14 149 11 278 -7z m366 -579 c73 -62 80 -149 16 -213 l-36 -36 -189 -3 -189 -3 -35 31 c-41 36 -62 88 -53 133 8 37 51 95 80 107 11 5 101 9 198 9 176 1 177 1 208 -25z m-849 -188 c37 -15 79 -56 100 -96 9 -17 13 -68 13 -155 1 -113 -2 -136 -21 -177 -31 -69 -88 -103 -169 -103 -54 0 -67 4 -101 31 -21 16 -48 50 -60 74 -20 39 -23 59 -23 167 0 166 20 215 105 254 48 22 110 24 156 5z m1424 -5 c81 -37 104 -90 105 -238 0 -144 -12 -194 -60 -237 -69 -62 -143 -68 -227 -20 -68 39 -83 84 -83 243 0 139 11 182 57 223 53 48 141 60 208 29z"/>
|
||||
<path d="M1691 6330 c-48 -11 -165 -94 -215 -154 -59 -69 -120 -186 -141 -271 -25 -98 -23 -250 3 -333 54 -169 204 -257 457 -269 115 -5 124 -4 220 27 163 53 251 124 297 239 18 47 22 75 22 171 0 104 -3 125 -34 213 -47 140 -89 199 -205 292 -53 42 -111 81 -128 86 -38 11 -228 10 -276 -1z"/>
|
||||
<path d="M1738 1920 c-139 -25 -250 -84 -352 -187 -287 -290 -226 -769 126 -981 287 -172 666 -85 849 195 110 169 133 367 66 562 -61 174 -222 330 -398 386 -89 28 -217 39 -291 25z m72 -325 c0 -41 2 -45 25 -45 23 0 25 4 25 45 0 45 0 45 35 45 35 0 35 -1 35 -43 0 -42 1 -43 49 -60 68 -24 101 -65 101 -126 0 -55 -23 -92 -72 -117 l-31 -16 27 -17 c42 -28 55 -53 56 -103 0 -39 -5 -52 -30 -77 -17 -17 -46 -33 -65 -37 -34 -6 -35 -8 -35 -50 0 -44 0 -44 -35 -44 -34 0 -35 1 -35 40 0 36 -2 40 -25 40 -22 0 -25 -4 -25 -40 0 -39 -1 -40 -35 -40 -34 0 -35 1 -35 40 l0 39 -77 3 -78 3 -3 33 c-3 28 0 32 20 32 45 0 48 14 48 189 0 92 -4 171 -8 177 -4 7 -18 14 -32 15 -20 3 -26 11 -28 36 l-3 32 78 3 78 3 3 43 c3 41 4 42 38 42 34 0 34 0 34 -45z"/>
|
||||
<path d="M1777 1463 c-4 -3 -7 -37 -7 -75 l0 -68 61 0 c89 0 119 19 119 77 0 48 -38 73 -110 73 -31 0 -60 -3 -63 -7z"/>
|
||||
<path d="M1778 1244 c-5 -4 -8 -34 -8 -66 l0 -58 68 0 c54 0 72 4 85 18 22 24 22 65 0 85 -19 17 -133 34 -145 21z"/>
|
||||
</g>
|
||||
<g id="layer108" fill="#fefa00" stroke="none">
|
||||
<path d="M1660 1897 c-253 -75 -423 -283 -455 -557 -14 -117 34 -290 111 -403 247 -361 798 -360 1038 2 57 86 83 151 102 262 34 199 -37 403 -192 548 -84 78 -160 121 -264 150 -103 29 -239 28 -340 -2z m150 -297 c0 -36 3 -40 25 -40 23 0 25 4 25 40 0 39 1 40 35 40 35 0 35 0 35 -44 0 -42 1 -44 35 -50 20 -4 51 -20 70 -37 44 -39 60 -85 46 -137 -12 -44 -32 -65 -75 -82 l-30 -11 33 -20 c44 -27 66 -81 52 -129 -13 -44 -37 -68 -88 -85 -35 -12 -38 -16 -41 -54 -3 -39 -4 -41 -38 -41 -33 0 -34 1 -34 40 0 36 -2 40 -25 40 -22 0 -25 -4 -25 -40 0 -39 -1 -40 -35 -40 -34 0 -35 1 -35 40 l0 40 -80 0 -80 0 0 35 c0 31 3 36 30 42 l30 6 -2 181 -3 181 -28 3 c-26 3 -28 6 -25 40 l3 37 78 3 77 3 0 39 c0 39 1 40 35 40 34 0 35 -1 35 -40z"/>
|
||||
<path d="M1780 1395 l0 -77 64 4 c74 4 106 25 106 68 0 51 -29 73 -104 78 l-66 4 0 -77z"/>
|
||||
<path d="M1780 1180 l0 -60 58 0 c67 0 102 19 102 56 0 43 -33 64 -100 64 l-60 0 0 -60z"/>
|
||||
</g>
|
||||
<g id="layer109" fill="#dce9eb" stroke="none">
|
||||
<path d="M4167 6510 c-51 -16 -99 -43 -183 -105 -16 -12 -54 -16 -160 -18 -122 -2 -144 -5 -180 -24 -85 -45 -130 -125 -149 -264 l-7 -46 -70 -22 c-88 -27 -149 -70 -192 -135 -47 -73 -65 -125 -82 -238 -11 -78 -24 -118 -55 -179 -22 -44 -53 -120 -69 -168 -26 -76 -30 -104 -30 -192 1 -57 5 -123 9 -146 7 -38 5 -45 -22 -78 -49 -60 -68 -126 -74 -257 l-6 -118 -34 -26 c-39 -30 -72 -90 -104 -194 -22 -70 -24 -91 -24 -305 0 -253 5 -284 62 -424 24 -60 33 -96 31 -124 -4 -48 -7 -47 182 -77 459 -74 758 -95 1320 -95 472 0 602 7 990 51 126 14 530 79 558 89 9 3 5 16 -14 45 -29 44 -29 46 4 175 41 157 56 501 26 604 -45 157 -65 199 -112 243 l-47 43 -6 125 c-6 135 -24 198 -75 251 -25 26 -25 27 -13 115 21 157 -1 260 -97 460 -31 65 -47 113 -55 170 -16 116 -35 175 -78 241 -48 75 -98 112 -191 143 l-75 26 -11 64 c-24 144 -61 202 -154 244 -61 28 -68 28 -184 24 l-121 -5 -55 42 c-66 52 -109 74 -175 91 -72 20 -208 17 -278 -6z m815 -1551 c29 -6 71 -20 93 -31 41 -21 144 -114 176 -160 l20 -27 -43 -24 c-45 -26 -222 -84 -343 -112 -38 -9 -137 -20 -220 -25 -170 -9 -217 -18 -297 -55 l-57 -26 -38 19 c-82 42 -136 53 -302 62 -143 7 -184 14 -295 44 -151 42 -288 96 -294 115 -7 20 146 164 204 191 27 14 74 26 106 28 65 5 101 -9 233 -92 130 -81 163 -94 277 -107 81 -9 128 -10 207 -1 112 13 161 33 305 126 76 48 161 85 198 86 9 0 41 -5 70 -11z m517 -474 c36 -25 77 -53 91 -64 l25 -20 -18 -83 c-10 -46 -23 -117 -29 -158 -15 -109 -3 -404 21 -520 10 -52 17 -98 15 -102 -2 -3 -41 -19 -87 -34 -100 -33 -119 -42 -228 -111 -103 -64 -112 -66 -444 -85 -491 -27 -1278 -7 -1360 35 -11 5 -56 36 -100 67 -111 80 -136 91 -250 109 -89 15 -100 19 -103 38 -2 12 8 73 22 136 22 98 26 138 26 283 0 144 -4 185 -25 279 -14 60 -25 119 -25 131 0 22 62 69 148 113 50 25 47 26 157 -59 94 -73 264 -161 367 -191 49 -14 116 -22 204 -26 168 -7 241 12 335 87 34 27 67 46 73 43 6 -4 38 -26 71 -49 82 -57 142 -76 255 -82 226 -10 464 76 659 239 111 93 100 91 200 24z"/>
|
||||
|
||||
|
||||
|
||||
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 16 KiB |