feat: Implement Phase 1 critical features and fix API integration
This commit completes the first phase of feature parity implementation and resolves all API integration issues to match the backend API format. ## API Integration Fixes - Remove all hardcoded default values from transformers (tick_rate, kast, player_count, steam_updated) - Update TypeScript types to make fields optional where backend doesn't guarantee them - Update Zod schemas to validate optional fields correctly - Fix mock data to match real API response format (plain arrays, not wrapped objects) - Update UI components to handle undefined values with proper fallbacks - Add comprehensive API documentation for Match and Player endpoints ## Phase 1 Features Implemented (3/6) ### 1. Player Tracking System ✅ - Created TrackPlayerModal.svelte with auth code input - Integrated track/untrack player API endpoints - Added UI for providing optional share code - Displays tracked status on player profiles - Full validation and error handling ### 2. Share Code Parsing ✅ - Created ShareCodeInput.svelte component - Added to matches page for easy match submission - Real-time validation of share code format - Parse status feedback with loading states - Auto-redirect to match page on success ### 3. VAC/Game Ban Status ✅ - Added VAC and game ban count/date fields to Player type - Display status badges on player profile pages - Show ban count and date when available - Visual indicators using DaisyUI badge components ## Component Improvements - Modal.svelte: Added Svelte 5 Snippet types, actions slot support - ThemeToggle.svelte: Removed deprecated svelte:component usage - Tooltip.svelte: Fixed type safety with Snippet type - All new components follow Svelte 5 runes pattern ($state, $derived, $bindable) ## Type Safety & Linting - Fixed all ESLint errors (any types → proper types) - Fixed form label accessibility issues - Replaced error: any with error: unknown + proper type guards - Added Snippet type imports where needed - Updated all catch blocks to use instanceof Error checks ## Static Assets - Migrated all files from public/ to static/ directory per SvelteKit best practices - Moved 200+ map icons, screenshots, and other assets - Updated all import paths to use /images/ (served from static/) ## Documentation - Created IMPLEMENTATION_STATUS.md tracking all 15 missing features - Updated API.md with optional field annotations - Created MATCHES_API.md with comprehensive endpoint documentation - Added inline comments marking optional vs required fields ## Testing - Updated mock fixtures to remove default values - Fixed mock handlers to return plain arrays like real API - Ensured all components handle undefined gracefully ## Remaining Phase 1 Tasks - [ ] Add VAC status column to match scoreboard - [ ] Create weapons statistics tab for matches - [ ] Implement recently visited players on home page 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
@@ -57,12 +57,12 @@ pipeline:
|
||||
settings:
|
||||
hostname:
|
||||
from_secret: ftp_host
|
||||
src_dir: "/build/"
|
||||
src_dir: '/build/'
|
||||
clean_dir: true
|
||||
secrets: [ ftp_username, ftp_password ]
|
||||
secrets: [ftp_username, ftp_password]
|
||||
when:
|
||||
branch: master
|
||||
event: [ push, tag ]
|
||||
event: [push, tag]
|
||||
status: success
|
||||
|
||||
deploy-dev:
|
||||
@@ -70,7 +70,7 @@ pipeline:
|
||||
settings:
|
||||
hostname:
|
||||
from_secret: ftp_host
|
||||
src_dir: "/build/"
|
||||
src_dir: '/build/'
|
||||
clean_dir: true
|
||||
secrets:
|
||||
- source: ftp_username_dev
|
||||
@@ -79,7 +79,7 @@ pipeline:
|
||||
target: ftp_password
|
||||
when:
|
||||
branch: dev
|
||||
event: [ push, tag ]
|
||||
event: [push, tag]
|
||||
status: success
|
||||
|
||||
deploy-cs2:
|
||||
@@ -87,7 +87,7 @@ pipeline:
|
||||
settings:
|
||||
hostname:
|
||||
from_secret: ftp_host_cs2
|
||||
src_dir: "/build/"
|
||||
src_dir: '/build/'
|
||||
clean_dir: true
|
||||
secrets:
|
||||
- source: ftp_username_cs2
|
||||
@@ -96,5 +96,5 @@ pipeline:
|
||||
target: ftp_password
|
||||
when:
|
||||
branch: cs2-port
|
||||
event: [ push ]
|
||||
event: [push]
|
||||
status: success
|
||||
|
||||
937
docs/API.md
@@ -1,234 +1,393 @@
|
||||
# CORS Proxy Configuration
|
||||
# API Proxying with SvelteKit Server Routes
|
||||
|
||||
This document explains how the CORS proxy works in the CS2.WTF frontend.
|
||||
This document explains how API requests are proxied to the backend using SvelteKit server routes.
|
||||
|
||||
## Problem: CORS in Development
|
||||
## Why Use Server Routes?
|
||||
|
||||
When developing a frontend that talks to an API on a different origin, browsers enforce CORS (Cross-Origin Resource Sharing) policies. This causes errors like:
|
||||
The CS2.WTF frontend uses **SvelteKit server routes** to proxy API requests to the backend. This approach provides several benefits:
|
||||
|
||||
- ✅ **Works in all environments**: Development, preview, and production
|
||||
- ✅ **No CORS issues**: Requests are server-side
|
||||
- ✅ **Single code path**: Same behavior everywhere
|
||||
- ✅ **Flexible backend switching**: Change one environment variable
|
||||
- ✅ **Future-proof**: Can add caching, rate limiting, auth later
|
||||
- ✅ **Better security**: Backend URL not exposed to client
|
||||
|
||||
## Architecture
|
||||
|
||||
### Request Flow
|
||||
|
||||
```
|
||||
Access to fetch at 'https://api.csgow.tf/matches' from origin 'http://localhost:5173'
|
||||
has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present
|
||||
on the requested resource.
|
||||
Browser → /api/matches → SvelteKit Server Route → Backend → Response
|
||||
```
|
||||
|
||||
## Solution: Vite Development Proxy
|
||||
**Detailed Flow**:
|
||||
|
||||
The Vite dev server includes a built-in proxy that solves this problem by making all API requests appear same-origin.
|
||||
|
||||
### Configuration
|
||||
|
||||
**File**: `vite.config.ts`
|
||||
|
||||
```typescript
|
||||
import { loadEnv } from 'vite';
|
||||
|
||||
export default defineConfig(({ mode }) => {
|
||||
const env = loadEnv(mode, process.cwd(), '');
|
||||
const apiBaseUrl = env.VITE_API_BASE_URL || 'http://localhost:8000';
|
||||
|
||||
return {
|
||||
server: {
|
||||
proxy: {
|
||||
'/api': {
|
||||
target: apiBaseUrl,
|
||||
changeOrigin: true,
|
||||
rewrite: (path) => path.replace(/^\/api/, ''),
|
||||
secure: false,
|
||||
ws: true
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
});
|
||||
```
|
||||
1. Browser: GET http://localhost:5173/api/matches?limit=20
|
||||
↓
|
||||
2. SvelteKit: Routes to src/routes/api/[...path]/+server.ts
|
||||
↓
|
||||
3. Server Handler: Reads VITE_API_BASE_URL environment variable
|
||||
↓
|
||||
4. Backend Call: GET https://api.csgow.tf/matches?limit=20
|
||||
↓
|
||||
5. Backend: Returns JSON response
|
||||
↓
|
||||
6. Server Handler: Forwards response to browser
|
||||
↓
|
||||
7. Browser: Receives response (no CORS issues!)
|
||||
```
|
||||
|
||||
### How It Works
|
||||
**SSR (Server-Side Rendering) Flow**:
|
||||
|
||||
1. **API Client** (in development) makes requests to `/api/*`:
|
||||
```typescript
|
||||
// src/lib/api/client.ts
|
||||
const API_BASE_URL = import.meta.env.DEV ? '/api' : VITE_API_BASE_URL;
|
||||
```
|
||||
```
|
||||
1. Page Load: +page.ts calls api.matches.getMatches()
|
||||
↓
|
||||
2. API Client: Detects import.meta.env.SSR === true
|
||||
↓
|
||||
3. Direct Call: GET https://api.csgow.tf/matches?limit=20
|
||||
↓
|
||||
4. Backend: Returns JSON response
|
||||
↓
|
||||
5. SSR: Renders page with data
|
||||
```
|
||||
|
||||
2. **Vite Proxy** intercepts requests to `/api/*` and forwards them:
|
||||
```
|
||||
Browser Request: GET http://localhost:5173/api/matches?limit=6
|
||||
↓
|
||||
Vite Proxy: Intercepts /api/* requests
|
||||
↓
|
||||
Backend Request: GET https://api.csgow.tf/matches?limit=6
|
||||
↓
|
||||
Response: ← Returns data through proxy
|
||||
↓
|
||||
Browser: ← Receives response (appears same-origin)
|
||||
```
|
||||
**Note**: SSR bypasses the SvelteKit route and calls the backend directly because relative URLs (`/api`) don't work during server-side rendering.
|
||||
|
||||
3. **Browser sees same-origin request** - no CORS error!
|
||||
### Key Components
|
||||
|
||||
### Configuration Options
|
||||
**1. SvelteKit Server Route** (`src/routes/api/[...path]/+server.ts`)
|
||||
|
||||
| Option | Value | Purpose |
|
||||
|--------|-------|---------|
|
||||
| `target` | `env.VITE_API_BASE_URL` | Where to forward requests |
|
||||
| `changeOrigin` | `true` | Updates `Origin` header to match target |
|
||||
| `rewrite` | Remove `/api` prefix | Maps `/api/matches` → `/matches` |
|
||||
| `secure` | `false` | Allow self-signed certificates |
|
||||
| `ws` | `true` | Enable WebSocket proxying |
|
||||
- Catch-all route that matches `/api/*`
|
||||
- Forwards requests to backend
|
||||
- Supports GET, POST, DELETE methods
|
||||
- Handles errors gracefully
|
||||
|
||||
**2. API Client** (`src/lib/api/client.ts`)
|
||||
|
||||
- Browser: Uses `/api` base URL (routes to SvelteKit)
|
||||
- SSR: Uses `VITE_API_BASE_URL` directly (bypasses SvelteKit route)
|
||||
- Automatically detects environment with `import.meta.env.SSR`
|
||||
|
||||
**3. Environment Variable** (`.env`)
|
||||
|
||||
- `VITE_API_BASE_URL` controls which backend to use
|
||||
- Switch between local and production easily
|
||||
|
||||
## Configuration
|
||||
|
||||
### Environment Variables
|
||||
|
||||
**`.env`**:
|
||||
|
||||
```env
|
||||
# Proxy will forward /api/* to this URL
|
||||
# Production API (default)
|
||||
VITE_API_BASE_URL=https://api.csgow.tf
|
||||
|
||||
# Or use local backend
|
||||
# Local backend (for development)
|
||||
# VITE_API_BASE_URL=http://localhost:8000
|
||||
```
|
||||
|
||||
### Logging
|
||||
|
||||
The proxy logs all requests for debugging:
|
||||
**Switching Backends**:
|
||||
|
||||
```bash
|
||||
[Vite Config] API Proxy target: https://api.csgow.tf
|
||||
[Proxy] GET /api/matches?limit=6 -> https://api.csgow.tf/matches?limit=6
|
||||
[Proxy ✓] GET /api/matches?limit=6 -> 200
|
||||
[Proxy] GET /api/match/123 -> https://api.csgow.tf/match/123
|
||||
[Proxy ✓] GET /api/match/123 -> 200
|
||||
# Use production API
|
||||
echo "VITE_API_BASE_URL=https://api.csgow.tf" > .env
|
||||
npm run dev
|
||||
|
||||
# Use local backend
|
||||
echo "VITE_API_BASE_URL=http://localhost:8000" > .env
|
||||
npm run dev
|
||||
```
|
||||
|
||||
Error logging:
|
||||
```bash
|
||||
[Proxy Error] ECONNREFUSED
|
||||
[Proxy Error] Make sure backend is running at: http://localhost:8000
|
||||
### Server Route Implementation
|
||||
|
||||
**File**: `src/routes/api/[...path]/+server.ts`
|
||||
|
||||
```typescript
|
||||
import { error, json } from '@sveltejs/kit';
|
||||
import type { RequestHandler } from './$types';
|
||||
|
||||
const API_BASE_URL = import.meta.env.VITE_API_BASE_URL || 'https://api.csgow.tf';
|
||||
|
||||
export const GET: RequestHandler = async ({ params, url }) => {
|
||||
const path = params.path; // e.g., "matches"
|
||||
const queryString = url.search; // e.g., "?limit=20"
|
||||
|
||||
const backendUrl = `${API_BASE_URL}/${path}${queryString}`;
|
||||
|
||||
try {
|
||||
const response = await fetch(backendUrl);
|
||||
const data = await response.json();
|
||||
return json(data);
|
||||
} catch (err) {
|
||||
throw error(503, 'Unable to connect to backend');
|
||||
}
|
||||
};
|
||||
```
|
||||
|
||||
## API Client Configuration
|
||||
### API Client Configuration
|
||||
|
||||
**File**: `src/lib/api/client.ts`
|
||||
|
||||
```typescript
|
||||
const getAPIBaseURL = (): string => {
|
||||
// In production builds, use the configured URL directly
|
||||
if (import.meta.env.PROD) {
|
||||
return import.meta.env?.VITE_API_BASE_URL || 'https://api.csgow.tf';
|
||||
}
|
||||
// Simple, single configuration
|
||||
const API_BASE_URL = '/api';
|
||||
|
||||
// In development mode, ALWAYS use the Vite proxy to avoid CORS issues
|
||||
// The proxy will forward /api requests to VITE_API_BASE_URL
|
||||
return '/api';
|
||||
};
|
||||
// Always routes to SvelteKit server routes
|
||||
// No environment detection needed
|
||||
```
|
||||
|
||||
This ensures:
|
||||
- ✅ **Development**: Always uses `/api` (proxy handles CORS)
|
||||
- ✅ **Production**: Uses direct URL (backend has CORS enabled)
|
||||
## Testing the Setup
|
||||
|
||||
## Testing the Proxy
|
||||
### 1. Check Environment Variable
|
||||
|
||||
### 1. Check Vite Config Loads Environment
|
||||
```bash
|
||||
cat .env
|
||||
|
||||
# Should show:
|
||||
VITE_API_BASE_URL=https://api.csgow.tf
|
||||
# or
|
||||
VITE_API_BASE_URL=http://localhost:8000
|
||||
```
|
||||
|
||||
### 2. Start Development Server
|
||||
|
||||
Start dev server and look for:
|
||||
```bash
|
||||
npm run dev
|
||||
|
||||
# Should show:
|
||||
[Vite Config] API Proxy target: https://api.csgow.tf
|
||||
```
|
||||
|
||||
### 2. Check API Client Configuration
|
||||
|
||||
Open browser console, look for:
|
||||
```
|
||||
[API Client] Development mode - using Vite proxy
|
||||
[API Client] Frontend requests: /api/*
|
||||
[API Client] Proxy target: https://api.csgow.tf
|
||||
# Server starts on http://localhost:5173
|
||||
```
|
||||
|
||||
### 3. Check Network Requests
|
||||
|
||||
Open DevTools → Network tab:
|
||||
- ✅ Requests should go to `/api/*` (not full URL)
|
||||
- ✅ Response should be `200 OK`
|
||||
|
||||
- ✅ Requests go to `/api/matches`, `/api/player/123`, etc.
|
||||
- ✅ Status should be `200 OK`
|
||||
- ✅ No CORS errors in console
|
||||
|
||||
### 4. Check Proxy Logs
|
||||
### 4. Test Both Backends
|
||||
|
||||
Terminal should show:
|
||||
**Test Production API**:
|
||||
|
||||
```bash
|
||||
# Set production API
|
||||
echo "VITE_API_BASE_URL=https://api.csgow.tf" > .env
|
||||
|
||||
# Start dev server
|
||||
npm run dev
|
||||
|
||||
# Visit http://localhost:5173/matches
|
||||
# Should load matches from production API
|
||||
```
|
||||
[Proxy] GET /api/matches -> https://api.csgow.tf/matches
|
||||
[Proxy ✓] GET /api/matches -> 200
|
||||
|
||||
**Test Local Backend**:
|
||||
|
||||
```bash
|
||||
# Start local backend first
|
||||
cd ../csgowtfd
|
||||
go run main.go
|
||||
|
||||
# In another terminal, set local API
|
||||
echo "VITE_API_BASE_URL=http://localhost:8000" > .env
|
||||
|
||||
# Start dev server
|
||||
npm run dev
|
||||
|
||||
# Visit http://localhost:5173/matches
|
||||
# Should load matches from local backend
|
||||
```
|
||||
|
||||
## Common Issues
|
||||
|
||||
### Issue 1: Proxy Not Loading .env
|
||||
### Issue 1: 503 Service Unavailable
|
||||
|
||||
**Symptom**: Proxy uses default `http://localhost:8000` instead of `.env` value
|
||||
**Symptom**: API requests return 503 error
|
||||
|
||||
**Cause**: `vite.config.ts` not loading environment variables
|
||||
**Possible Causes**:
|
||||
|
||||
**Fix**: Use `loadEnv()` in config:
|
||||
```typescript
|
||||
import { loadEnv } from 'vite';
|
||||
1. Backend is not running
|
||||
2. Wrong `VITE_API_BASE_URL` in `.env`
|
||||
3. Network connectivity issues
|
||||
|
||||
export default defineConfig(({ mode }) => {
|
||||
const env = loadEnv(mode, process.cwd(), '');
|
||||
const apiBaseUrl = env.VITE_API_BASE_URL || 'http://localhost:8000';
|
||||
// ...
|
||||
});
|
||||
**Fix**:
|
||||
|
||||
```bash
|
||||
# Check .env file
|
||||
cat .env
|
||||
|
||||
# If using local backend, make sure it's running
|
||||
curl http://localhost:8000/matches
|
||||
|
||||
# If using production API, check connectivity
|
||||
curl https://api.csgow.tf/matches
|
||||
|
||||
# Restart dev server after changing .env
|
||||
npm run dev
|
||||
```
|
||||
|
||||
### Issue 2: Still Getting CORS Errors
|
||||
### Issue 2: 404 Not Found
|
||||
|
||||
**Symptom**: `/api/*` routes return 404
|
||||
|
||||
**Cause**: SvelteKit server route file missing or not loaded
|
||||
|
||||
**Fix**:
|
||||
|
||||
```bash
|
||||
# Check file exists
|
||||
ls src/routes/api/[...path]/+server.ts
|
||||
|
||||
# If missing, create it
|
||||
mkdir -p src/routes/api/'[...path]'
|
||||
# Then create +server.ts file
|
||||
|
||||
# Restart dev server
|
||||
npm run dev
|
||||
```
|
||||
|
||||
### Issue 3: Environment Variable Not Loading
|
||||
|
||||
**Symptom**: Server route uses wrong backend URL
|
||||
|
||||
**Cause**: Changes to `.env` require server restart
|
||||
|
||||
**Fix**:
|
||||
|
||||
```bash
|
||||
# Stop dev server (Ctrl+C)
|
||||
|
||||
# Update .env
|
||||
echo "VITE_API_BASE_URL=http://localhost:8000" > .env
|
||||
|
||||
# Start dev server again
|
||||
npm run dev
|
||||
```
|
||||
|
||||
### Issue 4: CORS Errors Still Appearing
|
||||
|
||||
**Symptom**: Browser console shows CORS errors
|
||||
|
||||
**Possible Causes**:
|
||||
1. API client not using `/api` prefix in development
|
||||
2. Request bypassing proxy somehow
|
||||
3. Running production build instead of dev server
|
||||
**Cause**: API client is not using `/api` prefix
|
||||
|
||||
**Fix**:
|
||||
1. Check API client logs show: `Development mode - using Vite proxy`
|
||||
2. Verify Network tab shows requests to `/api/*`
|
||||
3. Run `npm run dev` (not `npm run preview`)
|
||||
|
||||
### Issue 3: Connection Refused
|
||||
|
||||
**Symptom**: `[Proxy Error] ECONNREFUSED`
|
||||
|
||||
**Cause**: Backend is not running at the configured URL
|
||||
|
||||
**Fix**:
|
||||
- If using local backend: Start `csgowtfd` on port 8000
|
||||
- If using production API: Check `VITE_API_BASE_URL=https://api.csgow.tf`
|
||||
|
||||
## Production Build
|
||||
|
||||
In production, the proxy is **not used**. The frontend makes direct requests to the backend:
|
||||
Check `src/lib/api/client.ts`:
|
||||
|
||||
```typescript
|
||||
// Production build
|
||||
const API_BASE_URL = 'https://api.csgow.tf';
|
||||
// Should be:
|
||||
const API_BASE_URL = '/api';
|
||||
|
||||
// Direct request (no proxy)
|
||||
fetch('https://api.csgow.tf/matches');
|
||||
// Not:
|
||||
const API_BASE_URL = 'https://api.csgow.tf'; // ❌ Wrong
|
||||
```
|
||||
|
||||
The production API must have CORS enabled:
|
||||
## How It Works Compared to Vite Proxy
|
||||
|
||||
### Old Approach (Vite Proxy)
|
||||
|
||||
```
|
||||
Access-Control-Allow-Origin: https://cs2.wtf
|
||||
Access-Control-Allow-Methods: GET, POST, OPTIONS
|
||||
Access-Control-Allow-Headers: Content-Type, Authorization
|
||||
Development:
|
||||
Browser → /api → Vite Proxy → Backend
|
||||
|
||||
Production:
|
||||
Browser → Backend (direct, different code path)
|
||||
```
|
||||
|
||||
**Problems**:
|
||||
|
||||
- Two different code paths (dev vs prod)
|
||||
- Proxy only works in development
|
||||
- SSR has to bypass proxy
|
||||
- Complex configuration
|
||||
|
||||
### New Approach (SvelteKit Server Routes)
|
||||
|
||||
```
|
||||
All Environments:
|
||||
Browser → /api → SvelteKit Route → Backend
|
||||
```
|
||||
|
||||
**Benefits**:
|
||||
|
||||
- Single code path
|
||||
- Works in dev, preview, and production
|
||||
- Consistent behavior everywhere
|
||||
- Simpler configuration
|
||||
|
||||
## Adding Features
|
||||
|
||||
### Add Request Caching
|
||||
|
||||
**File**: `src/routes/api/[...path]/+server.ts`
|
||||
|
||||
```typescript
|
||||
const cache = new Map<string, { data: any; expires: number }>();
|
||||
|
||||
export const GET: RequestHandler = async ({ params, url }) => {
|
||||
const cacheKey = `${params.path}${url.search}`;
|
||||
|
||||
// Check cache
|
||||
const cached = cache.get(cacheKey);
|
||||
if (cached && Date.now() < cached.expires) {
|
||||
return json(cached.data);
|
||||
}
|
||||
|
||||
// Fetch from backend
|
||||
const data = await fetch(`${API_BASE_URL}/${params.path}${url.search}`).then((r) => r.json());
|
||||
|
||||
// Cache for 5 minutes
|
||||
cache.set(cacheKey, {
|
||||
data,
|
||||
expires: Date.now() + 5 * 60 * 1000
|
||||
});
|
||||
|
||||
return json(data);
|
||||
};
|
||||
```
|
||||
|
||||
### Add Rate Limiting
|
||||
|
||||
```typescript
|
||||
import { rateLimit } from '$lib/server/rateLimit';
|
||||
|
||||
export const GET: RequestHandler = async ({ request, params, url }) => {
|
||||
// Check rate limit
|
||||
await rateLimit(request);
|
||||
|
||||
// Continue with normal flow...
|
||||
};
|
||||
```
|
||||
|
||||
### Add Authentication
|
||||
|
||||
```typescript
|
||||
export const GET: RequestHandler = async ({ request, params, url }) => {
|
||||
// Get auth token from cookie
|
||||
const token = request.headers.get('cookie')?.includes('auth_token');
|
||||
|
||||
// Forward to backend with auth
|
||||
const response = await fetch(backendUrl, {
|
||||
headers: {
|
||||
Authorization: `Bearer ${token}`
|
||||
}
|
||||
});
|
||||
|
||||
// ...
|
||||
};
|
||||
```
|
||||
|
||||
## Summary
|
||||
|
||||
| Environment | Frontend URL | API Requests | CORS |
|
||||
|-------------|-------------|--------------|------|
|
||||
| **Development** | `http://localhost:5173` | `/api/*` → Proxy → Backend | ✅ Proxy handles |
|
||||
| **Production** | `https://cs2.wtf` | Direct to backend | ✅ Backend CORS |
|
||||
| Feature | Vite Proxy | SvelteKit Routes |
|
||||
| --------------------- | ---------- | ---------------- |
|
||||
| Works in dev | ✅ | ✅ |
|
||||
| Works in production | ❌ | ✅ |
|
||||
| Single code path | ❌ | ✅ |
|
||||
| Can add caching | ❌ | ✅ |
|
||||
| Can add rate limiting | ❌ | ✅ |
|
||||
| Can add auth | ❌ | ✅ |
|
||||
| SSR compatible | ❌ | ✅ |
|
||||
|
||||
The proxy is a **development-only** feature that makes local development smooth and eliminates CORS headaches.
|
||||
**SvelteKit server routes provide a production-ready, maintainable solution for API proxying that works in all environments.**
|
||||
|
||||
480
docs/IMPLEMENTATION_STATUS.md
Normal file
@@ -0,0 +1,480 @@
|
||||
# CS2.WTF Feature Implementation Status
|
||||
|
||||
**Last Updated:** 2025-11-12
|
||||
**Branch:** cs2-port
|
||||
**Status:** In Progress (~70% Complete)
|
||||
|
||||
## Overview
|
||||
|
||||
This document tracks the implementation status of missing features from the original CS:GO WTF frontend that need to be ported to the new CS2.WTF SvelteKit application.
|
||||
|
||||
---
|
||||
|
||||
## Phase 1: Critical Features (HIGH PRIORITY)
|
||||
|
||||
### ✅ 1. Player Tracking System
|
||||
|
||||
**Status:** COMPLETED
|
||||
|
||||
- ✅ Added `tracked` field to Player type
|
||||
- ✅ Updated player schema validation
|
||||
- ✅ Updated API transformer to pass through `tracked` field
|
||||
- ✅ Created `TrackPlayerModal.svelte` component
|
||||
- Auth code input
|
||||
- Optional share code input
|
||||
- Track/Untrack functionality
|
||||
- Help text with instructions
|
||||
- Loading states and error handling
|
||||
- ✅ Integrated modal into player profile page
|
||||
- ✅ Added tracking status indicator button
|
||||
- ✅ Connected to API endpoints: `POST /player/:id/track` and `DELETE /player/:id/track`
|
||||
|
||||
**Files Modified:**
|
||||
|
||||
- `src/lib/types/Player.ts`
|
||||
- `src/lib/schemas/player.schema.ts`
|
||||
- `src/lib/api/transformers.ts`
|
||||
- `src/routes/player/[id]/+page.svelte`
|
||||
|
||||
**Files Created:**
|
||||
|
||||
- `src/lib/components/player/TrackPlayerModal.svelte`
|
||||
|
||||
---
|
||||
|
||||
### ✅ 2. Match Share Code Parsing
|
||||
|
||||
**Status:** COMPLETED
|
||||
|
||||
- ✅ Created `ShareCodeInput.svelte` component
|
||||
- Share code input with validation
|
||||
- Submit button with loading state
|
||||
- Parse status feedback (parsing/success/error)
|
||||
- Auto-redirect to match page on success
|
||||
- Help text with instructions
|
||||
- ✅ Added component to matches page
|
||||
- ✅ Connected to API endpoint: `GET /match/parse/:sharecode`
|
||||
- ✅ Share code format validation
|
||||
|
||||
**Files Created:**
|
||||
|
||||
- `src/lib/components/match/ShareCodeInput.svelte`
|
||||
|
||||
**Files Modified:**
|
||||
|
||||
- `src/routes/matches/+page.svelte`
|
||||
|
||||
---
|
||||
|
||||
### ✅ 3. VAC/Game Ban Status Display (Player Profile)
|
||||
|
||||
**Status:** COMPLETED
|
||||
|
||||
- ✅ Added VAC ban badge with count and date
|
||||
- ✅ Added Game ban badge with count and date
|
||||
- ✅ Styled with error/warning colors
|
||||
- ✅ Displays on player profile header
|
||||
- ✅ Shows ban dates when available
|
||||
|
||||
**Files Modified:**
|
||||
|
||||
- `src/routes/player/[id]/+page.svelte`
|
||||
|
||||
---
|
||||
|
||||
### 🔄 4. VAC Status Column on Match Scoreboard
|
||||
|
||||
**Status:** NOT STARTED
|
||||
|
||||
**TODO:**
|
||||
|
||||
- Add VAC status indicator column to scoreboard in `src/routes/match/[id]/+page.svelte`
|
||||
- Add VAC status indicator to details tab table
|
||||
- Style with red warning icon for players with VAC bans
|
||||
- Tooltip with ban date on hover
|
||||
|
||||
**Files to Modify:**
|
||||
|
||||
- `src/routes/match/[id]/+page.svelte`
|
||||
- `src/routes/match/[id]/details/+page.svelte`
|
||||
|
||||
---
|
||||
|
||||
### 🔄 5. Weapons Statistics Tab
|
||||
|
||||
**Status:** NOT STARTED
|
||||
|
||||
**Requires:**
|
||||
|
||||
- New tab on match detail page
|
||||
- Component to display weapon statistics
|
||||
- Hitgroup visualization (similar to old HitgroupPuppet.vue)
|
||||
- Weapon breakdown table with kills, damage, hits per weapon
|
||||
- API endpoint already exists: `GET /match/:id/weapons`
|
||||
- API method already exists: `matchesAPI.getMatchWeapons()`
|
||||
|
||||
**TODO:**
|
||||
|
||||
- Create `src/routes/match/[id]/weapons/+page.svelte`
|
||||
- Create `src/routes/match/[id]/weapons/+page.ts` (load function)
|
||||
- Create `src/lib/components/match/WeaponStats.svelte`
|
||||
- Create `src/lib/components/match/HitgroupVisualization.svelte`
|
||||
- Update match layout tabs to include weapons tab
|
||||
|
||||
**Estimated Effort:** 8-16 hours
|
||||
|
||||
---
|
||||
|
||||
### 🔄 6. Recently Visited Players (Home Page)
|
||||
|
||||
**Status:** NOT STARTED
|
||||
|
||||
**Requires:**
|
||||
|
||||
- localStorage tracking of visited player profiles
|
||||
- Display on home page as cards
|
||||
- Delete/clear functionality
|
||||
- Limit to last 6-10 players
|
||||
|
||||
**TODO:**
|
||||
|
||||
- Create utility functions for localStorage management
|
||||
- Create `src/lib/components/player/RecentlyVisitedPlayers.svelte`
|
||||
- Add to home page (`src/routes/+page.svelte`)
|
||||
- Track player visits in player profile page
|
||||
- Add to preferences store
|
||||
|
||||
**Estimated Effort:** 4-6 hours
|
||||
|
||||
---
|
||||
|
||||
## Phase 2: Important Features (MEDIUM-HIGH PRIORITY)
|
||||
|
||||
### 🔄 7. Complete Scoreboard Columns
|
||||
|
||||
**Status:** NOT STARTED
|
||||
|
||||
**Missing Columns:**
|
||||
|
||||
- Player avatars (Steam avatar images)
|
||||
- Color indicators (in-game player colors)
|
||||
- In-game score column
|
||||
- MVP stars column
|
||||
- K/D ratio column (separate from K/D difference)
|
||||
- Multi-kill indicators on scoreboard (currently only in Details tab)
|
||||
|
||||
**TODO:**
|
||||
|
||||
- Update `src/routes/match/[id]/+page.svelte` scoreboard table
|
||||
- Add avatar column with Steam profile images
|
||||
- Add color-coded player indicators
|
||||
- Add Score, MVP, K/D ratio columns
|
||||
- Move multi-kill indicators to scoreboard or add as tooltips
|
||||
|
||||
**Estimated Effort:** 6-8 hours
|
||||
|
||||
---
|
||||
|
||||
### 🔄 8. Sitemap Generation
|
||||
|
||||
**Status:** NOT STARTED
|
||||
|
||||
**Requires:**
|
||||
|
||||
- Dynamic sitemap generation based on players and matches
|
||||
- XML sitemap endpoint
|
||||
- Sitemap index for pagination
|
||||
- robots.txt configuration
|
||||
|
||||
**TODO:**
|
||||
|
||||
- Create `src/routes/sitemap.xml/+server.ts`
|
||||
- Create `src/routes/sitemap/[id]/+server.ts`
|
||||
- Implement sitemap generation logic
|
||||
- Add robots.txt to static folder
|
||||
- Connect to backend sitemap endpoints if they exist
|
||||
|
||||
**Estimated Effort:** 6-8 hours
|
||||
|
||||
---
|
||||
|
||||
### 🔄 9. Team Average Rank Badges (Match Header)
|
||||
|
||||
**Status:** NOT STARTED
|
||||
|
||||
**Requires:**
|
||||
|
||||
- Calculate average Premier rating per team
|
||||
- Display in match header/layout
|
||||
- Show tier badges for each team
|
||||
- Rank change indicators
|
||||
|
||||
**TODO:**
|
||||
|
||||
- Add calculation logic in `src/routes/match/[id]/+layout.svelte`
|
||||
- Create component for team rank display
|
||||
- Style with tier colors
|
||||
|
||||
**Estimated Effort:** 3-4 hours
|
||||
|
||||
---
|
||||
|
||||
### 🔄 10. Chat Message Translation
|
||||
|
||||
**Status:** NOT STARTED
|
||||
|
||||
**Requires:**
|
||||
|
||||
- Translation API integration (Google Translate, DeepL, or similar)
|
||||
- Translate button on each chat message
|
||||
- Language detection
|
||||
- Cache translations
|
||||
|
||||
**TODO:**
|
||||
|
||||
- Choose translation API provider
|
||||
- Add API key configuration
|
||||
- Create translation service in `src/lib/services/translation.ts`
|
||||
- Update `src/routes/match/[id]/chat/+page.svelte`
|
||||
- Add translate button to chat messages
|
||||
- Handle loading and error states
|
||||
|
||||
**Estimated Effort:** 8-12 hours
|
||||
|
||||
---
|
||||
|
||||
## Phase 3: Polish & Nice-to-Have (MEDIUM-LOW PRIORITY)
|
||||
|
||||
### 🔄 11. Steam Profile Links
|
||||
|
||||
**Status:** NOT STARTED
|
||||
|
||||
**TODO:**
|
||||
|
||||
- Add Steam profile link to player name on player profile page
|
||||
- Add links to scoreboard player names
|
||||
- Support for vanity URLs
|
||||
- Open in new tab
|
||||
|
||||
**Files to Modify:**
|
||||
|
||||
- `src/routes/player/[id]/+page.svelte`
|
||||
- `src/routes/match/[id]/+page.svelte`
|
||||
- `src/routes/match/[id]/details/+page.svelte`
|
||||
|
||||
**Estimated Effort:** 2-3 hours
|
||||
|
||||
---
|
||||
|
||||
### 🔄 12. Win/Loss/Tie Statistics
|
||||
|
||||
**Status:** NOT STARTED
|
||||
|
||||
**TODO:**
|
||||
|
||||
- Display total wins, losses, ties on player profile
|
||||
- Calculate win rate from these totals
|
||||
- Add to player stats cards section
|
||||
|
||||
**Files to Modify:**
|
||||
|
||||
- `src/routes/player/[id]/+page.svelte`
|
||||
|
||||
**Estimated Effort:** 1-2 hours
|
||||
|
||||
---
|
||||
|
||||
### 🔄 13. Privacy Policy Page
|
||||
|
||||
**Status:** NOT STARTED
|
||||
|
||||
**TODO:**
|
||||
|
||||
- Create `src/routes/privacy-policy/+page.svelte`
|
||||
- Write privacy policy content
|
||||
- Add GDPR compliance information
|
||||
- Link from footer
|
||||
|
||||
**Estimated Effort:** 2-4 hours
|
||||
|
||||
---
|
||||
|
||||
### 🔄 14. Player Color Indicators (Scoreboard)
|
||||
|
||||
**Status:** NOT STARTED
|
||||
|
||||
**TODO:**
|
||||
|
||||
- Display in-game player colors on scoreboard
|
||||
- Color-code player rows or names
|
||||
- Match CS2 color scheme (green/yellow/purple/blue/orange)
|
||||
|
||||
**Files to Modify:**
|
||||
|
||||
- `src/routes/match/[id]/+page.svelte`
|
||||
|
||||
**Estimated Effort:** 1-2 hours
|
||||
|
||||
---
|
||||
|
||||
### 🔄 15. Additional Utility Statistics
|
||||
|
||||
**Status:** NOT STARTED
|
||||
|
||||
**Missing Stats:**
|
||||
|
||||
- Self-flash statistics
|
||||
- Smoke grenade usage
|
||||
- Decoy grenade usage
|
||||
- Team flash statistics
|
||||
|
||||
**TODO:**
|
||||
|
||||
- Display in match details or player profile
|
||||
- Add to utility effectiveness section
|
||||
|
||||
**Estimated Effort:** 2-3 hours
|
||||
|
||||
---
|
||||
|
||||
## Feature Parity Comparison
|
||||
|
||||
### What's BETTER in Current Implementation ✨
|
||||
|
||||
- Modern SvelteKit architecture with TypeScript
|
||||
- Superior filtering and search functionality
|
||||
- Data export (CSV/JSON)
|
||||
- Better data visualizations (Chart.js)
|
||||
- Premier rating system (CS2-specific)
|
||||
- Dark/light theme toggle
|
||||
- Infinite scroll
|
||||
- Better responsive design
|
||||
|
||||
### What's Currently Missing ⚠️
|
||||
|
||||
- Weapon statistics page (high impact)
|
||||
- Complete scoreboard columns (medium impact)
|
||||
- Recently visited players (medium impact)
|
||||
- Sitemap/SEO (medium impact)
|
||||
- Chat translation (low-medium impact)
|
||||
- Various polish features (low impact)
|
||||
|
||||
---
|
||||
|
||||
## Estimated Remaining Effort
|
||||
|
||||
### By Priority
|
||||
|
||||
| Priority | Tasks Remaining | Est. Hours | Status |
|
||||
| ------------------- | --------------- | --------------- | ---------------- |
|
||||
| Phase 1 (Critical) | 3 | 16-30 hours | 50% Complete |
|
||||
| Phase 2 (Important) | 4 | 23-36 hours | 0% Complete |
|
||||
| Phase 3 (Polish) | 5 | 8-14 hours | 0% Complete |
|
||||
| **TOTAL** | **12** | **47-80 hours** | **25% Complete** |
|
||||
|
||||
### Overall Project Status
|
||||
|
||||
- **Completed:** 3 critical features
|
||||
- **In Progress:** API cleanup and optimization
|
||||
- **Remaining:** 12 features across 3 phases
|
||||
- **Estimated Completion:** 2-3 weeks of full-time development
|
||||
|
||||
---
|
||||
|
||||
## Next Steps
|
||||
|
||||
### Immediate (This Session)
|
||||
|
||||
1. ✅ Player tracking UI - DONE
|
||||
2. ✅ Share code parsing UI - DONE
|
||||
3. ✅ VAC/ban status display (profile) - DONE
|
||||
4. ⏭️ VAC status on scoreboard - NEXT
|
||||
5. ⏭️ Weapons statistics tab - NEXT
|
||||
6. ⏭️ Recently visited players - NEXT
|
||||
|
||||
### Short Term (Next Session)
|
||||
|
||||
- Complete remaining Phase 1 features
|
||||
- Start Phase 2 features (scoreboard completion, sitemap)
|
||||
|
||||
### Medium Term
|
||||
|
||||
- Complete Phase 2 features
|
||||
- Begin Phase 3 polish features
|
||||
|
||||
### Long Term
|
||||
|
||||
- Full feature parity with old frontend
|
||||
- Additional CS2-specific features
|
||||
- Performance optimizations
|
||||
|
||||
---
|
||||
|
||||
## Testing Checklist
|
||||
|
||||
### Completed Features
|
||||
|
||||
- [x] Player tracking modal opens and closes
|
||||
- [x] Player tracking modal validates auth code input
|
||||
- [x] Track/untrack API calls work
|
||||
- [x] Tracking status updates after track/untrack
|
||||
- [x] Share code input validates format
|
||||
- [x] Share code parsing submits to API
|
||||
- [x] Parse status feedback displays correctly
|
||||
- [x] Redirect to match page after successful parse
|
||||
- [x] VAC/ban badges display on player profile
|
||||
- [x] VAC/ban dates show when available
|
||||
|
||||
### TODO Testing
|
||||
|
||||
- [ ] VAC status displays on scoreboard
|
||||
- [ ] Weapons tab loads and displays data
|
||||
- [ ] Hitgroup visualization renders correctly
|
||||
- [ ] Recently visited players tracked correctly
|
||||
- [ ] Recently visited players display on home page
|
||||
- [ ] All Phase 2 and 3 features
|
||||
|
||||
---
|
||||
|
||||
## Known Issues
|
||||
|
||||
### Current
|
||||
|
||||
- None
|
||||
|
||||
### Potential
|
||||
|
||||
- Translation API rate limiting (once implemented)
|
||||
- Sitemap generation performance with large datasets
|
||||
- Weapons tab may need pagination for long matches
|
||||
|
||||
---
|
||||
|
||||
## Notes
|
||||
|
||||
### Architecture Decisions
|
||||
|
||||
- Using SvelteKit server routes for API proxying (no CORS issues)
|
||||
- Transformers pattern for legacy API format conversion
|
||||
- Component-based approach for reusability
|
||||
- TypeScript + Zod for type safety
|
||||
|
||||
### API Endpoints Used
|
||||
|
||||
- ✅ `POST /player/:id/track`
|
||||
- ✅ `DELETE /player/:id/track`
|
||||
- ✅ `GET /match/parse/:sharecode`
|
||||
- ⏭️ `GET /match/:id/weapons` (available but not used yet)
|
||||
- ⏭️ `GET /player/:id/meta` (available but not optimized yet)
|
||||
|
||||
---
|
||||
|
||||
## Contributors
|
||||
|
||||
- Initial Analysis: Claude (Anthropic AI)
|
||||
- Implementation: In Progress
|
||||
- Testing: Pending
|
||||
|
||||
---
|
||||
|
||||
**For questions or updates, refer to the main project README.md**
|
||||
@@ -21,6 +21,7 @@ npm install
|
||||
The `.env` file already exists in the project. You can use it as-is or modify it:
|
||||
|
||||
**Option A: Use Production API** (Recommended for frontend development)
|
||||
|
||||
```env
|
||||
# Use the live production API - no local backend needed
|
||||
VITE_API_BASE_URL=https://api.csgow.tf
|
||||
@@ -30,6 +31,7 @@ VITE_ENABLE_ANALYTICS=false
|
||||
```
|
||||
|
||||
**Option B: Use Local Backend** (For full-stack development)
|
||||
|
||||
```env
|
||||
# Use local backend (requires csgowtfd running on port 8000)
|
||||
VITE_API_BASE_URL=http://localhost:8000
|
||||
@@ -47,13 +49,12 @@ npm run dev
|
||||
The frontend will be available at `http://localhost:5173`
|
||||
|
||||
You should see output like:
|
||||
|
||||
```
|
||||
[Vite Config] API Proxy target: https://api.csgow.tf
|
||||
[API Client] Development mode - using Vite proxy
|
||||
[API Client] Frontend requests: /api/*
|
||||
[API Client] Proxy target: https://api.csgow.tf
|
||||
VITE v5.x.x ready in xxx ms
|
||||
|
||||
➜ Local: http://localhost:5173/
|
||||
➜ Network: use --host to expose
|
||||
```
|
||||
|
||||
### 4. (Optional) Start Local Backend
|
||||
@@ -67,45 +68,57 @@ go run cmd/csgowtfd/main.go
|
||||
```
|
||||
|
||||
Or use Docker:
|
||||
|
||||
```bash
|
||||
docker-compose up csgowtfd
|
||||
```
|
||||
|
||||
## How the CORS Proxy Works
|
||||
## How SvelteKit API Routes Work
|
||||
|
||||
The Vite dev server includes a **built-in proxy** that eliminates CORS issues during development:
|
||||
All API requests go through **SvelteKit server routes** which proxy to the backend. This works consistently in all environments.
|
||||
|
||||
### Request Flow (All Environments)
|
||||
|
||||
### Development Mode Flow
|
||||
```
|
||||
1. Browser makes request to: http://localhost:5173/api/matches
|
||||
2. Vite intercepts and proxies to: ${VITE_API_BASE_URL}/matches
|
||||
3. Backend responds
|
||||
4. Vite forwards response to browser
|
||||
2. SvelteKit routes to: src/routes/api/[...path]/+server.ts
|
||||
3. Server handler reads VITE_API_BASE_URL environment variable
|
||||
4. Server fetches from backend: ${VITE_API_BASE_URL}/matches
|
||||
5. Backend responds
|
||||
6. Server handler forwards response to browser
|
||||
```
|
||||
|
||||
### Benefits
|
||||
- ✅ **No CORS errors** - All requests appear same-origin to the browser
|
||||
- ✅ **Works with any backend** - Local or remote
|
||||
- ✅ **No backend CORS config needed** - Proxy handles it
|
||||
- ✅ **Simple configuration** - Just set `VITE_API_BASE_URL`
|
||||
|
||||
### Proxy Logs
|
||||
- ✅ **No CORS errors** - All requests are server-side
|
||||
- ✅ **Works in all environments** - Dev, preview, and production
|
||||
- ✅ **Single code path** - Same behavior everywhere
|
||||
- ✅ **Easy backend switching** - Change one environment variable
|
||||
- ✅ **Future-proof** - Can add caching, rate limiting, auth later
|
||||
- ✅ **Backend URL not exposed** - Hidden from client
|
||||
|
||||
You'll see detailed proxy activity in the terminal:
|
||||
### Switching Between Backends
|
||||
|
||||
Simply update `.env` and restart the dev server:
|
||||
|
||||
```bash
|
||||
[Proxy] GET /api/matches?limit=6 -> https://api.csgow.tf/matches?limit=6
|
||||
[Proxy ✓] GET /api/matches?limit=6 -> 200
|
||||
[Proxy] GET /api/match/123 -> https://api.csgow.tf/match/123
|
||||
[Proxy ✓] GET /api/match/123 -> 200
|
||||
# Use production API
|
||||
echo "VITE_API_BASE_URL=https://api.csgow.tf" > .env
|
||||
npm run dev
|
||||
|
||||
# Use local backend
|
||||
echo "VITE_API_BASE_URL=http://localhost:8000" > .env
|
||||
npm run dev
|
||||
```
|
||||
|
||||
### Production vs Development
|
||||
### Development vs Production
|
||||
|
||||
| Mode | API Base URL | CORS |
|
||||
|------|-------------|------|
|
||||
| **Development** (`npm run dev`) | `/api` (proxied to `VITE_API_BASE_URL`) | ✅ No issues |
|
||||
| **Production** (`npm run build`) | `VITE_API_BASE_URL` (direct) | ✅ Backend has CORS enabled |
|
||||
| Mode | Request Flow | Backend URL From |
|
||||
| -------------------------------- | ---------------------------------------------- | ------------------------------ |
|
||||
| **Development** (`npm run dev`) | Browser → `/api/*` → SvelteKit Route → Backend | `.env` → `VITE_API_BASE_URL` |
|
||||
| **Production** (`npm run build`) | Browser → `/api/*` → SvelteKit Route → Backend | Build-time `VITE_API_BASE_URL` |
|
||||
|
||||
**Note**: The flow is identical in both modes - this is the key advantage over the old Vite proxy approach.
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
@@ -116,34 +129,40 @@ You'll see detailed proxy activity in the terminal:
|
||||
**Solutions**:
|
||||
|
||||
1. **Check what backend you're using**:
|
||||
|
||||
```bash
|
||||
# Look at your .env file
|
||||
cat .env | grep VITE_API_BASE_URL
|
||||
```
|
||||
|
||||
2. **If using production API** (`https://api.csgow.tf`):
|
||||
|
||||
```bash
|
||||
# Test if production API is accessible
|
||||
curl https://api.csgow.tf/matches?limit=1
|
||||
```
|
||||
|
||||
Should return JSON data. If not, production API may be down.
|
||||
|
||||
3. **If using local backend** (`http://localhost:8000`):
|
||||
|
||||
```bash
|
||||
# Test if local backend is running
|
||||
curl http://localhost:8000/matches?limit=1
|
||||
```
|
||||
|
||||
If you get "Connection refused", start the backend service.
|
||||
|
||||
4. **Check proxy logs**:
|
||||
- Look at the terminal running `npm run dev`
|
||||
- You should see `[Proxy]` messages showing requests being forwarded
|
||||
- If you see `[Proxy Error]`, check the error message
|
||||
|
||||
5. **Check browser console**:
|
||||
4. **Check browser console**:
|
||||
- Open DevTools → Console tab
|
||||
- Look for `[API Client]` messages showing proxy configuration
|
||||
- Look for `[API Route]` error messages from the server route handler
|
||||
- Network tab should show requests to `/api/*` (not external URLs)
|
||||
- Check if requests return 503 (backend unreachable) or 500 (server error)
|
||||
|
||||
5. **Check server logs**:
|
||||
- Look at the terminal running `npm run dev`
|
||||
- Server route errors will appear with `[API Route] Error fetching...`
|
||||
- This will show you the exact backend URL being requested
|
||||
|
||||
6. **Restart dev server**:
|
||||
```bash
|
||||
@@ -151,22 +170,20 @@ You'll see detailed proxy activity in the terminal:
|
||||
npm run dev
|
||||
```
|
||||
|
||||
### CORS Errors (Should Not Happen)
|
||||
### CORS Errors (Should Never Happen)
|
||||
|
||||
If you see CORS errors in the browser console, the proxy isn't working:
|
||||
CORS errors should be impossible with SvelteKit server routes since all requests are server-side.
|
||||
|
||||
**Symptoms**:
|
||||
- Browser console shows: `CORS policy: No 'Access-Control-Allow-Origin' header`
|
||||
- Network tab shows requests going to `https://api.csgow.tf` directly (not `/api`)
|
||||
**If you somehow see CORS errors:**
|
||||
|
||||
**Fix**:
|
||||
1. Verify you're in development mode (not production build)
|
||||
2. Check API client logs show: `Development mode - using Vite proxy`
|
||||
3. Restart dev server with clean cache:
|
||||
```bash
|
||||
rm -rf .svelte-kit
|
||||
npm run dev
|
||||
```
|
||||
- This means the API client is bypassing the `/api` routes
|
||||
- Check that `src/lib/api/client.ts` has `API_BASE_URL = '/api'`
|
||||
- Verify `src/routes/api/[...path]/+server.ts` exists
|
||||
- Clear cache and restart:
|
||||
```bash
|
||||
rm -rf .svelte-kit
|
||||
npm run dev
|
||||
```
|
||||
|
||||
### Port Already in Use
|
||||
|
||||
@@ -196,6 +213,7 @@ Then restart the dev server.
|
||||
### 1. Make Changes
|
||||
|
||||
Edit files in `src/`. The dev server has hot module replacement (HMR):
|
||||
|
||||
- Component changes reload instantly
|
||||
- Route changes reload the page
|
||||
- Store changes reload affected components
|
||||
@@ -243,33 +261,32 @@ The backend provides these endpoints (see `docs/API.md` for full details):
|
||||
|
||||
### How Requests Work
|
||||
|
||||
**In Development** (`npm run dev`):
|
||||
**All Environments** (dev, preview, production):
|
||||
|
||||
```
|
||||
Frontend code: api.matches.getMatches()
|
||||
↓
|
||||
API Client: GET /api/matches
|
||||
↓
|
||||
Vite Proxy: GET https://api.csgow.tf/matches
|
||||
SvelteKit Route: src/routes/api/[...path]/+server.ts
|
||||
↓
|
||||
Server Handler: GET ${VITE_API_BASE_URL}/matches
|
||||
↓
|
||||
Response: ← Data returned to frontend
|
||||
```
|
||||
|
||||
**In Production** (deployed app):
|
||||
```
|
||||
Frontend code: api.matches.getMatches()
|
||||
↓
|
||||
API Client: GET https://api.csgow.tf/matches (direct)
|
||||
↓
|
||||
Response: ← Data returned to frontend
|
||||
```
|
||||
The request flow is identical in all environments. The only difference is which backend URL `VITE_API_BASE_URL` points to:
|
||||
|
||||
The API client automatically uses the correct URL based on environment.
|
||||
- Development: Usually `https://api.csgow.tf` (production API)
|
||||
- Local full-stack: `http://localhost:8000` (local backend)
|
||||
- Production: `https://api.csgow.tf` (or custom backend URL)
|
||||
|
||||
## Mock Data (Alternative: No Backend)
|
||||
|
||||
If you want to develop without any backend (local or production), enable MSW mocking:
|
||||
|
||||
1. Update `.env`:
|
||||
|
||||
```env
|
||||
VITE_ENABLE_MSW_MOCKING=true
|
||||
```
|
||||
@@ -294,14 +311,14 @@ The preview server runs on `http://localhost:4173` and uses the production API c
|
||||
|
||||
## Environment Variables Reference
|
||||
|
||||
| Variable | Default | Description |
|
||||
|----------|---------|-------------|
|
||||
| `VITE_API_BASE_URL` | `http://localhost:8000` | Backend API base URL |
|
||||
| `VITE_API_TIMEOUT` | `10000` | Request timeout (ms) |
|
||||
| `VITE_ENABLE_LIVE_MATCHES` | `false` | Enable live match polling |
|
||||
| `VITE_ENABLE_ANALYTICS` | `false` | Enable analytics tracking |
|
||||
| `VITE_DEBUG_MODE` | `false` | Enable debug logging |
|
||||
| `VITE_ENABLE_MSW_MOCKING` | `false` | Use mock data instead of API |
|
||||
| Variable | Default | Description |
|
||||
| -------------------------- | ----------------------- | ---------------------------- |
|
||||
| `VITE_API_BASE_URL` | `http://localhost:8000` | Backend API base URL |
|
||||
| `VITE_API_TIMEOUT` | `10000` | Request timeout (ms) |
|
||||
| `VITE_ENABLE_LIVE_MATCHES` | `false` | Enable live match polling |
|
||||
| `VITE_ENABLE_ANALYTICS` | `false` | Enable analytics tracking |
|
||||
| `VITE_DEBUG_MODE` | `false` | Enable debug logging |
|
||||
| `VITE_ENABLE_MSW_MOCKING` | `false` | Use mock data instead of API |
|
||||
|
||||
## Getting Help
|
||||
|
||||
|
||||
460
docs/MATCHES_API.md
Normal file
@@ -0,0 +1,460 @@
|
||||
# Matches API Endpoint Documentation
|
||||
|
||||
This document provides detailed information about the matches API endpoints used by CS2.WTF to retrieve match data from the backend CSGOWTFD service.
|
||||
|
||||
## Overview
|
||||
|
||||
The matches API provides access to Counter-Strike 2 match data including match listings, detailed match statistics, and related match information such as weapons, rounds, and chat data.
|
||||
|
||||
## Base URL
|
||||
|
||||
All endpoints are relative to the API base URL: `https://api.csgow.tf`
|
||||
|
||||
During development, requests are proxied through `/api` to avoid CORS issues.
|
||||
|
||||
## Authentication
|
||||
|
||||
No authentication is required for read operations. All match data is publicly accessible.
|
||||
|
||||
## Rate Limiting
|
||||
|
||||
The API does not currently enforce rate limiting, but clients should implement reasonable request throttling to avoid overwhelming the service.
|
||||
|
||||
## Endpoints
|
||||
|
||||
### 1. Get Matches List
|
||||
|
||||
Retrieves a paginated list of matches.
|
||||
|
||||
**Endpoint**: `GET /matches`
|
||||
**Alternative**: `GET /matches/next/:time`
|
||||
|
||||
**Parameters**:
|
||||
|
||||
- `time` (path, optional): Unix timestamp for pagination (use with `/matches/next/:time`)
|
||||
- Query parameters:
|
||||
- `limit` (optional): Number of matches to return (default: 50, max: 100)
|
||||
- `map` (optional): Filter by map name (e.g., `de_inferno`)
|
||||
- `player_id` (optional): Filter by player Steam ID
|
||||
|
||||
**Response** (200 OK):
|
||||
|
||||
**IMPORTANT**: This endpoint returns a **plain array**, not an object with properties.
|
||||
|
||||
```json
|
||||
[
|
||||
{
|
||||
"match_id": "3589487716842078322",
|
||||
"map": "de_inferno",
|
||||
"date": 1730487900,
|
||||
"score": [13, 10],
|
||||
"duration": 2456,
|
||||
"match_result": 1,
|
||||
"max_rounds": 24,
|
||||
"parsed": true,
|
||||
"vac": false,
|
||||
"game_ban": false
|
||||
}
|
||||
]
|
||||
```
|
||||
|
||||
**Field Descriptions**:
|
||||
|
||||
- `match_id`: Unique match identifier (uint64 as string)
|
||||
- `map`: Map name (can be empty string if not parsed)
|
||||
- `date`: Unix timestamp (seconds since epoch)
|
||||
- `score`: Array with two elements `[team_a_score, team_b_score]`
|
||||
- `duration`: Match duration in seconds
|
||||
- `match_result`: 0 = tie, 1 = team_a win, 2 = team_b win
|
||||
- `max_rounds`: Maximum rounds (24 for MR12, 30 for MR15)
|
||||
- `parsed`: Whether the demo has been parsed
|
||||
- `vac`: Whether any player has a VAC ban
|
||||
- `game_ban`: Whether any player has a game ban
|
||||
|
||||
**Pagination**:
|
||||
|
||||
- The API returns a plain array of matches, sorted by date (newest first)
|
||||
- To get the next page, use the `date` field from the **last match** in the array
|
||||
- Request `/matches/next/{timestamp}` where `{timestamp}` is the Unix timestamp
|
||||
- Continue until the response returns fewer matches than your `limit` parameter
|
||||
- Example: If you request `limit=20` and get back 15 matches, you've reached the end
|
||||
|
||||
### 2. Get Match Details
|
||||
|
||||
Retrieves detailed information about a specific match including player statistics.
|
||||
|
||||
**Endpoint**: `GET /match/{match_id}`
|
||||
|
||||
**Parameters**:
|
||||
|
||||
- `match_id` (path): The unique match identifier (uint64 as string)
|
||||
|
||||
**Response** (200 OK):
|
||||
|
||||
```json
|
||||
{
|
||||
"match_id": "3589487716842078322",
|
||||
"share_code": "CSGO-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX",
|
||||
"map": "de_inferno",
|
||||
"date": "2024-11-01T18:45:00Z",
|
||||
"score_team_a": 13,
|
||||
"score_team_b": 10,
|
||||
"duration": 2456,
|
||||
"match_result": 1,
|
||||
"max_rounds": 24,
|
||||
"demo_parsed": true,
|
||||
"vac_present": false,
|
||||
"gameban_present": false,
|
||||
"tick_rate": 64.0, // Optional: not always provided by API
|
||||
"players": [
|
||||
{
|
||||
"id": "765611980123456",
|
||||
"name": "Player1",
|
||||
"avatar": "https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/fe/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_full.jpg",
|
||||
"team_id": 2,
|
||||
"kills": 24,
|
||||
"deaths": 18,
|
||||
"assists": 6,
|
||||
"headshot": 12,
|
||||
"mvp": 3,
|
||||
"score": 56,
|
||||
"kast": 78, // Optional: not always provided by API
|
||||
"rank_old": 18500,
|
||||
"rank_new": 18650,
|
||||
"dmg_enemy": 2450,
|
||||
"dmg_team": 120,
|
||||
"flash_assists": 4,
|
||||
"flash_duration_enemy": 15.6,
|
||||
"flash_total_enemy": 8,
|
||||
"ud_he": 450,
|
||||
"ud_flames": 230,
|
||||
"ud_flash": 5,
|
||||
"ud_smoke": 3,
|
||||
"avg_ping": 25.5,
|
||||
"color": "yellow"
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
### 3. Get Match Weapons
|
||||
|
||||
Retrieves weapon statistics for all players in a match.
|
||||
|
||||
**Endpoint**: `GET /match/{match_id}/weapons`
|
||||
|
||||
**Parameters**:
|
||||
|
||||
- `match_id` (path): The unique match identifier
|
||||
|
||||
**Response** (200 OK):
|
||||
|
||||
```json
|
||||
{
|
||||
"match_id": 3589487716842078322,
|
||||
"weapons": [
|
||||
{
|
||||
"player_id": 765611980123456,
|
||||
"weapon_stats": [
|
||||
{
|
||||
"eq_type": 17,
|
||||
"weapon_name": "AK-47",
|
||||
"kills": 12,
|
||||
"damage": 1450,
|
||||
"hits": 48,
|
||||
"hit_groups": {
|
||||
"head": 8,
|
||||
"chest": 25,
|
||||
"stomach": 8,
|
||||
"left_arm": 3,
|
||||
"right_arm": 2,
|
||||
"left_leg": 1,
|
||||
"right_leg": 1
|
||||
},
|
||||
"headshot_pct": 16.7
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
### 4. Get Match Rounds
|
||||
|
||||
Retrieves round-by-round statistics for a match.
|
||||
|
||||
**Endpoint**: `GET /match/{match_id}/rounds`
|
||||
|
||||
**Parameters**:
|
||||
|
||||
- `match_id` (path): The unique match identifier
|
||||
|
||||
**Response** (200 OK):
|
||||
|
||||
```json
|
||||
{
|
||||
"match_id": 3589487716842078322,
|
||||
"rounds": [
|
||||
{
|
||||
"round": 1,
|
||||
"winner": 2,
|
||||
"win_reason": "elimination",
|
||||
"players": [
|
||||
{
|
||||
"round": 1,
|
||||
"player_id": 765611980123456,
|
||||
"bank": 800,
|
||||
"equipment": 650,
|
||||
"spent": 650,
|
||||
"kills_in_round": 2,
|
||||
"damage_in_round": 120
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
### 5. Get Match Chat
|
||||
|
||||
Retrieves chat messages from a match.
|
||||
|
||||
**Endpoint**: `GET /match/{match_id}/chat`
|
||||
|
||||
**Parameters**:
|
||||
|
||||
- `match_id` (path): The unique match identifier
|
||||
|
||||
**Response** (200 OK):
|
||||
|
||||
```json
|
||||
{
|
||||
"match_id": 3589487716842078322,
|
||||
"messages": [
|
||||
{
|
||||
"player_id": 765611980123456,
|
||||
"player_name": "Player1",
|
||||
"message": "nice shot!",
|
||||
"tick": 15840,
|
||||
"round": 8,
|
||||
"all_chat": true,
|
||||
"timestamp": "2024-11-01T19:12:34Z"
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
### 6. Parse Match from Share Code
|
||||
|
||||
Initiates parsing of a match from a CS:GO/CS2 share code.
|
||||
|
||||
**Endpoint**: `GET /match/parse/{sharecode}`
|
||||
|
||||
**Parameters**:
|
||||
|
||||
- `sharecode` (path): The CS:GO/CS2 match share code
|
||||
|
||||
**Response** (200 OK):
|
||||
|
||||
```json
|
||||
{
|
||||
"match_id": "3589487716842078322",
|
||||
"status": "parsing",
|
||||
"message": "Demo download and parsing initiated",
|
||||
"estimated_time": 120
|
||||
}
|
||||
```
|
||||
|
||||
## Data Models
|
||||
|
||||
### Match
|
||||
|
||||
```typescript
|
||||
interface Match {
|
||||
match_id: string; // Unique match identifier (uint64 as string)
|
||||
share_code?: string; // CS:GO/CS2 share code (optional)
|
||||
map: string; // Map name (e.g., "de_inferno")
|
||||
date: string; // Match date and time (ISO 8601)
|
||||
score_team_a: number; // Final score for team A
|
||||
score_team_b: number; // Final score for team B
|
||||
duration: number; // Match duration in seconds
|
||||
match_result: number; // Match result: 0 = tie, 1 = team_a win, 2 = team_b win
|
||||
max_rounds: number; // Maximum rounds (24 for MR12, 30 for MR15)
|
||||
demo_parsed: boolean; // Whether the demo has been successfully parsed
|
||||
vac_present: boolean; // Whether any player has a VAC ban
|
||||
gameban_present: boolean; // Whether any player has a game ban
|
||||
tick_rate?: number; // Server tick rate (64 or 128) - optional, not always provided by API
|
||||
players?: MatchPlayer[]; // Array of player statistics (optional)
|
||||
}
|
||||
```
|
||||
|
||||
### MatchPlayer
|
||||
|
||||
```typescript
|
||||
interface MatchPlayer {
|
||||
id: string; // Player Steam ID (uint64 as string)
|
||||
name: string; // Player display name
|
||||
avatar: string; // Steam avatar URL
|
||||
team_id: number; // Team ID: 2 = T side, 3 = CT side
|
||||
kills: number; // Kills
|
||||
deaths: number; // Deaths
|
||||
assists: number; // Assists
|
||||
headshot: number; // Headshot kills
|
||||
mvp: number; // MVP stars earned
|
||||
score: number; // In-game score
|
||||
kast?: number; // KAST percentage (0-100) - optional, not always provided by API
|
||||
rank_old?: number; // Premier rating before match (0-30000)
|
||||
rank_new?: number; // Premier rating after match (0-30000)
|
||||
dmg_enemy?: number; // Damage to enemies
|
||||
dmg_team?: number; // Damage to teammates
|
||||
flash_assists?: number; // Flash assist count
|
||||
flash_duration_enemy?: number; // Total enemy blind time
|
||||
flash_total_enemy?: number; // Enemies flashed count
|
||||
ud_he?: number; // HE grenade damage
|
||||
ud_flames?: number; // Molotov/Incendiary damage
|
||||
ud_flash?: number; // Flash grenades used
|
||||
ud_smoke?: number; // Smoke grenades used
|
||||
avg_ping?: number; // Average ping
|
||||
color?: string; // Player color
|
||||
}
|
||||
```
|
||||
|
||||
### MatchListItem
|
||||
|
||||
```typescript
|
||||
interface MatchListItem {
|
||||
match_id: string; // Unique match identifier (uint64 as string)
|
||||
map: string; // Map name
|
||||
date: string; // Match date and time (ISO 8601)
|
||||
score_team_a: number; // Final score for team A
|
||||
score_team_b: number; // Final score for team B
|
||||
duration: number; // Match duration in seconds
|
||||
demo_parsed: boolean; // Whether the demo has been successfully parsed
|
||||
player_count?: number; // Number of players in the match - optional, not provided by API
|
||||
}
|
||||
```
|
||||
|
||||
## Error Handling
|
||||
|
||||
All API errors follow a consistent format:
|
||||
|
||||
```json
|
||||
{
|
||||
"error": "Error message",
|
||||
"code": 404,
|
||||
"details": {
|
||||
"match_id": "3589487716842078322"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Common HTTP Status Codes
|
||||
|
||||
- `200 OK`: Request successful
|
||||
- `400 Bad Request`: Invalid parameters
|
||||
- `404 Not Found`: Resource not found
|
||||
- `500 Internal Server Error`: Server error
|
||||
|
||||
## Implementation Notes
|
||||
|
||||
### Pagination
|
||||
|
||||
The matches API implements cursor-based pagination using timestamps:
|
||||
|
||||
1. Initial request to `/matches` returns a plain array of matches (sorted newest first)
|
||||
2. Extract the `date` field from the **last match** in the array
|
||||
3. Request `/matches/next/{timestamp}` to get older matches
|
||||
4. Continue until the response returns fewer matches than your `limit` parameter
|
||||
5. The API does **not** provide `has_more` or `next_page_time` fields - you must calculate these yourself
|
||||
|
||||
### Data Transformation
|
||||
|
||||
The frontend application transforms legacy API responses to a modern schema-validated format:
|
||||
|
||||
- Unix timestamps are converted to ISO strings
|
||||
- Avatar hashes are converted to full URLs (if provided)
|
||||
- Team IDs are normalized (1/2 → 2/3 if needed)
|
||||
- Score arrays `[team_a, team_b]` are split into separate fields
|
||||
- Field names are mapped: `parsed` → `demo_parsed`, `vac` → `vac_present`, `game_ban` → `gameban_present`
|
||||
- Missing fields are provided with defaults (e.g., `tick_rate: 64`)
|
||||
|
||||
### Steam ID Handling
|
||||
|
||||
All Steam IDs and Match IDs are handled as strings to preserve uint64 precision. Never convert these to numbers as it causes precision loss.
|
||||
|
||||
## Examples
|
||||
|
||||
### Fetching Matches with Pagination
|
||||
|
||||
```javascript
|
||||
// Initial request - API returns a plain array
|
||||
const matches = await fetch('/api/matches?limit=20').then((r) => r.json());
|
||||
|
||||
// matches is an array: [{ match_id, map, date, ... }, ...]
|
||||
console.log(`Loaded ${matches.length} matches`);
|
||||
|
||||
// Get the timestamp of the last match for pagination
|
||||
if (matches.length > 0) {
|
||||
const lastMatch = matches[matches.length - 1];
|
||||
const lastTimestamp = lastMatch.date; // Unix timestamp
|
||||
|
||||
// Fetch next page using the timestamp
|
||||
const moreMatches = await fetch(`/api/matches/next/${lastTimestamp}?limit=20`).then((r) =>
|
||||
r.json()
|
||||
);
|
||||
|
||||
console.log(`Loaded ${moreMatches.length} more matches`);
|
||||
|
||||
// Check if we've reached the end
|
||||
if (moreMatches.length < 20) {
|
||||
console.log('Reached the end of matches');
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Complete Pagination Loop
|
||||
|
||||
```javascript
|
||||
async function loadAllMatches(limit = 50) {
|
||||
let allMatches = [];
|
||||
let hasMore = true;
|
||||
let lastTimestamp = null;
|
||||
|
||||
while (hasMore) {
|
||||
// Build URL based on whether we have a timestamp
|
||||
const url = lastTimestamp
|
||||
? `/api/matches/next/${lastTimestamp}?limit=${limit}`
|
||||
: `/api/matches?limit=${limit}`;
|
||||
|
||||
// Fetch matches
|
||||
const matches = await fetch(url).then((r) => r.json());
|
||||
|
||||
// Add to collection
|
||||
allMatches.push(...matches);
|
||||
|
||||
// Check if there are more
|
||||
if (matches.length < limit) {
|
||||
hasMore = false;
|
||||
} else {
|
||||
// Get timestamp of last match for next iteration
|
||||
lastTimestamp = matches[matches.length - 1].date;
|
||||
}
|
||||
}
|
||||
|
||||
return allMatches;
|
||||
}
|
||||
```
|
||||
|
||||
### Filtering Matches by Map
|
||||
|
||||
```javascript
|
||||
const response = await fetch('/api/matches?map=de_inferno&limit=20');
|
||||
const data = await response.json();
|
||||
```
|
||||
|
||||
### Filtering Matches by Player
|
||||
|
||||
```javascript
|
||||
const response = await fetch('/api/matches?player_id=765611980123456&limit=20');
|
||||
const data = await response.json();
|
||||
```
|
||||
@@ -1,66 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta content="IE=edge" http-equiv="X-UA-Compatible">
|
||||
<meta content="width=device-width,initial-scale=1.0" name="viewport">
|
||||
|
||||
<meta content="Track your CSGO matches and see your match details."
|
||||
name="description">
|
||||
<meta content="index, follow, archive"
|
||||
name="robots">
|
||||
<meta content="Track your CSGO matches and see your match details."
|
||||
property="st:section">
|
||||
<meta content="csgoWTF - Open source CSGO data platform"
|
||||
name="twitter:title">
|
||||
<meta content="Track your CSGO matches and see your match details."
|
||||
name="twitter:description">
|
||||
<meta content="summary_large_image"
|
||||
name="twitter:card">
|
||||
<meta content="https://csgow.tf/"
|
||||
property="og:url">
|
||||
<meta content="csgoWTF - Open source CSGO data platform"
|
||||
property="og:title">
|
||||
<meta content="Track your CSGO matches and see your match details."
|
||||
property="og:description">
|
||||
<meta content="website"
|
||||
property="og:type">
|
||||
<meta content="en_US"
|
||||
property="og:locale">
|
||||
<meta content="csgoWTF - Open source CSGO data platform"
|
||||
property="og:site_name">
|
||||
<meta content="https://csgow.tf/images/logo.png"
|
||||
name="twitter:image">
|
||||
<meta content="https://csgow.tf/images/logo.png"
|
||||
property="og:image">
|
||||
<meta content="1024"
|
||||
property="og:image:width">
|
||||
<meta content="526"
|
||||
property="og:image:height">
|
||||
<meta content="https://csgow.tf/images/logo.png"
|
||||
property="og:image:secure_url">
|
||||
|
||||
<link href="<%= BASE_URL %>images/apple-touch-icon.png" rel="apple-touch-icon" sizes="180x180">
|
||||
<link href="<%= BASE_URL %>images/favicon-32x32.png" rel="icon" sizes="32x32" type="image/png">
|
||||
<link href="<%= BASE_URL %>images/favicon-16x16.png" rel="icon" sizes="16x16" type="image/png">
|
||||
|
||||
<link href="<%= BASE_URL %>site.webmanifest" rel="manifest">
|
||||
|
||||
<link rel="preconnect" href="https://steamcdn-a.akamaihd.net" crossorigin>
|
||||
<link rel="dns-prefetch" href="https://steamcdn-a.akamaihd.net">
|
||||
<link rel="preconnect" href="https://api.csgow.tf" crossorigin>
|
||||
<link rel="dns-prefetch" href="https://api.csgow.tf">
|
||||
<link rel="preconnect" href="https://piwik.harting.hosting" crossorigin>
|
||||
<link rel="dns-prefetch" href="https://piwik.harting.hosting">
|
||||
|
||||
<title><%= htmlWebpackPlugin.options.title %></title>
|
||||
</head>
|
||||
<body>
|
||||
<noscript>
|
||||
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
|
||||
Please enable it to continue.</strong>
|
||||
</noscript>
|
||||
<div id="app" class="d-flex flex-column min-vh-100"></div>
|
||||
<!-- built files will be auto injected -->
|
||||
</body>
|
||||
</html>
|
||||
@@ -1 +0,0 @@
|
||||
{"name":"","short_name":"","icons":[{"src":"/images/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/images/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
|
||||
35
src/app.css
@@ -2,6 +2,17 @@
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
/* CS2 Custom Font */
|
||||
@font-face {
|
||||
font-family: 'CS Regular';
|
||||
src:
|
||||
url('/fonts/cs_regular.woff2') format('woff2'),
|
||||
url('/fonts/cs_regular.ttf') format('truetype');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
@layer base {
|
||||
:root {
|
||||
/* Default to dark theme */
|
||||
@@ -10,10 +21,34 @@
|
||||
|
||||
body {
|
||||
@apply bg-base-100 text-base-content;
|
||||
font-family:
|
||||
system-ui,
|
||||
-apple-system,
|
||||
BlinkMacSystemFont,
|
||||
'Segoe UI',
|
||||
Roboto,
|
||||
sans-serif;
|
||||
font-feature-settings:
|
||||
'rlig' 1,
|
||||
'calt' 1;
|
||||
}
|
||||
|
||||
/* CS2 Font for headlines only */
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family:
|
||||
'CS Regular',
|
||||
system-ui,
|
||||
-apple-system,
|
||||
BlinkMacSystemFont,
|
||||
'Segoe UI',
|
||||
Roboto,
|
||||
sans-serif;
|
||||
}
|
||||
}
|
||||
|
||||
@layer components {
|
||||
|
||||
@@ -4,38 +4,32 @@ import { APIException } from '$lib/types';
|
||||
|
||||
/**
|
||||
* API Client Configuration
|
||||
*
|
||||
* Uses SvelteKit server routes (/api/[...path]/+server.ts) to proxy requests to the backend.
|
||||
* This approach:
|
||||
* - Works in all environments (dev, preview, production)
|
||||
* - No CORS issues
|
||||
* - Single code path for consistency
|
||||
* - Can add caching, rate limiting, auth in the future
|
||||
*
|
||||
* Backend selection is controlled by VITE_API_BASE_URL environment variable:
|
||||
* - Local development: VITE_API_BASE_URL=http://localhost:8000
|
||||
* - Production: VITE_API_BASE_URL=https://api.csgow.tf
|
||||
*
|
||||
* Note: During SSR, we call the backend directly since relative URLs don't work server-side.
|
||||
*/
|
||||
const getAPIBaseURL = (): string => {
|
||||
const apiUrl = import.meta.env?.VITE_API_BASE_URL || 'https://api.csgow.tf';
|
||||
|
||||
// Check if we're running on the server (SSR) or in production
|
||||
// On the server, we must use the actual API URL, not the proxy
|
||||
if (import.meta.env.SSR || import.meta.env.PROD) {
|
||||
return apiUrl;
|
||||
function getAPIBaseURL(): string {
|
||||
// During SSR, call backend API directly (relative URLs don't work server-side)
|
||||
if (import.meta.env.SSR) {
|
||||
return import.meta.env.VITE_API_BASE_URL || 'https://api.csgow.tf';
|
||||
}
|
||||
|
||||
// In development mode on the client, use the Vite proxy to avoid CORS issues
|
||||
// The proxy will forward /api requests to VITE_API_BASE_URL
|
||||
// In browser, use SvelteKit route
|
||||
return '/api';
|
||||
};
|
||||
}
|
||||
|
||||
const API_BASE_URL = getAPIBaseURL();
|
||||
const API_TIMEOUT = Number(import.meta.env?.VITE_API_TIMEOUT) || 10000;
|
||||
|
||||
// Log the API configuration
|
||||
if (import.meta.env.DEV) {
|
||||
if (import.meta.env.SSR) {
|
||||
console.log('[API Client] SSR mode - using direct API URL:', API_BASE_URL);
|
||||
} else {
|
||||
console.log('[API Client] Browser mode - using Vite proxy');
|
||||
console.log('[API Client] Frontend requests: /api/*');
|
||||
console.log(
|
||||
'[API Client] Proxy target:',
|
||||
import.meta.env?.VITE_API_BASE_URL || 'https://api.csgow.tf'
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Base API Client
|
||||
* Provides centralized HTTP communication with error handling
|
||||
|
||||
@@ -93,23 +93,54 @@ export const matchesAPI = {
|
||||
|
||||
/**
|
||||
* Get paginated list of matches
|
||||
*
|
||||
* IMPORTANT: The API returns a plain array, not an object with properties.
|
||||
* We must manually implement pagination by:
|
||||
* 1. Requesting limit + 1 matches
|
||||
* 2. Checking if we got more than limit (means there are more pages)
|
||||
* 3. Extracting timestamp from last match for next page
|
||||
*
|
||||
* Pagination flow:
|
||||
* - First call: GET /matches?limit=20 → returns array of up to 20 matches
|
||||
* - Next call: GET /matches/next/{timestamp}?limit=20 → returns next 20 matches
|
||||
* - Continue until response.length < limit (reached the end)
|
||||
*
|
||||
* @param params - Query parameters (filters, pagination)
|
||||
* @returns List of matches with pagination
|
||||
* @param params.limit - Number of matches to return (default: 50)
|
||||
* @param params.before_time - Unix timestamp for pagination (get matches before this time)
|
||||
* @param params.map - Filter by map name (e.g., "de_inferno")
|
||||
* @param params.player_id - Filter by player Steam ID
|
||||
* @returns List of matches with pagination metadata
|
||||
*/
|
||||
async getMatches(params?: MatchesQueryParams): Promise<MatchesListResponse> {
|
||||
const url = params?.before_time ? `/matches/next/${params.before_time}` : '/matches';
|
||||
const limit = params?.limit || 50;
|
||||
|
||||
// API returns a plain array, not a wrapped object
|
||||
// CRITICAL: API returns a plain array, not a wrapped object
|
||||
// We request limit + 1 to detect if there are more pages
|
||||
const data = await apiClient.get<LegacyMatchListItem[]>(url, {
|
||||
params: {
|
||||
limit: params?.limit,
|
||||
limit: limit + 1, // Request one extra to check if there are more
|
||||
map: params?.map,
|
||||
player_id: params?.player_id
|
||||
}
|
||||
});
|
||||
|
||||
// Check if there are more matches (if we got the extra one)
|
||||
const hasMore = data.length > limit;
|
||||
|
||||
// Remove the extra match if we have more
|
||||
const matchesToReturn = hasMore ? data.slice(0, limit) : data;
|
||||
|
||||
// If there are more matches, use the timestamp of the last match for pagination
|
||||
// This timestamp is used in the next request: /matches/next/{timestamp}
|
||||
const lastMatch =
|
||||
matchesToReturn.length > 0 ? matchesToReturn[matchesToReturn.length - 1] : undefined;
|
||||
const nextPageTime =
|
||||
hasMore && lastMatch ? Math.floor(new Date(lastMatch.date).getTime() / 1000) : undefined;
|
||||
|
||||
// Transform legacy API response to new format
|
||||
return transformMatchesListResponse(data);
|
||||
return transformMatchesListResponse(matchesToReturn, hasMore, nextPageTime);
|
||||
},
|
||||
|
||||
/**
|
||||
@@ -118,19 +149,32 @@ export const matchesAPI = {
|
||||
* @returns List of matching matches
|
||||
*/
|
||||
async searchMatches(params?: MatchesQueryParams): Promise<MatchesListResponse> {
|
||||
const url = '/matches';
|
||||
const url = params?.before_time ? `/matches/next/${params.before_time}` : '/matches';
|
||||
const limit = params?.limit || 20;
|
||||
|
||||
// API returns a plain array, not a wrapped object
|
||||
const data = await apiClient.getCancelable<LegacyMatchListItem[]>(url, 'match-search', {
|
||||
params: {
|
||||
limit: params?.limit || 20,
|
||||
limit: limit + 1, // Request one extra to check if there are more
|
||||
map: params?.map,
|
||||
player_id: params?.player_id,
|
||||
before_time: params?.before_time
|
||||
player_id: params?.player_id
|
||||
}
|
||||
});
|
||||
|
||||
// Check if there are more matches (if we got the extra one)
|
||||
const hasMore = data.length > limit;
|
||||
|
||||
// Remove the extra match if we have more
|
||||
const matchesToReturn = hasMore ? data.slice(0, limit) : data;
|
||||
|
||||
// If there are more matches, use the timestamp of the last match for pagination
|
||||
const lastMatch =
|
||||
matchesToReturn.length > 0 ? matchesToReturn[matchesToReturn.length - 1] : undefined;
|
||||
const nextPageTime =
|
||||
hasMore && lastMatch ? Math.floor(new Date(lastMatch.date).getTime() / 1000) : undefined;
|
||||
|
||||
// Transform legacy API response to new format
|
||||
return transformMatchesListResponse(data);
|
||||
return transformMatchesListResponse(matchesToReturn, hasMore, nextPageTime);
|
||||
},
|
||||
|
||||
/**
|
||||
|
||||
@@ -36,6 +36,7 @@ export const playersAPI = {
|
||||
const transformedData = transformPlayerProfile(legacyData);
|
||||
|
||||
// Validate the player data
|
||||
// parsePlayer throws on validation failure, so player is always defined if we reach this point
|
||||
const player = parsePlayer(transformedData);
|
||||
|
||||
// Calculate aggregated stats from matches
|
||||
@@ -60,18 +61,19 @@ export const playersAPI = {
|
||||
const winRate = recentMatches.length > 0 ? wins / recentMatches.length : 0;
|
||||
|
||||
// Find the most recent match date
|
||||
const lastMatchDate = matches.length > 0 ? matches[0].date : new Date().toISOString();
|
||||
const lastMatchDate =
|
||||
matches.length > 0 && matches[0] ? matches[0].date : new Date().toISOString();
|
||||
|
||||
// Transform to PlayerMeta format
|
||||
const playerMeta: PlayerMeta = {
|
||||
id: parseInt(player.id),
|
||||
id: parseInt(player.id, 10),
|
||||
name: player.name,
|
||||
avatar: player.avatar, // Already transformed by transformPlayerProfile
|
||||
recent_matches: recentMatches.length,
|
||||
last_match_date: lastMatchDate,
|
||||
avg_kills: avgKills,
|
||||
avg_deaths: avgDeaths,
|
||||
avg_kast: totalKast / recentMatches.length || 0, // Placeholder KAST calculation
|
||||
avg_kast: recentMatches.length > 0 ? totalKast / recentMatches.length : 0, // Placeholder KAST calculation
|
||||
win_rate: winRate
|
||||
};
|
||||
|
||||
|
||||
@@ -1,28 +1,46 @@
|
||||
/**
|
||||
* API Response Transformers
|
||||
* Converts legacy CSGO:WTF API responses to the new CS2.WTF format
|
||||
*
|
||||
* IMPORTANT: The backend API returns data in a legacy format that differs from our TypeScript schemas.
|
||||
* These transformers bridge that gap by:
|
||||
* 1. Converting Unix timestamps to ISO 8601 strings
|
||||
* 2. Splitting score arrays [team_a, team_b] into separate fields
|
||||
* 3. Renaming fields (parsed → demo_parsed, vac → vac_present, etc.)
|
||||
* 4. Constructing full avatar URLs from hashes
|
||||
* 5. Normalizing team IDs (1/2 → 2/3)
|
||||
*
|
||||
* Always use these transformers before passing API data to Zod schemas or TypeScript types.
|
||||
*/
|
||||
|
||||
import type { MatchListItem, MatchesListResponse, Match, MatchPlayer } from '$lib/types';
|
||||
|
||||
/**
|
||||
* Legacy API match format (from api.csgow.tf)
|
||||
* Legacy API match list item format (from api.csgow.tf)
|
||||
*
|
||||
* VERIFIED: This interface matches the actual API response from GET /matches
|
||||
* Tested: 2025-11-12 via curl https://api.csgow.tf/matches?limit=2
|
||||
*/
|
||||
export interface LegacyMatchListItem {
|
||||
match_id: string;
|
||||
map: string;
|
||||
date: number; // Unix timestamp
|
||||
score: [number, number]; // [team_a, team_b]
|
||||
duration: number;
|
||||
match_result: number;
|
||||
max_rounds: number;
|
||||
parsed: boolean;
|
||||
vac: boolean;
|
||||
game_ban: boolean;
|
||||
match_id: string; // uint64 as string
|
||||
map: string; // Can be empty string if not parsed
|
||||
date: number; // Unix timestamp (seconds since epoch)
|
||||
score: [number, number]; // [team_a_score, team_b_score]
|
||||
duration: number; // Match duration in seconds
|
||||
match_result: number; // 0 = tie, 1 = team_a win, 2 = team_b win
|
||||
max_rounds: number; // 24 for MR12, 30 for MR15
|
||||
parsed: boolean; // Whether demo has been parsed (NOT demo_parsed)
|
||||
vac: boolean; // Whether any player has VAC ban (NOT vac_present)
|
||||
game_ban: boolean; // Whether any player has game ban (NOT gameban_present)
|
||||
}
|
||||
|
||||
/**
|
||||
* Legacy API match detail format
|
||||
* Legacy API match detail format (from GET /match/:id)
|
||||
*
|
||||
* VERIFIED: This interface matches the actual API response
|
||||
* Tested: 2025-11-12 via curl https://api.csgow.tf/match/3589487716842078322
|
||||
*
|
||||
* Note: Uses 'stats' array, not 'players' array
|
||||
*/
|
||||
export interface LegacyMatchDetail {
|
||||
match_id: string;
|
||||
@@ -33,14 +51,21 @@ export interface LegacyMatchDetail {
|
||||
duration: number;
|
||||
match_result: number;
|
||||
max_rounds: number;
|
||||
parsed: boolean;
|
||||
vac: boolean;
|
||||
game_ban: boolean;
|
||||
stats?: LegacyPlayerStats[];
|
||||
parsed: boolean; // NOT demo_parsed
|
||||
vac: boolean; // NOT vac_present
|
||||
game_ban: boolean; // NOT gameban_present
|
||||
stats?: LegacyPlayerStats[]; // Player stats array
|
||||
}
|
||||
|
||||
/**
|
||||
* Legacy player stats format
|
||||
* Legacy player stats format (nested within match detail)
|
||||
*
|
||||
* VERIFIED: Matches actual API response structure
|
||||
* - Player info nested under 'player' object
|
||||
* - Rank as object with 'old' and 'new' properties
|
||||
* - Multi-kills as object with 'duo', 'triple', 'quad', 'ace'
|
||||
* - Damage as object with 'enemy' and 'team'
|
||||
* - Flash stats with nested 'duration' and 'total' objects
|
||||
*/
|
||||
export interface LegacyPlayerStats {
|
||||
team_id: number;
|
||||
@@ -82,6 +107,16 @@ export interface LegacyPlayerStats {
|
||||
|
||||
/**
|
||||
* Transform legacy match list item to new format
|
||||
*
|
||||
* Converts a single match from the API's legacy format to our schema format.
|
||||
*
|
||||
* Key transformations:
|
||||
* - date: Unix timestamp → ISO 8601 string
|
||||
* - score: [a, b] array → score_team_a, score_team_b fields
|
||||
* - parsed → demo_parsed (rename)
|
||||
*
|
||||
* @param legacy - Match data from API in legacy format
|
||||
* @returns Match data in schema-compatible format
|
||||
*/
|
||||
export function transformMatchListItem(legacy: LegacyMatchListItem): MatchListItem {
|
||||
return {
|
||||
@@ -91,21 +126,36 @@ export function transformMatchListItem(legacy: LegacyMatchListItem): MatchListIt
|
||||
score_team_a: legacy.score[0],
|
||||
score_team_b: legacy.score[1],
|
||||
duration: legacy.duration,
|
||||
demo_parsed: legacy.parsed,
|
||||
player_count: 10 // Default to 10 players (5v5)
|
||||
demo_parsed: legacy.parsed // Rename: parsed → demo_parsed
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* Transform legacy matches list response to new format
|
||||
*
|
||||
* IMPORTANT: The API returns a plain array, NOT an object with properties.
|
||||
* This function wraps the array and adds pagination metadata that we calculate ourselves.
|
||||
*
|
||||
* How pagination works:
|
||||
* 1. API returns plain array: [match1, match2, ...]
|
||||
* 2. We request limit + 1 to check if there are more matches
|
||||
* 3. If we get > limit matches, hasMore = true
|
||||
* 4. We extract timestamp from last match for next page: matches[length-1].date
|
||||
*
|
||||
* @param legacyMatches - Array of matches from API (already requested limit + 1)
|
||||
* @param hasMore - Whether there are more matches available (calculated by caller)
|
||||
* @param nextPageTime - Unix timestamp for next page (extracted from last match by caller)
|
||||
* @returns Wrapped response with pagination metadata
|
||||
*/
|
||||
export function transformMatchesListResponse(
|
||||
legacyMatches: LegacyMatchListItem[]
|
||||
legacyMatches: LegacyMatchListItem[],
|
||||
hasMore: boolean = false,
|
||||
nextPageTime?: number
|
||||
): MatchesListResponse {
|
||||
return {
|
||||
matches: legacyMatches.map(transformMatchListItem),
|
||||
has_more: false, // Legacy API doesn't provide pagination info
|
||||
next_page_time: undefined
|
||||
has_more: hasMore,
|
||||
next_page_time: nextPageTime
|
||||
};
|
||||
}
|
||||
|
||||
@@ -113,6 +163,13 @@ export function transformMatchesListResponse(
|
||||
* Transform legacy player stats to new format
|
||||
*/
|
||||
export function transformPlayerStats(legacy: LegacyPlayerStats): MatchPlayer {
|
||||
// Extract Premier rating from rank object
|
||||
// API provides rank as { old: number, new: number }
|
||||
const rankOld =
|
||||
legacy.rank && typeof legacy.rank.old === 'number' ? (legacy.rank.old as number) : undefined;
|
||||
const rankNew =
|
||||
legacy.rank && typeof legacy.rank.new === 'number' ? (legacy.rank.new as number) : undefined;
|
||||
|
||||
return {
|
||||
id: legacy.player.steamid64,
|
||||
name: legacy.player.name,
|
||||
@@ -124,7 +181,9 @@ export function transformPlayerStats(legacy: LegacyPlayerStats): MatchPlayer {
|
||||
headshot: legacy.headshot,
|
||||
mvp: legacy.mvp,
|
||||
score: legacy.score,
|
||||
kast: 0, // Not provided by legacy API
|
||||
// Premier rating (CS2: 0-30000)
|
||||
rank_old: rankOld,
|
||||
rank_new: rankNew,
|
||||
// Multi-kills: map legacy names to new format
|
||||
mk_2: legacy.multi_kills?.duo,
|
||||
mk_3: legacy.multi_kills?.triple,
|
||||
@@ -157,7 +216,6 @@ export function transformMatchDetail(legacy: LegacyMatchDetail): Match {
|
||||
demo_parsed: legacy.parsed,
|
||||
vac_present: legacy.vac,
|
||||
gameban_present: legacy.game_ban,
|
||||
tick_rate: 64, // Default to 64, not provided by API
|
||||
players: legacy.stats?.map(transformPlayerStats)
|
||||
};
|
||||
}
|
||||
@@ -216,46 +274,59 @@ export function transformPlayerProfile(legacy: LegacyPlayerProfile) {
|
||||
id: legacy.steamid64,
|
||||
name: legacy.name,
|
||||
avatar: `https://avatars.steamstatic.com/${legacy.avatar}_full.jpg`,
|
||||
steam_updated: new Date().toISOString(), // Not provided by API
|
||||
vac_count: legacy.vac ? 1 : 0,
|
||||
vac_date: hasVacDate ? new Date(legacy.vac_date * 1000).toISOString() : null,
|
||||
game_ban_count: legacy.game_ban ? 1 : 0,
|
||||
game_ban_date: hasGameBanDate ? new Date(legacy.game_ban_date * 1000).toISOString() : null,
|
||||
tracked: legacy.tracked,
|
||||
wins: legacy.match_stats?.win,
|
||||
losses: legacy.match_stats?.loss,
|
||||
matches: legacy.matches?.map((match) => ({
|
||||
match_id: match.match_id,
|
||||
map: match.map || 'unknown',
|
||||
date: new Date(match.date * 1000).toISOString(),
|
||||
score_team_a: match.score[0],
|
||||
score_team_b: match.score[1],
|
||||
duration: match.duration,
|
||||
match_result: match.match_result,
|
||||
max_rounds: match.max_rounds,
|
||||
demo_parsed: match.parsed,
|
||||
vac_present: match.vac,
|
||||
gameban_present: match.game_ban,
|
||||
tick_rate: 64, // Not provided by API
|
||||
stats: {
|
||||
id: legacy.steamid64,
|
||||
name: legacy.name,
|
||||
avatar: `https://avatars.steamstatic.com/${legacy.avatar}_full.jpg`,
|
||||
// Fix team_id: API returns 1/2, but schema expects min 2
|
||||
// Map: 1 -> 2 (Terrorists), 2 -> 3 (Counter-Terrorists)
|
||||
team_id:
|
||||
match.stats.team_id === 1 ? 2 : match.stats.team_id === 2 ? 3 : match.stats.team_id,
|
||||
kills: match.stats.kills,
|
||||
deaths: match.stats.deaths,
|
||||
assists: match.stats.assists,
|
||||
headshot: match.stats.headshot,
|
||||
mvp: match.stats.mvp,
|
||||
score: match.stats.score,
|
||||
kast: 0,
|
||||
mk_2: match.stats.multi_kills?.duo,
|
||||
mk_3: match.stats.multi_kills?.triple,
|
||||
mk_4: match.stats.multi_kills?.quad,
|
||||
mk_5: match.stats.multi_kills?.ace
|
||||
}
|
||||
}))
|
||||
matches: legacy.matches?.map((match) => {
|
||||
// Extract Premier rating from rank object
|
||||
const rankOld =
|
||||
match.stats.rank && typeof match.stats.rank.old === 'number'
|
||||
? (match.stats.rank.old as number)
|
||||
: undefined;
|
||||
const rankNew =
|
||||
match.stats.rank && typeof match.stats.rank.new === 'number'
|
||||
? (match.stats.rank.new as number)
|
||||
: undefined;
|
||||
|
||||
return {
|
||||
match_id: match.match_id,
|
||||
map: match.map || 'unknown',
|
||||
date: new Date(match.date * 1000).toISOString(),
|
||||
score_team_a: match.score[0],
|
||||
score_team_b: match.score[1],
|
||||
duration: match.duration,
|
||||
match_result: match.match_result,
|
||||
max_rounds: match.max_rounds,
|
||||
demo_parsed: match.parsed,
|
||||
vac_present: match.vac,
|
||||
gameban_present: match.game_ban,
|
||||
stats: {
|
||||
id: legacy.steamid64,
|
||||
name: legacy.name,
|
||||
avatar: `https://avatars.steamstatic.com/${legacy.avatar}_full.jpg`,
|
||||
// Fix team_id: API returns 1/2, but schema expects min 2
|
||||
// Map: 1 -> 2 (Terrorists), 2 -> 3 (Counter-Terrorists)
|
||||
team_id:
|
||||
match.stats.team_id === 1 ? 2 : match.stats.team_id === 2 ? 3 : match.stats.team_id,
|
||||
kills: match.stats.kills,
|
||||
deaths: match.stats.deaths,
|
||||
assists: match.stats.assists,
|
||||
headshot: match.stats.headshot,
|
||||
mvp: match.stats.mvp,
|
||||
score: match.stats.score,
|
||||
// Premier rating (CS2: 0-30000)
|
||||
rank_old: rankOld,
|
||||
rank_new: rankNew,
|
||||
mk_2: match.stats.multi_kills?.duo,
|
||||
mk_3: match.stats.multi_kills?.triple,
|
||||
mk_4: match.stats.multi_kills?.quad,
|
||||
mk_5: match.stats.multi_kills?.ace
|
||||
}
|
||||
};
|
||||
})
|
||||
};
|
||||
}
|
||||
|
||||
268
src/lib/components/RoundTimeline.svelte
Normal file
@@ -0,0 +1,268 @@
|
||||
<script lang="ts">
|
||||
import { Bomb, Shield, Clock, Target, Skull } from 'lucide-svelte';
|
||||
import Badge from '$lib/components/ui/Badge.svelte';
|
||||
import Card from '$lib/components/ui/Card.svelte';
|
||||
import type { RoundDetail } from '$lib/types/RoundStats';
|
||||
|
||||
let { rounds }: { rounds: RoundDetail[] } = $props();
|
||||
|
||||
// State for hover/click details
|
||||
let selectedRound = $state<number | null>(null);
|
||||
|
||||
// Helper to get win reason icon
|
||||
const getWinReasonIcon = (reason: string) => {
|
||||
const reasonLower = reason.toLowerCase();
|
||||
if (reasonLower.includes('bomb') && reasonLower.includes('exploded')) return Bomb;
|
||||
if (reasonLower.includes('defused')) return Shield;
|
||||
if (reasonLower.includes('elimination')) return Skull;
|
||||
if (reasonLower.includes('time')) return Clock;
|
||||
if (reasonLower.includes('target')) return Target;
|
||||
return null;
|
||||
};
|
||||
|
||||
// Helper to get win reason display text
|
||||
const getWinReasonText = (reason: string) => {
|
||||
const reasonLower = reason.toLowerCase();
|
||||
if (reasonLower.includes('bomb') && reasonLower.includes('exploded')) return 'Bomb Exploded';
|
||||
if (reasonLower.includes('defused')) return 'Bomb Defused';
|
||||
if (reasonLower.includes('elimination')) return 'Elimination';
|
||||
if (reasonLower.includes('time')) return 'Time Expired';
|
||||
if (reasonLower.includes('target')) return 'Target Saved';
|
||||
return reason;
|
||||
};
|
||||
|
||||
// Helper to format win reason for badge
|
||||
const formatWinReason = (reason: string): string => {
|
||||
const reasonLower = reason.toLowerCase();
|
||||
if (reasonLower.includes('bomb') && reasonLower.includes('exploded')) return 'BOOM';
|
||||
if (reasonLower.includes('defused')) return 'DEF';
|
||||
if (reasonLower.includes('elimination')) return 'ELIM';
|
||||
if (reasonLower.includes('time')) return 'TIME';
|
||||
if (reasonLower.includes('target')) return 'SAVE';
|
||||
return 'WIN';
|
||||
};
|
||||
|
||||
// Toggle round selection
|
||||
const toggleRound = (roundNum: number) => {
|
||||
selectedRound = selectedRound === roundNum ? null : roundNum;
|
||||
};
|
||||
|
||||
// Calculate team scores up to a given round
|
||||
const getScoreAtRound = (roundNumber: number): { teamA: number; teamB: number } => {
|
||||
let teamA = 0;
|
||||
let teamB = 0;
|
||||
for (let i = 0; i < roundNumber && i < rounds.length; i++) {
|
||||
const round = rounds[i];
|
||||
if (round && round.winner === 2) teamA++;
|
||||
else if (round && round.winner === 3) teamB++;
|
||||
}
|
||||
return { teamA, teamB };
|
||||
};
|
||||
|
||||
// Get selected round details
|
||||
const selectedRoundData = $derived(
|
||||
selectedRound ? rounds.find((r) => r.round === selectedRound) : null
|
||||
);
|
||||
</script>
|
||||
|
||||
<Card padding="lg">
|
||||
<div class="mb-6">
|
||||
<h2 class="text-2xl font-bold text-base-content">Round Timeline</h2>
|
||||
<p class="mt-2 text-sm text-base-content/60">
|
||||
Click on a round to see detailed information. T = Terrorists, CT = Counter-Terrorists
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- Timeline -->
|
||||
<div class="relative">
|
||||
<!-- Horizontal scroll container for mobile -->
|
||||
<div class="overflow-x-auto pb-4">
|
||||
<div class="min-w-max">
|
||||
<!-- Round markers -->
|
||||
<div class="flex gap-1">
|
||||
{#each rounds as round (round.round)}
|
||||
{@const isWinner2 = round.winner === 2}
|
||||
{@const isWinner3 = round.winner === 3}
|
||||
{@const isSelected = selectedRound === round.round}
|
||||
{@const Icon = getWinReasonIcon(round.win_reason)}
|
||||
{@const scoreAtRound = getScoreAtRound(round.round)}
|
||||
|
||||
<button
|
||||
class="group relative flex flex-col items-center transition-all hover:scale-110"
|
||||
style="width: 60px;"
|
||||
onclick={() => toggleRound(round.round)}
|
||||
aria-label={`Round ${round.round}`}
|
||||
>
|
||||
<!-- Round number -->
|
||||
<div
|
||||
class="mb-2 text-xs font-semibold transition-colors"
|
||||
class:text-primary={isSelected}
|
||||
class:opacity-60={!isSelected}
|
||||
>
|
||||
{round.round}
|
||||
</div>
|
||||
|
||||
<!-- Round indicator circle -->
|
||||
<div
|
||||
class="relative flex h-12 w-12 items-center justify-center rounded-full border-2 transition-all"
|
||||
class:border-terrorist={isWinner2}
|
||||
class:bg-terrorist={isWinner2}
|
||||
class:bg-opacity-20={isWinner2 || isWinner3}
|
||||
class:border-ct={isWinner3}
|
||||
class:bg-ct={isWinner3}
|
||||
class:ring-4={isSelected}
|
||||
class:ring-primary={isSelected}
|
||||
class:ring-opacity-30={isSelected}
|
||||
class:scale-110={isSelected}
|
||||
>
|
||||
<!-- Win reason icon or T/CT badge -->
|
||||
{#if Icon}
|
||||
<Icon class={`h-5 w-5 ${isWinner2 ? 'text-terrorist' : 'text-ct'}`} />
|
||||
{:else}
|
||||
<span
|
||||
class="text-sm font-bold"
|
||||
class:text-terrorist={isWinner2}
|
||||
class:text-ct={isWinner3}
|
||||
>
|
||||
{isWinner2 ? 'T' : 'CT'}
|
||||
</span>
|
||||
{/if}
|
||||
|
||||
<!-- Small win reason badge on bottom -->
|
||||
<div
|
||||
class="absolute -bottom-1 rounded px-1 py-0.5 text-[9px] font-bold leading-none"
|
||||
class:bg-terrorist={isWinner2}
|
||||
class:bg-ct={isWinner3}
|
||||
class:text-white={true}
|
||||
>
|
||||
{formatWinReason(round.win_reason)}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Connecting line to next round -->
|
||||
{#if round.round < rounds.length}
|
||||
<div
|
||||
class="absolute left-[60px] top-[34px] h-0.5 w-[calc(100%-60px)] bg-base-300"
|
||||
></div>
|
||||
{/if}
|
||||
|
||||
<!-- Hover tooltip -->
|
||||
<div
|
||||
class="pointer-events-none absolute top-full z-10 mt-2 hidden w-48 rounded-lg bg-base-100 p-3 text-left shadow-xl ring-1 ring-base-300 group-hover:block"
|
||||
>
|
||||
<div class="text-xs font-semibold text-base-content">
|
||||
Round {round.round}
|
||||
</div>
|
||||
<div class="mt-1 text-xs text-base-content/80">
|
||||
Winner:
|
||||
<span
|
||||
class="font-bold"
|
||||
class:text-terrorist={isWinner2}
|
||||
class:text-ct={isWinner3}
|
||||
>
|
||||
{isWinner2 ? 'Terrorists' : 'Counter-Terrorists'}
|
||||
</span>
|
||||
</div>
|
||||
<div class="mt-1 text-xs text-base-content/60">
|
||||
{getWinReasonText(round.win_reason)}
|
||||
</div>
|
||||
<div class="mt-2 text-xs text-base-content/60">
|
||||
Score: {scoreAtRound.teamA} - {scoreAtRound.teamB}
|
||||
</div>
|
||||
</div>
|
||||
</button>
|
||||
{/each}
|
||||
</div>
|
||||
|
||||
<!-- Half marker (round 13 for MR12) -->
|
||||
{#if rounds.length > 12}
|
||||
<div class="relative mt-2 flex gap-1">
|
||||
<div class="ml-[calc(60px*12-30px)] w-[60px] text-center">
|
||||
<Badge variant="info" size="sm">Halftime</Badge>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Selected Round Details -->
|
||||
{#if selectedRoundData}
|
||||
<div class="mt-6 border-t border-base-300 pt-6">
|
||||
<div class="mb-4 flex items-center justify-between">
|
||||
<h3 class="text-xl font-bold text-base-content">
|
||||
Round {selectedRoundData.round} Details
|
||||
</h3>
|
||||
<button
|
||||
class="btn btn-ghost btn-sm"
|
||||
onclick={() => (selectedRound = null)}
|
||||
aria-label="Close details"
|
||||
>
|
||||
Close
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div class="grid gap-4 md:grid-cols-2">
|
||||
<div>
|
||||
<div class="text-sm text-base-content/60">Winner</div>
|
||||
<div
|
||||
class="text-lg font-bold"
|
||||
class:text-terrorist={selectedRoundData.winner === 2}
|
||||
class:text-ct={selectedRoundData.winner === 3}
|
||||
>
|
||||
{selectedRoundData.winner === 2 ? 'Terrorists' : 'Counter-Terrorists'}
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="text-sm text-base-content/60">Win Reason</div>
|
||||
<div class="text-lg font-semibold text-base-content">
|
||||
{getWinReasonText(selectedRoundData.win_reason)}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Player stats for the round if available -->
|
||||
{#if selectedRoundData.players && selectedRoundData.players.length > 0}
|
||||
<div class="mt-4">
|
||||
<h4 class="mb-2 text-sm font-semibold text-base-content">Round Economy</h4>
|
||||
<div class="overflow-x-auto">
|
||||
<table class="table table-sm">
|
||||
<thead>
|
||||
<tr class="border-base-300">
|
||||
<th>Player</th>
|
||||
<th>Bank</th>
|
||||
<th>Equipment</th>
|
||||
<th>Spent</th>
|
||||
{#if selectedRoundData.players.some((p) => p.kills_in_round !== undefined)}
|
||||
<th>Kills</th>
|
||||
{/if}
|
||||
{#if selectedRoundData.players.some((p) => p.damage_in_round !== undefined)}
|
||||
<th>Damage</th>
|
||||
{/if}
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{#each selectedRoundData.players as player}
|
||||
<tr class="border-base-300">
|
||||
<td class="font-medium"
|
||||
>Player {player.player_id || player.match_player_id || '?'}</td
|
||||
>
|
||||
<td class="font-mono text-success">${player.bank.toLocaleString()}</td>
|
||||
<td class="font-mono">${player.equipment.toLocaleString()}</td>
|
||||
<td class="font-mono text-error">${player.spent.toLocaleString()}</td>
|
||||
{#if selectedRoundData.players.some((p) => p.kills_in_round !== undefined)}
|
||||
<td class="font-mono">{player.kills_in_round || 0}</td>
|
||||
{/if}
|
||||
{#if selectedRoundData.players.some((p) => p.damage_in_round !== undefined)}
|
||||
<td class="font-mono">{player.damage_in_round || 0}</td>
|
||||
{/if}
|
||||
</tr>
|
||||
{/each}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
{/if}
|
||||
</Card>
|
||||
@@ -44,12 +44,7 @@
|
||||
class?: string;
|
||||
}
|
||||
|
||||
let {
|
||||
data,
|
||||
options = {},
|
||||
height = 300,
|
||||
class: className = ''
|
||||
}: Props = $props();
|
||||
let { data, options = {}, height = 300, class: className = '' }: Props = $props();
|
||||
|
||||
let canvas: HTMLCanvasElement;
|
||||
let chart: Chart<'line'> | null = null;
|
||||
|
||||
@@ -17,11 +17,10 @@
|
||||
<div class="container mx-auto px-4">
|
||||
<div class="flex h-16 items-center justify-between">
|
||||
<!-- Logo -->
|
||||
<a
|
||||
href="/"
|
||||
class="flex items-center gap-2 text-2xl font-bold transition-transform hover:scale-105"
|
||||
>
|
||||
<span class="text-primary">CS2</span><span class="text-secondary">.WTF</span>
|
||||
<a href="/" class="transition-transform hover:scale-105" aria-label="CS2.WTF Home">
|
||||
<h1 class="text-2xl font-bold">
|
||||
<span class="text-primary">CS2</span><span class="text-secondary">.WTF</span>
|
||||
</h1>
|
||||
</a>
|
||||
|
||||
<!-- Desktop Navigation -->
|
||||
|
||||
@@ -92,7 +92,7 @@
|
||||
<div class="flex flex-wrap gap-2">
|
||||
{#each $search.recentSearches as recent}
|
||||
<button
|
||||
class="badge badge-lg badge-outline gap-2 hover:badge-primary"
|
||||
class="badge badge-outline badge-lg gap-2 hover:badge-primary"
|
||||
onclick={() => handleRecentClick(recent)}
|
||||
>
|
||||
<Search class="h-3 w-3" />
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script lang="ts">
|
||||
import { Sun, Moon, Monitor } from 'lucide-svelte';
|
||||
import { Moon, Sun, Monitor } from 'lucide-svelte';
|
||||
import { preferences } from '$lib/stores';
|
||||
import { browser } from '$app/environment';
|
||||
import { onMount } from 'svelte';
|
||||
@@ -10,9 +10,8 @@
|
||||
{ value: 'auto', label: 'Auto', icon: Monitor }
|
||||
] as const;
|
||||
|
||||
const currentIcon = $derived(
|
||||
themes.find((t) => t.value === $preferences.theme)?.icon || Monitor
|
||||
);
|
||||
// Get current theme data
|
||||
const currentTheme = $derived(themes.find((t) => t.value === $preferences.theme) || themes[2]);
|
||||
|
||||
const applyTheme = (theme: 'cs2light' | 'cs2dark' | 'auto') => {
|
||||
if (!browser) return;
|
||||
@@ -50,19 +49,19 @@
|
||||
|
||||
<!-- Theme Toggle Dropdown -->
|
||||
<div class="dropdown dropdown-end">
|
||||
<button tabindex="0" class="btn btn-ghost btn-circle" aria-label="Theme">
|
||||
<svelte:component this={currentIcon} class="h-5 w-5" />
|
||||
<button tabindex="0" class="btn btn-circle btn-ghost" aria-label="Theme">
|
||||
<currentTheme.icon class="h-5 w-5" />
|
||||
</button>
|
||||
<ul class="menu dropdown-content z-[1] mt-3 w-52 rounded-box bg-base-100 p-2 shadow-lg">
|
||||
{#each themes as { value, label, icon }}
|
||||
{#each themes as theme}
|
||||
<li>
|
||||
<button
|
||||
class:active={$preferences.theme === value}
|
||||
onclick={() => handleThemeChange(value)}
|
||||
class:active={$preferences.theme === theme.value}
|
||||
onclick={() => handleThemeChange(theme.value)}
|
||||
>
|
||||
<svelte:component this={icon} class="h-4 w-4" />
|
||||
{label}
|
||||
{#if value === 'auto'}
|
||||
<theme.icon class="h-4 w-4" />
|
||||
{theme.label}
|
||||
{#if theme.value === 'auto'}
|
||||
<span class="text-xs text-base-content/60">(System)</span>
|
||||
{/if}
|
||||
</button>
|
||||
|
||||
@@ -1,12 +1,15 @@
|
||||
<script lang="ts">
|
||||
import Badge from '$lib/components/ui/Badge.svelte';
|
||||
import type { MatchListItem } from '$lib/types';
|
||||
import { storeMatchesState } from '$lib/utils/navigation';
|
||||
import { getMapBackground, formatMapName } from '$lib/utils/mapAssets';
|
||||
|
||||
interface Props {
|
||||
match: MatchListItem;
|
||||
loadedCount?: number;
|
||||
}
|
||||
|
||||
let { match }: Props = $props();
|
||||
let { match, loadedCount = 0 }: Props = $props();
|
||||
|
||||
const formattedDate = new Date(match.date).toLocaleString('en-US', {
|
||||
month: 'short',
|
||||
@@ -15,26 +18,53 @@
|
||||
minute: '2-digit'
|
||||
});
|
||||
|
||||
const mapName = match.map.replace('de_', '').toUpperCase();
|
||||
const mapName = formatMapName(match.map);
|
||||
const mapBg = getMapBackground(match.map);
|
||||
|
||||
function handleClick() {
|
||||
// Store navigation state before navigating
|
||||
storeMatchesState(match.match_id, loadedCount);
|
||||
}
|
||||
|
||||
function handleImageError(event: Event) {
|
||||
const img = event.target as HTMLImageElement;
|
||||
img.src = '/images/map_screenshots/default.webp';
|
||||
}
|
||||
</script>
|
||||
|
||||
<a href={`/match/${match.match_id}`} class="block transition-transform hover:scale-[1.02]">
|
||||
<a
|
||||
href={`/match/${match.match_id}`}
|
||||
class="block transition-transform hover:scale-[1.02]"
|
||||
data-match-id={match.match_id}
|
||||
onclick={handleClick}
|
||||
>
|
||||
<div
|
||||
class="overflow-hidden rounded-lg border border-base-300 bg-base-100 shadow-md transition-shadow hover:shadow-xl"
|
||||
>
|
||||
<!-- Map Header -->
|
||||
<div class="relative h-32 bg-gradient-to-br from-base-300 to-base-200">
|
||||
<div class="absolute inset-0 flex items-center justify-center">
|
||||
<span class="text-5xl font-bold text-base-content/10">{mapName}</span>
|
||||
</div>
|
||||
<div class="absolute bottom-3 left-3">
|
||||
<Badge variant="default">{match.map}</Badge>
|
||||
</div>
|
||||
{#if match.demo_parsed}
|
||||
<div class="absolute right-3 top-3">
|
||||
<Badge variant="success" size="sm">Parsed</Badge>
|
||||
<!-- Map Header with Background Image -->
|
||||
<div class="relative h-32 overflow-hidden">
|
||||
<!-- Background Image -->
|
||||
<img
|
||||
src={mapBg}
|
||||
alt={mapName}
|
||||
class="absolute inset-0 h-full w-full object-cover"
|
||||
loading="lazy"
|
||||
onerror={handleImageError}
|
||||
/>
|
||||
<!-- Overlay for better text contrast -->
|
||||
<div class="absolute inset-0 bg-gradient-to-t from-black/80 via-black/40 to-black/20"></div>
|
||||
<!-- Content -->
|
||||
<div class="relative flex h-full items-end justify-between p-3">
|
||||
<div class="flex flex-col gap-1">
|
||||
{#if match.map}
|
||||
<Badge variant="default">{match.map}</Badge>
|
||||
{/if}
|
||||
<span class="text-lg font-bold text-white drop-shadow-lg">{mapName}</span>
|
||||
</div>
|
||||
{/if}
|
||||
{#if match.demo_parsed}
|
||||
<Badge variant="success" size="sm">Parsed</Badge>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Match Info -->
|
||||
|
||||
155
src/lib/components/match/ShareCodeInput.svelte
Normal file
@@ -0,0 +1,155 @@
|
||||
<script lang="ts">
|
||||
import { Upload, Check, AlertCircle, Loader2 } from 'lucide-svelte';
|
||||
import { matchesAPI } from '$lib/api/matches';
|
||||
import { showToast } from '$lib/stores/toast';
|
||||
import { goto } from '$app/navigation';
|
||||
|
||||
let shareCode = $state('');
|
||||
let isLoading = $state(false);
|
||||
let parseStatus: 'idle' | 'parsing' | 'success' | 'error' = $state('idle');
|
||||
let statusMessage = $state('');
|
||||
let parsedMatchId = $state('');
|
||||
|
||||
// Validate share code format
|
||||
function isValidShareCode(code: string): boolean {
|
||||
// Format: CSGO-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX
|
||||
const pattern = /^CSGO-[A-Z0-9]{5}-[A-Z0-9]{5}-[A-Z0-9]{5}-[A-Z0-9]{5}-[A-Z0-9]{5}$/;
|
||||
return pattern.test(code.toUpperCase());
|
||||
}
|
||||
|
||||
async function handleSubmit() {
|
||||
const trimmedCode = shareCode.trim().toUpperCase();
|
||||
|
||||
if (!trimmedCode) {
|
||||
showToast('Please enter a share code', 'error');
|
||||
return;
|
||||
}
|
||||
|
||||
if (!isValidShareCode(trimmedCode)) {
|
||||
showToast('Invalid share code format', 'error');
|
||||
parseStatus = 'error';
|
||||
statusMessage = 'Share code must be in format: CSGO-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX';
|
||||
return;
|
||||
}
|
||||
|
||||
isLoading = true;
|
||||
parseStatus = 'parsing';
|
||||
statusMessage = 'Submitting share code for parsing...';
|
||||
|
||||
try {
|
||||
const response = await matchesAPI.parseMatch(trimmedCode);
|
||||
|
||||
if (response.match_id) {
|
||||
parsedMatchId = response.match_id;
|
||||
parseStatus = 'success';
|
||||
statusMessage =
|
||||
response.message ||
|
||||
'Match submitted successfully! Parsing may take a few minutes. You can view the match once parsing is complete.';
|
||||
showToast('Match submitted for parsing!', 'success');
|
||||
|
||||
// Wait a moment then redirect to the match page
|
||||
setTimeout(() => {
|
||||
goto(`/match/${response.match_id}`);
|
||||
}, 2000);
|
||||
} else {
|
||||
parseStatus = 'error';
|
||||
statusMessage = response.message || 'Failed to parse share code';
|
||||
showToast(statusMessage, 'error');
|
||||
}
|
||||
} catch (error: unknown) {
|
||||
parseStatus = 'error';
|
||||
statusMessage = error instanceof Error ? error.message : 'Failed to parse share code';
|
||||
showToast(statusMessage, 'error');
|
||||
} finally {
|
||||
isLoading = false;
|
||||
}
|
||||
}
|
||||
|
||||
function resetForm() {
|
||||
shareCode = '';
|
||||
parseStatus = 'idle';
|
||||
statusMessage = '';
|
||||
parsedMatchId = '';
|
||||
}
|
||||
</script>
|
||||
|
||||
<div class="space-y-4">
|
||||
<!-- Input Section -->
|
||||
<div class="form-control">
|
||||
<label class="label" for="shareCode">
|
||||
<span class="label-text font-medium">Submit Match Share Code</span>
|
||||
</label>
|
||||
<div class="flex gap-2">
|
||||
<input
|
||||
id="shareCode"
|
||||
type="text"
|
||||
placeholder="CSGO-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX"
|
||||
class="input input-bordered flex-1"
|
||||
bind:value={shareCode}
|
||||
disabled={isLoading}
|
||||
onkeydown={(e) => e.key === 'Enter' && handleSubmit()}
|
||||
/>
|
||||
<button
|
||||
class="btn btn-primary"
|
||||
onclick={handleSubmit}
|
||||
disabled={isLoading || !shareCode.trim()}
|
||||
>
|
||||
{#if isLoading}
|
||||
<Loader2 class="h-5 w-5 animate-spin" />
|
||||
{:else}
|
||||
<Upload class="h-5 w-5" />
|
||||
{/if}
|
||||
Parse
|
||||
</button>
|
||||
</div>
|
||||
<div class="label">
|
||||
<span class="label-text-alt text-base-content/60">
|
||||
Submit a CS2 match share code to add it to the database
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Status Messages -->
|
||||
{#if parseStatus !== 'idle'}
|
||||
<div
|
||||
class="alert {parseStatus === 'success'
|
||||
? 'alert-success'
|
||||
: parseStatus === 'error'
|
||||
? 'alert-error'
|
||||
: 'alert-info'}"
|
||||
>
|
||||
{#if parseStatus === 'parsing'}
|
||||
<Loader2 class="h-6 w-6 shrink-0 animate-spin stroke-current" />
|
||||
{:else if parseStatus === 'success'}
|
||||
<Check class="h-6 w-6 shrink-0 stroke-current" />
|
||||
{:else}
|
||||
<AlertCircle class="h-6 w-6 shrink-0 stroke-current" />
|
||||
{/if}
|
||||
<div class="flex-1">
|
||||
<p>{statusMessage}</p>
|
||||
{#if parseStatus === 'success' && parsedMatchId}
|
||||
<p class="mt-1 text-sm">Redirecting to match page...</p>
|
||||
{/if}
|
||||
</div>
|
||||
{#if parseStatus !== 'parsing'}
|
||||
<button class="btn btn-ghost btn-sm" onclick={resetForm}>Dismiss</button>
|
||||
{/if}
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<!-- Help Text -->
|
||||
<div class="text-sm text-base-content/70">
|
||||
<p class="mb-2 font-medium">How to get your match share code:</p>
|
||||
<ol class="list-inside list-decimal space-y-1">
|
||||
<li>Open CS2 and navigate to your Matches tab</li>
|
||||
<li>Click on a match you want to analyze</li>
|
||||
<li>Click the "Copy Share Link" button</li>
|
||||
<li>Paste the share code here</li>
|
||||
</ol>
|
||||
<p class="mt-2 text-xs">
|
||||
Note: Demo parsing can take 1-5 minutes depending on match length. You'll be able to view
|
||||
basic match info immediately, but detailed statistics will be available after parsing
|
||||
completes.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
196
src/lib/components/player/TrackPlayerModal.svelte
Normal file
@@ -0,0 +1,196 @@
|
||||
<script lang="ts">
|
||||
import { createEventDispatcher } from 'svelte';
|
||||
import Modal from '$lib/components/ui/Modal.svelte';
|
||||
import { playersAPI } from '$lib/api/players';
|
||||
import { showToast } from '$lib/stores/toast';
|
||||
|
||||
interface Props {
|
||||
playerId: string;
|
||||
playerName: string;
|
||||
isTracked: boolean;
|
||||
isOpen: boolean;
|
||||
}
|
||||
|
||||
let { playerId, playerName, isTracked, isOpen = $bindable() }: Props = $props();
|
||||
|
||||
const dispatch = createEventDispatcher();
|
||||
|
||||
let authCode = $state('');
|
||||
let shareCode = $state('');
|
||||
let isLoading = $state(false);
|
||||
let error = $state('');
|
||||
|
||||
async function handleTrack() {
|
||||
if (!authCode.trim()) {
|
||||
error = 'Auth code is required';
|
||||
return;
|
||||
}
|
||||
|
||||
isLoading = true;
|
||||
error = '';
|
||||
|
||||
try {
|
||||
await playersAPI.trackPlayer(playerId, authCode, shareCode || undefined);
|
||||
showToast('Player tracking activated successfully!', 'success');
|
||||
isOpen = false;
|
||||
dispatch('tracked');
|
||||
} catch (err: unknown) {
|
||||
error = err instanceof Error ? err.message : 'Failed to track player';
|
||||
showToast(error, 'error');
|
||||
} finally {
|
||||
isLoading = false;
|
||||
}
|
||||
}
|
||||
|
||||
async function handleUntrack() {
|
||||
if (!authCode.trim()) {
|
||||
error = 'Auth code is required to untrack';
|
||||
return;
|
||||
}
|
||||
|
||||
isLoading = true;
|
||||
error = '';
|
||||
|
||||
try {
|
||||
await playersAPI.untrackPlayer(playerId, authCode);
|
||||
showToast('Player tracking removed successfully', 'success');
|
||||
isOpen = false;
|
||||
dispatch('untracked');
|
||||
} catch (err: unknown) {
|
||||
error = err instanceof Error ? err.message : 'Failed to untrack player';
|
||||
showToast(error, 'error');
|
||||
} finally {
|
||||
isLoading = false;
|
||||
}
|
||||
}
|
||||
|
||||
function handleClose() {
|
||||
isOpen = false;
|
||||
authCode = '';
|
||||
shareCode = '';
|
||||
error = '';
|
||||
}
|
||||
</script>
|
||||
|
||||
<Modal bind:isOpen onClose={handleClose} title={isTracked ? 'Untrack Player' : 'Track Player'}>
|
||||
<div class="space-y-4">
|
||||
<div class="alert alert-info">
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
fill="none"
|
||||
viewBox="0 0 24 24"
|
||||
class="h-6 w-6 shrink-0 stroke-current"
|
||||
>
|
||||
<path
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="2"
|
||||
d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
|
||||
></path>
|
||||
</svg>
|
||||
<div class="text-sm">
|
||||
{#if isTracked}
|
||||
<p>Remove <strong>{playerName}</strong> from automatic match tracking.</p>
|
||||
{:else}
|
||||
<p>
|
||||
Add <strong>{playerName}</strong> to the tracking system to automatically fetch new matches.
|
||||
</p>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Auth Code Input -->
|
||||
<div class="form-control">
|
||||
<label class="label" for="authCode">
|
||||
<span class="label-text font-medium">Authentication Code *</span>
|
||||
</label>
|
||||
<input
|
||||
id="authCode"
|
||||
type="text"
|
||||
placeholder="Enter your auth code"
|
||||
class="input input-bordered w-full"
|
||||
bind:value={authCode}
|
||||
disabled={isLoading}
|
||||
required
|
||||
/>
|
||||
<div class="label">
|
||||
<span class="label-text-alt text-base-content/60">
|
||||
Required to verify ownership of this Steam account
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Share Code Input (only for tracking) -->
|
||||
{#if !isTracked}
|
||||
<div class="form-control">
|
||||
<label class="label" for="shareCode">
|
||||
<span class="label-text font-medium">Share Code (Optional)</span>
|
||||
</label>
|
||||
<input
|
||||
id="shareCode"
|
||||
type="text"
|
||||
placeholder="CSGO-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX"
|
||||
class="input input-bordered w-full"
|
||||
bind:value={shareCode}
|
||||
disabled={isLoading}
|
||||
/>
|
||||
<div class="label">
|
||||
<span class="label-text-alt text-base-content/60">
|
||||
Optional: Provide a share code if you have no matches yet
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<!-- Error Message -->
|
||||
{#if error}
|
||||
<div class="alert alert-error">
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
class="h-6 w-6 shrink-0 stroke-current"
|
||||
fill="none"
|
||||
viewBox="0 0 24 24"
|
||||
>
|
||||
<path
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="2"
|
||||
d="M10 14l2-2m0 0l2-2m-2 2l-2-2m2 2l2 2m7-2a9 9 0 11-18 0 9 9 0 0118 0z"
|
||||
/>
|
||||
</svg>
|
||||
<span>{error}</span>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<!-- Help Text -->
|
||||
<div class="text-sm text-base-content/70">
|
||||
<p class="mb-2 font-medium">How to get your authentication code:</p>
|
||||
<ol class="list-inside list-decimal space-y-1">
|
||||
<li>Open CS2 and go to Settings → Game</li>
|
||||
<li>Enable the Developer Console</li>
|
||||
<li>Press <kbd class="kbd kbd-sm">~</kbd> to open the console</li>
|
||||
<li>Type: <code class="rounded bg-base-300 px-1">status</code></li>
|
||||
<li>Copy the code shown next to "Account:"</li>
|
||||
</ol>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{#snippet actions()}
|
||||
<button class="btn" onclick={handleClose} disabled={isLoading}>Cancel</button>
|
||||
{#if isTracked}
|
||||
<button class="btn btn-error" onclick={handleUntrack} disabled={isLoading}>
|
||||
{#if isLoading}
|
||||
<span class="loading loading-spinner loading-sm"></span>
|
||||
{/if}
|
||||
Untrack Player
|
||||
</button>
|
||||
{:else}
|
||||
<button class="btn btn-primary" onclick={handleTrack} disabled={isLoading}>
|
||||
{#if isLoading}
|
||||
<span class="loading loading-spinner loading-sm"></span>
|
||||
{/if}
|
||||
Track Player
|
||||
</button>
|
||||
{/if}
|
||||
{/snippet}
|
||||
</Modal>
|
||||
@@ -1,16 +1,18 @@
|
||||
<script lang="ts">
|
||||
import { X } from 'lucide-svelte';
|
||||
import { fly, fade } from 'svelte/transition';
|
||||
import type { Snippet } from 'svelte';
|
||||
|
||||
interface Props {
|
||||
open?: boolean;
|
||||
title?: string;
|
||||
size?: 'sm' | 'md' | 'lg' | 'xl';
|
||||
onClose?: () => void;
|
||||
children?: any;
|
||||
children?: Snippet;
|
||||
actions?: Snippet;
|
||||
}
|
||||
|
||||
let { open = $bindable(false), title, size = 'md', onClose, children }: Props = $props();
|
||||
let { open = $bindable(false), title, size = 'md', onClose, children, actions }: Props = $props();
|
||||
|
||||
const sizeClasses = {
|
||||
sm: 'max-w-md',
|
||||
@@ -44,9 +46,15 @@
|
||||
class="fixed inset-0 z-50 flex items-center justify-center p-4"
|
||||
transition:fade={{ duration: 200 }}
|
||||
onclick={handleBackdropClick}
|
||||
onkeydown={(e) => {
|
||||
if (e.key === 'Escape') {
|
||||
handleClose();
|
||||
}
|
||||
}}
|
||||
role="dialog"
|
||||
aria-modal="true"
|
||||
aria-labelledby={title ? 'modal-title' : undefined}
|
||||
tabindex="-1"
|
||||
>
|
||||
<!-- Backdrop -->
|
||||
<div class="absolute inset-0 bg-black/50 backdrop-blur-sm"></div>
|
||||
@@ -82,6 +90,13 @@
|
||||
<div class="p-6">
|
||||
{@render children?.()}
|
||||
</div>
|
||||
|
||||
<!-- Actions -->
|
||||
{#if actions}
|
||||
<div class="flex justify-end gap-2 border-t border-base-300 p-6">
|
||||
{@render actions()}
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
68
src/lib/components/ui/PremierRatingBadge.svelte
Normal file
@@ -0,0 +1,68 @@
|
||||
<script lang="ts">
|
||||
import { formatPremierRating, getPremierRatingChange } from '$lib/utils/formatters';
|
||||
import { Trophy, TrendingUp, TrendingDown } from 'lucide-svelte';
|
||||
|
||||
interface Props {
|
||||
rating: number | undefined | null;
|
||||
oldRating?: number | undefined | null;
|
||||
size?: 'sm' | 'md' | 'lg';
|
||||
showTier?: boolean;
|
||||
showChange?: boolean;
|
||||
showIcon?: boolean;
|
||||
class?: string;
|
||||
}
|
||||
|
||||
let {
|
||||
rating,
|
||||
oldRating,
|
||||
size = 'md',
|
||||
showTier = false,
|
||||
showChange = false,
|
||||
showIcon = true,
|
||||
class: className = ''
|
||||
}: Props = $props();
|
||||
|
||||
const tierInfo = $derived(formatPremierRating(rating));
|
||||
const changeInfo = $derived(showChange ? getPremierRatingChange(oldRating, rating) : null);
|
||||
|
||||
const baseClasses = 'inline-flex items-center gap-1.5 border rounded-lg font-medium';
|
||||
|
||||
const sizeClasses = {
|
||||
sm: 'px-2 py-0.5 text-xs',
|
||||
md: 'px-3 py-1 text-sm',
|
||||
lg: 'px-4 py-2 text-base'
|
||||
};
|
||||
|
||||
const iconSizes = {
|
||||
sm: 'h-3 w-3',
|
||||
md: 'h-4 w-4',
|
||||
lg: 'h-5 w-5'
|
||||
};
|
||||
|
||||
const classes = $derived(
|
||||
`${baseClasses} ${tierInfo.cssClasses} ${sizeClasses[size]} ${className}`
|
||||
);
|
||||
</script>
|
||||
|
||||
<div class={classes}>
|
||||
{#if showIcon}
|
||||
<Trophy class={iconSizes[size]} />
|
||||
{/if}
|
||||
|
||||
<span>{tierInfo.formatted}</span>
|
||||
|
||||
{#if showTier}
|
||||
<span class="opacity-75">({tierInfo.tier})</span>
|
||||
{/if}
|
||||
|
||||
{#if showChange && changeInfo}
|
||||
<span class="ml-1 flex items-center gap-0.5 {changeInfo.cssClasses}">
|
||||
{#if changeInfo.isPositive}
|
||||
<TrendingUp class={iconSizes[size]} />
|
||||
{:else if changeInfo.change < 0}
|
||||
<TrendingDown class={iconSizes[size]} />
|
||||
{/if}
|
||||
{changeInfo.display}
|
||||
</span>
|
||||
{/if}
|
||||
</div>
|
||||
@@ -43,8 +43,10 @@
|
||||
}
|
||||
};
|
||||
|
||||
const variantClass = variant === 'boxed' ? 'tabs-boxed' : variant === 'lifted' ? 'tabs-lifted' : '';
|
||||
const sizeClass = size === 'xs' ? 'tabs-xs' : size === 'sm' ? 'tabs-sm' : size === 'lg' ? 'tabs-lg' : '';
|
||||
const variantClass =
|
||||
variant === 'boxed' ? 'tabs-boxed' : variant === 'lifted' ? 'tabs-lifted' : '';
|
||||
const sizeClass =
|
||||
size === 'xs' ? 'tabs-xs' : size === 'sm' ? 'tabs-sm' : size === 'lg' ? 'tabs-lg' : '';
|
||||
</script>
|
||||
|
||||
<div role="tablist" class="tabs {variantClass} {sizeClass} {className}">
|
||||
|
||||
@@ -1,8 +1,10 @@
|
||||
<script lang="ts">
|
||||
import type { Snippet } from 'svelte';
|
||||
|
||||
interface Props {
|
||||
text: string;
|
||||
position?: 'top' | 'bottom' | 'left' | 'right';
|
||||
children?: any;
|
||||
children?: Snippet;
|
||||
}
|
||||
|
||||
let { text, position = 'top', children }: Props = $props();
|
||||
|
||||
@@ -19,7 +19,7 @@ export const matchPlayerSchema = z.object({
|
||||
headshot: z.number().int().nonnegative(),
|
||||
mvp: z.number().int().nonnegative(),
|
||||
score: z.number().int().nonnegative(),
|
||||
kast: z.number().int().min(0).max(100),
|
||||
kast: z.number().int().min(0).max(100).optional(),
|
||||
|
||||
// Rank (CS2 Premier rating: 0-30000)
|
||||
rank_old: z.number().int().min(0).max(30000).optional(),
|
||||
@@ -74,7 +74,7 @@ export const matchSchema = z.object({
|
||||
demo_parsed: z.boolean(),
|
||||
vac_present: z.boolean(),
|
||||
gameban_present: z.boolean(),
|
||||
tick_rate: z.number().positive(),
|
||||
tick_rate: z.number().positive().optional(),
|
||||
players: z.array(matchPlayerSchema).optional()
|
||||
});
|
||||
|
||||
@@ -87,7 +87,7 @@ export const matchListItemSchema = z.object({
|
||||
score_team_b: z.number().int().nonnegative(),
|
||||
duration: z.number().int().positive(),
|
||||
demo_parsed: z.boolean(),
|
||||
player_count: z.number().int().min(2).max(10)
|
||||
player_count: z.number().int().min(2).max(10).optional()
|
||||
});
|
||||
|
||||
/** Parser functions for safe data validation */
|
||||
|
||||
@@ -12,7 +12,7 @@ export const playerSchema = z.object({
|
||||
avatar: z.string().url(),
|
||||
vanity_url: z.string().optional(),
|
||||
vanity_url_real: z.string().optional(),
|
||||
steam_updated: z.string().datetime(),
|
||||
steam_updated: z.string().datetime().optional(),
|
||||
profile_created: z.string().datetime().optional(),
|
||||
wins: z.number().int().nonnegative().optional(),
|
||||
losses: z.number().int().nonnegative().optional(),
|
||||
@@ -24,6 +24,7 @@ export const playerSchema = z.object({
|
||||
game_ban_count: z.number().int().nonnegative().optional(),
|
||||
game_ban_date: z.string().datetime().nullable().optional(),
|
||||
oldest_sharecode_seen: z.string().optional(),
|
||||
tracked: z.boolean().optional(),
|
||||
matches: z
|
||||
.array(
|
||||
matchSchema.extend({
|
||||
|
||||
@@ -39,8 +39,8 @@ export interface Match {
|
||||
/** Whether any player has a game ban */
|
||||
gameban_present: boolean;
|
||||
|
||||
/** Server tick rate (64 or 128) */
|
||||
tick_rate: number;
|
||||
/** Server tick rate (64 or 128) - optional, not always provided by API */
|
||||
tick_rate?: number;
|
||||
|
||||
/** Array of player statistics (optional, included in detailed match view) */
|
||||
players?: MatchPlayer[];
|
||||
@@ -57,7 +57,7 @@ export interface MatchListItem {
|
||||
score_team_b: number;
|
||||
duration: number;
|
||||
demo_parsed: boolean;
|
||||
player_count: number;
|
||||
player_count?: number;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -91,8 +91,14 @@ export interface MatchPlayer {
|
||||
/** In-game score */
|
||||
score: number;
|
||||
|
||||
/** KAST percentage (0-100): Kill/Assist/Survive/Trade */
|
||||
kast: number;
|
||||
/** KAST percentage (0-100): Kill/Assist/Survive/Trade - optional, not always provided by API */
|
||||
kast?: number;
|
||||
|
||||
/** Average Damage per Round */
|
||||
adr?: number;
|
||||
|
||||
/** Headshot percentage */
|
||||
hs_percent?: number;
|
||||
|
||||
// Rank tracking (CS2 Premier rating: 0-30000)
|
||||
rank_old?: number;
|
||||
|
||||
@@ -20,8 +20,8 @@ export interface Player {
|
||||
/** Actual vanity URL (may differ from vanity_url) */
|
||||
vanity_url_real?: string;
|
||||
|
||||
/** Last time Steam profile was updated (ISO 8601) */
|
||||
steam_updated: string;
|
||||
/** Last time Steam profile was updated (ISO 8601) - optional, not always provided by API */
|
||||
steam_updated?: string;
|
||||
|
||||
/** Steam account creation date (ISO 8601) */
|
||||
profile_created?: string;
|
||||
@@ -53,6 +53,9 @@ export interface Player {
|
||||
/** Oldest match share code seen for this player */
|
||||
oldest_sharecode_seen?: string;
|
||||
|
||||
/** Whether this player is being tracked for automatic match updates */
|
||||
tracked?: boolean;
|
||||
|
||||
/** Recent matches with player statistics */
|
||||
matches?: PlayerMatch[];
|
||||
}
|
||||
|
||||
154
src/lib/utils/export.ts
Normal file
@@ -0,0 +1,154 @@
|
||||
/**
|
||||
* Export utilities for match data
|
||||
* Provides CSV and JSON export functionality for match listings
|
||||
*/
|
||||
|
||||
import type { MatchListItem } from '$lib/types';
|
||||
import { formatDuration } from './formatters';
|
||||
|
||||
/**
|
||||
* Format date to readable string (YYYY-MM-DD HH:MM)
|
||||
* @param dateString - ISO date string
|
||||
* @returns Formatted date string
|
||||
*/
|
||||
function formatDateForExport(dateString: string): string {
|
||||
const date = new Date(dateString);
|
||||
const year = date.getFullYear();
|
||||
const month = String(date.getMonth() + 1).padStart(2, '0');
|
||||
const day = String(date.getDate()).padStart(2, '0');
|
||||
const hours = String(date.getHours()).padStart(2, '0');
|
||||
const minutes = String(date.getMinutes()).padStart(2, '0');
|
||||
return `${year}-${month}-${day} ${hours}:${minutes}`;
|
||||
}
|
||||
|
||||
/**
|
||||
* Convert matches array to CSV format
|
||||
* @param matches - Array of match items to export
|
||||
* @returns CSV string
|
||||
*/
|
||||
function matchesToCSV(matches: MatchListItem[]): string {
|
||||
// CSV Headers
|
||||
const headers = [
|
||||
'Match ID',
|
||||
'Date',
|
||||
'Map',
|
||||
'Score Team A',
|
||||
'Score Team B',
|
||||
'Duration',
|
||||
'Demo Parsed',
|
||||
'Player Count'
|
||||
];
|
||||
|
||||
// CSV rows
|
||||
const rows = matches.map((match) => {
|
||||
return [
|
||||
match.match_id,
|
||||
formatDateForExport(match.date),
|
||||
match.map,
|
||||
match.score_team_a.toString(),
|
||||
match.score_team_b.toString(),
|
||||
formatDuration(match.duration),
|
||||
match.demo_parsed ? 'Yes' : 'No',
|
||||
match.player_count?.toString() || '-'
|
||||
];
|
||||
});
|
||||
|
||||
// Combine headers and rows
|
||||
const csvContent = [
|
||||
headers.join(','),
|
||||
...rows.map((row) =>
|
||||
row
|
||||
.map((cell) => {
|
||||
// Escape cells containing commas or quotes
|
||||
if (cell.includes(',') || cell.includes('"')) {
|
||||
return `"${cell.replace(/"/g, '""')}"`;
|
||||
}
|
||||
return cell;
|
||||
})
|
||||
.join(',')
|
||||
)
|
||||
].join('\n');
|
||||
|
||||
return csvContent;
|
||||
}
|
||||
|
||||
/**
|
||||
* Convert matches array to formatted JSON
|
||||
* @param matches - Array of match items to export
|
||||
* @returns Formatted JSON string
|
||||
*/
|
||||
function matchesToJSON(matches: MatchListItem[]): string {
|
||||
// Create clean export format
|
||||
const exportData = {
|
||||
export_date: new Date().toISOString(),
|
||||
total_matches: matches.length,
|
||||
matches: matches.map((match) => ({
|
||||
match_id: match.match_id,
|
||||
date: formatDateForExport(match.date),
|
||||
map: match.map,
|
||||
score: `${match.score_team_a} - ${match.score_team_b}`,
|
||||
score_team_a: match.score_team_a,
|
||||
score_team_b: match.score_team_b,
|
||||
duration: formatDuration(match.duration),
|
||||
duration_seconds: match.duration,
|
||||
demo_parsed: match.demo_parsed,
|
||||
player_count: match.player_count
|
||||
}))
|
||||
};
|
||||
|
||||
return JSON.stringify(exportData, null, 2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Trigger browser download for a file
|
||||
* @param content - File content
|
||||
* @param filename - Name of file to download
|
||||
* @param mimeType - MIME type of file
|
||||
*/
|
||||
function triggerDownload(content: string, filename: string, mimeType: string): void {
|
||||
const blob = new Blob([content], { type: mimeType });
|
||||
const url = URL.createObjectURL(blob);
|
||||
const link = document.createElement('a');
|
||||
link.href = url;
|
||||
link.download = filename;
|
||||
document.body.appendChild(link);
|
||||
link.click();
|
||||
document.body.removeChild(link);
|
||||
URL.revokeObjectURL(url);
|
||||
}
|
||||
|
||||
/**
|
||||
* Export matches to CSV file
|
||||
* Generates and downloads a CSV file with match data
|
||||
* @param matches - Array of match items to export
|
||||
* @throws Error if matches array is empty
|
||||
*/
|
||||
export function exportMatchesToCSV(matches: MatchListItem[]): void {
|
||||
if (!matches || matches.length === 0) {
|
||||
throw new Error('No matches to export');
|
||||
}
|
||||
|
||||
const csvContent = matchesToCSV(matches);
|
||||
const timestamp = new Date().toISOString().split('T')[0];
|
||||
const filename = `cs2wtf-matches-${timestamp}.csv`;
|
||||
|
||||
triggerDownload(csvContent, filename, 'text/csv;charset=utf-8;');
|
||||
}
|
||||
|
||||
/**
|
||||
* Export matches to JSON file
|
||||
* Generates and downloads a JSON file with match data
|
||||
* @param matches - Array of match items to export
|
||||
* @throws Error if matches array is empty
|
||||
*/
|
||||
export function exportMatchesToJSON(matches: MatchListItem[]): void {
|
||||
if (!matches || matches.length === 0) {
|
||||
throw new Error('No matches to export');
|
||||
}
|
||||
|
||||
const jsonContent = matchesToJSON(matches);
|
||||
const timestamp = new Date().toISOString().split('T')[0];
|
||||
const filename = `cs2wtf-matches-${timestamp}.json`;
|
||||
|
||||
triggerDownload(jsonContent, filename, 'application/json;charset=utf-8;');
|
||||
}
|
||||
196
src/lib/utils/formatters.ts
Normal file
@@ -0,0 +1,196 @@
|
||||
/**
|
||||
* Formatting utilities for CS2 data
|
||||
*/
|
||||
|
||||
/**
|
||||
* Premier rating tier information
|
||||
*/
|
||||
export interface PremierRatingTier {
|
||||
/** Formatted rating with comma separator (e.g., "15,000") */
|
||||
formatted: string;
|
||||
/** Hex color for this tier */
|
||||
color: string;
|
||||
/** Tier name */
|
||||
tier: string;
|
||||
/** Tailwind CSS classes for styling */
|
||||
cssClasses: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Format Premier rating and return tier information
|
||||
* CS2 Premier rating range: 0-30000
|
||||
* Color tiers: <5000 (gray), 5000-9999 (blue), 10000-14999 (purple),
|
||||
* 15000-19999 (pink), 20000-24999 (red), 25000+ (gold)
|
||||
*
|
||||
* @param rating - Premier rating (0-30000)
|
||||
* @returns Tier information with formatted rating and colors
|
||||
*/
|
||||
export function formatPremierRating(rating: number | undefined | null): PremierRatingTier {
|
||||
// Default for unranked/unknown
|
||||
if (rating === undefined || rating === null || rating === 0) {
|
||||
return {
|
||||
formatted: 'Unranked',
|
||||
color: '#9CA3AF',
|
||||
tier: 'Unranked',
|
||||
cssClasses: 'bg-base-300/50 border-base-content/20 text-base-content/60'
|
||||
};
|
||||
}
|
||||
|
||||
// Ensure rating is within valid range
|
||||
const validRating = Math.max(0, Math.min(30000, rating));
|
||||
const formatted = validRating.toLocaleString('en-US');
|
||||
|
||||
// Determine tier based on rating
|
||||
if (validRating >= 25000) {
|
||||
return {
|
||||
formatted,
|
||||
color: '#EAB308',
|
||||
tier: 'Legendary',
|
||||
cssClasses:
|
||||
'bg-gradient-to-br from-yellow-500/20 to-amber-600/20 border-yellow-500/40 text-yellow-400 font-bold shadow-lg shadow-yellow-500/20'
|
||||
};
|
||||
} else if (validRating >= 20000) {
|
||||
return {
|
||||
formatted,
|
||||
color: '#EF4444',
|
||||
tier: 'Elite',
|
||||
cssClasses:
|
||||
'bg-gradient-to-br from-red-500/20 to-rose-600/20 border-red-500/40 text-red-400 font-semibold shadow-md shadow-red-500/10'
|
||||
};
|
||||
} else if (validRating >= 15000) {
|
||||
return {
|
||||
formatted,
|
||||
color: '#EC4899',
|
||||
tier: 'Expert',
|
||||
cssClasses:
|
||||
'bg-gradient-to-br from-pink-500/20 to-fuchsia-500/20 border-pink-500/40 text-pink-400 font-semibold shadow-md shadow-pink-500/10'
|
||||
};
|
||||
} else if (validRating >= 10000) {
|
||||
return {
|
||||
formatted,
|
||||
color: '#A855F7',
|
||||
tier: 'Advanced',
|
||||
cssClasses:
|
||||
'bg-gradient-to-br from-purple-500/20 to-violet-600/20 border-purple-500/40 text-purple-400 font-medium'
|
||||
};
|
||||
} else if (validRating >= 5000) {
|
||||
return {
|
||||
formatted,
|
||||
color: '#3B82F6',
|
||||
tier: 'Intermediate',
|
||||
cssClasses:
|
||||
'bg-gradient-to-br from-blue-500/20 to-indigo-500/20 border-blue-500/40 text-blue-400'
|
||||
};
|
||||
} else {
|
||||
return {
|
||||
formatted,
|
||||
color: '#9CA3AF',
|
||||
tier: 'Beginner',
|
||||
cssClasses: 'bg-gray-500/10 border-gray-500/30 text-gray-400'
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Get Tailwind CSS classes for Premier rating badge
|
||||
* @param rating - Premier rating (0-30000)
|
||||
* @returns Tailwind CSS class string
|
||||
*/
|
||||
export function getPremierRatingClass(rating: number | undefined | null): string {
|
||||
return formatPremierRating(rating).cssClasses;
|
||||
}
|
||||
|
||||
/**
|
||||
* Calculate rating change display
|
||||
* @param oldRating - Previous rating
|
||||
* @param newRating - New rating
|
||||
* @returns Object with change amount and display string
|
||||
*/
|
||||
export function getPremierRatingChange(
|
||||
oldRating: number | undefined | null,
|
||||
newRating: number | undefined | null
|
||||
): {
|
||||
change: number;
|
||||
display: string;
|
||||
isPositive: boolean;
|
||||
cssClasses: string;
|
||||
} | null {
|
||||
if (
|
||||
oldRating === undefined ||
|
||||
oldRating === null ||
|
||||
newRating === undefined ||
|
||||
newRating === null
|
||||
) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const change = newRating - oldRating;
|
||||
|
||||
if (change === 0) {
|
||||
return {
|
||||
change: 0,
|
||||
display: '±0',
|
||||
isPositive: false,
|
||||
cssClasses: 'text-base-content/60'
|
||||
};
|
||||
}
|
||||
|
||||
const isPositive = change > 0;
|
||||
const display = isPositive ? `+${change}` : change.toString();
|
||||
|
||||
return {
|
||||
change,
|
||||
display,
|
||||
isPositive,
|
||||
cssClasses: isPositive ? 'text-success font-semibold' : 'text-error font-semibold'
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* Format K/D ratio
|
||||
* @param kills - Number of kills
|
||||
* @param deaths - Number of deaths
|
||||
* @returns Formatted K/D ratio
|
||||
*/
|
||||
export function formatKD(kills: number, deaths: number): string {
|
||||
if (deaths === 0) {
|
||||
return kills.toFixed(2);
|
||||
}
|
||||
return (kills / deaths).toFixed(2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Format percentage
|
||||
* @param value - Percentage value (0-100)
|
||||
* @param decimals - Number of decimal places (default: 1)
|
||||
* @returns Formatted percentage string
|
||||
*/
|
||||
export function formatPercent(value: number | undefined | null, decimals = 1): string {
|
||||
if (value === undefined || value === null) {
|
||||
return '0.0%';
|
||||
}
|
||||
return `${value.toFixed(decimals)}%`;
|
||||
}
|
||||
|
||||
/**
|
||||
* Format duration in seconds to MM:SS
|
||||
* @param seconds - Duration in seconds
|
||||
* @returns Formatted duration string
|
||||
*/
|
||||
export function formatDuration(seconds: number): string {
|
||||
const mins = Math.floor(seconds / 60);
|
||||
const secs = seconds % 60;
|
||||
return `${mins}:${secs.toString().padStart(2, '0')}`;
|
||||
}
|
||||
|
||||
/**
|
||||
* Format large numbers with comma separators
|
||||
* @param value - Number to format
|
||||
* @returns Formatted number string
|
||||
*/
|
||||
export function formatNumber(value: number | undefined | null): string {
|
||||
if (value === undefined || value === null) {
|
||||
return '0';
|
||||
}
|
||||
return value.toLocaleString('en-US');
|
||||
}
|
||||
75
src/lib/utils/mapAssets.ts
Normal file
@@ -0,0 +1,75 @@
|
||||
/**
|
||||
* Utility functions for accessing CS2 map assets (icons, backgrounds, screenshots)
|
||||
*/
|
||||
|
||||
/**
|
||||
* Get the background image URL for a map
|
||||
* @param mapName - The map name (e.g., "de_dust2")
|
||||
* @returns URL to the map screenshot/background
|
||||
*/
|
||||
export function getMapBackground(mapName: string | null | undefined): string {
|
||||
// If no map name provided, use default
|
||||
if (!mapName || mapName.trim() === '') {
|
||||
return getDefaultMapBackground();
|
||||
}
|
||||
// For "unknown" maps, use default background directly
|
||||
if (mapName.toLowerCase() === 'unknown') {
|
||||
return getDefaultMapBackground();
|
||||
}
|
||||
// Try WebP first (better compression), fallback to PNG
|
||||
return `/images/map_screenshots/${mapName}.webp`;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the icon SVG URL for a map
|
||||
* @param mapName - The map name (e.g., "de_dust2")
|
||||
* @returns URL to the map icon SVG
|
||||
*/
|
||||
export function getMapIcon(mapName: string | null | undefined): string {
|
||||
if (!mapName || mapName.trim() === '') {
|
||||
return `/images/map_icons/map_icon_lobby_mapveto.svg`; // Generic map icon
|
||||
}
|
||||
return `/images/map_icons/map_icon_${mapName}.svg`;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get fallback default map background if specific map is not found
|
||||
*/
|
||||
export function getDefaultMapBackground(): string {
|
||||
return '/images/map_screenshots/default.webp';
|
||||
}
|
||||
|
||||
/**
|
||||
* Format map name for display (remove de_ prefix, capitalize)
|
||||
* @param mapName - The map name (e.g., "de_dust2")
|
||||
* @returns Formatted name (e.g., "Dust 2")
|
||||
*/
|
||||
export function formatMapName(mapName: string | null | undefined): string {
|
||||
if (!mapName || mapName.trim() === '') {
|
||||
return 'Unknown Map';
|
||||
}
|
||||
return mapName
|
||||
.replace(/^(de|cs|ar|dz|gd|coop)_/, '')
|
||||
.split('_')
|
||||
.map((word) => word.charAt(0).toUpperCase() + word.slice(1))
|
||||
.join(' ');
|
||||
}
|
||||
|
||||
/**
|
||||
* Get team logo URL
|
||||
* @param team - "t" or "ct"
|
||||
* @param variant - "logo" (color) or "logo_1c" (monochrome)
|
||||
* @returns URL to the team logo SVG
|
||||
*/
|
||||
export function getTeamLogo(team: 't' | 'ct', variant: 'logo' | 'logo_1c' = 'logo'): string {
|
||||
return `/images/icons/${team}_${variant}.svg`;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get team character background
|
||||
* @param team - "t" or "ct"
|
||||
* @returns URL to the team character background SVG
|
||||
*/
|
||||
export function getTeamBackground(team: 't' | 'ct'): string {
|
||||
return `/images/icons/${team}_char_bg.svg`;
|
||||
}
|
||||
102
src/lib/utils/navigation.ts
Normal file
@@ -0,0 +1,102 @@
|
||||
/**
|
||||
* Navigation utility for preserving scroll state and match position
|
||||
* when navigating between matches and the matches listing page.
|
||||
*/
|
||||
|
||||
const STORAGE_KEY = 'matches-navigation-state';
|
||||
|
||||
interface NavigationState {
|
||||
matchId: string;
|
||||
scrollY: number;
|
||||
timestamp: number;
|
||||
loadedCount: number; // Number of matches loaded (for pagination)
|
||||
}
|
||||
|
||||
/**
|
||||
* Store navigation state when leaving the matches page
|
||||
*/
|
||||
export function storeMatchesState(matchId: string, loadedCount: number): void {
|
||||
if (typeof window === 'undefined') return;
|
||||
|
||||
const state: NavigationState = {
|
||||
matchId,
|
||||
scrollY: window.scrollY,
|
||||
timestamp: Date.now(),
|
||||
loadedCount
|
||||
};
|
||||
|
||||
try {
|
||||
sessionStorage.setItem(STORAGE_KEY, JSON.stringify(state));
|
||||
} catch (e) {
|
||||
console.warn('Failed to store navigation state:', e);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve stored navigation state
|
||||
*/
|
||||
export function getMatchesState(): NavigationState | null {
|
||||
if (typeof window === 'undefined') return null;
|
||||
|
||||
try {
|
||||
const stored = sessionStorage.getItem(STORAGE_KEY);
|
||||
if (!stored) return null;
|
||||
|
||||
const state: NavigationState = JSON.parse(stored);
|
||||
|
||||
// Clear state if older than 5 minutes (likely stale)
|
||||
if (Date.now() - state.timestamp > 5 * 60 * 1000) {
|
||||
clearMatchesState();
|
||||
return null;
|
||||
}
|
||||
|
||||
return state;
|
||||
} catch (e) {
|
||||
console.warn('Failed to retrieve navigation state:', e);
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Clear stored navigation state
|
||||
*/
|
||||
export function clearMatchesState(): void {
|
||||
if (typeof window === 'undefined') return;
|
||||
|
||||
try {
|
||||
sessionStorage.removeItem(STORAGE_KEY);
|
||||
} catch (e) {
|
||||
console.warn('Failed to clear navigation state:', e);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Scroll to a specific match card element by ID
|
||||
*/
|
||||
export function scrollToMatch(matchId: string, fallbackScrollY?: number): void {
|
||||
if (typeof window === 'undefined') return;
|
||||
|
||||
// Use requestAnimationFrame to ensure DOM is ready
|
||||
requestAnimationFrame(() => {
|
||||
// Try to find the match card element
|
||||
const matchElement = document.querySelector(`[data-match-id="${matchId}"]`);
|
||||
|
||||
if (matchElement) {
|
||||
// Found the element, scroll to it with some offset for the header
|
||||
const offset = 100; // Header height + some padding
|
||||
const elementPosition = matchElement.getBoundingClientRect().top + window.scrollY;
|
||||
const offsetPosition = elementPosition - offset;
|
||||
|
||||
window.scrollTo({
|
||||
top: offsetPosition,
|
||||
behavior: 'smooth'
|
||||
});
|
||||
} else if (fallbackScrollY !== undefined) {
|
||||
// Element not found (might be new matches), use stored scroll position
|
||||
window.scrollTo({
|
||||
top: fallbackScrollY,
|
||||
behavior: 'instant'
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
@@ -7,7 +7,7 @@ import type { Player, Match, MatchPlayer, MatchListItem, PlayerMeta } from '$lib
|
||||
/** Mock players */
|
||||
export const mockPlayers: Player[] = [
|
||||
{
|
||||
id: 765611980123456, // Smaller mock Steam ID (safe integer)
|
||||
id: '765611980123456', // Smaller mock Steam ID (safe integer)
|
||||
name: 'TestPlayer1',
|
||||
avatar:
|
||||
'https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/fe/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_full.jpg',
|
||||
@@ -21,7 +21,7 @@ export const mockPlayers: Player[] = [
|
||||
game_ban_count: 0
|
||||
},
|
||||
{
|
||||
id: 765611980876543, // Smaller mock Steam ID (safe integer)
|
||||
id: '765611980876543', // Smaller mock Steam ID (safe integer)
|
||||
name: 'TestPlayer2',
|
||||
avatar: 'https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/ab/abc123.jpg',
|
||||
steam_updated: '2024-11-04T11:15:00Z',
|
||||
@@ -50,7 +50,7 @@ export const mockPlayerMeta: PlayerMeta = {
|
||||
/** Mock match players */
|
||||
export const mockMatchPlayers: MatchPlayer[] = [
|
||||
{
|
||||
id: 765611980123456,
|
||||
id: '765611980123456',
|
||||
name: 'Player1',
|
||||
avatar:
|
||||
'https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/fe/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_full.jpg',
|
||||
@@ -77,7 +77,7 @@ export const mockMatchPlayers: MatchPlayer[] = [
|
||||
color: 'yellow'
|
||||
},
|
||||
{
|
||||
id: 765611980876543,
|
||||
id: '765611980876543',
|
||||
name: 'Player2',
|
||||
avatar: 'https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/ab/abc123.jpg',
|
||||
team_id: 2,
|
||||
@@ -96,7 +96,7 @@ export const mockMatchPlayers: MatchPlayer[] = [
|
||||
color: 'blue'
|
||||
},
|
||||
{
|
||||
id: 765611980111111,
|
||||
id: '765611980111111',
|
||||
name: 'Player3',
|
||||
avatar: 'https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/cd/cde456.jpg',
|
||||
team_id: 3,
|
||||
@@ -119,7 +119,7 @@ export const mockMatchPlayers: MatchPlayer[] = [
|
||||
/** Mock matches */
|
||||
export const mockMatches: Match[] = [
|
||||
{
|
||||
match_id: 358948771684207, // Smaller mock match ID (safe integer)
|
||||
match_id: '358948771684207', // Smaller mock match ID (safe integer)
|
||||
share_code: 'CSGO-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX',
|
||||
map: 'de_inferno',
|
||||
date: '2024-11-01T18:45:00Z',
|
||||
@@ -131,11 +131,11 @@ export const mockMatches: Match[] = [
|
||||
demo_parsed: true,
|
||||
vac_present: false,
|
||||
gameban_present: false,
|
||||
tick_rate: 64.0,
|
||||
// Note: tick_rate is not provided by the API
|
||||
players: mockMatchPlayers
|
||||
},
|
||||
{
|
||||
match_id: 358948771684208,
|
||||
match_id: '358948771684208',
|
||||
share_code: 'CSGO-YYYYY-YYYYY-YYYYY-YYYYY-YYYYY',
|
||||
map: 'de_mirage',
|
||||
date: '2024-11-02T20:15:00Z',
|
||||
@@ -146,11 +146,11 @@ export const mockMatches: Match[] = [
|
||||
max_rounds: 24,
|
||||
demo_parsed: true,
|
||||
vac_present: false,
|
||||
gameban_present: false,
|
||||
tick_rate: 64.0
|
||||
gameban_present: false
|
||||
// Note: tick_rate is not provided by the API
|
||||
},
|
||||
{
|
||||
match_id: 358948771684209,
|
||||
match_id: '358948771684209',
|
||||
share_code: 'CSGO-ZZZZZ-ZZZZZ-ZZZZZ-ZZZZZ-ZZZZZ',
|
||||
map: 'de_dust2',
|
||||
date: '2024-11-03T15:30:00Z',
|
||||
@@ -161,8 +161,8 @@ export const mockMatches: Match[] = [
|
||||
max_rounds: 24,
|
||||
demo_parsed: true,
|
||||
vac_present: false,
|
||||
gameban_present: false,
|
||||
tick_rate: 64.0
|
||||
gameban_present: false
|
||||
// Note: tick_rate is not provided by the API
|
||||
}
|
||||
];
|
||||
|
||||
@@ -174,8 +174,8 @@ export const mockMatchListItems: MatchListItem[] = mockMatches.map((match) => ({
|
||||
score_team_a: match.score_team_a,
|
||||
score_team_b: match.score_team_b,
|
||||
duration: match.duration,
|
||||
demo_parsed: match.demo_parsed,
|
||||
player_count: 10
|
||||
demo_parsed: match.demo_parsed
|
||||
// Note: player_count is not provided by the API, so it's omitted from mocks
|
||||
}));
|
||||
|
||||
/** Helper: Generate random Steam ID (safe integer) */
|
||||
@@ -184,11 +184,11 @@ export const generateSteamId = (): number => {
|
||||
};
|
||||
|
||||
/** Helper: Get mock player by ID */
|
||||
export const getMockPlayer = (id: number): Player | undefined => {
|
||||
export const getMockPlayer = (id: string): Player | undefined => {
|
||||
return mockPlayers.find((p) => p.id === id);
|
||||
};
|
||||
|
||||
/** Helper: Get mock match by ID */
|
||||
export const getMockMatch = (id: number): Match | undefined => {
|
||||
export const getMockMatch = (id: string): Match | undefined => {
|
||||
return mockMatches.find((m) => m.match_id === id);
|
||||
};
|
||||
|
||||
@@ -2,7 +2,6 @@ import { http, HttpResponse, delay } from 'msw';
|
||||
import { mockMatches, mockMatchListItems, getMockMatch } from '../fixtures';
|
||||
import type {
|
||||
MatchParseResponse,
|
||||
MatchesListResponse,
|
||||
MatchRoundsResponse,
|
||||
MatchWeaponsResponse,
|
||||
MatchChatResponse
|
||||
@@ -21,7 +20,7 @@ export const matchesHandlers = [
|
||||
await delay(500);
|
||||
|
||||
const response: MatchParseResponse = {
|
||||
match_id: 358948771684207,
|
||||
match_id: '358948771684207',
|
||||
status: 'parsing',
|
||||
message: 'Demo download and parsing initiated',
|
||||
estimated_time: 120
|
||||
@@ -33,7 +32,7 @@ export const matchesHandlers = [
|
||||
// GET /match/:id
|
||||
http.get(`${API_BASE_URL}/match/:id`, ({ params }) => {
|
||||
const { id } = params;
|
||||
const matchId = Number(id);
|
||||
const matchId = String(id);
|
||||
|
||||
const match = getMockMatch(matchId) || mockMatches[0];
|
||||
|
||||
@@ -165,14 +164,11 @@ export const matchesHandlers = [
|
||||
matches = matches.slice(0, Math.ceil(matches.length / 2));
|
||||
}
|
||||
|
||||
const response: MatchesListResponse = {
|
||||
matches: matches.slice(0, limit),
|
||||
next_page_time: Date.now() / 1000 - 86400,
|
||||
has_more: matches.length > limit,
|
||||
total_count: matches.length
|
||||
};
|
||||
// NOTE: The real API returns a plain array, not a MatchesListResponse object
|
||||
// The transformation to MatchesListResponse happens in the API client
|
||||
const matchArray = matches.slice(0, limit);
|
||||
|
||||
return HttpResponse.json(response);
|
||||
return HttpResponse.json(matchArray);
|
||||
}),
|
||||
|
||||
// GET /matches/next/:time
|
||||
@@ -181,12 +177,9 @@ export const matchesHandlers = [
|
||||
const limit = Number(url.searchParams.get('limit')) || 50;
|
||||
|
||||
// Return older matches for pagination
|
||||
const response: MatchesListResponse = {
|
||||
matches: mockMatchListItems.slice(limit, limit * 2),
|
||||
next_page_time: Date.now() / 1000 - 172800,
|
||||
has_more: mockMatchListItems.length > limit * 2
|
||||
};
|
||||
// NOTE: The real API returns a plain array, not a MatchesListResponse object
|
||||
const matchArray = mockMatchListItems.slice(limit, limit * 2);
|
||||
|
||||
return HttpResponse.json(response);
|
||||
return HttpResponse.json(matchArray);
|
||||
})
|
||||
];
|
||||
|
||||
@@ -12,7 +12,7 @@ export const playersHandlers = [
|
||||
// GET /player/:id
|
||||
http.get(`${API_BASE_URL}/player/:id`, ({ params }) => {
|
||||
const { id } = params;
|
||||
const playerId = Number(id);
|
||||
const playerId = String(id);
|
||||
|
||||
const player = getMockPlayer(playerId);
|
||||
if (!player) {
|
||||
@@ -25,7 +25,7 @@ export const playersHandlers = [
|
||||
// GET /player/:id/next/:time
|
||||
http.get(`${API_BASE_URL}/player/:id/next/:time`, ({ params }) => {
|
||||
const { id } = params;
|
||||
const playerId = Number(id);
|
||||
const playerId = String(id);
|
||||
|
||||
const player = getMockPlayer(playerId) ?? mockPlayers[0];
|
||||
|
||||
|
||||
@@ -1,29 +1,105 @@
|
||||
<script lang="ts">
|
||||
import { Search, TrendingUp, Users, Zap } from 'lucide-svelte';
|
||||
import { Search, TrendingUp, Users, Zap, ChevronLeft, ChevronRight } from 'lucide-svelte';
|
||||
import Button from '$lib/components/ui/Button.svelte';
|
||||
import Card from '$lib/components/ui/Card.svelte';
|
||||
import Badge from '$lib/components/ui/Badge.svelte';
|
||||
import MatchCard from '$lib/components/match/MatchCard.svelte';
|
||||
import type { PageData } from './$types';
|
||||
|
||||
// Get data from page loader
|
||||
let { data }: { data: PageData } = $props();
|
||||
|
||||
// Transform API matches to display format
|
||||
const featuredMatches = data.featuredMatches.map((match) => ({
|
||||
id: match.match_id.toString(),
|
||||
map: match.map || 'unknown',
|
||||
mapDisplay: match.map ? match.map.replace('de_', '').toUpperCase() : 'UNKNOWN',
|
||||
scoreT: match.score_team_a,
|
||||
scoreCT: match.score_team_b,
|
||||
date: new Date(match.date).toLocaleString(),
|
||||
live: false // TODO: Implement live match detection
|
||||
}));
|
||||
// Use matches directly - already transformed by API client
|
||||
const featuredMatches = data.featuredMatches;
|
||||
|
||||
const stats = [
|
||||
{ icon: Users, label: 'Players Tracked', value: '1.2M+' },
|
||||
{ icon: TrendingUp, label: 'Matches Analyzed', value: '500K+' },
|
||||
{ icon: Zap, label: 'Demos Parsed', value: '2M+' }
|
||||
];
|
||||
|
||||
// Carousel state
|
||||
let currentSlide = $state(0);
|
||||
let isPaused = $state(false);
|
||||
let autoRotateInterval: ReturnType<typeof setInterval> | null = null;
|
||||
let manualNavigationTimeout: ReturnType<typeof setTimeout> | null = null;
|
||||
let windowWidth = $state(1024); // Default to desktop
|
||||
|
||||
// Track window width for responsive slides
|
||||
$effect(() => {
|
||||
if (typeof window !== 'undefined') {
|
||||
windowWidth = window.innerWidth;
|
||||
|
||||
const handleResize = () => {
|
||||
windowWidth = window.innerWidth;
|
||||
};
|
||||
|
||||
window.addEventListener('resize', handleResize);
|
||||
|
||||
return () => {
|
||||
window.removeEventListener('resize', handleResize);
|
||||
};
|
||||
}
|
||||
// Return empty cleanup function for server-side rendering path
|
||||
return () => {};
|
||||
});
|
||||
|
||||
// Determine matches per slide based on screen width
|
||||
const matchesPerSlide = $derived(windowWidth < 768 ? 1 : windowWidth < 1024 ? 2 : 3);
|
||||
|
||||
const totalSlides = $derived(Math.ceil(featuredMatches.length / matchesPerSlide));
|
||||
|
||||
// Get visible matches for current slide
|
||||
const visibleMatches = $derived.by(() => {
|
||||
const start = currentSlide * matchesPerSlide;
|
||||
return featuredMatches.slice(start, start + matchesPerSlide);
|
||||
});
|
||||
|
||||
function nextSlide() {
|
||||
currentSlide = (currentSlide + 1) % totalSlides;
|
||||
}
|
||||
|
||||
function prevSlide() {
|
||||
currentSlide = (currentSlide - 1 + totalSlides) % totalSlides;
|
||||
}
|
||||
|
||||
function goToSlide(index: number) {
|
||||
currentSlide = index;
|
||||
pauseAutoRotateTemporarily();
|
||||
}
|
||||
|
||||
function pauseAutoRotateTemporarily() {
|
||||
isPaused = true;
|
||||
if (manualNavigationTimeout) clearTimeout(manualNavigationTimeout);
|
||||
manualNavigationTimeout = setTimeout(() => {
|
||||
isPaused = false;
|
||||
}, 10000); // Resume after 10 seconds
|
||||
}
|
||||
|
||||
function handleManualNavigation(direction: 'prev' | 'next') {
|
||||
if (direction === 'prev') {
|
||||
prevSlide();
|
||||
} else {
|
||||
nextSlide();
|
||||
}
|
||||
pauseAutoRotateTemporarily();
|
||||
}
|
||||
|
||||
// Auto-rotation effect
|
||||
$effect(() => {
|
||||
if (autoRotateInterval) clearInterval(autoRotateInterval);
|
||||
|
||||
autoRotateInterval = setInterval(() => {
|
||||
if (!isPaused) {
|
||||
nextSlide();
|
||||
}
|
||||
}, 5000);
|
||||
|
||||
return () => {
|
||||
if (autoRotateInterval) clearInterval(autoRotateInterval);
|
||||
if (manualNavigationTimeout) clearTimeout(manualNavigationTimeout);
|
||||
};
|
||||
});
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
@@ -85,46 +161,72 @@
|
||||
<Button variant="ghost" href="/matches">View All</Button>
|
||||
</div>
|
||||
|
||||
<div class="grid gap-6 md:grid-cols-2 lg:grid-cols-3">
|
||||
{#each featuredMatches as match}
|
||||
<Card variant="interactive" padding="none">
|
||||
<a href={`/match/${match.id}`} class="block">
|
||||
<div
|
||||
class="relative h-48 overflow-hidden rounded-t-md bg-gradient-to-br from-base-300 to-base-100"
|
||||
>
|
||||
<div class="absolute inset-0 flex items-center justify-center">
|
||||
<span class="text-6xl font-bold text-base-content/10">{match.mapDisplay}</span>
|
||||
</div>
|
||||
<div class="absolute bottom-4 left-4">
|
||||
<Badge variant="default">{match.map}</Badge>
|
||||
</div>
|
||||
{#if match.live}
|
||||
<div class="absolute right-4 top-4">
|
||||
<Badge variant="error" size="sm">
|
||||
<span class="animate-pulse">● LIVE</span>
|
||||
</Badge>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
{#if featuredMatches.length > 0}
|
||||
<!-- Carousel Container -->
|
||||
<div
|
||||
class="relative"
|
||||
onmouseenter={() => (isPaused = true)}
|
||||
onmouseleave={() => (isPaused = false)}
|
||||
role="region"
|
||||
aria-label="Featured matches carousel"
|
||||
>
|
||||
<!-- Matches Grid with Fade Transition -->
|
||||
<div class="transition-opacity duration-500" class:opacity-100={true}>
|
||||
<div class="grid gap-6 md:grid-cols-2 lg:grid-cols-3">
|
||||
{#each visibleMatches as match (match.match_id)}
|
||||
<MatchCard {match} />
|
||||
{/each}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="p-4">
|
||||
<div class="mb-3 flex items-center justify-center gap-4">
|
||||
<span class="font-mono text-2xl font-bold text-terrorist">{match.scoreT}</span>
|
||||
<span class="text-base-content/40">-</span>
|
||||
<span class="font-mono text-2xl font-bold text-ct">{match.scoreCT}</span>
|
||||
</div>
|
||||
<!-- Navigation Arrows - Only show if there are multiple slides -->
|
||||
{#if totalSlides > 1}
|
||||
<!-- Previous Button -->
|
||||
<button
|
||||
onclick={() => handleManualNavigation('prev')}
|
||||
class="group absolute left-0 top-1/2 z-10 -translate-x-4 -translate-y-1/2 rounded-md border border-base-content/10 bg-base-100/95 p-2 shadow-[0_8px_30px_rgb(0,0,0,0.12)] backdrop-blur-md transition-all duration-200 hover:-translate-x-5 hover:border-primary/30 hover:bg-base-100 hover:shadow-[0_12px_40px_rgb(0,0,0,0.15)] focus:outline-none focus:ring-2 focus:ring-primary/50 md:-translate-x-6 md:hover:-translate-x-7"
|
||||
aria-label="Previous slide"
|
||||
>
|
||||
<ChevronLeft
|
||||
class="h-6 w-6 text-base-content/70 transition-colors duration-200 group-hover:text-primary"
|
||||
/>
|
||||
</button>
|
||||
|
||||
<div class="flex items-center justify-between text-sm text-base-content/60">
|
||||
<span>{match.date}</span>
|
||||
{#if !match.live}
|
||||
<Badge variant="default" size="sm">Completed</Badge>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</Card>
|
||||
{/each}
|
||||
</div>
|
||||
<!-- Next Button -->
|
||||
<button
|
||||
onclick={() => handleManualNavigation('next')}
|
||||
class="group absolute right-0 top-1/2 z-10 -translate-y-1/2 translate-x-4 rounded-md border border-base-content/10 bg-base-100/95 p-2 shadow-[0_8px_30px_rgb(0,0,0,0.12)] backdrop-blur-md transition-all duration-200 hover:translate-x-5 hover:border-primary/30 hover:bg-base-100 hover:shadow-[0_12px_40px_rgb(0,0,0,0.15)] focus:outline-none focus:ring-2 focus:ring-primary/50 md:translate-x-6 md:hover:translate-x-7"
|
||||
aria-label="Next slide"
|
||||
>
|
||||
<ChevronRight
|
||||
class="h-6 w-6 text-base-content/70 transition-colors duration-200 group-hover:text-primary"
|
||||
/>
|
||||
</button>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<!-- Dot Indicators - Only show if there are multiple slides -->
|
||||
{#if totalSlides > 1}
|
||||
<div class="mt-8 flex justify-center gap-2">
|
||||
{#each Array(totalSlides) as _, i}
|
||||
<button
|
||||
onclick={() => goToSlide(i)}
|
||||
class="h-2 w-2 rounded-full transition-all duration-300 hover:scale-125 focus:outline-none focus:ring-2 focus:ring-primary focus:ring-offset-2"
|
||||
class:bg-primary={i === currentSlide}
|
||||
class:w-8={i === currentSlide}
|
||||
class:bg-base-300={i !== currentSlide}
|
||||
aria-label={`Go to slide ${i + 1}`}
|
||||
></button>
|
||||
{/each}
|
||||
</div>
|
||||
{/if}
|
||||
{:else}
|
||||
<!-- No Matches Found -->
|
||||
<div class="rounded-lg border border-base-300 bg-base-100 p-12 text-center">
|
||||
<p class="text-lg text-base-content/60">No featured matches available at the moment.</p>
|
||||
<p class="mt-2 text-sm text-base-content/40">Check back soon for the latest matches!</p>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
@@ -10,11 +10,11 @@ export const load: PageLoad = async ({ parent }) => {
|
||||
await parent();
|
||||
|
||||
try {
|
||||
// Load featured matches (limit to 3 for homepage)
|
||||
const matchesData = await api.matches.getMatches({ limit: 3 });
|
||||
// Load featured matches for homepage carousel
|
||||
const matchesData = await api.matches.getMatches({ limit: 9 });
|
||||
|
||||
return {
|
||||
featuredMatches: matchesData.matches.slice(0, 3), // Ensure max 3 matches
|
||||
featuredMatches: matchesData.matches.slice(0, 9), // Get 9 matches for carousel (3 slides)
|
||||
meta: {
|
||||
title: 'CS2.WTF - Statistics for CS2 Matchmaking',
|
||||
description:
|
||||
|
||||
163
src/routes/api/[...path]/+server.ts
Normal file
@@ -0,0 +1,163 @@
|
||||
/**
|
||||
* SvelteKit API Route Handler
|
||||
*
|
||||
* This catch-all route proxies requests to the backend API.
|
||||
* Benefits over Vite proxy:
|
||||
* - Works in development, preview, and production
|
||||
* - Single code path for all environments
|
||||
* - Can add caching, rate limiting, auth in the future
|
||||
* - No CORS issues
|
||||
*
|
||||
* Backend selection:
|
||||
* - Set VITE_API_BASE_URL=http://localhost:8000 for local development
|
||||
* - Set VITE_API_BASE_URL=https://api.csgow.tf for production API
|
||||
*/
|
||||
|
||||
import { error, json } from '@sveltejs/kit';
|
||||
import type { RequestHandler } from './$types';
|
||||
import { env } from '$env/dynamic/private';
|
||||
|
||||
// Get backend API URL from environment variable
|
||||
// Note: We use $env/dynamic/private instead of import.meta.env for server-side access
|
||||
const API_BASE_URL = env.VITE_API_BASE_URL || 'https://api.csgow.tf';
|
||||
|
||||
/**
|
||||
* GET request handler
|
||||
* Forwards GET requests to the backend API
|
||||
*/
|
||||
export const GET: RequestHandler = async ({ params, url, request }) => {
|
||||
const path = params.path;
|
||||
const queryString = url.search;
|
||||
|
||||
// Construct full backend URL
|
||||
const backendUrl = `${API_BASE_URL}/${path}${queryString}`;
|
||||
|
||||
try {
|
||||
// Forward request to backend
|
||||
const response = await fetch(backendUrl, {
|
||||
method: 'GET',
|
||||
headers: {
|
||||
// Forward relevant headers
|
||||
Accept: request.headers.get('Accept') || 'application/json',
|
||||
'User-Agent': 'CS2.WTF Frontend'
|
||||
}
|
||||
});
|
||||
|
||||
// Check if request was successful
|
||||
if (!response.ok) {
|
||||
throw error(response.status, `Backend API returned ${response.status}`);
|
||||
}
|
||||
|
||||
// Get response data
|
||||
const data = await response.json();
|
||||
|
||||
// Return JSON response
|
||||
return json(data);
|
||||
} catch (err) {
|
||||
// Log error for debugging
|
||||
console.error(`[API Route] Error fetching ${backendUrl}:`, err);
|
||||
|
||||
// Handle fetch errors
|
||||
if (err instanceof Error && err.message.includes('fetch')) {
|
||||
throw error(503, `Unable to connect to backend API at ${API_BASE_URL}`);
|
||||
}
|
||||
|
||||
// Re-throw SvelteKit errors
|
||||
throw err;
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* POST request handler
|
||||
* Forwards POST requests to the backend API
|
||||
*/
|
||||
export const POST: RequestHandler = async ({ params, url, request }) => {
|
||||
const path = params.path;
|
||||
const queryString = url.search;
|
||||
|
||||
// Construct full backend URL
|
||||
const backendUrl = `${API_BASE_URL}/${path}${queryString}`;
|
||||
|
||||
try {
|
||||
// Get request body
|
||||
const body = await request.text();
|
||||
|
||||
// Forward request to backend
|
||||
const response = await fetch(backendUrl, {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': request.headers.get('Content-Type') || 'application/json',
|
||||
Accept: request.headers.get('Accept') || 'application/json',
|
||||
'User-Agent': 'CS2.WTF Frontend'
|
||||
},
|
||||
body
|
||||
});
|
||||
|
||||
// Check if request was successful
|
||||
if (!response.ok) {
|
||||
throw error(response.status, `Backend API returned ${response.status}`);
|
||||
}
|
||||
|
||||
// Get response data
|
||||
const data = await response.json();
|
||||
|
||||
// Return JSON response
|
||||
return json(data);
|
||||
} catch (err) {
|
||||
// Log error for debugging
|
||||
console.error(`[API Route] Error fetching ${backendUrl}:`, err);
|
||||
|
||||
// Handle fetch errors
|
||||
if (err instanceof Error && err.message.includes('fetch')) {
|
||||
throw error(503, `Unable to connect to backend API at ${API_BASE_URL}`);
|
||||
}
|
||||
|
||||
// Re-throw SvelteKit errors
|
||||
throw err;
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* DELETE request handler
|
||||
* Forwards DELETE requests to the backend API
|
||||
*/
|
||||
export const DELETE: RequestHandler = async ({ params, url, request }) => {
|
||||
const path = params.path;
|
||||
const queryString = url.search;
|
||||
|
||||
// Construct full backend URL
|
||||
const backendUrl = `${API_BASE_URL}/${path}${queryString}`;
|
||||
|
||||
try {
|
||||
// Forward request to backend
|
||||
const response = await fetch(backendUrl, {
|
||||
method: 'DELETE',
|
||||
headers: {
|
||||
Accept: request.headers.get('Accept') || 'application/json',
|
||||
'User-Agent': 'CS2.WTF Frontend'
|
||||
}
|
||||
});
|
||||
|
||||
// Check if request was successful
|
||||
if (!response.ok) {
|
||||
throw error(response.status, `Backend API returned ${response.status}`);
|
||||
}
|
||||
|
||||
// Get response data
|
||||
const data = await response.json();
|
||||
|
||||
// Return JSON response
|
||||
return json(data);
|
||||
} catch (err) {
|
||||
// Log error for debugging
|
||||
console.error(`[API Route] Error fetching ${backendUrl}:`, err);
|
||||
|
||||
// Handle fetch errors
|
||||
if (err instanceof Error && err.message.includes('fetch')) {
|
||||
throw error(503, `Unable to connect to backend API at ${API_BASE_URL}`);
|
||||
}
|
||||
|
||||
// Re-throw SvelteKit errors
|
||||
throw err;
|
||||
}
|
||||
};
|
||||
@@ -1,13 +1,20 @@
|
||||
<script lang="ts">
|
||||
import { Download, Calendar, Clock } from 'lucide-svelte';
|
||||
import { Download, Calendar, Clock, ArrowLeft } from 'lucide-svelte';
|
||||
import { goto } from '$app/navigation';
|
||||
import Badge from '$lib/components/ui/Badge.svelte';
|
||||
import Tabs from '$lib/components/ui/Tabs.svelte';
|
||||
import type { LayoutData } from './$types';
|
||||
import { getMapBackground, formatMapName } from '$lib/utils/mapAssets';
|
||||
|
||||
let { data, children }: { data: LayoutData; children: any } = $props();
|
||||
let { data, children }: { data: LayoutData; children: import('svelte').Snippet } = $props();
|
||||
|
||||
const { match } = data;
|
||||
|
||||
function handleBack() {
|
||||
// Navigate back to matches page
|
||||
goto('/matches');
|
||||
}
|
||||
|
||||
const tabs = [
|
||||
{ label: 'Overview', href: `/match/${match.match_id}` },
|
||||
{ label: 'Economy', href: `/match/${match.match_id}/economy` },
|
||||
@@ -26,17 +33,42 @@
|
||||
? `${Math.floor(match.duration / 60)}:${(match.duration % 60).toString().padStart(2, '0')}`
|
||||
: 'N/A';
|
||||
|
||||
const mapName = match.map.replace('de_', '').toUpperCase();
|
||||
const mapName = formatMapName(match.map);
|
||||
const mapBg = getMapBackground(match.map);
|
||||
|
||||
function handleImageError(event: Event) {
|
||||
const img = event.target as HTMLImageElement;
|
||||
img.src = '/images/map_screenshots/default.webp';
|
||||
}
|
||||
</script>
|
||||
|
||||
<!-- Match Header -->
|
||||
<div class="border-b border-base-300 bg-gradient-to-r from-primary/5 to-secondary/5">
|
||||
<div class="container mx-auto px-4 py-8">
|
||||
<!-- Match Header with Background -->
|
||||
<div class="relative overflow-hidden border-b border-base-300">
|
||||
<!-- Background Image -->
|
||||
<div class="absolute inset-0">
|
||||
<img src={mapBg} alt={mapName} class="h-full w-full object-cover" onerror={handleImageError} />
|
||||
<div class="absolute inset-0 bg-gradient-to-r from-black/90 via-black/70 to-black/50"></div>
|
||||
</div>
|
||||
|
||||
<div class="container relative mx-auto px-4 py-8">
|
||||
<!-- Back Button -->
|
||||
<div class="mb-4">
|
||||
<button
|
||||
onclick={handleBack}
|
||||
class="btn btn-ghost btn-sm gap-2 text-white/80 hover:text-white"
|
||||
>
|
||||
<ArrowLeft class="h-4 w-4" />
|
||||
<span>Back to Matches</span>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- Map Name -->
|
||||
<div class="mb-4 flex items-center justify-between">
|
||||
<div>
|
||||
<Badge variant="default" size="lg">{match.map}</Badge>
|
||||
<h1 class="mt-2 text-4xl font-bold text-base-content">{mapName}</h1>
|
||||
{#if match.map}
|
||||
<Badge variant="default" size="lg">{match.map}</Badge>
|
||||
{/if}
|
||||
<h1 class="mt-2 text-4xl font-bold text-white drop-shadow-lg">{mapName}</h1>
|
||||
</div>
|
||||
{#if match.demo_parsed}
|
||||
<button class="btn btn-outline btn-primary gap-2">
|
||||
@@ -49,18 +81,20 @@
|
||||
<!-- Score -->
|
||||
<div class="mb-6 flex items-center justify-center gap-6">
|
||||
<div class="text-center">
|
||||
<div class="text-sm font-medium text-base-content/60">TERRORISTS</div>
|
||||
<div class="font-mono text-5xl font-bold text-terrorist">{match.score_team_a}</div>
|
||||
<div class="text-sm font-medium text-white/70">TERRORISTS</div>
|
||||
<div class="font-mono text-5xl font-bold text-terrorist drop-shadow-lg">
|
||||
{match.score_team_a}
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-3xl font-bold text-base-content/40">:</div>
|
||||
<div class="text-3xl font-bold text-white/40">:</div>
|
||||
<div class="text-center">
|
||||
<div class="text-sm font-medium text-base-content/60">COUNTER-TERRORISTS</div>
|
||||
<div class="font-mono text-5xl font-bold text-ct">{match.score_team_b}</div>
|
||||
<div class="text-sm font-medium text-white/70">COUNTER-TERRORISTS</div>
|
||||
<div class="font-mono text-5xl font-bold text-ct drop-shadow-lg">{match.score_team_b}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Match Meta -->
|
||||
<div class="flex flex-wrap items-center justify-center gap-4 text-sm text-base-content/70">
|
||||
<div class="flex flex-wrap items-center justify-center gap-4 text-sm text-white/80">
|
||||
<div class="flex items-center gap-2">
|
||||
<Calendar class="h-4 w-4" />
|
||||
<span>{formattedDate}</span>
|
||||
@@ -76,7 +110,7 @@
|
||||
</div>
|
||||
|
||||
<!-- Tabs -->
|
||||
<div class="mt-6">
|
||||
<div class="mt-6 rounded-lg bg-black/30 p-4 backdrop-blur-sm">
|
||||
<Tabs {tabs} variant="bordered" size="md" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -2,11 +2,13 @@
|
||||
import { Trophy } from 'lucide-svelte';
|
||||
import Card from '$lib/components/ui/Card.svelte';
|
||||
import Badge from '$lib/components/ui/Badge.svelte';
|
||||
import PremierRatingBadge from '$lib/components/ui/PremierRatingBadge.svelte';
|
||||
import RoundTimeline from '$lib/components/RoundTimeline.svelte';
|
||||
import type { PageData } from './$types';
|
||||
import type { MatchPlayer } from '$lib/types';
|
||||
|
||||
let { data }: { data: PageData } = $props();
|
||||
const { match } = data;
|
||||
const { match, rounds } = data;
|
||||
|
||||
// Group players by team - use dynamic team IDs from API
|
||||
const uniqueTeamIds = match.players ? [...new Set(match.players.map((p) => p.team_id))] : [];
|
||||
@@ -25,7 +27,8 @@
|
||||
const totalKills = players.reduce((sum, p) => sum + p.kills, 0);
|
||||
const totalDeaths = players.reduce((sum, p) => sum + p.deaths, 0);
|
||||
const totalADR = players.reduce((sum, p) => sum + (p.adr || 0), 0);
|
||||
const avgKAST = players.reduce((sum, p) => sum + (p.kast || 0), 0) / players.length;
|
||||
const avgKAST =
|
||||
players.length > 0 ? players.reduce((sum, p) => sum + (p.kast || 0), 0) / players.length : 0;
|
||||
|
||||
return {
|
||||
kills: totalKills,
|
||||
@@ -116,6 +119,7 @@
|
||||
<th style="width: 100px;">ADR</th>
|
||||
<th style="width: 100px;">HS%</th>
|
||||
<th style="width: 100px;">KAST%</th>
|
||||
<th style="width: 180px;">Rating</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@@ -135,9 +139,18 @@
|
||||
<td class="font-mono font-semibold">{player.kills}</td>
|
||||
<td class="font-mono">{player.deaths}</td>
|
||||
<td class="font-mono">{player.assists}</td>
|
||||
<td class="font-mono">{player.adr?.toFixed(1) || '0.0'}</td>
|
||||
<td class="font-mono">{player.hs_percent?.toFixed(1) || '0.0'}%</td>
|
||||
<td class="font-mono">{(player.adr || 0).toFixed(1)}</td>
|
||||
<td class="font-mono">{(player.hs_percent || 0).toFixed(1)}%</td>
|
||||
<td class="font-mono">{player.kast?.toFixed(1) || '0.0'}%</td>
|
||||
<td>
|
||||
<PremierRatingBadge
|
||||
rating={player.rank_new}
|
||||
oldRating={player.rank_old}
|
||||
size="sm"
|
||||
showChange={true}
|
||||
showIcon={false}
|
||||
/>
|
||||
</td>
|
||||
</tr>
|
||||
{/each}
|
||||
</tbody>
|
||||
@@ -161,6 +174,7 @@
|
||||
<th style="width: 100px;">ADR</th>
|
||||
<th style="width: 100px;">HS%</th>
|
||||
<th style="width: 100px;">KAST%</th>
|
||||
<th style="width: 180px;">Rating</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@@ -180,9 +194,18 @@
|
||||
<td class="font-mono font-semibold">{player.kills}</td>
|
||||
<td class="font-mono">{player.deaths}</td>
|
||||
<td class="font-mono">{player.assists}</td>
|
||||
<td class="font-mono">{player.adr?.toFixed(1) || '0.0'}</td>
|
||||
<td class="font-mono">{player.hs_percent?.toFixed(1) || '0.0'}%</td>
|
||||
<td class="font-mono">{(player.adr || 0).toFixed(1)}</td>
|
||||
<td class="font-mono">{(player.hs_percent || 0).toFixed(1)}%</td>
|
||||
<td class="font-mono">{player.kast?.toFixed(1) || '0.0'}%</td>
|
||||
<td>
|
||||
<PremierRatingBadge
|
||||
rating={player.rank_new}
|
||||
oldRating={player.rank_old}
|
||||
size="sm"
|
||||
showChange={true}
|
||||
showIcon={false}
|
||||
/>
|
||||
</td>
|
||||
</tr>
|
||||
{/each}
|
||||
</tbody>
|
||||
@@ -191,15 +214,23 @@
|
||||
</div>
|
||||
</Card>
|
||||
|
||||
<!-- Coming Soon Badges for Round Timeline -->
|
||||
<Card padding="lg">
|
||||
<div class="text-center">
|
||||
<h3 class="mb-2 text-xl font-semibold text-base-content">Round Timeline</h3>
|
||||
<p class="text-base-content/60">
|
||||
Round-by-round timeline visualization coming soon. Will show bomb plants, defuses, and round
|
||||
winners.
|
||||
</p>
|
||||
<Badge variant="warning" size="md" class="mt-4">Coming in Future Update</Badge>
|
||||
</div>
|
||||
</Card>
|
||||
<!-- Round Timeline -->
|
||||
{#if rounds && rounds.rounds && rounds.rounds.length > 0}
|
||||
<RoundTimeline rounds={rounds.rounds} />
|
||||
{:else}
|
||||
<Card padding="lg">
|
||||
<div class="text-center">
|
||||
<h3 class="mb-2 text-xl font-semibold text-base-content">Round Timeline</h3>
|
||||
<p class="text-base-content/60">
|
||||
Round-by-round timeline data is not available for this match. This requires the demo to be
|
||||
fully parsed.
|
||||
</p>
|
||||
{#if !match.demo_parsed}
|
||||
<Badge variant="warning" size="md" class="mt-4">Demo Not Yet Parsed</Badge>
|
||||
{:else}
|
||||
<Badge variant="info" size="md" class="mt-4">Round Data Not Available</Badge>
|
||||
{/if}
|
||||
</div>
|
||||
</Card>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
21
src/routes/match/[id]/+page.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
import { api } from '$lib/api';
|
||||
import type { PageLoad } from './$types';
|
||||
|
||||
export const load: PageLoad = async ({ params }) => {
|
||||
const matchId = params.id;
|
||||
|
||||
try {
|
||||
// Fetch rounds data for the timeline visualization
|
||||
const rounds = await api.matches.getMatchRounds(matchId);
|
||||
|
||||
return {
|
||||
rounds
|
||||
};
|
||||
} catch (err) {
|
||||
console.error(`Failed to load rounds for match ${matchId}:`, err);
|
||||
// Return empty rounds if the endpoint fails (demo might not be parsed yet)
|
||||
return {
|
||||
rounds: null
|
||||
};
|
||||
}
|
||||
};
|
||||
@@ -20,8 +20,8 @@
|
||||
let selectedPlayer = $state<number | null>(null);
|
||||
|
||||
let messagePlayers = $state<MessagePlayer[]>([]);
|
||||
let filteredMessages = $state<typeof chatData.messages>([]);
|
||||
let messagesByRound = $state<Record<number, typeof chatData.messages>>({});
|
||||
let filteredMessages = $state<NonNullable<PageData['chatData']>['messages']>([]);
|
||||
let messagesByRound = $state<Record<number, NonNullable<PageData['chatData']>['messages']>>({});
|
||||
let rounds = $state<number[]>([]);
|
||||
let totalMessages = $state(0);
|
||||
let teamChatCount = $state(0);
|
||||
@@ -29,7 +29,7 @@
|
||||
|
||||
// Get player info for a message
|
||||
const getPlayerInfo = (playerId: number) => {
|
||||
const player = match.players?.find((p) => p.id === playerId);
|
||||
const player = match.players?.find((p) => p.id === String(playerId));
|
||||
return {
|
||||
name: player?.name || `Player ${playerId}`,
|
||||
team_id: player?.team_id || 0
|
||||
@@ -38,16 +38,16 @@
|
||||
|
||||
if (chatData) {
|
||||
// Get unique players who sent messages
|
||||
messagePlayers = Array.from(new Set(chatData.messages.map((m) => m.player_id))).map(
|
||||
(playerId) => {
|
||||
const player = match.players?.find((p) => p.id === playerId);
|
||||
messagePlayers = Array.from(new Set(chatData.messages.map((m) => m.player_id)))
|
||||
.filter((playerId): playerId is number => playerId !== undefined)
|
||||
.map((playerId) => {
|
||||
const player = match.players?.find((p) => p.id === String(playerId));
|
||||
return {
|
||||
id: playerId,
|
||||
name: player?.name || `Player ${playerId}`,
|
||||
team_id: player?.team_id
|
||||
team_id: player?.team_id || 0
|
||||
};
|
||||
}
|
||||
);
|
||||
});
|
||||
|
||||
// Filter messages
|
||||
const computeFilteredMessages = () => {
|
||||
@@ -199,7 +199,11 @@
|
||||
{round === 0 ? 'Warmup / Pre-Match' : `Round ${round}`}
|
||||
</h3>
|
||||
<Badge variant="default" size="sm">
|
||||
{messagesByRound[round].length} message{messagesByRound[round].length !== 1
|
||||
{messagesByRound[round] ? messagesByRound[round].length : 0} message{(messagesByRound[
|
||||
round
|
||||
]
|
||||
? messagesByRound[round].length
|
||||
: 0) !== 1
|
||||
? 's'
|
||||
: ''}
|
||||
</Badge>
|
||||
@@ -209,7 +213,7 @@
|
||||
<!-- Messages -->
|
||||
<div class="divide-y divide-base-300">
|
||||
{#each messagesByRound[round] as message}
|
||||
{@const playerInfo = getPlayerInfo(message.player_id)}
|
||||
{@const playerInfo = getPlayerInfo(message.player_id || 0)}
|
||||
<div class="p-4 transition-colors hover:bg-base-200/50">
|
||||
<div class="flex items-start gap-3">
|
||||
<!-- Player Avatar/Icon -->
|
||||
@@ -226,7 +230,7 @@
|
||||
<div class="min-w-0 flex-1">
|
||||
<div class="flex items-baseline gap-2">
|
||||
<a
|
||||
href="/player/{message.player_id}"
|
||||
href={`/player/${message.player_id || 0}`}
|
||||
class="font-semibold hover:underline"
|
||||
class:text-terrorist={playerInfo.team_id === 2}
|
||||
class:text-ct={playerInfo.team_id === 3}
|
||||
|
||||
@@ -1,38 +1,291 @@
|
||||
<script lang="ts">
|
||||
import { Crosshair, Target } from 'lucide-svelte';
|
||||
import { Target, Crosshair, AlertCircle } from 'lucide-svelte';
|
||||
import Card from '$lib/components/ui/Card.svelte';
|
||||
import Badge from '$lib/components/ui/Badge.svelte';
|
||||
import DataTable from '$lib/components/data-display/DataTable.svelte';
|
||||
import PieChart from '$lib/components/charts/PieChart.svelte';
|
||||
import type { PageData } from './$types';
|
||||
|
||||
let { data }: { data: PageData } = $props();
|
||||
const { match } = data;
|
||||
|
||||
// Check if we have player data to display
|
||||
const hasPlayerData = match.players && match.players.length > 0;
|
||||
|
||||
// Get unique team IDs dynamically
|
||||
const uniqueTeamIds = match.players ? [...new Set(match.players.map((p) => p.team_id))] : [];
|
||||
const firstTeamId = uniqueTeamIds[0] ?? 2;
|
||||
const secondTeamId = uniqueTeamIds[1] ?? 3;
|
||||
|
||||
// Calculate player stats with damage metrics
|
||||
const playersWithDamageStats = hasPlayerData
|
||||
? (match.players || []).map((player) => {
|
||||
const damage = player.dmg_enemy || 0;
|
||||
const avgDamagePerRound = match.max_rounds > 0 ? damage / match.max_rounds : 0;
|
||||
|
||||
// Note: Hit group breakdown would require weapon stats data
|
||||
// For now, using total damage metrics
|
||||
return {
|
||||
...player,
|
||||
damage,
|
||||
avgDamagePerRound
|
||||
};
|
||||
})
|
||||
: [];
|
||||
|
||||
// Sort by damage descending
|
||||
const sortedByDamage = hasPlayerData
|
||||
? [...playersWithDamageStats].sort((a, b) => b.damage - a.damage)
|
||||
: [];
|
||||
|
||||
// Team damage stats
|
||||
const teamAPlayers = hasPlayerData
|
||||
? playersWithDamageStats.filter((p) => p.team_id === firstTeamId)
|
||||
: [];
|
||||
const teamBPlayers = hasPlayerData
|
||||
? playersWithDamageStats.filter((p) => p.team_id === secondTeamId)
|
||||
: [];
|
||||
|
||||
const teamAStats = hasPlayerData
|
||||
? {
|
||||
totalDamage: teamAPlayers.reduce((sum, p) => sum + p.damage, 0),
|
||||
avgDamagePerPlayer:
|
||||
teamAPlayers.length > 0
|
||||
? teamAPlayers.reduce((sum, p) => sum + p.damage, 0) / teamAPlayers.length
|
||||
: 0
|
||||
}
|
||||
: { totalDamage: 0, avgDamagePerPlayer: 0 };
|
||||
|
||||
const teamBStats = hasPlayerData
|
||||
? {
|
||||
totalDamage: teamBPlayers.reduce((sum, p) => sum + p.damage, 0),
|
||||
avgDamagePerPlayer:
|
||||
teamBPlayers.length > 0
|
||||
? teamBPlayers.reduce((sum, p) => sum + p.damage, 0) / teamBPlayers.length
|
||||
: 0
|
||||
}
|
||||
: { totalDamage: 0, avgDamagePerPlayer: 0 };
|
||||
|
||||
// Top damage dealers (top 3)
|
||||
const topDamageDealers = sortedByDamage.slice(0, 3);
|
||||
|
||||
// Damage table columns
|
||||
const damageColumns = [
|
||||
{
|
||||
key: 'name' as const,
|
||||
label: 'Player',
|
||||
sortable: true,
|
||||
render: (value: unknown, row: (typeof playersWithDamageStats)[0]) => {
|
||||
const teamClass = row.team_id === firstTeamId ? 'text-terrorist' : 'text-ct';
|
||||
return `<a href="/player/${row.id}" class="font-medium hover:underline ${teamClass}">${value}</a>`;
|
||||
}
|
||||
},
|
||||
{
|
||||
key: 'damage' as const,
|
||||
label: 'Damage Dealt',
|
||||
sortable: true,
|
||||
align: 'right' as const,
|
||||
class: 'font-mono font-semibold',
|
||||
format: (value: unknown) => (typeof value === 'number' ? value.toLocaleString() : '0')
|
||||
},
|
||||
{
|
||||
key: 'avgDamagePerRound' as const,
|
||||
label: 'Avg Damage/Round',
|
||||
sortable: true,
|
||||
align: 'right' as const,
|
||||
class: 'font-mono',
|
||||
format: (value: unknown) => (typeof value === 'number' ? value.toFixed(1) : '0.0')
|
||||
},
|
||||
{
|
||||
key: 'headshot' as const,
|
||||
label: 'Headshots',
|
||||
sortable: true,
|
||||
align: 'center' as const,
|
||||
class: 'font-mono'
|
||||
},
|
||||
{
|
||||
key: 'kills' as const,
|
||||
label: 'Kills',
|
||||
sortable: true,
|
||||
align: 'center' as const,
|
||||
class: 'font-mono'
|
||||
},
|
||||
{
|
||||
key: 'dmg_team' as const,
|
||||
label: 'Team Damage',
|
||||
sortable: true,
|
||||
align: 'right' as const,
|
||||
class: 'font-mono',
|
||||
render: (value: unknown) => {
|
||||
const dmg = typeof value === 'number' ? value : 0;
|
||||
if (!dmg || dmg === 0) return '<span class="text-base-content/40">-</span>';
|
||||
return `<span class="text-error">${dmg.toLocaleString()}</span>`;
|
||||
}
|
||||
}
|
||||
];
|
||||
|
||||
// Hit group distribution data (placeholder - would need weapon stats data)
|
||||
// For now, showing utility damage breakdown instead
|
||||
const utilityDamageData = hasPlayerData
|
||||
? {
|
||||
labels: ['HE Grenades', 'Fire (Molotov/Inc)'],
|
||||
datasets: [
|
||||
{
|
||||
label: 'Utility Damage',
|
||||
data: [
|
||||
playersWithDamageStats.reduce((sum, p) => sum + (p.ud_he || 0), 0),
|
||||
playersWithDamageStats.reduce((sum, p) => sum + (p.ud_flames || 0), 0)
|
||||
],
|
||||
backgroundColor: [
|
||||
'rgba(34, 197, 94, 0.8)', // Green for HE
|
||||
'rgba(239, 68, 68, 0.8)' // Red for Fire
|
||||
],
|
||||
borderColor: ['rgba(34, 197, 94, 1)', 'rgba(239, 68, 68, 1)'],
|
||||
borderWidth: 2
|
||||
}
|
||||
]
|
||||
}
|
||||
: {
|
||||
labels: [],
|
||||
datasets: []
|
||||
};
|
||||
</script>
|
||||
|
||||
<div class="space-y-6">
|
||||
<svelte:head>
|
||||
<title>Damage Analysis - CS2.WTF</title>
|
||||
</svelte:head>
|
||||
|
||||
{#if !hasPlayerData}
|
||||
<Card padding="lg">
|
||||
<div class="text-center">
|
||||
<Crosshair class="mx-auto mb-4 h-16 w-16 text-error" />
|
||||
<h2 class="mb-2 text-2xl font-bold text-base-content">Damage Analysis</h2>
|
||||
<AlertCircle class="mx-auto mb-4 h-16 w-16 text-warning" />
|
||||
<h2 class="mb-2 text-2xl font-bold text-base-content">No Player Data Available</h2>
|
||||
<p class="mb-4 text-base-content/60">
|
||||
Damage dealt/received, hit group breakdown, damage heatmaps, and weapon range analysis.
|
||||
Detailed damage statistics are not available for this match.
|
||||
</p>
|
||||
<Badge variant="warning" size="lg">Coming in Future Update</Badge>
|
||||
<Badge variant="warning" size="lg">Player data unavailable</Badge>
|
||||
</div>
|
||||
</Card>
|
||||
{:else}
|
||||
<div class="space-y-6">
|
||||
<!-- Team Damage Summary Cards -->
|
||||
<div class="grid gap-6 md:grid-cols-2">
|
||||
<!-- Terrorists Damage Stats -->
|
||||
<Card padding="lg">
|
||||
<h3 class="mb-4 text-xl font-bold text-terrorist">Terrorists Damage</h3>
|
||||
<div class="grid grid-cols-2 gap-4">
|
||||
<div>
|
||||
<div class="text-sm text-base-content/60">Total Damage</div>
|
||||
<div class="text-3xl font-bold text-base-content">
|
||||
{teamAStats.totalDamage.toLocaleString()}
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="text-sm text-base-content/60">Avg per Player</div>
|
||||
<div class="text-3xl font-bold text-base-content">
|
||||
{Math.round(teamAStats.avgDamagePerPlayer).toLocaleString()}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</Card>
|
||||
|
||||
<div class="grid gap-6 md:grid-cols-3">
|
||||
<!-- Counter-Terrorists Damage Stats -->
|
||||
<Card padding="lg">
|
||||
<h3 class="mb-4 text-xl font-bold text-ct">Counter-Terrorists Damage</h3>
|
||||
<div class="grid grid-cols-2 gap-4">
|
||||
<div>
|
||||
<div class="text-sm text-base-content/60">Total Damage</div>
|
||||
<div class="text-3xl font-bold text-base-content">
|
||||
{teamBStats.totalDamage.toLocaleString()}
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="text-sm text-base-content/60">Avg per Player</div>
|
||||
<div class="text-3xl font-bold text-base-content">
|
||||
{Math.round(teamBStats.avgDamagePerPlayer).toLocaleString()}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</Card>
|
||||
</div>
|
||||
|
||||
<!-- Top Damage Dealers -->
|
||||
<div class="grid gap-6 md:grid-cols-3">
|
||||
{#each topDamageDealers as player, index}
|
||||
<Card padding="lg">
|
||||
<div class="mb-3 flex items-center justify-between">
|
||||
<div class="flex items-center gap-2">
|
||||
<Target
|
||||
class="h-5 w-5 {index === 0
|
||||
? 'text-warning'
|
||||
: index === 1
|
||||
? 'text-base-content/70'
|
||||
: 'text-base-content/50'}"
|
||||
/>
|
||||
<h3 class="font-semibold text-base-content">
|
||||
#{index + 1} Damage Dealer
|
||||
</h3>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
class="text-2xl font-bold {player.team_id === firstTeamId
|
||||
? 'text-terrorist'
|
||||
: 'text-ct'}"
|
||||
>
|
||||
{player.name}
|
||||
</div>
|
||||
<div class="mt-1 font-mono text-3xl font-bold text-primary">
|
||||
{player.damage.toLocaleString()}
|
||||
</div>
|
||||
<div class="mt-2 text-xs text-base-content/60">
|
||||
{player.avgDamagePerRound.toFixed(1)} ADR
|
||||
</div>
|
||||
</Card>
|
||||
{/each}
|
||||
</div>
|
||||
|
||||
<!-- Utility Damage Distribution -->
|
||||
<Card padding="lg">
|
||||
<Crosshair class="mb-2 h-8 w-8 text-error" />
|
||||
<h3 class="mb-1 text-lg font-semibold">Damage Summary</h3>
|
||||
<p class="text-sm text-base-content/60">Total damage dealt and received</p>
|
||||
<div class="mb-4">
|
||||
<h2 class="text-2xl font-bold text-base-content">Utility Damage Distribution</h2>
|
||||
<p class="text-sm text-base-content/60">
|
||||
Breakdown of damage dealt by grenades and fire across all players
|
||||
</p>
|
||||
</div>
|
||||
{#if utilityDamageData.datasets.length > 0 && utilityDamageData.datasets[0]?.data.some((v) => v > 0)}
|
||||
<PieChart data={utilityDamageData} height={300} />
|
||||
{:else}
|
||||
<div class="py-12 text-center text-base-content/40">
|
||||
<Crosshair class="mx-auto mb-2 h-12 w-12" />
|
||||
<p>No utility damage recorded for this match</p>
|
||||
</div>
|
||||
{/if}
|
||||
</Card>
|
||||
|
||||
<Card padding="lg">
|
||||
<Target class="mb-2 h-8 w-8 text-primary" />
|
||||
<h3 class="mb-1 text-lg font-semibold">Hit Groups</h3>
|
||||
<p class="text-sm text-base-content/60">Headshots, chest, legs, arms breakdown</p>
|
||||
<!-- Player Damage Table -->
|
||||
<Card padding="none">
|
||||
<div class="p-6">
|
||||
<h2 class="text-2xl font-bold text-base-content">Player Damage Statistics</h2>
|
||||
<p class="mt-1 text-sm text-base-content/60">Detailed damage breakdown for all players</p>
|
||||
</div>
|
||||
|
||||
<DataTable data={sortedByDamage} columns={damageColumns} striped hoverable />
|
||||
</Card>
|
||||
|
||||
<!-- Additional Info Note -->
|
||||
<Card padding="lg">
|
||||
<Crosshair class="mb-2 h-8 w-8 text-info" />
|
||||
<h3 class="mb-1 text-lg font-semibold">Range Analysis</h3>
|
||||
<p class="text-sm text-base-content/60">Damage effectiveness by distance</p>
|
||||
<div class="flex items-start gap-3">
|
||||
<AlertCircle class="h-5 w-5 flex-shrink-0 text-info" />
|
||||
<div class="text-sm">
|
||||
<h3 class="mb-1 font-semibold text-base-content">About Damage Statistics</h3>
|
||||
<p class="text-base-content/70">
|
||||
Damage statistics show total damage dealt to enemies throughout the match. Average
|
||||
damage per round (ADR) is calculated by dividing total damage by the number of rounds
|
||||
played. Hit group breakdown (head, chest, legs, etc.) is available in weapon-specific
|
||||
statistics.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</Card>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
@@ -45,63 +45,90 @@
|
||||
// Prepare data table columns
|
||||
const detailsColumns = [
|
||||
{
|
||||
key: 'name',
|
||||
key: 'name' as keyof (typeof playersWithStats)[0],
|
||||
label: 'Player',
|
||||
sortable: true,
|
||||
render: (value: string, row: (typeof playersWithStats)[0]) => {
|
||||
render: (value: string | number | boolean | undefined, row: (typeof playersWithStats)[0]) => {
|
||||
const strValue = value !== undefined ? String(value) : '';
|
||||
const teamClass = row.team_id === firstTeamId ? 'text-terrorist' : 'text-ct';
|
||||
return `<a href="/player/${row.id}" class="font-medium hover:underline ${teamClass}">${value}</a>`;
|
||||
return `<a href="/player/${row.id}" class="font-medium hover:underline ${teamClass}">${strValue}</a>`;
|
||||
}
|
||||
},
|
||||
{
|
||||
key: 'kills',
|
||||
key: 'kills' as keyof (typeof playersWithStats)[0],
|
||||
label: 'K',
|
||||
sortable: true,
|
||||
align: 'center' as const,
|
||||
class: 'font-mono font-semibold'
|
||||
},
|
||||
{ key: 'deaths', label: 'D', sortable: true, align: 'center' as const, class: 'font-mono' },
|
||||
{ key: 'assists', label: 'A', sortable: true, align: 'center' as const, class: 'font-mono' },
|
||||
{
|
||||
key: 'kd',
|
||||
key: 'deaths' as keyof (typeof playersWithStats)[0],
|
||||
label: 'D',
|
||||
sortable: true,
|
||||
align: 'center' as const,
|
||||
class: 'font-mono'
|
||||
},
|
||||
{
|
||||
key: 'assists' as keyof (typeof playersWithStats)[0],
|
||||
label: 'A',
|
||||
sortable: true,
|
||||
align: 'center' as const,
|
||||
class: 'font-mono'
|
||||
},
|
||||
{
|
||||
key: 'kd' as keyof (typeof playersWithStats)[0],
|
||||
label: 'K/D',
|
||||
sortable: true,
|
||||
align: 'center' as const,
|
||||
class: 'font-mono',
|
||||
format: (v: number) => v.toFixed(2)
|
||||
format: (v: string | number | undefined, _row: (typeof playersWithStats)[0]) =>
|
||||
v !== undefined ? (v as number).toFixed(2) : '0.00'
|
||||
},
|
||||
{
|
||||
key: 'adr',
|
||||
key: 'adr' as keyof (typeof playersWithStats)[0],
|
||||
label: 'ADR',
|
||||
sortable: true,
|
||||
align: 'center' as const,
|
||||
class: 'font-mono',
|
||||
format: (v: number) => v.toFixed(1)
|
||||
format: (v: string | number | undefined, _row: (typeof playersWithStats)[0]) =>
|
||||
v !== undefined ? (v as number).toFixed(1) : '0.0'
|
||||
},
|
||||
{
|
||||
key: 'hsPercent',
|
||||
key: 'hsPercent' as keyof (typeof playersWithStats)[0],
|
||||
label: 'HS%',
|
||||
sortable: true,
|
||||
align: 'center' as const,
|
||||
class: 'font-mono',
|
||||
format: (v: number) => `${v.toFixed(1)}%`
|
||||
format: (v: string | number | undefined, _row: (typeof playersWithStats)[0]) =>
|
||||
v !== undefined ? (v as number).toFixed(1) : '0.0'
|
||||
},
|
||||
{
|
||||
key: 'kast',
|
||||
key: 'kast' as keyof (typeof playersWithStats)[0],
|
||||
label: 'KAST%',
|
||||
sortable: true,
|
||||
align: 'center' as const,
|
||||
class: 'font-mono',
|
||||
format: (v: number) => `${v.toFixed(1)}%`
|
||||
format: (v: string | number | undefined, _row: (typeof playersWithStats)[0]) =>
|
||||
v !== undefined ? (v as number).toFixed(1) : '-'
|
||||
},
|
||||
{ key: 'mvp', label: 'MVP', sortable: true, align: 'center' as const, class: 'font-mono' },
|
||||
{
|
||||
key: 'mk_5',
|
||||
key: 'mvp' as keyof (typeof playersWithStats)[0],
|
||||
label: 'MVP',
|
||||
sortable: true,
|
||||
align: 'center' as const,
|
||||
class: 'font-mono'
|
||||
},
|
||||
{
|
||||
key: 'mk_5' as keyof (typeof playersWithStats)[0],
|
||||
label: 'Aces',
|
||||
sortable: true,
|
||||
align: 'center' as const,
|
||||
render: (value: number) => {
|
||||
if (value > 0) return `<span class="badge badge-warning badge-sm">${value}</span>`;
|
||||
render: (
|
||||
value: string | number | boolean | undefined,
|
||||
_row: (typeof playersWithStats)[0]
|
||||
) => {
|
||||
const numValue = value !== undefined ? (value as number) : 0;
|
||||
if (numValue > 0) return `<span class="badge badge-warning badge-sm">${numValue}</span>`;
|
||||
return '<span class="text-base-content/40">-</span>';
|
||||
}
|
||||
}
|
||||
@@ -142,39 +169,41 @@
|
||||
? playersWithStats.filter((p) => p.team_id === secondTeamId)
|
||||
: [];
|
||||
|
||||
const teamAStats = hasPlayerData
|
||||
? {
|
||||
totalDamage: teamAPlayers.reduce((sum, p) => sum + (p.dmg_enemy || 0), 0),
|
||||
totalUtilityDamage: teamAPlayers.reduce(
|
||||
(sum, p) => sum + (p.ud_he || 0) + (p.ud_flames || 0),
|
||||
0
|
||||
),
|
||||
totalFlashAssists: teamAPlayers.reduce((sum, p) => sum + (p.flash_assists || 0), 0),
|
||||
avgKAST:
|
||||
teamAPlayers.length > 0
|
||||
? (
|
||||
teamAPlayers.reduce((sum, p) => sum + (p.kast || 0), 0) / teamAPlayers.length
|
||||
).toFixed(1)
|
||||
: '0.0'
|
||||
}
|
||||
: { totalDamage: 0, totalUtilityDamage: 0, totalFlashAssists: 0, avgKAST: '0.0' };
|
||||
const teamAStats =
|
||||
hasPlayerData && teamAPlayers.length > 0
|
||||
? {
|
||||
totalDamage: teamAPlayers.reduce((sum, p) => sum + (p.dmg_enemy || 0), 0),
|
||||
totalUtilityDamage: teamAPlayers.reduce(
|
||||
(sum, p) => sum + (p.ud_he || 0) + (p.ud_flames || 0),
|
||||
0
|
||||
),
|
||||
totalFlashAssists: teamAPlayers.reduce((sum, p) => sum + (p.flash_assists || 0), 0),
|
||||
avgKAST:
|
||||
teamAPlayers.length > 0
|
||||
? (
|
||||
teamAPlayers.reduce((sum, p) => sum + (p.kast || 0), 0) / teamAPlayers.length
|
||||
).toFixed(1)
|
||||
: '0.0'
|
||||
}
|
||||
: { totalDamage: 0, totalUtilityDamage: 0, totalFlashAssists: 0, avgKAST: '0.0' };
|
||||
|
||||
const teamBStats = hasPlayerData
|
||||
? {
|
||||
totalDamage: teamBPlayers.reduce((sum, p) => sum + (p.dmg_enemy || 0), 0),
|
||||
totalUtilityDamage: teamBPlayers.reduce(
|
||||
(sum, p) => sum + (p.ud_he || 0) + (p.ud_flames || 0),
|
||||
0
|
||||
),
|
||||
totalFlashAssists: teamBPlayers.reduce((sum, p) => sum + (p.flash_assists || 0), 0),
|
||||
avgKAST:
|
||||
teamBPlayers.length > 0
|
||||
? (
|
||||
teamBPlayers.reduce((sum, p) => sum + (p.kast || 0), 0) / teamBPlayers.length
|
||||
).toFixed(1)
|
||||
: '0.0'
|
||||
}
|
||||
: { totalDamage: 0, totalUtilityDamage: 0, totalFlashAssists: 0, avgKAST: '0.0' };
|
||||
const teamBStats =
|
||||
hasPlayerData && teamBPlayers.length > 0
|
||||
? {
|
||||
totalDamage: teamBPlayers.reduce((sum, p) => sum + (p.dmg_enemy || 0), 0),
|
||||
totalUtilityDamage: teamBPlayers.reduce(
|
||||
(sum, p) => sum + (p.ud_he || 0) + (p.ud_flames || 0),
|
||||
0
|
||||
),
|
||||
totalFlashAssists: teamBPlayers.reduce((sum, p) => sum + (p.flash_assists || 0), 0),
|
||||
avgKAST:
|
||||
teamBPlayers.length > 0
|
||||
? (
|
||||
teamBPlayers.reduce((sum, p) => sum + (p.kast || 0), 0) / teamBPlayers.length
|
||||
).toFixed(1)
|
||||
: '0.0'
|
||||
}
|
||||
: { totalDamage: 0, totalUtilityDamage: 0, totalFlashAssists: 0, avgKAST: '0.0' };
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
@@ -267,8 +296,9 @@
|
||||
</Card>
|
||||
|
||||
<!-- Top Performers -->
|
||||
// Top Performers
|
||||
<div class="grid gap-6 md:grid-cols-3">
|
||||
{#if sortedPlayers.length > 0}
|
||||
{#if sortedPlayers.length > 0 && sortedPlayers[0]}
|
||||
<!-- Most Kills -->
|
||||
<Card padding="lg">
|
||||
<div class="mb-3 flex items-center gap-2">
|
||||
@@ -276,7 +306,9 @@
|
||||
<h3 class="font-semibold text-base-content">Most Kills</h3>
|
||||
</div>
|
||||
<div class="text-2xl font-bold text-base-content">{sortedPlayers[0].name}</div>
|
||||
<div class="mt-1 font-mono text-3xl font-bold text-primary">{sortedPlayers[0].kills}</div>
|
||||
<div class="mt-1 font-mono text-3xl font-bold text-primary">
|
||||
{sortedPlayers[0].kills}
|
||||
</div>
|
||||
<div class="mt-2 text-xs text-base-content/60">
|
||||
{sortedPlayers[0].deaths} deaths, {sortedPlayers[0].kd.toFixed(2)} K/D
|
||||
</div>
|
||||
@@ -284,35 +316,39 @@
|
||||
|
||||
<!-- Best K/D -->
|
||||
{@const bestKD = [...sortedPlayers].sort((a, b) => b.kd - a.kd)[0]}
|
||||
<Card padding="lg">
|
||||
<div class="mb-3 flex items-center gap-2">
|
||||
<Target class="h-5 w-5 text-success" />
|
||||
<h3 class="font-semibold text-base-content">Best K/D Ratio</h3>
|
||||
</div>
|
||||
<div class="text-2xl font-bold text-base-content">{bestKD.name}</div>
|
||||
<div class="mt-1 font-mono text-3xl font-bold text-success">{bestKD.kd.toFixed(2)}</div>
|
||||
<div class="mt-2 text-xs text-base-content/60">
|
||||
{bestKD.kills}K / {bestKD.deaths}D
|
||||
</div>
|
||||
</Card>
|
||||
{#if bestKD}
|
||||
<Card padding="lg">
|
||||
<div class="mb-3 flex items-center gap-2">
|
||||
<Target class="h-5 w-5 text-success" />
|
||||
<h3 class="font-semibold text-base-content">Best K/D Ratio</h3>
|
||||
</div>
|
||||
<div class="text-2xl font-bold text-base-content">{bestKD.name}</div>
|
||||
<div class="mt-1 font-mono text-3xl font-bold text-success">{bestKD.kd.toFixed(2)}</div>
|
||||
<div class="mt-2 text-xs text-base-content/60">
|
||||
{bestKD.kills}K / {bestKD.deaths}D
|
||||
</div>
|
||||
</Card>
|
||||
{/if}
|
||||
|
||||
<!-- Most Utility Damage -->
|
||||
{@const bestUtility = [...sortedPlayers].sort(
|
||||
(a, b) => (b.ud_he || 0) + (b.ud_flames || 0) - ((a.ud_he || 0) + (a.ud_flames || 0))
|
||||
)[0]}
|
||||
<Card padding="lg">
|
||||
<div class="mb-3 flex items-center gap-2">
|
||||
<Flame class="h-5 w-5 text-error" />
|
||||
<h3 class="font-semibold text-base-content">Most Utility Damage</h3>
|
||||
</div>
|
||||
<div class="text-2xl font-bold text-base-content">{bestUtility.name}</div>
|
||||
<div class="mt-1 font-mono text-3xl font-bold text-error">
|
||||
{((bestUtility.ud_he || 0) + (bestUtility.ud_flames || 0)).toLocaleString()}
|
||||
</div>
|
||||
<div class="mt-2 text-xs text-base-content/60">
|
||||
HE: {bestUtility.ud_he || 0} | Fire: {bestUtility.ud_flames || 0}
|
||||
</div>
|
||||
</Card>
|
||||
{#if bestUtility}
|
||||
<Card padding="lg">
|
||||
<div class="mb-3 flex items-center gap-2">
|
||||
<Flame class="h-5 w-5 text-error" />
|
||||
<h3 class="font-semibold text-base-content">Most Utility Damage</h3>
|
||||
</div>
|
||||
<div class="text-2xl font-bold text-base-content">{bestUtility.name}</div>
|
||||
<div class="mt-1 font-mono text-3xl font-bold text-error">
|
||||
{((bestUtility.ud_he || 0) + (bestUtility.ud_flames || 0)).toLocaleString()}
|
||||
</div>
|
||||
<div class="mt-2 text-xs text-base-content/60">
|
||||
HE: {bestUtility.ud_he || 0} | Fire: {bestUtility.ud_flames || 0}
|
||||
</div>
|
||||
</Card>
|
||||
{/if}
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -5,7 +5,6 @@
|
||||
import LineChart from '$lib/components/charts/LineChart.svelte';
|
||||
import DataTable from '$lib/components/data-display/DataTable.svelte';
|
||||
import type { PageData } from './$types';
|
||||
import type { ChartData } from 'chart.js';
|
||||
|
||||
interface TeamEconomy {
|
||||
round: number;
|
||||
@@ -30,7 +29,17 @@
|
||||
|
||||
// Only process if rounds data exists
|
||||
let teamEconomy = $state<TeamEconomy[]>([]);
|
||||
let equipmentChartData = $state<ChartData<'line'> | null>(null);
|
||||
let equipmentChartData = $state<{
|
||||
labels: string[];
|
||||
datasets: Array<{
|
||||
label: string;
|
||||
data: number[];
|
||||
borderColor?: string;
|
||||
backgroundColor?: string;
|
||||
fill?: boolean;
|
||||
tension?: number;
|
||||
}>;
|
||||
} | null>(null);
|
||||
let totalRounds = $state(0);
|
||||
let teamA_fullBuys = $state(0);
|
||||
let teamB_fullBuys = $state(0);
|
||||
@@ -41,12 +50,12 @@
|
||||
// Process rounds data to calculate team totals
|
||||
for (const roundData of roundsData.rounds) {
|
||||
const teamAPlayers = roundData.players.filter((p) => {
|
||||
const matchPlayer = match.players?.find((mp) => mp.id === p.player_id);
|
||||
const matchPlayer = match.players?.find((mp) => mp.id === String(p.player_id));
|
||||
return matchPlayer?.team_id === firstTeamId;
|
||||
});
|
||||
|
||||
const teamBPlayers = roundData.players.filter((p) => {
|
||||
const matchPlayer = match.players?.find((mp) => mp.id === p.player_id);
|
||||
const matchPlayer = match.players?.find((mp) => mp.id === String(p.player_id));
|
||||
return matchPlayer?.team_id === secondTeamId;
|
||||
});
|
||||
|
||||
@@ -116,61 +125,71 @@
|
||||
|
||||
// Table columns
|
||||
const tableColumns = [
|
||||
{ key: 'round', label: 'Round', sortable: true, align: 'center' as const },
|
||||
{
|
||||
key: 'teamA_buyType',
|
||||
key: 'round' as keyof TeamEconomy,
|
||||
label: 'Round',
|
||||
sortable: true,
|
||||
align: 'center' as const
|
||||
},
|
||||
{
|
||||
key: 'teamA_buyType' as keyof TeamEconomy,
|
||||
label: 'T Buy',
|
||||
sortable: true,
|
||||
render: (value: string) => {
|
||||
render: (value: string | number | boolean, _row: TeamEconomy) => {
|
||||
const strValue = value as string;
|
||||
const variant =
|
||||
value === 'Full Buy'
|
||||
strValue === 'Full Buy'
|
||||
? 'success'
|
||||
: value === 'Eco'
|
||||
: strValue === 'Eco'
|
||||
? 'error'
|
||||
: value === 'Force'
|
||||
: strValue === 'Force'
|
||||
? 'warning'
|
||||
: 'default';
|
||||
return `<span class="badge badge-${variant} badge-sm">${value}</span>`;
|
||||
return `<span class="badge badge-${variant} badge-sm">${strValue}</span>`;
|
||||
}
|
||||
},
|
||||
{
|
||||
key: 'teamA_equipment',
|
||||
key: 'teamA_equipment' as keyof TeamEconomy,
|
||||
label: 'T Equipment',
|
||||
sortable: true,
|
||||
align: 'right' as const,
|
||||
formatter: (value: number) => `$${value.toLocaleString()}`
|
||||
format: (value: string | number | boolean, _row: TeamEconomy) =>
|
||||
`$${(value as number).toLocaleString()}`
|
||||
},
|
||||
{
|
||||
key: 'teamB_buyType',
|
||||
key: 'teamB_buyType' as keyof TeamEconomy,
|
||||
label: 'CT Buy',
|
||||
sortable: true,
|
||||
render: (value: string) => {
|
||||
render: (value: string | number | boolean, _row: TeamEconomy) => {
|
||||
const strValue = value as string;
|
||||
const variant =
|
||||
value === 'Full Buy'
|
||||
strValue === 'Full Buy'
|
||||
? 'success'
|
||||
: value === 'Eco'
|
||||
: strValue === 'Eco'
|
||||
? 'error'
|
||||
: value === 'Force'
|
||||
: strValue === 'Force'
|
||||
? 'warning'
|
||||
: 'default';
|
||||
return `<span class="badge badge-${variant} badge-sm">${value}</span>`;
|
||||
return `<span class="badge badge-${variant} badge-sm">${strValue}</span>`;
|
||||
}
|
||||
},
|
||||
{
|
||||
key: 'teamB_equipment',
|
||||
key: 'teamB_equipment' as keyof TeamEconomy,
|
||||
label: 'CT Equipment',
|
||||
sortable: true,
|
||||
align: 'right' as const,
|
||||
formatter: (value: number) => `$${value.toLocaleString()}`
|
||||
format: (value: string | number | boolean, _row: TeamEconomy) =>
|
||||
`$${(value as number).toLocaleString()}`
|
||||
},
|
||||
{
|
||||
key: 'winner',
|
||||
key: 'winner' as keyof TeamEconomy,
|
||||
label: 'Winner',
|
||||
align: 'center' as const,
|
||||
render: (value: number) => {
|
||||
if (value === 2)
|
||||
render: (value: string | number | boolean, _row: TeamEconomy) => {
|
||||
const numValue = value as number;
|
||||
if (numValue === 2)
|
||||
return '<span class="badge badge-sm" style="background-color: rgb(249, 115, 22); color: white;">T</span>';
|
||||
if (value === 3)
|
||||
if (numValue === 3)
|
||||
return '<span class="badge badge-sm" style="background-color: rgb(59, 130, 246); color: white;">CT</span>';
|
||||
return '<span class="text-base-content/40">-</span>';
|
||||
}
|
||||
|
||||
@@ -50,39 +50,52 @@
|
||||
const teamBTotals = calcTeamTotals(teamBFlashStats);
|
||||
|
||||
// Table columns with fixed widths for consistency across multiple tables
|
||||
interface FlashStat {
|
||||
name: string;
|
||||
team_id: number;
|
||||
enemies_blinded: number;
|
||||
teammates_blinded: number;
|
||||
self_blinded: number;
|
||||
enemy_blind_duration: number;
|
||||
team_blind_duration: number;
|
||||
self_blind_duration: number;
|
||||
flash_assists: number;
|
||||
avg_blind_duration: string;
|
||||
}
|
||||
|
||||
const columns = [
|
||||
{ key: 'name', label: 'Player', sortable: true, width: '200px' },
|
||||
{ key: 'name' as const, label: 'Player', sortable: true, width: '200px' },
|
||||
{
|
||||
key: 'enemies_blinded',
|
||||
key: 'enemies_blinded' as const,
|
||||
label: 'Enemies Blinded',
|
||||
sortable: true,
|
||||
align: 'center' as const,
|
||||
width: '150px'
|
||||
},
|
||||
{
|
||||
key: 'avg_blind_duration',
|
||||
key: 'avg_blind_duration' as const,
|
||||
label: 'Avg Duration (s)',
|
||||
sortable: true,
|
||||
align: 'center' as const,
|
||||
formatter: (value: string) => `${value}s`,
|
||||
format: (value: string | number | boolean, _row: FlashStat) => `${value as string}s`,
|
||||
width: '150px'
|
||||
},
|
||||
{
|
||||
key: 'flash_assists',
|
||||
key: 'flash_assists' as const,
|
||||
label: 'Flash Assists',
|
||||
sortable: true,
|
||||
align: 'center' as const,
|
||||
width: '130px'
|
||||
},
|
||||
{
|
||||
key: 'teammates_blinded',
|
||||
key: 'teammates_blinded' as const,
|
||||
label: 'Team Flashed',
|
||||
sortable: true,
|
||||
align: 'center' as const,
|
||||
width: '130px'
|
||||
},
|
||||
{
|
||||
key: 'self_blinded',
|
||||
key: 'self_blinded' as const,
|
||||
label: 'Self Flashed',
|
||||
sortable: true,
|
||||
align: 'center' as const,
|
||||
|
||||
@@ -1,5 +1,15 @@
|
||||
<script lang="ts">
|
||||
import { Search, Filter, Calendar, Loader2 } from 'lucide-svelte';
|
||||
import {
|
||||
Search,
|
||||
Filter,
|
||||
Calendar,
|
||||
Loader2,
|
||||
Download,
|
||||
FileDown,
|
||||
FileJson,
|
||||
LayoutGrid,
|
||||
Table as TableIcon
|
||||
} from 'lucide-svelte';
|
||||
import { goto } from '$app/navigation';
|
||||
import { page } from '$app/stores';
|
||||
import { api } from '$lib/api';
|
||||
@@ -7,8 +17,17 @@
|
||||
import Card from '$lib/components/ui/Card.svelte';
|
||||
import Badge from '$lib/components/ui/Badge.svelte';
|
||||
import MatchCard from '$lib/components/match/MatchCard.svelte';
|
||||
import ShareCodeInput from '$lib/components/match/ShareCodeInput.svelte';
|
||||
import DataTable from '$lib/components/data-display/DataTable.svelte';
|
||||
import type { PageData } from './$types';
|
||||
import type { MatchListItem } from '$lib/types';
|
||||
import { exportMatchesToCSV, exportMatchesToJSON } from '$lib/utils/export';
|
||||
import {
|
||||
getMatchesState,
|
||||
scrollToMatch,
|
||||
clearMatchesState,
|
||||
storeMatchesState
|
||||
} from '$lib/utils/navigation';
|
||||
|
||||
let { data }: { data: PageData } = $props();
|
||||
|
||||
@@ -19,6 +38,29 @@
|
||||
|
||||
let searchQuery = $state(currentSearch);
|
||||
let showFilters = $state(false);
|
||||
let exportDropdownOpen = $state(false);
|
||||
let exportMessage = $state<string | null>(null);
|
||||
|
||||
// View mode state with localStorage persistence
|
||||
let viewMode = $state<'grid' | 'table'>('grid');
|
||||
|
||||
// Initialize view mode from localStorage on client side
|
||||
$effect(() => {
|
||||
if (!import.meta.env.SSR && typeof window !== 'undefined') {
|
||||
const savedViewMode = localStorage.getItem('matches-view-mode');
|
||||
if (savedViewMode === 'grid' || savedViewMode === 'table') {
|
||||
viewMode = savedViewMode;
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
// Save view mode to localStorage when it changes
|
||||
const setViewMode = (mode: 'grid' | 'table') => {
|
||||
viewMode = mode;
|
||||
if (!import.meta.env.SSR && typeof window !== 'undefined') {
|
||||
localStorage.setItem('matches-view-mode', mode);
|
||||
}
|
||||
};
|
||||
|
||||
// Pagination state
|
||||
let matches = $state<MatchListItem[]>(data.matches);
|
||||
@@ -31,6 +73,13 @@
|
||||
let sortOrder = $state<'desc' | 'asc'>('desc');
|
||||
let resultFilter = $state<'all' | 'win' | 'loss' | 'tie'>('all');
|
||||
|
||||
// Date range filter state
|
||||
let fromDate = $state<string>('');
|
||||
let toDate = $state<string>('');
|
||||
|
||||
// Future filters (disabled until API supports them)
|
||||
let rankTier = $state<string>('all');
|
||||
|
||||
// Reset pagination when data changes (new filters applied)
|
||||
$effect(() => {
|
||||
matches = data.matches;
|
||||
@@ -38,10 +87,103 @@
|
||||
nextPageTime = data.nextPageTime;
|
||||
});
|
||||
|
||||
// Infinite scroll setup
|
||||
let loadMoreTriggerRef = $state<HTMLDivElement | null>(null);
|
||||
let observer = $state<IntersectionObserver | null>(null);
|
||||
let loadMoreTimeout = $state<number | null>(null);
|
||||
|
||||
// Set up intersection observer for infinite scroll
|
||||
$effect(() => {
|
||||
if (typeof window !== 'undefined' && loadMoreTriggerRef && hasMore && !isLoadingMore) {
|
||||
// Clean up existing observer
|
||||
if (observer) {
|
||||
observer.disconnect();
|
||||
}
|
||||
|
||||
// Create new observer
|
||||
observer = new IntersectionObserver(
|
||||
(entries) => {
|
||||
entries.forEach((entry) => {
|
||||
if (entry.isIntersecting && hasMore && !isLoadingMore) {
|
||||
// Debounce the load more call to prevent too frequent requests
|
||||
if (loadMoreTimeout) {
|
||||
clearTimeout(loadMoreTimeout);
|
||||
}
|
||||
loadMoreTimeout = window.setTimeout(() => {
|
||||
loadMore();
|
||||
}, 300); // 300ms debounce
|
||||
}
|
||||
});
|
||||
},
|
||||
{
|
||||
root: null,
|
||||
rootMargin: '100px', // Trigger 100px before element is visible
|
||||
threshold: 0.1
|
||||
}
|
||||
);
|
||||
|
||||
observer.observe(loadMoreTriggerRef);
|
||||
|
||||
// Cleanup function
|
||||
return () => {
|
||||
if (observer) {
|
||||
observer.disconnect();
|
||||
}
|
||||
if (loadMoreTimeout) {
|
||||
clearTimeout(loadMoreTimeout);
|
||||
}
|
||||
};
|
||||
}
|
||||
return () => {}; // Return empty cleanup function for server-side rendering
|
||||
});
|
||||
|
||||
// Track window width for responsive slides
|
||||
// Scroll restoration when returning from a match detail page
|
||||
$effect(() => {
|
||||
const navState = getMatchesState();
|
||||
if (navState) {
|
||||
// Check if we need to load more matches to find the target match
|
||||
const targetMatch = matches.find((m) => m.match_id === navState.matchId);
|
||||
|
||||
if (targetMatch) {
|
||||
// Match found, scroll to it
|
||||
scrollToMatch(navState.matchId, navState.scrollY);
|
||||
clearMatchesState();
|
||||
} else if (hasMore && matches.length < navState.loadedCount) {
|
||||
// Match not found but we had more matches loaded before, try loading more
|
||||
loadMore().then(() => {
|
||||
// After loading, check again
|
||||
const found = matches.find((m) => m.match_id === navState.matchId);
|
||||
if (found) {
|
||||
scrollToMatch(navState.matchId, navState.scrollY);
|
||||
} else {
|
||||
// Still not found, just use scroll position
|
||||
window.scrollTo({ top: navState.scrollY, behavior: 'instant' });
|
||||
}
|
||||
clearMatchesState();
|
||||
});
|
||||
} else {
|
||||
// Match not found and can't load more, fallback to scroll position
|
||||
window.scrollTo({ top: navState.scrollY, behavior: 'instant' });
|
||||
clearMatchesState();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
// Computed filtered and sorted matches
|
||||
const displayMatches = $derived.by(() => {
|
||||
let filtered = [...matches];
|
||||
|
||||
// Apply date range filter
|
||||
if (fromDate || toDate) {
|
||||
filtered = filtered.filter((match) => {
|
||||
const matchDate = new Date(match.date);
|
||||
if (fromDate && matchDate < new Date(fromDate + 'T00:00:00')) return false;
|
||||
if (toDate && matchDate > new Date(toDate + 'T23:59:59')) return false;
|
||||
return true;
|
||||
});
|
||||
}
|
||||
|
||||
// Apply result filter
|
||||
if (resultFilter !== 'all') {
|
||||
filtered = filtered.filter((match) => {
|
||||
@@ -81,26 +223,89 @@
|
||||
if (searchQuery) params.set('search', searchQuery);
|
||||
if (currentMap) params.set('map', currentMap);
|
||||
if (currentPlayerId) params.set('player_id', currentPlayerId);
|
||||
if (fromDate) params.set('from_date', fromDate);
|
||||
if (toDate) params.set('to_date', toDate);
|
||||
|
||||
goto(`/matches?${params.toString()}`);
|
||||
};
|
||||
|
||||
// Date preset functions
|
||||
const setDatePreset = (preset: 'today' | 'week' | 'month' | 'all') => {
|
||||
const now = new Date();
|
||||
if (preset === 'all') {
|
||||
fromDate = '';
|
||||
toDate = '';
|
||||
} else if (preset === 'today') {
|
||||
const dateStr = now.toISOString().substring(0, 10);
|
||||
fromDate = toDate = dateStr;
|
||||
} else if (preset === 'week') {
|
||||
const weekAgo = new Date(now.getTime() - 7 * 24 * 60 * 60 * 1000);
|
||||
fromDate = weekAgo.toISOString().substring(0, 10);
|
||||
toDate = now.toISOString().substring(0, 10);
|
||||
} else if (preset === 'month') {
|
||||
const monthAgo = new Date(now.getTime() - 30 * 24 * 60 * 60 * 1000);
|
||||
fromDate = monthAgo.toISOString().substring(0, 10);
|
||||
toDate = now.toISOString().substring(0, 10);
|
||||
}
|
||||
};
|
||||
|
||||
// Clear all filters function
|
||||
const clearAllFilters = () => {
|
||||
fromDate = '';
|
||||
toDate = '';
|
||||
rankTier = 'all';
|
||||
resultFilter = 'all';
|
||||
sortBy = 'date';
|
||||
sortOrder = 'desc';
|
||||
};
|
||||
|
||||
// Count active client-side filters
|
||||
const activeFilterCount = $derived(() => {
|
||||
let count = 0;
|
||||
if (fromDate) count++;
|
||||
if (toDate) count++;
|
||||
if (resultFilter !== 'all') count++;
|
||||
if (sortBy !== 'date') count++;
|
||||
if (sortOrder !== 'desc') count++;
|
||||
return count;
|
||||
});
|
||||
|
||||
const loadMore = async () => {
|
||||
if (!hasMore || isLoadingMore || !nextPageTime) return;
|
||||
// Prevent multiple simultaneous requests
|
||||
if (!hasMore || isLoadingMore || matches.length === 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Clear any pending auto-load timeout
|
||||
if (loadMoreTimeout) {
|
||||
clearTimeout(loadMoreTimeout);
|
||||
loadMoreTimeout = null;
|
||||
}
|
||||
|
||||
// Get the date of the last match for pagination
|
||||
const lastMatch = matches[matches.length - 1];
|
||||
if (!lastMatch) {
|
||||
isLoadingMore = false;
|
||||
return;
|
||||
}
|
||||
|
||||
const lastMatchDate = lastMatch.date;
|
||||
const lastMatchTimestamp = Math.floor(new Date(lastMatchDate).getTime() / 1000);
|
||||
|
||||
isLoadingMore = true;
|
||||
try {
|
||||
const matchesData = await api.matches.getMatches({
|
||||
limit: 50,
|
||||
limit: 20,
|
||||
map: data.filters.map,
|
||||
player_id: data.filters.playerId,
|
||||
before_time: nextPageTime
|
||||
player_id: data.filters.playerId ? String(data.filters.playerId) : undefined,
|
||||
before_time: lastMatchTimestamp
|
||||
});
|
||||
|
||||
// Append new matches to existing list
|
||||
matches = [...matches, ...matchesData.matches];
|
||||
hasMore = matchesData.has_more;
|
||||
nextPageTime = matchesData.next_page_time;
|
||||
console.log('Updated state:', { matchesLength: matches.length, hasMore, nextPageTime });
|
||||
} catch (error) {
|
||||
console.error('Failed to load more matches:', error);
|
||||
// Show error toast or message here
|
||||
@@ -118,18 +323,183 @@
|
||||
'de_ancient',
|
||||
'de_anubis'
|
||||
];
|
||||
|
||||
// Export handlers
|
||||
const handleExportCSV = () => {
|
||||
try {
|
||||
exportMatchesToCSV(displayMatches);
|
||||
exportMessage = `Successfully exported ${displayMatches.length} matches to CSV`;
|
||||
exportDropdownOpen = false;
|
||||
setTimeout(() => {
|
||||
exportMessage = null;
|
||||
}, 3000);
|
||||
} catch (error) {
|
||||
exportMessage = error instanceof Error ? error.message : 'Failed to export matches';
|
||||
setTimeout(() => {
|
||||
exportMessage = null;
|
||||
}, 3000);
|
||||
}
|
||||
};
|
||||
|
||||
const handleExportJSON = () => {
|
||||
try {
|
||||
exportMatchesToJSON(displayMatches);
|
||||
exportMessage = `Successfully exported ${displayMatches.length} matches to JSON`;
|
||||
exportDropdownOpen = false;
|
||||
setTimeout(() => {
|
||||
exportMessage = null;
|
||||
}, 3000);
|
||||
} catch (error) {
|
||||
exportMessage = error instanceof Error ? error.message : 'Failed to export matches';
|
||||
setTimeout(() => {
|
||||
exportMessage = null;
|
||||
}, 3000);
|
||||
}
|
||||
};
|
||||
|
||||
// Table column definitions
|
||||
const formatDuration = (seconds: number): string => {
|
||||
const minutes = Math.floor(seconds / 60);
|
||||
const remainingSeconds = seconds % 60;
|
||||
return `${minutes}:${remainingSeconds.toString().padStart(2, '0')}`;
|
||||
};
|
||||
|
||||
const formatDate = (dateString: string): string => {
|
||||
const date = new Date(dateString);
|
||||
return date.toLocaleDateString(undefined, {
|
||||
year: 'numeric',
|
||||
month: 'short',
|
||||
day: 'numeric'
|
||||
});
|
||||
};
|
||||
|
||||
const capitalizeMap = (map: string): string => {
|
||||
return map
|
||||
.split('_')
|
||||
.map((word) => word.charAt(0).toUpperCase() + word.slice(1))
|
||||
.join(' ');
|
||||
};
|
||||
|
||||
const getResultBadge = (match: MatchListItem): string => {
|
||||
const teamAWon = match.score_team_a > match.score_team_b;
|
||||
const teamBWon = match.score_team_b > match.score_team_a;
|
||||
|
||||
if (teamAWon) {
|
||||
return '<span class="badge badge-success">Win</span>';
|
||||
} else if (teamBWon) {
|
||||
return '<span class="badge badge-error">Loss</span>';
|
||||
} else {
|
||||
return '<span class="badge badge-warning">Tie</span>';
|
||||
}
|
||||
};
|
||||
|
||||
const tableColumns = [
|
||||
{
|
||||
key: 'date' as const,
|
||||
label: 'Date',
|
||||
sortable: true,
|
||||
width: '150px',
|
||||
format: (value: string | number | boolean | undefined, _row: MatchListItem) =>
|
||||
formatDate(value as string)
|
||||
},
|
||||
{
|
||||
key: 'map' as const,
|
||||
label: 'Map',
|
||||
sortable: true,
|
||||
width: '150px',
|
||||
format: (value: string | number | boolean | undefined, _row: MatchListItem) =>
|
||||
capitalizeMap(value as string)
|
||||
},
|
||||
{
|
||||
key: 'score_team_a' as const,
|
||||
label: 'Score',
|
||||
sortable: true,
|
||||
width: '120px',
|
||||
align: 'center' as const,
|
||||
render: (_value: string | number | boolean | undefined, row: MatchListItem) => {
|
||||
const teamAColor = 'text-[#F97316]'; // Terrorist orange
|
||||
const teamBColor = 'text-[#06B6D4]'; // CT cyan
|
||||
return `<span class="${teamAColor} font-bold">${row.score_team_a}</span> - <span class="${teamBColor} font-bold">${row.score_team_b}</span>`;
|
||||
}
|
||||
},
|
||||
{
|
||||
key: 'duration' as const,
|
||||
label: 'Duration',
|
||||
sortable: true,
|
||||
width: '100px',
|
||||
align: 'center' as const,
|
||||
format: (value: string | number | boolean | undefined, _row: MatchListItem) =>
|
||||
formatDuration(value as number)
|
||||
},
|
||||
{
|
||||
key: 'player_count' as const,
|
||||
label: 'Players',
|
||||
sortable: false,
|
||||
width: '90px',
|
||||
align: 'center' as const,
|
||||
format: (value: string | number | boolean | undefined, _row: MatchListItem) =>
|
||||
value ? `${value as number}` : '-'
|
||||
},
|
||||
{
|
||||
key: 'demo_parsed' as const,
|
||||
label: 'Result',
|
||||
sortable: false,
|
||||
width: '100px',
|
||||
align: 'center' as const,
|
||||
render: (_value: string | number | boolean | undefined, row: MatchListItem) =>
|
||||
getResultBadge(row)
|
||||
},
|
||||
{
|
||||
key: 'match_id' as keyof MatchListItem,
|
||||
label: 'Actions',
|
||||
sortable: false,
|
||||
width: '120px',
|
||||
align: 'center' as const,
|
||||
render: (value: string | number | boolean | undefined, row: MatchListItem) =>
|
||||
`<a href="/match/${value}" class="btn btn-primary btn-sm" data-match-id="${row.match_id}" data-table-link="true">View</a>`
|
||||
}
|
||||
];
|
||||
|
||||
// Handle table link clicks to store navigation state
|
||||
function handleTableLinkClick(event: MouseEvent) {
|
||||
const target = event.target as HTMLElement;
|
||||
const link = target.closest('a[data-table-link]');
|
||||
if (link) {
|
||||
const matchId = link.getAttribute('data-match-id');
|
||||
if (matchId) {
|
||||
storeMatchesState(matchId, matches.length);
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Matches - CS2.WTF</title>
|
||||
</svelte:head>
|
||||
|
||||
<!-- Export Toast Notification -->
|
||||
{#if exportMessage}
|
||||
<div class="toast toast-center toast-top z-50">
|
||||
<div class="alert alert-success shadow-lg">
|
||||
<div>
|
||||
<Download class="h-5 w-5" />
|
||||
<span>{exportMessage}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<div class="container mx-auto px-4 py-8">
|
||||
<div class="mb-8">
|
||||
<h1 class="mb-2 text-4xl font-bold">Matches</h1>
|
||||
<p class="text-base-content/60">Browse and search through CS2 competitive matches</p>
|
||||
</div>
|
||||
|
||||
<!-- Share Code Input -->
|
||||
<Card padding="lg" class="mb-8">
|
||||
<ShareCodeInput />
|
||||
</Card>
|
||||
|
||||
<!-- Search & Filters -->
|
||||
<Card padding="lg" class="mb-8">
|
||||
<form
|
||||
@@ -158,12 +528,103 @@
|
||||
<Button type="button" variant="ghost" onclick={() => (showFilters = !showFilters)}>
|
||||
<Filter class="mr-2 h-5 w-5" />
|
||||
Filters
|
||||
{#if activeFilterCount() > 0}
|
||||
<Badge variant="info" size="sm" class="ml-2">{activeFilterCount()}</Badge>
|
||||
{/if}
|
||||
</Button>
|
||||
|
||||
<!-- Export Dropdown -->
|
||||
<div class="dropdown dropdown-end">
|
||||
<Button
|
||||
type="button"
|
||||
variant="ghost"
|
||||
disabled={displayMatches.length === 0}
|
||||
onclick={() => (exportDropdownOpen = !exportDropdownOpen)}
|
||||
>
|
||||
<Download class="mr-2 h-5 w-5" />
|
||||
Export
|
||||
</Button>
|
||||
{#if exportDropdownOpen}
|
||||
<ul class="menu dropdown-content z-[1] mt-2 w-52 rounded-box bg-base-100 p-2 shadow-lg">
|
||||
<li>
|
||||
<button type="button" onclick={handleExportCSV}>
|
||||
<FileDown class="h-4 w-4" />
|
||||
Export as CSV
|
||||
</button>
|
||||
</li>
|
||||
<li>
|
||||
<button type="button" onclick={handleExportJSON}>
|
||||
<FileJson class="h-4 w-4" />
|
||||
Export as JSON
|
||||
</button>
|
||||
</li>
|
||||
</ul>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Filter Panel (Collapsible) -->
|
||||
{#if showFilters}
|
||||
<div class="space-y-4 border-t border-base-300 pt-4">
|
||||
<!-- Date Range Filter -->
|
||||
<div>
|
||||
<h3 class="mb-3 font-semibold text-base-content">Filter by Date Range</h3>
|
||||
<div class="flex flex-col gap-3">
|
||||
<!-- Preset Buttons -->
|
||||
<div class="flex flex-wrap gap-2">
|
||||
<button
|
||||
type="button"
|
||||
class="btn btn-outline btn-sm"
|
||||
onclick={() => setDatePreset('today')}
|
||||
>
|
||||
Today
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
class="btn btn-outline btn-sm"
|
||||
onclick={() => setDatePreset('week')}
|
||||
>
|
||||
This Week
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
class="btn btn-outline btn-sm"
|
||||
onclick={() => setDatePreset('month')}
|
||||
>
|
||||
This Month
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
class="btn btn-outline btn-sm"
|
||||
onclick={() => setDatePreset('all')}
|
||||
>
|
||||
All Time
|
||||
</button>
|
||||
</div>
|
||||
<!-- Date Inputs -->
|
||||
<div class="flex flex-col gap-2 sm:flex-row">
|
||||
<div class="flex flex-1 items-center gap-2">
|
||||
<label for="from-date" class="text-sm font-medium">From:</label>
|
||||
<input
|
||||
id="from-date"
|
||||
type="date"
|
||||
bind:value={fromDate}
|
||||
class="input input-sm input-bordered flex-1"
|
||||
/>
|
||||
</div>
|
||||
<div class="flex flex-1 items-center gap-2">
|
||||
<label for="to-date" class="text-sm font-medium">To:</label>
|
||||
<input
|
||||
id="to-date"
|
||||
type="date"
|
||||
bind:value={toDate}
|
||||
class="input input-sm input-bordered flex-1"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Map Filter -->
|
||||
<div>
|
||||
<h3 class="mb-3 font-semibold text-base-content">Filter by Map</h3>
|
||||
@@ -180,6 +641,51 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Rank Tier Filter (Coming Soon) -->
|
||||
<div>
|
||||
<div class="mb-3 flex items-center gap-2">
|
||||
<h3 class="font-semibold text-base-content">Filter by Rank Tier</h3>
|
||||
<div
|
||||
class="tooltip"
|
||||
data-tip="This filter will be available when the API supports rank data"
|
||||
>
|
||||
<Badge variant="warning" size="sm">Coming Soon</Badge>
|
||||
</div>
|
||||
</div>
|
||||
<select
|
||||
bind:value={rankTier}
|
||||
class="select select-bordered select-sm w-full max-w-xs"
|
||||
disabled
|
||||
>
|
||||
<option value="all">All Ranks</option>
|
||||
<option value="0-5000"><5,000 (Gray)</option>
|
||||
<option value="5000-10000">5,000-10,000 (Blue)</option>
|
||||
<option value="10000-15000">10,000-15,000 (Purple)</option>
|
||||
<option value="15000-20000">15,000-20,000 (Pink)</option>
|
||||
<option value="20000-25000">20,000-25,000 (Red)</option>
|
||||
<option value="25000-30000">25,000+ (Gold)</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<!-- Game Mode Filter (Coming Soon) -->
|
||||
<div>
|
||||
<div class="mb-3 flex items-center gap-2">
|
||||
<h3 class="font-semibold text-base-content">Filter by Game Mode</h3>
|
||||
<div
|
||||
class="tooltip"
|
||||
data-tip="This filter will be available when the API supports game mode data"
|
||||
>
|
||||
<Badge variant="warning" size="sm">Coming Soon</Badge>
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex flex-wrap gap-2">
|
||||
<button type="button" class="btn btn-sm" disabled>All Modes</button>
|
||||
<button type="button" class="btn btn-outline btn-sm" disabled>Premier</button>
|
||||
<button type="button" class="btn btn-outline btn-sm" disabled>Competitive</button>
|
||||
<button type="button" class="btn btn-outline btn-sm" disabled>Wingman</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Result Filter -->
|
||||
<div>
|
||||
<h3 class="mb-3 font-semibold text-base-content">Filter by Result</h3>
|
||||
@@ -241,12 +747,19 @@
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Clear All Filters Button -->
|
||||
<div class="border-t border-base-300 pt-3">
|
||||
<button type="button" class="btn btn-ghost btn-sm w-full" onclick={clearAllFilters}>
|
||||
Clear All Filters
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</form>
|
||||
|
||||
<!-- Active Filters -->
|
||||
{#if currentMap || currentPlayerId || currentSearch}
|
||||
{#if currentMap || currentPlayerId || currentSearch || fromDate || toDate}
|
||||
<div class="mt-4 flex flex-wrap items-center gap-2 border-t border-base-300 pt-4">
|
||||
<span class="text-sm font-medium text-base-content/70">Active Filters:</span>
|
||||
{#if currentSearch}
|
||||
@@ -258,31 +771,104 @@
|
||||
{#if currentPlayerId}
|
||||
<Badge variant="info">Player ID: {currentPlayerId}</Badge>
|
||||
{/if}
|
||||
<Button variant="ghost" size="sm" href="/matches">Clear All</Button>
|
||||
{#if fromDate}
|
||||
<Badge variant="info">From: {fromDate}</Badge>
|
||||
{/if}
|
||||
{#if toDate}
|
||||
<Badge variant="info">To: {toDate}</Badge>
|
||||
{/if}
|
||||
<Button
|
||||
variant="ghost"
|
||||
size="sm"
|
||||
onclick={() => {
|
||||
clearAllFilters();
|
||||
goto('/matches');
|
||||
}}>Clear All</Button
|
||||
>
|
||||
</div>
|
||||
{/if}
|
||||
</Card>
|
||||
|
||||
<!-- Results Summary -->
|
||||
{#if matches.length > 0 && resultFilter !== 'all'}
|
||||
<div class="mb-4">
|
||||
<!-- View Mode Toggle & Results Summary -->
|
||||
<div class="mb-4 flex flex-wrap items-center justify-between gap-4">
|
||||
<!-- View Mode Toggle -->
|
||||
<div class="join">
|
||||
<button
|
||||
type="button"
|
||||
class="btn join-item"
|
||||
class:btn-active={viewMode === 'grid'}
|
||||
onclick={() => setViewMode('grid')}
|
||||
aria-label="Grid view"
|
||||
>
|
||||
<LayoutGrid class="h-5 w-5" />
|
||||
<span class="ml-2 hidden sm:inline">Grid</span>
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
class="btn join-item"
|
||||
class:btn-active={viewMode === 'table'}
|
||||
onclick={() => setViewMode('table')}
|
||||
aria-label="Table view"
|
||||
>
|
||||
<TableIcon class="h-5 w-5" />
|
||||
<span class="ml-2 hidden sm:inline">Table</span>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- Results Summary -->
|
||||
{#if matches.length > 0 && resultFilter !== 'all'}
|
||||
<Badge variant="info">
|
||||
Showing {displayMatches.length} of {matches.length} matches
|
||||
</Badge>
|
||||
</div>
|
||||
{/if}
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<!-- Matches Grid -->
|
||||
<!-- Matches Display (Grid or Table) -->
|
||||
{#if displayMatches.length > 0}
|
||||
<div class="grid gap-6 sm:grid-cols-2 lg:grid-cols-3">
|
||||
{#each displayMatches as match}
|
||||
<MatchCard {match} />
|
||||
{/each}
|
||||
</div>
|
||||
{#if viewMode === 'grid'}
|
||||
<!-- Grid View -->
|
||||
<div class="grid gap-6 sm:grid-cols-2 lg:grid-cols-3">
|
||||
{#each displayMatches as match}
|
||||
<MatchCard {match} loadedCount={matches.length} />
|
||||
{/each}
|
||||
</div>
|
||||
{:else}
|
||||
<!-- Table View -->
|
||||
<div
|
||||
class="rounded-lg border border-base-300 bg-base-100"
|
||||
onclick={handleTableLinkClick}
|
||||
role="button"
|
||||
tabindex="0"
|
||||
onkeydown={(e) => {
|
||||
if (e.key === 'Enter' || e.key === ' ') {
|
||||
// Create a mock MouseEvent to match the expected type
|
||||
const mockEvent = {
|
||||
target: e.target,
|
||||
currentTarget: e.currentTarget
|
||||
} as unknown as MouseEvent;
|
||||
handleTableLinkClick(mockEvent);
|
||||
e.preventDefault();
|
||||
}
|
||||
}}
|
||||
>
|
||||
<DataTable
|
||||
data={displayMatches}
|
||||
columns={tableColumns}
|
||||
striped={true}
|
||||
hoverable={true}
|
||||
fixedLayout={true}
|
||||
class="w-full"
|
||||
/>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<!-- Load More Button -->
|
||||
<!-- Load More Trigger (for infinite scroll) -->
|
||||
{#if hasMore}
|
||||
<div class="mt-8 text-center">
|
||||
<!-- Hidden trigger element for intersection observer -->
|
||||
<div bind:this={loadMoreTriggerRef} class="h-1 w-full"></div>
|
||||
|
||||
<!-- Visible load more button for manual loading -->
|
||||
<Button variant="primary" size="lg" onclick={loadMore} disabled={isLoadingMore}>
|
||||
{#if isLoadingMore}
|
||||
<Loader2 class="mr-2 h-5 w-5 animate-spin" />
|
||||
@@ -291,8 +877,11 @@
|
||||
Load More Matches
|
||||
{/if}
|
||||
</Button>
|
||||
{#if isLoadingMore}
|
||||
<p class="mt-2 text-sm text-base-content/60">Loading more matches...</p>
|
||||
{/if}
|
||||
<p class="mt-2 text-sm text-base-content/60">
|
||||
Showing {matches.length} matches
|
||||
Showing {matches.length} matches {hasMore ? '(more available)' : '(all loaded)'}
|
||||
</p>
|
||||
</div>
|
||||
{:else if matches.length > 0}
|
||||
@@ -312,10 +901,24 @@
|
||||
<p class="text-base-content/60">
|
||||
No matches match your current filters. Try adjusting your filter settings.
|
||||
</p>
|
||||
<div class="mt-4">
|
||||
<Button variant="primary" onclick={() => (resultFilter = 'all')}>
|
||||
Clear Result Filter
|
||||
</Button>
|
||||
<div class="mt-4 flex flex-wrap justify-center gap-2">
|
||||
{#if resultFilter !== 'all'}
|
||||
<Button variant="primary" onclick={() => (resultFilter = 'all')}>
|
||||
Clear Result Filter
|
||||
</Button>
|
||||
{/if}
|
||||
{#if fromDate || toDate}
|
||||
<Button
|
||||
variant="primary"
|
||||
onclick={() => {
|
||||
fromDate = '';
|
||||
toDate = '';
|
||||
}}
|
||||
>
|
||||
Clear Date Filter
|
||||
</Button>
|
||||
{/if}
|
||||
<Button variant="ghost" onclick={clearAllFilters}>Clear All Filters</Button>
|
||||
</div>
|
||||
</div>
|
||||
</Card>
|
||||
|
||||
@@ -7,9 +7,8 @@ import { api } from '$lib/api';
|
||||
export const load: PageLoad = async ({ url }) => {
|
||||
// Get query parameters
|
||||
const map = url.searchParams.get('map') || undefined;
|
||||
const playerIdStr = url.searchParams.get('player_id');
|
||||
const playerId = playerIdStr ? Number(playerIdStr) : undefined;
|
||||
const limit = Number(url.searchParams.get('limit')) || 50;
|
||||
const playerId = url.searchParams.get('player_id') || undefined;
|
||||
const limit = Number(url.searchParams.get('limit')) || 20; // Request 20 matches for initial load
|
||||
|
||||
try {
|
||||
// Load matches with filters
|
||||
@@ -33,7 +32,10 @@ export const load: PageLoad = async ({ url }) => {
|
||||
}
|
||||
};
|
||||
} catch (error) {
|
||||
console.error('Failed to load matches:', error instanceof Error ? error.message : String(error));
|
||||
console.error(
|
||||
'Failed to load matches:',
|
||||
error instanceof Error ? error.message : String(error)
|
||||
);
|
||||
|
||||
// Return empty state on error
|
||||
return {
|
||||
|
||||
@@ -1,16 +1,40 @@
|
||||
<script lang="ts">
|
||||
import { User, Target, TrendingUp, Calendar, Trophy, Heart, Crosshair } from 'lucide-svelte';
|
||||
import {
|
||||
User,
|
||||
Target,
|
||||
TrendingUp,
|
||||
Calendar,
|
||||
Trophy,
|
||||
Heart,
|
||||
Crosshair,
|
||||
UserCheck
|
||||
} from 'lucide-svelte';
|
||||
import Card from '$lib/components/ui/Card.svelte';
|
||||
import Button from '$lib/components/ui/Button.svelte';
|
||||
import MatchCard from '$lib/components/match/MatchCard.svelte';
|
||||
import LineChart from '$lib/components/charts/LineChart.svelte';
|
||||
import BarChart from '$lib/components/charts/BarChart.svelte';
|
||||
import PremierRatingBadge from '$lib/components/ui/PremierRatingBadge.svelte';
|
||||
import TrackPlayerModal from '$lib/components/player/TrackPlayerModal.svelte';
|
||||
import { preferences } from '$lib/stores';
|
||||
import { invalidateAll } from '$app/navigation';
|
||||
import type { PageData } from './$types';
|
||||
|
||||
let { data }: { data: PageData } = $props();
|
||||
const { profile, recentMatches, playerStats } = data;
|
||||
|
||||
// Track player modal state
|
||||
let isTrackModalOpen = $state(false);
|
||||
|
||||
// Handle tracking events
|
||||
async function handleTracked() {
|
||||
await invalidateAll();
|
||||
}
|
||||
|
||||
async function handleUntracked() {
|
||||
await invalidateAll();
|
||||
}
|
||||
|
||||
// Calculate stats from PlayerMeta and aggregated match data
|
||||
const kd =
|
||||
profile.avg_deaths > 0
|
||||
@@ -18,6 +42,12 @@
|
||||
: profile.avg_kills.toFixed(2);
|
||||
const winRate = (profile.win_rate * 100).toFixed(1);
|
||||
|
||||
// Get current Premier rating from most recent match
|
||||
const currentRating =
|
||||
playerStats.length > 0 && playerStats[0] ? playerStats[0].rank_new : undefined;
|
||||
const previousRating =
|
||||
playerStats.length > 0 && playerStats[0] ? playerStats[0].rank_old : undefined;
|
||||
|
||||
// Calculate headshot percentage from playerStats if available
|
||||
const totalKills = playerStats.reduce((sum, stat) => sum + stat.kills, 0);
|
||||
const totalHeadshots = playerStats.reduce((sum, stat) => sum + (stat.headshot || 0), 0);
|
||||
@@ -37,7 +67,7 @@
|
||||
|
||||
// Performance trend chart data (K/D ratio over time)
|
||||
const performanceTrendData = {
|
||||
labels: playerStats.map((stat, i) => `Match ${playerStats.length - i}`).reverse(),
|
||||
labels: playerStats.map((_stat, i) => `Match ${playerStats.length - i}`).reverse(),
|
||||
datasets: [
|
||||
{
|
||||
label: 'K/D Ratio',
|
||||
@@ -51,7 +81,7 @@
|
||||
},
|
||||
{
|
||||
label: 'KAST %',
|
||||
data: playerStats.map((stat) => stat.kast).reverse(),
|
||||
data: playerStats.map((stat) => stat.kast || 0).reverse(),
|
||||
borderColor: 'rgb(34, 197, 94)',
|
||||
backgroundColor: 'rgba(34, 197, 94, 0.1)',
|
||||
tension: 0.4,
|
||||
@@ -176,6 +206,62 @@
|
||||
<Heart class="h-5 w-5 {isFavorite ? 'fill-error text-error' : ''}" />
|
||||
</button>
|
||||
</div>
|
||||
<div class="mb-3 flex flex-wrap items-center gap-3">
|
||||
<PremierRatingBadge
|
||||
rating={currentRating}
|
||||
oldRating={previousRating}
|
||||
size="lg"
|
||||
showTier={true}
|
||||
showChange={true}
|
||||
/>
|
||||
<!-- VAC/Game Ban Status Badges -->
|
||||
{#if profile.vac_count && profile.vac_count > 0}
|
||||
<div class="badge badge-error badge-lg gap-2">
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
fill="none"
|
||||
viewBox="0 0 24 24"
|
||||
class="inline-block h-4 w-4 stroke-current"
|
||||
>
|
||||
<path
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="2"
|
||||
d="M6 18L18 6M6 6l12 12"
|
||||
></path>
|
||||
</svg>
|
||||
VAC Ban{profile.vac_count > 1 ? `s (${profile.vac_count})` : ''}
|
||||
{#if profile.vac_date}
|
||||
<span class="text-xs opacity-80">
|
||||
{new Date(profile.vac_date).toLocaleDateString()}
|
||||
</span>
|
||||
{/if}
|
||||
</div>
|
||||
{/if}
|
||||
{#if profile.game_ban_count && profile.game_ban_count > 0}
|
||||
<div class="badge badge-warning badge-lg gap-2">
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
fill="none"
|
||||
viewBox="0 0 24 24"
|
||||
class="inline-block h-4 w-4 stroke-current"
|
||||
>
|
||||
<path
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="2"
|
||||
d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"
|
||||
></path>
|
||||
</svg>
|
||||
Game Ban{profile.game_ban_count > 1 ? `s (${profile.game_ban_count})` : ''}
|
||||
{#if profile.game_ban_date}
|
||||
<span class="text-xs opacity-80">
|
||||
{new Date(profile.game_ban_date).toLocaleDateString()}
|
||||
</span>
|
||||
{/if}
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
<div class="flex flex-wrap gap-3 text-sm text-base-content/60">
|
||||
<span>Steam ID: {profile.id}</span>
|
||||
<span>Last match: {new Date(profile.last_match_date).toLocaleDateString()}</span>
|
||||
@@ -184,6 +270,14 @@
|
||||
|
||||
<!-- Actions -->
|
||||
<div class="flex gap-2">
|
||||
<Button
|
||||
variant={profile.tracked ? 'success' : 'primary'}
|
||||
size="sm"
|
||||
onclick={() => (isTrackModalOpen = true)}
|
||||
>
|
||||
<UserCheck class="h-4 w-4" />
|
||||
{profile.tracked ? 'Tracked' : 'Track Player'}
|
||||
</Button>
|
||||
<Button variant="ghost" size="sm" href={`/matches?player_id=${profile.id}`}>
|
||||
View All Matches
|
||||
</Button>
|
||||
@@ -191,6 +285,16 @@
|
||||
</div>
|
||||
</Card>
|
||||
|
||||
<!-- Track Player Modal -->
|
||||
<TrackPlayerModal
|
||||
playerId={profile.id}
|
||||
playerName={profile.name}
|
||||
isTracked={profile.tracked || false}
|
||||
bind:isOpen={isTrackModalOpen}
|
||||
ontracked={handleTracked}
|
||||
onuntracked={handleUntracked}
|
||||
/>
|
||||
|
||||
<!-- Career Statistics -->
|
||||
<div>
|
||||
<h2 class="mb-4 text-2xl font-bold text-base-content">Career Statistics</h2>
|
||||
|
||||
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 7.0 KiB After Width: | Height: | Size: 7.0 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 6.2 KiB |
|
Before Width: | Height: | Size: 504 B After Width: | Height: | Size: 504 B |
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 1.5 MiB After Width: | Height: | Size: 1.5 MiB |
|
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 7.9 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.8 KiB |
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 6.3 KiB After Width: | Height: | Size: 6.3 KiB |
|
Before Width: | Height: | Size: 5.9 KiB After Width: | Height: | Size: 5.9 KiB |
|
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 6.2 KiB |
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.7 KiB |
|
Before Width: | Height: | Size: 6.1 KiB After Width: | Height: | Size: 6.1 KiB |
|
Before Width: | Height: | Size: 9.5 KiB After Width: | Height: | Size: 9.5 KiB |
|
Before Width: | Height: | Size: 8.0 KiB After Width: | Height: | Size: 8.0 KiB |
@@ -1,209 +1,209 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#B6BAAE" d="M31.237,15.23L16.748,0.737c-0.224-0.224-0.521-0.347-0.836-0.347S15.3,0.514,15.076,0.737L0.587,15.23
|
||||
c-0.223,0.224-0.346,0.52-0.346,0.836c0,0.317,0.123,0.613,0.346,0.837l14.489,14.493c0.224,0.224,0.521,0.347,0.836,0.347
|
||||
s0.612-0.123,0.836-0.347l14.489-14.493C31.698,16.441,31.698,15.692,31.237,15.23z M30.701,16.591L16.43,30.861
|
||||
c-0.138,0.138-0.322,0.215-0.518,0.215c-0.196,0-0.379-0.077-0.518-0.215L1.123,16.591c-0.138-0.139-0.214-0.322-0.214-0.519
|
||||
s0.076-0.38,0.214-0.518L15.395,1.283c0.138-0.139,0.322-0.214,0.518-0.214c0.195,0,0.379,0.075,0.518,0.214l14.271,14.271
|
||||
C30.986,15.84,30.986,16.305,30.701,16.591z"/>
|
||||
</g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#E8E8E8" d="M30.214,16.715L16.516,30.411c-0.355,0.356-0.932,0.356-1.287,0
|
||||
L1.532,16.715c-0.356-0.356-0.356-0.932,0-1.287L15.229,1.731c0.355-0.355,0.932-0.355,1.287,0l13.698,13.697
|
||||
C30.568,15.783,30.568,16.359,30.214,16.715z"/>
|
||||
<path fill="#F2F2F2" d="M15.873,30.726c-0.256,0-0.497-0.1-0.678-0.281L1.498,16.75c-0.182-0.182-0.281-0.423-0.281-0.679
|
||||
c0-0.255,0.1-0.496,0.281-0.675L15.195,1.697c0.181-0.181,0.421-0.281,0.677-0.281s0.497,0.1,0.677,0.281l13.697,13.698
|
||||
c0.18,0.18,0.279,0.42,0.279,0.675c0.001,0.256-0.099,0.498-0.279,0.679L16.55,30.445C16.369,30.626,16.128,30.726,15.873,30.726z
|
||||
M15.873,1.513c-0.23,0-0.447,0.089-0.61,0.252L1.566,15.462c-0.163,0.163-0.252,0.377-0.252,0.608c0,0.231,0.089,0.448,0.252,0.611
|
||||
l13.697,13.696c0.163,0.163,0.379,0.253,0.61,0.253s0.447-0.09,0.61-0.253L30.18,16.682c0.162-0.163,0.251-0.38,0.251-0.611
|
||||
c0-0.23-0.09-0.445-0.251-0.608L16.482,1.765C16.319,1.603,16.103,1.513,15.873,1.513z"/>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9BCB3C" d="M15.894,28.65c-0.185,0-0.359-0.072-0.489-0.203L3.476,16.518
|
||||
c-0.131-0.13-0.203-0.304-0.203-0.489c0-0.186,0.072-0.359,0.203-0.489l0.987-0.987l3.196,0.027l-1.38,1.38
|
||||
c-0.039,0.039-0.039,0.103,0,0.142l9.526,9.525c0.02,0.02,0.045,0.029,0.071,0.029s0.051-0.01,0.071-0.029l9.525-9.525
|
||||
c0.039-0.039,0.039-0.103,0-0.142l-1.377-1.378h3.304l0.913,0.958c0.132,0.13,0.203,0.304,0.203,0.489
|
||||
c0,0.185-0.071,0.358-0.202,0.489L16.383,28.447C16.253,28.578,16.079,28.65,15.894,28.65z M9.268,9.747l6.137-6.137
|
||||
c0.13-0.13,0.304-0.202,0.489-0.202s0.359,0.072,0.489,0.202l6.136,6.135h-3.304l-3.27-3.31c-0.02-0.02-0.045-0.029-0.071-0.029
|
||||
s-0.051,0.01-0.071,0.029l-3.34,3.339L9.268,9.747z"/>
|
||||
<path fill="#D4E6AA" d="M15.894,3.508c0.158,0,0.307,0.061,0.418,0.173l5.965,5.964h-2.979l-3.282-3.281
|
||||
c-0.039-0.039-0.09-0.059-0.142-0.059s-0.103,0.02-0.142,0.059l-3.282,3.281h-2.94l5.963-5.964
|
||||
C15.587,3.569,15.736,3.508,15.894,3.508 M27.314,14.682l0.927,0.929c0.111,0.111,0.173,0.26,0.173,0.418
|
||||
c0,0.158-0.062,0.307-0.174,0.418L16.313,28.376c-0.112,0.112-0.26,0.173-0.418,0.173s-0.307-0.062-0.418-0.174L3.546,16.447
|
||||
c-0.112-0.111-0.173-0.26-0.173-0.418c0-0.159,0.062-0.307,0.174-0.419l0.928-0.928h2.94l-1.207,1.207
|
||||
c-0.078,0.078-0.078,0.205,0,0.283l9.526,9.525c0.039,0.039,0.09,0.059,0.142,0.059s0.103-0.02,0.142-0.059l9.525-9.525
|
||||
c0.078-0.078,0.078-0.205,0-0.283l-1.207-1.207H27.314 M15.894,3.308c-0.203,0-0.406,0.077-0.56,0.231L9.029,9.845h3.506
|
||||
l3.34-3.339l3.341,3.339h3.545L16.454,3.54C16.3,3.385,16.097,3.308,15.894,3.308L15.894,3.308z M27.397,14.482h-3.545l1.548,1.549
|
||||
l-9.525,9.525l-9.526-9.525l1.548-1.549H4.392l-0.986,0.987c-0.31,0.308-0.31,0.812,0,1.12l11.929,11.929
|
||||
c0.154,0.155,0.357,0.232,0.56,0.232s0.406-0.078,0.56-0.232l11.928-11.929c0.31-0.308,0.31-0.812,0-1.12L27.397,14.482
|
||||
L27.397,14.482z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#1D1D22" points="14.863,24.168 15.283,24.587 15.283,17.732 14.863,17.732 "/>
|
||||
<polygon fill="#1D1D22" points="17.729,23.339 17.881,23.19 17.881,17.714 17.729,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="18.046,23.024 18.467,22.604 18.467,17.732 18.046,17.732 "/>
|
||||
<polygon fill="#1D1D22" points="12.166,21.471 12.315,21.621 12.315,17.714 12.166,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="10.399,19.704 10.819,20.125 10.819,17.714 10.399,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="11.089,20.394 11.51,20.815 11.51,17.714 11.089,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="11.745,21.05 11.895,21.2 11.895,17.714 11.745,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="8.717,18.022 9.138,18.443 9.138,17.714 8.717,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="12.526,21.832 12.676,21.981 12.676,17.714 12.526,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="13.642,22.947 14.062,23.367 14.062,17.714 13.642,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="14.263,23.567 14.682,23.987 14.682,17.714 14.263,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="9.463,18.769 9.613,18.918 9.613,17.714 9.463,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="20.092,20.978 20.243,20.827 20.243,17.714 20.092,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="22.739,18.331 23.16,17.91 23.16,17.732 22.739,17.732 "/>
|
||||
<polygon fill="#1D1D22" points="20.412,20.657 20.562,20.507 20.562,17.714 20.412,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="20.728,20.341 21.147,19.922 21.147,17.732 20.728,17.732 "/>
|
||||
<polygon fill="#1D1D22" points="22.344,18.726 22.494,18.576 22.494,17.714 22.344,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="18.686,22.385 19.106,21.964 19.106,17.732 18.686,17.732 "/>
|
||||
<polygon fill="#1D1D22" points="21.628,19.442 22.048,19.021 22.048,17.732 21.628,17.732 "/>
|
||||
<path fill="#1D1D22" d="M9.045,13.056c0.117-0.112,0.174-0.243,0.174-0.397c0-0.113-0.036-0.216-0.106-0.311
|
||||
c-0.071-0.095-0.178-0.159-0.32-0.192c0.246-0.076,0.37-0.227,0.37-0.454c0-0.112-0.029-0.208-0.084-0.285
|
||||
c-0.056-0.079-0.126-0.138-0.213-0.18c-0.086-0.042-0.215-0.064-0.386-0.064H7.524v2.049h0.955
|
||||
C8.74,13.223,8.929,13.167,9.045,13.056z M8.003,11.536h0.329c0.1,0,0.167,0.005,0.201,0.013c0.034,0.01,0.065,0.034,0.094,0.071
|
||||
s0.042,0.083,0.042,0.134c0,0.048-0.016,0.098-0.051,0.15c-0.035,0.053-0.119,0.08-0.252,0.08H8.003V11.536z M8.003,12.843V12.35
|
||||
h0.389c0.116,0,0.199,0.024,0.25,0.072c0.05,0.048,0.074,0.105,0.074,0.171c0,0.08-0.026,0.141-0.078,0.186
|
||||
c-0.052,0.043-0.141,0.065-0.267,0.065H8.003z"/>
|
||||
<path fill="#1D1D22" d="M10.424,12.801h0.663l0.126,0.422h0.516l-0.641-2.049h-0.556l-0.657,2.049h0.421L10.424,12.801z
|
||||
M10.759,11.704l0.214,0.718h-0.434L10.759,11.704z"/>
|
||||
<path fill="#1D1D22" d="M13.811,12.988c0.03,0.079,0.053,0.157,0.069,0.234h0.219v-1.096h-0.842v0.383h0.386
|
||||
c0,0.123-0.034,0.212-0.101,0.269c-0.068,0.055-0.145,0.083-0.231,0.083c-0.133,0-0.236-0.055-0.308-0.167
|
||||
c-0.072-0.111-0.108-0.271-0.108-0.482c0-0.218,0.034-0.386,0.1-0.503c0.067-0.117,0.165-0.177,0.295-0.177
|
||||
c0.198,0,0.316,0.124,0.353,0.373l0.456-0.061c-0.031-0.212-0.116-0.383-0.256-0.511c-0.14-0.129-0.324-0.193-0.553-0.193
|
||||
c-0.272,0-0.487,0.1-0.646,0.298c-0.158,0.198-0.237,0.459-0.237,0.786c0,0.303,0.074,0.549,0.223,0.741
|
||||
c0.148,0.192,0.356,0.287,0.624,0.287C13.479,13.254,13.665,13.166,13.811,12.988z"/>
|
||||
<path fill="#1D1D22" d="M15.817,11.534c0.199,0,0.316,0.124,0.354,0.373l0.456-0.061c-0.03-0.212-0.116-0.383-0.256-0.511
|
||||
c-0.141-0.129-0.325-0.193-0.553-0.193c-0.271,0-0.487,0.1-0.646,0.298c-0.158,0.198-0.238,0.459-0.238,0.786
|
||||
c0,0.303,0.074,0.549,0.224,0.741c0.148,0.192,0.356,0.287,0.623,0.287c0.227,0,0.413-0.088,0.559-0.266
|
||||
c0.03,0.079,0.053,0.157,0.068,0.234h0.219v-1.096h-0.842v0.383h0.386c0,0.123-0.034,0.212-0.101,0.269
|
||||
c-0.068,0.055-0.145,0.083-0.231,0.083c-0.133,0-0.235-0.055-0.308-0.167c-0.072-0.111-0.108-0.271-0.108-0.482
|
||||
c0-0.218,0.033-0.386,0.099-0.503C15.589,11.594,15.688,11.534,15.817,11.534z"/>
|
||||
<path fill="#1D1D22" d="M17.902,12.801h0.663l0.125,0.422h0.516l-0.64-2.049H18.01l-0.656,2.049h0.421L17.902,12.801z
|
||||
M18.236,11.704l0.215,0.718h-0.434L18.236,11.704z"/>
|
||||
<path fill="#1D1D22" d="M20.768,11.534c0.198,0,0.315,0.124,0.353,0.373l0.456-0.061c-0.03-0.212-0.116-0.383-0.257-0.511
|
||||
c-0.14-0.129-0.323-0.193-0.552-0.193c-0.273,0-0.487,0.1-0.647,0.298c-0.157,0.198-0.237,0.459-0.237,0.786
|
||||
c0,0.303,0.074,0.549,0.224,0.741c0.147,0.192,0.355,0.287,0.624,0.287c0.227,0,0.412-0.088,0.559-0.266
|
||||
c0.029,0.079,0.053,0.157,0.067,0.234h0.22v-1.096h-0.843v0.383h0.387c0,0.123-0.034,0.212-0.102,0.269
|
||||
c-0.067,0.055-0.145,0.083-0.229,0.083c-0.134,0-0.236-0.055-0.309-0.167c-0.072-0.111-0.107-0.271-0.107-0.482
|
||||
c0-0.218,0.033-0.386,0.099-0.503C20.539,11.594,20.637,11.534,20.768,11.534z"/>
|
||||
<polygon fill="#1D1D22" points="23.971,11.564 23.971,11.173 22.509,11.173 22.509,13.223 23.971,13.223 23.971,12.818
|
||||
22.997,12.818 22.997,12.37 23.763,12.37 23.763,11.985 22.997,11.985 22.997,11.564 "/>
|
||||
<polygon fill="#1D1D22" points="8.356,15.184 8.467,14.984 8.578,15.184 8.728,15.184 8.557,14.889 8.707,14.633 8.587,14.633
|
||||
8.493,14.8 8.404,14.633 8.253,14.633 8.405,14.891 8.234,15.184 "/>
|
||||
<polygon fill="#1D1D22" points="9.353,14.633 9.232,14.633 9.138,14.8 9.048,14.633 8.898,14.633 9.049,14.891 8.879,15.184
|
||||
9.001,15.184 9.112,14.984 9.223,15.184 9.372,15.184 9.202,14.889 "/>
|
||||
<polygon fill="#1D1D22" points="9.998,14.633 9.877,14.633 9.783,14.8 9.694,14.633 9.543,14.633 9.694,14.891 9.523,15.184
|
||||
9.646,15.184 9.757,14.984 9.868,15.184 10.018,15.184 9.847,14.889 "/>
|
||||
<polygon fill="#1D1D22" points="10.292,15.184 10.402,14.984 10.512,15.184 10.663,15.184 10.492,14.889 10.642,14.633
|
||||
10.522,14.633 10.428,14.8 10.339,14.633 10.188,14.633 10.34,14.891 10.169,15.184 "/>
|
||||
<polygon fill="#1D1D22" points="10.936,15.184 11.047,14.984 11.157,15.184 11.308,15.184 11.137,14.889 11.288,14.633
|
||||
11.167,14.633 11.073,14.8 10.983,14.633 10.833,14.633 10.984,14.891 10.814,15.184 "/>
|
||||
<polygon fill="#1D1D22" points="11.933,14.633 11.812,14.633 11.718,14.8 11.629,14.633 11.479,14.633 11.63,14.891 11.459,15.184
|
||||
11.581,15.184 11.692,14.984 11.803,15.184 11.952,15.184 11.781,14.889 "/>
|
||||
<polygon fill="#1D1D22" points="12.226,15.184 12.337,14.984 12.447,15.184 12.598,15.184 12.427,14.889 12.578,14.633
|
||||
12.457,14.633 12.363,14.8 12.274,14.633 12.123,14.633 12.274,14.891 12.104,15.184 "/>
|
||||
<polygon fill="#1D1D22" points="13.223,14.633 13.102,14.633 13.008,14.8 12.918,14.633 12.769,14.633 12.92,14.891 12.749,15.184
|
||||
12.872,15.184 12.981,14.984 13.093,15.184 13.242,15.184 13.072,14.889 "/>
|
||||
<polygon fill="#1D1D22" points="13.516,15.184 13.627,14.984 13.738,15.184 13.887,15.184 13.717,14.889 13.868,14.633
|
||||
13.747,14.633 13.653,14.8 13.563,14.633 13.413,14.633 13.565,14.891 13.394,15.184 "/>
|
||||
<polygon fill="#1D1D22" points="14.21,14.891 14.039,15.184 14.161,15.184 14.272,14.984 14.383,15.184 14.532,15.184
|
||||
14.362,14.889 14.512,14.633 14.392,14.633 14.298,14.8 14.209,14.633 14.059,14.633 "/>
|
||||
<polygon fill="#1D1D22" points="14.807,15.184 14.917,14.984 15.028,15.184 15.177,15.184 15.007,14.889 15.158,14.633
|
||||
15.037,14.633 14.943,14.8 14.854,14.633 14.704,14.633 14.855,14.891 14.684,15.184 "/>
|
||||
<polygon fill="#1D1D22" points="8.557,15.683 8.707,15.426 8.587,15.426 8.493,15.593 8.404,15.426 8.253,15.426 8.405,15.684
|
||||
8.234,15.978 8.356,15.978 8.467,15.777 8.578,15.978 8.728,15.978 "/>
|
||||
<polygon fill="#1D1D22" points="9.353,15.426 9.232,15.426 9.138,15.593 9.048,15.426 8.898,15.426 9.049,15.684 8.879,15.978
|
||||
9.001,15.978 9.112,15.777 9.223,15.978 9.372,15.978 9.202,15.683 "/>
|
||||
<polygon fill="#1D1D22" points="9.998,15.426 9.877,15.426 9.783,15.593 9.694,15.426 9.543,15.426 9.694,15.684 9.523,15.978
|
||||
9.646,15.978 9.757,15.777 9.868,15.978 10.018,15.978 9.847,15.683 "/>
|
||||
<polygon fill="#1D1D22" points="10.512,15.978 10.663,15.978 10.492,15.683 10.642,15.426 10.522,15.426 10.428,15.593
|
||||
10.339,15.426 10.188,15.426 10.34,15.684 10.169,15.978 10.292,15.978 10.402,15.777 "/>
|
||||
<polygon fill="#1D1D22" points="11.308,15.978 11.137,15.683 11.288,15.426 11.167,15.426 11.073,15.593 10.983,15.426
|
||||
10.833,15.426 10.984,15.684 10.814,15.978 10.936,15.978 11.047,15.777 11.157,15.978 "/>
|
||||
<polygon fill="#1D1D22" points="11.933,15.426 11.812,15.426 11.718,15.593 11.629,15.426 11.479,15.426 11.63,15.684
|
||||
11.459,15.978 11.581,15.978 11.692,15.777 11.803,15.978 11.952,15.978 11.781,15.683 "/>
|
||||
<polygon fill="#1D1D22" points="12.427,15.683 12.578,15.426 12.457,15.426 12.363,15.593 12.274,15.426 12.123,15.426
|
||||
12.274,15.684 12.104,15.978 12.226,15.978 12.337,15.777 12.447,15.978 12.598,15.978 "/>
|
||||
<polygon fill="#1D1D22" points="13.223,15.426 13.102,15.426 13.008,15.593 12.918,15.426 12.769,15.426 12.92,15.684
|
||||
12.749,15.978 12.872,15.978 12.981,15.777 13.093,15.978 13.242,15.978 13.072,15.683 "/>
|
||||
<polygon fill="#1D1D22" points="13.887,15.978 13.717,15.683 13.868,15.426 13.747,15.426 13.653,15.593 13.563,15.426
|
||||
13.413,15.426 13.565,15.684 13.394,15.978 13.516,15.978 13.627,15.777 13.738,15.978 "/>
|
||||
<polygon fill="#1D1D22" points="14.383,15.978 14.532,15.978 14.362,15.683 14.512,15.426 14.392,15.426 14.298,15.593
|
||||
14.209,15.426 14.059,15.426 14.21,15.684 14.039,15.978 14.161,15.978 14.272,15.777 "/>
|
||||
<polygon fill="#1D1D22" points="15.028,15.978 15.177,15.978 15.007,15.683 15.158,15.426 15.037,15.426 14.943,15.593
|
||||
14.854,15.426 14.704,15.426 14.855,15.684 14.684,15.978 14.807,15.978 14.917,15.777 "/>
|
||||
<path fill="#1D1D22" d="M16.867,14.841h0.292c-0.06,0.076-0.108,0.162-0.144,0.258c-0.037,0.097-0.057,0.191-0.059,0.284h0.124
|
||||
c0-0.06,0.01-0.127,0.03-0.201c0.018-0.076,0.047-0.148,0.086-0.214c0.036-0.066,0.073-0.117,0.109-0.153v-0.094h-0.439V14.841z"/>
|
||||
<path fill="#1D1D22" d="M17.873,15.023c0.063-0.036,0.096-0.083,0.096-0.141c0-0.041-0.016-0.079-0.048-0.112
|
||||
c-0.037-0.041-0.089-0.06-0.15-0.06c-0.038,0-0.07,0.007-0.102,0.02c-0.029,0.015-0.053,0.034-0.068,0.059
|
||||
c-0.018,0.023-0.029,0.056-0.038,0.097l0.118,0.02c0.004-0.029,0.014-0.052,0.029-0.065c0.015-0.016,0.034-0.024,0.057-0.024
|
||||
c0.021,0,0.039,0.007,0.052,0.02c0.014,0.013,0.021,0.031,0.021,0.056s-0.01,0.046-0.028,0.063
|
||||
c-0.017,0.016-0.044,0.024-0.079,0.023l-0.014,0.105c0.023-0.007,0.042-0.01,0.06-0.01c0.024,0,0.045,0.01,0.063,0.028
|
||||
c0.017,0.019,0.026,0.045,0.026,0.078c0,0.035-0.01,0.061-0.028,0.082c-0.019,0.02-0.04,0.03-0.066,0.03s-0.047-0.009-0.063-0.024
|
||||
c-0.018-0.017-0.028-0.042-0.032-0.074l-0.125,0.016c0.007,0.057,0.029,0.102,0.069,0.137c0.041,0.035,0.091,0.052,0.152,0.052
|
||||
c0.063,0,0.116-0.021,0.16-0.062c0.043-0.042,0.063-0.091,0.063-0.15c0-0.041-0.012-0.076-0.033-0.104
|
||||
C17.942,15.05,17.91,15.031,17.873,15.023z"/>
|
||||
<path fill="#1D1D22" d="M18.708,15.135h-0.082V14.71h-0.109l-0.291,0.426v0.113h0.273v0.134h0.127V15.25h0.082V15.135z
|
||||
M18.499,15.135h-0.153l0.153-0.229V15.135z"/>
|
||||
<path fill="#1D1D22" d="M18.938,14.841h0.293c-0.06,0.076-0.109,0.162-0.146,0.258c-0.036,0.097-0.055,0.191-0.057,0.284h0.125
|
||||
c-0.002-0.06,0.009-0.127,0.028-0.201c0.02-0.076,0.048-0.148,0.085-0.214c0.038-0.066,0.075-0.117,0.111-0.153v-0.094h-0.44
|
||||
V14.841z"/>
|
||||
<path fill="#1D1D22" d="M19.955,15.022c0.028-0.013,0.053-0.031,0.068-0.056c0.017-0.025,0.024-0.053,0.024-0.083
|
||||
c0-0.05-0.017-0.091-0.053-0.124c-0.036-0.034-0.085-0.049-0.148-0.049c-0.065,0-0.114,0.015-0.15,0.049
|
||||
c-0.033,0.033-0.052,0.074-0.052,0.124c0,0.029,0.007,0.056,0.023,0.081c0.015,0.024,0.038,0.044,0.071,0.059
|
||||
c-0.038,0.016-0.067,0.04-0.084,0.069c-0.02,0.03-0.028,0.063-0.028,0.101c0,0.066,0.024,0.117,0.073,0.156
|
||||
c0.04,0.031,0.09,0.048,0.152,0.048c0.065,0,0.118-0.019,0.158-0.058c0.038-0.04,0.059-0.089,0.059-0.151
|
||||
c0-0.038-0.011-0.071-0.029-0.1C20.021,15.058,19.992,15.037,19.955,15.022z M19.788,14.834c0.016-0.015,0.034-0.023,0.059-0.023
|
||||
s0.043,0.008,0.059,0.023c0.015,0.013,0.021,0.034,0.021,0.058c0,0.025-0.007,0.045-0.021,0.06
|
||||
c-0.016,0.015-0.034,0.023-0.059,0.023s-0.044-0.008-0.059-0.023c-0.015-0.014-0.021-0.034-0.021-0.059
|
||||
C19.768,14.868,19.773,14.849,19.788,14.834z M19.916,15.265c-0.018,0.019-0.04,0.027-0.066,0.027c-0.027,0-0.05-0.008-0.068-0.029
|
||||
c-0.017-0.02-0.026-0.047-0.026-0.083c0-0.026,0.008-0.049,0.022-0.071c0.016-0.022,0.039-0.033,0.07-0.033
|
||||
c0.026,0,0.05,0.009,0.068,0.028c0.018,0.02,0.026,0.045,0.026,0.076C19.942,15.217,19.934,15.245,19.916,15.265z"/>
|
||||
<path fill="#1D1D22" d="M20.492,15.096c-0.071,0.065-0.119,0.119-0.144,0.16c-0.026,0.041-0.04,0.083-0.046,0.128h0.452v-0.119
|
||||
h-0.256c0.007-0.011,0.017-0.025,0.027-0.035c0.01-0.013,0.035-0.038,0.076-0.076c0.04-0.037,0.068-0.066,0.085-0.085
|
||||
c0.023-0.03,0.04-0.059,0.051-0.086c0.011-0.027,0.017-0.055,0.017-0.085c0-0.054-0.02-0.097-0.057-0.133
|
||||
c-0.038-0.036-0.091-0.053-0.156-0.053c-0.061,0-0.111,0.015-0.152,0.045c-0.039,0.032-0.064,0.083-0.071,0.154l0.13,0.012
|
||||
c0.002-0.039,0.011-0.065,0.025-0.081c0.017-0.017,0.038-0.025,0.064-0.025c0.027,0,0.049,0.008,0.064,0.024
|
||||
c0.016,0.016,0.024,0.037,0.024,0.065c0,0.026-0.01,0.053-0.028,0.079C20.586,15.004,20.55,15.04,20.492,15.096z"/>
|
||||
<path fill="#1D1D22" d="M21.011,14.841h0.293c-0.062,0.076-0.108,0.162-0.146,0.258c-0.035,0.097-0.054,0.191-0.056,0.284h0.124
|
||||
c0-0.06,0.009-0.127,0.027-0.201c0.021-0.076,0.05-0.148,0.087-0.214c0.038-0.066,0.075-0.117,0.111-0.153v-0.094h-0.44V14.841z"/>
|
||||
<path fill="#1D1D22" d="M22.027,15.022c0.029-0.013,0.052-0.031,0.067-0.056c0.017-0.025,0.024-0.053,0.024-0.083
|
||||
c0-0.05-0.018-0.091-0.052-0.124c-0.036-0.034-0.085-0.049-0.149-0.049c-0.065,0-0.114,0.015-0.15,0.049
|
||||
c-0.034,0.033-0.052,0.074-0.052,0.124c0,0.029,0.009,0.056,0.023,0.081s0.039,0.044,0.072,0.059
|
||||
c-0.039,0.016-0.067,0.04-0.084,0.069c-0.02,0.03-0.028,0.063-0.028,0.101c0,0.066,0.024,0.117,0.072,0.156
|
||||
c0.04,0.031,0.092,0.048,0.152,0.048c0.066,0,0.118-0.019,0.158-0.058c0.039-0.04,0.06-0.089,0.06-0.151
|
||||
c0-0.038-0.01-0.071-0.03-0.1C22.093,15.058,22.065,15.037,22.027,15.022z M21.86,14.834c0.015-0.015,0.034-0.023,0.059-0.023
|
||||
c0.023,0,0.044,0.008,0.058,0.023C21.991,14.848,22,14.868,22,14.892c0,0.025-0.009,0.045-0.023,0.06
|
||||
c-0.015,0.015-0.034,0.023-0.059,0.023c-0.023,0-0.043-0.008-0.058-0.023c-0.016-0.014-0.023-0.034-0.023-0.059
|
||||
C21.837,14.868,21.845,14.849,21.86,14.834z M21.988,15.265c-0.019,0.019-0.04,0.027-0.066,0.027c-0.027,0-0.051-0.008-0.068-0.029
|
||||
c-0.019-0.02-0.026-0.047-0.026-0.083c0-0.026,0.007-0.049,0.021-0.071c0.017-0.022,0.04-0.033,0.071-0.033
|
||||
c0.026,0,0.05,0.009,0.067,0.028c0.017,0.02,0.026,0.045,0.026,0.076C22.014,15.217,22.004,15.245,21.988,15.265z"/>
|
||||
<path fill="#1D1D22" d="M22.831,15.05c0-0.122-0.022-0.208-0.066-0.261c-0.043-0.053-0.1-0.078-0.168-0.078
|
||||
c-0.063,0-0.113,0.02-0.154,0.062c-0.04,0.041-0.061,0.097-0.061,0.165c0,0.065,0.02,0.119,0.057,0.159
|
||||
c0.04,0.04,0.084,0.061,0.138,0.061c0.048,0,0.089-0.019,0.12-0.056c-0.005,0.077-0.015,0.129-0.034,0.152
|
||||
c-0.019,0.024-0.041,0.037-0.068,0.037c-0.021,0-0.039-0.007-0.05-0.018c-0.014-0.012-0.022-0.032-0.024-0.057l-0.125,0.015
|
||||
c0.01,0.054,0.03,0.095,0.063,0.125c0.032,0.027,0.074,0.041,0.128,0.041c0.072,0,0.132-0.026,0.177-0.082
|
||||
C22.807,15.26,22.831,15.171,22.831,15.05z M22.66,15.033c-0.017,0.02-0.038,0.03-0.062,0.03c-0.026,0-0.047-0.011-0.065-0.031
|
||||
c-0.018-0.02-0.024-0.051-0.024-0.095c0-0.043,0.007-0.074,0.022-0.093c0.017-0.018,0.036-0.028,0.06-0.028
|
||||
c0.024,0,0.047,0.011,0.066,0.035c0.02,0.022,0.028,0.054,0.028,0.095C22.686,14.985,22.678,15.015,22.66,15.033z"/>
|
||||
<path fill="#1D1D22" d="M23.459,14.71h-0.107l-0.292,0.426v0.113h0.275v0.134h0.124V15.25h0.084v-0.115h-0.084V14.71z
|
||||
M23.335,15.135h-0.154l0.154-0.229V15.135z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#1D1D22" d="M22.194,16.201v0.753c0,0.176,0.145,0.321,0.321,0.321h0.87c0.178,0,0.322-0.145,0.322-0.321v-0.753
|
||||
c0-0.176-0.145-0.32-0.322-0.32h-0.87C22.339,15.88,22.194,16.024,22.194,16.201z M23.408,16.141v0.876h-0.913v-0.876H23.408z"/>
|
||||
<rect x="19.897" y="16.697" fill="#1D1D22" width="0.232" height="0.234"/>
|
||||
<path fill="#1D1D22" d="M17.838,16.188v-0.017c-0.021-0.165-0.161-0.294-0.333-0.294h-0.848c-0.185,0-0.334,0.149-0.334,0.335
|
||||
v0.725c0,0.185,0.149,0.334,0.334,0.334h0.848c0.175,0,0.317-0.13,0.334-0.299v-0.018h-1.145v-0.767H17.838z"/>
|
||||
<path fill="#1D1D22" d="M21.92,16.15c-0.023-0.154-0.157-0.27-0.316-0.27h-0.931c-0.179,0-0.32,0.144-0.32,0.32v0.753
|
||||
c0,0.176,0.142,0.321,0.32,0.321h0.931c0.166,0,0.304-0.123,0.318-0.285v-0.529h-1.031c0.003,0.027,0.017,0.077,0.068,0.142
|
||||
c0.067,0.084,0.171,0.092,0.2,0.092h0.466V17h-0.977v-0.85H21.92z"/>
|
||||
<path fill="#1D1D22" d="M18.102,16.971c0.018,0.17,0.159,0.301,0.333,0.301h0.89c0.187,0,0.337-0.149,0.337-0.334v-0.217
|
||||
c-0.017-0.169-0.159-0.301-0.333-0.301h-0.889v-0.241h1.193c-0.018-0.169-0.16-0.301-0.333-0.301h-0.865
|
||||
c-0.185,0-0.335,0.149-0.335,0.334v0.208c0.018,0.171,0.16,0.302,0.333,0.302l0.889-0.001v0.25H18.102z"/>
|
||||
<rect x="19.897" y="16.219" fill="#1D1D22" width="0.232" height="0.233"/>
|
||||
</g>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#B6BAAE" d="M31.237,15.23L16.748,0.737c-0.224-0.224-0.521-0.347-0.836-0.347S15.3,0.514,15.076,0.737L0.587,15.23
|
||||
c-0.223,0.224-0.346,0.52-0.346,0.836c0,0.317,0.123,0.613,0.346,0.837l14.489,14.493c0.224,0.224,0.521,0.347,0.836,0.347
|
||||
s0.612-0.123,0.836-0.347l14.489-14.493C31.698,16.441,31.698,15.692,31.237,15.23z M30.701,16.591L16.43,30.861
|
||||
c-0.138,0.138-0.322,0.215-0.518,0.215c-0.196,0-0.379-0.077-0.518-0.215L1.123,16.591c-0.138-0.139-0.214-0.322-0.214-0.519
|
||||
s0.076-0.38,0.214-0.518L15.395,1.283c0.138-0.139,0.322-0.214,0.518-0.214c0.195,0,0.379,0.075,0.518,0.214l14.271,14.271
|
||||
C30.986,15.84,30.986,16.305,30.701,16.591z"/>
|
||||
</g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#E8E8E8" d="M30.214,16.715L16.516,30.411c-0.355,0.356-0.932,0.356-1.287,0
|
||||
L1.532,16.715c-0.356-0.356-0.356-0.932,0-1.287L15.229,1.731c0.355-0.355,0.932-0.355,1.287,0l13.698,13.697
|
||||
C30.568,15.783,30.568,16.359,30.214,16.715z"/>
|
||||
<path fill="#F2F2F2" d="M15.873,30.726c-0.256,0-0.497-0.1-0.678-0.281L1.498,16.75c-0.182-0.182-0.281-0.423-0.281-0.679
|
||||
c0-0.255,0.1-0.496,0.281-0.675L15.195,1.697c0.181-0.181,0.421-0.281,0.677-0.281s0.497,0.1,0.677,0.281l13.697,13.698
|
||||
c0.18,0.18,0.279,0.42,0.279,0.675c0.001,0.256-0.099,0.498-0.279,0.679L16.55,30.445C16.369,30.626,16.128,30.726,15.873,30.726z
|
||||
M15.873,1.513c-0.23,0-0.447,0.089-0.61,0.252L1.566,15.462c-0.163,0.163-0.252,0.377-0.252,0.608c0,0.231,0.089,0.448,0.252,0.611
|
||||
l13.697,13.696c0.163,0.163,0.379,0.253,0.61,0.253s0.447-0.09,0.61-0.253L30.18,16.682c0.162-0.163,0.251-0.38,0.251-0.611
|
||||
c0-0.23-0.09-0.445-0.251-0.608L16.482,1.765C16.319,1.603,16.103,1.513,15.873,1.513z"/>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9BCB3C" d="M15.894,28.65c-0.185,0-0.359-0.072-0.489-0.203L3.476,16.518
|
||||
c-0.131-0.13-0.203-0.304-0.203-0.489c0-0.186,0.072-0.359,0.203-0.489l0.987-0.987l3.196,0.027l-1.38,1.38
|
||||
c-0.039,0.039-0.039,0.103,0,0.142l9.526,9.525c0.02,0.02,0.045,0.029,0.071,0.029s0.051-0.01,0.071-0.029l9.525-9.525
|
||||
c0.039-0.039,0.039-0.103,0-0.142l-1.377-1.378h3.304l0.913,0.958c0.132,0.13,0.203,0.304,0.203,0.489
|
||||
c0,0.185-0.071,0.358-0.202,0.489L16.383,28.447C16.253,28.578,16.079,28.65,15.894,28.65z M9.268,9.747l6.137-6.137
|
||||
c0.13-0.13,0.304-0.202,0.489-0.202s0.359,0.072,0.489,0.202l6.136,6.135h-3.304l-3.27-3.31c-0.02-0.02-0.045-0.029-0.071-0.029
|
||||
s-0.051,0.01-0.071,0.029l-3.34,3.339L9.268,9.747z"/>
|
||||
<path fill="#D4E6AA" d="M15.894,3.508c0.158,0,0.307,0.061,0.418,0.173l5.965,5.964h-2.979l-3.282-3.281
|
||||
c-0.039-0.039-0.09-0.059-0.142-0.059s-0.103,0.02-0.142,0.059l-3.282,3.281h-2.94l5.963-5.964
|
||||
C15.587,3.569,15.736,3.508,15.894,3.508 M27.314,14.682l0.927,0.929c0.111,0.111,0.173,0.26,0.173,0.418
|
||||
c0,0.158-0.062,0.307-0.174,0.418L16.313,28.376c-0.112,0.112-0.26,0.173-0.418,0.173s-0.307-0.062-0.418-0.174L3.546,16.447
|
||||
c-0.112-0.111-0.173-0.26-0.173-0.418c0-0.159,0.062-0.307,0.174-0.419l0.928-0.928h2.94l-1.207,1.207
|
||||
c-0.078,0.078-0.078,0.205,0,0.283l9.526,9.525c0.039,0.039,0.09,0.059,0.142,0.059s0.103-0.02,0.142-0.059l9.525-9.525
|
||||
c0.078-0.078,0.078-0.205,0-0.283l-1.207-1.207H27.314 M15.894,3.308c-0.203,0-0.406,0.077-0.56,0.231L9.029,9.845h3.506
|
||||
l3.34-3.339l3.341,3.339h3.545L16.454,3.54C16.3,3.385,16.097,3.308,15.894,3.308L15.894,3.308z M27.397,14.482h-3.545l1.548,1.549
|
||||
l-9.525,9.525l-9.526-9.525l1.548-1.549H4.392l-0.986,0.987c-0.31,0.308-0.31,0.812,0,1.12l11.929,11.929
|
||||
c0.154,0.155,0.357,0.232,0.56,0.232s0.406-0.078,0.56-0.232l11.928-11.929c0.31-0.308,0.31-0.812,0-1.12L27.397,14.482
|
||||
L27.397,14.482z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#1D1D22" points="14.863,24.168 15.283,24.587 15.283,17.732 14.863,17.732 "/>
|
||||
<polygon fill="#1D1D22" points="17.729,23.339 17.881,23.19 17.881,17.714 17.729,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="18.046,23.024 18.467,22.604 18.467,17.732 18.046,17.732 "/>
|
||||
<polygon fill="#1D1D22" points="12.166,21.471 12.315,21.621 12.315,17.714 12.166,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="10.399,19.704 10.819,20.125 10.819,17.714 10.399,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="11.089,20.394 11.51,20.815 11.51,17.714 11.089,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="11.745,21.05 11.895,21.2 11.895,17.714 11.745,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="8.717,18.022 9.138,18.443 9.138,17.714 8.717,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="12.526,21.832 12.676,21.981 12.676,17.714 12.526,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="13.642,22.947 14.062,23.367 14.062,17.714 13.642,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="14.263,23.567 14.682,23.987 14.682,17.714 14.263,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="9.463,18.769 9.613,18.918 9.613,17.714 9.463,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="20.092,20.978 20.243,20.827 20.243,17.714 20.092,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="22.739,18.331 23.16,17.91 23.16,17.732 22.739,17.732 "/>
|
||||
<polygon fill="#1D1D22" points="20.412,20.657 20.562,20.507 20.562,17.714 20.412,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="20.728,20.341 21.147,19.922 21.147,17.732 20.728,17.732 "/>
|
||||
<polygon fill="#1D1D22" points="22.344,18.726 22.494,18.576 22.494,17.714 22.344,17.714 "/>
|
||||
<polygon fill="#1D1D22" points="18.686,22.385 19.106,21.964 19.106,17.732 18.686,17.732 "/>
|
||||
<polygon fill="#1D1D22" points="21.628,19.442 22.048,19.021 22.048,17.732 21.628,17.732 "/>
|
||||
<path fill="#1D1D22" d="M9.045,13.056c0.117-0.112,0.174-0.243,0.174-0.397c0-0.113-0.036-0.216-0.106-0.311
|
||||
c-0.071-0.095-0.178-0.159-0.32-0.192c0.246-0.076,0.37-0.227,0.37-0.454c0-0.112-0.029-0.208-0.084-0.285
|
||||
c-0.056-0.079-0.126-0.138-0.213-0.18c-0.086-0.042-0.215-0.064-0.386-0.064H7.524v2.049h0.955
|
||||
C8.74,13.223,8.929,13.167,9.045,13.056z M8.003,11.536h0.329c0.1,0,0.167,0.005,0.201,0.013c0.034,0.01,0.065,0.034,0.094,0.071
|
||||
s0.042,0.083,0.042,0.134c0,0.048-0.016,0.098-0.051,0.15c-0.035,0.053-0.119,0.08-0.252,0.08H8.003V11.536z M8.003,12.843V12.35
|
||||
h0.389c0.116,0,0.199,0.024,0.25,0.072c0.05,0.048,0.074,0.105,0.074,0.171c0,0.08-0.026,0.141-0.078,0.186
|
||||
c-0.052,0.043-0.141,0.065-0.267,0.065H8.003z"/>
|
||||
<path fill="#1D1D22" d="M10.424,12.801h0.663l0.126,0.422h0.516l-0.641-2.049h-0.556l-0.657,2.049h0.421L10.424,12.801z
|
||||
M10.759,11.704l0.214,0.718h-0.434L10.759,11.704z"/>
|
||||
<path fill="#1D1D22" d="M13.811,12.988c0.03,0.079,0.053,0.157,0.069,0.234h0.219v-1.096h-0.842v0.383h0.386
|
||||
c0,0.123-0.034,0.212-0.101,0.269c-0.068,0.055-0.145,0.083-0.231,0.083c-0.133,0-0.236-0.055-0.308-0.167
|
||||
c-0.072-0.111-0.108-0.271-0.108-0.482c0-0.218,0.034-0.386,0.1-0.503c0.067-0.117,0.165-0.177,0.295-0.177
|
||||
c0.198,0,0.316,0.124,0.353,0.373l0.456-0.061c-0.031-0.212-0.116-0.383-0.256-0.511c-0.14-0.129-0.324-0.193-0.553-0.193
|
||||
c-0.272,0-0.487,0.1-0.646,0.298c-0.158,0.198-0.237,0.459-0.237,0.786c0,0.303,0.074,0.549,0.223,0.741
|
||||
c0.148,0.192,0.356,0.287,0.624,0.287C13.479,13.254,13.665,13.166,13.811,12.988z"/>
|
||||
<path fill="#1D1D22" d="M15.817,11.534c0.199,0,0.316,0.124,0.354,0.373l0.456-0.061c-0.03-0.212-0.116-0.383-0.256-0.511
|
||||
c-0.141-0.129-0.325-0.193-0.553-0.193c-0.271,0-0.487,0.1-0.646,0.298c-0.158,0.198-0.238,0.459-0.238,0.786
|
||||
c0,0.303,0.074,0.549,0.224,0.741c0.148,0.192,0.356,0.287,0.623,0.287c0.227,0,0.413-0.088,0.559-0.266
|
||||
c0.03,0.079,0.053,0.157,0.068,0.234h0.219v-1.096h-0.842v0.383h0.386c0,0.123-0.034,0.212-0.101,0.269
|
||||
c-0.068,0.055-0.145,0.083-0.231,0.083c-0.133,0-0.235-0.055-0.308-0.167c-0.072-0.111-0.108-0.271-0.108-0.482
|
||||
c0-0.218,0.033-0.386,0.099-0.503C15.589,11.594,15.688,11.534,15.817,11.534z"/>
|
||||
<path fill="#1D1D22" d="M17.902,12.801h0.663l0.125,0.422h0.516l-0.64-2.049H18.01l-0.656,2.049h0.421L17.902,12.801z
|
||||
M18.236,11.704l0.215,0.718h-0.434L18.236,11.704z"/>
|
||||
<path fill="#1D1D22" d="M20.768,11.534c0.198,0,0.315,0.124,0.353,0.373l0.456-0.061c-0.03-0.212-0.116-0.383-0.257-0.511
|
||||
c-0.14-0.129-0.323-0.193-0.552-0.193c-0.273,0-0.487,0.1-0.647,0.298c-0.157,0.198-0.237,0.459-0.237,0.786
|
||||
c0,0.303,0.074,0.549,0.224,0.741c0.147,0.192,0.355,0.287,0.624,0.287c0.227,0,0.412-0.088,0.559-0.266
|
||||
c0.029,0.079,0.053,0.157,0.067,0.234h0.22v-1.096h-0.843v0.383h0.387c0,0.123-0.034,0.212-0.102,0.269
|
||||
c-0.067,0.055-0.145,0.083-0.229,0.083c-0.134,0-0.236-0.055-0.309-0.167c-0.072-0.111-0.107-0.271-0.107-0.482
|
||||
c0-0.218,0.033-0.386,0.099-0.503C20.539,11.594,20.637,11.534,20.768,11.534z"/>
|
||||
<polygon fill="#1D1D22" points="23.971,11.564 23.971,11.173 22.509,11.173 22.509,13.223 23.971,13.223 23.971,12.818
|
||||
22.997,12.818 22.997,12.37 23.763,12.37 23.763,11.985 22.997,11.985 22.997,11.564 "/>
|
||||
<polygon fill="#1D1D22" points="8.356,15.184 8.467,14.984 8.578,15.184 8.728,15.184 8.557,14.889 8.707,14.633 8.587,14.633
|
||||
8.493,14.8 8.404,14.633 8.253,14.633 8.405,14.891 8.234,15.184 "/>
|
||||
<polygon fill="#1D1D22" points="9.353,14.633 9.232,14.633 9.138,14.8 9.048,14.633 8.898,14.633 9.049,14.891 8.879,15.184
|
||||
9.001,15.184 9.112,14.984 9.223,15.184 9.372,15.184 9.202,14.889 "/>
|
||||
<polygon fill="#1D1D22" points="9.998,14.633 9.877,14.633 9.783,14.8 9.694,14.633 9.543,14.633 9.694,14.891 9.523,15.184
|
||||
9.646,15.184 9.757,14.984 9.868,15.184 10.018,15.184 9.847,14.889 "/>
|
||||
<polygon fill="#1D1D22" points="10.292,15.184 10.402,14.984 10.512,15.184 10.663,15.184 10.492,14.889 10.642,14.633
|
||||
10.522,14.633 10.428,14.8 10.339,14.633 10.188,14.633 10.34,14.891 10.169,15.184 "/>
|
||||
<polygon fill="#1D1D22" points="10.936,15.184 11.047,14.984 11.157,15.184 11.308,15.184 11.137,14.889 11.288,14.633
|
||||
11.167,14.633 11.073,14.8 10.983,14.633 10.833,14.633 10.984,14.891 10.814,15.184 "/>
|
||||
<polygon fill="#1D1D22" points="11.933,14.633 11.812,14.633 11.718,14.8 11.629,14.633 11.479,14.633 11.63,14.891 11.459,15.184
|
||||
11.581,15.184 11.692,14.984 11.803,15.184 11.952,15.184 11.781,14.889 "/>
|
||||
<polygon fill="#1D1D22" points="12.226,15.184 12.337,14.984 12.447,15.184 12.598,15.184 12.427,14.889 12.578,14.633
|
||||
12.457,14.633 12.363,14.8 12.274,14.633 12.123,14.633 12.274,14.891 12.104,15.184 "/>
|
||||
<polygon fill="#1D1D22" points="13.223,14.633 13.102,14.633 13.008,14.8 12.918,14.633 12.769,14.633 12.92,14.891 12.749,15.184
|
||||
12.872,15.184 12.981,14.984 13.093,15.184 13.242,15.184 13.072,14.889 "/>
|
||||
<polygon fill="#1D1D22" points="13.516,15.184 13.627,14.984 13.738,15.184 13.887,15.184 13.717,14.889 13.868,14.633
|
||||
13.747,14.633 13.653,14.8 13.563,14.633 13.413,14.633 13.565,14.891 13.394,15.184 "/>
|
||||
<polygon fill="#1D1D22" points="14.21,14.891 14.039,15.184 14.161,15.184 14.272,14.984 14.383,15.184 14.532,15.184
|
||||
14.362,14.889 14.512,14.633 14.392,14.633 14.298,14.8 14.209,14.633 14.059,14.633 "/>
|
||||
<polygon fill="#1D1D22" points="14.807,15.184 14.917,14.984 15.028,15.184 15.177,15.184 15.007,14.889 15.158,14.633
|
||||
15.037,14.633 14.943,14.8 14.854,14.633 14.704,14.633 14.855,14.891 14.684,15.184 "/>
|
||||
<polygon fill="#1D1D22" points="8.557,15.683 8.707,15.426 8.587,15.426 8.493,15.593 8.404,15.426 8.253,15.426 8.405,15.684
|
||||
8.234,15.978 8.356,15.978 8.467,15.777 8.578,15.978 8.728,15.978 "/>
|
||||
<polygon fill="#1D1D22" points="9.353,15.426 9.232,15.426 9.138,15.593 9.048,15.426 8.898,15.426 9.049,15.684 8.879,15.978
|
||||
9.001,15.978 9.112,15.777 9.223,15.978 9.372,15.978 9.202,15.683 "/>
|
||||
<polygon fill="#1D1D22" points="9.998,15.426 9.877,15.426 9.783,15.593 9.694,15.426 9.543,15.426 9.694,15.684 9.523,15.978
|
||||
9.646,15.978 9.757,15.777 9.868,15.978 10.018,15.978 9.847,15.683 "/>
|
||||
<polygon fill="#1D1D22" points="10.512,15.978 10.663,15.978 10.492,15.683 10.642,15.426 10.522,15.426 10.428,15.593
|
||||
10.339,15.426 10.188,15.426 10.34,15.684 10.169,15.978 10.292,15.978 10.402,15.777 "/>
|
||||
<polygon fill="#1D1D22" points="11.308,15.978 11.137,15.683 11.288,15.426 11.167,15.426 11.073,15.593 10.983,15.426
|
||||
10.833,15.426 10.984,15.684 10.814,15.978 10.936,15.978 11.047,15.777 11.157,15.978 "/>
|
||||
<polygon fill="#1D1D22" points="11.933,15.426 11.812,15.426 11.718,15.593 11.629,15.426 11.479,15.426 11.63,15.684
|
||||
11.459,15.978 11.581,15.978 11.692,15.777 11.803,15.978 11.952,15.978 11.781,15.683 "/>
|
||||
<polygon fill="#1D1D22" points="12.427,15.683 12.578,15.426 12.457,15.426 12.363,15.593 12.274,15.426 12.123,15.426
|
||||
12.274,15.684 12.104,15.978 12.226,15.978 12.337,15.777 12.447,15.978 12.598,15.978 "/>
|
||||
<polygon fill="#1D1D22" points="13.223,15.426 13.102,15.426 13.008,15.593 12.918,15.426 12.769,15.426 12.92,15.684
|
||||
12.749,15.978 12.872,15.978 12.981,15.777 13.093,15.978 13.242,15.978 13.072,15.683 "/>
|
||||
<polygon fill="#1D1D22" points="13.887,15.978 13.717,15.683 13.868,15.426 13.747,15.426 13.653,15.593 13.563,15.426
|
||||
13.413,15.426 13.565,15.684 13.394,15.978 13.516,15.978 13.627,15.777 13.738,15.978 "/>
|
||||
<polygon fill="#1D1D22" points="14.383,15.978 14.532,15.978 14.362,15.683 14.512,15.426 14.392,15.426 14.298,15.593
|
||||
14.209,15.426 14.059,15.426 14.21,15.684 14.039,15.978 14.161,15.978 14.272,15.777 "/>
|
||||
<polygon fill="#1D1D22" points="15.028,15.978 15.177,15.978 15.007,15.683 15.158,15.426 15.037,15.426 14.943,15.593
|
||||
14.854,15.426 14.704,15.426 14.855,15.684 14.684,15.978 14.807,15.978 14.917,15.777 "/>
|
||||
<path fill="#1D1D22" d="M16.867,14.841h0.292c-0.06,0.076-0.108,0.162-0.144,0.258c-0.037,0.097-0.057,0.191-0.059,0.284h0.124
|
||||
c0-0.06,0.01-0.127,0.03-0.201c0.018-0.076,0.047-0.148,0.086-0.214c0.036-0.066,0.073-0.117,0.109-0.153v-0.094h-0.439V14.841z"/>
|
||||
<path fill="#1D1D22" d="M17.873,15.023c0.063-0.036,0.096-0.083,0.096-0.141c0-0.041-0.016-0.079-0.048-0.112
|
||||
c-0.037-0.041-0.089-0.06-0.15-0.06c-0.038,0-0.07,0.007-0.102,0.02c-0.029,0.015-0.053,0.034-0.068,0.059
|
||||
c-0.018,0.023-0.029,0.056-0.038,0.097l0.118,0.02c0.004-0.029,0.014-0.052,0.029-0.065c0.015-0.016,0.034-0.024,0.057-0.024
|
||||
c0.021,0,0.039,0.007,0.052,0.02c0.014,0.013,0.021,0.031,0.021,0.056s-0.01,0.046-0.028,0.063
|
||||
c-0.017,0.016-0.044,0.024-0.079,0.023l-0.014,0.105c0.023-0.007,0.042-0.01,0.06-0.01c0.024,0,0.045,0.01,0.063,0.028
|
||||
c0.017,0.019,0.026,0.045,0.026,0.078c0,0.035-0.01,0.061-0.028,0.082c-0.019,0.02-0.04,0.03-0.066,0.03s-0.047-0.009-0.063-0.024
|
||||
c-0.018-0.017-0.028-0.042-0.032-0.074l-0.125,0.016c0.007,0.057,0.029,0.102,0.069,0.137c0.041,0.035,0.091,0.052,0.152,0.052
|
||||
c0.063,0,0.116-0.021,0.16-0.062c0.043-0.042,0.063-0.091,0.063-0.15c0-0.041-0.012-0.076-0.033-0.104
|
||||
C17.942,15.05,17.91,15.031,17.873,15.023z"/>
|
||||
<path fill="#1D1D22" d="M18.708,15.135h-0.082V14.71h-0.109l-0.291,0.426v0.113h0.273v0.134h0.127V15.25h0.082V15.135z
|
||||
M18.499,15.135h-0.153l0.153-0.229V15.135z"/>
|
||||
<path fill="#1D1D22" d="M18.938,14.841h0.293c-0.06,0.076-0.109,0.162-0.146,0.258c-0.036,0.097-0.055,0.191-0.057,0.284h0.125
|
||||
c-0.002-0.06,0.009-0.127,0.028-0.201c0.02-0.076,0.048-0.148,0.085-0.214c0.038-0.066,0.075-0.117,0.111-0.153v-0.094h-0.44
|
||||
V14.841z"/>
|
||||
<path fill="#1D1D22" d="M19.955,15.022c0.028-0.013,0.053-0.031,0.068-0.056c0.017-0.025,0.024-0.053,0.024-0.083
|
||||
c0-0.05-0.017-0.091-0.053-0.124c-0.036-0.034-0.085-0.049-0.148-0.049c-0.065,0-0.114,0.015-0.15,0.049
|
||||
c-0.033,0.033-0.052,0.074-0.052,0.124c0,0.029,0.007,0.056,0.023,0.081c0.015,0.024,0.038,0.044,0.071,0.059
|
||||
c-0.038,0.016-0.067,0.04-0.084,0.069c-0.02,0.03-0.028,0.063-0.028,0.101c0,0.066,0.024,0.117,0.073,0.156
|
||||
c0.04,0.031,0.09,0.048,0.152,0.048c0.065,0,0.118-0.019,0.158-0.058c0.038-0.04,0.059-0.089,0.059-0.151
|
||||
c0-0.038-0.011-0.071-0.029-0.1C20.021,15.058,19.992,15.037,19.955,15.022z M19.788,14.834c0.016-0.015,0.034-0.023,0.059-0.023
|
||||
s0.043,0.008,0.059,0.023c0.015,0.013,0.021,0.034,0.021,0.058c0,0.025-0.007,0.045-0.021,0.06
|
||||
c-0.016,0.015-0.034,0.023-0.059,0.023s-0.044-0.008-0.059-0.023c-0.015-0.014-0.021-0.034-0.021-0.059
|
||||
C19.768,14.868,19.773,14.849,19.788,14.834z M19.916,15.265c-0.018,0.019-0.04,0.027-0.066,0.027c-0.027,0-0.05-0.008-0.068-0.029
|
||||
c-0.017-0.02-0.026-0.047-0.026-0.083c0-0.026,0.008-0.049,0.022-0.071c0.016-0.022,0.039-0.033,0.07-0.033
|
||||
c0.026,0,0.05,0.009,0.068,0.028c0.018,0.02,0.026,0.045,0.026,0.076C19.942,15.217,19.934,15.245,19.916,15.265z"/>
|
||||
<path fill="#1D1D22" d="M20.492,15.096c-0.071,0.065-0.119,0.119-0.144,0.16c-0.026,0.041-0.04,0.083-0.046,0.128h0.452v-0.119
|
||||
h-0.256c0.007-0.011,0.017-0.025,0.027-0.035c0.01-0.013,0.035-0.038,0.076-0.076c0.04-0.037,0.068-0.066,0.085-0.085
|
||||
c0.023-0.03,0.04-0.059,0.051-0.086c0.011-0.027,0.017-0.055,0.017-0.085c0-0.054-0.02-0.097-0.057-0.133
|
||||
c-0.038-0.036-0.091-0.053-0.156-0.053c-0.061,0-0.111,0.015-0.152,0.045c-0.039,0.032-0.064,0.083-0.071,0.154l0.13,0.012
|
||||
c0.002-0.039,0.011-0.065,0.025-0.081c0.017-0.017,0.038-0.025,0.064-0.025c0.027,0,0.049,0.008,0.064,0.024
|
||||
c0.016,0.016,0.024,0.037,0.024,0.065c0,0.026-0.01,0.053-0.028,0.079C20.586,15.004,20.55,15.04,20.492,15.096z"/>
|
||||
<path fill="#1D1D22" d="M21.011,14.841h0.293c-0.062,0.076-0.108,0.162-0.146,0.258c-0.035,0.097-0.054,0.191-0.056,0.284h0.124
|
||||
c0-0.06,0.009-0.127,0.027-0.201c0.021-0.076,0.05-0.148,0.087-0.214c0.038-0.066,0.075-0.117,0.111-0.153v-0.094h-0.44V14.841z"/>
|
||||
<path fill="#1D1D22" d="M22.027,15.022c0.029-0.013,0.052-0.031,0.067-0.056c0.017-0.025,0.024-0.053,0.024-0.083
|
||||
c0-0.05-0.018-0.091-0.052-0.124c-0.036-0.034-0.085-0.049-0.149-0.049c-0.065,0-0.114,0.015-0.15,0.049
|
||||
c-0.034,0.033-0.052,0.074-0.052,0.124c0,0.029,0.009,0.056,0.023,0.081s0.039,0.044,0.072,0.059
|
||||
c-0.039,0.016-0.067,0.04-0.084,0.069c-0.02,0.03-0.028,0.063-0.028,0.101c0,0.066,0.024,0.117,0.072,0.156
|
||||
c0.04,0.031,0.092,0.048,0.152,0.048c0.066,0,0.118-0.019,0.158-0.058c0.039-0.04,0.06-0.089,0.06-0.151
|
||||
c0-0.038-0.01-0.071-0.03-0.1C22.093,15.058,22.065,15.037,22.027,15.022z M21.86,14.834c0.015-0.015,0.034-0.023,0.059-0.023
|
||||
c0.023,0,0.044,0.008,0.058,0.023C21.991,14.848,22,14.868,22,14.892c0,0.025-0.009,0.045-0.023,0.06
|
||||
c-0.015,0.015-0.034,0.023-0.059,0.023c-0.023,0-0.043-0.008-0.058-0.023c-0.016-0.014-0.023-0.034-0.023-0.059
|
||||
C21.837,14.868,21.845,14.849,21.86,14.834z M21.988,15.265c-0.019,0.019-0.04,0.027-0.066,0.027c-0.027,0-0.051-0.008-0.068-0.029
|
||||
c-0.019-0.02-0.026-0.047-0.026-0.083c0-0.026,0.007-0.049,0.021-0.071c0.017-0.022,0.04-0.033,0.071-0.033
|
||||
c0.026,0,0.05,0.009,0.067,0.028c0.017,0.02,0.026,0.045,0.026,0.076C22.014,15.217,22.004,15.245,21.988,15.265z"/>
|
||||
<path fill="#1D1D22" d="M22.831,15.05c0-0.122-0.022-0.208-0.066-0.261c-0.043-0.053-0.1-0.078-0.168-0.078
|
||||
c-0.063,0-0.113,0.02-0.154,0.062c-0.04,0.041-0.061,0.097-0.061,0.165c0,0.065,0.02,0.119,0.057,0.159
|
||||
c0.04,0.04,0.084,0.061,0.138,0.061c0.048,0,0.089-0.019,0.12-0.056c-0.005,0.077-0.015,0.129-0.034,0.152
|
||||
c-0.019,0.024-0.041,0.037-0.068,0.037c-0.021,0-0.039-0.007-0.05-0.018c-0.014-0.012-0.022-0.032-0.024-0.057l-0.125,0.015
|
||||
c0.01,0.054,0.03,0.095,0.063,0.125c0.032,0.027,0.074,0.041,0.128,0.041c0.072,0,0.132-0.026,0.177-0.082
|
||||
C22.807,15.26,22.831,15.171,22.831,15.05z M22.66,15.033c-0.017,0.02-0.038,0.03-0.062,0.03c-0.026,0-0.047-0.011-0.065-0.031
|
||||
c-0.018-0.02-0.024-0.051-0.024-0.095c0-0.043,0.007-0.074,0.022-0.093c0.017-0.018,0.036-0.028,0.06-0.028
|
||||
c0.024,0,0.047,0.011,0.066,0.035c0.02,0.022,0.028,0.054,0.028,0.095C22.686,14.985,22.678,15.015,22.66,15.033z"/>
|
||||
<path fill="#1D1D22" d="M23.459,14.71h-0.107l-0.292,0.426v0.113h0.275v0.134h0.124V15.25h0.084v-0.115h-0.084V14.71z
|
||||
M23.335,15.135h-0.154l0.154-0.229V15.135z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#1D1D22" d="M22.194,16.201v0.753c0,0.176,0.145,0.321,0.321,0.321h0.87c0.178,0,0.322-0.145,0.322-0.321v-0.753
|
||||
c0-0.176-0.145-0.32-0.322-0.32h-0.87C22.339,15.88,22.194,16.024,22.194,16.201z M23.408,16.141v0.876h-0.913v-0.876H23.408z"/>
|
||||
<rect x="19.897" y="16.697" fill="#1D1D22" width="0.232" height="0.234"/>
|
||||
<path fill="#1D1D22" d="M17.838,16.188v-0.017c-0.021-0.165-0.161-0.294-0.333-0.294h-0.848c-0.185,0-0.334,0.149-0.334,0.335
|
||||
v0.725c0,0.185,0.149,0.334,0.334,0.334h0.848c0.175,0,0.317-0.13,0.334-0.299v-0.018h-1.145v-0.767H17.838z"/>
|
||||
<path fill="#1D1D22" d="M21.92,16.15c-0.023-0.154-0.157-0.27-0.316-0.27h-0.931c-0.179,0-0.32,0.144-0.32,0.32v0.753
|
||||
c0,0.176,0.142,0.321,0.32,0.321h0.931c0.166,0,0.304-0.123,0.318-0.285v-0.529h-1.031c0.003,0.027,0.017,0.077,0.068,0.142
|
||||
c0.067,0.084,0.171,0.092,0.2,0.092h0.466V17h-0.977v-0.85H21.92z"/>
|
||||
<path fill="#1D1D22" d="M18.102,16.971c0.018,0.17,0.159,0.301,0.333,0.301h0.89c0.187,0,0.337-0.149,0.337-0.334v-0.217
|
||||
c-0.017-0.169-0.159-0.301-0.333-0.301h-0.889v-0.241h1.193c-0.018-0.169-0.16-0.301-0.333-0.301h-0.865
|
||||
c-0.185,0-0.335,0.149-0.335,0.334v0.208c0.018,0.171,0.16,0.302,0.333,0.302l0.889-0.001v0.25H18.102z"/>
|
||||
<rect x="19.897" y="16.219" fill="#1D1D22" width="0.232" height="0.233"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 52 KiB |
|
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 70 KiB |
@@ -1,305 +1,305 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="16" y1="3.8982" x2="16" y2="26.4613">
|
||||
<stop offset="0" style="stop-color:#B2C9CC"/>
|
||||
<stop offset="0.2185" style="stop-color:#8FA1A3"/>
|
||||
<stop offset="0.4362" style="stop-color:#738182"/>
|
||||
<stop offset="0.6435" style="stop-color:#5E6A6A"/>
|
||||
<stop offset="0.8362" style="stop-color:#525C5C"/>
|
||||
<stop offset="1" style="stop-color:#4E5757"/>
|
||||
</linearGradient>
|
||||
<circle fill="url(#SVGID_1_)" cx="16" cy="15.8" r="14.1"/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="15.6121" y1="12.8788" x2="15.6121" y2="30.5654">
|
||||
<stop offset="0" style="stop-color:#B6CCD1"/>
|
||||
<stop offset="1.855779e-02" style="stop-color:#B3C8CD"/>
|
||||
<stop offset="0.2369" style="stop-color:#8FA0A3"/>
|
||||
<stop offset="0.4494" style="stop-color:#738082"/>
|
||||
<stop offset="0.6519" style="stop-color:#5E696A"/>
|
||||
<stop offset="0.8401" style="stop-color:#525C5C"/>
|
||||
<stop offset="1" style="stop-color:#4E5757"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_2_)" d="M1,17.6c0.3-0.2,0.6-0.5,0.9-0.9c1.6-2,2.9-4.2,3.7-5.4c0.3,1.5,3.4,6.8,6.8,7.9
|
||||
c4.8,1.6,7.1,0,8.4-1.3c3.3-3.2,4.3-6.7,5.4-8.2c1.2,1.5,1.6,3.6,3,4.8c0.4,0.3,1,1,1.4,1.2c-0.1,5.2-1.6,15.1-13.8,15.1
|
||||
S-1,19.3,1,17.6z"/>
|
||||
<rect x="13.2" y="9.7" fill="#6D6460" width="0.4" height="3.2"/>
|
||||
<path fill="#DE9537" d="M22,8.9l-0.2,0.1C21.9,9,22,9,22,8.9z"/>
|
||||
<g>
|
||||
<polygon fill="#DDDBD4" points="22.5,28.5 22.5,28.5 24.9,27.4 26.9,25 28.9,22.4 30.1,17.7 1.9,17.7 2.4,20.6 4.4,24.6 8.5,28.4
|
||||
12,30.1 18.3,30.2 "/>
|
||||
<rect x="13.2" y="9" fill="#725835" width="5.4" height="3.2"/>
|
||||
<rect x="18.3" y="9" fill="#6D6460" width="0.4" height="3.2"/>
|
||||
<rect x="15.8" y="9" fill="#6D6460" width="0.4" height="3.2"/>
|
||||
<polygon fill="#A03C2E" points="10,17.7 21.9,17.7 21.7,14.2 10.2,14.2 "/>
|
||||
<polygon fill="#DDDBD4" points="10.3,12 10.2,13.9 21.7,13.9 21.6,12 "/>
|
||||
<polygon fill="#EDE9DD" points="21.4,11.7 16,11.7 10.5,11.7 9.6,12.5 16,12.5 22.3,12.5 "/>
|
||||
<path fill="#966626" d="M23.5,8l-0.3-0.5L22,8.3c-0.1,0-0.1,0.1-0.2,0.1C19.6,9.5,16,9.3,16,9.3c-3.5,0-5.9-0.9-5.9-0.9L8.7,7.6
|
||||
L8.5,8l1.3,0.8C9.7,9.1,9.6,9.3,9.6,9.3s1.2,0.6,3.6,0.8c0,0,1,0.1,2.7,0.1s2.7-0.1,2.7-0.1c2.5-0.3,3.6-0.8,3.6-0.8s0-0.2-0.1-0.5
|
||||
L23.5,8z"/>
|
||||
<path fill="#DE9537" d="M21.8,8.4c-2,0.7-3.4-1-3.9-1.4c-0.4-0.4-0.9-1-1.4-1.3h-0.3c0.1,0,0.1-0.1,0.1-0.2V5
|
||||
c0-0.1-0.1-0.2-0.2-0.2l0,0c0,0,0,0,0,0v0c0,0,0-0.1,0-0.1h0.1h0.3c0,0,0.1,0,0.1-0.1l0-0.1c0,0,0-0.1-0.1-0.1h-0.5c0,0,0,0,0,0v0
|
||||
c0,0,0,0,0,0l0,0c0.1,0,0.1-0.1,0.1-0.2V3.7c0-0.1-0.1-0.2-0.2-0.2h0c0,0,0,0,0,0v0c0,0,0,0,0,0h0.3c0,0,0,0,0-0.1l0-0.1
|
||||
c0,0,0-0.1-0.1-0.1h-0.1h-0.1c0,0,0,0,0,0v0c0,0,0,0,0,0l0,0c0.1,0-0.2-0.9-0.2-0.9c0,0,0,0,0,0c0,0-0.3,0.9-0.2,0.9l0,0
|
||||
c0,0,0,0,0,0v0c0,0,0,0,0,0h-0.1h-0.1c0,0-0.1,0-0.1,0.1l0,0.1c0,0,0,0.1,0,0.1h0.3c0,0,0,0,0,0v0c0,0,0,0,0,0h0
|
||||
c-0.1,0-0.2,0.1-0.2,0.2v0.4c0,0.1,0.1,0.1,0.1,0.2l0,0c0,0,0,0,0,0v0c0,0,0,0,0,0h-0.5c0,0-0.1,0-0.1,0.1l0,0.1c0,0,0,0.1,0.1,0.1
|
||||
h0.3h0.1c0,0,0,0,0,0.1v0c0,0,0,0,0,0l0,0c-0.1,0-0.2,0.1-0.2,0.2v0.5c0,0.1,0.1,0.2,0.1,0.2h-0.3c-0.5,0.3-1,1-1.4,1.3
|
||||
c-0.5,0.5-1.9,2.1-3.9,1.4c0,0,2.3,0.9,5.9,0.9C16,9.3,19.6,9.5,21.8,8.4z"/>
|
||||
<rect x="17.5" y="14.7" fill="#6D6460" width="2" height="2"/>
|
||||
<g>
|
||||
<rect x="17.7" y="14.9" fill="#9DA5A5" width="1.5" height="1.5"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="17.5" y="16.7" fill="#D6D6D6" width="2" height="0.2"/>
|
||||
</g>
|
||||
<path fill="#D6D6D6" d="M18.7,10.1c-1.8,0.2-3.6,0.2-5.4,0v0.6c1.8,0.2,3.6,0.2,5.4,0V10.1z"/>
|
||||
<g>
|
||||
<polygon fill="#D6D6D6" points="21.7,14.4 10.2,14.5 10.2,13.9 21.7,13.9 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#D6D6D6" points="30.1,18.5 1.8,18.6 1.8,18 30,18 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#D6D6D6" points="21.7,13 10.2,13.1 10.2,12.5 21.7,12.5 "/>
|
||||
</g>
|
||||
<rect x="12.4" y="14.7" fill="#6D6460" width="2" height="2"/>
|
||||
<g>
|
||||
<rect x="12.7" y="14.9" fill="#9DA5A5" width="1.5" height="1.5"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="12.5" y="16.7" fill="#D6D6D6" width="2" height="0.2"/>
|
||||
</g>
|
||||
</g>
|
||||
<polygon fill="#A03C2E" points="20.1,30.9 16.6,31.5 10.8,30.4 7.4,28.9 6.2,27.1 26.9,27.1 22.5,29.8 "/>
|
||||
<rect x="12.6" y="28.1" fill="#6D6460" width="2" height="2"/>
|
||||
<rect x="17.2" y="28.1" fill="#6D6460" width="2" height="2"/>
|
||||
<polygon fill="#6D6460" points="22.7,30.1 21.9,30.1 21.9,28.1 23.9,28.1 23.9,29.3 "/>
|
||||
<polygon fill="#6D6460" points="10.6,30.1 9.1,30.1 8.6,29.5 8.6,28.1 10.6,28.1 "/>
|
||||
<g>
|
||||
<rect x="17.3" y="28.2" fill="#9DA5A5" width="1.7" height="1.7"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="12.8" y="28.2" fill="#9DA5A5" width="1.7" height="1.7"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#9DA5A5" points="22.1,28.2 23.8,28.2 23.8,29.4 23.4,29.9 22.1,29.9 "/>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="8.7" y="28.2" fill="#9DA5A5" width="1.7" height="1.7"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#626666" d="M30.7,17.5c-2.2-0.8-3.8-1.9-3.9-1.9l-0.1,0l-0.1,0c0,0-5,3.2-10.3,3.2c-3.7,0-7.4-1.5-9.6-2.4
|
||||
c-0.8-0.3-1.2-0.5-1.5-0.6v0h0c-0.2,0-0.3,0-0.3,0C4.7,16,3.1,16.5,1.7,17c-0.8,0.3-1,0.6,0.1,0.2c1.3-0.5,2.8-1,3.2-1.2l0.3,0
|
||||
c0.3,0.1,0.8,0.3,1.4,0.5c2.2,0.9,5.9,2.4,9.7,2.4c4.8,0,9.2-2.5,10.2-3.1l0.3,0c0.6,0.4,1.9,1.2,3.8,1.9
|
||||
C30.9,17.6,30.9,17.6,30.7,17.5z"/>
|
||||
<path fill="#626666" d="M9,17.5c-0.1-0.2-0.2-0.3-0.4-0.4C8.5,17.1,8.3,17,8.1,17c0,0,0,0,0,0c-0.1,0-0.2,0-0.3,0
|
||||
c0-0.1-0.1-0.2-0.1-0.3c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.4-0.1c-0.1,0-0.2,0-0.3,0c0-0.1,0.1-0.2,0-0.3
|
||||
c-0.1,0-0.1,0-0.2-0.1c-0.1,0-0.2,0-0.2,0L6.1,16C5.9,16,5.9,16,5.8,16l-0.1,0.1l0,0.1c-0.1,0.3-0.2,0.5-0.3,0.7c0,0,0,0,0,0
|
||||
c0,0,0-0.2-0.2-0.5c-0.2-0.3-0.2-0.4-0.3-0.4l-0.2,0h0c-0.1,0-0.5,0.3-0.6,0.3l-0.1,0.1l0,0l0,0.1c0,0,0.2,0.3,0.2,0.4
|
||||
c0.1,0.1,0.1,0.3,0.2,0.4c0,0,0,0.1,0,0.3c0,0.1,0,0.1,0,0.2c0,0-0.1,0-0.2-0.1c-0.2-0.1-0.2-0.2-0.2-0.2c0-0.1-0.1-0.2-0.2-0.3
|
||||
c0,0-0.2-0.3-0.2-0.3l-0.2-0.1H3.3c-0.1,0-0.6,0.3-0.6,0.3L2.6,17c0,0,0,0-0.1,0l-0.1,0C2.2,17,2.1,17.1,2,17.3c0,0,0,0,0,0.1
|
||||
c0-0.1-0.1-0.1-0.2-0.1c0,0,0,0,0,0c0,0,0,0-0.3,0.2c-0.1,0.1-0.2,0.1-0.3,0.2l0,0.2l0,0.1c0.1,0.2,0.3,0.4,0.4,0.8l0.4,1l0.1,0.1
|
||||
H2l0.1,0c0.1,0,0.2-0.1,0.3-0.1c0.1-0.1,0.2-0.1,0.3-0.1l0.1-0.1l0-0.1c0,0-0.1-0.3-0.2-0.4l-0.2-0.6c0-0.1,0-0.2,0-0.2
|
||||
c0,0,0,0,0.2-0.1L2.8,18c0.1,0,0.2-0.2,0.1-0.3l0-0.1C3,17.9,3.1,18,3.1,18c0,0,0.2,0.1,0.6,0.3c0.3,0.1,0.4,0.2,0.4,0.3
|
||||
c0,0.1-0.1,0.2-0.4,0.3L3.7,19l0.1,0.1c0,0,0,0.1,0.2,0.2l0.3,0.2c0,0,0.1,0,0.2-0.1c0.6-0.3,0.6-0.4,0.6-0.4c0,0,0-0.1,0.1-0.6
|
||||
l0-0.2c0.1,0.1,0.2,0.1,0.3,0.1c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0l0.1-0.1l0.6-1.2c0,0,0,0,0.2,0l0.2,0.1c0,0,0,0.1,0,0.2l-0.2,0.5
|
||||
c0,0.1-0.3,0.6-0.3,0.6c0,0.1,0,0.1,0,0.2l0,0.1l0.8,0.3L7,19l0.3-0.7c0.1-0.3,0.2-0.4,0.2-0.5c0,0,0.1-0.1,0.1-0.1l0.2,0
|
||||
c0.1,0,0.1,0.1,0.1,0.2c0,0.1-0.1,0.3-0.2,0.5c0,0.1-0.3,0.6-0.3,0.6c-0.1,0.2,0,0.3,0,0.3c0,0,0.1,0.1,0.3,0.2
|
||||
c0.2,0.1,0.3,0.1,0.3,0.1l0.1,0l0.1-0.1l0.4-0.9c0-0.1,0.3-0.6,0.3-0.7C9.1,17.9,9.1,17.7,9,17.5z"/>
|
||||
<path fill="#626666" d="M11.4,18.4c-0.2-0.3-0.4-0.5-0.8-0.6c-0.1,0-0.3-0.1-0.4-0.1c-0.2,0-0.4,0.1-0.6,0.2
|
||||
C9.3,18,9.1,18.3,9,18.7c-0.1,0.4-0.1,0.7,0.1,1c0.2,0.3,0.4,0.5,0.8,0.6c0.1,0,0.3,0.1,0.4,0.1c0.2,0,0.4-0.1,0.6-0.1
|
||||
c0.3-0.2,0.5-0.4,0.6-0.8C11.6,19,11.5,18.7,11.4,18.4z M10.4,19.3c0,0-0.1,0-0.2,0c0,0,0,0-0.1,0c-0.1,0-0.1-0.1-0.2-0.2
|
||||
c0-0.1,0-0.2,0-0.3c0-0.1,0.1-0.2,0.1-0.2c0,0,0.1,0,0.1,0l0.1,0c0.1,0,0.1,0.1,0.2,0.1c0,0.1,0,0.2,0,0.3
|
||||
C10.5,19.2,10.5,19.3,10.4,19.3z"/>
|
||||
<path fill="#626666" d="M13.5,18.4l-0.1,0c-0.1,0-0.3,0-0.4,0.1c0,0-0.1,0-0.1,0c0-0.1,0-0.2-0.2-0.3c-0.1,0-0.2,0-0.4,0
|
||||
c-0.2,0-0.3,0-0.4,0l-0.1,0.1l0,0.1c0,0.2,0,0.5,0,0.9l-0.2,1.1l0,0.2l0.1,0c0.1,0,0.2,0,0.4,0.1c0.2,0,0.3,0,0.3,0
|
||||
c0.1,0,0.2-0.1,0.2-0.2l0.2-1.2c0,0,0,0,0.1-0.1c0.1,0,0.1,0,0.1,0c0,0,0,0,0,0c0.1,0,0.2,0,0.1,0.2L13,20c0,0.1-0.1,0.6-0.1,0.6
|
||||
c0,0.1,0,0.2,0.1,0.2c0,0,0.2,0,0.4,0.1c0.2,0,0.3,0,0.3,0h0l0.2-0.1l0.3-1.7c0-0.2,0-0.4-0.2-0.6C13.9,18.5,13.7,18.4,13.5,18.4z"
|
||||
/>
|
||||
<path fill="#626666" d="M17,18.8L17,18.8c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3-0.1-0.3-0.1c-0.1,0-0.1,0.1-0.2,0.1
|
||||
c-0.1-0.1-0.3-0.2-0.6-0.2c-0.4,0-0.7,0.1-0.9,0.4c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.3,0.1,0.6,0.3,0.9c0.2,0.3,0.5,0.4,0.8,0.4h0
|
||||
c0.2,0,0.3-0.1,0.5-0.2c0,0.1,0.1,0.2,0.2,0.2l0.2,0c0.2,0,0.3,0,0.4,0c0.1,0,0.2-0.1,0.2-0.2c0-0.1,0-0.3,0-0.5c0-0.2,0-0.4,0-0.5
|
||||
c0-0.3,0-0.6,0.1-0.9L17,18.8z M15.8,20.1c-0.1,0.1-0.1,0.1-0.2,0.1h0c-0.1,0-0.2,0-0.2-0.1c-0.1-0.1-0.1-0.1-0.1-0.2
|
||||
c0-0.1,0-0.2,0.1-0.2c0.1-0.1,0.1-0.1,0.2-0.1h0c0.1,0,0.2,0,0.2,0.1c0.1,0.1,0.1,0.1,0.1,0.2C15.9,19.9,15.9,20,15.8,20.1z"/>
|
||||
<path fill="#626666" d="M18.3,19.4c-0.1-0.1-0.1-0.1-0.1-0.1c0,0,0-0.1,0-0.1c0,0,0.1,0,0.3-0.1l0.1,0l0-0.1l0.1-0.1l0,0
|
||||
c0,0,0-0.1-0.2-0.3c-0.2-0.2-0.2-0.3-0.3-0.3h0c-0.3,0-0.5,0.1-0.7,0.3c-0.2,0.2-0.4,0.4-0.3,0.7c0,0.1,0.1,0.3,0.2,0.4
|
||||
c0,0,0.1,0.1,0.2,0.2c0.1,0.1,0.1,0.1,0.1,0.1c0,0,0,0.1-0.1,0.1l-0.3,0.1l-0.1,0.1l0,0.1c0,0,0,0.1,0.2,0.3
|
||||
c0.2,0.2,0.2,0.3,0.3,0.3h0c0.2,0,0.3-0.1,0.5-0.2c0.2-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.2,0.1-0.3c0-0.1,0-0.2,0-0.3
|
||||
c0-0.2-0.1-0.3-0.2-0.4C18.5,19.6,18.5,19.5,18.3,19.4z"/>
|
||||
<path fill="#626666" d="M22.9,19.2c-0.1-0.1-0.2-0.2-0.2-0.2c0.1,0,0.1,0,0.1,0c0.1,0,0.2-0.2,0.1-0.4c-0.1-0.3-0.3-0.6-0.6-0.7
|
||||
c-0.2-0.1-0.4-0.2-0.6-0.2c-0.1,0-0.2,0-0.3,0c-0.4,0.1-0.6,0.3-0.8,0.6c-0.1,0.2-0.1,0.4-0.1,0.6l-0.1-0.1h-0.1
|
||||
c-0.1,0-0.4,0.1-0.4,0.1c0-0.1,0-0.1,0-0.3c0-0.1,0-0.2,0-0.3c0-0.1-0.1-0.1-0.2-0.1c0,0-0.4,0-0.4,0l-0.2,0c0,0-0.1,0-0.1,0
|
||||
l-0.1,0l0,0c0,0.1,0,0.1,0,0.4L19,19c0,0.1,0,0.2,0,0.2h0c-0.2,0-0.2,0.1-0.2,0.2l0.1,0.3l0,0.2c0,0.1,0.1,0.1,0.2,0.1l0.1,0
|
||||
c0,0.1,0,0.2,0.1,0.4c0,0.2,0.1,0.4,0.1,0.5c0.1,0.3,0.3,0.5,0.6,0.5c0.1,0,0.2,0,0.2,0c0.3,0,0.5-0.1,0.7-0.3C20.9,21,21,21,21,21
|
||||
l0-0.1l0,0c0,0,0-0.1,0-0.2c0-0.1,0-0.2,0-0.2l-0.1-0.1h-0.1c0,0-0.1,0-0.2,0.1c-0.1,0-0.1,0-0.1,0l-0.1,0c0,0,0-0.1-0.1-0.2l0-0.2
|
||||
l0-0.1l0.4-0.1l0.2-0.1l-0.1-0.3c0.1,0.3,0.3,0.6,0.6,0.7c0.2,0.1,0.4,0.1,0.6,0.1c0.1,0,0.3,0,0.4-0.1c0.4-0.1,0.7-0.3,0.8-0.6
|
||||
l0-0.1l0,0C23.1,19.5,23.1,19.4,22.9,19.2z M21.5,18.7c0-0.1,0.1-0.1,0.1-0.1l0.1,0c0,0,0.1,0,0.1,0c0,0,0.1,0.1,0.1,0.1
|
||||
c0,0,0,0,0,0c-0.2,0.1-0.4,0.2-0.4,0.2C21.5,18.8,21.5,18.7,21.5,18.7z M22.4,19.2c-0.1,0.1-0.2,0.2-0.3,0.2c0,0-0.1,0-0.2,0
|
||||
c0,0-0.1,0-0.1,0c0,0,0,0,0,0C22.1,19.3,22.4,19.2,22.4,19.2L22.4,19.2z"/>
|
||||
<path fill="#626666" d="M30.7,17.5c-0.1-0.2-0.2-0.3-0.4-0.4C30.1,17.1,30,17,29.8,17c0,0,0,0,0,0c-0.1,0-0.2,0-0.3,0
|
||||
c0-0.1-0.1-0.2-0.1-0.3c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.4-0.1c-0.1,0-0.2,0-0.3,0c0-0.1,0.1-0.2,0-0.3
|
||||
c-0.1,0-0.1,0-0.2-0.1c-0.1,0-0.2,0-0.2,0L27.7,16c-0.1,0-0.2-0.1-0.2-0.1l-0.1,0.1l0,0.1c-0.1,0.3-0.2,0.5-0.3,0.7
|
||||
c0-0.1-0.1-0.2-0.2-0.5c-0.2-0.3-0.2-0.4-0.3-0.4l-0.2,0h0c-0.1,0-0.5,0.3-0.6,0.3l-0.1,0.1l0,0l0,0.1c0,0,0.1,0.1,0.1,0.2
|
||||
c0,0.1,0.1,0.1,0.1,0.2c0.1,0.1,0.1,0.3,0.2,0.4c0,0,0,0.1,0,0.3c0,0.1,0,0.1,0,0.2c0,0-0.1,0-0.2-0.1c-0.2-0.1-0.2-0.2-0.2-0.2
|
||||
c0-0.1-0.1-0.2-0.2-0.3c0,0-0.2-0.3-0.2-0.3l-0.2-0.1H25c-0.1,0-0.6,0.3-0.6,0.3c-0.1,0-0.1,0.1-0.1,0.1l0,0c0,0,0-0.1-0.1-0.1
|
||||
l-0.1,0l0,0c-0.1,0.1-0.3,0.2-0.4,0.3c0,0,0,0,0,0.1c0-0.1-0.1-0.1-0.2-0.1c0,0,0,0,0,0c0,0,0,0-0.3,0.2c-0.1,0.1-0.2,0.1-0.3,0.2
|
||||
l0,0.2l0,0.1c0.1,0.2,0.3,0.4,0.4,0.8l0.2,0.4l0.1,0.2l0.2,0.4l0.1,0.1h0.1l0.1,0c0.1,0,0.2-0.1,0.3-0.1c0.1-0.1,0.2-0.1,0.3-0.1
|
||||
l0.1-0.1c0,0-0.2-0.4-0.2-0.5l-0.2-0.6c0-0.1,0-0.2,0-0.2c0,0,0,0,0.2-0.1l0.2-0.1c0.1,0,0.2-0.2,0.1-0.3l0-0.1
|
||||
c0.1,0.3,0.2,0.3,0.2,0.4c0,0,0.2,0.1,0.6,0.3c0.3,0.1,0.4,0.2,0.4,0.2c0,0,0,0,0,0c0,0,0,0.1,0,0.1c-0.1,0.1-0.2,0.2-0.3,0.3
|
||||
L25.3,19l0.1,0.1c0,0,0,0.1,0.2,0.1l0.4,0.3c0,0,0.1,0,0.2-0.1c0.6-0.3,0.6-0.4,0.6-0.4c0,0,0-0.1,0.1-0.6l0-0.2
|
||||
c0.1,0.1,0.2,0.1,0.3,0.1c0,0,0.1,0,0.1,0c0,0,0,0,0,0l0.1-0.1l0.6-1.2c0,0,0,0,0.2,0l0.2,0.1c0,0,0,0.1,0,0.2l-0.2,0.5
|
||||
c0,0.1-0.3,0.6-0.3,0.6c0,0.1,0,0.1,0,0.2l0,0.1l0.8,0.3l0.1,0c0,0,0.3-0.6,0.3-0.7c0.1-0.3,0.2-0.4,0.2-0.5c0,0,0.1-0.1,0.1-0.1
|
||||
l0.2,0c0.1,0,0.1,0.1,0.1,0.2c0,0.1-0.1,0.3-0.2,0.5c0,0.1-0.3,0.6-0.3,0.6c-0.1,0.2,0,0.3,0,0.3c0,0,0.1,0.1,0.3,0.2
|
||||
c0.2,0.1,0.3,0.1,0.3,0.1l0.1,0l0.1-0.1l0.4-0.9l0.3-0.7C30.8,17.9,30.8,17.7,30.7,17.5z"/>
|
||||
<path fill="#B2838D" d="M8.2,19.5c0,0-0.1,0.1-0.1,0.1c0,0-0.1-0.1-0.3-0.1c-0.2-0.1-0.3-0.1-0.3-0.2c0,0,0-0.1,0-0.1
|
||||
c0-0.1,0.1-0.2,0.1-0.3c0.1-0.1,0.1-0.2,0.1-0.3C7.9,18.3,8,18.2,8,18c0.1-0.2,0-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0
|
||||
c-0.1,0-0.2,0.1-0.2,0.1c0,0.1-0.1,0.2-0.3,0.5c0,0.1-0.1,0.2-0.1,0.3C7,18.7,7,18.8,7,18.9c0,0-0.1,0.1-0.1,0l-0.6-0.3
|
||||
c0,0,0-0.1,0-0.1c0-0.1,0.1-0.2,0.1-0.3C6.4,18.1,6.5,18,6.5,18c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0.1-0.2,0.1-0.2
|
||||
c0.1-0.2,0.1-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2,0-0.2,0.1c-0.1,0.1-0.2,0.3-0.3,0.6c-0.1,0.2-0.2,0.4-0.3,0.6
|
||||
c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0c-0.1,0-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.2c0,0,0,0-0.1,0c0,0,0,0,0-0.1
|
||||
c0.1-0.1,0.1-0.3,0.2-0.5c0.1-0.2,0.2-0.4,0.2-0.5c0.1-0.2,0.2-0.5,0.3-0.8c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0.1,0,0.2,0.1
|
||||
c0.1,0,0.2,0.1,0.2,0.1c0,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0.1c0,0,0,0.1,0,0.2c0,0.1-0.1,0.1-0.1,0.2c0,0,0,0,0.1,0
|
||||
c0.2,0,0.3-0.1,0.4-0.1c0.1,0,0.3,0,0.4,0.1c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0.1-0.1,0.3-0.1,0.4-0.1
|
||||
c0.2,0,0.3,0,0.4,0.1c0.2,0.1,0.3,0.2,0.4,0.3c0.1,0.2,0.1,0.3,0,0.5c0,0.1-0.1,0.2-0.2,0.3c-0.1,0.1-0.1,0.3-0.2,0.3
|
||||
c0,0.1-0.1,0.2-0.2,0.4C8.3,19.3,8.3,19.4,8.2,19.5z"/>
|
||||
<path fill="#5A8E55" d="M11.4,19.3c-0.1,0.3-0.3,0.6-0.5,0.7c-0.3,0.1-0.6,0.2-0.9,0.1c-0.3-0.1-0.6-0.3-0.7-0.5
|
||||
C9.1,19.3,9,19,9.1,18.7c0.1-0.3,0.3-0.6,0.5-0.7c0.3-0.2,0.6-0.2,0.9-0.1c0.3,0.1,0.6,0.3,0.7,0.5C11.4,18.7,11.5,19,11.4,19.3z
|
||||
M10.6,19.1c0-0.1,0-0.2,0-0.3c0-0.1-0.1-0.2-0.2-0.2c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.2,0.2-0.2,0.3c0,0.1,0,0.2,0,0.3
|
||||
c0,0.1,0.1,0.2,0.2,0.2c0.1,0,0.2,0,0.3-0.1C10.5,19.3,10.6,19.2,10.6,19.1z"/>
|
||||
<path fill="#4F80B2" d="M13.8,20.8C13.8,20.9,13.8,20.9,13.8,20.8c-0.1,0.1-0.2,0-0.4,0c-0.2,0-0.3-0.1-0.4-0.1S13,20.7,13,20.7
|
||||
c0-0.1,0-0.2,0.1-0.3c0-0.1,0-0.3,0.1-0.3c0-0.1,0-0.1,0-0.3c0-0.1,0-0.2,0-0.3c0-0.2,0-0.3-0.2-0.4c-0.1,0-0.1,0-0.2,0
|
||||
c-0.1,0-0.1,0.1-0.2,0.2l-0.2,1.2c0,0,0,0.1-0.1,0.1c-0.1,0-0.2,0-0.3,0c-0.2,0-0.3,0-0.3-0.1c0,0-0.1,0-0.1-0.1
|
||||
c0-0.1,0-0.3,0.1-0.5c0-0.2,0.1-0.4,0.1-0.5c0.1-0.4,0.1-0.7,0-0.9c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0,0.2,0,0.4,0c0.2,0,0.4,0,0.4,0
|
||||
c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.2c0,0,0.1,0,0.3-0.1c0.2-0.1,0.4-0.1,0.5-0.1c0.2,0,0.3,0.1,0.5,0.2c0.1,0.1,0.2,0.3,0.1,0.5
|
||||
L14,19.9c0,0.1,0,0.2-0.1,0.4C13.9,20.6,13.8,20.7,13.8,20.8z"/>
|
||||
<path fill="#CCC381" d="M16.8,19.8c0,0.1,0,0.3,0,0.5c0,0.2,0,0.4,0,0.5c0,0.1,0,0.1-0.1,0.1c-0.2,0-0.4,0-0.7,0c0,0,0,0-0.1-0.1
|
||||
c0-0.1,0-0.1,0-0.1c0,0,0,0,0,0c-0.2,0.2-0.4,0.3-0.6,0.2c-0.3,0-0.5-0.1-0.7-0.4c-0.2-0.2-0.3-0.5-0.3-0.8c0-0.4,0.1-0.6,0.3-0.8
|
||||
c0.2-0.2,0.5-0.3,0.8-0.3c0.2,0,0.4,0.1,0.6,0.3c0,0,0,0,0,0c0,0,0,0,0-0.1c0-0.1,0-0.1,0.1-0.1c0.1,0,0.2,0,0.3,0.1
|
||||
c0.2,0,0.3,0.1,0.3,0.1c0,0,0,0,0,0c0,0,0,0,0,0C16.8,19.2,16.8,19.5,16.8,19.8z M16,19.8c0-0.1,0-0.2-0.1-0.3
|
||||
c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0,0.2,0.1,0.3c0.1,0.1,0.2,0.1,0.3,0.1
|
||||
c0.1,0,0.2,0,0.3-0.1C16,20.1,16,20,16,19.8z"/>
|
||||
<path fill="#5A8E55" d="M18.6,19C18.6,19,18.6,19,18.6,19C18.5,19,18.5,19,18.4,19c-0.1,0-0.2,0-0.2,0.1c-0.1,0.1-0.1,0.1-0.1,0.2
|
||||
c0,0.1,0,0.1,0.1,0.2c0.1,0.1,0.2,0.2,0.2,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.2,0,0.3c0,0.1-0.1,0.2-0.1,0.2
|
||||
c-0.1,0.1-0.2,0.2-0.4,0.3C18,20.9,17.8,21,17.7,21c0,0-0.1-0.1-0.2-0.2c-0.1-0.2-0.2-0.3-0.2-0.3c0,0,0,0,0,0
|
||||
c0.1,0,0.2-0.1,0.3-0.1c0.1-0.1,0.2-0.1,0.2-0.2c0-0.1-0.1-0.1-0.1-0.2c-0.2-0.1-0.2-0.2-0.2-0.2c-0.1-0.1-0.1-0.2-0.1-0.3
|
||||
c0-0.2,0.1-0.4,0.3-0.6c0.2-0.2,0.4-0.3,0.6-0.3c0,0,0.1,0.1,0.2,0.2C18.5,18.8,18.6,18.9,18.6,19z"/>
|
||||
<path fill="#B2838D" d="M20.8,20.4c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.2c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0.1c-0.2,0.1-0.4,0.2-0.6,0.3
|
||||
c-0.4,0.1-0.7-0.1-0.7-0.4c0-0.1,0-0.2-0.1-0.4c0-0.2-0.1-0.4-0.1-0.4c0-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c-0.1,0-0.1,0-0.1,0c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0-0.1c0,0,0-0.1,0.1-0.1c0.1,0,0.1,0,0.1-0.1
|
||||
c0-0.1,0-0.1,0-0.3c0-0.2-0.1-0.3-0.1-0.3c0-0.2,0-0.3,0-0.3c0,0,0.1,0,0.2,0c0.1,0,0.2,0,0.2,0c0.1,0,0.2,0,0.4,0c0,0,0.1,0,0.1,0
|
||||
c0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3c0,0.1,0,0.1,0.1,0.1c0.1,0,0.1,0,0.2,0c0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.1,0c0,0,0,0.1,0,0.2
|
||||
c0,0.1,0,0.1,0,0.2c0,0,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c0,0,0,0.1-0.1,0.1c0,0-0.1,0-0.2,0c-0.1,0-0.1,0-0.2,0l-0.2,0c0,0,0,0,0,0.1
|
||||
c0,0,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c0,0.1,0.1,0.2,0.1,0.3c0.1,0.1,0.1,0.1,0.3,0.1c0,0,0.1,0,0.2-0.1
|
||||
C20.7,20.4,20.7,20.4,20.8,20.4C20.8,20.4,20.8,20.4,20.8,20.4z"/>
|
||||
<path fill="#4F80B2" d="M22.9,18.6c0,0.1,0,0.2-0.1,0.3c0,0-0.2,0.1-0.4,0.2c-0.2,0.1-0.4,0.2-0.8,0.3c0,0.1,0.1,0.1,0.2,0.2
|
||||
c0.1,0,0.2,0,0.3,0c0.1,0,0.3-0.1,0.4-0.2c0-0.1,0.1-0.1,0.1-0.2c0,0,0.1,0.1,0.2,0.2c0.1,0.1,0.2,0.2,0.2,0.2c0,0,0,0,0,0.1
|
||||
c-0.1,0.2-0.4,0.4-0.8,0.5c-0.3,0.1-0.7,0.1-0.9-0.1c-0.3-0.1-0.5-0.4-0.6-0.7c-0.1-0.3-0.1-0.6,0.1-0.9c0.1-0.3,0.4-0.5,0.7-0.6
|
||||
c0.3-0.1,0.6,0,0.8,0.1C22.6,18.1,22.8,18.3,22.9,18.6z M22,18.7c0-0.1-0.1-0.2-0.2-0.2c-0.1-0.1-0.2-0.1-0.3,0
|
||||
c-0.1,0-0.2,0.1-0.2,0.2c0,0.1,0,0.2,0,0.3c0,0,0,0.1,0.1,0C21.6,18.9,21.8,18.9,22,18.7C22,18.7,22,18.7,22,18.7z"/>
|
||||
<path fill="#CCC381" d="M24.5,17.7c0,0.1,0,0.1-0.1,0.1c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.1,0c-0.1,0-0.2,0.1-0.2,0.2
|
||||
c0,0.1,0,0.1,0,0.2c0,0.1,0.1,0.2,0.1,0.3c0.1,0.1,0.1,0.2,0.1,0.3c0,0,0,0.1,0.1,0.2c0,0.1,0.1,0.1,0.1,0.2c0,0,0,0.1,0,0.1
|
||||
c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0.1-0.2,0.1-0.3,0.1c0,0-0.1,0-0.1,0c0-0.1-0.1-0.3-0.2-0.5c-0.1-0.2-0.2-0.4-0.2-0.5
|
||||
c-0.1-0.3-0.3-0.6-0.4-0.8c0,0,0,0,0,0c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.2-0.1,0.3-0.2,0.3-0.2c0,0,0.1,0,0.1,0.1
|
||||
c0,0.1,0.1,0.1,0.1,0.1c0,0,0-0.1,0.1-0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2c0,0.1,0,0.1,0.1,0.2
|
||||
c0,0,0,0.1,0.1,0.2C24.5,17.7,24.5,17.7,24.5,17.7z"/>
|
||||
<path fill="#B2838D" d="M26.7,16.4c0.1,0.3,0.2,0.4,0.2,0.5c0,0.1,0,0.4,0,1c0,0.1,0,0.3-0.1,0.6c-0.1,0.4-0.1,0.6-0.1,0.6
|
||||
c0,0-0.2,0.2-0.6,0.4c-0.1,0-0.1,0-0.1,0c0,0-0.1-0.1-0.2-0.2c0,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0-0.1
|
||||
c0.4-0.2,0.5-0.4,0.4-0.6c0,0-0.2-0.1-0.5-0.3c-0.3-0.2-0.5-0.3-0.6-0.3c0,0-0.1-0.2-0.2-0.4c0,0-0.1-0.1-0.1-0.2
|
||||
c-0.1-0.1-0.1-0.2-0.1-0.2c0,0,0-0.1,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2
|
||||
c0,0.1,0.1,0.1,0.1,0.2c0.1,0.2,0.2,0.3,0.2,0.3c0,0,0.1,0.1,0.3,0.2c0.2,0.1,0.2,0.1,0.3,0.1c0,0,0-0.1,0.1-0.3c0-0.2,0-0.3,0-0.3
|
||||
c-0.1-0.1-0.1-0.3-0.2-0.4c0,0-0.1-0.1-0.1-0.2c0-0.1-0.1-0.1-0.1-0.2c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2
|
||||
c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1,0,0.1,0C26.5,16,26.6,16.1,26.7,16.4z"/>
|
||||
<path fill="#5A8E55" d="M29.9,19.5c0,0-0.1,0.1-0.1,0.1c0,0-0.1-0.1-0.3-0.1c-0.2-0.1-0.3-0.1-0.3-0.2c0,0,0-0.1,0-0.1
|
||||
c0-0.1,0.1-0.2,0.1-0.3c0.1-0.1,0.1-0.2,0.1-0.3c0.1-0.2,0.2-0.4,0.2-0.5c0.1-0.2,0-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0
|
||||
c-0.1,0-0.2,0.1-0.2,0.1c0,0.1-0.1,0.2-0.3,0.5c0,0.1-0.1,0.2-0.1,0.3c-0.1,0.1-0.1,0.2-0.1,0.3c0,0-0.1,0.1-0.1,0l-0.6-0.3
|
||||
c0,0,0-0.1,0-0.1c0-0.1,0.1-0.2,0.1-0.3c0.1-0.1,0.1-0.2,0.1-0.3c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0.1-0.2,0.1-0.2
|
||||
c0.1-0.2,0.1-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2,0-0.2,0.1c-0.1,0.1-0.2,0.3-0.3,0.6c-0.1,0.2-0.2,0.4-0.3,0.6
|
||||
c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0c-0.1,0-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.2c0,0,0,0-0.1,0c0,0,0,0,0-0.1
|
||||
c0.1-0.1,0.1-0.3,0.2-0.5c0.1-0.2,0.2-0.4,0.2-0.5c0.1-0.2,0.2-0.5,0.3-0.8c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0.1,0,0.2,0.1
|
||||
c0.1,0,0.2,0.1,0.2,0.1c0,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0.1c0,0,0,0.1,0,0.2s-0.1,0.1-0.1,0.2c0,0,0,0,0.1,0
|
||||
c0.2,0,0.3-0.1,0.4-0.1c0.1,0,0.3,0,0.4,0.1c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0.1-0.1,0.3-0.1,0.4-0.1
|
||||
c0.2,0,0.3,0,0.4,0.1c0.2,0.1,0.3,0.2,0.4,0.3c0.1,0.2,0.1,0.3,0,0.5c0,0.1-0.1,0.2-0.2,0.3c-0.1,0.1-0.1,0.3-0.2,0.3
|
||||
c0,0.1-0.1,0.2-0.2,0.4C30,19.3,29.9,19.4,29.9,19.5z"/>
|
||||
<path fill="#C4BCB1" d="M2.8,17.7c0,0.1,0,0.1-0.1,0.1c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.1,0c-0.1,0-0.2,0.1-0.2,0.2
|
||||
c0,0.1,0,0.1,0,0.2c0,0.1,0.1,0.2,0.1,0.3c0.1,0.1,0.1,0.2,0.1,0.3c0,0,0,0.1,0.1,0.2c0,0.1,0.1,0.1,0.1,0.2c0,0,0,0.1,0,0.1
|
||||
c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0.1-0.2,0.1-0.3,0.1c0,0-0.1,0-0.1,0c0-0.1-0.1-0.3-0.2-0.5c-0.1-0.2-0.2-0.4-0.2-0.5
|
||||
c-0.1-0.3-0.3-0.6-0.4-0.8c0,0,0,0,0,0c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.2-0.1,0.3-0.2,0.3-0.2c0,0,0.1,0,0.1,0.1
|
||||
c0,0.1,0.1,0.1,0.1,0.1c0,0,0-0.1,0.1-0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2c0,0.1,0,0.1,0.1,0.2
|
||||
c0,0,0,0.1,0.1,0.2C2.8,17.7,2.8,17.7,2.8,17.7z"/>
|
||||
<path fill="#CCC381" d="M5,16.4c0.1,0.3,0.2,0.4,0.2,0.5c0,0.1,0,0.4,0,1c0,0.1,0,0.3-0.1,0.6C5,18.8,5,19,5,19.1
|
||||
c0,0-0.2,0.2-0.6,0.4c-0.1,0-0.1,0-0.1,0c0,0-0.1-0.1-0.2-0.2c0,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0-0.1
|
||||
c0.4-0.2,0.5-0.4,0.4-0.6c0,0-0.2-0.1-0.5-0.3c-0.3-0.2-0.5-0.3-0.6-0.3c0,0-0.1-0.2-0.2-0.4c0,0-0.1-0.1-0.1-0.2
|
||||
c-0.1-0.1-0.1-0.2-0.1-0.2c0,0,0-0.1,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2
|
||||
c0,0.1,0.1,0.1,0.1,0.2c0.1,0.2,0.2,0.3,0.2,0.3c0,0,0.1,0.1,0.3,0.2c0.2,0.1,0.2,0.1,0.3,0.1c0,0,0-0.1,0.1-0.3c0-0.2,0-0.3,0-0.3
|
||||
c-0.1-0.1-0.1-0.3-0.2-0.4c0,0-0.1-0.1-0.1-0.2c0-0.1-0.1-0.1-0.1-0.2c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2C4.5,16,4.6,16,4.6,15.9
|
||||
c0,0,0.1,0,0.1,0C4.8,16,4.9,16.1,5,16.4z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path fill="#586689" d="M8.2,23.6c0,0-0.1,0.1-0.1,0.1c0,0-0.1-0.1-0.3-0.1c-0.2-0.1-0.3-0.1-0.3-0.2c0,0,0-0.1,0-0.1
|
||||
c0-0.1,0.1-0.2,0.1-0.3c0.1-0.1,0.1-0.2,0.1-0.3C7.9,22.4,8,22.3,8,22.1c0.1-0.2,0-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0
|
||||
c-0.1,0-0.2,0.1-0.2,0.1c0,0.1-0.1,0.2-0.3,0.5c0,0.1-0.1,0.2-0.1,0.3C7,22.8,7,22.9,7,23c0,0-0.1,0.1-0.1,0l-0.6-0.3
|
||||
c0,0,0-0.1,0-0.1c0-0.1,0.1-0.2,0.1-0.3c0.1-0.1,0.1-0.2,0.1-0.3c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0.1-0.2,0.1-0.2
|
||||
c0.1-0.2,0.1-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2,0-0.2,0.1c-0.1,0.1-0.2,0.3-0.3,0.6c-0.1,0.2-0.2,0.4-0.3,0.6
|
||||
c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0c-0.1,0-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.2c0,0,0,0-0.1,0c0,0,0,0,0-0.1
|
||||
c0.1-0.1,0.1-0.3,0.2-0.5c0.1-0.2,0.2-0.4,0.2-0.5c0.1-0.2,0.2-0.5,0.3-0.8c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0.1,0,0.2,0.1
|
||||
c0.1,0,0.2,0.1,0.2,0.1c0,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0.1c0,0,0,0.1,0,0.2c0,0.1-0.1,0.1-0.1,0.2c0,0,0,0,0.1,0
|
||||
c0.2,0,0.3-0.1,0.4-0.1c0.1,0,0.3,0,0.4,0.1c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0.1-0.1,0.3-0.1,0.4-0.1
|
||||
c0.2,0,0.3,0,0.4,0.1c0.2,0.1,0.3,0.2,0.4,0.3C9,21.8,9,22,8.9,22.2c0,0.1-0.1,0.2-0.2,0.3c-0.1,0.1-0.1,0.3-0.2,0.3
|
||||
c0,0.1-0.1,0.2-0.2,0.4C8.3,23.4,8.3,23.5,8.2,23.6z"/>
|
||||
<path fill="#586689" d="M11.4,23.4c-0.1,0.3-0.3,0.6-0.5,0.7c-0.3,0.1-0.6,0.2-0.9,0.1c-0.3-0.1-0.6-0.3-0.7-0.5
|
||||
c-0.1-0.3-0.2-0.6-0.1-0.9c0.1-0.3,0.3-0.6,0.5-0.7c0.3-0.2,0.6-0.2,0.9-0.1c0.3,0.1,0.6,0.3,0.7,0.5
|
||||
C11.4,22.8,11.5,23.1,11.4,23.4z M10.6,23.2c0-0.1,0-0.2,0-0.3c0-0.1-0.1-0.2-0.2-0.2c-0.1,0-0.2,0-0.3,0.1
|
||||
C10,22.8,9.9,22.9,9.9,23c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.2,0.2,0.2c0.1,0,0.2,0,0.3-0.1C10.5,23.4,10.6,23.3,10.6,23.2z"/>
|
||||
<path fill="#586689" d="M13.8,24.9C13.8,24.9,13.8,25,13.8,24.9c-0.1,0.1-0.2,0-0.4,0c-0.2,0-0.3-0.1-0.4-0.1c0,0-0.1-0.1-0.1-0.1
|
||||
c0-0.1,0-0.2,0.1-0.3c0-0.1,0-0.3,0.1-0.3c0-0.1,0-0.1,0-0.3c0-0.1,0-0.2,0-0.3c0-0.2,0-0.3-0.2-0.4c-0.1,0-0.1,0-0.2,0
|
||||
c-0.1,0-0.1,0.1-0.2,0.2l-0.2,1.2c0,0,0,0.1-0.1,0.1c-0.1,0-0.2,0-0.3,0c-0.2,0-0.3,0-0.3-0.1c0,0-0.1,0-0.1-0.1
|
||||
c0-0.1,0-0.3,0.1-0.5c0-0.2,0.1-0.4,0.1-0.5c0.1-0.4,0.1-0.7,0-0.9c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0,0.2,0,0.4,0c0.2,0,0.4,0,0.4,0
|
||||
c0,0,0,0.1,0,0.2s0,0.2,0,0.2c0,0,0.1,0,0.3-0.1c0.2-0.1,0.4-0.1,0.5-0.1c0.2,0,0.3,0.1,0.5,0.2c0.1,0.1,0.2,0.3,0.1,0.5L14,24
|
||||
c0,0.1,0,0.2-0.1,0.4C13.9,24.7,13.8,24.8,13.8,24.9z"/>
|
||||
<path fill="#586689" d="M16.8,23.9c0,0.1,0,0.3,0,0.5c0,0.2,0,0.4,0,0.5c0,0.1,0,0.1-0.1,0.1c-0.2,0-0.4,0-0.7,0c0,0,0,0-0.1-0.1
|
||||
c0-0.1,0-0.1,0-0.1c0,0,0,0,0,0c-0.2,0.2-0.4,0.3-0.6,0.2c-0.3,0-0.5-0.1-0.7-0.4c-0.2-0.2-0.3-0.5-0.3-0.8c0-0.4,0.1-0.6,0.3-0.8
|
||||
c0.2-0.2,0.5-0.3,0.8-0.3c0.2,0,0.4,0.1,0.6,0.3c0,0,0,0,0,0c0,0,0,0,0-0.1c0-0.1,0-0.1,0.1-0.1c0.1,0,0.2,0,0.3,0.1
|
||||
c0.2,0,0.3,0.1,0.3,0.1c0,0,0,0,0,0c0,0,0,0,0,0C16.8,23.3,16.8,23.6,16.8,23.9z M16,23.9c0-0.1,0-0.2-0.1-0.3
|
||||
c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0,0.2,0.1,0.3c0.1,0.1,0.2,0.1,0.3,0.1
|
||||
c0.1,0,0.2,0,0.3-0.1C16,24.2,16,24.1,16,23.9z"/>
|
||||
<path fill="#586689" d="M18.6,23.1C18.6,23.1,18.6,23.1,18.6,23.1c-0.1,0.1-0.1,0.1-0.2,0.1c-0.1,0-0.2,0-0.2,0.1
|
||||
c-0.1,0.1-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.2c0.1,0.1,0.2,0.2,0.2,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.2,0,0.3
|
||||
c0,0.1-0.1,0.2-0.1,0.2c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.4,0.1c0,0-0.1-0.1-0.2-0.2c-0.1-0.2-0.2-0.3-0.2-0.3
|
||||
c0,0,0,0,0,0c0.1,0,0.2-0.1,0.3-0.1c0.1-0.1,0.2-0.1,0.2-0.2c0-0.1-0.1-0.1-0.1-0.2c-0.2-0.1-0.2-0.2-0.2-0.2
|
||||
c-0.1-0.1-0.1-0.2-0.1-0.3c0-0.2,0.1-0.4,0.3-0.6c0.2-0.2,0.4-0.3,0.6-0.3c0,0,0.1,0.1,0.2,0.2C18.5,22.9,18.6,23,18.6,23.1z"/>
|
||||
<path fill="#586689" d="M20.8,24.5c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.2c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0.1c-0.2,0.1-0.4,0.2-0.6,0.3
|
||||
c-0.4,0.1-0.7-0.1-0.7-0.4c0-0.1,0-0.2-0.1-0.4c0-0.2-0.1-0.4-0.1-0.4c0-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c-0.1,0-0.1,0-0.1,0c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0-0.1c0,0,0-0.1,0.1-0.1c0.1,0,0.1,0,0.1-0.1
|
||||
c0-0.1,0-0.1,0-0.3c0-0.2-0.1-0.3-0.1-0.3c0-0.2,0-0.3,0-0.3c0,0,0.1,0,0.2,0c0.1,0,0.2,0,0.2,0c0.1,0,0.2,0,0.4,0
|
||||
c0,0,0.1,0,0.1,0c0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3c0,0.1,0,0.1,0.1,0.1c0.1,0,0.1,0,0.2,0c0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.1,0
|
||||
c0,0,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c0,0,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c0,0,0,0.1-0.1,0.1c0,0-0.1,0-0.2,0c-0.1,0-0.1,0-0.2,0
|
||||
l-0.2,0c0,0,0,0,0,0.1c0,0,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c0,0.1,0.1,0.2,0.1,0.3c0.1,0.1,0.1,0.1,0.3,0.1c0,0,0.1,0,0.2-0.1
|
||||
C20.7,24.5,20.7,24.5,20.8,24.5C20.8,24.5,20.8,24.5,20.8,24.5z"/>
|
||||
<path fill="#586689" d="M22.9,22.7c0,0.1,0,0.2-0.1,0.3c0,0-0.2,0.1-0.4,0.2c-0.2,0.1-0.4,0.2-0.8,0.3c0,0.1,0.1,0.1,0.2,0.2
|
||||
c0.1,0,0.2,0,0.3,0c0.1,0,0.3-0.1,0.4-0.2c0-0.1,0.1-0.1,0.1-0.2c0,0,0.1,0.1,0.2,0.2c0.1,0.1,0.2,0.2,0.2,0.2c0,0,0,0,0,0.1
|
||||
c-0.1,0.2-0.4,0.4-0.8,0.5c-0.3,0.1-0.7,0.1-0.9-0.1c-0.3-0.1-0.5-0.4-0.6-0.7c-0.1-0.3-0.1-0.6,0.1-0.9c0.1-0.3,0.4-0.5,0.7-0.6
|
||||
c0.3-0.1,0.6,0,0.8,0.1C22.6,22.2,22.8,22.4,22.9,22.7z M22,22.8c0-0.1-0.1-0.2-0.2-0.2c-0.1-0.1-0.2-0.1-0.3,0
|
||||
c-0.1,0-0.2,0.1-0.2,0.2c0,0.1,0,0.2,0,0.3c0,0,0,0.1,0.1,0C21.6,23,21.8,23,22,22.8C22,22.8,22,22.8,22,22.8z"/>
|
||||
<path fill="#586689" d="M24.5,21.8c0,0.1,0,0.1-0.1,0.1c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.1,0c-0.1,0-0.2,0.1-0.2,0.2
|
||||
c0,0.1,0,0.1,0,0.2c0,0.1,0.1,0.2,0.1,0.3c0.1,0.1,0.1,0.2,0.1,0.3c0,0,0,0.1,0.1,0.2c0,0.1,0.1,0.1,0.1,0.2c0,0,0,0.1,0,0.1
|
||||
c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0.1-0.2,0.1-0.3,0.1c0,0-0.1,0-0.1,0c0-0.1-0.1-0.3-0.2-0.5c-0.1-0.2-0.2-0.4-0.2-0.5
|
||||
c-0.1-0.3-0.3-0.6-0.4-0.8c0,0,0,0,0,0c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.2-0.1,0.3-0.2,0.3-0.2c0,0,0.1,0,0.1,0.1
|
||||
c0,0.1,0.1,0.1,0.1,0.1c0,0,0-0.1,0.1-0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2c0,0.1,0,0.1,0.1,0.2
|
||||
c0,0,0,0.1,0.1,0.2C24.5,21.8,24.5,21.8,24.5,21.8z"/>
|
||||
<path fill="#586689" d="M26.7,20.5c0.1,0.3,0.2,0.4,0.2,0.5c0,0.1,0,0.4,0,1c0,0.1,0,0.3-0.1,0.6c-0.1,0.4-0.1,0.6-0.1,0.6
|
||||
c0,0-0.2,0.2-0.6,0.4c-0.1,0-0.1,0-0.1,0c0,0-0.1-0.1-0.2-0.2c0,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0-0.1
|
||||
c0.4-0.2,0.5-0.4,0.4-0.6c0,0-0.2-0.1-0.5-0.3c-0.3-0.2-0.5-0.3-0.6-0.3c0,0-0.1-0.2-0.2-0.4c0,0-0.1-0.1-0.1-0.2
|
||||
c-0.1-0.1-0.1-0.2-0.1-0.2c0,0,0-0.1,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2
|
||||
c0,0.1,0.1,0.1,0.1,0.2c0.1,0.2,0.2,0.3,0.2,0.3c0,0,0.1,0.1,0.3,0.2c0.2,0.1,0.2,0.1,0.3,0.1c0,0,0-0.1,0.1-0.3
|
||||
c0-0.2,0-0.3,0-0.3C26,21,26,20.9,25.9,20.8c0,0-0.1-0.1-0.1-0.2c0-0.1-0.1-0.1-0.1-0.2c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2
|
||||
c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1,0,0.1,0C26.5,20.1,26.6,20.2,26.7,20.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path fill="#A03C2E" d="M16,0.3C7.3,0.3,0.2,7.3,0.2,16s7,15.7,15.7,15.7s15.7-7,15.7-15.7S24.7,0.3,16,0.3z M16,30
|
||||
C8.2,30,2,23.7,2,16C2,8.3,8.2,2,16,2s14,6.3,14,14C29.9,23.7,23.7,30,16,30z"/>
|
||||
<path fill="#682721" d="M16,0.9C7.6,0.9,0.9,7.7,0.9,16S7.6,31.1,16,31.1S31.1,24.3,31.1,16S24.3,0.9,16,0.9z M16,30.7
|
||||
C7.9,30.7,1.3,24.1,1.3,16C1.3,7.9,7.9,1.3,16,1.3S30.6,7.9,30.6,16C30.6,24.1,24.1,30.7,16,30.7z"/>
|
||||
<path fill="#682721" d="M16,0.2C7.3,0.2,0.2,7.3,0.2,16S7.3,31.8,16,31.8S31.7,24.7,31.7,16S24.7,0.2,16,0.2z M16,31.3
|
||||
C7.5,31.3,0.6,24.5,0.6,16C0.6,7.5,7.5,0.7,16,0.7S31.3,7.5,31.3,16C31.3,24.5,24.4,31.3,16,31.3z"/>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="16" y1="3.8982" x2="16" y2="26.4613">
|
||||
<stop offset="0" style="stop-color:#B2C9CC"/>
|
||||
<stop offset="0.2185" style="stop-color:#8FA1A3"/>
|
||||
<stop offset="0.4362" style="stop-color:#738182"/>
|
||||
<stop offset="0.6435" style="stop-color:#5E6A6A"/>
|
||||
<stop offset="0.8362" style="stop-color:#525C5C"/>
|
||||
<stop offset="1" style="stop-color:#4E5757"/>
|
||||
</linearGradient>
|
||||
<circle fill="url(#SVGID_1_)" cx="16" cy="15.8" r="14.1"/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="15.6121" y1="12.8788" x2="15.6121" y2="30.5654">
|
||||
<stop offset="0" style="stop-color:#B6CCD1"/>
|
||||
<stop offset="1.855779e-02" style="stop-color:#B3C8CD"/>
|
||||
<stop offset="0.2369" style="stop-color:#8FA0A3"/>
|
||||
<stop offset="0.4494" style="stop-color:#738082"/>
|
||||
<stop offset="0.6519" style="stop-color:#5E696A"/>
|
||||
<stop offset="0.8401" style="stop-color:#525C5C"/>
|
||||
<stop offset="1" style="stop-color:#4E5757"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_2_)" d="M1,17.6c0.3-0.2,0.6-0.5,0.9-0.9c1.6-2,2.9-4.2,3.7-5.4c0.3,1.5,3.4,6.8,6.8,7.9
|
||||
c4.8,1.6,7.1,0,8.4-1.3c3.3-3.2,4.3-6.7,5.4-8.2c1.2,1.5,1.6,3.6,3,4.8c0.4,0.3,1,1,1.4,1.2c-0.1,5.2-1.6,15.1-13.8,15.1
|
||||
S-1,19.3,1,17.6z"/>
|
||||
<rect x="13.2" y="9.7" fill="#6D6460" width="0.4" height="3.2"/>
|
||||
<path fill="#DE9537" d="M22,8.9l-0.2,0.1C21.9,9,22,9,22,8.9z"/>
|
||||
<g>
|
||||
<polygon fill="#DDDBD4" points="22.5,28.5 22.5,28.5 24.9,27.4 26.9,25 28.9,22.4 30.1,17.7 1.9,17.7 2.4,20.6 4.4,24.6 8.5,28.4
|
||||
12,30.1 18.3,30.2 "/>
|
||||
<rect x="13.2" y="9" fill="#725835" width="5.4" height="3.2"/>
|
||||
<rect x="18.3" y="9" fill="#6D6460" width="0.4" height="3.2"/>
|
||||
<rect x="15.8" y="9" fill="#6D6460" width="0.4" height="3.2"/>
|
||||
<polygon fill="#A03C2E" points="10,17.7 21.9,17.7 21.7,14.2 10.2,14.2 "/>
|
||||
<polygon fill="#DDDBD4" points="10.3,12 10.2,13.9 21.7,13.9 21.6,12 "/>
|
||||
<polygon fill="#EDE9DD" points="21.4,11.7 16,11.7 10.5,11.7 9.6,12.5 16,12.5 22.3,12.5 "/>
|
||||
<path fill="#966626" d="M23.5,8l-0.3-0.5L22,8.3c-0.1,0-0.1,0.1-0.2,0.1C19.6,9.5,16,9.3,16,9.3c-3.5,0-5.9-0.9-5.9-0.9L8.7,7.6
|
||||
L8.5,8l1.3,0.8C9.7,9.1,9.6,9.3,9.6,9.3s1.2,0.6,3.6,0.8c0,0,1,0.1,2.7,0.1s2.7-0.1,2.7-0.1c2.5-0.3,3.6-0.8,3.6-0.8s0-0.2-0.1-0.5
|
||||
L23.5,8z"/>
|
||||
<path fill="#DE9537" d="M21.8,8.4c-2,0.7-3.4-1-3.9-1.4c-0.4-0.4-0.9-1-1.4-1.3h-0.3c0.1,0,0.1-0.1,0.1-0.2V5
|
||||
c0-0.1-0.1-0.2-0.2-0.2l0,0c0,0,0,0,0,0v0c0,0,0-0.1,0-0.1h0.1h0.3c0,0,0.1,0,0.1-0.1l0-0.1c0,0,0-0.1-0.1-0.1h-0.5c0,0,0,0,0,0v0
|
||||
c0,0,0,0,0,0l0,0c0.1,0,0.1-0.1,0.1-0.2V3.7c0-0.1-0.1-0.2-0.2-0.2h0c0,0,0,0,0,0v0c0,0,0,0,0,0h0.3c0,0,0,0,0-0.1l0-0.1
|
||||
c0,0,0-0.1-0.1-0.1h-0.1h-0.1c0,0,0,0,0,0v0c0,0,0,0,0,0l0,0c0.1,0-0.2-0.9-0.2-0.9c0,0,0,0,0,0c0,0-0.3,0.9-0.2,0.9l0,0
|
||||
c0,0,0,0,0,0v0c0,0,0,0,0,0h-0.1h-0.1c0,0-0.1,0-0.1,0.1l0,0.1c0,0,0,0.1,0,0.1h0.3c0,0,0,0,0,0v0c0,0,0,0,0,0h0
|
||||
c-0.1,0-0.2,0.1-0.2,0.2v0.4c0,0.1,0.1,0.1,0.1,0.2l0,0c0,0,0,0,0,0v0c0,0,0,0,0,0h-0.5c0,0-0.1,0-0.1,0.1l0,0.1c0,0,0,0.1,0.1,0.1
|
||||
h0.3h0.1c0,0,0,0,0,0.1v0c0,0,0,0,0,0l0,0c-0.1,0-0.2,0.1-0.2,0.2v0.5c0,0.1,0.1,0.2,0.1,0.2h-0.3c-0.5,0.3-1,1-1.4,1.3
|
||||
c-0.5,0.5-1.9,2.1-3.9,1.4c0,0,2.3,0.9,5.9,0.9C16,9.3,19.6,9.5,21.8,8.4z"/>
|
||||
<rect x="17.5" y="14.7" fill="#6D6460" width="2" height="2"/>
|
||||
<g>
|
||||
<rect x="17.7" y="14.9" fill="#9DA5A5" width="1.5" height="1.5"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="17.5" y="16.7" fill="#D6D6D6" width="2" height="0.2"/>
|
||||
</g>
|
||||
<path fill="#D6D6D6" d="M18.7,10.1c-1.8,0.2-3.6,0.2-5.4,0v0.6c1.8,0.2,3.6,0.2,5.4,0V10.1z"/>
|
||||
<g>
|
||||
<polygon fill="#D6D6D6" points="21.7,14.4 10.2,14.5 10.2,13.9 21.7,13.9 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#D6D6D6" points="30.1,18.5 1.8,18.6 1.8,18 30,18 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#D6D6D6" points="21.7,13 10.2,13.1 10.2,12.5 21.7,12.5 "/>
|
||||
</g>
|
||||
<rect x="12.4" y="14.7" fill="#6D6460" width="2" height="2"/>
|
||||
<g>
|
||||
<rect x="12.7" y="14.9" fill="#9DA5A5" width="1.5" height="1.5"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="12.5" y="16.7" fill="#D6D6D6" width="2" height="0.2"/>
|
||||
</g>
|
||||
</g>
|
||||
<polygon fill="#A03C2E" points="20.1,30.9 16.6,31.5 10.8,30.4 7.4,28.9 6.2,27.1 26.9,27.1 22.5,29.8 "/>
|
||||
<rect x="12.6" y="28.1" fill="#6D6460" width="2" height="2"/>
|
||||
<rect x="17.2" y="28.1" fill="#6D6460" width="2" height="2"/>
|
||||
<polygon fill="#6D6460" points="22.7,30.1 21.9,30.1 21.9,28.1 23.9,28.1 23.9,29.3 "/>
|
||||
<polygon fill="#6D6460" points="10.6,30.1 9.1,30.1 8.6,29.5 8.6,28.1 10.6,28.1 "/>
|
||||
<g>
|
||||
<rect x="17.3" y="28.2" fill="#9DA5A5" width="1.7" height="1.7"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="12.8" y="28.2" fill="#9DA5A5" width="1.7" height="1.7"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#9DA5A5" points="22.1,28.2 23.8,28.2 23.8,29.4 23.4,29.9 22.1,29.9 "/>
|
||||
</g>
|
||||
<g>
|
||||
<rect x="8.7" y="28.2" fill="#9DA5A5" width="1.7" height="1.7"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#626666" d="M30.7,17.5c-2.2-0.8-3.8-1.9-3.9-1.9l-0.1,0l-0.1,0c0,0-5,3.2-10.3,3.2c-3.7,0-7.4-1.5-9.6-2.4
|
||||
c-0.8-0.3-1.2-0.5-1.5-0.6v0h0c-0.2,0-0.3,0-0.3,0C4.7,16,3.1,16.5,1.7,17c-0.8,0.3-1,0.6,0.1,0.2c1.3-0.5,2.8-1,3.2-1.2l0.3,0
|
||||
c0.3,0.1,0.8,0.3,1.4,0.5c2.2,0.9,5.9,2.4,9.7,2.4c4.8,0,9.2-2.5,10.2-3.1l0.3,0c0.6,0.4,1.9,1.2,3.8,1.9
|
||||
C30.9,17.6,30.9,17.6,30.7,17.5z"/>
|
||||
<path fill="#626666" d="M9,17.5c-0.1-0.2-0.2-0.3-0.4-0.4C8.5,17.1,8.3,17,8.1,17c0,0,0,0,0,0c-0.1,0-0.2,0-0.3,0
|
||||
c0-0.1-0.1-0.2-0.1-0.3c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.4-0.1c-0.1,0-0.2,0-0.3,0c0-0.1,0.1-0.2,0-0.3
|
||||
c-0.1,0-0.1,0-0.2-0.1c-0.1,0-0.2,0-0.2,0L6.1,16C5.9,16,5.9,16,5.8,16l-0.1,0.1l0,0.1c-0.1,0.3-0.2,0.5-0.3,0.7c0,0,0,0,0,0
|
||||
c0,0,0-0.2-0.2-0.5c-0.2-0.3-0.2-0.4-0.3-0.4l-0.2,0h0c-0.1,0-0.5,0.3-0.6,0.3l-0.1,0.1l0,0l0,0.1c0,0,0.2,0.3,0.2,0.4
|
||||
c0.1,0.1,0.1,0.3,0.2,0.4c0,0,0,0.1,0,0.3c0,0.1,0,0.1,0,0.2c0,0-0.1,0-0.2-0.1c-0.2-0.1-0.2-0.2-0.2-0.2c0-0.1-0.1-0.2-0.2-0.3
|
||||
c0,0-0.2-0.3-0.2-0.3l-0.2-0.1H3.3c-0.1,0-0.6,0.3-0.6,0.3L2.6,17c0,0,0,0-0.1,0l-0.1,0C2.2,17,2.1,17.1,2,17.3c0,0,0,0,0,0.1
|
||||
c0-0.1-0.1-0.1-0.2-0.1c0,0,0,0,0,0c0,0,0,0-0.3,0.2c-0.1,0.1-0.2,0.1-0.3,0.2l0,0.2l0,0.1c0.1,0.2,0.3,0.4,0.4,0.8l0.4,1l0.1,0.1
|
||||
H2l0.1,0c0.1,0,0.2-0.1,0.3-0.1c0.1-0.1,0.2-0.1,0.3-0.1l0.1-0.1l0-0.1c0,0-0.1-0.3-0.2-0.4l-0.2-0.6c0-0.1,0-0.2,0-0.2
|
||||
c0,0,0,0,0.2-0.1L2.8,18c0.1,0,0.2-0.2,0.1-0.3l0-0.1C3,17.9,3.1,18,3.1,18c0,0,0.2,0.1,0.6,0.3c0.3,0.1,0.4,0.2,0.4,0.3
|
||||
c0,0.1-0.1,0.2-0.4,0.3L3.7,19l0.1,0.1c0,0,0,0.1,0.2,0.2l0.3,0.2c0,0,0.1,0,0.2-0.1c0.6-0.3,0.6-0.4,0.6-0.4c0,0,0-0.1,0.1-0.6
|
||||
l0-0.2c0.1,0.1,0.2,0.1,0.3,0.1c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0l0.1-0.1l0.6-1.2c0,0,0,0,0.2,0l0.2,0.1c0,0,0,0.1,0,0.2l-0.2,0.5
|
||||
c0,0.1-0.3,0.6-0.3,0.6c0,0.1,0,0.1,0,0.2l0,0.1l0.8,0.3L7,19l0.3-0.7c0.1-0.3,0.2-0.4,0.2-0.5c0,0,0.1-0.1,0.1-0.1l0.2,0
|
||||
c0.1,0,0.1,0.1,0.1,0.2c0,0.1-0.1,0.3-0.2,0.5c0,0.1-0.3,0.6-0.3,0.6c-0.1,0.2,0,0.3,0,0.3c0,0,0.1,0.1,0.3,0.2
|
||||
c0.2,0.1,0.3,0.1,0.3,0.1l0.1,0l0.1-0.1l0.4-0.9c0-0.1,0.3-0.6,0.3-0.7C9.1,17.9,9.1,17.7,9,17.5z"/>
|
||||
<path fill="#626666" d="M11.4,18.4c-0.2-0.3-0.4-0.5-0.8-0.6c-0.1,0-0.3-0.1-0.4-0.1c-0.2,0-0.4,0.1-0.6,0.2
|
||||
C9.3,18,9.1,18.3,9,18.7c-0.1,0.4-0.1,0.7,0.1,1c0.2,0.3,0.4,0.5,0.8,0.6c0.1,0,0.3,0.1,0.4,0.1c0.2,0,0.4-0.1,0.6-0.1
|
||||
c0.3-0.2,0.5-0.4,0.6-0.8C11.6,19,11.5,18.7,11.4,18.4z M10.4,19.3c0,0-0.1,0-0.2,0c0,0,0,0-0.1,0c-0.1,0-0.1-0.1-0.2-0.2
|
||||
c0-0.1,0-0.2,0-0.3c0-0.1,0.1-0.2,0.1-0.2c0,0,0.1,0,0.1,0l0.1,0c0.1,0,0.1,0.1,0.2,0.1c0,0.1,0,0.2,0,0.3
|
||||
C10.5,19.2,10.5,19.3,10.4,19.3z"/>
|
||||
<path fill="#626666" d="M13.5,18.4l-0.1,0c-0.1,0-0.3,0-0.4,0.1c0,0-0.1,0-0.1,0c0-0.1,0-0.2-0.2-0.3c-0.1,0-0.2,0-0.4,0
|
||||
c-0.2,0-0.3,0-0.4,0l-0.1,0.1l0,0.1c0,0.2,0,0.5,0,0.9l-0.2,1.1l0,0.2l0.1,0c0.1,0,0.2,0,0.4,0.1c0.2,0,0.3,0,0.3,0
|
||||
c0.1,0,0.2-0.1,0.2-0.2l0.2-1.2c0,0,0,0,0.1-0.1c0.1,0,0.1,0,0.1,0c0,0,0,0,0,0c0.1,0,0.2,0,0.1,0.2L13,20c0,0.1-0.1,0.6-0.1,0.6
|
||||
c0,0.1,0,0.2,0.1,0.2c0,0,0.2,0,0.4,0.1c0.2,0,0.3,0,0.3,0h0l0.2-0.1l0.3-1.7c0-0.2,0-0.4-0.2-0.6C13.9,18.5,13.7,18.4,13.5,18.4z"
|
||||
/>
|
||||
<path fill="#626666" d="M17,18.8L17,18.8c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3-0.1-0.3-0.1c-0.1,0-0.1,0.1-0.2,0.1
|
||||
c-0.1-0.1-0.3-0.2-0.6-0.2c-0.4,0-0.7,0.1-0.9,0.4c-0.2,0.2-0.3,0.5-0.3,0.9c0,0.3,0.1,0.6,0.3,0.9c0.2,0.3,0.5,0.4,0.8,0.4h0
|
||||
c0.2,0,0.3-0.1,0.5-0.2c0,0.1,0.1,0.2,0.2,0.2l0.2,0c0.2,0,0.3,0,0.4,0c0.1,0,0.2-0.1,0.2-0.2c0-0.1,0-0.3,0-0.5c0-0.2,0-0.4,0-0.5
|
||||
c0-0.3,0-0.6,0.1-0.9L17,18.8z M15.8,20.1c-0.1,0.1-0.1,0.1-0.2,0.1h0c-0.1,0-0.2,0-0.2-0.1c-0.1-0.1-0.1-0.1-0.1-0.2
|
||||
c0-0.1,0-0.2,0.1-0.2c0.1-0.1,0.1-0.1,0.2-0.1h0c0.1,0,0.2,0,0.2,0.1c0.1,0.1,0.1,0.1,0.1,0.2C15.9,19.9,15.9,20,15.8,20.1z"/>
|
||||
<path fill="#626666" d="M18.3,19.4c-0.1-0.1-0.1-0.1-0.1-0.1c0,0,0-0.1,0-0.1c0,0,0.1,0,0.3-0.1l0.1,0l0-0.1l0.1-0.1l0,0
|
||||
c0,0,0-0.1-0.2-0.3c-0.2-0.2-0.2-0.3-0.3-0.3h0c-0.3,0-0.5,0.1-0.7,0.3c-0.2,0.2-0.4,0.4-0.3,0.7c0,0.1,0.1,0.3,0.2,0.4
|
||||
c0,0,0.1,0.1,0.2,0.2c0.1,0.1,0.1,0.1,0.1,0.1c0,0,0,0.1-0.1,0.1l-0.3,0.1l-0.1,0.1l0,0.1c0,0,0,0.1,0.2,0.3
|
||||
c0.2,0.2,0.2,0.3,0.3,0.3h0c0.2,0,0.3-0.1,0.5-0.2c0.2-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.1-0.2,0.1-0.3c0-0.1,0-0.2,0-0.3
|
||||
c0-0.2-0.1-0.3-0.2-0.4C18.5,19.6,18.5,19.5,18.3,19.4z"/>
|
||||
<path fill="#626666" d="M22.9,19.2c-0.1-0.1-0.2-0.2-0.2-0.2c0.1,0,0.1,0,0.1,0c0.1,0,0.2-0.2,0.1-0.4c-0.1-0.3-0.3-0.6-0.6-0.7
|
||||
c-0.2-0.1-0.4-0.2-0.6-0.2c-0.1,0-0.2,0-0.3,0c-0.4,0.1-0.6,0.3-0.8,0.6c-0.1,0.2-0.1,0.4-0.1,0.6l-0.1-0.1h-0.1
|
||||
c-0.1,0-0.4,0.1-0.4,0.1c0-0.1,0-0.1,0-0.3c0-0.1,0-0.2,0-0.3c0-0.1-0.1-0.1-0.2-0.1c0,0-0.4,0-0.4,0l-0.2,0c0,0-0.1,0-0.1,0
|
||||
l-0.1,0l0,0c0,0.1,0,0.1,0,0.4L19,19c0,0.1,0,0.2,0,0.2h0c-0.2,0-0.2,0.1-0.2,0.2l0.1,0.3l0,0.2c0,0.1,0.1,0.1,0.2,0.1l0.1,0
|
||||
c0,0.1,0,0.2,0.1,0.4c0,0.2,0.1,0.4,0.1,0.5c0.1,0.3,0.3,0.5,0.6,0.5c0.1,0,0.2,0,0.2,0c0.3,0,0.5-0.1,0.7-0.3C20.9,21,21,21,21,21
|
||||
l0-0.1l0,0c0,0,0-0.1,0-0.2c0-0.1,0-0.2,0-0.2l-0.1-0.1h-0.1c0,0-0.1,0-0.2,0.1c-0.1,0-0.1,0-0.1,0l-0.1,0c0,0,0-0.1-0.1-0.2l0-0.2
|
||||
l0-0.1l0.4-0.1l0.2-0.1l-0.1-0.3c0.1,0.3,0.3,0.6,0.6,0.7c0.2,0.1,0.4,0.1,0.6,0.1c0.1,0,0.3,0,0.4-0.1c0.4-0.1,0.7-0.3,0.8-0.6
|
||||
l0-0.1l0,0C23.1,19.5,23.1,19.4,22.9,19.2z M21.5,18.7c0-0.1,0.1-0.1,0.1-0.1l0.1,0c0,0,0.1,0,0.1,0c0,0,0.1,0.1,0.1,0.1
|
||||
c0,0,0,0,0,0c-0.2,0.1-0.4,0.2-0.4,0.2C21.5,18.8,21.5,18.7,21.5,18.7z M22.4,19.2c-0.1,0.1-0.2,0.2-0.3,0.2c0,0-0.1,0-0.2,0
|
||||
c0,0-0.1,0-0.1,0c0,0,0,0,0,0C22.1,19.3,22.4,19.2,22.4,19.2L22.4,19.2z"/>
|
||||
<path fill="#626666" d="M30.7,17.5c-0.1-0.2-0.2-0.3-0.4-0.4C30.1,17.1,30,17,29.8,17c0,0,0,0,0,0c-0.1,0-0.2,0-0.3,0
|
||||
c0-0.1-0.1-0.2-0.1-0.3c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.3-0.1-0.4-0.1c-0.1,0-0.2,0-0.3,0c0-0.1,0.1-0.2,0-0.3
|
||||
c-0.1,0-0.1,0-0.2-0.1c-0.1,0-0.2,0-0.2,0L27.7,16c-0.1,0-0.2-0.1-0.2-0.1l-0.1,0.1l0,0.1c-0.1,0.3-0.2,0.5-0.3,0.7
|
||||
c0-0.1-0.1-0.2-0.2-0.5c-0.2-0.3-0.2-0.4-0.3-0.4l-0.2,0h0c-0.1,0-0.5,0.3-0.6,0.3l-0.1,0.1l0,0l0,0.1c0,0,0.1,0.1,0.1,0.2
|
||||
c0,0.1,0.1,0.1,0.1,0.2c0.1,0.1,0.1,0.3,0.2,0.4c0,0,0,0.1,0,0.3c0,0.1,0,0.1,0,0.2c0,0-0.1,0-0.2-0.1c-0.2-0.1-0.2-0.2-0.2-0.2
|
||||
c0-0.1-0.1-0.2-0.2-0.3c0,0-0.2-0.3-0.2-0.3l-0.2-0.1H25c-0.1,0-0.6,0.3-0.6,0.3c-0.1,0-0.1,0.1-0.1,0.1l0,0c0,0,0-0.1-0.1-0.1
|
||||
l-0.1,0l0,0c-0.1,0.1-0.3,0.2-0.4,0.3c0,0,0,0,0,0.1c0-0.1-0.1-0.1-0.2-0.1c0,0,0,0,0,0c0,0,0,0-0.3,0.2c-0.1,0.1-0.2,0.1-0.3,0.2
|
||||
l0,0.2l0,0.1c0.1,0.2,0.3,0.4,0.4,0.8l0.2,0.4l0.1,0.2l0.2,0.4l0.1,0.1h0.1l0.1,0c0.1,0,0.2-0.1,0.3-0.1c0.1-0.1,0.2-0.1,0.3-0.1
|
||||
l0.1-0.1c0,0-0.2-0.4-0.2-0.5l-0.2-0.6c0-0.1,0-0.2,0-0.2c0,0,0,0,0.2-0.1l0.2-0.1c0.1,0,0.2-0.2,0.1-0.3l0-0.1
|
||||
c0.1,0.3,0.2,0.3,0.2,0.4c0,0,0.2,0.1,0.6,0.3c0.3,0.1,0.4,0.2,0.4,0.2c0,0,0,0,0,0c0,0,0,0.1,0,0.1c-0.1,0.1-0.2,0.2-0.3,0.3
|
||||
L25.3,19l0.1,0.1c0,0,0,0.1,0.2,0.1l0.4,0.3c0,0,0.1,0,0.2-0.1c0.6-0.3,0.6-0.4,0.6-0.4c0,0,0-0.1,0.1-0.6l0-0.2
|
||||
c0.1,0.1,0.2,0.1,0.3,0.1c0,0,0.1,0,0.1,0c0,0,0,0,0,0l0.1-0.1l0.6-1.2c0,0,0,0,0.2,0l0.2,0.1c0,0,0,0.1,0,0.2l-0.2,0.5
|
||||
c0,0.1-0.3,0.6-0.3,0.6c0,0.1,0,0.1,0,0.2l0,0.1l0.8,0.3l0.1,0c0,0,0.3-0.6,0.3-0.7c0.1-0.3,0.2-0.4,0.2-0.5c0,0,0.1-0.1,0.1-0.1
|
||||
l0.2,0c0.1,0,0.1,0.1,0.1,0.2c0,0.1-0.1,0.3-0.2,0.5c0,0.1-0.3,0.6-0.3,0.6c-0.1,0.2,0,0.3,0,0.3c0,0,0.1,0.1,0.3,0.2
|
||||
c0.2,0.1,0.3,0.1,0.3,0.1l0.1,0l0.1-0.1l0.4-0.9l0.3-0.7C30.8,17.9,30.8,17.7,30.7,17.5z"/>
|
||||
<path fill="#B2838D" d="M8.2,19.5c0,0-0.1,0.1-0.1,0.1c0,0-0.1-0.1-0.3-0.1c-0.2-0.1-0.3-0.1-0.3-0.2c0,0,0-0.1,0-0.1
|
||||
c0-0.1,0.1-0.2,0.1-0.3c0.1-0.1,0.1-0.2,0.1-0.3C7.9,18.3,8,18.2,8,18c0.1-0.2,0-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0
|
||||
c-0.1,0-0.2,0.1-0.2,0.1c0,0.1-0.1,0.2-0.3,0.5c0,0.1-0.1,0.2-0.1,0.3C7,18.7,7,18.8,7,18.9c0,0-0.1,0.1-0.1,0l-0.6-0.3
|
||||
c0,0,0-0.1,0-0.1c0-0.1,0.1-0.2,0.1-0.3C6.4,18.1,6.5,18,6.5,18c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0.1-0.2,0.1-0.2
|
||||
c0.1-0.2,0.1-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2,0-0.2,0.1c-0.1,0.1-0.2,0.3-0.3,0.6c-0.1,0.2-0.2,0.4-0.3,0.6
|
||||
c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0c-0.1,0-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.2c0,0,0,0-0.1,0c0,0,0,0,0-0.1
|
||||
c0.1-0.1,0.1-0.3,0.2-0.5c0.1-0.2,0.2-0.4,0.2-0.5c0.1-0.2,0.2-0.5,0.3-0.8c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0.1,0,0.2,0.1
|
||||
c0.1,0,0.2,0.1,0.2,0.1c0,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0.1c0,0,0,0.1,0,0.2c0,0.1-0.1,0.1-0.1,0.2c0,0,0,0,0.1,0
|
||||
c0.2,0,0.3-0.1,0.4-0.1c0.1,0,0.3,0,0.4,0.1c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0.1-0.1,0.3-0.1,0.4-0.1
|
||||
c0.2,0,0.3,0,0.4,0.1c0.2,0.1,0.3,0.2,0.4,0.3c0.1,0.2,0.1,0.3,0,0.5c0,0.1-0.1,0.2-0.2,0.3c-0.1,0.1-0.1,0.3-0.2,0.3
|
||||
c0,0.1-0.1,0.2-0.2,0.4C8.3,19.3,8.3,19.4,8.2,19.5z"/>
|
||||
<path fill="#5A8E55" d="M11.4,19.3c-0.1,0.3-0.3,0.6-0.5,0.7c-0.3,0.1-0.6,0.2-0.9,0.1c-0.3-0.1-0.6-0.3-0.7-0.5
|
||||
C9.1,19.3,9,19,9.1,18.7c0.1-0.3,0.3-0.6,0.5-0.7c0.3-0.2,0.6-0.2,0.9-0.1c0.3,0.1,0.6,0.3,0.7,0.5C11.4,18.7,11.5,19,11.4,19.3z
|
||||
M10.6,19.1c0-0.1,0-0.2,0-0.3c0-0.1-0.1-0.2-0.2-0.2c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.2,0.2-0.2,0.3c0,0.1,0,0.2,0,0.3
|
||||
c0,0.1,0.1,0.2,0.2,0.2c0.1,0,0.2,0,0.3-0.1C10.5,19.3,10.6,19.2,10.6,19.1z"/>
|
||||
<path fill="#4F80B2" d="M13.8,20.8C13.8,20.9,13.8,20.9,13.8,20.8c-0.1,0.1-0.2,0-0.4,0c-0.2,0-0.3-0.1-0.4-0.1S13,20.7,13,20.7
|
||||
c0-0.1,0-0.2,0.1-0.3c0-0.1,0-0.3,0.1-0.3c0-0.1,0-0.1,0-0.3c0-0.1,0-0.2,0-0.3c0-0.2,0-0.3-0.2-0.4c-0.1,0-0.1,0-0.2,0
|
||||
c-0.1,0-0.1,0.1-0.2,0.2l-0.2,1.2c0,0,0,0.1-0.1,0.1c-0.1,0-0.2,0-0.3,0c-0.2,0-0.3,0-0.3-0.1c0,0-0.1,0-0.1-0.1
|
||||
c0-0.1,0-0.3,0.1-0.5c0-0.2,0.1-0.4,0.1-0.5c0.1-0.4,0.1-0.7,0-0.9c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0,0.2,0,0.4,0c0.2,0,0.4,0,0.4,0
|
||||
c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.2c0,0,0.1,0,0.3-0.1c0.2-0.1,0.4-0.1,0.5-0.1c0.2,0,0.3,0.1,0.5,0.2c0.1,0.1,0.2,0.3,0.1,0.5
|
||||
L14,19.9c0,0.1,0,0.2-0.1,0.4C13.9,20.6,13.8,20.7,13.8,20.8z"/>
|
||||
<path fill="#CCC381" d="M16.8,19.8c0,0.1,0,0.3,0,0.5c0,0.2,0,0.4,0,0.5c0,0.1,0,0.1-0.1,0.1c-0.2,0-0.4,0-0.7,0c0,0,0,0-0.1-0.1
|
||||
c0-0.1,0-0.1,0-0.1c0,0,0,0,0,0c-0.2,0.2-0.4,0.3-0.6,0.2c-0.3,0-0.5-0.1-0.7-0.4c-0.2-0.2-0.3-0.5-0.3-0.8c0-0.4,0.1-0.6,0.3-0.8
|
||||
c0.2-0.2,0.5-0.3,0.8-0.3c0.2,0,0.4,0.1,0.6,0.3c0,0,0,0,0,0c0,0,0,0,0-0.1c0-0.1,0-0.1,0.1-0.1c0.1,0,0.2,0,0.3,0.1
|
||||
c0.2,0,0.3,0.1,0.3,0.1c0,0,0,0,0,0c0,0,0,0,0,0C16.8,19.2,16.8,19.5,16.8,19.8z M16,19.8c0-0.1,0-0.2-0.1-0.3
|
||||
c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0,0.2,0.1,0.3c0.1,0.1,0.2,0.1,0.3,0.1
|
||||
c0.1,0,0.2,0,0.3-0.1C16,20.1,16,20,16,19.8z"/>
|
||||
<path fill="#5A8E55" d="M18.6,19C18.6,19,18.6,19,18.6,19C18.5,19,18.5,19,18.4,19c-0.1,0-0.2,0-0.2,0.1c-0.1,0.1-0.1,0.1-0.1,0.2
|
||||
c0,0.1,0,0.1,0.1,0.2c0.1,0.1,0.2,0.2,0.2,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.2,0,0.3c0,0.1-0.1,0.2-0.1,0.2
|
||||
c-0.1,0.1-0.2,0.2-0.4,0.3C18,20.9,17.8,21,17.7,21c0,0-0.1-0.1-0.2-0.2c-0.1-0.2-0.2-0.3-0.2-0.3c0,0,0,0,0,0
|
||||
c0.1,0,0.2-0.1,0.3-0.1c0.1-0.1,0.2-0.1,0.2-0.2c0-0.1-0.1-0.1-0.1-0.2c-0.2-0.1-0.2-0.2-0.2-0.2c-0.1-0.1-0.1-0.2-0.1-0.3
|
||||
c0-0.2,0.1-0.4,0.3-0.6c0.2-0.2,0.4-0.3,0.6-0.3c0,0,0.1,0.1,0.2,0.2C18.5,18.8,18.6,18.9,18.6,19z"/>
|
||||
<path fill="#B2838D" d="M20.8,20.4c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.2c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0.1c-0.2,0.1-0.4,0.2-0.6,0.3
|
||||
c-0.4,0.1-0.7-0.1-0.7-0.4c0-0.1,0-0.2-0.1-0.4c0-0.2-0.1-0.4-0.1-0.4c0-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c-0.1,0-0.1,0-0.1,0c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0-0.1c0,0,0-0.1,0.1-0.1c0.1,0,0.1,0,0.1-0.1
|
||||
c0-0.1,0-0.1,0-0.3c0-0.2-0.1-0.3-0.1-0.3c0-0.2,0-0.3,0-0.3c0,0,0.1,0,0.2,0c0.1,0,0.2,0,0.2,0c0.1,0,0.2,0,0.4,0c0,0,0.1,0,0.1,0
|
||||
c0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3c0,0.1,0,0.1,0.1,0.1c0.1,0,0.1,0,0.2,0c0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.1,0c0,0,0,0.1,0,0.2
|
||||
c0,0.1,0,0.1,0,0.2c0,0,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c0,0,0,0.1-0.1,0.1c0,0-0.1,0-0.2,0c-0.1,0-0.1,0-0.2,0l-0.2,0c0,0,0,0,0,0.1
|
||||
c0,0,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c0,0.1,0.1,0.2,0.1,0.3c0.1,0.1,0.1,0.1,0.3,0.1c0,0,0.1,0,0.2-0.1
|
||||
C20.7,20.4,20.7,20.4,20.8,20.4C20.8,20.4,20.8,20.4,20.8,20.4z"/>
|
||||
<path fill="#4F80B2" d="M22.9,18.6c0,0.1,0,0.2-0.1,0.3c0,0-0.2,0.1-0.4,0.2c-0.2,0.1-0.4,0.2-0.8,0.3c0,0.1,0.1,0.1,0.2,0.2
|
||||
c0.1,0,0.2,0,0.3,0c0.1,0,0.3-0.1,0.4-0.2c0-0.1,0.1-0.1,0.1-0.2c0,0,0.1,0.1,0.2,0.2c0.1,0.1,0.2,0.2,0.2,0.2c0,0,0,0,0,0.1
|
||||
c-0.1,0.2-0.4,0.4-0.8,0.5c-0.3,0.1-0.7,0.1-0.9-0.1c-0.3-0.1-0.5-0.4-0.6-0.7c-0.1-0.3-0.1-0.6,0.1-0.9c0.1-0.3,0.4-0.5,0.7-0.6
|
||||
c0.3-0.1,0.6,0,0.8,0.1C22.6,18.1,22.8,18.3,22.9,18.6z M22,18.7c0-0.1-0.1-0.2-0.2-0.2c-0.1-0.1-0.2-0.1-0.3,0
|
||||
c-0.1,0-0.2,0.1-0.2,0.2c0,0.1,0,0.2,0,0.3c0,0,0,0.1,0.1,0C21.6,18.9,21.8,18.9,22,18.7C22,18.7,22,18.7,22,18.7z"/>
|
||||
<path fill="#CCC381" d="M24.5,17.7c0,0.1,0,0.1-0.1,0.1c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.1,0c-0.1,0-0.2,0.1-0.2,0.2
|
||||
c0,0.1,0,0.1,0,0.2c0,0.1,0.1,0.2,0.1,0.3c0.1,0.1,0.1,0.2,0.1,0.3c0,0,0,0.1,0.1,0.2c0,0.1,0.1,0.1,0.1,0.2c0,0,0,0.1,0,0.1
|
||||
c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0.1-0.2,0.1-0.3,0.1c0,0-0.1,0-0.1,0c0-0.1-0.1-0.3-0.2-0.5c-0.1-0.2-0.2-0.4-0.2-0.5
|
||||
c-0.1-0.3-0.3-0.6-0.4-0.8c0,0,0,0,0,0c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.2-0.1,0.3-0.2,0.3-0.2c0,0,0.1,0,0.1,0.1
|
||||
c0,0.1,0.1,0.1,0.1,0.1c0,0,0-0.1,0.1-0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2c0,0.1,0,0.1,0.1,0.2
|
||||
c0,0,0,0.1,0.1,0.2C24.5,17.7,24.5,17.7,24.5,17.7z"/>
|
||||
<path fill="#B2838D" d="M26.7,16.4c0.1,0.3,0.2,0.4,0.2,0.5c0,0.1,0,0.4,0,1c0,0.1,0,0.3-0.1,0.6c-0.1,0.4-0.1,0.6-0.1,0.6
|
||||
c0,0-0.2,0.2-0.6,0.4c-0.1,0-0.1,0-0.1,0c0,0-0.1-0.1-0.2-0.2c0,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0-0.1
|
||||
c0.4-0.2,0.5-0.4,0.4-0.6c0,0-0.2-0.1-0.5-0.3c-0.3-0.2-0.5-0.3-0.6-0.3c0,0-0.1-0.2-0.2-0.4c0,0-0.1-0.1-0.1-0.2
|
||||
c-0.1-0.1-0.1-0.2-0.1-0.2c0,0,0-0.1,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2
|
||||
c0,0.1,0.1,0.1,0.1,0.2c0.1,0.2,0.2,0.3,0.2,0.3c0,0,0.1,0.1,0.3,0.2c0.2,0.1,0.2,0.1,0.3,0.1c0,0,0-0.1,0.1-0.3c0-0.2,0-0.3,0-0.3
|
||||
c-0.1-0.1-0.1-0.3-0.2-0.4c0,0-0.1-0.1-0.1-0.2c0-0.1-0.1-0.1-0.1-0.2c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2
|
||||
c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1,0,0.1,0C26.5,16,26.6,16.1,26.7,16.4z"/>
|
||||
<path fill="#5A8E55" d="M29.9,19.5c0,0-0.1,0.1-0.1,0.1c0,0-0.1-0.1-0.3-0.1c-0.2-0.1-0.3-0.1-0.3-0.2c0,0,0-0.1,0-0.1
|
||||
c0-0.1,0.1-0.2,0.1-0.3c0.1-0.1,0.1-0.2,0.1-0.3c0.1-0.2,0.2-0.4,0.2-0.5c0.1-0.2,0-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0
|
||||
c-0.1,0-0.2,0.1-0.2,0.1c0,0.1-0.1,0.2-0.3,0.5c0,0.1-0.1,0.2-0.1,0.3c-0.1,0.1-0.1,0.2-0.1,0.3c0,0-0.1,0.1-0.1,0l-0.6-0.3
|
||||
c0,0,0-0.1,0-0.1c0-0.1,0.1-0.2,0.1-0.3c0.1-0.1,0.1-0.2,0.1-0.3c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0.1-0.2,0.1-0.2
|
||||
c0.1-0.2,0.1-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2,0-0.2,0.1c-0.1,0.1-0.2,0.3-0.3,0.6c-0.1,0.2-0.2,0.4-0.3,0.6
|
||||
c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0c-0.1,0-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.2c0,0,0,0-0.1,0c0,0,0,0,0-0.1
|
||||
c0.1-0.1,0.1-0.3,0.2-0.5c0.1-0.2,0.2-0.4,0.2-0.5c0.1-0.2,0.2-0.5,0.3-0.8c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0.1,0,0.2,0.1
|
||||
c0.1,0,0.2,0.1,0.2,0.1c0,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0.1c0,0,0,0.1,0,0.2s-0.1,0.1-0.1,0.2c0,0,0,0,0.1,0
|
||||
c0.2,0,0.3-0.1,0.4-0.1c0.1,0,0.3,0,0.4,0.1c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0.1-0.1,0.3-0.1,0.4-0.1
|
||||
c0.2,0,0.3,0,0.4,0.1c0.2,0.1,0.3,0.2,0.4,0.3c0.1,0.2,0.1,0.3,0,0.5c0,0.1-0.1,0.2-0.2,0.3c-0.1,0.1-0.1,0.3-0.2,0.3
|
||||
c0,0.1-0.1,0.2-0.2,0.4C30,19.3,29.9,19.4,29.9,19.5z"/>
|
||||
<path fill="#C4BCB1" d="M2.8,17.7c0,0.1,0,0.1-0.1,0.1c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.1,0c-0.1,0-0.2,0.1-0.2,0.2
|
||||
c0,0.1,0,0.1,0,0.2c0,0.1,0.1,0.2,0.1,0.3c0.1,0.1,0.1,0.2,0.1,0.3c0,0,0,0.1,0.1,0.2c0,0.1,0.1,0.1,0.1,0.2c0,0,0,0.1,0,0.1
|
||||
c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0.1-0.2,0.1-0.3,0.1c0,0-0.1,0-0.1,0c0-0.1-0.1-0.3-0.2-0.5c-0.1-0.2-0.2-0.4-0.2-0.5
|
||||
c-0.1-0.3-0.3-0.6-0.4-0.8c0,0,0,0,0,0c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.2-0.1,0.3-0.2,0.3-0.2c0,0,0.1,0,0.1,0.1
|
||||
c0,0.1,0.1,0.1,0.1,0.1c0,0,0-0.1,0.1-0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2c0,0.1,0,0.1,0.1,0.2
|
||||
c0,0,0,0.1,0.1,0.2C2.8,17.7,2.8,17.7,2.8,17.7z"/>
|
||||
<path fill="#CCC381" d="M5,16.4c0.1,0.3,0.2,0.4,0.2,0.5c0,0.1,0,0.4,0,1c0,0.1,0,0.3-0.1,0.6C5,18.8,5,19,5,19.1
|
||||
c0,0-0.2,0.2-0.6,0.4c-0.1,0-0.1,0-0.1,0c0,0-0.1-0.1-0.2-0.2c0,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0-0.1
|
||||
c0.4-0.2,0.5-0.4,0.4-0.6c0,0-0.2-0.1-0.5-0.3c-0.3-0.2-0.5-0.3-0.6-0.3c0,0-0.1-0.2-0.2-0.4c0,0-0.1-0.1-0.1-0.2
|
||||
c-0.1-0.1-0.1-0.2-0.1-0.2c0,0,0-0.1,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2
|
||||
c0,0.1,0.1,0.1,0.1,0.2c0.1,0.2,0.2,0.3,0.2,0.3c0,0,0.1,0.1,0.3,0.2c0.2,0.1,0.2,0.1,0.3,0.1c0,0,0-0.1,0.1-0.3c0-0.2,0-0.3,0-0.3
|
||||
c-0.1-0.1-0.1-0.3-0.2-0.4c0,0-0.1-0.1-0.1-0.2c0-0.1-0.1-0.1-0.1-0.2c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2C4.5,16,4.6,16,4.6,15.9
|
||||
c0,0,0.1,0,0.1,0C4.8,16,4.9,16.1,5,16.4z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path fill="#586689" d="M8.2,23.6c0,0-0.1,0.1-0.1,0.1c0,0-0.1-0.1-0.3-0.1c-0.2-0.1-0.3-0.1-0.3-0.2c0,0,0-0.1,0-0.1
|
||||
c0-0.1,0.1-0.2,0.1-0.3c0.1-0.1,0.1-0.2,0.1-0.3C7.9,22.4,8,22.3,8,22.1c0.1-0.2,0-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0
|
||||
c-0.1,0-0.2,0.1-0.2,0.1c0,0.1-0.1,0.2-0.3,0.5c0,0.1-0.1,0.2-0.1,0.3C7,22.8,7,22.9,7,23c0,0-0.1,0.1-0.1,0l-0.6-0.3
|
||||
c0,0,0-0.1,0-0.1c0-0.1,0.1-0.2,0.1-0.3c0.1-0.1,0.1-0.2,0.1-0.3c0-0.1,0.1-0.1,0.1-0.2c0-0.1,0.1-0.2,0.1-0.2
|
||||
c0.1-0.2,0.1-0.3-0.1-0.4c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2,0-0.2,0.1c-0.1,0.1-0.2,0.3-0.3,0.6c-0.1,0.2-0.2,0.4-0.3,0.6
|
||||
c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0c-0.1,0-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.2c0,0,0,0-0.1,0c0,0,0,0,0-0.1
|
||||
c0.1-0.1,0.1-0.3,0.2-0.5c0.1-0.2,0.2-0.4,0.2-0.5c0.1-0.2,0.2-0.5,0.3-0.8c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0.1,0,0.2,0.1
|
||||
c0.1,0,0.2,0.1,0.2,0.1c0,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0.1c0,0,0,0.1,0,0.2c0,0.1-0.1,0.1-0.1,0.2c0,0,0,0,0.1,0
|
||||
c0.2,0,0.3-0.1,0.4-0.1c0.1,0,0.3,0,0.4,0.1c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0.1-0.1,0.3-0.1,0.4-0.1
|
||||
c0.2,0,0.3,0,0.4,0.1c0.2,0.1,0.3,0.2,0.4,0.3C9,21.8,9,22,8.9,22.2c0,0.1-0.1,0.2-0.2,0.3c-0.1,0.1-0.1,0.3-0.2,0.3
|
||||
c0,0.1-0.1,0.2-0.2,0.4C8.3,23.4,8.3,23.5,8.2,23.6z"/>
|
||||
<path fill="#586689" d="M11.4,23.4c-0.1,0.3-0.3,0.6-0.5,0.7c-0.3,0.1-0.6,0.2-0.9,0.1c-0.3-0.1-0.6-0.3-0.7-0.5
|
||||
c-0.1-0.3-0.2-0.6-0.1-0.9c0.1-0.3,0.3-0.6,0.5-0.7c0.3-0.2,0.6-0.2,0.9-0.1c0.3,0.1,0.6,0.3,0.7,0.5
|
||||
C11.4,22.8,11.5,23.1,11.4,23.4z M10.6,23.2c0-0.1,0-0.2,0-0.3c0-0.1-0.1-0.2-0.2-0.2c-0.1,0-0.2,0-0.3,0.1
|
||||
C10,22.8,9.9,22.9,9.9,23c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.2,0.2,0.2c0.1,0,0.2,0,0.3-0.1C10.5,23.4,10.6,23.3,10.6,23.2z"/>
|
||||
<path fill="#586689" d="M13.8,24.9C13.8,24.9,13.8,25,13.8,24.9c-0.1,0.1-0.2,0-0.4,0c-0.2,0-0.3-0.1-0.4-0.1c0,0-0.1-0.1-0.1-0.1
|
||||
c0-0.1,0-0.2,0.1-0.3c0-0.1,0-0.3,0.1-0.3c0-0.1,0-0.1,0-0.3c0-0.1,0-0.2,0-0.3c0-0.2,0-0.3-0.2-0.4c-0.1,0-0.1,0-0.2,0
|
||||
c-0.1,0-0.1,0.1-0.2,0.2l-0.2,1.2c0,0,0,0.1-0.1,0.1c-0.1,0-0.2,0-0.3,0c-0.2,0-0.3,0-0.3-0.1c0,0-0.1,0-0.1-0.1
|
||||
c0-0.1,0-0.3,0.1-0.5c0-0.2,0.1-0.4,0.1-0.5c0.1-0.4,0.1-0.7,0-0.9c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0,0.2,0,0.4,0c0.2,0,0.4,0,0.4,0
|
||||
c0,0,0,0.1,0,0.2s0,0.2,0,0.2c0,0,0.1,0,0.3-0.1c0.2-0.1,0.4-0.1,0.5-0.1c0.2,0,0.3,0.1,0.5,0.2c0.1,0.1,0.2,0.3,0.1,0.5L14,24
|
||||
c0,0.1,0,0.2-0.1,0.4C13.9,24.7,13.8,24.8,13.8,24.9z"/>
|
||||
<path fill="#586689" d="M16.8,23.9c0,0.1,0,0.3,0,0.5c0,0.2,0,0.4,0,0.5c0,0.1,0,0.1-0.1,0.1c-0.2,0-0.4,0-0.7,0c0,0,0,0-0.1-0.1
|
||||
c0-0.1,0-0.1,0-0.1c0,0,0,0,0,0c-0.2,0.2-0.4,0.3-0.6,0.2c-0.3,0-0.5-0.1-0.7-0.4c-0.2-0.2-0.3-0.5-0.3-0.8c0-0.4,0.1-0.6,0.3-0.8
|
||||
c0.2-0.2,0.5-0.3,0.8-0.3c0.2,0,0.4,0.1,0.6,0.3c0,0,0,0,0,0c0,0,0,0,0-0.1c0-0.1,0-0.1,0.1-0.1c0.1,0,0.2,0,0.3,0.1
|
||||
c0.2,0,0.3,0.1,0.3,0.1c0,0,0,0,0,0c0,0,0,0,0,0C16.8,23.3,16.8,23.6,16.8,23.9z M16,23.9c0-0.1,0-0.2-0.1-0.3
|
||||
c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0,0.2,0.1,0.3c0.1,0.1,0.2,0.1,0.3,0.1
|
||||
c0.1,0,0.2,0,0.3-0.1C16,24.2,16,24.1,16,23.9z"/>
|
||||
<path fill="#586689" d="M18.6,23.1C18.6,23.1,18.6,23.1,18.6,23.1c-0.1,0.1-0.1,0.1-0.2,0.1c-0.1,0-0.2,0-0.2,0.1
|
||||
c-0.1,0.1-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.2c0.1,0.1,0.2,0.2,0.2,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1,0,0.2,0,0.3
|
||||
c0,0.1-0.1,0.2-0.1,0.2c-0.1,0.1-0.2,0.2-0.4,0.3c-0.2,0.1-0.3,0.1-0.4,0.1c0,0-0.1-0.1-0.2-0.2c-0.1-0.2-0.2-0.3-0.2-0.3
|
||||
c0,0,0,0,0,0c0.1,0,0.2-0.1,0.3-0.1c0.1-0.1,0.2-0.1,0.2-0.2c0-0.1-0.1-0.1-0.1-0.2c-0.2-0.1-0.2-0.2-0.2-0.2
|
||||
c-0.1-0.1-0.1-0.2-0.1-0.3c0-0.2,0.1-0.4,0.3-0.6c0.2-0.2,0.4-0.3,0.6-0.3c0,0,0.1,0.1,0.2,0.2C18.5,22.9,18.6,23,18.6,23.1z"/>
|
||||
<path fill="#586689" d="M20.8,24.5c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.2c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0.1c-0.2,0.1-0.4,0.2-0.6,0.3
|
||||
c-0.4,0.1-0.7-0.1-0.7-0.4c0-0.1,0-0.2-0.1-0.4c0-0.2-0.1-0.4-0.1-0.4c0-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c-0.1,0-0.1,0-0.1,0c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0-0.1c0,0,0-0.1,0.1-0.1c0.1,0,0.1,0,0.1-0.1
|
||||
c0-0.1,0-0.1,0-0.3c0-0.2-0.1-0.3-0.1-0.3c0-0.2,0-0.3,0-0.3c0,0,0.1,0,0.2,0c0.1,0,0.2,0,0.2,0c0.1,0,0.2,0,0.4,0
|
||||
c0,0,0.1,0,0.1,0c0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3c0,0.1,0,0.1,0.1,0.1c0.1,0,0.1,0,0.2,0c0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.1,0
|
||||
c0,0,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c0,0,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c0,0,0,0.1-0.1,0.1c0,0-0.1,0-0.2,0c-0.1,0-0.1,0-0.2,0
|
||||
l-0.2,0c0,0,0,0,0,0.1c0,0,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c0,0.1,0.1,0.2,0.1,0.3c0.1,0.1,0.1,0.1,0.3,0.1c0,0,0.1,0,0.2-0.1
|
||||
C20.7,24.5,20.7,24.5,20.8,24.5C20.8,24.5,20.8,24.5,20.8,24.5z"/>
|
||||
<path fill="#586689" d="M22.9,22.7c0,0.1,0,0.2-0.1,0.3c0,0-0.2,0.1-0.4,0.2c-0.2,0.1-0.4,0.2-0.8,0.3c0,0.1,0.1,0.1,0.2,0.2
|
||||
c0.1,0,0.2,0,0.3,0c0.1,0,0.3-0.1,0.4-0.2c0-0.1,0.1-0.1,0.1-0.2c0,0,0.1,0.1,0.2,0.2c0.1,0.1,0.2,0.2,0.2,0.2c0,0,0,0,0,0.1
|
||||
c-0.1,0.2-0.4,0.4-0.8,0.5c-0.3,0.1-0.7,0.1-0.9-0.1c-0.3-0.1-0.5-0.4-0.6-0.7c-0.1-0.3-0.1-0.6,0.1-0.9c0.1-0.3,0.4-0.5,0.7-0.6
|
||||
c0.3-0.1,0.6,0,0.8,0.1C22.6,22.2,22.8,22.4,22.9,22.7z M22,22.8c0-0.1-0.1-0.2-0.2-0.2c-0.1-0.1-0.2-0.1-0.3,0
|
||||
c-0.1,0-0.2,0.1-0.2,0.2c0,0.1,0,0.2,0,0.3c0,0,0,0.1,0.1,0C21.6,23,21.8,23,22,22.8C22,22.8,22,22.8,22,22.8z"/>
|
||||
<path fill="#586689" d="M24.5,21.8c0,0.1,0,0.1-0.1,0.1c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.1,0c-0.1,0-0.2,0.1-0.2,0.2
|
||||
c0,0.1,0,0.1,0,0.2c0,0.1,0.1,0.2,0.1,0.3c0.1,0.1,0.1,0.2,0.1,0.3c0,0,0,0.1,0.1,0.2c0,0.1,0.1,0.1,0.1,0.2c0,0,0,0.1,0,0.1
|
||||
c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0.1-0.2,0.1-0.3,0.1c0,0-0.1,0-0.1,0c0-0.1-0.1-0.3-0.2-0.5c-0.1-0.2-0.2-0.4-0.2-0.5
|
||||
c-0.1-0.3-0.3-0.6-0.4-0.8c0,0,0,0,0,0c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.2-0.1,0.3-0.2,0.3-0.2c0,0,0.1,0,0.1,0.1
|
||||
c0,0.1,0.1,0.1,0.1,0.1c0,0,0-0.1,0.1-0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2c0,0.1,0,0.1,0.1,0.2
|
||||
c0,0,0,0.1,0.1,0.2C24.5,21.8,24.5,21.8,24.5,21.8z"/>
|
||||
<path fill="#586689" d="M26.7,20.5c0.1,0.3,0.2,0.4,0.2,0.5c0,0.1,0,0.4,0,1c0,0.1,0,0.3-0.1,0.6c-0.1,0.4-0.1,0.6-0.1,0.6
|
||||
c0,0-0.2,0.2-0.6,0.4c-0.1,0-0.1,0-0.1,0c0,0-0.1-0.1-0.2-0.2c0,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0-0.1
|
||||
c0.4-0.2,0.5-0.4,0.4-0.6c0,0-0.2-0.1-0.5-0.3c-0.3-0.2-0.5-0.3-0.6-0.3c0,0-0.1-0.2-0.2-0.4c0,0-0.1-0.1-0.1-0.2
|
||||
c-0.1-0.1-0.1-0.2-0.1-0.2c0,0,0-0.1,0-0.1c0.1,0,0.2-0.1,0.3-0.2c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1,0,0.1,0c0,0,0,0.1,0.1,0.2
|
||||
c0,0.1,0.1,0.1,0.1,0.2c0.1,0.2,0.2,0.3,0.2,0.3c0,0,0.1,0.1,0.3,0.2c0.2,0.1,0.2,0.1,0.3,0.1c0,0,0-0.1,0.1-0.3
|
||||
c0-0.2,0-0.3,0-0.3C26,21,26,20.9,25.9,20.8c0,0-0.1-0.1-0.1-0.2c0-0.1-0.1-0.1-0.1-0.2c0,0,0,0,0-0.1c0.1,0,0.2-0.1,0.3-0.2
|
||||
c0.1-0.1,0.2-0.1,0.3-0.2c0,0,0.1,0,0.1,0C26.5,20.1,26.6,20.2,26.7,20.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path fill="#A03C2E" d="M16,0.3C7.3,0.3,0.2,7.3,0.2,16s7,15.7,15.7,15.7s15.7-7,15.7-15.7S24.7,0.3,16,0.3z M16,30
|
||||
C8.2,30,2,23.7,2,16C2,8.3,8.2,2,16,2s14,6.3,14,14C29.9,23.7,23.7,30,16,30z"/>
|
||||
<path fill="#682721" d="M16,0.9C7.6,0.9,0.9,7.7,0.9,16S7.6,31.1,16,31.1S31.1,24.3,31.1,16S24.3,0.9,16,0.9z M16,30.7
|
||||
C7.9,30.7,1.3,24.1,1.3,16C1.3,7.9,7.9,1.3,16,1.3S30.6,7.9,30.6,16C30.6,24.1,24.1,30.7,16,30.7z"/>
|
||||
<path fill="#682721" d="M16,0.2C7.3,0.2,0.2,7.3,0.2,16S7.3,31.8,16,31.8S31.7,24.7,31.7,16S24.7,0.2,16,0.2z M16,31.3
|
||||
C7.5,31.3,0.6,24.5,0.6,16C0.6,7.5,7.5,0.7,16,0.7S31.3,7.5,31.3,16C31.3,24.5,24.4,31.3,16,31.3z"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
@@ -1,299 +1,299 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<path fill="#4D4846" d="M4.237,30.16l-0.001-1.773L4.237,30.16c-0.632,0-1.224-0.246-1.669-0.693
|
||||
c-0.444-0.446-0.688-1.039-0.686-1.669V3.964c0-1.298,1.056-2.354,2.354-2.354l23.841,0c0.631,0,1.224,0.246,1.669,0.692
|
||||
c0.444,0.446,0.688,1.039,0.686,1.669v23.835c0,1.298-1.056,2.354-2.354,2.354H4.237z"/>
|
||||
<path fill="#231D13" d="M3.941,29.273v-0.029c-0.28-0.057-0.539-0.195-0.745-0.402c-0.276-0.278-0.429-0.648-0.427-1.041V3.964
|
||||
c0-0.81,0.657-1.468,1.467-1.468l23.841,0c0.394,0,0.764,0.153,1.041,0.432c0.276,0.278,0.429,0.647,0.427,1.041v23.837
|
||||
c0,0.81-0.657,1.468-1.467,1.468H3.941z"/>
|
||||
<path fill="#EEE8D8" d="M4.237,28.978l-0.001-0.591L4.237,28.978c-0.315,0-0.609-0.122-0.832-0.345
|
||||
c-0.221-0.222-0.343-0.518-0.341-0.831V3.964c0-0.646,0.525-1.172,1.172-1.172l23.841,0c0.313,0,0.609,0.122,0.832,0.345
|
||||
c0.221,0.222,0.343,0.518,0.342,0.831v23.838c0,0.646-0.526,1.172-1.173,1.172H4.237z"/>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="16.1577" y1="3.2583" x2="16.1577" y2="28.5112">
|
||||
<stop offset="0" style="stop-color:#B2A38B"/>
|
||||
<stop offset="0.2701" style="stop-color:#B0A289"/>
|
||||
<stop offset="0.4539" style="stop-color:#AB9F86"/>
|
||||
<stop offset="0.612" style="stop-color:#A39B81"/>
|
||||
<stop offset="0.7556" style="stop-color:#999579"/>
|
||||
<stop offset="0.8881" style="stop-color:#8A8B6E"/>
|
||||
<stop offset="1" style="stop-color:#797E61"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_1_)" d="M28.196,3.258c0.325,0,0.589,0.263,0.588,0.588v24.077c0,0.325-0.263,0.587-0.587,0.587H4.118
|
||||
c-0.324,0.001-0.589-0.262-0.587-0.588V3.846c0-0.326,0.262-0.588,0.587-0.587L28.196,3.258z"/>
|
||||
<g>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="5.8398" y1="28.5112" x2="5.8398" y2="3.2588">
|
||||
<stop offset="0" style="stop-color:#B2A38B"/>
|
||||
<stop offset="0.1227" style="stop-color:#ADA087"/>
|
||||
<stop offset="0.295" style="stop-color:#A49A81"/>
|
||||
<stop offset="0.4965" style="stop-color:#948F75"/>
|
||||
<stop offset="0.7203" style="stop-color:#7D7C63"/>
|
||||
<stop offset="0.9598" style="stop-color:#5F634C"/>
|
||||
<stop offset="1" style="stop-color:#5A5E47"/>
|
||||
</linearGradient>
|
||||
<rect x="5.741" y="3.259" fill="url(#SVGID_2_)" width="0.197" height="25.252"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="8.105" y1="28.5112" x2="8.105" y2="3.2588">
|
||||
<stop offset="0" style="stop-color:#B2A38B"/>
|
||||
<stop offset="0.1227" style="stop-color:#ADA087"/>
|
||||
<stop offset="0.295" style="stop-color:#A49A81"/>
|
||||
<stop offset="0.4965" style="stop-color:#948F75"/>
|
||||
<stop offset="0.7203" style="stop-color:#7D7C63"/>
|
||||
<stop offset="0.9598" style="stop-color:#5F634C"/>
|
||||
<stop offset="1" style="stop-color:#5A5E47"/>
|
||||
</linearGradient>
|
||||
<rect x="8.007" y="3.259" fill="url(#SVGID_3_)" width="0.196" height="25.252"/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="12.7832" y1="28.5112" x2="12.7832" y2="3.2588">
|
||||
<stop offset="0" style="stop-color:#B2A38B"/>
|
||||
<stop offset="0.1227" style="stop-color:#ADA087"/>
|
||||
<stop offset="0.295" style="stop-color:#A49A81"/>
|
||||
<stop offset="0.4965" style="stop-color:#948F75"/>
|
||||
<stop offset="0.7203" style="stop-color:#7D7C63"/>
|
||||
<stop offset="0.9598" style="stop-color:#5F634C"/>
|
||||
<stop offset="1" style="stop-color:#5A5E47"/>
|
||||
</linearGradient>
|
||||
<rect x="12.685" y="3.259" fill="url(#SVGID_4_)" width="0.197" height="25.252"/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="18.249" y1="28.5112" x2="18.249" y2="3.2588">
|
||||
<stop offset="0" style="stop-color:#B2A38B"/>
|
||||
<stop offset="0.1227" style="stop-color:#ADA087"/>
|
||||
<stop offset="0.295" style="stop-color:#A49A81"/>
|
||||
<stop offset="0.4965" style="stop-color:#948F75"/>
|
||||
<stop offset="0.7203" style="stop-color:#7D7C63"/>
|
||||
<stop offset="0.9598" style="stop-color:#5F634C"/>
|
||||
<stop offset="1" style="stop-color:#5A5E47"/>
|
||||
</linearGradient>
|
||||
<rect x="18.15" y="3.259" fill="url(#SVGID_5_)" width="0.197" height="25.252"/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="19.481" y1="28.5112" x2="19.481" y2="3.2588">
|
||||
<stop offset="0" style="stop-color:#B2A38B"/>
|
||||
<stop offset="0.1227" style="stop-color:#ADA087"/>
|
||||
<stop offset="0.295" style="stop-color:#A49A81"/>
|
||||
<stop offset="0.4965" style="stop-color:#948F75"/>
|
||||
<stop offset="0.7203" style="stop-color:#7D7C63"/>
|
||||
<stop offset="0.9598" style="stop-color:#5F634C"/>
|
||||
<stop offset="1" style="stop-color:#5A5E47"/>
|
||||
</linearGradient>
|
||||
<rect x="19.383" y="3.259" fill="url(#SVGID_6_)" width="0.196" height="25.252"/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="23.9121" y1="28.5112" x2="23.9121" y2="3.2588">
|
||||
<stop offset="0" style="stop-color:#B2A38B"/>
|
||||
<stop offset="0.1227" style="stop-color:#ADA087"/>
|
||||
<stop offset="0.295" style="stop-color:#A49A81"/>
|
||||
<stop offset="0.4965" style="stop-color:#948F75"/>
|
||||
<stop offset="0.7203" style="stop-color:#7D7C63"/>
|
||||
<stop offset="0.9598" style="stop-color:#5F634C"/>
|
||||
<stop offset="1" style="stop-color:#5A5E47"/>
|
||||
</linearGradient>
|
||||
<rect x="23.813" y="3.259" fill="url(#SVGID_7_)" width="0.197" height="25.252"/>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="26.7686" y1="28.5112" x2="26.7686" y2="3.2588">
|
||||
<stop offset="0" style="stop-color:#B2A38B"/>
|
||||
<stop offset="0.1227" style="stop-color:#ADA087"/>
|
||||
<stop offset="0.295" style="stop-color:#A49A81"/>
|
||||
<stop offset="0.4965" style="stop-color:#948F75"/>
|
||||
<stop offset="0.7203" style="stop-color:#7D7C63"/>
|
||||
<stop offset="0.9598" style="stop-color:#5F634C"/>
|
||||
<stop offset="1" style="stop-color:#5A5E47"/>
|
||||
</linearGradient>
|
||||
<rect x="26.67" y="3.259" fill="url(#SVGID_8_)" width="0.197" height="25.252"/>
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="27.5195" y1="28.5112" x2="27.5195" y2="3.2588">
|
||||
<stop offset="0" style="stop-color:#B2A38B"/>
|
||||
<stop offset="0.1227" style="stop-color:#ADA087"/>
|
||||
<stop offset="0.295" style="stop-color:#A49A81"/>
|
||||
<stop offset="0.4965" style="stop-color:#948F75"/>
|
||||
<stop offset="0.7203" style="stop-color:#7D7C63"/>
|
||||
<stop offset="0.9598" style="stop-color:#5F634C"/>
|
||||
<stop offset="1" style="stop-color:#5A5E47"/>
|
||||
</linearGradient>
|
||||
<rect x="27.421" y="3.259" fill="url(#SVGID_9_)" width="0.197" height="25.252"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#B5AFA0" d="M22.065,24.303c-0.554,0-0.955,0.352-0.955,0.836c0,0.293,0.123,0.542,0.395,0.791
|
||||
c-0.035-0.012-0.071-0.018-0.106-0.018c-0.115,0-0.314,0.074-0.333,0.354c-0.003,0.049-0.014,0.228-0.014,0.392
|
||||
c0,0.067,0,0.27,0.233,0.372c0.155,0.068,0.32,0.099,0.534,0.099c0.241,0,0.441-0.053,0.613-0.164
|
||||
c0.258-0.169,0.404-0.44,0.404-0.747c0-0.36-0.172-0.607-0.393-0.807c0.033,0,0.329-0.018,0.329-0.385
|
||||
c0-0.147,0.005-0.229,0.008-0.276l0-0.009l0.002-0.056c0-0.135-0.086-0.288-0.28-0.328C22.429,24.337,22.281,24.303,22.065,24.303
|
||||
L22.065,24.303z M21.858,26.392c-0.097,0-0.108-0.039-0.119-0.072c-0.008-0.027-0.013-0.056-0.013-0.064
|
||||
c0-0.069-0.017-0.128-0.044-0.178l0.092,0.072c0.164,0.128,0.164,0.178,0.164,0.218C21.936,26.375,21.912,26.392,21.858,26.392
|
||||
L21.858,26.392z"/>
|
||||
<path fill="#B5AFA0" d="M19.213,24.303c-0.044,0-0.269,0.014-0.328,0.291v0c0,0-0.066,0.294-0.066,0.39
|
||||
c0,0.227,0.164,0.345,0.325,0.345h0.232l0.074-0.213c0.016-0.001,0.035-0.002,0.06-0.003l0.112-0.003v0.855
|
||||
c0,0.19,0,0.372-0.006,0.49c-0.163,0.052-0.238,0.181-0.238,0.305c0,0.163,0.122,0.328,0.356,0.328
|
||||
c0.068,0,0.157-0.002,0.234-0.005l0.124-0.003l0.126,0.003c0.089,0.002,0.203,0.005,0.319,0.005c0.229,0,0.354-0.169,0.354-0.328
|
||||
c0-0.148-0.108-0.304-0.309-0.321c-0.006-0.127-0.006-0.297-0.006-0.474v-0.856l0.052,0.001c0.026,0,0.047,0.002,0.064,0.004
|
||||
c0.058,0.192,0.214,0.243,0.311,0.243c0.141,0,0.302-0.098,0.325-0.314c0.001-0.068,0.004-0.137,0.006-0.202l0.003-0.158
|
||||
c0-0.284-0.211-0.359-0.322-0.359c-0.041,0-0.074,0.007-0.116,0.016c-0.041,0.006-0.089,0.013-0.156,0.013h-1.124
|
||||
c-0.084,0-0.18-0.005-0.253-0.013C19.338,24.327,19.285,24.303,19.213,24.303L19.213,24.303z"/>
|
||||
<path fill="#B5AFA0" d="M17.826,24.303c-0.966,0-1.472,0.71-1.472,1.412c0,0.702,0.496,1.413,1.443,1.413
|
||||
c0.854,0,1.475-0.615,1.475-1.463C19.272,24.85,18.691,24.303,17.826,24.303L17.826,24.303z M17.917,26.386
|
||||
c-0.421,0-0.571-0.409-0.571-0.759c0-0.588,0.29-0.588,0.398-0.588c0.317,0,0.531,0.293,0.531,0.73
|
||||
C18.275,26.051,18.213,26.386,17.917,26.386L17.917,26.386z"/>
|
||||
<path fill="#B5AFA0" d="M15.193,24.303c-0.966,0-1.472,0.71-1.472,1.412c0,0.702,0.496,1.413,1.443,1.413
|
||||
c0.854,0,1.475-0.615,1.475-1.463C16.64,24.85,16.059,24.303,15.193,24.303L15.193,24.303z M15.284,26.386
|
||||
c-0.421,0-0.571-0.409-0.571-0.759c0-0.588,0.29-0.588,0.398-0.588c0.317,0,0.531,0.293,0.531,0.73
|
||||
C15.643,26.051,15.58,26.386,15.284,26.386L15.284,26.386z"/>
|
||||
<path fill="#B5AFA0" d="M13.611,24.343c-0.064,0-0.151,0.002-0.228,0.005l-0.129,0.003l-0.13-0.003
|
||||
c-0.084-0.002-0.186-0.005-0.279-0.005c-0.225,0-0.328,0.141-0.353,0.264c-0.025-0.123-0.128-0.264-0.353-0.264
|
||||
c-0.065,0-0.153,0.002-0.23,0.005l-0.127,0.003l-0.13-0.003c-0.084-0.002-0.186-0.005-0.279-0.005
|
||||
c-0.264,0-0.359,0.194-0.359,0.325c0,0.143,0.1,0.294,0.286,0.321c0.001,0.084,0.001,0.212,0.001,0.477v0.5
|
||||
c0,0.19,0,0.373-0.006,0.49c-0.163,0.052-0.238,0.181-0.238,0.305c0,0.163,0.122,0.328,0.356,0.328
|
||||
c0.067,0,0.156-0.002,0.233-0.005l0.125-0.003l0.126,0.003c0.089,0.002,0.201,0.005,0.316,0.005c0.177,0,0.292-0.099,0.336-0.216
|
||||
c0.044,0.119,0.159,0.216,0.34,0.216c0.065,0,0.153-0.002,0.229-0.005l0.125-0.003l0.128,0.003
|
||||
c0.089,0.002,0.201,0.005,0.315,0.005c0.231,0,0.356-0.169,0.356-0.328c0-0.147-0.108-0.304-0.309-0.321
|
||||
c-0.006-0.127-0.006-0.297-0.006-0.474v-0.5c0-0.282,0-0.408,0.001-0.488c0.165-0.048,0.243-0.18,0.243-0.31
|
||||
C13.971,24.537,13.875,24.343,13.611,24.343L13.611,24.343z M12.255,24.978c0.137-0.041,0.214-0.138,0.236-0.245
|
||||
c0.024,0.123,0.119,0.233,0.279,0.256c0.001,0.057,0.001,0.133,0.002,0.256h-0.519C12.254,25.11,12.254,25.033,12.255,24.978
|
||||
L12.255,24.978z M12.254,25.998h0.519c0,0.179,0,0.347-0.006,0.457c-0.114,0.036-0.185,0.111-0.217,0.195
|
||||
c-0.04-0.107-0.138-0.199-0.289-0.211C12.254,26.32,12.254,26.163,12.254,25.998L12.254,25.998z"/>
|
||||
<path fill="#B5AFA0" d="M10.452,24.303c-0.554,0-0.955,0.352-0.955,0.836c0,0.293,0.123,0.542,0.395,0.791
|
||||
c-0.035-0.012-0.071-0.018-0.106-0.018c-0.115,0-0.314,0.074-0.333,0.354c-0.003,0.049-0.014,0.228-0.014,0.392
|
||||
c0,0.067,0,0.27,0.233,0.372c0.155,0.068,0.32,0.099,0.534,0.099c0.241,0,0.441-0.053,0.613-0.164
|
||||
c0.258-0.169,0.404-0.44,0.404-0.747c0-0.36-0.172-0.607-0.393-0.807c0.033,0,0.329-0.018,0.329-0.385
|
||||
c0-0.147,0.005-0.229,0.008-0.276l0-0.009l0.002-0.056c0-0.135-0.086-0.288-0.28-0.328C10.815,24.337,10.667,24.303,10.452,24.303
|
||||
L10.452,24.303z M10.245,26.392c-0.097,0-0.108-0.039-0.119-0.072c-0.008-0.027-0.013-0.056-0.013-0.064
|
||||
c0-0.069-0.017-0.128-0.044-0.178l0.092,0.072c0.164,0.128,0.164,0.178,0.164,0.218C10.323,26.375,10.299,26.392,10.245,26.392
|
||||
L10.245,26.392z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#EEE8D8" d="M16.152,16.337c-0.093,0-0.181-0.036-0.247-0.102l-2.101-2.1c-0.064-0.065-0.102-0.153-0.102-0.247
|
||||
c0-0.093,0.037-0.181,0.103-0.247l2.1-2.1c0.066-0.066,0.154-0.102,0.247-0.102s0.181,0.036,0.246,0.102l2.101,2.1
|
||||
c0.066,0.066,0.103,0.154,0.103,0.247c0,0.094-0.036,0.182-0.104,0.248l-2.1,2.1C16.333,16.301,16.245,16.337,16.152,16.337z"/>
|
||||
<path fill="none" d="M18.305,13.939l-2.101,2.101c-0.029,0.028-0.075,0.028-0.104,0l-2.1-2.101c-0.028-0.028-0.028-0.074,0-0.103
|
||||
l2.1-2.1c0.028-0.028,0.074-0.028,0.104,0l2.101,2.1C18.332,13.865,18.332,13.911,18.305,13.939z"/>
|
||||
<path fill="#B5AFA0" d="M7.621,13.089l0.038-0.311c0.486-3.856,3.52-6.881,7.377-7.355l0.31-0.038v1.91L15.11,7.33
|
||||
c-2.835,0.419-5.114,2.691-5.544,5.524l-0.035,0.235H7.621z"/>
|
||||
<path fill="#4D4846" d="M15.07,7.056v-1.36c-3.72,0.458-6.669,3.399-7.137,7.116h1.359C9.743,9.842,12.097,7.496,15.07,7.056z"/>
|
||||
<path fill="#B5AFA0" d="M22.635,13.088l-0.036-0.234c-0.424-2.796-2.58-5.004-5.367-5.494l-0.228-0.041V5.4l0.316,0.046
|
||||
c3.756,0.548,6.711,3.563,7.186,7.332l0.039,0.311H22.635z"/>
|
||||
<path fill="#4D4846" d="M17.28,5.72v1.368c2.886,0.508,5.151,2.816,5.591,5.725h1.361C23.771,9.157,20.912,6.25,17.28,5.72z"/>
|
||||
<path fill="#B5AFA0" d="M16.957,20.384l0.23-0.039c2.77-0.468,4.938-2.643,5.396-5.414l0.038-0.231h1.916l-0.043,0.314
|
||||
c-0.514,3.74-3.483,6.718-7.223,7.242L16.957,22.3V20.384z"/>
|
||||
<path fill="#4D4846" d="M17.233,20.617v1.366c3.624-0.509,6.488-3.379,6.986-7.007h-1.364
|
||||
C22.38,17.856,20.111,20.131,17.233,20.617z"/>
|
||||
<path fill="#B5AFA0" d="M15.036,22.274c-3.813-0.469-6.841-3.455-7.364-7.26L7.629,14.7h1.916l0.037,0.231
|
||||
c0.468,2.832,2.69,5.017,5.528,5.436l0.235,0.035v1.911L15.036,22.274z"/>
|
||||
<path fill="#4D4846" d="M9.311,14.976H7.945c0.504,3.673,3.436,6.571,7.125,7.025v-1.36C12.127,20.205,9.794,17.903,9.311,14.976z"
|
||||
/>
|
||||
<path fill="#B5AFA0" d="M10.455,13.089l0.067-0.331c0.45-2.229,2.258-4,4.499-4.405l0.324-0.058v1.767l-0.097,0.083
|
||||
c-1.173,0.997-2.067,1.956-2.884,2.854l-0.082,0.091H10.455z"/>
|
||||
<path fill="#4D4846" d="M15.07,9.934V8.625c-2.146,0.388-3.847,2.057-4.277,4.188h1.368C13.069,11.812,13.935,10.897,15.07,9.934z"
|
||||
/>
|
||||
<path fill="#B5AFA0" d="M19.735,13.089l-0.04-0.147c-0.24-0.277-1.706-1.866-2.601-2.667l-0.091-0.083V8.337l0.34,0.083
|
||||
c2.112,0.508,3.754,2.211,4.185,4.338l0.067,0.331L19.735,13.089z"/>
|
||||
<path fill="#4D4846" d="M17.28,8.688v1.38c1,0.898,2.659,2.714,2.666,2.745h1.312C20.847,10.782,19.283,9.17,17.28,8.688z"/>
|
||||
<path fill="#B5AFA0" d="M15.021,19.4c-2.259-0.408-4.021-2.123-4.491-4.367L10.461,14.7h1.792l0.082,0.087
|
||||
c0.84,0.895,3.011,2.917,3.011,2.917v1.756L15.021,19.4z"/>
|
||||
<path fill="#4D4846" d="M12.134,14.976h-1.333c0.442,2.114,2.135,3.767,4.27,4.152v-1.302
|
||||
C15.036,17.818,13.053,15.955,12.134,14.976z"/>
|
||||
<path fill="#B5AFA0" d="M16.957,17.628c0,0,2.515-2.518,2.727-2.776l0.043-0.153h1.863l-0.07,0.333
|
||||
c-0.445,2.128-2.103,3.822-4.224,4.313l-0.339,0.078V17.628z"/>
|
||||
<path fill="#4D4846" d="M17.233,17.756v1.32c2.015-0.466,3.591-2.071,4.017-4.101h-1.313C19.92,15.035,17.26,17.748,17.233,17.756z
|
||||
"/>
|
||||
<path fill="#B5AFA0" d="M16.152,16.337c-0.093,0-0.181-0.036-0.247-0.102l-2.101-2.1c-0.064-0.065-0.102-0.153-0.102-0.247
|
||||
c0-0.093,0.037-0.181,0.103-0.247l2.1-2.1c0.066-0.066,0.154-0.102,0.247-0.102s0.181,0.036,0.246,0.102l2.101,2.1
|
||||
c0.066,0.066,0.103,0.154,0.103,0.247c0,0.094-0.036,0.182-0.104,0.248l-2.1,2.1C16.333,16.301,16.245,16.337,16.152,16.337z"/>
|
||||
<path fill="#4D4846" d="M16.204,11.736c-0.029-0.028-0.075-0.028-0.104,0l-2.1,2.1c-0.028,0.029-0.028,0.074,0,0.103l2.1,2.101
|
||||
c0.028,0.028,0.074,0.028,0.104,0l2.101-2.101c0.027-0.028,0.027-0.074,0-0.103L16.204,11.736z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path fill="#231D13" d="M9.791,26.754c-0.046-0.02-0.054-0.034-0.054-0.097c0-0.156,0.011-0.326,0.014-0.372
|
||||
c0.003-0.043,0.012-0.074,0.034-0.074c0.025,0,0.028,0.026,0.028,0.048c0,0.037,0.012,0.097,0.025,0.145
|
||||
c0.063,0.21,0.23,0.287,0.406,0.287c0.255,0,0.38-0.173,0.38-0.324c0-0.139-0.042-0.27-0.278-0.454l-0.13-0.102
|
||||
c-0.313-0.244-0.42-0.443-0.42-0.673c0-0.312,0.261-0.536,0.655-0.536c0.185,0,0.304,0.028,0.377,0.048
|
||||
c0.026,0.005,0.04,0.014,0.04,0.034c0,0.037-0.011,0.12-0.011,0.341c0,0.063-0.009,0.085-0.031,0.085
|
||||
c-0.021,0-0.029-0.017-0.029-0.051c0-0.026-0.014-0.114-0.073-0.188c-0.043-0.054-0.125-0.139-0.31-0.139
|
||||
c-0.21,0-0.338,0.122-0.338,0.292c0,0.13,0.065,0.23,0.301,0.409l0.08,0.06c0.343,0.258,0.465,0.454,0.465,0.724
|
||||
c0,0.165-0.063,0.36-0.267,0.494c-0.142,0.091-0.301,0.116-0.451,0.116C10.041,26.828,9.913,26.808,9.791,26.754z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#231D13" d="M13.056,25.545c0.008,0,0.017-0.006,0.017-0.02v-0.06c0-0.432,0-0.511-0.006-0.602
|
||||
c-0.006-0.097-0.028-0.142-0.122-0.162c-0.022-0.005-0.07-0.008-0.11-0.008c-0.031,0-0.049-0.006-0.049-0.026
|
||||
c0-0.02,0.021-0.025,0.06-0.025c0.153,0,0.332,0.009,0.409,0.009c0.068,0,0.247-0.009,0.357-0.009c0.04,0,0.06,0.006,0.06,0.025
|
||||
c0,0.02-0.017,0.026-0.051,0.026c-0.022,0-0.049,0.003-0.082,0.008c-0.077,0.014-0.1,0.063-0.105,0.162
|
||||
c-0.006,0.091-0.006,0.17-0.006,0.602v0.5c0,0.261,0,0.485,0.015,0.607c0.009,0.079,0.025,0.142,0.11,0.153
|
||||
c0.04,0.005,0.103,0.011,0.145,0.011c0.031,0,0.046,0.008,0.046,0.022c0,0.02-0.022,0.028-0.057,0.028
|
||||
c-0.185,0-0.363-0.008-0.443-0.008c-0.065,0-0.244,0.008-0.354,0.008c-0.04,0-0.06-0.008-0.06-0.028
|
||||
c0-0.014,0.012-0.022,0.046-0.022c0.042,0,0.076-0.006,0.102-0.011c0.057-0.012,0.071-0.074,0.082-0.156
|
||||
c0.015-0.119,0.015-0.343,0.015-0.604v-0.25c0-0.011-0.009-0.017-0.017-0.017h-1.085c-0.008,0-0.017,0.003-0.017,0.017v0.25
|
||||
c0,0.261,0,0.485,0.014,0.607c0.009,0.079,0.026,0.142,0.111,0.153c0.039,0.005,0.102,0.011,0.145,0.011
|
||||
c0.031,0,0.045,0.008,0.045,0.022c0,0.02-0.022,0.028-0.057,0.028c-0.185,0-0.363-0.008-0.442-0.008
|
||||
c-0.065,0-0.244,0.008-0.357,0.008c-0.037,0-0.057-0.008-0.057-0.028c0-0.014,0.011-0.022,0.045-0.022
|
||||
c0.043,0,0.077-0.006,0.103-0.011c0.057-0.012,0.07-0.074,0.082-0.156c0.015-0.119,0.015-0.343,0.015-0.604v-0.5
|
||||
c0-0.432,0-0.511-0.006-0.602c-0.006-0.097-0.028-0.142-0.122-0.162c-0.022-0.005-0.071-0.008-0.111-0.008
|
||||
c-0.03,0-0.048-0.006-0.048-0.026c0-0.02,0.02-0.025,0.06-0.025c0.153,0,0.332,0.009,0.409,0.009c0.067,0,0.246-0.009,0.357-0.009
|
||||
c0.04,0,0.06,0.006,0.06,0.025c0,0.02-0.018,0.026-0.051,0.026c-0.023,0-0.049,0.003-0.083,0.008
|
||||
c-0.076,0.014-0.099,0.063-0.104,0.162c-0.006,0.091-0.006,0.17-0.006,0.602v0.06c0,0.014,0.009,0.02,0.017,0.02H13.056z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#231D13" d="M14.021,25.715c0-0.485,0.32-1.112,1.172-1.112c0.707,0,1.146,0.412,1.146,1.062s-0.454,1.164-1.175,1.164
|
||||
C14.351,26.828,14.021,26.218,14.021,25.715z M15.942,25.77c0-0.636-0.366-1.03-0.831-1.03c-0.326,0-0.698,0.182-0.698,0.888
|
||||
c0,0.59,0.326,1.059,0.871,1.059C15.483,26.686,15.942,26.59,15.942,25.77z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#231D13" d="M16.654,25.715c0-0.485,0.32-1.112,1.172-1.112c0.707,0,1.146,0.412,1.146,1.062s-0.454,1.164-1.175,1.164
|
||||
C16.983,26.828,16.654,26.218,16.654,25.715z M18.575,25.77c0-0.636-0.366-1.03-0.831-1.03c-0.326,0-0.698,0.182-0.698,0.888
|
||||
c0,0.59,0.326,1.059,0.871,1.059C18.116,26.686,18.575,26.59,18.575,25.77z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#231D13" d="M19.922,24.802l-0.423,0.011c-0.164,0.006-0.232,0.02-0.275,0.083c-0.028,0.042-0.042,0.076-0.048,0.099
|
||||
c-0.006,0.022-0.015,0.034-0.031,0.034c-0.021,0-0.025-0.014-0.025-0.045c0-0.045,0.054-0.304,0.06-0.327
|
||||
c0.008-0.037,0.017-0.054,0.034-0.054c0.022,0,0.051,0.028,0.122,0.034c0.082,0.008,0.189,0.014,0.283,0.014h1.124
|
||||
c0.091,0,0.153-0.009,0.196-0.014c0.042-0.009,0.064-0.014,0.076-0.014c0.02,0,0.022,0.017,0.022,0.06
|
||||
c0,0.06-0.008,0.255-0.008,0.329c-0.003,0.028-0.009,0.045-0.026,0.045c-0.022,0-0.028-0.014-0.031-0.057l-0.002-0.031
|
||||
c-0.006-0.074-0.083-0.153-0.335-0.159l-0.358-0.008v1.164c0,0.261,0,0.485,0.015,0.607c0.009,0.079,0.025,0.142,0.11,0.153
|
||||
c0.04,0.005,0.103,0.011,0.146,0.011c0.03,0,0.045,0.008,0.045,0.022c0,0.02-0.022,0.028-0.054,0.028
|
||||
c-0.188,0-0.366-0.008-0.445-0.008c-0.065,0-0.244,0.008-0.358,0.008c-0.036,0-0.057-0.008-0.057-0.028
|
||||
c0-0.014,0.012-0.022,0.046-0.022c0.042,0,0.076-0.006,0.102-0.011c0.057-0.012,0.074-0.074,0.083-0.156
|
||||
c0.014-0.119,0.014-0.343,0.014-0.604V24.802z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#231D13" d="M21.404,26.754c-0.046-0.02-0.054-0.034-0.054-0.097c0-0.156,0.011-0.326,0.014-0.372
|
||||
c0.003-0.043,0.012-0.074,0.034-0.074c0.025,0,0.028,0.026,0.028,0.048c0,0.037,0.012,0.097,0.025,0.145
|
||||
c0.063,0.21,0.23,0.287,0.406,0.287c0.255,0,0.38-0.173,0.38-0.324c0-0.139-0.042-0.27-0.278-0.454l-0.13-0.102
|
||||
c-0.313-0.244-0.42-0.443-0.42-0.673c0-0.312,0.261-0.536,0.655-0.536c0.185,0,0.304,0.028,0.377,0.048
|
||||
c0.026,0.005,0.04,0.014,0.04,0.034c0,0.037-0.011,0.12-0.011,0.341c0,0.063-0.009,0.085-0.031,0.085
|
||||
c-0.021,0-0.029-0.017-0.029-0.051c0-0.026-0.014-0.114-0.073-0.188c-0.043-0.054-0.125-0.139-0.31-0.139
|
||||
c-0.21,0-0.338,0.122-0.338,0.292c0,0.13,0.065,0.23,0.301,0.409l0.08,0.06c0.343,0.258,0.465,0.454,0.465,0.724
|
||||
c0,0.165-0.063,0.36-0.267,0.494c-0.142,0.091-0.301,0.116-0.451,0.116C21.654,26.828,21.526,26.808,21.404,26.754z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#231D13" d="M9.328,9.176c-0.446,0.645-0.803,1.356-1.052,2.117h1.433c0.316-0.789,0.773-1.505,1.342-2.117H9.328z"/>
|
||||
<path fill="#231D13" d="M15.07,5.696c-1.945,0.24-3.679,1.159-4.959,2.513h2.055c0.849-0.59,1.836-0.995,2.904-1.153V5.696z"/>
|
||||
<path fill="#231D13" d="M17.28,5.72v1.368c0.997,0.176,1.92,0.566,2.719,1.122h2.056C20.815,6.898,19.15,5.993,17.28,5.72z"/>
|
||||
<path fill="#231D13" d="M21.112,9.176c0.569,0.612,1.028,1.328,1.346,2.117h1.432c-0.249-0.761-0.604-1.473-1.052-2.117H21.112z"/>
|
||||
<path fill="#231D13" d="M17.233,21.983c1.613-0.227,3.076-0.922,4.247-1.944h-2.429c-0.567,0.272-1.178,0.47-1.818,0.578V21.983z"
|
||||
/>
|
||||
<path fill="#231D13" d="M22.56,16.127c-0.274,0.78-0.686,1.495-1.204,2.117h1.666c0.412-0.65,0.735-1.361,0.954-2.117H22.56z"/>
|
||||
<path fill="#231D13" d="M15.07,20.64c-0.691-0.102-1.35-0.309-1.957-0.601h-2.427c1.204,1.05,2.716,1.756,4.384,1.961V20.64z"/>
|
||||
<path fill="#231D13" d="M8.191,16.126c0.217,0.756,0.541,1.468,0.953,2.118h1.666c-0.519-0.622-0.93-1.337-1.205-2.118H8.191z"/>
|
||||
<path fill="#231D13" d="M15.07,9.176h-1.571c-0.902,0.485-1.649,1.222-2.146,2.117h2.244c0.453-0.452,0.932-0.9,1.473-1.36V9.176z"
|
||||
/>
|
||||
<path fill="#231D13" d="M18.549,9.176H17.28v0.892c0.367,0.33,0.822,0.783,1.252,1.226h2.163
|
||||
C20.198,10.398,19.452,9.662,18.549,9.176z"/>
|
||||
<path fill="#231D13" d="M13.274,16.127l-2.091,0c0.397,0.853,1.015,1.582,1.776,2.118h2.11v-0.418
|
||||
C15.048,17.821,14.144,16.977,13.274,16.127z"/>
|
||||
<path fill="#231D13" d="M20.865,16.127h-2.024c-0.743,0.763-1.593,1.625-1.607,1.629v0.488h1.855
|
||||
C19.852,17.708,20.468,16.979,20.865,16.127z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#231D13" d="M15.07,5.943V5.696c-3.72,0.458-6.669,3.399-7.137,7.116h0.3C8.769,9.282,11.546,6.496,15.07,5.943z"/>
|
||||
<path fill="#231D13" d="M20.343,8.479c1.327,1.054,2.264,2.58,2.528,4.333h0.218C22.764,11.031,21.758,9.495,20.343,8.479z"/>
|
||||
<path fill="#231D13" d="M17.546,5.923c1.316,0.192,2.526,0.705,3.563,1.444c-1.093-0.849-2.396-1.438-3.828-1.647v1.368
|
||||
c0.091,0.016,0.176,0.049,0.266,0.069V5.923z"/>
|
||||
<path fill="#231D13" d="M23.121,15.179h1.054c0.011-0.069,0.035-0.133,0.045-0.203h-1.364c-0.476,2.881-2.744,5.156-5.622,5.641
|
||||
v1.366c0.091-0.013,0.176-0.044,0.266-0.06V20.82C20.377,20.334,22.646,18.06,23.121,15.179z"/>
|
||||
<path fill="#231D13" d="M8.211,15.179h1.15c-0.014-0.069-0.039-0.133-0.051-0.203H7.945c0.316,2.304,1.588,4.301,3.401,5.583
|
||||
C9.677,19.274,8.511,17.367,8.211,15.179z"/>
|
||||
<path fill="#231D13" d="M15.07,20.64c-1.068-0.158-2.053-0.568-2.9-1.159c0.836,0.645,1.822,1.096,2.9,1.3V20.64z"/>
|
||||
<path fill="#231D13" d="M15.07,8.897V8.625c-2.146,0.388-3.847,2.057-4.277,4.188h0.323C11.59,10.871,13.121,9.355,15.07,8.897z"/>
|
||||
<path fill="#231D13" d="M17.546,10.271v-1.38c0.687,0.166,1.316,0.472,1.871,0.874c-0.614-0.507-1.338-0.885-2.137-1.077v1.38"/>
|
||||
<path fill="#231D13" d="M11.066,15.179h1.263c-0.065-0.068-0.138-0.142-0.195-0.203h-1.333c0.284,1.357,1.087,2.519,2.188,3.283
|
||||
C12.027,17.498,11.326,16.423,11.066,15.179z"/>
|
||||
<path fill="#231D13" d="M20.202,15.179h0.989c0.018-0.068,0.044-0.133,0.059-0.203h-1.313c-0.017,0.059-2.677,2.772-2.703,2.781
|
||||
v1.32c0.091-0.021,0.177-0.057,0.266-0.082v-1.035"/>
|
||||
<path fill="#231D13" d="M14.267,14.04l2.1-2.1c0.011-0.011,0.026,0.002,0.041,0l-0.203-0.203c-0.029-0.028-0.075-0.028-0.104,0
|
||||
l-2.1,2.1c-0.028,0.029-0.028,0.074,0,0.103l2.1,2.101c0.017,0.017,0.04,0.003,0.063,0l-1.896-1.897
|
||||
C14.238,14.114,14.238,14.068,14.267,14.04z"/>
|
||||
<path fill="#231D13" d="M19.417,9.765"/>
|
||||
</g>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<path fill="#4D4846" d="M4.237,30.16l-0.001-1.773L4.237,30.16c-0.632,0-1.224-0.246-1.669-0.693
|
||||
c-0.444-0.446-0.688-1.039-0.686-1.669V3.964c0-1.298,1.056-2.354,2.354-2.354l23.841,0c0.631,0,1.224,0.246,1.669,0.692
|
||||
c0.444,0.446,0.688,1.039,0.686,1.669v23.835c0,1.298-1.056,2.354-2.354,2.354H4.237z"/>
|
||||
<path fill="#231D13" d="M3.941,29.273v-0.029c-0.28-0.057-0.539-0.195-0.745-0.402c-0.276-0.278-0.429-0.648-0.427-1.041V3.964
|
||||
c0-0.81,0.657-1.468,1.467-1.468l23.841,0c0.394,0,0.764,0.153,1.041,0.432c0.276,0.278,0.429,0.647,0.427,1.041v23.837
|
||||
c0,0.81-0.657,1.468-1.467,1.468H3.941z"/>
|
||||
<path fill="#EEE8D8" d="M4.237,28.978l-0.001-0.591L4.237,28.978c-0.315,0-0.609-0.122-0.832-0.345
|
||||
c-0.221-0.222-0.343-0.518-0.341-0.831V3.964c0-0.646,0.525-1.172,1.172-1.172l23.841,0c0.313,0,0.609,0.122,0.832,0.345
|
||||
c0.221,0.222,0.343,0.518,0.342,0.831v23.838c0,0.646-0.526,1.172-1.173,1.172H4.237z"/>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="16.1577" y1="3.2583" x2="16.1577" y2="28.5112">
|
||||
<stop offset="0" style="stop-color:#B2A38B"/>
|
||||
<stop offset="0.2701" style="stop-color:#B0A289"/>
|
||||
<stop offset="0.4539" style="stop-color:#AB9F86"/>
|
||||
<stop offset="0.612" style="stop-color:#A39B81"/>
|
||||
<stop offset="0.7556" style="stop-color:#999579"/>
|
||||
<stop offset="0.8881" style="stop-color:#8A8B6E"/>
|
||||
<stop offset="1" style="stop-color:#797E61"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_1_)" d="M28.196,3.258c0.325,0,0.589,0.263,0.588,0.588v24.077c0,0.325-0.263,0.587-0.587,0.587H4.118
|
||||
c-0.324,0.001-0.589-0.262-0.587-0.588V3.846c0-0.326,0.262-0.588,0.587-0.587L28.196,3.258z"/>
|
||||
<g>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="5.8398" y1="28.5112" x2="5.8398" y2="3.2588">
|
||||
<stop offset="0" style="stop-color:#B2A38B"/>
|
||||
<stop offset="0.1227" style="stop-color:#ADA087"/>
|
||||
<stop offset="0.295" style="stop-color:#A49A81"/>
|
||||
<stop offset="0.4965" style="stop-color:#948F75"/>
|
||||
<stop offset="0.7203" style="stop-color:#7D7C63"/>
|
||||
<stop offset="0.9598" style="stop-color:#5F634C"/>
|
||||
<stop offset="1" style="stop-color:#5A5E47"/>
|
||||
</linearGradient>
|
||||
<rect x="5.741" y="3.259" fill="url(#SVGID_2_)" width="0.197" height="25.252"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="8.105" y1="28.5112" x2="8.105" y2="3.2588">
|
||||
<stop offset="0" style="stop-color:#B2A38B"/>
|
||||
<stop offset="0.1227" style="stop-color:#ADA087"/>
|
||||
<stop offset="0.295" style="stop-color:#A49A81"/>
|
||||
<stop offset="0.4965" style="stop-color:#948F75"/>
|
||||
<stop offset="0.7203" style="stop-color:#7D7C63"/>
|
||||
<stop offset="0.9598" style="stop-color:#5F634C"/>
|
||||
<stop offset="1" style="stop-color:#5A5E47"/>
|
||||
</linearGradient>
|
||||
<rect x="8.007" y="3.259" fill="url(#SVGID_3_)" width="0.196" height="25.252"/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="12.7832" y1="28.5112" x2="12.7832" y2="3.2588">
|
||||
<stop offset="0" style="stop-color:#B2A38B"/>
|
||||
<stop offset="0.1227" style="stop-color:#ADA087"/>
|
||||
<stop offset="0.295" style="stop-color:#A49A81"/>
|
||||
<stop offset="0.4965" style="stop-color:#948F75"/>
|
||||
<stop offset="0.7203" style="stop-color:#7D7C63"/>
|
||||
<stop offset="0.9598" style="stop-color:#5F634C"/>
|
||||
<stop offset="1" style="stop-color:#5A5E47"/>
|
||||
</linearGradient>
|
||||
<rect x="12.685" y="3.259" fill="url(#SVGID_4_)" width="0.197" height="25.252"/>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="18.249" y1="28.5112" x2="18.249" y2="3.2588">
|
||||
<stop offset="0" style="stop-color:#B2A38B"/>
|
||||
<stop offset="0.1227" style="stop-color:#ADA087"/>
|
||||
<stop offset="0.295" style="stop-color:#A49A81"/>
|
||||
<stop offset="0.4965" style="stop-color:#948F75"/>
|
||||
<stop offset="0.7203" style="stop-color:#7D7C63"/>
|
||||
<stop offset="0.9598" style="stop-color:#5F634C"/>
|
||||
<stop offset="1" style="stop-color:#5A5E47"/>
|
||||
</linearGradient>
|
||||
<rect x="18.15" y="3.259" fill="url(#SVGID_5_)" width="0.197" height="25.252"/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="19.481" y1="28.5112" x2="19.481" y2="3.2588">
|
||||
<stop offset="0" style="stop-color:#B2A38B"/>
|
||||
<stop offset="0.1227" style="stop-color:#ADA087"/>
|
||||
<stop offset="0.295" style="stop-color:#A49A81"/>
|
||||
<stop offset="0.4965" style="stop-color:#948F75"/>
|
||||
<stop offset="0.7203" style="stop-color:#7D7C63"/>
|
||||
<stop offset="0.9598" style="stop-color:#5F634C"/>
|
||||
<stop offset="1" style="stop-color:#5A5E47"/>
|
||||
</linearGradient>
|
||||
<rect x="19.383" y="3.259" fill="url(#SVGID_6_)" width="0.196" height="25.252"/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="23.9121" y1="28.5112" x2="23.9121" y2="3.2588">
|
||||
<stop offset="0" style="stop-color:#B2A38B"/>
|
||||
<stop offset="0.1227" style="stop-color:#ADA087"/>
|
||||
<stop offset="0.295" style="stop-color:#A49A81"/>
|
||||
<stop offset="0.4965" style="stop-color:#948F75"/>
|
||||
<stop offset="0.7203" style="stop-color:#7D7C63"/>
|
||||
<stop offset="0.9598" style="stop-color:#5F634C"/>
|
||||
<stop offset="1" style="stop-color:#5A5E47"/>
|
||||
</linearGradient>
|
||||
<rect x="23.813" y="3.259" fill="url(#SVGID_7_)" width="0.197" height="25.252"/>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="26.7686" y1="28.5112" x2="26.7686" y2="3.2588">
|
||||
<stop offset="0" style="stop-color:#B2A38B"/>
|
||||
<stop offset="0.1227" style="stop-color:#ADA087"/>
|
||||
<stop offset="0.295" style="stop-color:#A49A81"/>
|
||||
<stop offset="0.4965" style="stop-color:#948F75"/>
|
||||
<stop offset="0.7203" style="stop-color:#7D7C63"/>
|
||||
<stop offset="0.9598" style="stop-color:#5F634C"/>
|
||||
<stop offset="1" style="stop-color:#5A5E47"/>
|
||||
</linearGradient>
|
||||
<rect x="26.67" y="3.259" fill="url(#SVGID_8_)" width="0.197" height="25.252"/>
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="27.5195" y1="28.5112" x2="27.5195" y2="3.2588">
|
||||
<stop offset="0" style="stop-color:#B2A38B"/>
|
||||
<stop offset="0.1227" style="stop-color:#ADA087"/>
|
||||
<stop offset="0.295" style="stop-color:#A49A81"/>
|
||||
<stop offset="0.4965" style="stop-color:#948F75"/>
|
||||
<stop offset="0.7203" style="stop-color:#7D7C63"/>
|
||||
<stop offset="0.9598" style="stop-color:#5F634C"/>
|
||||
<stop offset="1" style="stop-color:#5A5E47"/>
|
||||
</linearGradient>
|
||||
<rect x="27.421" y="3.259" fill="url(#SVGID_9_)" width="0.197" height="25.252"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#B5AFA0" d="M22.065,24.303c-0.554,0-0.955,0.352-0.955,0.836c0,0.293,0.123,0.542,0.395,0.791
|
||||
c-0.035-0.012-0.071-0.018-0.106-0.018c-0.115,0-0.314,0.074-0.333,0.354c-0.003,0.049-0.014,0.228-0.014,0.392
|
||||
c0,0.067,0,0.27,0.233,0.372c0.155,0.068,0.32,0.099,0.534,0.099c0.241,0,0.441-0.053,0.613-0.164
|
||||
c0.258-0.169,0.404-0.44,0.404-0.747c0-0.36-0.172-0.607-0.393-0.807c0.033,0,0.329-0.018,0.329-0.385
|
||||
c0-0.147,0.005-0.229,0.008-0.276l0-0.009l0.002-0.056c0-0.135-0.086-0.288-0.28-0.328C22.429,24.337,22.281,24.303,22.065,24.303
|
||||
L22.065,24.303z M21.858,26.392c-0.097,0-0.108-0.039-0.119-0.072c-0.008-0.027-0.013-0.056-0.013-0.064
|
||||
c0-0.069-0.017-0.128-0.044-0.178l0.092,0.072c0.164,0.128,0.164,0.178,0.164,0.218C21.936,26.375,21.912,26.392,21.858,26.392
|
||||
L21.858,26.392z"/>
|
||||
<path fill="#B5AFA0" d="M19.213,24.303c-0.044,0-0.269,0.014-0.328,0.291v0c0,0-0.066,0.294-0.066,0.39
|
||||
c0,0.227,0.164,0.345,0.325,0.345h0.232l0.074-0.213c0.016-0.001,0.035-0.002,0.06-0.003l0.112-0.003v0.855
|
||||
c0,0.19,0,0.372-0.006,0.49c-0.163,0.052-0.238,0.181-0.238,0.305c0,0.163,0.122,0.328,0.356,0.328
|
||||
c0.068,0,0.157-0.002,0.234-0.005l0.124-0.003l0.126,0.003c0.089,0.002,0.203,0.005,0.319,0.005c0.229,0,0.354-0.169,0.354-0.328
|
||||
c0-0.148-0.108-0.304-0.309-0.321c-0.006-0.127-0.006-0.297-0.006-0.474v-0.856l0.052,0.001c0.026,0,0.047,0.002,0.064,0.004
|
||||
c0.058,0.192,0.214,0.243,0.311,0.243c0.141,0,0.302-0.098,0.325-0.314c0.001-0.068,0.004-0.137,0.006-0.202l0.003-0.158
|
||||
c0-0.284-0.211-0.359-0.322-0.359c-0.041,0-0.074,0.007-0.116,0.016c-0.041,0.006-0.089,0.013-0.156,0.013h-1.124
|
||||
c-0.084,0-0.18-0.005-0.253-0.013C19.338,24.327,19.285,24.303,19.213,24.303L19.213,24.303z"/>
|
||||
<path fill="#B5AFA0" d="M17.826,24.303c-0.966,0-1.472,0.71-1.472,1.412c0,0.702,0.496,1.413,1.443,1.413
|
||||
c0.854,0,1.475-0.615,1.475-1.463C19.272,24.85,18.691,24.303,17.826,24.303L17.826,24.303z M17.917,26.386
|
||||
c-0.421,0-0.571-0.409-0.571-0.759c0-0.588,0.29-0.588,0.398-0.588c0.317,0,0.531,0.293,0.531,0.73
|
||||
C18.275,26.051,18.213,26.386,17.917,26.386L17.917,26.386z"/>
|
||||
<path fill="#B5AFA0" d="M15.193,24.303c-0.966,0-1.472,0.71-1.472,1.412c0,0.702,0.496,1.413,1.443,1.413
|
||||
c0.854,0,1.475-0.615,1.475-1.463C16.64,24.85,16.059,24.303,15.193,24.303L15.193,24.303z M15.284,26.386
|
||||
c-0.421,0-0.571-0.409-0.571-0.759c0-0.588,0.29-0.588,0.398-0.588c0.317,0,0.531,0.293,0.531,0.73
|
||||
C15.643,26.051,15.58,26.386,15.284,26.386L15.284,26.386z"/>
|
||||
<path fill="#B5AFA0" d="M13.611,24.343c-0.064,0-0.151,0.002-0.228,0.005l-0.129,0.003l-0.13-0.003
|
||||
c-0.084-0.002-0.186-0.005-0.279-0.005c-0.225,0-0.328,0.141-0.353,0.264c-0.025-0.123-0.128-0.264-0.353-0.264
|
||||
c-0.065,0-0.153,0.002-0.23,0.005l-0.127,0.003l-0.13-0.003c-0.084-0.002-0.186-0.005-0.279-0.005
|
||||
c-0.264,0-0.359,0.194-0.359,0.325c0,0.143,0.1,0.294,0.286,0.321c0.001,0.084,0.001,0.212,0.001,0.477v0.5
|
||||
c0,0.19,0,0.373-0.006,0.49c-0.163,0.052-0.238,0.181-0.238,0.305c0,0.163,0.122,0.328,0.356,0.328
|
||||
c0.067,0,0.156-0.002,0.233-0.005l0.125-0.003l0.126,0.003c0.089,0.002,0.201,0.005,0.316,0.005c0.177,0,0.292-0.099,0.336-0.216
|
||||
c0.044,0.119,0.159,0.216,0.34,0.216c0.065,0,0.153-0.002,0.229-0.005l0.125-0.003l0.128,0.003
|
||||
c0.089,0.002,0.201,0.005,0.315,0.005c0.231,0,0.356-0.169,0.356-0.328c0-0.147-0.108-0.304-0.309-0.321
|
||||
c-0.006-0.127-0.006-0.297-0.006-0.474v-0.5c0-0.282,0-0.408,0.001-0.488c0.165-0.048,0.243-0.18,0.243-0.31
|
||||
C13.971,24.537,13.875,24.343,13.611,24.343L13.611,24.343z M12.255,24.978c0.137-0.041,0.214-0.138,0.236-0.245
|
||||
c0.024,0.123,0.119,0.233,0.279,0.256c0.001,0.057,0.001,0.133,0.002,0.256h-0.519C12.254,25.11,12.254,25.033,12.255,24.978
|
||||
L12.255,24.978z M12.254,25.998h0.519c0,0.179,0,0.347-0.006,0.457c-0.114,0.036-0.185,0.111-0.217,0.195
|
||||
c-0.04-0.107-0.138-0.199-0.289-0.211C12.254,26.32,12.254,26.163,12.254,25.998L12.254,25.998z"/>
|
||||
<path fill="#B5AFA0" d="M10.452,24.303c-0.554,0-0.955,0.352-0.955,0.836c0,0.293,0.123,0.542,0.395,0.791
|
||||
c-0.035-0.012-0.071-0.018-0.106-0.018c-0.115,0-0.314,0.074-0.333,0.354c-0.003,0.049-0.014,0.228-0.014,0.392
|
||||
c0,0.067,0,0.27,0.233,0.372c0.155,0.068,0.32,0.099,0.534,0.099c0.241,0,0.441-0.053,0.613-0.164
|
||||
c0.258-0.169,0.404-0.44,0.404-0.747c0-0.36-0.172-0.607-0.393-0.807c0.033,0,0.329-0.018,0.329-0.385
|
||||
c0-0.147,0.005-0.229,0.008-0.276l0-0.009l0.002-0.056c0-0.135-0.086-0.288-0.28-0.328C10.815,24.337,10.667,24.303,10.452,24.303
|
||||
L10.452,24.303z M10.245,26.392c-0.097,0-0.108-0.039-0.119-0.072c-0.008-0.027-0.013-0.056-0.013-0.064
|
||||
c0-0.069-0.017-0.128-0.044-0.178l0.092,0.072c0.164,0.128,0.164,0.178,0.164,0.218C10.323,26.375,10.299,26.392,10.245,26.392
|
||||
L10.245,26.392z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#EEE8D8" d="M16.152,16.337c-0.093,0-0.181-0.036-0.247-0.102l-2.101-2.1c-0.064-0.065-0.102-0.153-0.102-0.247
|
||||
c0-0.093,0.037-0.181,0.103-0.247l2.1-2.1c0.066-0.066,0.154-0.102,0.247-0.102s0.181,0.036,0.246,0.102l2.101,2.1
|
||||
c0.066,0.066,0.103,0.154,0.103,0.247c0,0.094-0.036,0.182-0.104,0.248l-2.1,2.1C16.333,16.301,16.245,16.337,16.152,16.337z"/>
|
||||
<path fill="none" d="M18.305,13.939l-2.101,2.101c-0.029,0.028-0.075,0.028-0.104,0l-2.1-2.101c-0.028-0.028-0.028-0.074,0-0.103
|
||||
l2.1-2.1c0.028-0.028,0.074-0.028,0.104,0l2.101,2.1C18.332,13.865,18.332,13.911,18.305,13.939z"/>
|
||||
<path fill="#B5AFA0" d="M7.621,13.089l0.038-0.311c0.486-3.856,3.52-6.881,7.377-7.355l0.31-0.038v1.91L15.11,7.33
|
||||
c-2.835,0.419-5.114,2.691-5.544,5.524l-0.035,0.235H7.621z"/>
|
||||
<path fill="#4D4846" d="M15.07,7.056v-1.36c-3.72,0.458-6.669,3.399-7.137,7.116h1.359C9.743,9.842,12.097,7.496,15.07,7.056z"/>
|
||||
<path fill="#B5AFA0" d="M22.635,13.088l-0.036-0.234c-0.424-2.796-2.58-5.004-5.367-5.494l-0.228-0.041V5.4l0.316,0.046
|
||||
c3.756,0.548,6.711,3.563,7.186,7.332l0.039,0.311H22.635z"/>
|
||||
<path fill="#4D4846" d="M17.28,5.72v1.368c2.886,0.508,5.151,2.816,5.591,5.725h1.361C23.771,9.157,20.912,6.25,17.28,5.72z"/>
|
||||
<path fill="#B5AFA0" d="M16.957,20.384l0.23-0.039c2.77-0.468,4.938-2.643,5.396-5.414l0.038-0.231h1.916l-0.043,0.314
|
||||
c-0.514,3.74-3.483,6.718-7.223,7.242L16.957,22.3V20.384z"/>
|
||||
<path fill="#4D4846" d="M17.233,20.617v1.366c3.624-0.509,6.488-3.379,6.986-7.007h-1.364
|
||||
C22.38,17.856,20.111,20.131,17.233,20.617z"/>
|
||||
<path fill="#B5AFA0" d="M15.036,22.274c-3.813-0.469-6.841-3.455-7.364-7.26L7.629,14.7h1.916l0.037,0.231
|
||||
c0.468,2.832,2.69,5.017,5.528,5.436l0.235,0.035v1.911L15.036,22.274z"/>
|
||||
<path fill="#4D4846" d="M9.311,14.976H7.945c0.504,3.673,3.436,6.571,7.125,7.025v-1.36C12.127,20.205,9.794,17.903,9.311,14.976z"
|
||||
/>
|
||||
<path fill="#B5AFA0" d="M10.455,13.089l0.067-0.331c0.45-2.229,2.258-4,4.499-4.405l0.324-0.058v1.767l-0.097,0.083
|
||||
c-1.173,0.997-2.067,1.956-2.884,2.854l-0.082,0.091H10.455z"/>
|
||||
<path fill="#4D4846" d="M15.07,9.934V8.625c-2.146,0.388-3.847,2.057-4.277,4.188h1.368C13.069,11.812,13.935,10.897,15.07,9.934z"
|
||||
/>
|
||||
<path fill="#B5AFA0" d="M19.735,13.089l-0.04-0.147c-0.24-0.277-1.706-1.866-2.601-2.667l-0.091-0.083V8.337l0.34,0.083
|
||||
c2.112,0.508,3.754,2.211,4.185,4.338l0.067,0.331L19.735,13.089z"/>
|
||||
<path fill="#4D4846" d="M17.28,8.688v1.38c1,0.898,2.659,2.714,2.666,2.745h1.312C20.847,10.782,19.283,9.17,17.28,8.688z"/>
|
||||
<path fill="#B5AFA0" d="M15.021,19.4c-2.259-0.408-4.021-2.123-4.491-4.367L10.461,14.7h1.792l0.082,0.087
|
||||
c0.84,0.895,3.011,2.917,3.011,2.917v1.756L15.021,19.4z"/>
|
||||
<path fill="#4D4846" d="M12.134,14.976h-1.333c0.442,2.114,2.135,3.767,4.27,4.152v-1.302
|
||||
C15.036,17.818,13.053,15.955,12.134,14.976z"/>
|
||||
<path fill="#B5AFA0" d="M16.957,17.628c0,0,2.515-2.518,2.727-2.776l0.043-0.153h1.863l-0.07,0.333
|
||||
c-0.445,2.128-2.103,3.822-4.224,4.313l-0.339,0.078V17.628z"/>
|
||||
<path fill="#4D4846" d="M17.233,17.756v1.32c2.015-0.466,3.591-2.071,4.017-4.101h-1.313C19.92,15.035,17.26,17.748,17.233,17.756z
|
||||
"/>
|
||||
<path fill="#B5AFA0" d="M16.152,16.337c-0.093,0-0.181-0.036-0.247-0.102l-2.101-2.1c-0.064-0.065-0.102-0.153-0.102-0.247
|
||||
c0-0.093,0.037-0.181,0.103-0.247l2.1-2.1c0.066-0.066,0.154-0.102,0.247-0.102s0.181,0.036,0.246,0.102l2.101,2.1
|
||||
c0.066,0.066,0.103,0.154,0.103,0.247c0,0.094-0.036,0.182-0.104,0.248l-2.1,2.1C16.333,16.301,16.245,16.337,16.152,16.337z"/>
|
||||
<path fill="#4D4846" d="M16.204,11.736c-0.029-0.028-0.075-0.028-0.104,0l-2.1,2.1c-0.028,0.029-0.028,0.074,0,0.103l2.1,2.101
|
||||
c0.028,0.028,0.074,0.028,0.104,0l2.101-2.101c0.027-0.028,0.027-0.074,0-0.103L16.204,11.736z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path fill="#231D13" d="M9.791,26.754c-0.046-0.02-0.054-0.034-0.054-0.097c0-0.156,0.011-0.326,0.014-0.372
|
||||
c0.003-0.043,0.012-0.074,0.034-0.074c0.025,0,0.028,0.026,0.028,0.048c0,0.037,0.012,0.097,0.025,0.145
|
||||
c0.063,0.21,0.23,0.287,0.406,0.287c0.255,0,0.38-0.173,0.38-0.324c0-0.139-0.042-0.27-0.278-0.454l-0.13-0.102
|
||||
c-0.313-0.244-0.42-0.443-0.42-0.673c0-0.312,0.261-0.536,0.655-0.536c0.185,0,0.304,0.028,0.377,0.048
|
||||
c0.026,0.005,0.04,0.014,0.04,0.034c0,0.037-0.011,0.12-0.011,0.341c0,0.063-0.009,0.085-0.031,0.085
|
||||
c-0.021,0-0.029-0.017-0.029-0.051c0-0.026-0.014-0.114-0.073-0.188c-0.043-0.054-0.125-0.139-0.31-0.139
|
||||
c-0.21,0-0.338,0.122-0.338,0.292c0,0.13,0.065,0.23,0.301,0.409l0.08,0.06c0.343,0.258,0.465,0.454,0.465,0.724
|
||||
c0,0.165-0.063,0.36-0.267,0.494c-0.142,0.091-0.301,0.116-0.451,0.116C10.041,26.828,9.913,26.808,9.791,26.754z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#231D13" d="M13.056,25.545c0.008,0,0.017-0.006,0.017-0.02v-0.06c0-0.432,0-0.511-0.006-0.602
|
||||
c-0.006-0.097-0.028-0.142-0.122-0.162c-0.022-0.005-0.07-0.008-0.11-0.008c-0.031,0-0.049-0.006-0.049-0.026
|
||||
c0-0.02,0.021-0.025,0.06-0.025c0.153,0,0.332,0.009,0.409,0.009c0.068,0,0.247-0.009,0.357-0.009c0.04,0,0.06,0.006,0.06,0.025
|
||||
c0,0.02-0.017,0.026-0.051,0.026c-0.022,0-0.049,0.003-0.082,0.008c-0.077,0.014-0.1,0.063-0.105,0.162
|
||||
c-0.006,0.091-0.006,0.17-0.006,0.602v0.5c0,0.261,0,0.485,0.015,0.607c0.009,0.079,0.025,0.142,0.11,0.153
|
||||
c0.04,0.005,0.103,0.011,0.145,0.011c0.031,0,0.046,0.008,0.046,0.022c0,0.02-0.022,0.028-0.057,0.028
|
||||
c-0.185,0-0.363-0.008-0.443-0.008c-0.065,0-0.244,0.008-0.354,0.008c-0.04,0-0.06-0.008-0.06-0.028
|
||||
c0-0.014,0.012-0.022,0.046-0.022c0.042,0,0.076-0.006,0.102-0.011c0.057-0.012,0.071-0.074,0.082-0.156
|
||||
c0.015-0.119,0.015-0.343,0.015-0.604v-0.25c0-0.011-0.009-0.017-0.017-0.017h-1.085c-0.008,0-0.017,0.003-0.017,0.017v0.25
|
||||
c0,0.261,0,0.485,0.014,0.607c0.009,0.079,0.026,0.142,0.111,0.153c0.039,0.005,0.102,0.011,0.145,0.011
|
||||
c0.031,0,0.045,0.008,0.045,0.022c0,0.02-0.022,0.028-0.057,0.028c-0.185,0-0.363-0.008-0.442-0.008
|
||||
c-0.065,0-0.244,0.008-0.357,0.008c-0.037,0-0.057-0.008-0.057-0.028c0-0.014,0.011-0.022,0.045-0.022
|
||||
c0.043,0,0.077-0.006,0.103-0.011c0.057-0.012,0.07-0.074,0.082-0.156c0.015-0.119,0.015-0.343,0.015-0.604v-0.5
|
||||
c0-0.432,0-0.511-0.006-0.602c-0.006-0.097-0.028-0.142-0.122-0.162c-0.022-0.005-0.071-0.008-0.111-0.008
|
||||
c-0.03,0-0.048-0.006-0.048-0.026c0-0.02,0.02-0.025,0.06-0.025c0.153,0,0.332,0.009,0.409,0.009c0.067,0,0.246-0.009,0.357-0.009
|
||||
c0.04,0,0.06,0.006,0.06,0.025c0,0.02-0.018,0.026-0.051,0.026c-0.023,0-0.049,0.003-0.083,0.008
|
||||
c-0.076,0.014-0.099,0.063-0.104,0.162c-0.006,0.091-0.006,0.17-0.006,0.602v0.06c0,0.014,0.009,0.02,0.017,0.02H13.056z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#231D13" d="M14.021,25.715c0-0.485,0.32-1.112,1.172-1.112c0.707,0,1.146,0.412,1.146,1.062s-0.454,1.164-1.175,1.164
|
||||
C14.351,26.828,14.021,26.218,14.021,25.715z M15.942,25.77c0-0.636-0.366-1.03-0.831-1.03c-0.326,0-0.698,0.182-0.698,0.888
|
||||
c0,0.59,0.326,1.059,0.871,1.059C15.483,26.686,15.942,26.59,15.942,25.77z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#231D13" d="M16.654,25.715c0-0.485,0.32-1.112,1.172-1.112c0.707,0,1.146,0.412,1.146,1.062s-0.454,1.164-1.175,1.164
|
||||
C16.983,26.828,16.654,26.218,16.654,25.715z M18.575,25.77c0-0.636-0.366-1.03-0.831-1.03c-0.326,0-0.698,0.182-0.698,0.888
|
||||
c0,0.59,0.326,1.059,0.871,1.059C18.116,26.686,18.575,26.59,18.575,25.77z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#231D13" d="M19.922,24.802l-0.423,0.011c-0.164,0.006-0.232,0.02-0.275,0.083c-0.028,0.042-0.042,0.076-0.048,0.099
|
||||
c-0.006,0.022-0.015,0.034-0.031,0.034c-0.021,0-0.025-0.014-0.025-0.045c0-0.045,0.054-0.304,0.06-0.327
|
||||
c0.008-0.037,0.017-0.054,0.034-0.054c0.022,0,0.051,0.028,0.122,0.034c0.082,0.008,0.189,0.014,0.283,0.014h1.124
|
||||
c0.091,0,0.153-0.009,0.196-0.014c0.042-0.009,0.064-0.014,0.076-0.014c0.02,0,0.022,0.017,0.022,0.06
|
||||
c0,0.06-0.008,0.255-0.008,0.329c-0.003,0.028-0.009,0.045-0.026,0.045c-0.022,0-0.028-0.014-0.031-0.057l-0.002-0.031
|
||||
c-0.006-0.074-0.083-0.153-0.335-0.159l-0.358-0.008v1.164c0,0.261,0,0.485,0.015,0.607c0.009,0.079,0.025,0.142,0.11,0.153
|
||||
c0.04,0.005,0.103,0.011,0.146,0.011c0.03,0,0.045,0.008,0.045,0.022c0,0.02-0.022,0.028-0.054,0.028
|
||||
c-0.188,0-0.366-0.008-0.445-0.008c-0.065,0-0.244,0.008-0.358,0.008c-0.036,0-0.057-0.008-0.057-0.028
|
||||
c0-0.014,0.012-0.022,0.046-0.022c0.042,0,0.076-0.006,0.102-0.011c0.057-0.012,0.074-0.074,0.083-0.156
|
||||
c0.014-0.119,0.014-0.343,0.014-0.604V24.802z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#231D13" d="M21.404,26.754c-0.046-0.02-0.054-0.034-0.054-0.097c0-0.156,0.011-0.326,0.014-0.372
|
||||
c0.003-0.043,0.012-0.074,0.034-0.074c0.025,0,0.028,0.026,0.028,0.048c0,0.037,0.012,0.097,0.025,0.145
|
||||
c0.063,0.21,0.23,0.287,0.406,0.287c0.255,0,0.38-0.173,0.38-0.324c0-0.139-0.042-0.27-0.278-0.454l-0.13-0.102
|
||||
c-0.313-0.244-0.42-0.443-0.42-0.673c0-0.312,0.261-0.536,0.655-0.536c0.185,0,0.304,0.028,0.377,0.048
|
||||
c0.026,0.005,0.04,0.014,0.04,0.034c0,0.037-0.011,0.12-0.011,0.341c0,0.063-0.009,0.085-0.031,0.085
|
||||
c-0.021,0-0.029-0.017-0.029-0.051c0-0.026-0.014-0.114-0.073-0.188c-0.043-0.054-0.125-0.139-0.31-0.139
|
||||
c-0.21,0-0.338,0.122-0.338,0.292c0,0.13,0.065,0.23,0.301,0.409l0.08,0.06c0.343,0.258,0.465,0.454,0.465,0.724
|
||||
c0,0.165-0.063,0.36-0.267,0.494c-0.142,0.091-0.301,0.116-0.451,0.116C21.654,26.828,21.526,26.808,21.404,26.754z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#231D13" d="M9.328,9.176c-0.446,0.645-0.803,1.356-1.052,2.117h1.433c0.316-0.789,0.773-1.505,1.342-2.117H9.328z"/>
|
||||
<path fill="#231D13" d="M15.07,5.696c-1.945,0.24-3.679,1.159-4.959,2.513h2.055c0.849-0.59,1.836-0.995,2.904-1.153V5.696z"/>
|
||||
<path fill="#231D13" d="M17.28,5.72v1.368c0.997,0.176,1.92,0.566,2.719,1.122h2.056C20.815,6.898,19.15,5.993,17.28,5.72z"/>
|
||||
<path fill="#231D13" d="M21.112,9.176c0.569,0.612,1.028,1.328,1.346,2.117h1.432c-0.249-0.761-0.604-1.473-1.052-2.117H21.112z"/>
|
||||
<path fill="#231D13" d="M17.233,21.983c1.613-0.227,3.076-0.922,4.247-1.944h-2.429c-0.567,0.272-1.178,0.47-1.818,0.578V21.983z"
|
||||
/>
|
||||
<path fill="#231D13" d="M22.56,16.127c-0.274,0.78-0.686,1.495-1.204,2.117h1.666c0.412-0.65,0.735-1.361,0.954-2.117H22.56z"/>
|
||||
<path fill="#231D13" d="M15.07,20.64c-0.691-0.102-1.35-0.309-1.957-0.601h-2.427c1.204,1.05,2.716,1.756,4.384,1.961V20.64z"/>
|
||||
<path fill="#231D13" d="M8.191,16.126c0.217,0.756,0.541,1.468,0.953,2.118h1.666c-0.519-0.622-0.93-1.337-1.205-2.118H8.191z"/>
|
||||
<path fill="#231D13" d="M15.07,9.176h-1.571c-0.902,0.485-1.649,1.222-2.146,2.117h2.244c0.453-0.452,0.932-0.9,1.473-1.36V9.176z"
|
||||
/>
|
||||
<path fill="#231D13" d="M18.549,9.176H17.28v0.892c0.367,0.33,0.822,0.783,1.252,1.226h2.163
|
||||
C20.198,10.398,19.452,9.662,18.549,9.176z"/>
|
||||
<path fill="#231D13" d="M13.274,16.127l-2.091,0c0.397,0.853,1.015,1.582,1.776,2.118h2.11v-0.418
|
||||
C15.048,17.821,14.144,16.977,13.274,16.127z"/>
|
||||
<path fill="#231D13" d="M20.865,16.127h-2.024c-0.743,0.763-1.593,1.625-1.607,1.629v0.488h1.855
|
||||
C19.852,17.708,20.468,16.979,20.865,16.127z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#231D13" d="M15.07,5.943V5.696c-3.72,0.458-6.669,3.399-7.137,7.116h0.3C8.769,9.282,11.546,6.496,15.07,5.943z"/>
|
||||
<path fill="#231D13" d="M20.343,8.479c1.327,1.054,2.264,2.58,2.528,4.333h0.218C22.764,11.031,21.758,9.495,20.343,8.479z"/>
|
||||
<path fill="#231D13" d="M17.546,5.923c1.316,0.192,2.526,0.705,3.563,1.444c-1.093-0.849-2.396-1.438-3.828-1.647v1.368
|
||||
c0.091,0.016,0.176,0.049,0.266,0.069V5.923z"/>
|
||||
<path fill="#231D13" d="M23.121,15.179h1.054c0.011-0.069,0.035-0.133,0.045-0.203h-1.364c-0.476,2.881-2.744,5.156-5.622,5.641
|
||||
v1.366c0.091-0.013,0.176-0.044,0.266-0.06V20.82C20.377,20.334,22.646,18.06,23.121,15.179z"/>
|
||||
<path fill="#231D13" d="M8.211,15.179h1.15c-0.014-0.069-0.039-0.133-0.051-0.203H7.945c0.316,2.304,1.588,4.301,3.401,5.583
|
||||
C9.677,19.274,8.511,17.367,8.211,15.179z"/>
|
||||
<path fill="#231D13" d="M15.07,20.64c-1.068-0.158-2.053-0.568-2.9-1.159c0.836,0.645,1.822,1.096,2.9,1.3V20.64z"/>
|
||||
<path fill="#231D13" d="M15.07,8.897V8.625c-2.146,0.388-3.847,2.057-4.277,4.188h0.323C11.59,10.871,13.121,9.355,15.07,8.897z"/>
|
||||
<path fill="#231D13" d="M17.546,10.271v-1.38c0.687,0.166,1.316,0.472,1.871,0.874c-0.614-0.507-1.338-0.885-2.137-1.077v1.38"/>
|
||||
<path fill="#231D13" d="M11.066,15.179h1.263c-0.065-0.068-0.138-0.142-0.195-0.203h-1.333c0.284,1.357,1.087,2.519,2.188,3.283
|
||||
C12.027,17.498,11.326,16.423,11.066,15.179z"/>
|
||||
<path fill="#231D13" d="M20.202,15.179h0.989c0.018-0.068,0.044-0.133,0.059-0.203h-1.313c-0.017,0.059-2.677,2.772-2.703,2.781
|
||||
v1.32c0.091-0.021,0.177-0.057,0.266-0.082v-1.035"/>
|
||||
<path fill="#231D13" d="M14.267,14.04l2.1-2.1c0.011-0.011,0.026,0.002,0.041,0l-0.203-0.203c-0.029-0.028-0.075-0.028-0.104,0
|
||||
l-2.1,2.1c-0.028,0.029-0.028,0.074,0,0.103l2.1,2.101c0.017,0.017,0.04,0.003,0.063,0l-1.896-1.897
|
||||
C14.238,14.114,14.238,14.068,14.267,14.04z"/>
|
||||
<path fill="#231D13" d="M19.417,9.765"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 23 KiB |
@@ -1,240 +1,240 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="292.903" y1="-1174.2194" x2="319.124" y2="-1174.2194" gradientTransform="matrix(1 0 0 -1 -290 -1158.2194)">
|
||||
<stop offset="0" style="stop-color:#302E2E"/>
|
||||
<stop offset="0.1262" style="stop-color:#2B2929"/>
|
||||
<stop offset="0.4685" style="stop-color:#1C1C1C"/>
|
||||
<stop offset="0.771" style="stop-color:#10100F"/>
|
||||
<stop offset="1" style="stop-color:#030303"/>
|
||||
</linearGradient>
|
||||
<polygon fill="url(#SVGID_1_)" points="29.097,16 16,29.097 2.903,16 16,2.903 "/>
|
||||
<radialGradient id="SVGID_2_" cx="-3838.7021" cy="-693.1246" r="11.5047" gradientTransform="matrix(-0.0607 -0.9982 -2.2198 0.1351 -1754.624 -3729.8008)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#999999"/>
|
||||
<stop offset="0.3646" style="stop-color:#878787"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</radialGradient>
|
||||
<path fill="url(#SVGID_2_)" d="M16.361,16.361c1.806,0.09,2.529-0.271,4.606,0c2.529,0.271,3.342,1.174,3.974,0.542
|
||||
c0.09-0.09,0.181-0.271,0.361-0.452c0.09-0.181,0.09-0.271,0.09-0.452c0-0.271-0.09-0.542-0.271-0.723l-8.4-8.4
|
||||
C16.542,6.697,16.271,6.607,16,6.607s-0.542,0.09-0.723,0.271l-8.4,8.4c-0.18,0.18-0.27,0.451-0.27,0.722
|
||||
c0,0.271,0.09,0.542,0.361,0.813c0.632,0.542,1.355,0.723,2.258,0.452C11.665,16.632,13.742,16.271,16.361,16.361z"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="306.0364" y1="-1170.2096" x2="306.0081" y2="-1185.4795" gradientTransform="matrix(1 0 0 -1 -290 -1158.2194)">
|
||||
<stop offset="0" style="stop-color:#000000"/>
|
||||
<stop offset="1" style="stop-color:#404A44"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_3_)" d="M6.697,16.903l8.4,8.4c0.542,0.542,1.355,0.542,1.897,0l8.4-8.4c0.361-0.361,0.09-0.903,0.09-0.903
|
||||
c0,0.271-0.09,0.542-0.271,0.723l-8.4,8.4c-0.181,0.181-0.452,0.271-0.723,0.271s-0.542-0.09-0.723-0.271l-8.4-8.4
|
||||
c-0.18-0.181-0.27-0.452-0.27-0.723C6.607,16,6.245,16.542,6.697,16.903z"/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="303.0059" y1="2005.6226" x2="308.4788" y2="2022.9065" gradientTransform="matrix(1 0 0 1 -290 -1998.89)">
|
||||
<stop offset="0.0196" style="stop-color:#675A5A"/>
|
||||
<stop offset="0.5439" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_4_)" d="M15.006,6.516c0.542-0.542,1.355-0.542,1.897,0l8.58,8.58c0.542,0.542,0.542,1.355,0,1.897
|
||||
l-8.58,8.58c-0.542,0.542-1.355,0.542-1.897,0l-8.58-8.58c-0.542-0.542-0.542-1.355,0-1.897L15.006,6.516z"/>
|
||||
<radialGradient id="SVGID_5_" cx="298.6385" cy="1997.7714" r="31.3367" gradientTransform="matrix(1 0 0 1 -290 -1998.89)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#B2CAD4"/>
|
||||
<stop offset="0.2238" style="stop-color:#B5CAD2"/>
|
||||
<stop offset="0.3874" style="stop-color:#BECBCB"/>
|
||||
<stop offset="0.5316" style="stop-color:#CECDC0"/>
|
||||
<stop offset="0.5447" style="stop-color:#D0CDBF"/>
|
||||
<stop offset="0.7058" style="stop-color:#D1CABC"/>
|
||||
<stop offset="0.8243" style="stop-color:#D2C1B3"/>
|
||||
<stop offset="0.9288" style="stop-color:#D5B1A3"/>
|
||||
<stop offset="1" style="stop-color:#D8A193"/>
|
||||
</radialGradient>
|
||||
<path fill="url(#SVGID_5_)" d="M15.097,6.878c0.542-0.542,1.355-0.542,1.806,0l8.219,8.219c0.542,0.542,0.542,1.355,0,1.806
|
||||
l-8.219,8.219c-0.542,0.542-1.355,0.542-1.806,0l-8.219-8.219c-0.542-0.542-0.542-1.355,0-1.806L15.097,6.878z"/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="305.9771" y1="2016.2919" x2="306.1612" y2="2004.2383" gradientTransform="matrix(1 0 0 1 -290 -1998.89)">
|
||||
<stop offset="0.0098" style="stop-color:#F7FDFF;stop-opacity:0.4"/>
|
||||
<stop offset="0.7258" style="stop-color:#B7B3B3;stop-opacity:0.7"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_6_)" d="M16.361,16.271c1.716,0.09,2.529-0.271,4.516,0c2.439,0.271,3.252,1.084,3.884,0.542
|
||||
c0.09-0.09,0.181-0.271,0.361-0.452c0.09-0.181,0.09-0.271,0.09-0.452c0-0.271-0.09-0.542-0.271-0.723l-8.219-8.219
|
||||
c-0.18-0.18-0.451-0.27-0.722-0.27s-0.542,0.09-0.723,0.271l-8.219,8.219c-0.181,0.181-0.271,0.452-0.271,0.723
|
||||
c0,0.271,0.09,0.542,0.361,0.813c0.542,0.542,1.355,0.632,2.168,0.452C11.755,16.542,13.742,16.181,16.361,16.271z"/>
|
||||
<radialGradient id="SVGID_7_" cx="313.709" cy="2032.4696" r="37.5603" gradientTransform="matrix(1 0 0 1 -290 -1998.89)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#612A2A"/>
|
||||
<stop offset="0.2109" style="stop-color:#948A87"/>
|
||||
<stop offset="0.2122" style="stop-color:#948A87"/>
|
||||
<stop offset="0.3051" style="stop-color:#A9A4A2"/>
|
||||
<stop offset="0.3998" style="stop-color:#B8B6B5"/>
|
||||
<stop offset="0.4972" style="stop-color:#C1C0C0"/>
|
||||
<stop offset="0.6006" style="stop-color:#C4C4C4"/>
|
||||
<stop offset="1" style="stop-color:#ABAAA9"/>
|
||||
</radialGradient>
|
||||
<path fill="url(#SVGID_7_)" d="M16,29.909c-0.452,0-0.903-0.181-1.264-0.542L2.542,17.174c-0.723-0.723-0.723-1.897,0-2.619
|
||||
L14.736,2.542C15.097,2.181,15.548,2,16,2s0.903,0.181,1.264,0.542l12.103,12.103c0.361,0.361,0.542,0.813,0.542,1.264
|
||||
c0,0.452-0.181,0.903-0.542,1.264L17.264,29.367C16.903,29.729,16.452,29.909,16,29.909z M16,6.155
|
||||
c-0.361,0-0.723,0.181-0.994,0.452l-8.4,8.4c-0.27,0.27-0.451,0.632-0.451,0.993c0,0.361,0.181,0.723,0.452,0.994l8.4,8.4
|
||||
c0.271,0.271,0.632,0.452,0.994,0.452c0.361,0,0.723-0.181,0.994-0.452l8.4-8.4c0.271-0.271,0.452-0.632,0.452-0.994
|
||||
c0-0.361-0.181-0.723-0.452-0.994l-8.4-8.4C16.723,6.245,16.361,6.155,16,6.155z"/>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="10.7792" y1="807.737" x2="21.1214" y2="843.9145" gradientTransform="matrix(1 0 0 1 0 -810)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_8_)" d="M29.819,14.555L17.445,2.181C17.084,1.82,16.542,1.549,16,1.549s-1.084,0.181-1.445,0.632
|
||||
L2.181,14.555C1.82,14.916,1.549,15.458,1.549,16c0,0.542,0.181,1.084,0.632,1.445l12.374,12.374
|
||||
c0.361,0.361,0.903,0.632,1.445,0.632c0.542,0,1.084-0.181,1.445-0.632l12.374-12.374c0.361-0.361,0.632-0.903,0.632-1.445
|
||||
C30.451,15.458,30.271,14.916,29.819,14.555z M29.458,17.355l-5.329,5.329v-1.987l-1.445,3.342l-5.329,5.329
|
||||
c-0.361,0.361-0.813,0.542-1.264,0.542c-0.452,0-0.994-0.181-1.264-0.542l-5.419-5.239h2.168l-3.613-1.535l-5.329-5.329
|
||||
C2.271,16.903,2.091,16.452,2.091,16c0-0.452,0.181-0.994,0.542-1.264l5.51-5.51v2.258L9.678,7.6l5.058-5.058
|
||||
C15.097,2.181,15.548,2,16,2s0.994,0.181,1.264,0.542l5.329,5.329h-1.897l3.252,1.355l5.51,5.51C29.819,15.097,30,15.548,30,16
|
||||
C29.909,16.542,29.729,16.994,29.458,17.355z"/>
|
||||
<rect x="31.886" y="15.647" opacity="0.01" enable-background="new " width="0.114" height="0.353"/>
|
||||
<rect y="15.647" opacity="0.01" enable-background="new " width="0.114" height="0.353"/>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="14.0231" y1="26.2306" x2="16.9333" y2="17.8188" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_9_)" d="M15.157,11.49c0.44,0,0.812,0.303,0.826,0.314c0.109,0.085,0.518,0.377,1.042,0.377
|
||||
c0.595,0,1.067-0.395,1.087-0.412l-0.259-0.305c-0.003,0.003-0.386,0.316-0.829,0.316c-0.44,0-0.812-0.303-0.826-0.314
|
||||
c-0.109-0.085-0.518-0.377-1.042-0.377c-0.595,0-1.067,0.395-1.087,0.412l0.259,0.305C14.331,11.803,14.714,11.49,15.157,11.49z"/>
|
||||
|
||||
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="13.7429" y1="26.1337" x2="16.6531" y2="17.7218" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_10_)" d="M17.024,12.687c-0.44,0-0.812-0.303-0.826-0.314c-0.109-0.085-0.518-0.377-1.042-0.377
|
||||
c-0.595,0-1.067,0.395-1.087,0.412l0.259,0.305c0.003-0.003,0.386-0.316,0.829-0.316c0.44,0,0.812,0.303,0.826,0.314
|
||||
c0.109,0.085,0.518,0.377,1.042,0.377c0.595,0,1.067-0.395,1.087-0.412l-0.259-0.305C17.849,12.374,17.467,12.687,17.024,12.687z"
|
||||
/>
|
||||
|
||||
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="13.463" y1="26.0369" x2="16.3732" y2="17.625" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_11_)" d="M17.024,13.593c-0.44,0-0.812-0.303-0.826-0.314c-0.109-0.085-0.518-0.377-1.042-0.377
|
||||
c-0.595,0-1.067,0.395-1.087,0.412l0.259,0.305c0.003-0.003,0.386-0.316,0.829-0.316c0.44,0,0.812,0.303,0.826,0.314
|
||||
c0.109,0.085,0.518,0.377,1.042,0.377c0.595,0,1.067-0.395,1.087-0.412l-0.259-0.305C17.849,13.28,17.467,13.593,17.024,13.593z"/>
|
||||
</g>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="9.887" y1="20.8985" x2="10.4514" y2="13.0569" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_12_)" d="M10.399,17.361l-0.221-0.134c-0.139-0.085-0.237-0.168-0.296-0.25s-0.088-0.176-0.088-0.283
|
||||
c0-0.16,0.056-0.29,0.167-0.39c0.111-0.1,0.255-0.149,0.433-0.149c0.17,0,0.325,0.047,0.467,0.143v0.33
|
||||
c-0.146-0.141-0.304-0.211-0.473-0.211c-0.095,0-0.173,0.022-0.234,0.066s-0.092,0.1-0.092,0.168c0,0.061,0.022,0.118,0.067,0.171
|
||||
c0.045,0.054,0.118,0.108,0.217,0.167l0.222,0.132c0.248,0.148,0.372,0.337,0.372,0.565c0,0.163-0.055,0.295-0.164,0.396
|
||||
c-0.109,0.103-0.251,0.153-0.425,0.153c-0.201,0-0.383-0.062-0.548-0.186v-0.368c0.157,0.199,0.339,0.299,0.545,0.299
|
||||
c0.091,0,0.167-0.025,0.228-0.076s0.091-0.114,0.091-0.19C10.667,17.59,10.578,17.472,10.399,17.361z"/>
|
||||
|
||||
<linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="10.9574" y1="20.9755" x2="11.5217" y2="13.1339" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_13_)" d="M11.264,16.181h0.291v2.032h-0.291V16.181z"/>
|
||||
|
||||
<linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="12.2643" y1="21.0695" x2="12.8286" y2="13.2279" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_14_)" d="M12.014,18.213v-2.032h0.509c0.206,0,0.369,0.051,0.489,0.153s0.181,0.239,0.181,0.413
|
||||
c0,0.118-0.03,0.221-0.089,0.307s-0.144,0.15-0.254,0.193c0.065,0.043,0.128,0.101,0.19,0.175c0.062,0.073,0.149,0.202,0.262,0.386
|
||||
c0.071,0.115,0.127,0.202,0.17,0.26l0.107,0.146h-0.346l-0.088-0.134c-0.003-0.005-0.009-0.013-0.018-0.024l-0.057-0.08
|
||||
l-0.09-0.148l-0.097-0.159c-0.06-0.083-0.115-0.149-0.165-0.199c-0.05-0.049-0.095-0.085-0.136-0.106
|
||||
c-0.04-0.021-0.108-0.032-0.203-0.032h-0.076v0.884h-0.289V18.213z M12.392,16.428h-0.087v0.641h0.111
|
||||
c0.147,0,0.248-0.012,0.303-0.037c0.055-0.025,0.097-0.063,0.128-0.114c0.03-0.051,0.045-0.109,0.045-0.174
|
||||
c0-0.064-0.017-0.122-0.051-0.174c-0.034-0.052-0.082-0.088-0.143-0.11S12.535,16.428,12.392,16.428z"/>
|
||||
|
||||
<linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="14.1579" y1="21.2058" x2="14.7223" y2="13.3642" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_15_)" d="M14.622,16.152c0.314,0,0.575,0.099,0.784,0.298s0.313,0.448,0.313,0.748
|
||||
c0,0.299-0.105,0.547-0.316,0.743c-0.21,0.196-0.477,0.295-0.797,0.295c-0.306,0-0.562-0.099-0.765-0.295
|
||||
c-0.204-0.196-0.306-0.442-0.306-0.737c0-0.304,0.103-0.555,0.308-0.754S14.308,16.152,14.622,16.152z M14.633,16.428
|
||||
c-0.232,0-0.423,0.073-0.573,0.218c-0.149,0.146-0.224,0.331-0.224,0.558c0,0.219,0.075,0.401,0.225,0.546
|
||||
c0.15,0.146,0.338,0.219,0.563,0.219c0.227,0,0.416-0.074,0.567-0.223c0.152-0.148,0.228-0.333,0.228-0.554
|
||||
c0-0.216-0.076-0.396-0.228-0.543C15.041,16.502,14.854,16.428,14.633,16.428z"/>
|
||||
|
||||
<linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="16.4523" y1="21.3709" x2="17.0166" y2="13.5293" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_16_)" d="M17.828,17.742v0.319c-0.213,0.116-0.459,0.175-0.738,0.175c-0.228,0-0.42-0.046-0.578-0.137
|
||||
c-0.158-0.091-0.283-0.217-0.375-0.377c-0.092-0.16-0.138-0.333-0.138-0.519c0-0.297,0.105-0.545,0.316-0.747
|
||||
c0.21-0.202,0.471-0.302,0.781-0.302c0.213,0,0.45,0.056,0.711,0.167v0.313c-0.237-0.136-0.47-0.204-0.696-0.204
|
||||
c-0.234,0-0.427,0.073-0.581,0.22c-0.153,0.147-0.23,0.331-0.23,0.552c0,0.223,0.076,0.406,0.227,0.549
|
||||
c0.151,0.144,0.344,0.216,0.581,0.216C17.354,17.968,17.594,17.892,17.828,17.742z"/>
|
||||
|
||||
<linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="18.5498" y1="21.5219" x2="19.1142" y2="13.6803" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_17_)" d="M19.937,17.742v0.319c-0.213,0.116-0.459,0.175-0.738,0.175c-0.228,0-0.42-0.046-0.577-0.137
|
||||
c-0.158-0.091-0.283-0.217-0.376-0.377c-0.092-0.16-0.138-0.333-0.138-0.519c0-0.297,0.105-0.545,0.316-0.747
|
||||
s0.471-0.302,0.78-0.302c0.213,0,0.45,0.056,0.711,0.167v0.313c-0.237-0.136-0.47-0.204-0.696-0.204
|
||||
c-0.233,0-0.426,0.073-0.58,0.22c-0.153,0.147-0.23,0.331-0.23,0.552c0,0.223,0.076,0.406,0.227,0.549
|
||||
c0.151,0.144,0.345,0.216,0.581,0.216C19.462,17.968,19.702,17.892,19.937,17.742z"/>
|
||||
|
||||
<linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="20.7932" y1="21.6833" x2="21.3575" y2="13.8418" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_18_)" d="M21.292,16.152c0.314,0,0.575,0.099,0.784,0.298s0.313,0.448,0.313,0.748
|
||||
c0,0.299-0.105,0.547-0.316,0.743s-0.477,0.295-0.797,0.295c-0.307,0-0.562-0.099-0.766-0.295s-0.306-0.442-0.306-0.737
|
||||
c0-0.304,0.103-0.555,0.308-0.754C20.719,16.251,20.979,16.152,21.292,16.152z M21.304,16.428c-0.232,0-0.424,0.073-0.573,0.218
|
||||
c-0.149,0.146-0.225,0.331-0.225,0.558c0,0.219,0.075,0.401,0.226,0.546c0.15,0.146,0.338,0.219,0.563,0.219
|
||||
c0.227,0,0.416-0.074,0.567-0.223s0.228-0.333,0.228-0.554c0-0.216-0.076-0.396-0.228-0.543S21.524,16.428,21.304,16.428z"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_19_" gradientUnits="userSpaceOnUse" x1="17.8348" y1="39.2776" x2="13.8546" y2="-11.2175">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.15" style="stop-color:#E3CBCB"/>
|
||||
<stop offset="0.2442" style="stop-color:#DBC3C3"/>
|
||||
<stop offset="0.323" style="stop-color:#CCB6B6"/>
|
||||
<stop offset="0.3933" style="stop-color:#B7A3A3"/>
|
||||
<stop offset="0.4574" style="stop-color:#9D8B8B"/>
|
||||
<stop offset="0.5013" style="stop-color:#867676"/>
|
||||
<stop offset="0.8106" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_19_)" d="M16,29.999c-0.557,0-1.146-0.255-1.573-0.683L2.684,17.572C2.251,17.229,2,16.663,2,16
|
||||
c0-0.557,0.255-1.145,0.684-1.573L14.428,2.683C14.771,2.251,15.337,2,16,2c0.557,0,1.145,0.255,1.573,0.683l11.744,11.745
|
||||
C29.749,14.77,30,15.336,30,16c0,0.557-0.255,1.145-0.683,1.572L17.573,29.316C17.229,29.749,16.663,29.999,16,29.999z
|
||||
M15.036,29.152c0.217,0.284,0.638,0.458,1.055,0.458c0.386,0,0.76-0.161,1.053-0.454l5.287-5.288l1.998-4.621v2.713l4.817-4.816
|
||||
c0.212-0.289,0.376-0.701,0.458-1.193c-0.004-0.336-0.165-0.709-0.458-1.001L23.778,9.48l-4.582-1.909h2.672l-4.816-4.817
|
||||
C16.838,2.473,16.417,2.3,16,2.3c-0.385,0-0.759,0.162-1.052,0.455L9.935,7.768l-2.091,5.291V9.95l-4.999,4.998
|
||||
C2.564,15.162,2.391,15.583,2.391,16c0,0.386,0.162,0.76,0.455,1.053l5.288,5.288l4.916,2.088H10.15L15.036,29.152z"/>
|
||||
<linearGradient id="SVGID_20_" gradientUnits="userSpaceOnUse" x1="10.7792" y1="807.737" x2="21.1214" y2="843.9145" gradientTransform="matrix(1 0 0 1 0 -810)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_20_)" d="M29.819,14.555L17.445,2.181C17.084,1.82,16.542,1.549,16,1.549s-1.084,0.181-1.445,0.632
|
||||
L2.181,14.555C1.82,14.916,1.549,15.458,1.549,16c0,0.542,0.181,1.084,0.632,1.445l12.374,12.374
|
||||
c0.361,0.361,0.903,0.632,1.445,0.632c0.542,0,1.084-0.181,1.445-0.632l12.374-12.374c0.361-0.361,0.632-0.903,0.632-1.445
|
||||
C30.451,15.458,30.271,14.916,29.819,14.555z M29.458,17.355l-5.329,5.329v-1.987l-1.445,3.342l-5.329,5.329
|
||||
c-0.361,0.361-0.813,0.542-1.264,0.542c-0.452,0-0.994-0.181-1.264-0.542l-5.419-5.239h2.168l-3.613-1.535l-5.329-5.329
|
||||
C2.271,16.903,2.091,16.452,2.091,16c0-0.452,0.181-0.994,0.542-1.264l5.51-5.51v2.258L9.678,7.6l5.058-5.058
|
||||
C15.097,2.181,15.548,2,16,2s0.994,0.181,1.264,0.542l5.329,5.329h-1.897l3.252,1.355l5.51,5.51C29.819,15.097,30,15.548,30,16
|
||||
C29.909,16.542,29.729,16.994,29.458,17.355z"/>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="292.903" y1="-1174.2194" x2="319.124" y2="-1174.2194" gradientTransform="matrix(1 0 0 -1 -290 -1158.2194)">
|
||||
<stop offset="0" style="stop-color:#302E2E"/>
|
||||
<stop offset="0.1262" style="stop-color:#2B2929"/>
|
||||
<stop offset="0.4685" style="stop-color:#1C1C1C"/>
|
||||
<stop offset="0.771" style="stop-color:#10100F"/>
|
||||
<stop offset="1" style="stop-color:#030303"/>
|
||||
</linearGradient>
|
||||
<polygon fill="url(#SVGID_1_)" points="29.097,16 16,29.097 2.903,16 16,2.903 "/>
|
||||
<radialGradient id="SVGID_2_" cx="-3838.7021" cy="-693.1246" r="11.5047" gradientTransform="matrix(-0.0607 -0.9982 -2.2198 0.1351 -1754.624 -3729.8008)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#999999"/>
|
||||
<stop offset="0.3646" style="stop-color:#878787"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</radialGradient>
|
||||
<path fill="url(#SVGID_2_)" d="M16.361,16.361c1.806,0.09,2.529-0.271,4.606,0c2.529,0.271,3.342,1.174,3.974,0.542
|
||||
c0.09-0.09,0.181-0.271,0.361-0.452c0.09-0.181,0.09-0.271,0.09-0.452c0-0.271-0.09-0.542-0.271-0.723l-8.4-8.4
|
||||
C16.542,6.697,16.271,6.607,16,6.607s-0.542,0.09-0.723,0.271l-8.4,8.4c-0.18,0.18-0.27,0.451-0.27,0.722
|
||||
c0,0.271,0.09,0.542,0.361,0.813c0.632,0.542,1.355,0.723,2.258,0.452C11.665,16.632,13.742,16.271,16.361,16.361z"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="306.0364" y1="-1170.2096" x2="306.0081" y2="-1185.4795" gradientTransform="matrix(1 0 0 -1 -290 -1158.2194)">
|
||||
<stop offset="0" style="stop-color:#000000"/>
|
||||
<stop offset="1" style="stop-color:#404A44"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_3_)" d="M6.697,16.903l8.4,8.4c0.542,0.542,1.355,0.542,1.897,0l8.4-8.4c0.361-0.361,0.09-0.903,0.09-0.903
|
||||
c0,0.271-0.09,0.542-0.271,0.723l-8.4,8.4c-0.181,0.181-0.452,0.271-0.723,0.271s-0.542-0.09-0.723-0.271l-8.4-8.4
|
||||
c-0.18-0.181-0.27-0.452-0.27-0.723C6.607,16,6.245,16.542,6.697,16.903z"/>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="303.0059" y1="2005.6226" x2="308.4788" y2="2022.9065" gradientTransform="matrix(1 0 0 1 -290 -1998.89)">
|
||||
<stop offset="0.0196" style="stop-color:#675A5A"/>
|
||||
<stop offset="0.5439" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_4_)" d="M15.006,6.516c0.542-0.542,1.355-0.542,1.897,0l8.58,8.58c0.542,0.542,0.542,1.355,0,1.897
|
||||
l-8.58,8.58c-0.542,0.542-1.355,0.542-1.897,0l-8.58-8.58c-0.542-0.542-0.542-1.355,0-1.897L15.006,6.516z"/>
|
||||
<radialGradient id="SVGID_5_" cx="298.6385" cy="1997.7714" r="31.3367" gradientTransform="matrix(1 0 0 1 -290 -1998.89)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#B2CAD4"/>
|
||||
<stop offset="0.2238" style="stop-color:#B5CAD2"/>
|
||||
<stop offset="0.3874" style="stop-color:#BECBCB"/>
|
||||
<stop offset="0.5316" style="stop-color:#CECDC0"/>
|
||||
<stop offset="0.5447" style="stop-color:#D0CDBF"/>
|
||||
<stop offset="0.7058" style="stop-color:#D1CABC"/>
|
||||
<stop offset="0.8243" style="stop-color:#D2C1B3"/>
|
||||
<stop offset="0.9288" style="stop-color:#D5B1A3"/>
|
||||
<stop offset="1" style="stop-color:#D8A193"/>
|
||||
</radialGradient>
|
||||
<path fill="url(#SVGID_5_)" d="M15.097,6.878c0.542-0.542,1.355-0.542,1.806,0l8.219,8.219c0.542,0.542,0.542,1.355,0,1.806
|
||||
l-8.219,8.219c-0.542,0.542-1.355,0.542-1.806,0l-8.219-8.219c-0.542-0.542-0.542-1.355,0-1.806L15.097,6.878z"/>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="305.9771" y1="2016.2919" x2="306.1612" y2="2004.2383" gradientTransform="matrix(1 0 0 1 -290 -1998.89)">
|
||||
<stop offset="0.0098" style="stop-color:#F7FDFF;stop-opacity:0.4"/>
|
||||
<stop offset="0.7258" style="stop-color:#B7B3B3;stop-opacity:0.7"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_6_)" d="M16.361,16.271c1.716,0.09,2.529-0.271,4.516,0c2.439,0.271,3.252,1.084,3.884,0.542
|
||||
c0.09-0.09,0.181-0.271,0.361-0.452c0.09-0.181,0.09-0.271,0.09-0.452c0-0.271-0.09-0.542-0.271-0.723l-8.219-8.219
|
||||
c-0.18-0.18-0.451-0.27-0.722-0.27s-0.542,0.09-0.723,0.271l-8.219,8.219c-0.181,0.181-0.271,0.452-0.271,0.723
|
||||
c0,0.271,0.09,0.542,0.361,0.813c0.542,0.542,1.355,0.632,2.168,0.452C11.755,16.542,13.742,16.181,16.361,16.271z"/>
|
||||
<radialGradient id="SVGID_7_" cx="313.709" cy="2032.4696" r="37.5603" gradientTransform="matrix(1 0 0 1 -290 -1998.89)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#612A2A"/>
|
||||
<stop offset="0.2109" style="stop-color:#948A87"/>
|
||||
<stop offset="0.2122" style="stop-color:#948A87"/>
|
||||
<stop offset="0.3051" style="stop-color:#A9A4A2"/>
|
||||
<stop offset="0.3998" style="stop-color:#B8B6B5"/>
|
||||
<stop offset="0.4972" style="stop-color:#C1C0C0"/>
|
||||
<stop offset="0.6006" style="stop-color:#C4C4C4"/>
|
||||
<stop offset="1" style="stop-color:#ABAAA9"/>
|
||||
</radialGradient>
|
||||
<path fill="url(#SVGID_7_)" d="M16,29.909c-0.452,0-0.903-0.181-1.264-0.542L2.542,17.174c-0.723-0.723-0.723-1.897,0-2.619
|
||||
L14.736,2.542C15.097,2.181,15.548,2,16,2s0.903,0.181,1.264,0.542l12.103,12.103c0.361,0.361,0.542,0.813,0.542,1.264
|
||||
c0,0.452-0.181,0.903-0.542,1.264L17.264,29.367C16.903,29.729,16.452,29.909,16,29.909z M16,6.155
|
||||
c-0.361,0-0.723,0.181-0.994,0.452l-8.4,8.4c-0.27,0.27-0.451,0.632-0.451,0.993c0,0.361,0.181,0.723,0.452,0.994l8.4,8.4
|
||||
c0.271,0.271,0.632,0.452,0.994,0.452c0.361,0,0.723-0.181,0.994-0.452l8.4-8.4c0.271-0.271,0.452-0.632,0.452-0.994
|
||||
c0-0.361-0.181-0.723-0.452-0.994l-8.4-8.4C16.723,6.245,16.361,6.155,16,6.155z"/>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="10.7792" y1="807.737" x2="21.1214" y2="843.9145" gradientTransform="matrix(1 0 0 1 0 -810)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_8_)" d="M29.819,14.555L17.445,2.181C17.084,1.82,16.542,1.549,16,1.549s-1.084,0.181-1.445,0.632
|
||||
L2.181,14.555C1.82,14.916,1.549,15.458,1.549,16c0,0.542,0.181,1.084,0.632,1.445l12.374,12.374
|
||||
c0.361,0.361,0.903,0.632,1.445,0.632c0.542,0,1.084-0.181,1.445-0.632l12.374-12.374c0.361-0.361,0.632-0.903,0.632-1.445
|
||||
C30.451,15.458,30.271,14.916,29.819,14.555z M29.458,17.355l-5.329,5.329v-1.987l-1.445,3.342l-5.329,5.329
|
||||
c-0.361,0.361-0.813,0.542-1.264,0.542c-0.452,0-0.994-0.181-1.264-0.542l-5.419-5.239h2.168l-3.613-1.535l-5.329-5.329
|
||||
C2.271,16.903,2.091,16.452,2.091,16c0-0.452,0.181-0.994,0.542-1.264l5.51-5.51v2.258L9.678,7.6l5.058-5.058
|
||||
C15.097,2.181,15.548,2,16,2s0.994,0.181,1.264,0.542l5.329,5.329h-1.897l3.252,1.355l5.51,5.51C29.819,15.097,30,15.548,30,16
|
||||
C29.909,16.542,29.729,16.994,29.458,17.355z"/>
|
||||
<rect x="31.886" y="15.647" opacity="0.01" enable-background="new " width="0.114" height="0.353"/>
|
||||
<rect y="15.647" opacity="0.01" enable-background="new " width="0.114" height="0.353"/>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="14.0231" y1="26.2306" x2="16.9333" y2="17.8188" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_9_)" d="M15.157,11.49c0.44,0,0.812,0.303,0.826,0.314c0.109,0.085,0.518,0.377,1.042,0.377
|
||||
c0.595,0,1.067-0.395,1.087-0.412l-0.259-0.305c-0.003,0.003-0.386,0.316-0.829,0.316c-0.44,0-0.812-0.303-0.826-0.314
|
||||
c-0.109-0.085-0.518-0.377-1.042-0.377c-0.595,0-1.067,0.395-1.087,0.412l0.259,0.305C14.331,11.803,14.714,11.49,15.157,11.49z"/>
|
||||
|
||||
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="13.7429" y1="26.1337" x2="16.6531" y2="17.7218" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_10_)" d="M17.024,12.687c-0.44,0-0.812-0.303-0.826-0.314c-0.109-0.085-0.518-0.377-1.042-0.377
|
||||
c-0.595,0-1.067,0.395-1.087,0.412l0.259,0.305c0.003-0.003,0.386-0.316,0.829-0.316c0.44,0,0.812,0.303,0.826,0.314
|
||||
c0.109,0.085,0.518,0.377,1.042,0.377c0.595,0,1.067-0.395,1.087-0.412l-0.259-0.305C17.849,12.374,17.467,12.687,17.024,12.687z"
|
||||
/>
|
||||
|
||||
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="13.463" y1="26.0369" x2="16.3732" y2="17.625" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_11_)" d="M17.024,13.593c-0.44,0-0.812-0.303-0.826-0.314c-0.109-0.085-0.518-0.377-1.042-0.377
|
||||
c-0.595,0-1.067,0.395-1.087,0.412l0.259,0.305c0.003-0.003,0.386-0.316,0.829-0.316c0.44,0,0.812,0.303,0.826,0.314
|
||||
c0.109,0.085,0.518,0.377,1.042,0.377c0.595,0,1.067-0.395,1.087-0.412l-0.259-0.305C17.849,13.28,17.467,13.593,17.024,13.593z"/>
|
||||
</g>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="9.887" y1="20.8985" x2="10.4514" y2="13.0569" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_12_)" d="M10.399,17.361l-0.221-0.134c-0.139-0.085-0.237-0.168-0.296-0.25s-0.088-0.176-0.088-0.283
|
||||
c0-0.16,0.056-0.29,0.167-0.39c0.111-0.1,0.255-0.149,0.433-0.149c0.17,0,0.325,0.047,0.467,0.143v0.33
|
||||
c-0.146-0.141-0.304-0.211-0.473-0.211c-0.095,0-0.173,0.022-0.234,0.066s-0.092,0.1-0.092,0.168c0,0.061,0.022,0.118,0.067,0.171
|
||||
c0.045,0.054,0.118,0.108,0.217,0.167l0.222,0.132c0.248,0.148,0.372,0.337,0.372,0.565c0,0.163-0.055,0.295-0.164,0.396
|
||||
c-0.109,0.103-0.251,0.153-0.425,0.153c-0.201,0-0.383-0.062-0.548-0.186v-0.368c0.157,0.199,0.339,0.299,0.545,0.299
|
||||
c0.091,0,0.167-0.025,0.228-0.076s0.091-0.114,0.091-0.19C10.667,17.59,10.578,17.472,10.399,17.361z"/>
|
||||
|
||||
<linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="10.9574" y1="20.9755" x2="11.5217" y2="13.1339" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_13_)" d="M11.264,16.181h0.291v2.032h-0.291V16.181z"/>
|
||||
|
||||
<linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="12.2643" y1="21.0695" x2="12.8286" y2="13.2279" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_14_)" d="M12.014,18.213v-2.032h0.509c0.206,0,0.369,0.051,0.489,0.153s0.181,0.239,0.181,0.413
|
||||
c0,0.118-0.03,0.221-0.089,0.307s-0.144,0.15-0.254,0.193c0.065,0.043,0.128,0.101,0.19,0.175c0.062,0.073,0.149,0.202,0.262,0.386
|
||||
c0.071,0.115,0.127,0.202,0.17,0.26l0.107,0.146h-0.346l-0.088-0.134c-0.003-0.005-0.009-0.013-0.018-0.024l-0.057-0.08
|
||||
l-0.09-0.148l-0.097-0.159c-0.06-0.083-0.115-0.149-0.165-0.199c-0.05-0.049-0.095-0.085-0.136-0.106
|
||||
c-0.04-0.021-0.108-0.032-0.203-0.032h-0.076v0.884h-0.289V18.213z M12.392,16.428h-0.087v0.641h0.111
|
||||
c0.147,0,0.248-0.012,0.303-0.037c0.055-0.025,0.097-0.063,0.128-0.114c0.03-0.051,0.045-0.109,0.045-0.174
|
||||
c0-0.064-0.017-0.122-0.051-0.174c-0.034-0.052-0.082-0.088-0.143-0.11S12.535,16.428,12.392,16.428z"/>
|
||||
|
||||
<linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="14.1579" y1="21.2058" x2="14.7223" y2="13.3642" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_15_)" d="M14.622,16.152c0.314,0,0.575,0.099,0.784,0.298s0.313,0.448,0.313,0.748
|
||||
c0,0.299-0.105,0.547-0.316,0.743c-0.21,0.196-0.477,0.295-0.797,0.295c-0.306,0-0.562-0.099-0.765-0.295
|
||||
c-0.204-0.196-0.306-0.442-0.306-0.737c0-0.304,0.103-0.555,0.308-0.754S14.308,16.152,14.622,16.152z M14.633,16.428
|
||||
c-0.232,0-0.423,0.073-0.573,0.218c-0.149,0.146-0.224,0.331-0.224,0.558c0,0.219,0.075,0.401,0.225,0.546
|
||||
c0.15,0.146,0.338,0.219,0.563,0.219c0.227,0,0.416-0.074,0.567-0.223c0.152-0.148,0.228-0.333,0.228-0.554
|
||||
c0-0.216-0.076-0.396-0.228-0.543C15.041,16.502,14.854,16.428,14.633,16.428z"/>
|
||||
|
||||
<linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="16.4523" y1="21.3709" x2="17.0166" y2="13.5293" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_16_)" d="M17.828,17.742v0.319c-0.213,0.116-0.459,0.175-0.738,0.175c-0.228,0-0.42-0.046-0.578-0.137
|
||||
c-0.158-0.091-0.283-0.217-0.375-0.377c-0.092-0.16-0.138-0.333-0.138-0.519c0-0.297,0.105-0.545,0.316-0.747
|
||||
c0.21-0.202,0.471-0.302,0.781-0.302c0.213,0,0.45,0.056,0.711,0.167v0.313c-0.237-0.136-0.47-0.204-0.696-0.204
|
||||
c-0.234,0-0.427,0.073-0.581,0.22c-0.153,0.147-0.23,0.331-0.23,0.552c0,0.223,0.076,0.406,0.227,0.549
|
||||
c0.151,0.144,0.344,0.216,0.581,0.216C17.354,17.968,17.594,17.892,17.828,17.742z"/>
|
||||
|
||||
<linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="18.5498" y1="21.5219" x2="19.1142" y2="13.6803" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_17_)" d="M19.937,17.742v0.319c-0.213,0.116-0.459,0.175-0.738,0.175c-0.228,0-0.42-0.046-0.577-0.137
|
||||
c-0.158-0.091-0.283-0.217-0.376-0.377c-0.092-0.16-0.138-0.333-0.138-0.519c0-0.297,0.105-0.545,0.316-0.747
|
||||
s0.471-0.302,0.78-0.302c0.213,0,0.45,0.056,0.711,0.167v0.313c-0.237-0.136-0.47-0.204-0.696-0.204
|
||||
c-0.233,0-0.426,0.073-0.58,0.22c-0.153,0.147-0.23,0.331-0.23,0.552c0,0.223,0.076,0.406,0.227,0.549
|
||||
c0.151,0.144,0.345,0.216,0.581,0.216C19.462,17.968,19.702,17.892,19.937,17.742z"/>
|
||||
|
||||
<linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="20.7932" y1="21.6833" x2="21.3575" y2="13.8418" gradientTransform="matrix(1 0 0 -1 0 31.89)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_18_)" d="M21.292,16.152c0.314,0,0.575,0.099,0.784,0.298s0.313,0.448,0.313,0.748
|
||||
c0,0.299-0.105,0.547-0.316,0.743s-0.477,0.295-0.797,0.295c-0.307,0-0.562-0.099-0.766-0.295s-0.306-0.442-0.306-0.737
|
||||
c0-0.304,0.103-0.555,0.308-0.754C20.719,16.251,20.979,16.152,21.292,16.152z M21.304,16.428c-0.232,0-0.424,0.073-0.573,0.218
|
||||
c-0.149,0.146-0.225,0.331-0.225,0.558c0,0.219,0.075,0.401,0.226,0.546c0.15,0.146,0.338,0.219,0.563,0.219
|
||||
c0.227,0,0.416-0.074,0.567-0.223s0.228-0.333,0.228-0.554c0-0.216-0.076-0.396-0.228-0.543S21.524,16.428,21.304,16.428z"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_19_" gradientUnits="userSpaceOnUse" x1="17.8348" y1="39.2776" x2="13.8546" y2="-11.2175">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.15" style="stop-color:#E3CBCB"/>
|
||||
<stop offset="0.2442" style="stop-color:#DBC3C3"/>
|
||||
<stop offset="0.323" style="stop-color:#CCB6B6"/>
|
||||
<stop offset="0.3933" style="stop-color:#B7A3A3"/>
|
||||
<stop offset="0.4574" style="stop-color:#9D8B8B"/>
|
||||
<stop offset="0.5013" style="stop-color:#867676"/>
|
||||
<stop offset="0.8106" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_19_)" d="M16,29.999c-0.557,0-1.146-0.255-1.573-0.683L2.684,17.572C2.251,17.229,2,16.663,2,16
|
||||
c0-0.557,0.255-1.145,0.684-1.573L14.428,2.683C14.771,2.251,15.337,2,16,2c0.557,0,1.145,0.255,1.573,0.683l11.744,11.745
|
||||
C29.749,14.77,30,15.336,30,16c0,0.557-0.255,1.145-0.683,1.572L17.573,29.316C17.229,29.749,16.663,29.999,16,29.999z
|
||||
M15.036,29.152c0.217,0.284,0.638,0.458,1.055,0.458c0.386,0,0.76-0.161,1.053-0.454l5.287-5.288l1.998-4.621v2.713l4.817-4.816
|
||||
c0.212-0.289,0.376-0.701,0.458-1.193c-0.004-0.336-0.165-0.709-0.458-1.001L23.778,9.48l-4.582-1.909h2.672l-4.816-4.817
|
||||
C16.838,2.473,16.417,2.3,16,2.3c-0.385,0-0.759,0.162-1.052,0.455L9.935,7.768l-2.091,5.291V9.95l-4.999,4.998
|
||||
C2.564,15.162,2.391,15.583,2.391,16c0,0.386,0.162,0.76,0.455,1.053l5.288,5.288l4.916,2.088H10.15L15.036,29.152z"/>
|
||||
<linearGradient id="SVGID_20_" gradientUnits="userSpaceOnUse" x1="10.7792" y1="807.737" x2="21.1214" y2="843.9145" gradientTransform="matrix(1 0 0 1 0 -810)">
|
||||
<stop offset="0" style="stop-color:#E6CDCD"/>
|
||||
<stop offset="0.4738" style="stop-color:#867676"/>
|
||||
<stop offset="0.8284" style="stop-color:#443A3A"/>
|
||||
<stop offset="0.9944" style="stop-color:#2B2323"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_20_)" d="M29.819,14.555L17.445,2.181C17.084,1.82,16.542,1.549,16,1.549s-1.084,0.181-1.445,0.632
|
||||
L2.181,14.555C1.82,14.916,1.549,15.458,1.549,16c0,0.542,0.181,1.084,0.632,1.445l12.374,12.374
|
||||
c0.361,0.361,0.903,0.632,1.445,0.632c0.542,0,1.084-0.181,1.445-0.632l12.374-12.374c0.361-0.361,0.632-0.903,0.632-1.445
|
||||
C30.451,15.458,30.271,14.916,29.819,14.555z M29.458,17.355l-5.329,5.329v-1.987l-1.445,3.342l-5.329,5.329
|
||||
c-0.361,0.361-0.813,0.542-1.264,0.542c-0.452,0-0.994-0.181-1.264-0.542l-5.419-5.239h2.168l-3.613-1.535l-5.329-5.329
|
||||
C2.271,16.903,2.091,16.452,2.091,16c0-0.452,0.181-0.994,0.542-1.264l5.51-5.51v2.258L9.678,7.6l5.058-5.058
|
||||
C15.097,2.181,15.548,2,16,2s0.994,0.181,1.264,0.542l5.329,5.329h-1.897l3.252,1.355l5.51,5.51C29.819,15.097,30,15.548,30,16
|
||||
C29.909,16.542,29.729,16.994,29.458,17.355z"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
@@ -1,265 +1,265 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_2_1_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#282525" d="M15.514,31.541c-3.655-1.191-8.36-5.684-10.651-10.008s-3.205-9.796-3.361-10.75
|
||||
C1.362,9.928,1.029,5.738,1.029,5.149c0-0.588,0.149-0.96,0.847-1.393C2.236,3.533,5.162,2.075,8.1,1.354
|
||||
c2.938-0.72,7.967-0.72,7.967-0.72l0.091,0.003c0,0,5.029,0,7.966,0.72c2.938,0.721,5.863,2.179,6.225,2.402
|
||||
c0.696,0.433,0.846,0.805,0.846,1.393s-0.333,4.778-0.474,5.634c-0.155,0.954-1.069,6.426-3.36,10.75s-7.066,8.855-10.65,10.006
|
||||
C16.258,31.689,15.966,31.689,15.514,31.541z"/>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="20.6953" y1="23.6855" x2="15.786" y2="11.4275">
|
||||
<stop offset="0" style="stop-color:#000000"/>
|
||||
<stop offset="0.1638" style="stop-color:#030303"/>
|
||||
<stop offset="0.2944" style="stop-color:#0D0D0D"/>
|
||||
<stop offset="0.4136" style="stop-color:#1E1E1E"/>
|
||||
<stop offset="0.526" style="stop-color:#363636"/>
|
||||
<stop offset="0.6338" style="stop-color:#545454"/>
|
||||
<stop offset="0.7379" style="stop-color:#7A7A7A"/>
|
||||
<stop offset="0.8391" style="stop-color:#A7A7A7"/>
|
||||
<stop offset="0.9356" style="stop-color:#D9D9D9"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path opacity="0.35" fill="url(#SVGID_1_)" d="M15.928,30.643c-0.011-0.002-0.053-0.008-0.146-0.039
|
||||
c-3.331-1.086-7.834-5.357-10.042-9.521c-2.037-3.848-2.978-8.664-3.288-10.555c-0.136-0.826,1.066,1.648,3.656,1.472
|
||||
c2.589-0.178,2.255-0.48,5.095-1.177c2.691-0.66-0.375-1.951,0-1.952l2.703-0.373l1.428,2.607c0.049,0,2.433-2.118,5.218-1.435
|
||||
c2.839,0.696,3.595-0.359,4.468-0.167c1.39,0.307,1.923,1.75,2.68,1.788c0.759,0.037,1.831-1.586,1.695-0.761
|
||||
c-0.31,1.892-1.251,6.708-3.289,10.552c-2.179,4.115-6.773,8.475-10.034,9.521C15.98,30.635,15.94,30.641,15.928,30.643z"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="20.4844" y1="3.8057" x2="25.1602" y2="3.8057">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_2_)" d="M20.484,1.849c1.662,1.21,3.143,2.288,4.419,3.914c0.628-1.088-0.013-2.432-0.661-3.372L20.484,1.849
|
||||
z"/>
|
||||
<path fill="#282525" d="M25.263,16.123c-0.003,0.149-0.006,0.299-0.009,0.447c-0.047,0.121-0.114,0.229-0.175,0.335
|
||||
c-0.091-0.018-0.396-0.174-0.468-0.139c-0.004,0.008-0.01,0.016-0.016,0.024c-0.006,0.002-0.013,0.006-0.017,0.008
|
||||
c-0.013,0.025,0.016,0.035,0.017,0.041c0.016,0.087-0.007,0.274,0.009,0.359c-0.006,0.007-0.012,0.016-0.019,0.025
|
||||
c-0.052,0.002-0.072-0.015-0.124-0.034c-0.016,0.003-0.034,0.006-0.049,0.009c-0.077,0.242-0.205,0.766-0.543,0.676
|
||||
c-0.211-0.057-0.384-0.242-0.584-0.309c0-0.006,0-0.012,0-0.018c0.125-0.058,0.191-0.18,0.311-0.228
|
||||
c-0.035-0.076-0.198-0.113-0.285-0.163c-0.222-0.131-0.444-0.261-0.667-0.392c-0.695-0.469-1.223-1.057-1.566-1.868
|
||||
c-0.075-0.174-0.302-0.564-0.233-0.791c0.133-0.447,0.592-0.07,0.94-0.163c0.241-0.064,0.411-0.109,0.691-0.156
|
||||
c0.27-0.042,0.826,0.103,1.026,0.163c0.099,0.02,0.195,0.039,0.292,0.057c0.15,0.068,0.216,0.279,0.317,0.401
|
||||
c0.119,0.139,0.401,0.208,0.617,0.218c0-0.005,0-0.01,0-0.015c-0.29-0.149-0.121-0.349-0.226-0.58
|
||||
c-0.054-0.116-0.19-0.198-0.191-0.358c0.441-0.153,1.388,0.477,1.533,0.84c0.062,0.153,0.019,0.313-0.05,0.448
|
||||
c-0.007,0.009-0.011,0.018-0.017,0.025c0.29-0.068,0.918-0.477,0.792-0.873c-0.072-0.227-0.285-0.442-0.408-0.636
|
||||
c-0.088-0.136-0.17-0.348-0.3-0.44c0.02-0.041,0.058-0.049,0.108-0.058c0.008-0.024,0.017-0.048,0.024-0.073
|
||||
c-0.142-0.079-0.282-0.267-0.383-0.391c-0.308-0.289-0.612-0.577-0.918-0.864c-0.189-0.128-0.377-0.256-0.567-0.384
|
||||
c-0.252-0.181-0.482-0.403-0.758-0.563c-0.124-0.062-0.25-0.126-0.375-0.188c-0.092-0.044-0.2-0.038-0.283-0.106
|
||||
c-0.293-0.241-0.518-0.549-0.759-0.84c-0.197-0.236-0.315-0.534-0.467-0.791c-0.385-0.65-0.666-1.373-0.958-2.063
|
||||
c-0.152-0.354-0.371-0.748-0.593-1.052c-0.204-0.281-0.32-0.628-0.509-0.914c0.026-0.033-0.091-0.164-0.108-0.196
|
||||
c-0.111-0.206-0.223-0.413-0.334-0.619c-0.458-0.862-0.96-1.74-1.56-2.496C17.059,0.98,16.913,2.38,16.457,2
|
||||
c-0.15-0.125-0.323-0.268-0.442-0.423c-0.081-0.058-0.162-0.114-0.242-0.172c-0.137-0.124-5.469,0.381-6.812,0.59
|
||||
C7.965,2.15,6.677,2.851,7.639,3.255c0.331,0.139,0.632,0.167,0.917,0.318c0,0.03,0,0.059,0,0.089
|
||||
C8.434,3.749,8.335,3.864,8.222,3.956c0.027,0.713,0.533,1.151,1.009,1.418c0.113,0.06,0.228,0.12,0.342,0.18
|
||||
C9.575,5.57,9.578,5.586,9.581,5.603c0.106,0.148,0.241,0.314,0.367,0.449c0.081,0.087,0.264,0.194,0.309,0.302
|
||||
c0,0.055,0,0.109,0,0.164c0.066,0.223,0.124,0.417,0.25,0.628c0.31,0.516,0.879,0.813,1.442,1.06
|
||||
c0.117,0.052,0.288,0.059,0.425,0.123c0.204,0.095,0.386,0.117,0.583,0.195c0.076,0.03,0.209,0.096,0.317,0.106
|
||||
c-0.028,0.046-0.124,0.019-0.192,0.007c-0.269-0.045-0.496,0.035-0.717,0.098c0.037,0.256,0.515,0.602,0.701,0.75
|
||||
c0.384,0.309,0.83,0.567,1.268,0.824c0.172,0.084,0.344,0.168,0.516,0.253c0.175,0.104,0.382,0.175,0.56,0.285
|
||||
c0.079,0.049,0.157,0.113,0.259,0.139c0.002,0.006,0.005,0.011,0.008,0.017c-0.02,0.011-0.039,0.021-0.058,0.033
|
||||
c-0.083-0.003-0.167-0.006-0.251-0.008c-0.263-0.042-0.458-0.136-0.7-0.229c-0.07-0.022-0.139-0.043-0.208-0.065
|
||||
c-0.158-0.099-0.321-0.117-0.492-0.196c-0.146-0.067-0.306-0.161-0.483-0.196c-0.293-0.056-0.578,0.121-0.768,0.196
|
||||
c-0.161,0.064-0.348,0.082-0.516,0.123c-0.363,0.089-0.798,0.253-1.109,0.481c-0.611,0.446-0.853,0.97-1.092,1.664
|
||||
c-0.054,0.158-0.202,0.756,0.009,0.815c0.088,0.069,0.542,0.004,0.674,0.042c0.201,0.057,0.462-0.015,0.734,0.033
|
||||
c0.355,0.061,0.694-0.014,1.059,0.024c0.191,0.003,0.384,0.005,0.575,0.007c0.114-0.004,0.229-0.009,0.342-0.015
|
||||
c0.271,0.029,0.928-0.125,1.018-0.081c0.37-0.025,1.328-0.104,1.492,0.081c0.072,0.083,0.071,0.27,0.101,0.35
|
||||
c0.063,0.135,0.127,0.267,0.19,0.4c0.204,0.371,0.556,0.643,0.784,0.996c0.196,0.303,0.301,0.67,0.417,1.003
|
||||
c0.054,0.153,0.021,0.291,0.059,0.448c0.094,0.403,0.188,0.717,0.324,1.069c0.04,0.104,0.091,0.423,0.176,0.464
|
||||
c0.003-0.145,0.115-0.262,0.158-0.399c0.009-0.007,0.018-0.012,0.025-0.017c0.037,0.039,0.028,0.095,0.05,0.171
|
||||
c0.057,0.194,0.125,0.392,0.199,0.587c0.032,0.081,0.032,0.172,0.06,0.229c0.079,0.163,0.235,0.303,0.392,0.391
|
||||
c0.054,0.024,0.105,0.049,0.16,0.073c0.027,0.006,0.06,0.012,0.091,0.017c-0.1-0.216-0.137-0.285-0.091-0.546
|
||||
c0.021-0.012,0.043-0.021,0.065-0.033c0.003,0,0.006,0,0.008,0c0,0.408,0.374,0.86,0.584,1.125c0.069,0.134,0.139,0.267,0.208,0.399
|
||||
c-0.059,0.039-0.118,0.076-0.176,0.115c-0.111,0.081-0.276,0.334-0.282,0.505c0.16,0.183,0.558,0.6,0.841,0.578
|
||||
c0.178-0.013,0.398,0.049,0.483-0.039c-0.28-0.052-0.766-0.298-0.825-0.588c-0.058-0.089,0.236-0.299,0.316-0.335
|
||||
c0.29-0.125,0.596-0.352,0.86-0.383c0.075-0.009,0.229-0.102,0.3-0.065c0.117,0.06,0.197,0.446,0.192,0.588
|
||||
c0.007,0.005,0.017,0.01,0.024,0.015c0.113-0.129,0.147-0.533,0.051-0.717c0.061-0.051,0.193-0.043,0.249-0.073
|
||||
c0.053,0.067,0.104,0.136,0.158,0.205c0.13,0.183,0.184,0.444,0.176,0.667c0.024-0.01,0.009,0.001,0.024-0.016
|
||||
c0.135-0.101,0.025-0.863-0.084-0.92c0-0.012,0-0.024,0-0.033c0.166-0.047,0.292-0.196,0.4-0.302c0.012,0,0.022,0,0.033,0
|
||||
c0.059,0.062,0.116,0.124,0.176,0.187c0.13,0.139,0.389,0.553,0.409,0.774c0.01,0,0.021,0,0.032,0
|
||||
c0.024-0.528,0.054-0.991-0.3-1.346c-0.101-0.101-0.251-0.153-0.359-0.228c-0.019,0.003-0.037,0.005-0.058,0.009
|
||||
c-0.152,0.247-0.264,0.472-0.55,0.586c-0.123-0.107-0.227-0.278-0.4-0.335c-0.016,0.012-0.014,0.008-0.025,0.025
|
||||
c-0.036,0.035-0.031,0.118-0.065,0.18c-0.048,0.057-0.097,0.114-0.143,0.171c-0.006,0-0.012,0-0.017,0
|
||||
c-0.045-0.036-0.075-0.09-0.142-0.081c-0.012,0.002-0.5,0.354-0.525,0.393c-0.186-0.05-0.522-0.666-0.551-0.851
|
||||
c0.063,0.014,0.227,0.087,0.259,0.124c0.025,0.003,0.05,0.006,0.075,0.007c-0.008-0.074-0.045-0.096-0.066-0.146
|
||||
c-0.095-0.216-0.179-0.506-0.101-0.76c0.009-0.001,0.017-0.004,0.025-0.007c0.212,0.298,0.709,0.726,1.135,0.799
|
||||
c-0.059-0.227-0.157-0.368-0.067-0.653c0.128-0.023,0.289,0.119,0.533,0.124c0.002-0.007,0.006-0.013,0.009-0.018
|
||||
c-0.085-0.176-0.141-0.358-0.018-0.521c0.482,0.026,1.199,0.295,1.318,0.717c0.008,0,0.016,0,0.024,0
|
||||
c-0.015-0.2-0.032-0.422-0.05-0.619c0.167,0.014,0.475,0.433,0.649,0.531c0.023,0.159-0.123,0.64-0.032,0.782
|
||||
c0.055,0.091,0.219,0.084,0.333,0.122c0.402,0.133,0.844,0.027,1.075-0.245c-0.006-0.006-0.012-0.01-0.017-0.016
|
||||
c-0.347,0.149-1.192,0.066-1.025-0.498c0.116-0.391,0.26-0.762,0.617-1.019c0.045-0.041,0.088-0.083,0.134-0.122
|
||||
c0.064-0.015,0.282,0.191,0.316,0.235c0.05,0.065,0.131,0.14,0.149,0.229c0.106-0.075-0.181-0.628-0.283-0.685
|
||||
c-0.003-0.009-0.006-0.016-0.009-0.024c0.08-0.037,0.115-0.102,0.176-0.155c0.225,0.066,0.593,0.397,0.667,0.611
|
||||
c0.008,0.005,0.017,0.011,0.025,0.017c-0.011-0.251-0.301-0.738-0.508-0.808c0.011-0.165,0.146-0.275,0.14-0.472
|
||||
c0.003-0.005,0.006-0.007,0.009-0.01c0.276,0.039,0.521,0.236,0.708,0.376c0.063,0.045,0.103,0.121,0.176,0.154
|
||||
c0.023,0.022,0.045,0.044,0.066,0.065c0.003-0.002,0.006-0.006,0.009-0.008C26.432,16.669,25.903,16.11,25.263,16.123z"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="1.4673" y1="12.2451" x2="24.4434" y2="12.2451">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_3_)" d="M21.74,16.237c-0.008,0.312-0.014,0.628-0.02,0.935c-0.096,0.254-0.234,0.479-0.357,0.699
|
||||
c-0.182-0.035-0.807-0.359-0.951-0.287c-0.01,0.01-0.021,0.031-0.033,0.049c-0.012,0.002-0.023,0.012-0.033,0.018
|
||||
c-0.027,0.049,0.031,0.076,0.033,0.082c0.033,0.182-0.012,0.576,0.018,0.748c-0.012,0.02-0.021,0.035-0.035,0.055
|
||||
c-0.109,0.006-0.148-0.025-0.256-0.07l-0.102,0.016c-0.152,0.508-0.416,1.6-1.107,1.414c-0.426-0.115-0.781-0.506-1.188-0.646
|
||||
v-0.035c0.256-0.119,0.387-0.371,0.629-0.475c-0.066-0.16-0.404-0.23-0.576-0.34c-0.455-0.273-0.91-0.543-1.364-0.814
|
||||
c-1.418-0.979-2.492-2.208-3.196-3.897c-0.153-0.367-1.164-1.681-1.026-2.153c0.969,0.125,1.758,0.356,2.472,0.162
|
||||
c0.491-0.133,0.838-0.227,1.414-0.322c0.544-0.091,1.681,0.212,2.091,0.34c0.195,0.039,0.396,0.08,0.596,0.119
|
||||
c0.305,0.141,0.436,0.581,0.646,0.833c0.238,0.293,0.818,0.436,1.258,0.46v-0.035c-0.596-0.312-0.246-0.728-0.459-1.207
|
||||
c-0.111-0.244-0.391-0.415-0.393-0.749c0.902-0.318,2.832,0.995,3.131,1.752c0.123,0.319,0.035,0.654-0.104,0.936
|
||||
c-0.016,0.018-0.02,0.033-0.035,0.05c0.592-0.14,1.873-0.994,1.617-1.819c-0.146-0.473-0.58-0.922-0.834-1.327
|
||||
c-0.18-0.285-0.346-0.724-0.611-0.918c0.037-0.084,0.119-0.102,0.219-0.119c0.02-0.051,0.039-0.102,0.051-0.153
|
||||
c-0.291-0.164-0.572-0.556-0.783-0.816c-0.48-0.464-0.961-0.93-1.444-1.394c-0.062-0.1-0.135-0.194-0.233-0.268
|
||||
c-0.472-0.357-0.847-1.135-1.268-1.534c-0.419-0.398-1.214-0.867-1.214-0.867s0.198,0.294,0.42,0.571
|
||||
c0.09,0.113,0.197,0.333,0.293,0.553c-0.362-0.295-0.724-0.598-1.128-0.838c-0.252-0.13-0.508-0.261-0.764-0.391
|
||||
c-0.184-0.092-0.408-0.079-0.58-0.221c-0.332-0.282-0.623-0.609-0.901-0.948h0.278c-0.449-0.85-0.926-1.7-1.439-2.515
|
||||
c-1.728,0.071-4.2,0.244-5.942,0.671C5.591,2.262,2.665,3.72,2.305,3.943C1.689,4.325,1.51,4.669,1.475,5.147
|
||||
c0.053,0.03,0.111,0.054,0.163,0.086c0.16,0.102,0.321,0.235,0.527,0.29c0.004,0.011,0.011,0.022,0.017,0.034
|
||||
c-0.04,0.022-0.08,0.045-0.118,0.068C1.892,5.62,1.722,5.614,1.553,5.609C1.521,5.604,1.498,5.591,1.467,5.585
|
||||
c0.05,1.074,0.336,4.605,0.464,5.384c0,0.004,0.002,0.013,0.003,0.018c0.333,0.033,2.04,0.973,2.144,1.093
|
||||
c0.146,0.175,0.146,0.561,0.203,0.732c0.131,0.277,1.618,1.473,1.75,1.75c0.414,0.772-1.198,0.282-1.198,0.282
|
||||
s1.818,1.607,2.013,2.195c0.041,0.123-1.202-0.223-1.162-0.104c0.044,0.129,0.05,0.25,0.058,0.373l0.196,0.035
|
||||
c0,0,2.756,2.012,2.868,2.123c0.09,0.092,1.949,1.609,2.68,2.207c-0.042-0.266-0.043-0.537,0.033-0.795
|
||||
c0.015-0.004,0.034-0.01,0.051-0.014c0.434,0.621,1.447,1.512,2.311,1.666c-0.117-0.473-0.317-0.771-0.136-1.363
|
||||
c0.262-0.047,0.592,0.248,1.091,0.256c0.004-0.012,0.009-0.021,0.015-0.035c-0.171-0.363-0.285-0.744-0.031-1.084
|
||||
c0.982,0.053,2.446,0.611,2.686,1.494h0.051c-0.033-0.418-0.066-0.883-0.102-1.291c0.338,0.025,0.967,0.9,1.324,1.104
|
||||
c0.049,0.336-0.25,1.336-0.066,1.637c0.113,0.189,0.449,0.174,0.682,0.25c0.82,0.281,1.719,0.061,2.189-0.51
|
||||
c-0.01-0.01-0.018-0.02-0.033-0.033c-0.703,0.314-2.43,0.139-2.09-1.037c0.236-0.813,0.531-1.586,1.258-2.127
|
||||
c0.09-0.084,0.182-0.168,0.273-0.252c0.133-0.027,0.576,0.398,0.645,0.49c0.104,0.135,0.268,0.293,0.307,0.479
|
||||
c0.217-0.154-0.371-1.311-0.58-1.432c-0.004-0.014-0.008-0.031-0.016-0.049c0.166-0.076,0.234-0.209,0.355-0.324
|
||||
c0.459,0.143,1.213,0.83,1.363,1.275c0.018,0.012,0.031,0.021,0.051,0.035c-0.023-0.521-0.613-1.541-1.037-1.688
|
||||
c0.025-0.342,0.301-0.57,0.289-0.982c0.004-0.006,0.012-0.014,0.018-0.02c0.561,0.082,1.063,0.494,1.443,0.785
|
||||
c0.127,0.094,0.211,0.254,0.359,0.322c0.045,0.045,0.09,0.09,0.137,0.137c0.004-0.008,0.01-0.012,0.016-0.014
|
||||
C24.121,17.377,23.045,16.209,21.74,16.237z M21.777,10.059c0,0-0.334,0.296-0.682,0.093c-0.273-0.159-0.486-1.172-0.486-1.172
|
||||
l-0.012-0.294c0,0,0.199,0.293,0.375,0.536c0.242,0.344,0.377,0.505,0.484,0.607C21.621,9.975,21.777,10.059,21.777,10.059z"/>
|
||||
<g>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="21.4482" y1="19.2559" x2="12.1449" y2="2.554">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_4_)" d="M16.116,31.229c-0.13,0-0.272-0.025-0.461-0.086c-3.473-1.133-8.139-5.529-10.402-9.801
|
||||
c-2.06-3.89-3.006-8.726-3.318-10.624C1.792,9.854,1.467,5.684,1.467,5.151c0-0.433,0.063-0.677,0.645-1.038
|
||||
C2.344,3.97,5.217,2.499,8.208,1.765c2.799-0.686,7.643-0.708,7.848-0.708l0.097,0.003h0.005c0.049,0,5.005,0.008,7.859,0.708
|
||||
c2.989,0.733,5.863,2.205,6.095,2.348c0.582,0.361,0.645,0.605,0.645,1.038c0,0.533-0.324,4.704-0.467,5.568
|
||||
c-0.313,1.898-1.258,6.735-3.318,10.624c-1.093,2.063-2.78,4.223-4.756,6.084s-3.979,3.181-5.644,3.715
|
||||
C16.384,31.204,16.244,31.229,16.116,31.229z M16.05,1.441c-0.195,0-4.993,0.021-7.744,0.696C5.365,2.858,2.554,4.296,2.328,4.436
|
||||
C1.865,4.723,1.865,4.849,1.865,5.151c0,0.527,0.321,4.653,0.462,5.508c0.309,1.88,1.246,6.668,3.28,10.509
|
||||
c2.222,4.195,6.787,8.507,10.174,9.61c0.146,0.049,0.249,0.068,0.334,0.068c0.083,0,0.186-0.02,0.33-0.066
|
||||
c1.608-0.517,3.558-1.804,5.49-3.625c1.945-1.833,3.607-3.958,4.682-5.984c2.033-3.84,2.97-8.628,3.279-10.509
|
||||
c0.141-0.855,0.463-4.981,0.463-5.508c0-0.302,0-0.428-0.463-0.715c-0.228-0.141-3.039-1.578-5.979-2.3
|
||||
c-2.805-0.687-7.711-0.696-7.76-0.696L16.05,1.441z"/>
|
||||
<path fill="#282525" d="M16.055,1.057l0.098,0.003h0.005c0.049,0,5.005,0.008,7.859,0.708c2.989,0.733,5.863,2.205,6.095,2.348
|
||||
c0.582,0.361,0.645,0.605,0.645,1.038c0,0.533-0.324,4.704-0.467,5.568c-0.313,1.898-1.258,6.735-3.318,10.624
|
||||
c-1.093,2.063-2.78,4.223-4.756,6.084s-3.979,3.181-5.644,3.715c-0.187,0.06-0.327,0.085-0.456,0.085
|
||||
c-0.13,0-0.272-0.025-0.461-0.086c-3.473-1.133-8.139-5.529-10.402-9.801c-2.06-3.89-3.006-8.726-3.318-10.624
|
||||
C1.792,9.854,1.467,5.684,1.467,5.151c0-0.433,0.063-0.677,0.645-1.038C2.344,3.97,5.217,2.499,8.208,1.765
|
||||
C11.007,1.079,15.851,1.058,16.055,1.057 M16.116,30.847c0.083,0,0.186-0.02,0.33-0.066c1.608-0.517,3.558-1.804,5.49-3.625
|
||||
c1.945-1.833,3.607-3.958,4.682-5.984c2.033-3.84,2.97-8.628,3.279-10.509c0.141-0.855,0.463-4.981,0.463-5.508
|
||||
c0-0.302,0-0.428-0.463-0.715c-0.228-0.141-3.039-1.578-5.979-2.3c-2.805-0.687-7.711-0.696-7.76-0.696L16.05,1.441
|
||||
c-0.195,0-4.993,0.021-7.744,0.696C5.365,2.858,2.554,4.296,2.328,4.436C1.865,4.723,1.865,4.849,1.865,5.151
|
||||
c0,0.527,0.321,4.653,0.462,5.508c0.309,1.88,1.246,6.668,3.28,10.509c2.222,4.195,6.787,8.507,10.174,9.61
|
||||
C15.928,30.827,16.03,30.847,16.116,30.847 M16.061,0.739h-0.005c-0.206,0-5.086,0.021-7.923,0.717
|
||||
c-3.029,0.743-5.951,2.24-6.187,2.387C1.272,4.26,1.148,4.611,1.148,5.151c0,0.538,0.329,4.748,0.472,5.62
|
||||
c0.314,1.914,1.269,6.789,3.352,10.721c2.295,4.336,7.043,8.8,10.583,9.953c0.221,0.072,0.395,0.105,0.56,0.105
|
||||
c0.163,0,0.334-0.031,0.552-0.102c1.71-0.549,3.757-1.894,5.765-3.787c2-1.885,3.712-4.075,4.819-6.167
|
||||
c2.082-3.931,3.037-8.807,3.351-10.721c0.144-0.871,0.473-5.081,0.473-5.619c0-0.54-0.123-0.891-0.796-1.308
|
||||
c-0.236-0.146-3.16-1.645-6.188-2.387c-2.889-0.708-7.884-0.717-7.934-0.717h-0.003l-0.089-0.003H16.061L16.061,0.739z
|
||||
M16.116,30.529c-0.048,0-0.127-0.019-0.235-0.054c-3.321-1.081-7.803-5.324-9.992-9.456c-2.012-3.8-2.941-8.547-3.247-10.412
|
||||
C2.502,9.76,2.183,5.673,2.183,5.151c0-0.116,0.001-0.178,0.019-0.209c0.02-0.037,0.086-0.107,0.293-0.235
|
||||
c0.223-0.138,2.984-1.548,5.886-2.26c2.684-0.659,7.399-0.686,7.664-0.687l0.103,0.003h0.005h0.005
|
||||
c0.048,0,4.917,0.008,7.684,0.687c2.901,0.711,5.664,2.123,5.887,2.261c0.207,0.128,0.273,0.198,0.294,0.234
|
||||
c0.018,0.032,0.019,0.094,0.019,0.21c0,0.522-0.319,4.609-0.458,5.457c-0.307,1.865-1.235,6.613-3.247,10.412
|
||||
c-1.057,1.995-2.697,4.092-4.617,5.901c-1.898,1.789-3.806,3.051-5.371,3.554C16.24,30.513,16.164,30.529,16.116,30.529
|
||||
L16.116,30.529z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path fill="#282525" d="M23.386,30.365c-4.477-1.824-9.65-1.919-14.563,0.091c-0.701-1.597-1.4-3.194-2.1-4.791
|
||||
c6.301-2.618,13.004-2.466,18.785-0.063C24.909,27.113,24.024,28.887,23.386,30.365z"/>
|
||||
</g>
|
||||
<g>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="17.0723" y1="33.1914" x2="15.6923" y2="22.6429">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_5_)" d="M7.194,25.856l0.183-0.072c2.853-1.111,5.832-1.675,8.853-1.675c2.843,0,5.63,0.5,8.289,1.486
|
||||
l0.044,0.017l0.462,0.192l-1.788,4.108l-0.047-0.019l-0.005,0.01c-2.203-0.852-4.53-1.282-6.916-1.282
|
||||
c-2.414,0-4.799,0.441-7.093,1.313l-0.167,0.063L7.194,25.856z M16.231,24.486c-2.88,0-5.726,0.521-8.456,1.549l-0.079,0.029
|
||||
l1.515,3.455l0.07-0.025c2.263-0.828,4.613-1.248,6.986-1.248c2.265,0,4.485,0.383,6.598,1.14l0.071,0.024l1.502-3.441
|
||||
l-0.079-0.03C21.753,24.975,19.019,24.486,16.231,24.486z"/>
|
||||
<g>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="11.4873" y1="33.9238" x2="10.1073" y2="23.3755">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_6_)" d="M10.108,28.419c-0.076-0.224-0.141-0.399-0.196-0.532c0.135,0.021,0.251,0.029,0.351,0.024
|
||||
c0.1-0.004,0.184-0.017,0.255-0.035c0.093-0.024,0.164-0.059,0.211-0.101c0.047-0.043,0.064-0.09,0.05-0.144
|
||||
c-0.005-0.018-0.013-0.035-0.022-0.05c-0.01-0.015-0.025-0.031-0.046-0.048c-0.02-0.017-0.048-0.034-0.083-0.051l-0.373-0.18
|
||||
c-0.086-0.042-0.148-0.07-0.184-0.091c-0.07-0.039-0.129-0.078-0.172-0.116c-0.045-0.039-0.08-0.08-0.108-0.124
|
||||
c-0.028-0.046-0.049-0.096-0.063-0.149c-0.018-0.064-0.024-0.132-0.018-0.201c0.006-0.068,0.024-0.135,0.056-0.202
|
||||
c0.031-0.066,0.079-0.13,0.145-0.191c0.065-0.06,0.139-0.107,0.221-0.146c0.083-0.037,0.17-0.069,0.262-0.094
|
||||
c0.181-0.048,0.382-0.081,0.606-0.096c0.022,0.072,0.045,0.138,0.066,0.198c0.021,0.06,0.06,0.165,0.117,0.314
|
||||
c-0.109-0.014-0.206-0.017-0.291-0.01c-0.085,0.006-0.157,0.017-0.216,0.034c-0.083,0.022-0.148,0.057-0.195,0.103
|
||||
c-0.046,0.046-0.063,0.091-0.051,0.137c0.006,0.022,0.016,0.041,0.03,0.06c0.014,0.018,0.036,0.038,0.067,0.058
|
||||
c0.031,0.021,0.07,0.043,0.117,0.064c0.047,0.023,0.121,0.055,0.22,0.097l0.141,0.06c0.042,0.02,0.087,0.042,0.137,0.072
|
||||
c0.05,0.026,0.095,0.057,0.134,0.088c0.039,0.03,0.071,0.061,0.095,0.088c0.023,0.028,0.044,0.058,0.061,0.087
|
||||
c0.016,0.031,0.029,0.065,0.039,0.103c0.026,0.097,0.028,0.193,0.006,0.293c-0.022,0.1-0.068,0.189-0.137,0.268
|
||||
c-0.07,0.08-0.152,0.143-0.247,0.192c-0.095,0.051-0.198,0.09-0.311,0.121C10.61,28.365,10.385,28.398,10.108,28.419z"/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="13.5469" y1="33.6533" x2="12.167" y2="23.1061">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_7_)" d="M12.41,27.889c-0.038-0.539-0.105-1.127-0.204-1.766l-0.692,0.137l-0.023-0.183
|
||||
c-0.012-0.097-0.027-0.204-0.045-0.319c0.31-0.052,0.67-0.113,1.083-0.184l0.403-0.07l0.393-0.067l0.212-0.039l0.018,0.162
|
||||
c0.01,0.087,0.02,0.157,0.028,0.214c0.007,0.057,0.013,0.1,0.019,0.128c-0.235,0.027-0.429,0.056-0.58,0.082l-0.114,0.018
|
||||
c0.017,0.197,0.035,0.376,0.054,0.541c0.029,0.236,0.058,0.465,0.09,0.688c0.031,0.221,0.059,0.399,0.082,0.535
|
||||
c-0.179,0.028-0.294,0.047-0.347,0.056C12.738,27.829,12.613,27.853,12.41,27.889z"/>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="15.8555" y1="33.3516" x2="14.4756" y2="22.8043">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_8_)" d="M13.979,27.627c0.009-0.195,0.014-0.372,0.016-0.528c0.002-0.156,0.001-0.337-0.003-0.543
|
||||
c-0.004-0.206-0.011-0.423-0.021-0.65c-0.01-0.229-0.02-0.41-0.028-0.545c0.138-0.006,0.249-0.011,0.335-0.017
|
||||
c0.088-0.006,0.195-0.015,0.322-0.028c0.126-0.014,0.25-0.024,0.371-0.032c0.14-0.008,0.267-0.01,0.378-0.006
|
||||
c0.083,0.002,0.159,0.013,0.229,0.032c0.069,0.021,0.128,0.047,0.176,0.078c0.049,0.032,0.09,0.068,0.124,0.11
|
||||
c0.034,0.04,0.061,0.089,0.082,0.146c0.02,0.056,0.033,0.117,0.037,0.185c0.005,0.074,0,0.144-0.015,0.209
|
||||
c-0.014,0.065-0.04,0.128-0.076,0.188c-0.037,0.06-0.084,0.112-0.143,0.157c-0.059,0.046-0.142,0.093-0.249,0.144l0.1,0.204
|
||||
c0.028,0.058,0.057,0.115,0.089,0.174l0.253,0.472c0.011,0.02,0.032,0.06,0.061,0.12c-0.181,0.01-0.304,0.017-0.367,0.021
|
||||
c-0.079,0.004-0.209,0.015-0.391,0.028c-0.021-0.057-0.06-0.16-0.116-0.313c-0.023-0.064-0.042-0.113-0.058-0.148
|
||||
c-0.032-0.076-0.078-0.184-0.138-0.32l-0.201-0.458c0.061,0.007,0.119,0.009,0.177,0.005c0.08-0.005,0.152-0.021,0.217-0.051
|
||||
c0.064-0.029,0.111-0.069,0.142-0.121c0.029-0.054,0.043-0.108,0.04-0.164c-0.003-0.049-0.019-0.089-0.047-0.123
|
||||
c-0.028-0.033-0.068-0.059-0.124-0.072c-0.056-0.015-0.141-0.019-0.255-0.012c-0.038,0.003-0.078,0.007-0.12,0.012
|
||||
c-0.041,0.004-0.089,0.009-0.144,0.014c0,0.227,0.006,0.504,0.016,0.828c0.009,0.328,0.023,0.647,0.04,0.961
|
||||
c-0.185,0.011-0.305,0.016-0.359,0.02C14.262,27.605,14.146,27.614,13.979,27.627z"/>
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="17.6396" y1="33.1211" x2="16.2589" y2="22.567">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_9_)" d="M16.317,27.516c0.083-0.888,0.127-1.569,0.137-2.05l0.003-0.214
|
||||
c0.194,0.007,0.323,0.011,0.389,0.012c0.029,0.002,0.148,0.002,0.356,0.004c-0.025,0.249-0.046,0.484-0.063,0.706
|
||||
c-0.021,0.309-0.039,0.599-0.051,0.867s-0.021,0.498-0.023,0.689l-0.34-0.012C16.658,27.519,16.523,27.518,16.317,27.516z"/>
|
||||
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="19.5723" y1="32.8643" x2="18.1927" y2="22.3194">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_10_)" d="M17.421,27.518c0.044-0.203,0.078-0.372,0.102-0.507c0.043-0.238,0.098-0.563,0.162-0.979
|
||||
c0.045-0.289,0.075-0.492,0.088-0.61l0.017-0.142c0.182,0.021,0.309,0.037,0.378,0.045c0.046,0.005,0.164,0.017,0.355,0.036
|
||||
l-0.214,1.223l-0.152,1.015l-0.357-0.043C17.748,27.551,17.623,27.538,17.421,27.518z M18.379,26.42l0.424-0.461l0.346-0.385
|
||||
l0.108-0.133c0.204,0.025,0.342,0.042,0.414,0.05c0.021,0.003,0.151,0.017,0.395,0.04l-0.792,0.802l-0.15,0.161l0.101,0.208
|
||||
l0.578,1.079l-0.405-0.049c-0.088-0.01-0.237-0.025-0.447-0.046C18.838,27.403,18.646,26.981,18.379,26.42z"/>
|
||||
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="21.8867" y1="32.5654" x2="20.5061" y2="22.0126">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_11_)" d="M19.938,27.822c0.092-0.273,0.165-0.501,0.22-0.686c0.056-0.186,0.127-0.431,0.21-0.739
|
||||
c0.084-0.308,0.139-0.512,0.161-0.613l0.032-0.144c0.254,0.062,0.561,0.134,0.921,0.218c0.333,0.076,0.627,0.143,0.883,0.199
|
||||
l-0.016,0.053c-0.005,0.013-0.019,0.059-0.041,0.139l-0.051,0.173c-0.011,0.037-0.02,0.075-0.029,0.113
|
||||
c-0.206-0.056-0.379-0.1-0.521-0.134c-0.155-0.035-0.259-0.06-0.313-0.071c-0.055-0.013-0.141-0.029-0.256-0.051l-0.105,0.365
|
||||
c0.126,0.034,0.273,0.069,0.442,0.108c0.062,0.015,0.223,0.047,0.485,0.1c-0.043,0.137-0.092,0.299-0.146,0.485
|
||||
c-0.186-0.044-0.328-0.078-0.429-0.102c-0.148-0.033-0.316-0.069-0.502-0.104l-0.109,0.389l0.186,0.043
|
||||
c0.055,0.013,0.17,0.037,0.343,0.074l0.335,0.069c0.051,0.011,0.135,0.024,0.252,0.044c-0.049,0.156-0.099,0.319-0.146,0.488
|
||||
c-0.264-0.063-0.551-0.131-0.864-0.204l-0.712-0.163L19.938,27.822z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_2_1_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#282525" d="M15.514,31.541c-3.655-1.191-8.36-5.684-10.651-10.008s-3.205-9.796-3.361-10.75
|
||||
C1.362,9.928,1.029,5.738,1.029,5.149c0-0.588,0.149-0.96,0.847-1.393C2.236,3.533,5.162,2.075,8.1,1.354
|
||||
c2.938-0.72,7.967-0.72,7.967-0.72l0.091,0.003c0,0,5.029,0,7.966,0.72c2.938,0.721,5.863,2.179,6.225,2.402
|
||||
c0.696,0.433,0.846,0.805,0.846,1.393s-0.333,4.778-0.474,5.634c-0.155,0.954-1.069,6.426-3.36,10.75s-7.066,8.855-10.65,10.006
|
||||
C16.258,31.689,15.966,31.689,15.514,31.541z"/>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="20.6953" y1="23.6855" x2="15.786" y2="11.4275">
|
||||
<stop offset="0" style="stop-color:#000000"/>
|
||||
<stop offset="0.1638" style="stop-color:#030303"/>
|
||||
<stop offset="0.2944" style="stop-color:#0D0D0D"/>
|
||||
<stop offset="0.4136" style="stop-color:#1E1E1E"/>
|
||||
<stop offset="0.526" style="stop-color:#363636"/>
|
||||
<stop offset="0.6338" style="stop-color:#545454"/>
|
||||
<stop offset="0.7379" style="stop-color:#7A7A7A"/>
|
||||
<stop offset="0.8391" style="stop-color:#A7A7A7"/>
|
||||
<stop offset="0.9356" style="stop-color:#D9D9D9"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path opacity="0.35" fill="url(#SVGID_1_)" d="M15.928,30.643c-0.011-0.002-0.053-0.008-0.146-0.039
|
||||
c-3.331-1.086-7.834-5.357-10.042-9.521c-2.037-3.848-2.978-8.664-3.288-10.555c-0.136-0.826,1.066,1.648,3.656,1.472
|
||||
c2.589-0.178,2.255-0.48,5.095-1.177c2.691-0.66-0.375-1.951,0-1.952l2.703-0.373l1.428,2.607c0.049,0,2.433-2.118,5.218-1.435
|
||||
c2.839,0.696,3.595-0.359,4.468-0.167c1.39,0.307,1.923,1.75,2.68,1.788c0.759,0.037,1.831-1.586,1.695-0.761
|
||||
c-0.31,1.892-1.251,6.708-3.289,10.552c-2.179,4.115-6.773,8.475-10.034,9.521C15.98,30.635,15.94,30.641,15.928,30.643z"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="20.4844" y1="3.8057" x2="25.1602" y2="3.8057">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_2_)" d="M20.484,1.849c1.662,1.21,3.143,2.288,4.419,3.914c0.628-1.088-0.013-2.432-0.661-3.372L20.484,1.849
|
||||
z"/>
|
||||
<path fill="#282525" d="M25.263,16.123c-0.003,0.149-0.006,0.299-0.009,0.447c-0.047,0.121-0.114,0.229-0.175,0.335
|
||||
c-0.091-0.018-0.396-0.174-0.468-0.139c-0.004,0.008-0.01,0.016-0.016,0.024c-0.006,0.002-0.013,0.006-0.017,0.008
|
||||
c-0.013,0.025,0.016,0.035,0.017,0.041c0.016,0.087-0.007,0.274,0.009,0.359c-0.006,0.007-0.012,0.016-0.019,0.025
|
||||
c-0.052,0.002-0.072-0.015-0.124-0.034c-0.016,0.003-0.034,0.006-0.049,0.009c-0.077,0.242-0.205,0.766-0.543,0.676
|
||||
c-0.211-0.057-0.384-0.242-0.584-0.309c0-0.006,0-0.012,0-0.018c0.125-0.058,0.191-0.18,0.311-0.228
|
||||
c-0.035-0.076-0.198-0.113-0.285-0.163c-0.222-0.131-0.444-0.261-0.667-0.392c-0.695-0.469-1.223-1.057-1.566-1.868
|
||||
c-0.075-0.174-0.302-0.564-0.233-0.791c0.133-0.447,0.592-0.07,0.94-0.163c0.241-0.064,0.411-0.109,0.691-0.156
|
||||
c0.27-0.042,0.826,0.103,1.026,0.163c0.099,0.02,0.195,0.039,0.292,0.057c0.15,0.068,0.216,0.279,0.317,0.401
|
||||
c0.119,0.139,0.401,0.208,0.617,0.218c0-0.005,0-0.01,0-0.015c-0.29-0.149-0.121-0.349-0.226-0.58
|
||||
c-0.054-0.116-0.19-0.198-0.191-0.358c0.441-0.153,1.388,0.477,1.533,0.84c0.062,0.153,0.019,0.313-0.05,0.448
|
||||
c-0.007,0.009-0.011,0.018-0.017,0.025c0.29-0.068,0.918-0.477,0.792-0.873c-0.072-0.227-0.285-0.442-0.408-0.636
|
||||
c-0.088-0.136-0.17-0.348-0.3-0.44c0.02-0.041,0.058-0.049,0.108-0.058c0.008-0.024,0.017-0.048,0.024-0.073
|
||||
c-0.142-0.079-0.282-0.267-0.383-0.391c-0.308-0.289-0.612-0.577-0.918-0.864c-0.189-0.128-0.377-0.256-0.567-0.384
|
||||
c-0.252-0.181-0.482-0.403-0.758-0.563c-0.124-0.062-0.25-0.126-0.375-0.188c-0.092-0.044-0.2-0.038-0.283-0.106
|
||||
c-0.293-0.241-0.518-0.549-0.759-0.84c-0.197-0.236-0.315-0.534-0.467-0.791c-0.385-0.65-0.666-1.373-0.958-2.063
|
||||
c-0.152-0.354-0.371-0.748-0.593-1.052c-0.204-0.281-0.32-0.628-0.509-0.914c0.026-0.033-0.091-0.164-0.108-0.196
|
||||
c-0.111-0.206-0.223-0.413-0.334-0.619c-0.458-0.862-0.96-1.74-1.56-2.496C17.059,0.98,16.913,2.38,16.457,2
|
||||
c-0.15-0.125-0.323-0.268-0.442-0.423c-0.081-0.058-0.162-0.114-0.242-0.172c-0.137-0.124-5.469,0.381-6.812,0.59
|
||||
C7.965,2.15,6.677,2.851,7.639,3.255c0.331,0.139,0.632,0.167,0.917,0.318c0,0.03,0,0.059,0,0.089
|
||||
C8.434,3.749,8.335,3.864,8.222,3.956c0.027,0.713,0.533,1.151,1.009,1.418c0.113,0.06,0.228,0.12,0.342,0.18
|
||||
C9.575,5.57,9.578,5.586,9.581,5.603c0.106,0.148,0.241,0.314,0.367,0.449c0.081,0.087,0.264,0.194,0.309,0.302
|
||||
c0,0.055,0,0.109,0,0.164c0.066,0.223,0.124,0.417,0.25,0.628c0.31,0.516,0.879,0.813,1.442,1.06
|
||||
c0.117,0.052,0.288,0.059,0.425,0.123c0.204,0.095,0.386,0.117,0.583,0.195c0.076,0.03,0.209,0.096,0.317,0.106
|
||||
c-0.028,0.046-0.124,0.019-0.192,0.007c-0.269-0.045-0.496,0.035-0.717,0.098c0.037,0.256,0.515,0.602,0.701,0.75
|
||||
c0.384,0.309,0.83,0.567,1.268,0.824c0.172,0.084,0.344,0.168,0.516,0.253c0.175,0.104,0.382,0.175,0.56,0.285
|
||||
c0.079,0.049,0.157,0.113,0.259,0.139c0.002,0.006,0.005,0.011,0.008,0.017c-0.02,0.011-0.039,0.021-0.058,0.033
|
||||
c-0.083-0.003-0.167-0.006-0.251-0.008c-0.263-0.042-0.458-0.136-0.7-0.229c-0.07-0.022-0.139-0.043-0.208-0.065
|
||||
c-0.158-0.099-0.321-0.117-0.492-0.196c-0.146-0.067-0.306-0.161-0.483-0.196c-0.293-0.056-0.578,0.121-0.768,0.196
|
||||
c-0.161,0.064-0.348,0.082-0.516,0.123c-0.363,0.089-0.798,0.253-1.109,0.481c-0.611,0.446-0.853,0.97-1.092,1.664
|
||||
c-0.054,0.158-0.202,0.756,0.009,0.815c0.088,0.069,0.542,0.004,0.674,0.042c0.201,0.057,0.462-0.015,0.734,0.033
|
||||
c0.355,0.061,0.694-0.014,1.059,0.024c0.191,0.003,0.384,0.005,0.575,0.007c0.114-0.004,0.229-0.009,0.342-0.015
|
||||
c0.271,0.029,0.928-0.125,1.018-0.081c0.37-0.025,1.328-0.104,1.492,0.081c0.072,0.083,0.071,0.27,0.101,0.35
|
||||
c0.063,0.135,0.127,0.267,0.19,0.4c0.204,0.371,0.556,0.643,0.784,0.996c0.196,0.303,0.301,0.67,0.417,1.003
|
||||
c0.054,0.153,0.021,0.291,0.059,0.448c0.094,0.403,0.188,0.717,0.324,1.069c0.04,0.104,0.091,0.423,0.176,0.464
|
||||
c0.003-0.145,0.115-0.262,0.158-0.399c0.009-0.007,0.018-0.012,0.025-0.017c0.037,0.039,0.028,0.095,0.05,0.171
|
||||
c0.057,0.194,0.125,0.392,0.199,0.587c0.032,0.081,0.032,0.172,0.06,0.229c0.079,0.163,0.235,0.303,0.392,0.391
|
||||
c0.054,0.024,0.105,0.049,0.16,0.073c0.027,0.006,0.06,0.012,0.091,0.017c-0.1-0.216-0.137-0.285-0.091-0.546
|
||||
c0.021-0.012,0.043-0.021,0.065-0.033c0.003,0,0.006,0,0.008,0c0,0.408,0.374,0.86,0.584,1.125c0.069,0.134,0.139,0.267,0.208,0.399
|
||||
c-0.059,0.039-0.118,0.076-0.176,0.115c-0.111,0.081-0.276,0.334-0.282,0.505c0.16,0.183,0.558,0.6,0.841,0.578
|
||||
c0.178-0.013,0.398,0.049,0.483-0.039c-0.28-0.052-0.766-0.298-0.825-0.588c-0.058-0.089,0.236-0.299,0.316-0.335
|
||||
c0.29-0.125,0.596-0.352,0.86-0.383c0.075-0.009,0.229-0.102,0.3-0.065c0.117,0.06,0.197,0.446,0.192,0.588
|
||||
c0.007,0.005,0.017,0.01,0.024,0.015c0.113-0.129,0.147-0.533,0.051-0.717c0.061-0.051,0.193-0.043,0.249-0.073
|
||||
c0.053,0.067,0.104,0.136,0.158,0.205c0.13,0.183,0.184,0.444,0.176,0.667c0.024-0.01,0.009,0.001,0.024-0.016
|
||||
c0.135-0.101,0.025-0.863-0.084-0.92c0-0.012,0-0.024,0-0.033c0.166-0.047,0.292-0.196,0.4-0.302c0.012,0,0.022,0,0.033,0
|
||||
c0.059,0.062,0.116,0.124,0.176,0.187c0.13,0.139,0.389,0.553,0.409,0.774c0.01,0,0.021,0,0.032,0
|
||||
c0.024-0.528,0.054-0.991-0.3-1.346c-0.101-0.101-0.251-0.153-0.359-0.228c-0.019,0.003-0.037,0.005-0.058,0.009
|
||||
c-0.152,0.247-0.264,0.472-0.55,0.586c-0.123-0.107-0.227-0.278-0.4-0.335c-0.016,0.012-0.014,0.008-0.025,0.025
|
||||
c-0.036,0.035-0.031,0.118-0.065,0.18c-0.048,0.057-0.097,0.114-0.143,0.171c-0.006,0-0.012,0-0.017,0
|
||||
c-0.045-0.036-0.075-0.09-0.142-0.081c-0.012,0.002-0.5,0.354-0.525,0.393c-0.186-0.05-0.522-0.666-0.551-0.851
|
||||
c0.063,0.014,0.227,0.087,0.259,0.124c0.025,0.003,0.05,0.006,0.075,0.007c-0.008-0.074-0.045-0.096-0.066-0.146
|
||||
c-0.095-0.216-0.179-0.506-0.101-0.76c0.009-0.001,0.017-0.004,0.025-0.007c0.212,0.298,0.709,0.726,1.135,0.799
|
||||
c-0.059-0.227-0.157-0.368-0.067-0.653c0.128-0.023,0.289,0.119,0.533,0.124c0.002-0.007,0.006-0.013,0.009-0.018
|
||||
c-0.085-0.176-0.141-0.358-0.018-0.521c0.482,0.026,1.199,0.295,1.318,0.717c0.008,0,0.016,0,0.024,0
|
||||
c-0.015-0.2-0.032-0.422-0.05-0.619c0.167,0.014,0.475,0.433,0.649,0.531c0.023,0.159-0.123,0.64-0.032,0.782
|
||||
c0.055,0.091,0.219,0.084,0.333,0.122c0.402,0.133,0.844,0.027,1.075-0.245c-0.006-0.006-0.012-0.01-0.017-0.016
|
||||
c-0.347,0.149-1.192,0.066-1.025-0.498c0.116-0.391,0.26-0.762,0.617-1.019c0.045-0.041,0.088-0.083,0.134-0.122
|
||||
c0.064-0.015,0.282,0.191,0.316,0.235c0.05,0.065,0.131,0.14,0.149,0.229c0.106-0.075-0.181-0.628-0.283-0.685
|
||||
c-0.003-0.009-0.006-0.016-0.009-0.024c0.08-0.037,0.115-0.102,0.176-0.155c0.225,0.066,0.593,0.397,0.667,0.611
|
||||
c0.008,0.005,0.017,0.011,0.025,0.017c-0.011-0.251-0.301-0.738-0.508-0.808c0.011-0.165,0.146-0.275,0.14-0.472
|
||||
c0.003-0.005,0.006-0.007,0.009-0.01c0.276,0.039,0.521,0.236,0.708,0.376c0.063,0.045,0.103,0.121,0.176,0.154
|
||||
c0.023,0.022,0.045,0.044,0.066,0.065c0.003-0.002,0.006-0.006,0.009-0.008C26.432,16.669,25.903,16.11,25.263,16.123z"/>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="1.4673" y1="12.2451" x2="24.4434" y2="12.2451">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_3_)" d="M21.74,16.237c-0.008,0.312-0.014,0.628-0.02,0.935c-0.096,0.254-0.234,0.479-0.357,0.699
|
||||
c-0.182-0.035-0.807-0.359-0.951-0.287c-0.01,0.01-0.021,0.031-0.033,0.049c-0.012,0.002-0.023,0.012-0.033,0.018
|
||||
c-0.027,0.049,0.031,0.076,0.033,0.082c0.033,0.182-0.012,0.576,0.018,0.748c-0.012,0.02-0.021,0.035-0.035,0.055
|
||||
c-0.109,0.006-0.148-0.025-0.256-0.07l-0.102,0.016c-0.152,0.508-0.416,1.6-1.107,1.414c-0.426-0.115-0.781-0.506-1.188-0.646
|
||||
v-0.035c0.256-0.119,0.387-0.371,0.629-0.475c-0.066-0.16-0.404-0.23-0.576-0.34c-0.455-0.273-0.91-0.543-1.364-0.814
|
||||
c-1.418-0.979-2.492-2.208-3.196-3.897c-0.153-0.367-1.164-1.681-1.026-2.153c0.969,0.125,1.758,0.356,2.472,0.162
|
||||
c0.491-0.133,0.838-0.227,1.414-0.322c0.544-0.091,1.681,0.212,2.091,0.34c0.195,0.039,0.396,0.08,0.596,0.119
|
||||
c0.305,0.141,0.436,0.581,0.646,0.833c0.238,0.293,0.818,0.436,1.258,0.46v-0.035c-0.596-0.312-0.246-0.728-0.459-1.207
|
||||
c-0.111-0.244-0.391-0.415-0.393-0.749c0.902-0.318,2.832,0.995,3.131,1.752c0.123,0.319,0.035,0.654-0.104,0.936
|
||||
c-0.016,0.018-0.02,0.033-0.035,0.05c0.592-0.14,1.873-0.994,1.617-1.819c-0.146-0.473-0.58-0.922-0.834-1.327
|
||||
c-0.18-0.285-0.346-0.724-0.611-0.918c0.037-0.084,0.119-0.102,0.219-0.119c0.02-0.051,0.039-0.102,0.051-0.153
|
||||
c-0.291-0.164-0.572-0.556-0.783-0.816c-0.48-0.464-0.961-0.93-1.444-1.394c-0.062-0.1-0.135-0.194-0.233-0.268
|
||||
c-0.472-0.357-0.847-1.135-1.268-1.534c-0.419-0.398-1.214-0.867-1.214-0.867s0.198,0.294,0.42,0.571
|
||||
c0.09,0.113,0.197,0.333,0.293,0.553c-0.362-0.295-0.724-0.598-1.128-0.838c-0.252-0.13-0.508-0.261-0.764-0.391
|
||||
c-0.184-0.092-0.408-0.079-0.58-0.221c-0.332-0.282-0.623-0.609-0.901-0.948h0.278c-0.449-0.85-0.926-1.7-1.439-2.515
|
||||
c-1.728,0.071-4.2,0.244-5.942,0.671C5.591,2.262,2.665,3.72,2.305,3.943C1.689,4.325,1.51,4.669,1.475,5.147
|
||||
c0.053,0.03,0.111,0.054,0.163,0.086c0.16,0.102,0.321,0.235,0.527,0.29c0.004,0.011,0.011,0.022,0.017,0.034
|
||||
c-0.04,0.022-0.08,0.045-0.118,0.068C1.892,5.62,1.722,5.614,1.553,5.609C1.521,5.604,1.498,5.591,1.467,5.585
|
||||
c0.05,1.074,0.336,4.605,0.464,5.384c0,0.004,0.002,0.013,0.003,0.018c0.333,0.033,2.04,0.973,2.144,1.093
|
||||
c0.146,0.175,0.146,0.561,0.203,0.732c0.131,0.277,1.618,1.473,1.75,1.75c0.414,0.772-1.198,0.282-1.198,0.282
|
||||
s1.818,1.607,2.013,2.195c0.041,0.123-1.202-0.223-1.162-0.104c0.044,0.129,0.05,0.25,0.058,0.373l0.196,0.035
|
||||
c0,0,2.756,2.012,2.868,2.123c0.09,0.092,1.949,1.609,2.68,2.207c-0.042-0.266-0.043-0.537,0.033-0.795
|
||||
c0.015-0.004,0.034-0.01,0.051-0.014c0.434,0.621,1.447,1.512,2.311,1.666c-0.117-0.473-0.317-0.771-0.136-1.363
|
||||
c0.262-0.047,0.592,0.248,1.091,0.256c0.004-0.012,0.009-0.021,0.015-0.035c-0.171-0.363-0.285-0.744-0.031-1.084
|
||||
c0.982,0.053,2.446,0.611,2.686,1.494h0.051c-0.033-0.418-0.066-0.883-0.102-1.291c0.338,0.025,0.967,0.9,1.324,1.104
|
||||
c0.049,0.336-0.25,1.336-0.066,1.637c0.113,0.189,0.449,0.174,0.682,0.25c0.82,0.281,1.719,0.061,2.189-0.51
|
||||
c-0.01-0.01-0.018-0.02-0.033-0.033c-0.703,0.314-2.43,0.139-2.09-1.037c0.236-0.813,0.531-1.586,1.258-2.127
|
||||
c0.09-0.084,0.182-0.168,0.273-0.252c0.133-0.027,0.576,0.398,0.645,0.49c0.104,0.135,0.268,0.293,0.307,0.479
|
||||
c0.217-0.154-0.371-1.311-0.58-1.432c-0.004-0.014-0.008-0.031-0.016-0.049c0.166-0.076,0.234-0.209,0.355-0.324
|
||||
c0.459,0.143,1.213,0.83,1.363,1.275c0.018,0.012,0.031,0.021,0.051,0.035c-0.023-0.521-0.613-1.541-1.037-1.688
|
||||
c0.025-0.342,0.301-0.57,0.289-0.982c0.004-0.006,0.012-0.014,0.018-0.02c0.561,0.082,1.063,0.494,1.443,0.785
|
||||
c0.127,0.094,0.211,0.254,0.359,0.322c0.045,0.045,0.09,0.09,0.137,0.137c0.004-0.008,0.01-0.012,0.016-0.014
|
||||
C24.121,17.377,23.045,16.209,21.74,16.237z M21.777,10.059c0,0-0.334,0.296-0.682,0.093c-0.273-0.159-0.486-1.172-0.486-1.172
|
||||
l-0.012-0.294c0,0,0.199,0.293,0.375,0.536c0.242,0.344,0.377,0.505,0.484,0.607C21.621,9.975,21.777,10.059,21.777,10.059z"/>
|
||||
<g>
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="21.4482" y1="19.2559" x2="12.1449" y2="2.554">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_4_)" d="M16.116,31.229c-0.13,0-0.272-0.025-0.461-0.086c-3.473-1.133-8.139-5.529-10.402-9.801
|
||||
c-2.06-3.89-3.006-8.726-3.318-10.624C1.792,9.854,1.467,5.684,1.467,5.151c0-0.433,0.063-0.677,0.645-1.038
|
||||
C2.344,3.97,5.217,2.499,8.208,1.765c2.799-0.686,7.643-0.708,7.848-0.708l0.097,0.003h0.005c0.049,0,5.005,0.008,7.859,0.708
|
||||
c2.989,0.733,5.863,2.205,6.095,2.348c0.582,0.361,0.645,0.605,0.645,1.038c0,0.533-0.324,4.704-0.467,5.568
|
||||
c-0.313,1.898-1.258,6.735-3.318,10.624c-1.093,2.063-2.78,4.223-4.756,6.084s-3.979,3.181-5.644,3.715
|
||||
C16.384,31.204,16.244,31.229,16.116,31.229z M16.05,1.441c-0.195,0-4.993,0.021-7.744,0.696C5.365,2.858,2.554,4.296,2.328,4.436
|
||||
C1.865,4.723,1.865,4.849,1.865,5.151c0,0.527,0.321,4.653,0.462,5.508c0.309,1.88,1.246,6.668,3.28,10.509
|
||||
c2.222,4.195,6.787,8.507,10.174,9.61c0.146,0.049,0.249,0.068,0.334,0.068c0.083,0,0.186-0.02,0.33-0.066
|
||||
c1.608-0.517,3.558-1.804,5.49-3.625c1.945-1.833,3.607-3.958,4.682-5.984c2.033-3.84,2.97-8.628,3.279-10.509
|
||||
c0.141-0.855,0.463-4.981,0.463-5.508c0-0.302,0-0.428-0.463-0.715c-0.228-0.141-3.039-1.578-5.979-2.3
|
||||
c-2.805-0.687-7.711-0.696-7.76-0.696L16.05,1.441z"/>
|
||||
<path fill="#282525" d="M16.055,1.057l0.098,0.003h0.005c0.049,0,5.005,0.008,7.859,0.708c2.989,0.733,5.863,2.205,6.095,2.348
|
||||
c0.582,0.361,0.645,0.605,0.645,1.038c0,0.533-0.324,4.704-0.467,5.568c-0.313,1.898-1.258,6.735-3.318,10.624
|
||||
c-1.093,2.063-2.78,4.223-4.756,6.084s-3.979,3.181-5.644,3.715c-0.187,0.06-0.327,0.085-0.456,0.085
|
||||
c-0.13,0-0.272-0.025-0.461-0.086c-3.473-1.133-8.139-5.529-10.402-9.801c-2.06-3.89-3.006-8.726-3.318-10.624
|
||||
C1.792,9.854,1.467,5.684,1.467,5.151c0-0.433,0.063-0.677,0.645-1.038C2.344,3.97,5.217,2.499,8.208,1.765
|
||||
C11.007,1.079,15.851,1.058,16.055,1.057 M16.116,30.847c0.083,0,0.186-0.02,0.33-0.066c1.608-0.517,3.558-1.804,5.49-3.625
|
||||
c1.945-1.833,3.607-3.958,4.682-5.984c2.033-3.84,2.97-8.628,3.279-10.509c0.141-0.855,0.463-4.981,0.463-5.508
|
||||
c0-0.302,0-0.428-0.463-0.715c-0.228-0.141-3.039-1.578-5.979-2.3c-2.805-0.687-7.711-0.696-7.76-0.696L16.05,1.441
|
||||
c-0.195,0-4.993,0.021-7.744,0.696C5.365,2.858,2.554,4.296,2.328,4.436C1.865,4.723,1.865,4.849,1.865,5.151
|
||||
c0,0.527,0.321,4.653,0.462,5.508c0.309,1.88,1.246,6.668,3.28,10.509c2.222,4.195,6.787,8.507,10.174,9.61
|
||||
C15.928,30.827,16.03,30.847,16.116,30.847 M16.061,0.739h-0.005c-0.206,0-5.086,0.021-7.923,0.717
|
||||
c-3.029,0.743-5.951,2.24-6.187,2.387C1.272,4.26,1.148,4.611,1.148,5.151c0,0.538,0.329,4.748,0.472,5.62
|
||||
c0.314,1.914,1.269,6.789,3.352,10.721c2.295,4.336,7.043,8.8,10.583,9.953c0.221,0.072,0.395,0.105,0.56,0.105
|
||||
c0.163,0,0.334-0.031,0.552-0.102c1.71-0.549,3.757-1.894,5.765-3.787c2-1.885,3.712-4.075,4.819-6.167
|
||||
c2.082-3.931,3.037-8.807,3.351-10.721c0.144-0.871,0.473-5.081,0.473-5.619c0-0.54-0.123-0.891-0.796-1.308
|
||||
c-0.236-0.146-3.16-1.645-6.188-2.387c-2.889-0.708-7.884-0.717-7.934-0.717h-0.003l-0.089-0.003H16.061L16.061,0.739z
|
||||
M16.116,30.529c-0.048,0-0.127-0.019-0.235-0.054c-3.321-1.081-7.803-5.324-9.992-9.456c-2.012-3.8-2.941-8.547-3.247-10.412
|
||||
C2.502,9.76,2.183,5.673,2.183,5.151c0-0.116,0.001-0.178,0.019-0.209c0.02-0.037,0.086-0.107,0.293-0.235
|
||||
c0.223-0.138,2.984-1.548,5.886-2.26c2.684-0.659,7.399-0.686,7.664-0.687l0.103,0.003h0.005h0.005
|
||||
c0.048,0,4.917,0.008,7.684,0.687c2.901,0.711,5.664,2.123,5.887,2.261c0.207,0.128,0.273,0.198,0.294,0.234
|
||||
c0.018,0.032,0.019,0.094,0.019,0.21c0,0.522-0.319,4.609-0.458,5.457c-0.307,1.865-1.235,6.613-3.247,10.412
|
||||
c-1.057,1.995-2.697,4.092-4.617,5.901c-1.898,1.789-3.806,3.051-5.371,3.554C16.24,30.513,16.164,30.529,16.116,30.529
|
||||
L16.116,30.529z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path fill="#282525" d="M23.386,30.365c-4.477-1.824-9.65-1.919-14.563,0.091c-0.701-1.597-1.4-3.194-2.1-4.791
|
||||
c6.301-2.618,13.004-2.466,18.785-0.063C24.909,27.113,24.024,28.887,23.386,30.365z"/>
|
||||
</g>
|
||||
<g>
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="17.0723" y1="33.1914" x2="15.6923" y2="22.6429">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_5_)" d="M7.194,25.856l0.183-0.072c2.853-1.111,5.832-1.675,8.853-1.675c2.843,0,5.63,0.5,8.289,1.486
|
||||
l0.044,0.017l0.462,0.192l-1.788,4.108l-0.047-0.019l-0.005,0.01c-2.203-0.852-4.53-1.282-6.916-1.282
|
||||
c-2.414,0-4.799,0.441-7.093,1.313l-0.167,0.063L7.194,25.856z M16.231,24.486c-2.88,0-5.726,0.521-8.456,1.549l-0.079,0.029
|
||||
l1.515,3.455l0.07-0.025c2.263-0.828,4.613-1.248,6.986-1.248c2.265,0,4.485,0.383,6.598,1.14l0.071,0.024l1.502-3.441
|
||||
l-0.079-0.03C21.753,24.975,19.019,24.486,16.231,24.486z"/>
|
||||
<g>
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="11.4873" y1="33.9238" x2="10.1073" y2="23.3755">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_6_)" d="M10.108,28.419c-0.076-0.224-0.141-0.399-0.196-0.532c0.135,0.021,0.251,0.029,0.351,0.024
|
||||
c0.1-0.004,0.184-0.017,0.255-0.035c0.093-0.024,0.164-0.059,0.211-0.101c0.047-0.043,0.064-0.09,0.05-0.144
|
||||
c-0.005-0.018-0.013-0.035-0.022-0.05c-0.01-0.015-0.025-0.031-0.046-0.048c-0.02-0.017-0.048-0.034-0.083-0.051l-0.373-0.18
|
||||
c-0.086-0.042-0.148-0.07-0.184-0.091c-0.07-0.039-0.129-0.078-0.172-0.116c-0.045-0.039-0.08-0.08-0.108-0.124
|
||||
c-0.028-0.046-0.049-0.096-0.063-0.149c-0.018-0.064-0.024-0.132-0.018-0.201c0.006-0.068,0.024-0.135,0.056-0.202
|
||||
c0.031-0.066,0.079-0.13,0.145-0.191c0.065-0.06,0.139-0.107,0.221-0.146c0.083-0.037,0.17-0.069,0.262-0.094
|
||||
c0.181-0.048,0.382-0.081,0.606-0.096c0.022,0.072,0.045,0.138,0.066,0.198c0.021,0.06,0.06,0.165,0.117,0.314
|
||||
c-0.109-0.014-0.206-0.017-0.291-0.01c-0.085,0.006-0.157,0.017-0.216,0.034c-0.083,0.022-0.148,0.057-0.195,0.103
|
||||
c-0.046,0.046-0.063,0.091-0.051,0.137c0.006,0.022,0.016,0.041,0.03,0.06c0.014,0.018,0.036,0.038,0.067,0.058
|
||||
c0.031,0.021,0.07,0.043,0.117,0.064c0.047,0.023,0.121,0.055,0.22,0.097l0.141,0.06c0.042,0.02,0.087,0.042,0.137,0.072
|
||||
c0.05,0.026,0.095,0.057,0.134,0.088c0.039,0.03,0.071,0.061,0.095,0.088c0.023,0.028,0.044,0.058,0.061,0.087
|
||||
c0.016,0.031,0.029,0.065,0.039,0.103c0.026,0.097,0.028,0.193,0.006,0.293c-0.022,0.1-0.068,0.189-0.137,0.268
|
||||
c-0.07,0.08-0.152,0.143-0.247,0.192c-0.095,0.051-0.198,0.09-0.311,0.121C10.61,28.365,10.385,28.398,10.108,28.419z"/>
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="13.5469" y1="33.6533" x2="12.167" y2="23.1061">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_7_)" d="M12.41,27.889c-0.038-0.539-0.105-1.127-0.204-1.766l-0.692,0.137l-0.023-0.183
|
||||
c-0.012-0.097-0.027-0.204-0.045-0.319c0.31-0.052,0.67-0.113,1.083-0.184l0.403-0.07l0.393-0.067l0.212-0.039l0.018,0.162
|
||||
c0.01,0.087,0.02,0.157,0.028,0.214c0.007,0.057,0.013,0.1,0.019,0.128c-0.235,0.027-0.429,0.056-0.58,0.082l-0.114,0.018
|
||||
c0.017,0.197,0.035,0.376,0.054,0.541c0.029,0.236,0.058,0.465,0.09,0.688c0.031,0.221,0.059,0.399,0.082,0.535
|
||||
c-0.179,0.028-0.294,0.047-0.347,0.056C12.738,27.829,12.613,27.853,12.41,27.889z"/>
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="15.8555" y1="33.3516" x2="14.4756" y2="22.8043">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_8_)" d="M13.979,27.627c0.009-0.195,0.014-0.372,0.016-0.528c0.002-0.156,0.001-0.337-0.003-0.543
|
||||
c-0.004-0.206-0.011-0.423-0.021-0.65c-0.01-0.229-0.02-0.41-0.028-0.545c0.138-0.006,0.249-0.011,0.335-0.017
|
||||
c0.088-0.006,0.195-0.015,0.322-0.028c0.126-0.014,0.25-0.024,0.371-0.032c0.14-0.008,0.267-0.01,0.378-0.006
|
||||
c0.083,0.002,0.159,0.013,0.229,0.032c0.069,0.021,0.128,0.047,0.176,0.078c0.049,0.032,0.09,0.068,0.124,0.11
|
||||
c0.034,0.04,0.061,0.089,0.082,0.146c0.02,0.056,0.033,0.117,0.037,0.185c0.005,0.074,0,0.144-0.015,0.209
|
||||
c-0.014,0.065-0.04,0.128-0.076,0.188c-0.037,0.06-0.084,0.112-0.143,0.157c-0.059,0.046-0.142,0.093-0.249,0.144l0.1,0.204
|
||||
c0.028,0.058,0.057,0.115,0.089,0.174l0.253,0.472c0.011,0.02,0.032,0.06,0.061,0.12c-0.181,0.01-0.304,0.017-0.367,0.021
|
||||
c-0.079,0.004-0.209,0.015-0.391,0.028c-0.021-0.057-0.06-0.16-0.116-0.313c-0.023-0.064-0.042-0.113-0.058-0.148
|
||||
c-0.032-0.076-0.078-0.184-0.138-0.32l-0.201-0.458c0.061,0.007,0.119,0.009,0.177,0.005c0.08-0.005,0.152-0.021,0.217-0.051
|
||||
c0.064-0.029,0.111-0.069,0.142-0.121c0.029-0.054,0.043-0.108,0.04-0.164c-0.003-0.049-0.019-0.089-0.047-0.123
|
||||
c-0.028-0.033-0.068-0.059-0.124-0.072c-0.056-0.015-0.141-0.019-0.255-0.012c-0.038,0.003-0.078,0.007-0.12,0.012
|
||||
c-0.041,0.004-0.089,0.009-0.144,0.014c0,0.227,0.006,0.504,0.016,0.828c0.009,0.328,0.023,0.647,0.04,0.961
|
||||
c-0.185,0.011-0.305,0.016-0.359,0.02C14.262,27.605,14.146,27.614,13.979,27.627z"/>
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="17.6396" y1="33.1211" x2="16.2589" y2="22.567">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_9_)" d="M16.317,27.516c0.083-0.888,0.127-1.569,0.137-2.05l0.003-0.214
|
||||
c0.194,0.007,0.323,0.011,0.389,0.012c0.029,0.002,0.148,0.002,0.356,0.004c-0.025,0.249-0.046,0.484-0.063,0.706
|
||||
c-0.021,0.309-0.039,0.599-0.051,0.867s-0.021,0.498-0.023,0.689l-0.34-0.012C16.658,27.519,16.523,27.518,16.317,27.516z"/>
|
||||
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="19.5723" y1="32.8643" x2="18.1927" y2="22.3194">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_10_)" d="M17.421,27.518c0.044-0.203,0.078-0.372,0.102-0.507c0.043-0.238,0.098-0.563,0.162-0.979
|
||||
c0.045-0.289,0.075-0.492,0.088-0.61l0.017-0.142c0.182,0.021,0.309,0.037,0.378,0.045c0.046,0.005,0.164,0.017,0.355,0.036
|
||||
l-0.214,1.223l-0.152,1.015l-0.357-0.043C17.748,27.551,17.623,27.538,17.421,27.518z M18.379,26.42l0.424-0.461l0.346-0.385
|
||||
l0.108-0.133c0.204,0.025,0.342,0.042,0.414,0.05c0.021,0.003,0.151,0.017,0.395,0.04l-0.792,0.802l-0.15,0.161l0.101,0.208
|
||||
l0.578,1.079l-0.405-0.049c-0.088-0.01-0.237-0.025-0.447-0.046C18.838,27.403,18.646,26.981,18.379,26.42z"/>
|
||||
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="21.8867" y1="32.5654" x2="20.5061" y2="22.0126">
|
||||
<stop offset="0" style="stop-color:#AEB0A8"/>
|
||||
<stop offset="1" style="stop-color:#FFFFFF"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_11_)" d="M19.938,27.822c0.092-0.273,0.165-0.501,0.22-0.686c0.056-0.186,0.127-0.431,0.21-0.739
|
||||
c0.084-0.308,0.139-0.512,0.161-0.613l0.032-0.144c0.254,0.062,0.561,0.134,0.921,0.218c0.333,0.076,0.627,0.143,0.883,0.199
|
||||
l-0.016,0.053c-0.005,0.013-0.019,0.059-0.041,0.139l-0.051,0.173c-0.011,0.037-0.02,0.075-0.029,0.113
|
||||
c-0.206-0.056-0.379-0.1-0.521-0.134c-0.155-0.035-0.259-0.06-0.313-0.071c-0.055-0.013-0.141-0.029-0.256-0.051l-0.105,0.365
|
||||
c0.126,0.034,0.273,0.069,0.442,0.108c0.062,0.015,0.223,0.047,0.485,0.1c-0.043,0.137-0.092,0.299-0.146,0.485
|
||||
c-0.186-0.044-0.328-0.078-0.429-0.102c-0.148-0.033-0.316-0.069-0.502-0.104l-0.109,0.389l0.186,0.043
|
||||
c0.055,0.013,0.17,0.037,0.343,0.074l0.335,0.069c0.051,0.011,0.135,0.024,0.252,0.044c-0.049,0.156-0.099,0.319-0.146,0.488
|
||||
c-0.264-0.063-0.551-0.131-0.864-0.204l-0.712-0.163L19.938,27.822z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 216 KiB After Width: | Height: | Size: 214 KiB |
|
Before Width: | Height: | Size: 212 KiB After Width: | Height: | Size: 210 KiB |
@@ -1,312 +1,312 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g id="Shape_37_copy_6">
|
||||
<g>
|
||||
<rect x="1.434" y="4.102" fill-rule="evenodd" clip-rule="evenodd" fill="#D3D1B0" width="29.43" height="21.078"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_37_copy_7">
|
||||
<g>
|
||||
<rect x="1.857" y="4.426" fill-rule="evenodd" clip-rule="evenodd" fill="#722429" width="28.6" height="20.192"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_37_copy_5_2_">
|
||||
<g>
|
||||
<rect x="2.537" y="4.938" fill-rule="evenodd" clip-rule="evenodd" fill="#E8E5BC" width="27.416" height="19.048"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_37_copy_8">
|
||||
<g>
|
||||
<rect x="3.199" y="5.51" fill-rule="evenodd" clip-rule="evenodd" fill="#2F151C" width="26.213" height="17.942"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_37_copy_9">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#878577" points="3.199,5.51 3.199,23.452 29.412,5.51 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_38">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M16.258,7.948c-6.71,0-12.035,2.579-12.035,5.76
|
||||
c0,3.181,5.325,5.759,12.035,5.759c6.708,0,12.034-2.579,12.034-5.759C28.292,10.527,22.966,7.948,16.258,7.948z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_38_copy">
|
||||
<g>
|
||||
<ellipse fill-rule="evenodd" clip-rule="evenodd" fill="#D3D1B0" cx="16.258" cy="13.708" rx="11.525" ry="5.266"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_38_copy_2">
|
||||
<g>
|
||||
<ellipse fill-rule="evenodd" clip-rule="evenodd" fill="#99654B" cx="16.249" cy="13.708" rx="11.119" ry="5.036"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_38_copy_3">
|
||||
<g>
|
||||
<ellipse fill-rule="evenodd" clip-rule="evenodd" fill="#722429" cx="16.225" cy="13.708" rx="10.635" ry="4.771"/>
|
||||
</g>
|
||||
</g>
|
||||
<g opacity="0.3">
|
||||
<g id="PARKER_2_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M10.131,11.784c-0.129-0.052-0.316-0.078-0.56-0.078H8.48v2.771
|
||||
h0.659v-1.029h0.457c0.198,0,0.343-0.012,0.436-0.037c0.092-0.024,0.188-0.074,0.287-0.148c0.099-0.075,0.176-0.177,0.229-0.307
|
||||
c0.054-0.13,0.082-0.263,0.082-0.4c0-0.194-0.05-0.359-0.151-0.493C10.375,11.929,10.26,11.835,10.131,11.784z M9.878,12.832
|
||||
c-0.065,0.074-0.178,0.111-0.339,0.111H9.116v-0.734h0.42c0.147,0,0.257,0.033,0.331,0.099c0.072,0.066,0.108,0.156,0.108,0.268
|
||||
C9.976,12.672,9.943,12.758,9.878,12.832z M11.558,11.706l-0.889,2.771h0.569l0.174-0.571h0.896l0.17,0.571h0.696l-0.867-2.771
|
||||
H11.558z M11.567,13.395l0.296-0.973l0.292,0.973H11.567z M16.017,12.535c0-0.17-0.044-0.325-0.133-0.464
|
||||
c-0.09-0.139-0.202-0.235-0.339-0.287c-0.136-0.052-0.316-0.078-0.541-0.078h-1.217v2.771h0.654v-1.099h0.464l0.426,1.099h0.717
|
||||
l-0.512-1.225C15.855,13.106,16.017,12.868,16.017,12.535z M15.279,12.756c-0.047,0.063-0.099,0.103-0.158,0.122
|
||||
c-0.059,0.018-0.153,0.027-0.284,0.027H14.44v-0.706h0.383c0.148,0,0.25,0.007,0.304,0.021c0.055,0.015,0.105,0.052,0.152,0.113
|
||||
c0.045,0.061,0.068,0.13,0.068,0.207C15.347,12.621,15.324,12.693,15.279,12.756z M18.957,11.706h-0.622l-0.868,1.301v-1.301
|
||||
h-0.637v2.771h0.637v-0.636l0.389-0.568l0.552,1.204h0.715l-0.832-1.782L18.957,11.706z M19.762,14.477h1.979v-0.548h-1.319
|
||||
v-0.605h1.037v-0.521h-1.037v-0.568h1.319v-0.528h-1.979V14.477z M24.193,13.251c0.322-0.145,0.481-0.384,0.481-0.717
|
||||
c0-0.17-0.045-0.325-0.134-0.464s-0.202-0.235-0.338-0.287c-0.137-0.052-0.316-0.078-0.541-0.078h-1.218v2.771h0.654v-1.099
|
||||
h0.464l0.425,1.099h0.717L24.193,13.251z M23.936,12.756c-0.046,0.063-0.098,0.103-0.158,0.122
|
||||
c-0.058,0.018-0.153,0.027-0.283,0.027h-0.397v-0.706h0.383c0.149,0,0.25,0.007,0.304,0.021c0.054,0.015,0.105,0.052,0.151,0.113
|
||||
c0.046,0.061,0.068,0.13,0.068,0.207C24.004,12.621,23.981,12.693,23.936,12.756z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="BUILDING_MATERIALS_INC._2_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M9.863,15.583c0.107-0.033,0.16-0.101,0.16-0.203
|
||||
c0-0.058-0.021-0.109-0.064-0.152c-0.044-0.044-0.11-0.066-0.2-0.066H9.403v0.901h0.356c0.099,0,0.173-0.024,0.221-0.072
|
||||
c0.049-0.048,0.072-0.107,0.072-0.178c0-0.052-0.016-0.1-0.045-0.142C9.975,15.629,9.927,15.601,9.863,15.583z M9.511,15.254
|
||||
h0.225c0.058,0,0.102,0.013,0.131,0.038c0.03,0.026,0.045,0.059,0.045,0.1c0,0.042-0.014,0.078-0.041,0.109
|
||||
c-0.028,0.031-0.083,0.046-0.163,0.046H9.511V15.254z M9.89,15.92c-0.032,0.029-0.077,0.043-0.137,0.043H9.511v-0.33h0.225
|
||||
c0.052,0,0.091,0.007,0.119,0.022c0.026,0.015,0.046,0.037,0.061,0.063c0.015,0.028,0.022,0.058,0.022,0.089
|
||||
C9.938,15.855,9.921,15.892,9.89,15.92z M10.719,15.75c0,0.082-0.017,0.141-0.053,0.178c-0.037,0.036-0.089,0.055-0.158,0.055
|
||||
c-0.037,0-0.071-0.007-0.104-0.021s-0.058-0.035-0.074-0.063c-0.016-0.028-0.024-0.078-0.024-0.148v-0.588h-0.112v0.588
|
||||
c0,0.115,0.024,0.199,0.075,0.252c0.051,0.053,0.127,0.079,0.231,0.079c0.094,0,0.169-0.026,0.228-0.077
|
||||
c0.058-0.051,0.086-0.136,0.086-0.254v-0.588h-0.094V15.75z M11.012,16.063h0.113v-0.901h-0.113V16.063z M11.452,15.162h-0.115
|
||||
v0.901h0.532v-0.099h-0.417V15.162z M12.287,15.162h-0.302v0.901h0.339c0.106,0,0.194-0.044,0.264-0.131
|
||||
c0.068-0.087,0.103-0.194,0.103-0.322c0-0.125-0.036-0.231-0.107-0.318C12.512,15.205,12.414,15.162,12.287,15.162z
|
||||
M12.501,15.867c-0.051,0.067-0.124,0.101-0.221,0.101h-0.183v-0.711h0.183c0.101,0,0.176,0.036,0.224,0.107
|
||||
c0.047,0.071,0.072,0.15,0.072,0.239C12.576,15.711,12.55,15.8,12.501,15.867z M12.845,16.063h0.112v-0.901h-0.112V16.063z
|
||||
M13.744,15.768c0,0.019,0,0.041,0.001,0.065l0.002,0.063l-0.435-0.734h-0.143v0.901h0.092v-0.669c0-0.015,0-0.034-0.002-0.057
|
||||
l-0.001-0.06l0.466,0.786h0.11v-0.901h-0.09V15.768z M14.373,15.703h0.223c0.001,0.019,0.001,0.036,0.001,0.049
|
||||
c0,0.074-0.021,0.132-0.063,0.174c-0.043,0.042-0.096,0.063-0.159,0.063c-0.082,0-0.146-0.033-0.193-0.098
|
||||
c-0.047-0.066-0.071-0.157-0.071-0.274c0-0.109,0.021-0.198,0.063-0.271c0.042-0.071,0.108-0.107,0.198-0.107
|
||||
c0.049,0,0.095,0.015,0.138,0.045c0.042,0.03,0.07,0.079,0.086,0.146l0.106-0.026c-0.05-0.174-0.159-0.261-0.325-0.261
|
||||
c-0.12,0-0.214,0.045-0.285,0.136c-0.07,0.091-0.105,0.206-0.105,0.342c0,0.128,0.034,0.236,0.099,0.325
|
||||
c0.065,0.09,0.159,0.134,0.277,0.134c0.11,0,0.193-0.039,0.249-0.118l0.03,0.113h0.069v-0.467h-0.338V15.703z M15.669,15.883
|
||||
l-0.272-0.721h-0.167v0.901h0.097v-0.787l0.295,0.787h0.077l0.292-0.787v0.787H16.1v-0.901h-0.166L15.669,15.883z M16.496,15.162
|
||||
l-0.294,0.901h0.095l0.081-0.264h0.335l0.09,0.264h0.115l-0.294-0.901H16.496z M16.409,15.715l0.139-0.433l0.14,0.433H16.409z
|
||||
M16.922,15.261h0.258v0.802h0.112v-0.802h0.258v-0.099h-0.629V15.261z M17.777,15.639h0.363v-0.091h-0.363v-0.287h0.458v-0.099
|
||||
h-0.571v0.901h0.582v-0.099h-0.469V15.639z M18.991,15.551c0.025-0.044,0.04-0.09,0.04-0.138c0-0.062-0.024-0.12-0.07-0.172
|
||||
c-0.046-0.053-0.119-0.08-0.214-0.08h-0.355v0.901h0.106v-0.391h0.257l0.166,0.391h0.12l-0.178-0.417
|
||||
C18.921,15.627,18.965,15.595,18.991,15.551z M18.732,15.581h-0.236v-0.32h0.249c0.05,0,0.09,0.014,0.122,0.04
|
||||
c0.034,0.026,0.05,0.063,0.05,0.111c0,0.047-0.016,0.087-0.046,0.12C18.84,15.564,18.794,15.581,18.732,15.581z M19.206,16.063
|
||||
h0.112v-0.901h-0.112V16.063z M19.713,15.162l-0.292,0.901h0.094l0.082-0.264h0.333l0.091,0.264h0.115l-0.293-0.901H19.713z
|
||||
M19.627,15.715l0.139-0.433l0.14,0.433H19.627z M20.355,15.162H20.24v0.901h0.532v-0.099h-0.417V15.162z M21.26,15.56
|
||||
l-0.168-0.039c-0.098-0.023-0.146-0.068-0.146-0.135c0-0.048,0.019-0.085,0.058-0.11c0.038-0.026,0.083-0.04,0.131-0.04
|
||||
c0.049,0,0.097,0.014,0.14,0.041c0.044,0.027,0.072,0.067,0.084,0.12l0.103-0.031c-0.053-0.148-0.16-0.222-0.324-0.222
|
||||
c-0.089,0-0.161,0.022-0.219,0.067c-0.056,0.044-0.084,0.104-0.084,0.18c0,0.045,0.011,0.086,0.031,0.121
|
||||
c0.021,0.035,0.045,0.061,0.076,0.078c0.03,0.017,0.067,0.031,0.114,0.043l0.181,0.044c0.036,0.009,0.067,0.025,0.094,0.048
|
||||
c0.028,0.023,0.042,0.054,0.042,0.092c0,0.051-0.018,0.091-0.055,0.122c-0.035,0.03-0.089,0.045-0.161,0.045
|
||||
c-0.137,0-0.225-0.062-0.266-0.185l-0.101,0.023c0.06,0.172,0.183,0.257,0.37,0.257c0.104,0,0.187-0.026,0.245-0.077
|
||||
c0.058-0.052,0.086-0.117,0.086-0.195C21.49,15.68,21.414,15.597,21.26,15.56z M21.969,16.063h0.112v-0.901h-0.112V16.063z
|
||||
M22.868,15.768c0,0.019,0,0.041,0.002,0.065l0,0.063l-0.435-0.734h-0.142v0.901h0.092v-0.669c0-0.015-0.001-0.034-0.002-0.057
|
||||
l-0.002-0.06l0.466,0.786h0.109v-0.901h-0.089V15.768z M23.485,15.239c0.106,0,0.181,0.072,0.219,0.215l0.107-0.021
|
||||
c-0.049-0.193-0.156-0.29-0.326-0.29c-0.114,0-0.204,0.042-0.271,0.126c-0.069,0.084-0.103,0.196-0.103,0.334
|
||||
c0,0.135,0.033,0.248,0.097,0.339c0.066,0.092,0.156,0.138,0.27,0.138c0.172,0,0.285-0.099,0.333-0.298l-0.103-0.023
|
||||
c-0.038,0.15-0.114,0.226-0.229,0.226c-0.075,0-0.133-0.034-0.179-0.1c-0.044-0.067-0.067-0.155-0.067-0.266
|
||||
c0-0.121,0.021-0.214,0.066-0.281C23.343,15.272,23.405,15.239,23.485,15.239z M23.919,15.915v0.148h0.148v-0.148H23.919z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_39_copy_3_6_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M17.86,17.147c-0.065,0-0.091,0.05-0.094,0.064
|
||||
c-0.004,0.015-0.002,0.019,0.012,0.025c0.029,0.008,0.082,0.039,0.082,0.108c0,0.093-0.075,0.117-0.131,0.117
|
||||
c-0.102,0-0.202-0.096-0.254-0.164c-0.071-0.093-0.146-0.222-0.26-0.222h-0.003c-0.059,0-0.109,0.026-0.134,0.059
|
||||
c0.054,0.103,0.165,0.219,0.215,0.265c0.047,0.04,0.128,0.131,0.279,0.162v0.01h-0.041c-0.069,0-0.174-0.021-0.296-0.111
|
||||
c-0.133-0.101-0.223-0.258-0.286-0.339c-0.098-0.125-0.191-0.178-0.311-0.178c-0.183,0-0.403,0.15-0.403,0.361
|
||||
c0,0.146,0.123,0.26,0.247,0.26c0.041,0,0.083-0.013,0.124-0.042c0.011-0.006,0.011-0.017-0.007-0.017
|
||||
c-0.075,0-0.24-0.095-0.24-0.277c0-0.114,0.063-0.217,0.23-0.217c0.165,0,0.249,0.12,0.317,0.222
|
||||
c-0.032,0.017-0.064,0.05-0.064,0.116c0,0.077,0.04,0.148,0.146,0.227c0.127,0.083,0.27,0.121,0.417,0.121
|
||||
c0.139,0,0.33-0.053,0.399-0.165c0.019-0.027,0.03-0.036,0.052-0.058c0.038-0.035,0.118-0.118,0.118-0.204
|
||||
C17.975,17.209,17.931,17.147,17.86,17.147z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_39_copy_3_4_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M16.437,17.075c-0.041,0-0.082,0.014-0.125,0.042
|
||||
c-0.01,0.006-0.01,0.018,0.007,0.018c0.076,0,0.24,0.094,0.24,0.277c0,0.114-0.063,0.216-0.23,0.216
|
||||
c-0.165,0-0.248-0.12-0.316-0.221c0.032-0.018,0.063-0.05,0.063-0.115c0-0.078-0.038-0.149-0.146-0.228
|
||||
c-0.125-0.083-0.268-0.12-0.416-0.12c-0.141,0-0.33,0.053-0.398,0.164c-0.019,0.027-0.03,0.036-0.054,0.058
|
||||
c-0.036,0.035-0.118,0.118-0.118,0.205c0,0.06,0.044,0.121,0.115,0.121c0.064,0,0.09-0.05,0.092-0.064
|
||||
c0.004-0.015,0.002-0.019-0.011-0.026c-0.029-0.007-0.082-0.039-0.082-0.107c0-0.093,0.075-0.118,0.133-0.118
|
||||
c0.101,0,0.2,0.097,0.252,0.164c0.072,0.093,0.147,0.222,0.262,0.222h0.002c0.058,0,0.108-0.027,0.133-0.06
|
||||
c-0.054-0.102-0.164-0.218-0.215-0.265c-0.047-0.04-0.127-0.131-0.278-0.162v-0.009h0.04c0.069,0,0.174,0.021,0.297,0.112
|
||||
c0.132,0.1,0.222,0.258,0.286,0.338c0.097,0.125,0.191,0.178,0.311,0.178c0.184,0,0.402-0.15,0.402-0.361
|
||||
C16.683,17.189,16.561,17.075,16.437,17.075z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g id="PARKER">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EAE2CC" d="M9.802,11.469c-0.129-0.052-0.316-0.078-0.56-0.078H8.15v2.771
|
||||
H8.81v-1.029h0.457c0.199,0,0.343-0.012,0.436-0.037c0.092-0.025,0.188-0.074,0.287-0.148c0.099-0.075,0.176-0.177,0.229-0.307
|
||||
c0.053-0.13,0.081-0.263,0.081-0.4c0-0.194-0.05-0.359-0.151-0.493C10.045,11.614,9.931,11.521,9.802,11.469z M9.549,12.518
|
||||
c-0.065,0.074-0.178,0.111-0.339,0.111H8.787v-0.734h0.42c0.147,0,0.258,0.033,0.331,0.099c0.072,0.066,0.108,0.155,0.108,0.268
|
||||
C9.646,12.358,9.613,12.443,9.549,12.518z M11.228,11.391l-0.889,2.771h0.569l0.174-0.571h0.896l0.17,0.571h0.696l-0.867-2.771
|
||||
H11.228z M11.237,13.08l0.297-0.973l0.291,0.973H11.237z M15.687,12.22c0-0.17-0.044-0.325-0.133-0.464
|
||||
c-0.09-0.139-0.202-0.235-0.338-0.287c-0.137-0.052-0.316-0.078-0.541-0.078h-1.218v2.771h0.654v-1.099h0.464l0.426,1.099h0.717
|
||||
l-0.512-1.226C15.526,12.792,15.687,12.553,15.687,12.22z M14.949,12.441c-0.047,0.063-0.099,0.103-0.158,0.122
|
||||
c-0.059,0.018-0.153,0.027-0.283,0.027h-0.397v-0.706h0.383c0.149,0,0.25,0.007,0.304,0.021c0.054,0.015,0.104,0.052,0.151,0.113
|
||||
c0.045,0.061,0.068,0.13,0.068,0.207C15.018,12.307,14.994,12.378,14.949,12.441z M18.628,11.391h-0.622l-0.869,1.301v-1.301
|
||||
h-0.637v2.771h0.637v-0.636l0.389-0.568l0.552,1.204h0.715l-0.832-1.782L18.628,11.391z M19.433,14.162h1.979v-0.548h-1.319
|
||||
v-0.605h1.037v-0.522h-1.037v-0.568h1.319v-0.528h-1.979V14.162z M23.863,12.937c0.322-0.145,0.481-0.383,0.481-0.716
|
||||
c0-0.17-0.045-0.325-0.134-0.464c-0.089-0.139-0.202-0.235-0.338-0.287c-0.136-0.052-0.316-0.078-0.541-0.078h-1.218v2.771h0.654
|
||||
v-1.099h0.464l0.425,1.099h0.717L23.863,12.937z M23.606,12.441c-0.046,0.063-0.098,0.103-0.158,0.122
|
||||
c-0.058,0.018-0.153,0.027-0.283,0.027h-0.396v-0.706h0.383c0.148,0,0.25,0.007,0.304,0.021c0.055,0.015,0.105,0.052,0.151,0.113
|
||||
s0.068,0.13,0.068,0.207C23.674,12.307,23.652,12.378,23.606,12.441z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="BUILDING_MATERIALS_INC.">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EAE2CC" d="M9.534,15.269c0.107-0.033,0.16-0.101,0.16-0.203
|
||||
c0-0.058-0.021-0.109-0.064-0.152c-0.044-0.044-0.11-0.066-0.2-0.066H9.073v0.901h0.356c0.099,0,0.173-0.024,0.221-0.072
|
||||
c0.049-0.048,0.072-0.107,0.072-0.178c0-0.052-0.016-0.1-0.046-0.142C9.646,15.315,9.598,15.286,9.534,15.269z M9.182,14.939
|
||||
h0.225c0.058,0,0.102,0.012,0.131,0.038c0.03,0.026,0.045,0.059,0.045,0.1c0,0.042-0.014,0.078-0.041,0.109
|
||||
c-0.028,0.031-0.083,0.046-0.163,0.046H9.182V14.939z M9.56,15.606c-0.032,0.029-0.077,0.043-0.137,0.043H9.182v-0.33h0.225
|
||||
c0.052,0,0.092,0.007,0.119,0.022c0.026,0.015,0.046,0.037,0.061,0.063c0.015,0.028,0.022,0.058,0.022,0.089
|
||||
C9.609,15.541,9.592,15.578,9.56,15.606z M10.389,15.436c0,0.082-0.017,0.141-0.053,0.178c-0.037,0.036-0.089,0.055-0.158,0.055
|
||||
c-0.036,0-0.071-0.007-0.104-0.021S10.016,15.613,10,15.584c-0.016-0.028-0.024-0.078-0.024-0.148v-0.588H9.863v0.588
|
||||
c0,0.115,0.024,0.199,0.075,0.252c0.05,0.053,0.127,0.079,0.231,0.079c0.094,0,0.169-0.026,0.228-0.077
|
||||
c0.058-0.052,0.086-0.136,0.086-0.254v-0.588h-0.094V15.436z M10.682,15.749h0.113v-0.901h-0.113V15.749z M11.122,14.847h-0.115
|
||||
v0.901h0.532v-0.099h-0.417V14.847z M11.957,14.847h-0.302v0.901h0.339c0.106,0,0.195-0.044,0.264-0.131
|
||||
c0.068-0.087,0.103-0.194,0.103-0.322c0-0.125-0.036-0.231-0.106-0.318C12.183,14.891,12.084,14.847,11.957,14.847z
|
||||
M12.171,15.552c-0.05,0.067-0.124,0.101-0.221,0.101h-0.184v-0.711h0.184c0.101,0,0.176,0.036,0.224,0.107
|
||||
c0.048,0.071,0.072,0.15,0.072,0.239C12.246,15.397,12.22,15.485,12.171,15.552z M12.516,15.749h0.112v-0.901h-0.112V15.749z
|
||||
M13.415,15.454c0,0.019,0,0.041,0,0.065l0.002,0.063l-0.435-0.734H12.84v0.901h0.092v-0.669c0-0.016,0-0.034-0.002-0.057
|
||||
l-0.002-0.06l0.466,0.786h0.111v-0.901h-0.09V15.454z M14.043,15.389h0.223c0.001,0.019,0.001,0.035,0.001,0.049
|
||||
c0,0.074-0.021,0.132-0.063,0.174c-0.043,0.042-0.096,0.063-0.159,0.063c-0.082,0-0.146-0.033-0.193-0.098
|
||||
c-0.048-0.066-0.071-0.157-0.071-0.274c0-0.109,0.021-0.198,0.063-0.271c0.042-0.071,0.108-0.107,0.198-0.107
|
||||
c0.049,0,0.095,0.015,0.139,0.045c0.041,0.03,0.07,0.079,0.086,0.146l0.107-0.026c-0.051-0.174-0.159-0.261-0.325-0.261
|
||||
c-0.12,0-0.214,0.045-0.284,0.136c-0.07,0.091-0.106,0.206-0.106,0.342c0,0.127,0.034,0.236,0.099,0.325
|
||||
c0.065,0.09,0.159,0.134,0.277,0.134c0.11,0,0.192-0.039,0.249-0.118l0.03,0.113h0.069v-0.467h-0.339V15.389z M15.34,15.568
|
||||
l-0.272-0.721H14.9v0.901h0.096v-0.787l0.296,0.787h0.077l0.292-0.787v0.787h0.109v-0.901h-0.166L15.34,15.568z M16.166,14.847
|
||||
l-0.294,0.901h0.096l0.081-0.264h0.335l0.09,0.264h0.115l-0.295-0.901H16.166z M16.08,15.4l0.139-0.433l0.139,0.433H16.08z
|
||||
M16.593,14.946h0.258v0.802h0.112v-0.802h0.258v-0.099h-0.629V14.946z M17.447,15.324h0.363v-0.092h-0.363v-0.286h0.458v-0.099
|
||||
h-0.571v0.901h0.583v-0.099h-0.469V15.324z M18.661,15.237c0.025-0.044,0.04-0.09,0.04-0.138c0-0.062-0.024-0.12-0.07-0.172
|
||||
c-0.046-0.053-0.119-0.08-0.214-0.08h-0.354v0.901h0.105v-0.391h0.258l0.166,0.391h0.12l-0.178-0.417
|
||||
C18.592,15.312,18.635,15.281,18.661,15.237z M18.403,15.267h-0.236v-0.32h0.249c0.051,0,0.09,0.014,0.122,0.04
|
||||
c0.034,0.026,0.05,0.063,0.05,0.111c0,0.047-0.016,0.087-0.046,0.12C18.511,15.25,18.465,15.267,18.403,15.267z M18.876,15.749
|
||||
h0.112v-0.901h-0.112V15.749z M19.384,14.847l-0.292,0.901h0.095l0.082-0.264h0.333l0.091,0.264h0.115l-0.294-0.901H19.384z
|
||||
M19.298,15.4l0.14-0.433l0.139,0.433H19.298z M20.026,14.847h-0.115v0.901h0.531v-0.099h-0.417V14.847z M20.93,15.246
|
||||
l-0.168-0.039c-0.098-0.023-0.146-0.068-0.146-0.135c0-0.048,0.019-0.085,0.058-0.11c0.037-0.026,0.082-0.04,0.131-0.04
|
||||
c0.05,0,0.097,0.014,0.141,0.041c0.044,0.027,0.072,0.067,0.084,0.12l0.103-0.031c-0.052-0.148-0.16-0.222-0.324-0.222
|
||||
c-0.089,0-0.161,0.022-0.219,0.067c-0.056,0.044-0.084,0.104-0.084,0.18c0,0.045,0.011,0.086,0.031,0.122
|
||||
c0.021,0.035,0.046,0.061,0.076,0.078s0.067,0.031,0.114,0.043l0.181,0.044c0.037,0.009,0.067,0.025,0.095,0.048
|
||||
c0.028,0.023,0.041,0.054,0.041,0.092c0,0.051-0.018,0.091-0.054,0.122c-0.036,0.03-0.089,0.045-0.161,0.045
|
||||
c-0.137,0-0.225-0.061-0.266-0.184L20.46,15.51c0.06,0.172,0.182,0.257,0.37,0.257c0.104,0,0.186-0.026,0.244-0.077
|
||||
c0.058-0.052,0.086-0.117,0.086-0.195C21.16,15.366,21.084,15.283,20.93,15.246z M21.64,15.749h0.112v-0.901H21.64V15.749z
|
||||
M22.538,15.454c0,0.019,0,0.041,0.002,0.065l0.001,0.063l-0.436-0.734h-0.142v0.901h0.092v-0.669
|
||||
c0-0.016-0.001-0.034-0.002-0.057l-0.002-0.06l0.466,0.786h0.109v-0.901h-0.089V15.454z M23.156,14.925
|
||||
c0.107,0,0.181,0.071,0.219,0.215l0.106-0.021c-0.049-0.193-0.156-0.29-0.326-0.29c-0.114,0-0.204,0.042-0.271,0.126
|
||||
c-0.069,0.084-0.103,0.196-0.103,0.334c0,0.135,0.033,0.248,0.098,0.339c0.065,0.092,0.155,0.138,0.27,0.138
|
||||
c0.172,0,0.284-0.099,0.333-0.298l-0.103-0.023c-0.037,0.15-0.114,0.225-0.228,0.225c-0.075,0-0.133-0.033-0.179-0.1
|
||||
c-0.044-0.066-0.067-0.155-0.067-0.265c0-0.121,0.021-0.214,0.066-0.281C23.014,14.958,23.075,14.925,23.156,14.925z
|
||||
M23.59,15.601v0.148h0.148v-0.148H23.59z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_39_copy_3">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EAE2CC" d="M17.531,16.833c-0.064,0-0.091,0.05-0.094,0.064
|
||||
c-0.003,0.015-0.002,0.019,0.012,0.025c0.029,0.008,0.082,0.039,0.082,0.108c0,0.093-0.075,0.117-0.131,0.117
|
||||
c-0.102,0-0.202-0.096-0.254-0.164c-0.071-0.093-0.146-0.222-0.26-0.222h-0.003c-0.059,0-0.109,0.026-0.134,0.059
|
||||
c0.055,0.103,0.165,0.219,0.215,0.265c0.047,0.04,0.128,0.131,0.279,0.161v0.01h-0.041c-0.069,0-0.174-0.021-0.296-0.112
|
||||
c-0.133-0.101-0.223-0.258-0.285-0.338c-0.099-0.125-0.192-0.178-0.311-0.178c-0.182,0-0.403,0.15-0.403,0.361
|
||||
c0,0.146,0.123,0.26,0.247,0.26c0.042,0,0.083-0.013,0.124-0.042c0.011-0.006,0.011-0.017-0.007-0.017
|
||||
c-0.075,0-0.24-0.095-0.24-0.277c0-0.114,0.064-0.217,0.23-0.217c0.165,0,0.249,0.12,0.317,0.222
|
||||
c-0.032,0.017-0.065,0.05-0.065,0.115c0,0.078,0.04,0.149,0.146,0.228c0.127,0.083,0.27,0.121,0.417,0.121
|
||||
c0.139,0,0.33-0.053,0.399-0.165c0.019-0.027,0.03-0.036,0.052-0.058c0.038-0.035,0.118-0.118,0.118-0.205
|
||||
C17.645,16.895,17.602,16.833,17.531,16.833z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_39_copy_3_2_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EAE2CC" d="M16.107,16.761c-0.041,0-0.081,0.014-0.125,0.042
|
||||
c-0.01,0.006-0.01,0.018,0.008,0.018c0.076,0,0.239,0.094,0.239,0.277c0,0.114-0.063,0.216-0.23,0.216
|
||||
c-0.165,0-0.248-0.12-0.316-0.221c0.032-0.018,0.063-0.05,0.063-0.116c0-0.077-0.038-0.148-0.146-0.228
|
||||
c-0.125-0.083-0.268-0.12-0.416-0.12c-0.14,0-0.329,0.053-0.398,0.164c-0.019,0.027-0.03,0.036-0.053,0.058
|
||||
c-0.037,0.035-0.118,0.118-0.118,0.205c0,0.06,0.044,0.122,0.115,0.122c0.063,0,0.09-0.05,0.092-0.064
|
||||
c0.003-0.015,0.001-0.019-0.011-0.026c-0.029-0.007-0.083-0.039-0.083-0.107c0-0.093,0.075-0.118,0.133-0.118
|
||||
c0.101,0,0.2,0.097,0.253,0.164c0.072,0.093,0.147,0.222,0.262,0.222h0.002c0.058,0,0.108-0.027,0.133-0.06
|
||||
c-0.054-0.102-0.164-0.218-0.215-0.265c-0.047-0.04-0.127-0.131-0.278-0.162v-0.01h0.041c0.069,0,0.174,0.022,0.296,0.112
|
||||
c0.132,0.101,0.222,0.258,0.286,0.339c0.097,0.125,0.191,0.178,0.311,0.178c0.184,0,0.403-0.15,0.403-0.361
|
||||
C16.354,16.875,16.231,16.761,16.107,16.761z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_37_copy_10">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M3.741,21.821v0.104c0.566,2.134,1.112,4.204,1.641,6.347
|
||||
c6.986-2.134,14.646-2.159,21.659,0c0.528-2.144,1.074-4.318,1.641-6.452C20.546,19.487,11.801,19.458,3.741,21.821z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_37_copy_10_2_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FBF0D7" d="M4.414,22.131l0,0.087c0.525,1.795,0.948,3.621,1.438,5.424
|
||||
c6.626-1.795,14.059-1.899,20.69-0.083c0.511-1.804,0.944-3.633,1.491-5.428C20.34,20.167,12.058,20.143,4.414,22.131z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_37_copy_11">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#D3D1B0" d="M4.867,22.371c0.427,1.562,0.844,3.152,1.25,4.772
|
||||
c6.582-1.771,13.607-1.771,20.19,0c0.405-1.62,0.821-3.211,1.249-4.772C20.15,20.5,12.273,20.5,4.867,22.371z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ASSAULT">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#722429" d="M7.033,22.661c0.053,1.111,0.119,2.221,0.197,3.329
|
||||
c0.32-0.062,0.643-0.122,0.965-0.177L8.137,25.22c0.114-0.02,0.228-0.039,0.34-0.057c0.054,0.191,0.106,0.383,0.159,0.576
|
||||
c0.319-0.052,0.638-0.102,0.958-0.147C9.24,24.529,8.871,23.47,8.49,22.414C8.004,22.489,7.518,22.572,7.033,22.661z
|
||||
M8.014,24.646c-0.03-0.292-0.057-0.757-0.074-1.396c0.153,0.533,0.287,0.98,0.405,1.34C8.234,24.608,8.125,24.627,8.014,24.646z
|
||||
M11.848,23.769c-0.129-0.134-0.423-0.295-0.89-0.473c-0.163-0.062-0.265-0.118-0.305-0.169c-0.042-0.051-0.069-0.132-0.083-0.241
|
||||
c-0.012-0.085-0.005-0.15,0.021-0.196c0.026-0.045,0.068-0.071,0.13-0.078c0.056-0.006,0.097,0.005,0.124,0.034
|
||||
c0.028,0.028,0.048,0.099,0.063,0.213c0.01,0.081,0.02,0.162,0.03,0.243c0.307-0.033,0.614-0.064,0.922-0.091
|
||||
c-0.004-0.043-0.008-0.087-0.012-0.13c-0.027-0.261-0.076-0.443-0.146-0.547c-0.071-0.103-0.203-0.182-0.396-0.235
|
||||
c-0.194-0.054-0.424-0.066-0.688-0.037c-0.242,0.027-0.443,0.084-0.604,0.171c-0.161,0.086-0.271,0.193-0.33,0.318
|
||||
c-0.059,0.126-0.068,0.314-0.031,0.564c0.027,0.173,0.074,0.313,0.145,0.417c0.068,0.104,0.146,0.184,0.234,0.237
|
||||
s0.264,0.134,0.524,0.246c0.261,0.111,0.424,0.194,0.492,0.246c0.067,0.053,0.112,0.176,0.134,0.37
|
||||
c0.012,0.088,0.004,0.155-0.021,0.203s-0.07,0.076-0.133,0.083c-0.064,0.007-0.11-0.006-0.14-0.039
|
||||
c-0.03-0.032-0.052-0.109-0.067-0.232c-0.018-0.133-0.034-0.266-0.052-0.399c-0.3,0.034-0.599,0.071-0.897,0.111
|
||||
c0.01,0.071,0.021,0.143,0.031,0.214c0.037,0.245,0.094,0.43,0.169,0.556s0.208,0.22,0.397,0.285
|
||||
c0.191,0.064,0.411,0.082,0.662,0.054c0.23-0.025,0.427-0.083,0.592-0.175c0.164-0.092,0.273-0.195,0.322-0.312
|
||||
c0.05-0.116,0.064-0.292,0.04-0.526C12.053,24.133,11.975,23.904,11.848,23.769z M13.812,23.071
|
||||
c-0.158-0.071-0.257-0.133-0.292-0.187c-0.039-0.054-0.062-0.136-0.069-0.246c-0.005-0.085,0.007-0.15,0.034-0.194
|
||||
c0.029-0.043,0.074-0.067,0.135-0.07c0.055-0.003,0.097,0.011,0.122,0.041s0.042,0.102,0.048,0.216
|
||||
c0.005,0.082,0.01,0.163,0.014,0.245c0.31-0.016,0.618-0.028,0.926-0.038c-0.001-0.043-0.003-0.087-0.004-0.13
|
||||
c-0.01-0.263-0.045-0.448-0.109-0.555c-0.065-0.107-0.191-0.194-0.381-0.258s-0.418-0.09-0.684-0.076
|
||||
c-0.242,0.013-0.447,0.059-0.612,0.136c-0.166,0.077-0.282,0.177-0.349,0.299c-0.066,0.122-0.088,0.309-0.066,0.561
|
||||
c0.014,0.175,0.053,0.316,0.115,0.425c0.063,0.108,0.135,0.191,0.219,0.25c0.085,0.058,0.254,0.149,0.507,0.275
|
||||
c0.252,0.125,0.409,0.217,0.475,0.274c0.063,0.057,0.101,0.182,0.11,0.376c0.006,0.088-0.007,0.155-0.035,0.202
|
||||
c-0.029,0.046-0.074,0.071-0.139,0.074c-0.063,0.003-0.107-0.012-0.135-0.045c-0.027-0.034-0.045-0.113-0.053-0.236
|
||||
c-0.01-0.134-0.018-0.268-0.025-0.401c-0.301,0.017-0.602,0.037-0.902,0.059c0.006,0.072,0.012,0.144,0.018,0.215
|
||||
c0.021,0.247,0.064,0.436,0.133,0.565c0.066,0.13,0.193,0.231,0.379,0.307c0.186,0.075,0.403,0.105,0.655,0.092
|
||||
c0.23-0.012,0.431-0.058,0.601-0.141c0.17-0.082,0.285-0.179,0.342-0.292s0.082-0.288,0.074-0.522
|
||||
c-0.011-0.323-0.074-0.556-0.193-0.698C14.549,23.453,14.266,23.275,13.812,23.071z M15.76,21.816
|
||||
c-0.16,1.102-0.309,2.205-0.442,3.308c0.326-0.007,0.652-0.01,0.978-0.01l0.059-0.593c0.113,0,0.229,0,0.342,0.001
|
||||
c0.016,0.198,0.031,0.396,0.046,0.593c0.323,0.003,0.646,0.009,0.968,0.019c-0.145-1.105-0.303-2.209-0.476-3.313
|
||||
C16.742,21.813,16.251,21.811,15.76,21.816z M16.34,23.936c0.027-0.292,0.09-0.754,0.195-1.386
|
||||
c0.048,0.55,0.095,1.013,0.141,1.387C16.564,23.936,16.452,23.936,16.34,23.936z M19.481,24.349
|
||||
c-0.013,0.164-0.028,0.268-0.05,0.311c-0.02,0.042-0.061,0.063-0.121,0.059c-0.053-0.004-0.087-0.025-0.102-0.066
|
||||
c-0.014-0.042-0.018-0.134-0.008-0.277c0.055-0.824,0.11-1.647,0.166-2.47c-0.34-0.02-0.68-0.037-1.02-0.05
|
||||
c-0.028,0.65-0.058,1.301-0.086,1.951c-0.018,0.372-0.021,0.616-0.012,0.733c0.012,0.116,0.055,0.229,0.133,0.337
|
||||
c0.078,0.108,0.198,0.198,0.361,0.272c0.162,0.073,0.352,0.117,0.567,0.13c0.196,0.013,0.368-0.003,0.517-0.047
|
||||
s0.271-0.116,0.371-0.214c0.099-0.099,0.162-0.198,0.189-0.297c0.027-0.1,0.055-0.273,0.078-0.523
|
||||
c0.07-0.732,0.141-1.464,0.211-2.196c-0.34-0.029-0.679-0.055-1.018-0.077C19.601,22.731,19.541,23.54,19.481,24.349z
|
||||
M22.457,22.182c-0.338-0.041-0.676-0.078-1.015-0.112c-0.124,1.094-0.248,2.188-0.372,3.282c0.506,0.051,1.01,0.11,1.514,0.176
|
||||
c0.033-0.218,0.065-0.436,0.098-0.654c-0.193-0.026-0.387-0.05-0.58-0.074C22.221,23.928,22.338,23.055,22.457,22.182z
|
||||
M23.516,22.321l-0.105,0.653c0.197,0.028,0.393,0.057,0.59,0.087c-0.15,0.869-0.301,1.737-0.453,2.605
|
||||
c0.313,0.048,0.625,0.099,0.938,0.154c0.169-0.865,0.34-1.731,0.51-2.596c0.196,0.034,0.393,0.07,0.588,0.107
|
||||
c0.047-0.216,0.092-0.432,0.137-0.648C24.986,22.546,24.252,22.426,23.516,22.321z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g id="Shape_37_copy_6">
|
||||
<g>
|
||||
<rect x="1.434" y="4.102" fill-rule="evenodd" clip-rule="evenodd" fill="#D3D1B0" width="29.43" height="21.078"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_37_copy_7">
|
||||
<g>
|
||||
<rect x="1.857" y="4.426" fill-rule="evenodd" clip-rule="evenodd" fill="#722429" width="28.6" height="20.192"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_37_copy_5_2_">
|
||||
<g>
|
||||
<rect x="2.537" y="4.938" fill-rule="evenodd" clip-rule="evenodd" fill="#E8E5BC" width="27.416" height="19.048"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_37_copy_8">
|
||||
<g>
|
||||
<rect x="3.199" y="5.51" fill-rule="evenodd" clip-rule="evenodd" fill="#2F151C" width="26.213" height="17.942"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_37_copy_9">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#878577" points="3.199,5.51 3.199,23.452 29.412,5.51 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_38">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M16.258,7.948c-6.71,0-12.035,2.579-12.035,5.76
|
||||
c0,3.181,5.325,5.759,12.035,5.759c6.708,0,12.034-2.579,12.034-5.759C28.292,10.527,22.966,7.948,16.258,7.948z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_38_copy">
|
||||
<g>
|
||||
<ellipse fill-rule="evenodd" clip-rule="evenodd" fill="#D3D1B0" cx="16.258" cy="13.708" rx="11.525" ry="5.266"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_38_copy_2">
|
||||
<g>
|
||||
<ellipse fill-rule="evenodd" clip-rule="evenodd" fill="#99654B" cx="16.249" cy="13.708" rx="11.119" ry="5.036"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_38_copy_3">
|
||||
<g>
|
||||
<ellipse fill-rule="evenodd" clip-rule="evenodd" fill="#722429" cx="16.225" cy="13.708" rx="10.635" ry="4.771"/>
|
||||
</g>
|
||||
</g>
|
||||
<g opacity="0.3">
|
||||
<g id="PARKER_2_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M10.131,11.784c-0.129-0.052-0.316-0.078-0.56-0.078H8.48v2.771
|
||||
h0.659v-1.029h0.457c0.198,0,0.343-0.012,0.436-0.037c0.092-0.024,0.188-0.074,0.287-0.148c0.099-0.075,0.176-0.177,0.229-0.307
|
||||
c0.054-0.13,0.082-0.263,0.082-0.4c0-0.194-0.05-0.359-0.151-0.493C10.375,11.929,10.26,11.835,10.131,11.784z M9.878,12.832
|
||||
c-0.065,0.074-0.178,0.111-0.339,0.111H9.116v-0.734h0.42c0.147,0,0.257,0.033,0.331,0.099c0.072,0.066,0.108,0.156,0.108,0.268
|
||||
C9.976,12.672,9.943,12.758,9.878,12.832z M11.558,11.706l-0.889,2.771h0.569l0.174-0.571h0.896l0.17,0.571h0.696l-0.867-2.771
|
||||
H11.558z M11.567,13.395l0.296-0.973l0.292,0.973H11.567z M16.017,12.535c0-0.17-0.044-0.325-0.133-0.464
|
||||
c-0.09-0.139-0.202-0.235-0.339-0.287c-0.136-0.052-0.316-0.078-0.541-0.078h-1.217v2.771h0.654v-1.099h0.464l0.426,1.099h0.717
|
||||
l-0.512-1.225C15.855,13.106,16.017,12.868,16.017,12.535z M15.279,12.756c-0.047,0.063-0.099,0.103-0.158,0.122
|
||||
c-0.059,0.018-0.153,0.027-0.284,0.027H14.44v-0.706h0.383c0.148,0,0.25,0.007,0.304,0.021c0.055,0.015,0.105,0.052,0.152,0.113
|
||||
c0.045,0.061,0.068,0.13,0.068,0.207C15.347,12.621,15.324,12.693,15.279,12.756z M18.957,11.706h-0.622l-0.868,1.301v-1.301
|
||||
h-0.637v2.771h0.637v-0.636l0.389-0.568l0.552,1.204h0.715l-0.832-1.782L18.957,11.706z M19.762,14.477h1.979v-0.548h-1.319
|
||||
v-0.605h1.037v-0.521h-1.037v-0.568h1.319v-0.528h-1.979V14.477z M24.193,13.251c0.322-0.145,0.481-0.384,0.481-0.717
|
||||
c0-0.17-0.045-0.325-0.134-0.464s-0.202-0.235-0.338-0.287c-0.137-0.052-0.316-0.078-0.541-0.078h-1.218v2.771h0.654v-1.099
|
||||
h0.464l0.425,1.099h0.717L24.193,13.251z M23.936,12.756c-0.046,0.063-0.098,0.103-0.158,0.122
|
||||
c-0.058,0.018-0.153,0.027-0.283,0.027h-0.397v-0.706h0.383c0.149,0,0.25,0.007,0.304,0.021c0.054,0.015,0.105,0.052,0.151,0.113
|
||||
c0.046,0.061,0.068,0.13,0.068,0.207C24.004,12.621,23.981,12.693,23.936,12.756z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="BUILDING_MATERIALS_INC._2_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M9.863,15.583c0.107-0.033,0.16-0.101,0.16-0.203
|
||||
c0-0.058-0.021-0.109-0.064-0.152c-0.044-0.044-0.11-0.066-0.2-0.066H9.403v0.901h0.356c0.099,0,0.173-0.024,0.221-0.072
|
||||
c0.049-0.048,0.072-0.107,0.072-0.178c0-0.052-0.016-0.1-0.045-0.142C9.975,15.629,9.927,15.601,9.863,15.583z M9.511,15.254
|
||||
h0.225c0.058,0,0.102,0.013,0.131,0.038c0.03,0.026,0.045,0.059,0.045,0.1c0,0.042-0.014,0.078-0.041,0.109
|
||||
c-0.028,0.031-0.083,0.046-0.163,0.046H9.511V15.254z M9.89,15.92c-0.032,0.029-0.077,0.043-0.137,0.043H9.511v-0.33h0.225
|
||||
c0.052,0,0.091,0.007,0.119,0.022c0.026,0.015,0.046,0.037,0.061,0.063c0.015,0.028,0.022,0.058,0.022,0.089
|
||||
C9.938,15.855,9.921,15.892,9.89,15.92z M10.719,15.75c0,0.082-0.017,0.141-0.053,0.178c-0.037,0.036-0.089,0.055-0.158,0.055
|
||||
c-0.037,0-0.071-0.007-0.104-0.021s-0.058-0.035-0.074-0.063c-0.016-0.028-0.024-0.078-0.024-0.148v-0.588h-0.112v0.588
|
||||
c0,0.115,0.024,0.199,0.075,0.252c0.051,0.053,0.127,0.079,0.231,0.079c0.094,0,0.169-0.026,0.228-0.077
|
||||
c0.058-0.051,0.086-0.136,0.086-0.254v-0.588h-0.094V15.75z M11.012,16.063h0.113v-0.901h-0.113V16.063z M11.452,15.162h-0.115
|
||||
v0.901h0.532v-0.099h-0.417V15.162z M12.287,15.162h-0.302v0.901h0.339c0.106,0,0.194-0.044,0.264-0.131
|
||||
c0.068-0.087,0.103-0.194,0.103-0.322c0-0.125-0.036-0.231-0.107-0.318C12.512,15.205,12.414,15.162,12.287,15.162z
|
||||
M12.501,15.867c-0.051,0.067-0.124,0.101-0.221,0.101h-0.183v-0.711h0.183c0.101,0,0.176,0.036,0.224,0.107
|
||||
c0.047,0.071,0.072,0.15,0.072,0.239C12.576,15.711,12.55,15.8,12.501,15.867z M12.845,16.063h0.112v-0.901h-0.112V16.063z
|
||||
M13.744,15.768c0,0.019,0,0.041,0.001,0.065l0.002,0.063l-0.435-0.734h-0.143v0.901h0.092v-0.669c0-0.015,0-0.034-0.002-0.057
|
||||
l-0.001-0.06l0.466,0.786h0.11v-0.901h-0.09V15.768z M14.373,15.703h0.223c0.001,0.019,0.001,0.036,0.001,0.049
|
||||
c0,0.074-0.021,0.132-0.063,0.174c-0.043,0.042-0.096,0.063-0.159,0.063c-0.082,0-0.146-0.033-0.193-0.098
|
||||
c-0.047-0.066-0.071-0.157-0.071-0.274c0-0.109,0.021-0.198,0.063-0.271c0.042-0.071,0.108-0.107,0.198-0.107
|
||||
c0.049,0,0.095,0.015,0.138,0.045c0.042,0.03,0.07,0.079,0.086,0.146l0.106-0.026c-0.05-0.174-0.159-0.261-0.325-0.261
|
||||
c-0.12,0-0.214,0.045-0.285,0.136c-0.07,0.091-0.105,0.206-0.105,0.342c0,0.128,0.034,0.236,0.099,0.325
|
||||
c0.065,0.09,0.159,0.134,0.277,0.134c0.11,0,0.193-0.039,0.249-0.118l0.03,0.113h0.069v-0.467h-0.338V15.703z M15.669,15.883
|
||||
l-0.272-0.721h-0.167v0.901h0.097v-0.787l0.295,0.787h0.077l0.292-0.787v0.787H16.1v-0.901h-0.166L15.669,15.883z M16.496,15.162
|
||||
l-0.294,0.901h0.095l0.081-0.264h0.335l0.09,0.264h0.115l-0.294-0.901H16.496z M16.409,15.715l0.139-0.433l0.14,0.433H16.409z
|
||||
M16.922,15.261h0.258v0.802h0.112v-0.802h0.258v-0.099h-0.629V15.261z M17.777,15.639h0.363v-0.091h-0.363v-0.287h0.458v-0.099
|
||||
h-0.571v0.901h0.582v-0.099h-0.469V15.639z M18.991,15.551c0.025-0.044,0.04-0.09,0.04-0.138c0-0.062-0.024-0.12-0.07-0.172
|
||||
c-0.046-0.053-0.119-0.08-0.214-0.08h-0.355v0.901h0.106v-0.391h0.257l0.166,0.391h0.12l-0.178-0.417
|
||||
C18.921,15.627,18.965,15.595,18.991,15.551z M18.732,15.581h-0.236v-0.32h0.249c0.05,0,0.09,0.014,0.122,0.04
|
||||
c0.034,0.026,0.05,0.063,0.05,0.111c0,0.047-0.016,0.087-0.046,0.12C18.84,15.564,18.794,15.581,18.732,15.581z M19.206,16.063
|
||||
h0.112v-0.901h-0.112V16.063z M19.713,15.162l-0.292,0.901h0.094l0.082-0.264h0.333l0.091,0.264h0.115l-0.293-0.901H19.713z
|
||||
M19.627,15.715l0.139-0.433l0.14,0.433H19.627z M20.355,15.162H20.24v0.901h0.532v-0.099h-0.417V15.162z M21.26,15.56
|
||||
l-0.168-0.039c-0.098-0.023-0.146-0.068-0.146-0.135c0-0.048,0.019-0.085,0.058-0.11c0.038-0.026,0.083-0.04,0.131-0.04
|
||||
c0.049,0,0.097,0.014,0.14,0.041c0.044,0.027,0.072,0.067,0.084,0.12l0.103-0.031c-0.053-0.148-0.16-0.222-0.324-0.222
|
||||
c-0.089,0-0.161,0.022-0.219,0.067c-0.056,0.044-0.084,0.104-0.084,0.18c0,0.045,0.011,0.086,0.031,0.121
|
||||
c0.021,0.035,0.045,0.061,0.076,0.078c0.03,0.017,0.067,0.031,0.114,0.043l0.181,0.044c0.036,0.009,0.067,0.025,0.094,0.048
|
||||
c0.028,0.023,0.042,0.054,0.042,0.092c0,0.051-0.018,0.091-0.055,0.122c-0.035,0.03-0.089,0.045-0.161,0.045
|
||||
c-0.137,0-0.225-0.062-0.266-0.185l-0.101,0.023c0.06,0.172,0.183,0.257,0.37,0.257c0.104,0,0.187-0.026,0.245-0.077
|
||||
c0.058-0.052,0.086-0.117,0.086-0.195C21.49,15.68,21.414,15.597,21.26,15.56z M21.969,16.063h0.112v-0.901h-0.112V16.063z
|
||||
M22.868,15.768c0,0.019,0,0.041,0.002,0.065l0,0.063l-0.435-0.734h-0.142v0.901h0.092v-0.669c0-0.015-0.001-0.034-0.002-0.057
|
||||
l-0.002-0.06l0.466,0.786h0.109v-0.901h-0.089V15.768z M23.485,15.239c0.106,0,0.181,0.072,0.219,0.215l0.107-0.021
|
||||
c-0.049-0.193-0.156-0.29-0.326-0.29c-0.114,0-0.204,0.042-0.271,0.126c-0.069,0.084-0.103,0.196-0.103,0.334
|
||||
c0,0.135,0.033,0.248,0.097,0.339c0.066,0.092,0.156,0.138,0.27,0.138c0.172,0,0.285-0.099,0.333-0.298l-0.103-0.023
|
||||
c-0.038,0.15-0.114,0.226-0.229,0.226c-0.075,0-0.133-0.034-0.179-0.1c-0.044-0.067-0.067-0.155-0.067-0.266
|
||||
c0-0.121,0.021-0.214,0.066-0.281C23.343,15.272,23.405,15.239,23.485,15.239z M23.919,15.915v0.148h0.148v-0.148H23.919z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_39_copy_3_6_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M17.86,17.147c-0.065,0-0.091,0.05-0.094,0.064
|
||||
c-0.004,0.015-0.002,0.019,0.012,0.025c0.029,0.008,0.082,0.039,0.082,0.108c0,0.093-0.075,0.117-0.131,0.117
|
||||
c-0.102,0-0.202-0.096-0.254-0.164c-0.071-0.093-0.146-0.222-0.26-0.222h-0.003c-0.059,0-0.109,0.026-0.134,0.059
|
||||
c0.054,0.103,0.165,0.219,0.215,0.265c0.047,0.04,0.128,0.131,0.279,0.162v0.01h-0.041c-0.069,0-0.174-0.021-0.296-0.111
|
||||
c-0.133-0.101-0.223-0.258-0.286-0.339c-0.098-0.125-0.191-0.178-0.311-0.178c-0.183,0-0.403,0.15-0.403,0.361
|
||||
c0,0.146,0.123,0.26,0.247,0.26c0.041,0,0.083-0.013,0.124-0.042c0.011-0.006,0.011-0.017-0.007-0.017
|
||||
c-0.075,0-0.24-0.095-0.24-0.277c0-0.114,0.063-0.217,0.23-0.217c0.165,0,0.249,0.12,0.317,0.222
|
||||
c-0.032,0.017-0.064,0.05-0.064,0.116c0,0.077,0.04,0.148,0.146,0.227c0.127,0.083,0.27,0.121,0.417,0.121
|
||||
c0.139,0,0.33-0.053,0.399-0.165c0.019-0.027,0.03-0.036,0.052-0.058c0.038-0.035,0.118-0.118,0.118-0.204
|
||||
C17.975,17.209,17.931,17.147,17.86,17.147z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_39_copy_3_4_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M16.437,17.075c-0.041,0-0.082,0.014-0.125,0.042
|
||||
c-0.01,0.006-0.01,0.018,0.007,0.018c0.076,0,0.24,0.094,0.24,0.277c0,0.114-0.063,0.216-0.23,0.216
|
||||
c-0.165,0-0.248-0.12-0.316-0.221c0.032-0.018,0.063-0.05,0.063-0.115c0-0.078-0.038-0.149-0.146-0.228
|
||||
c-0.125-0.083-0.268-0.12-0.416-0.12c-0.141,0-0.33,0.053-0.398,0.164c-0.019,0.027-0.03,0.036-0.054,0.058
|
||||
c-0.036,0.035-0.118,0.118-0.118,0.205c0,0.06,0.044,0.121,0.115,0.121c0.064,0,0.09-0.05,0.092-0.064
|
||||
c0.004-0.015,0.002-0.019-0.011-0.026c-0.029-0.007-0.082-0.039-0.082-0.107c0-0.093,0.075-0.118,0.133-0.118
|
||||
c0.101,0,0.2,0.097,0.252,0.164c0.072,0.093,0.147,0.222,0.262,0.222h0.002c0.058,0,0.108-0.027,0.133-0.06
|
||||
c-0.054-0.102-0.164-0.218-0.215-0.265c-0.047-0.04-0.127-0.131-0.278-0.162v-0.009h0.04c0.069,0,0.174,0.021,0.297,0.112
|
||||
c0.132,0.1,0.222,0.258,0.286,0.338c0.097,0.125,0.191,0.178,0.311,0.178c0.184,0,0.402-0.15,0.402-0.361
|
||||
C16.683,17.189,16.561,17.075,16.437,17.075z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g id="PARKER">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EAE2CC" d="M9.802,11.469c-0.129-0.052-0.316-0.078-0.56-0.078H8.15v2.771
|
||||
H8.81v-1.029h0.457c0.199,0,0.343-0.012,0.436-0.037c0.092-0.025,0.188-0.074,0.287-0.148c0.099-0.075,0.176-0.177,0.229-0.307
|
||||
c0.053-0.13,0.081-0.263,0.081-0.4c0-0.194-0.05-0.359-0.151-0.493C10.045,11.614,9.931,11.521,9.802,11.469z M9.549,12.518
|
||||
c-0.065,0.074-0.178,0.111-0.339,0.111H8.787v-0.734h0.42c0.147,0,0.258,0.033,0.331,0.099c0.072,0.066,0.108,0.155,0.108,0.268
|
||||
C9.646,12.358,9.613,12.443,9.549,12.518z M11.228,11.391l-0.889,2.771h0.569l0.174-0.571h0.896l0.17,0.571h0.696l-0.867-2.771
|
||||
H11.228z M11.237,13.08l0.297-0.973l0.291,0.973H11.237z M15.687,12.22c0-0.17-0.044-0.325-0.133-0.464
|
||||
c-0.09-0.139-0.202-0.235-0.338-0.287c-0.137-0.052-0.316-0.078-0.541-0.078h-1.218v2.771h0.654v-1.099h0.464l0.426,1.099h0.717
|
||||
l-0.512-1.226C15.526,12.792,15.687,12.553,15.687,12.22z M14.949,12.441c-0.047,0.063-0.099,0.103-0.158,0.122
|
||||
c-0.059,0.018-0.153,0.027-0.283,0.027h-0.397v-0.706h0.383c0.149,0,0.25,0.007,0.304,0.021c0.054,0.015,0.104,0.052,0.151,0.113
|
||||
c0.045,0.061,0.068,0.13,0.068,0.207C15.018,12.307,14.994,12.378,14.949,12.441z M18.628,11.391h-0.622l-0.869,1.301v-1.301
|
||||
h-0.637v2.771h0.637v-0.636l0.389-0.568l0.552,1.204h0.715l-0.832-1.782L18.628,11.391z M19.433,14.162h1.979v-0.548h-1.319
|
||||
v-0.605h1.037v-0.522h-1.037v-0.568h1.319v-0.528h-1.979V14.162z M23.863,12.937c0.322-0.145,0.481-0.383,0.481-0.716
|
||||
c0-0.17-0.045-0.325-0.134-0.464c-0.089-0.139-0.202-0.235-0.338-0.287c-0.136-0.052-0.316-0.078-0.541-0.078h-1.218v2.771h0.654
|
||||
v-1.099h0.464l0.425,1.099h0.717L23.863,12.937z M23.606,12.441c-0.046,0.063-0.098,0.103-0.158,0.122
|
||||
c-0.058,0.018-0.153,0.027-0.283,0.027h-0.396v-0.706h0.383c0.148,0,0.25,0.007,0.304,0.021c0.055,0.015,0.105,0.052,0.151,0.113
|
||||
s0.068,0.13,0.068,0.207C23.674,12.307,23.652,12.378,23.606,12.441z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="BUILDING_MATERIALS_INC.">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EAE2CC" d="M9.534,15.269c0.107-0.033,0.16-0.101,0.16-0.203
|
||||
c0-0.058-0.021-0.109-0.064-0.152c-0.044-0.044-0.11-0.066-0.2-0.066H9.073v0.901h0.356c0.099,0,0.173-0.024,0.221-0.072
|
||||
c0.049-0.048,0.072-0.107,0.072-0.178c0-0.052-0.016-0.1-0.046-0.142C9.646,15.315,9.598,15.286,9.534,15.269z M9.182,14.939
|
||||
h0.225c0.058,0,0.102,0.012,0.131,0.038c0.03,0.026,0.045,0.059,0.045,0.1c0,0.042-0.014,0.078-0.041,0.109
|
||||
c-0.028,0.031-0.083,0.046-0.163,0.046H9.182V14.939z M9.56,15.606c-0.032,0.029-0.077,0.043-0.137,0.043H9.182v-0.33h0.225
|
||||
c0.052,0,0.092,0.007,0.119,0.022c0.026,0.015,0.046,0.037,0.061,0.063c0.015,0.028,0.022,0.058,0.022,0.089
|
||||
C9.609,15.541,9.592,15.578,9.56,15.606z M10.389,15.436c0,0.082-0.017,0.141-0.053,0.178c-0.037,0.036-0.089,0.055-0.158,0.055
|
||||
c-0.036,0-0.071-0.007-0.104-0.021S10.016,15.613,10,15.584c-0.016-0.028-0.024-0.078-0.024-0.148v-0.588H9.863v0.588
|
||||
c0,0.115,0.024,0.199,0.075,0.252c0.05,0.053,0.127,0.079,0.231,0.079c0.094,0,0.169-0.026,0.228-0.077
|
||||
c0.058-0.052,0.086-0.136,0.086-0.254v-0.588h-0.094V15.436z M10.682,15.749h0.113v-0.901h-0.113V15.749z M11.122,14.847h-0.115
|
||||
v0.901h0.532v-0.099h-0.417V14.847z M11.957,14.847h-0.302v0.901h0.339c0.106,0,0.195-0.044,0.264-0.131
|
||||
c0.068-0.087,0.103-0.194,0.103-0.322c0-0.125-0.036-0.231-0.106-0.318C12.183,14.891,12.084,14.847,11.957,14.847z
|
||||
M12.171,15.552c-0.05,0.067-0.124,0.101-0.221,0.101h-0.184v-0.711h0.184c0.101,0,0.176,0.036,0.224,0.107
|
||||
c0.048,0.071,0.072,0.15,0.072,0.239C12.246,15.397,12.22,15.485,12.171,15.552z M12.516,15.749h0.112v-0.901h-0.112V15.749z
|
||||
M13.415,15.454c0,0.019,0,0.041,0,0.065l0.002,0.063l-0.435-0.734H12.84v0.901h0.092v-0.669c0-0.016,0-0.034-0.002-0.057
|
||||
l-0.002-0.06l0.466,0.786h0.111v-0.901h-0.09V15.454z M14.043,15.389h0.223c0.001,0.019,0.001,0.035,0.001,0.049
|
||||
c0,0.074-0.021,0.132-0.063,0.174c-0.043,0.042-0.096,0.063-0.159,0.063c-0.082,0-0.146-0.033-0.193-0.098
|
||||
c-0.048-0.066-0.071-0.157-0.071-0.274c0-0.109,0.021-0.198,0.063-0.271c0.042-0.071,0.108-0.107,0.198-0.107
|
||||
c0.049,0,0.095,0.015,0.139,0.045c0.041,0.03,0.07,0.079,0.086,0.146l0.107-0.026c-0.051-0.174-0.159-0.261-0.325-0.261
|
||||
c-0.12,0-0.214,0.045-0.284,0.136c-0.07,0.091-0.106,0.206-0.106,0.342c0,0.127,0.034,0.236,0.099,0.325
|
||||
c0.065,0.09,0.159,0.134,0.277,0.134c0.11,0,0.192-0.039,0.249-0.118l0.03,0.113h0.069v-0.467h-0.339V15.389z M15.34,15.568
|
||||
l-0.272-0.721H14.9v0.901h0.096v-0.787l0.296,0.787h0.077l0.292-0.787v0.787h0.109v-0.901h-0.166L15.34,15.568z M16.166,14.847
|
||||
l-0.294,0.901h0.096l0.081-0.264h0.335l0.09,0.264h0.115l-0.295-0.901H16.166z M16.08,15.4l0.139-0.433l0.139,0.433H16.08z
|
||||
M16.593,14.946h0.258v0.802h0.112v-0.802h0.258v-0.099h-0.629V14.946z M17.447,15.324h0.363v-0.092h-0.363v-0.286h0.458v-0.099
|
||||
h-0.571v0.901h0.583v-0.099h-0.469V15.324z M18.661,15.237c0.025-0.044,0.04-0.09,0.04-0.138c0-0.062-0.024-0.12-0.07-0.172
|
||||
c-0.046-0.053-0.119-0.08-0.214-0.08h-0.354v0.901h0.105v-0.391h0.258l0.166,0.391h0.12l-0.178-0.417
|
||||
C18.592,15.312,18.635,15.281,18.661,15.237z M18.403,15.267h-0.236v-0.32h0.249c0.051,0,0.09,0.014,0.122,0.04
|
||||
c0.034,0.026,0.05,0.063,0.05,0.111c0,0.047-0.016,0.087-0.046,0.12C18.511,15.25,18.465,15.267,18.403,15.267z M18.876,15.749
|
||||
h0.112v-0.901h-0.112V15.749z M19.384,14.847l-0.292,0.901h0.095l0.082-0.264h0.333l0.091,0.264h0.115l-0.294-0.901H19.384z
|
||||
M19.298,15.4l0.14-0.433l0.139,0.433H19.298z M20.026,14.847h-0.115v0.901h0.531v-0.099h-0.417V14.847z M20.93,15.246
|
||||
l-0.168-0.039c-0.098-0.023-0.146-0.068-0.146-0.135c0-0.048,0.019-0.085,0.058-0.11c0.037-0.026,0.082-0.04,0.131-0.04
|
||||
c0.05,0,0.097,0.014,0.141,0.041c0.044,0.027,0.072,0.067,0.084,0.12l0.103-0.031c-0.052-0.148-0.16-0.222-0.324-0.222
|
||||
c-0.089,0-0.161,0.022-0.219,0.067c-0.056,0.044-0.084,0.104-0.084,0.18c0,0.045,0.011,0.086,0.031,0.122
|
||||
c0.021,0.035,0.046,0.061,0.076,0.078s0.067,0.031,0.114,0.043l0.181,0.044c0.037,0.009,0.067,0.025,0.095,0.048
|
||||
c0.028,0.023,0.041,0.054,0.041,0.092c0,0.051-0.018,0.091-0.054,0.122c-0.036,0.03-0.089,0.045-0.161,0.045
|
||||
c-0.137,0-0.225-0.061-0.266-0.184L20.46,15.51c0.06,0.172,0.182,0.257,0.37,0.257c0.104,0,0.186-0.026,0.244-0.077
|
||||
c0.058-0.052,0.086-0.117,0.086-0.195C21.16,15.366,21.084,15.283,20.93,15.246z M21.64,15.749h0.112v-0.901H21.64V15.749z
|
||||
M22.538,15.454c0,0.019,0,0.041,0.002,0.065l0.001,0.063l-0.436-0.734h-0.142v0.901h0.092v-0.669
|
||||
c0-0.016-0.001-0.034-0.002-0.057l-0.002-0.06l0.466,0.786h0.109v-0.901h-0.089V15.454z M23.156,14.925
|
||||
c0.107,0,0.181,0.071,0.219,0.215l0.106-0.021c-0.049-0.193-0.156-0.29-0.326-0.29c-0.114,0-0.204,0.042-0.271,0.126
|
||||
c-0.069,0.084-0.103,0.196-0.103,0.334c0,0.135,0.033,0.248,0.098,0.339c0.065,0.092,0.155,0.138,0.27,0.138
|
||||
c0.172,0,0.284-0.099,0.333-0.298l-0.103-0.023c-0.037,0.15-0.114,0.225-0.228,0.225c-0.075,0-0.133-0.033-0.179-0.1
|
||||
c-0.044-0.066-0.067-0.155-0.067-0.265c0-0.121,0.021-0.214,0.066-0.281C23.014,14.958,23.075,14.925,23.156,14.925z
|
||||
M23.59,15.601v0.148h0.148v-0.148H23.59z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_39_copy_3">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EAE2CC" d="M17.531,16.833c-0.064,0-0.091,0.05-0.094,0.064
|
||||
c-0.003,0.015-0.002,0.019,0.012,0.025c0.029,0.008,0.082,0.039,0.082,0.108c0,0.093-0.075,0.117-0.131,0.117
|
||||
c-0.102,0-0.202-0.096-0.254-0.164c-0.071-0.093-0.146-0.222-0.26-0.222h-0.003c-0.059,0-0.109,0.026-0.134,0.059
|
||||
c0.055,0.103,0.165,0.219,0.215,0.265c0.047,0.04,0.128,0.131,0.279,0.161v0.01h-0.041c-0.069,0-0.174-0.021-0.296-0.112
|
||||
c-0.133-0.101-0.223-0.258-0.285-0.338c-0.099-0.125-0.192-0.178-0.311-0.178c-0.182,0-0.403,0.15-0.403,0.361
|
||||
c0,0.146,0.123,0.26,0.247,0.26c0.042,0,0.083-0.013,0.124-0.042c0.011-0.006,0.011-0.017-0.007-0.017
|
||||
c-0.075,0-0.24-0.095-0.24-0.277c0-0.114,0.064-0.217,0.23-0.217c0.165,0,0.249,0.12,0.317,0.222
|
||||
c-0.032,0.017-0.065,0.05-0.065,0.115c0,0.078,0.04,0.149,0.146,0.228c0.127,0.083,0.27,0.121,0.417,0.121
|
||||
c0.139,0,0.33-0.053,0.399-0.165c0.019-0.027,0.03-0.036,0.052-0.058c0.038-0.035,0.118-0.118,0.118-0.205
|
||||
C17.645,16.895,17.602,16.833,17.531,16.833z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_39_copy_3_2_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EAE2CC" d="M16.107,16.761c-0.041,0-0.081,0.014-0.125,0.042
|
||||
c-0.01,0.006-0.01,0.018,0.008,0.018c0.076,0,0.239,0.094,0.239,0.277c0,0.114-0.063,0.216-0.23,0.216
|
||||
c-0.165,0-0.248-0.12-0.316-0.221c0.032-0.018,0.063-0.05,0.063-0.116c0-0.077-0.038-0.148-0.146-0.228
|
||||
c-0.125-0.083-0.268-0.12-0.416-0.12c-0.14,0-0.329,0.053-0.398,0.164c-0.019,0.027-0.03,0.036-0.053,0.058
|
||||
c-0.037,0.035-0.118,0.118-0.118,0.205c0,0.06,0.044,0.122,0.115,0.122c0.063,0,0.09-0.05,0.092-0.064
|
||||
c0.003-0.015,0.001-0.019-0.011-0.026c-0.029-0.007-0.083-0.039-0.083-0.107c0-0.093,0.075-0.118,0.133-0.118
|
||||
c0.101,0,0.2,0.097,0.253,0.164c0.072,0.093,0.147,0.222,0.262,0.222h0.002c0.058,0,0.108-0.027,0.133-0.06
|
||||
c-0.054-0.102-0.164-0.218-0.215-0.265c-0.047-0.04-0.127-0.131-0.278-0.162v-0.01h0.041c0.069,0,0.174,0.022,0.296,0.112
|
||||
c0.132,0.101,0.222,0.258,0.286,0.339c0.097,0.125,0.191,0.178,0.311,0.178c0.184,0,0.403-0.15,0.403-0.361
|
||||
C16.354,16.875,16.231,16.761,16.107,16.761z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_37_copy_10">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2D2E2D" d="M3.741,21.821v0.104c0.566,2.134,1.112,4.204,1.641,6.347
|
||||
c6.986-2.134,14.646-2.159,21.659,0c0.528-2.144,1.074-4.318,1.641-6.452C20.546,19.487,11.801,19.458,3.741,21.821z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_37_copy_10_2_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FBF0D7" d="M4.414,22.131l0,0.087c0.525,1.795,0.948,3.621,1.438,5.424
|
||||
c6.626-1.795,14.059-1.899,20.69-0.083c0.511-1.804,0.944-3.633,1.491-5.428C20.34,20.167,12.058,20.143,4.414,22.131z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_37_copy_11">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#D3D1B0" d="M4.867,22.371c0.427,1.562,0.844,3.152,1.25,4.772
|
||||
c6.582-1.771,13.607-1.771,20.19,0c0.405-1.62,0.821-3.211,1.249-4.772C20.15,20.5,12.273,20.5,4.867,22.371z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ASSAULT">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#722429" d="M7.033,22.661c0.053,1.111,0.119,2.221,0.197,3.329
|
||||
c0.32-0.062,0.643-0.122,0.965-0.177L8.137,25.22c0.114-0.02,0.228-0.039,0.34-0.057c0.054,0.191,0.106,0.383,0.159,0.576
|
||||
c0.319-0.052,0.638-0.102,0.958-0.147C9.24,24.529,8.871,23.47,8.49,22.414C8.004,22.489,7.518,22.572,7.033,22.661z
|
||||
M8.014,24.646c-0.03-0.292-0.057-0.757-0.074-1.396c0.153,0.533,0.287,0.98,0.405,1.34C8.234,24.608,8.125,24.627,8.014,24.646z
|
||||
M11.848,23.769c-0.129-0.134-0.423-0.295-0.89-0.473c-0.163-0.062-0.265-0.118-0.305-0.169c-0.042-0.051-0.069-0.132-0.083-0.241
|
||||
c-0.012-0.085-0.005-0.15,0.021-0.196c0.026-0.045,0.068-0.071,0.13-0.078c0.056-0.006,0.097,0.005,0.124,0.034
|
||||
c0.028,0.028,0.048,0.099,0.063,0.213c0.01,0.081,0.02,0.162,0.03,0.243c0.307-0.033,0.614-0.064,0.922-0.091
|
||||
c-0.004-0.043-0.008-0.087-0.012-0.13c-0.027-0.261-0.076-0.443-0.146-0.547c-0.071-0.103-0.203-0.182-0.396-0.235
|
||||
c-0.194-0.054-0.424-0.066-0.688-0.037c-0.242,0.027-0.443,0.084-0.604,0.171c-0.161,0.086-0.271,0.193-0.33,0.318
|
||||
c-0.059,0.126-0.068,0.314-0.031,0.564c0.027,0.173,0.074,0.313,0.145,0.417c0.068,0.104,0.146,0.184,0.234,0.237
|
||||
s0.264,0.134,0.524,0.246c0.261,0.111,0.424,0.194,0.492,0.246c0.067,0.053,0.112,0.176,0.134,0.37
|
||||
c0.012,0.088,0.004,0.155-0.021,0.203s-0.07,0.076-0.133,0.083c-0.064,0.007-0.11-0.006-0.14-0.039
|
||||
c-0.03-0.032-0.052-0.109-0.067-0.232c-0.018-0.133-0.034-0.266-0.052-0.399c-0.3,0.034-0.599,0.071-0.897,0.111
|
||||
c0.01,0.071,0.021,0.143,0.031,0.214c0.037,0.245,0.094,0.43,0.169,0.556s0.208,0.22,0.397,0.285
|
||||
c0.191,0.064,0.411,0.082,0.662,0.054c0.23-0.025,0.427-0.083,0.592-0.175c0.164-0.092,0.273-0.195,0.322-0.312
|
||||
c0.05-0.116,0.064-0.292,0.04-0.526C12.053,24.133,11.975,23.904,11.848,23.769z M13.812,23.071
|
||||
c-0.158-0.071-0.257-0.133-0.292-0.187c-0.039-0.054-0.062-0.136-0.069-0.246c-0.005-0.085,0.007-0.15,0.034-0.194
|
||||
c0.029-0.043,0.074-0.067,0.135-0.07c0.055-0.003,0.097,0.011,0.122,0.041s0.042,0.102,0.048,0.216
|
||||
c0.005,0.082,0.01,0.163,0.014,0.245c0.31-0.016,0.618-0.028,0.926-0.038c-0.001-0.043-0.003-0.087-0.004-0.13
|
||||
c-0.01-0.263-0.045-0.448-0.109-0.555c-0.065-0.107-0.191-0.194-0.381-0.258s-0.418-0.09-0.684-0.076
|
||||
c-0.242,0.013-0.447,0.059-0.612,0.136c-0.166,0.077-0.282,0.177-0.349,0.299c-0.066,0.122-0.088,0.309-0.066,0.561
|
||||
c0.014,0.175,0.053,0.316,0.115,0.425c0.063,0.108,0.135,0.191,0.219,0.25c0.085,0.058,0.254,0.149,0.507,0.275
|
||||
c0.252,0.125,0.409,0.217,0.475,0.274c0.063,0.057,0.101,0.182,0.11,0.376c0.006,0.088-0.007,0.155-0.035,0.202
|
||||
c-0.029,0.046-0.074,0.071-0.139,0.074c-0.063,0.003-0.107-0.012-0.135-0.045c-0.027-0.034-0.045-0.113-0.053-0.236
|
||||
c-0.01-0.134-0.018-0.268-0.025-0.401c-0.301,0.017-0.602,0.037-0.902,0.059c0.006,0.072,0.012,0.144,0.018,0.215
|
||||
c0.021,0.247,0.064,0.436,0.133,0.565c0.066,0.13,0.193,0.231,0.379,0.307c0.186,0.075,0.403,0.105,0.655,0.092
|
||||
c0.23-0.012,0.431-0.058,0.601-0.141c0.17-0.082,0.285-0.179,0.342-0.292s0.082-0.288,0.074-0.522
|
||||
c-0.011-0.323-0.074-0.556-0.193-0.698C14.549,23.453,14.266,23.275,13.812,23.071z M15.76,21.816
|
||||
c-0.16,1.102-0.309,2.205-0.442,3.308c0.326-0.007,0.652-0.01,0.978-0.01l0.059-0.593c0.113,0,0.229,0,0.342,0.001
|
||||
c0.016,0.198,0.031,0.396,0.046,0.593c0.323,0.003,0.646,0.009,0.968,0.019c-0.145-1.105-0.303-2.209-0.476-3.313
|
||||
C16.742,21.813,16.251,21.811,15.76,21.816z M16.34,23.936c0.027-0.292,0.09-0.754,0.195-1.386
|
||||
c0.048,0.55,0.095,1.013,0.141,1.387C16.564,23.936,16.452,23.936,16.34,23.936z M19.481,24.349
|
||||
c-0.013,0.164-0.028,0.268-0.05,0.311c-0.02,0.042-0.061,0.063-0.121,0.059c-0.053-0.004-0.087-0.025-0.102-0.066
|
||||
c-0.014-0.042-0.018-0.134-0.008-0.277c0.055-0.824,0.11-1.647,0.166-2.47c-0.34-0.02-0.68-0.037-1.02-0.05
|
||||
c-0.028,0.65-0.058,1.301-0.086,1.951c-0.018,0.372-0.021,0.616-0.012,0.733c0.012,0.116,0.055,0.229,0.133,0.337
|
||||
c0.078,0.108,0.198,0.198,0.361,0.272c0.162,0.073,0.352,0.117,0.567,0.13c0.196,0.013,0.368-0.003,0.517-0.047
|
||||
s0.271-0.116,0.371-0.214c0.099-0.099,0.162-0.198,0.189-0.297c0.027-0.1,0.055-0.273,0.078-0.523
|
||||
c0.07-0.732,0.141-1.464,0.211-2.196c-0.34-0.029-0.679-0.055-1.018-0.077C19.601,22.731,19.541,23.54,19.481,24.349z
|
||||
M22.457,22.182c-0.338-0.041-0.676-0.078-1.015-0.112c-0.124,1.094-0.248,2.188-0.372,3.282c0.506,0.051,1.01,0.11,1.514,0.176
|
||||
c0.033-0.218,0.065-0.436,0.098-0.654c-0.193-0.026-0.387-0.05-0.58-0.074C22.221,23.928,22.338,23.055,22.457,22.182z
|
||||
M23.516,22.321l-0.105,0.653c0.197,0.028,0.393,0.057,0.59,0.087c-0.15,0.869-0.301,1.737-0.453,2.605
|
||||
c0.313,0.048,0.625,0.099,0.938,0.154c0.169-0.865,0.34-1.731,0.51-2.596c0.196,0.034,0.393,0.07,0.588,0.107
|
||||
c0.047-0.216,0.092-0.432,0.137-0.648C24.986,22.546,24.252,22.426,23.516,22.321z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 25 KiB |
|
Before Width: | Height: | Size: 214 KiB After Width: | Height: | Size: 212 KiB |
|
Before Width: | Height: | Size: 219 KiB After Width: | Height: | Size: 217 KiB |
|
Before Width: | Height: | Size: 216 KiB After Width: | Height: | Size: 214 KiB |
@@ -1,337 +1,337 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g id="Shape_1_copy_11">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B7E4F3" d="M24.301,3.451c0-0.21,0.016-0.418,0.045-0.622
|
||||
c-2.285-0.262-5.189-0.505-8.087-0.505c-2.799,0-5.593,0.231-7.817,0.486c0.032,0.21,0.048,0.423,0.048,0.641
|
||||
c0,2.339-1.883,5.392-4.394,5.863c-0.218,18.099,9.518,20.474,12.248,21.57c2.79-1.112,12.473-3.473,12.249-21.591
|
||||
C26.133,8.789,24.301,5.759,24.301,3.451z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_49">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#8ED7F0" d="M25.977,11.356c0,0-1.965-0.625-4.014-0.362
|
||||
c1.383-1.472,1.979-3.224,1.979-3.224S21.83,7.986,20.07,9.135c0.703-1.968,0.502-3.922,0.502-3.922s-1.883,1.121-2.967,2.986
|
||||
c-0.176-2.158-1.252-3.934-1.252-3.934s-1.048,1.593-1.318,3.566c-1.019-1.715-2.508-2.787-2.508-2.787s-0.339,1.893,0.195,3.832
|
||||
C11.09,7.691,9.264,7.289,9.264,7.289s0.442,1.906,1.721,3.497c-2.009-0.437-3.907-0.063-3.907-0.063s1.193,1.606,3.043,2.561
|
||||
c-1.043,0.217-1.98,0.617-2.655,0.96c-0.67,0.34,4.028,4.094,4.028,4.094l10.246,0.061c0,0,4.326-3.195,3.654-3.629
|
||||
c-0.666-0.43-1.588-0.935-2.613-1.242C24.693,12.741,25.977,11.356,25.977,11.356z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_1_copy_16">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#546265" d="M25.064,2.685c0-0.223,0.016-0.442,0.049-0.658
|
||||
c-2.504-0.277-5.766-0.535-8.861-0.535c-2.99,0-6.131,0.245-8.569,0.514c0.035,0.222,0.053,0.449,0.053,0.679
|
||||
c0,2.476-1.697,5.706-4.355,6.205C3.152,28.042,13.454,30.556,16.343,31.716c2.954-1.176,13.2-3.675,12.961-22.848
|
||||
C26.701,8.334,25.064,5.127,25.064,2.685z M16.343,30.557C13.713,29.5,4.246,27.123,4.456,9.689
|
||||
c2.815-1.091,4.486-4.294,4.64-6.726c2.143-0.246,4.47-0.4,7.166-0.4c2.792,0,5.233,0.201,7.434,0.453
|
||||
c0.041,1.635,1.449,5.509,4.563,6.673C28.475,27.141,19.031,29.486,16.343,30.557z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_1_copy_17">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M24.178,3.492c0-0.21,0.016-0.417,0.045-0.62
|
||||
c-2.25-0.261-5.109-0.504-7.962-0.504c-2.757,0-5.508,0.23-7.698,0.484c0.031,0.209,0.047,0.423,0.047,0.64
|
||||
c0,2.332-1.973,5.375-4.476,5.845c-0.217,18.043,9.488,20.411,12.21,21.504c2.782-1.108,12.434-3.462,12.209-21.524
|
||||
C26.102,8.813,24.178,5.792,24.178,3.492z M16.343,29.748C13.866,28.753,4.948,26.514,5.145,10.09
|
||||
C7.797,9.063,9.498,6.045,9.64,3.754c1.982-0.231,4.118-0.376,6.627-0.376c2.598,0,4.838,0.188,6.875,0.426
|
||||
c0.039,1.541,1.49,5.189,4.424,6.287C27.77,26.53,18.875,28.739,16.343,29.748z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_1_copy_18">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#010101" d="M24.336,3.248c0-0.213-0.033-0.424-0.004-0.63
|
||||
c-2.281-0.266-5.133-0.514-8.075-0.514c-2.843,0-5.583,0.235-7.803,0.493c0.032,0.213-0.001,0.431-0.001,0.651
|
||||
c0,2.376-1.997,5.475-4.547,5.954c-0.221,18.377,9.665,20.79,12.437,21.903c2.833-1.129,12.665-3.526,12.436-21.923
|
||||
C26.283,8.668,24.336,5.591,24.336,3.248z M16.343,29.992C13.82,28.979,4.736,26.697,4.937,9.969
|
||||
c2.702-1.047,4.38-4.12,4.526-6.454c2.034-0.235,4.243-0.384,6.802-0.384c2.651,0,4.967,0.192,7.055,0.434
|
||||
c0.041,1.569,1.467,5.286,4.455,6.403C27.982,26.714,18.922,28.964,16.343,29.992z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_34_copy_2">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#8D917E" d="M8.557,17.673c0.099,0.448,0.238,1.016,0.414,1.576
|
||||
c0.356,1.135,0.885,2.236,0.885,2.236H23.32c0,0,0.59-1.083,0.941-2.208c0.174-0.556,0.297-1.122,0.379-1.572L8.557,17.673z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_1_copy_14_2_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B8B5A0" d="M20.621,21.167l-8.446,0.034c0,0-4.904,0.537-3.575,2.596
|
||||
c0.276,0.428,0.562,0.823,0.854,1.188c2.553,3.192,5.573,3.951,6.889,4.479c1.524-0.607,5.12-1.479,7.809-5.789
|
||||
C25.658,21.262,20.621,21.167,20.621,21.167z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_1_copy_15">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#A29784" d="M5.51,12.764c0.436,5.998,1.993,9.782,3.944,12.221
|
||||
c1.49-2.05,2.721-3.783,2.721-3.783s0.035-6.002,0.002-6.014C8.556,13.895,5.51,12.764,5.51,12.764z M20.629,15.471
|
||||
c-0.039,0.014-0.008,5.696-0.008,5.696s1.004,1.587,2.531,3.919c1.945-2.419,3.49-6.206,3.986-12.276
|
||||
C27.139,12.81,21.289,15.239,20.629,15.471z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_31_copy_2">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#242424" points="19.725,12.614 19.953,11.828 19.301,11.323 18.381,8.32
|
||||
14.339,8.313 13.482,11.259 12.822,11.775 13.082,12.633 12.544,14.485 13.484,14.512 19.283,14.348 20.297,14.485 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_28_copy_8">
|
||||
<g>
|
||||
<rect x="14.702" y="9.106" fill-rule="evenodd" clip-rule="evenodd" fill="#C0B391" width="3.367" height="17.031"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_28_copy_8_1_">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#A29784" points="13.339,13.905 13.339,21.058 14.734,26.137
|
||||
14.734,9.106 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_28_copy_8_2_">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#A29784" points="18.014,9.106 18.014,26.137 19.408,21.165
|
||||
19.408,13.601 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_29_copy_4">
|
||||
<g>
|
||||
<rect x="15.944" y="16.968" fill-rule="evenodd" clip-rule="evenodd" fill="#30281F" width="1.021" height="1.902"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_32_copy_7">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#30281F" d="M17.215,12.494c-0.02-0.383-0.354-0.688-0.763-0.688
|
||||
c-0.409,0-0.743,0.305-0.763,0.688h-0.001v1.744h1.527V12.494L17.215,12.494z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Color_Fill_2">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#010101" d="M23.623,13.172c-0.063-0.016-0.125-0.014-0.186,0
|
||||
c-0.094-1.051-0.307-3.618-0.307-3.618s-0.016-0.167-0.133-0.165c-0.098,0.002-0.117,0.119-0.117,0.119L22.5,12.709
|
||||
c-0.102-0.023-0.205-0.02-0.299,0.026c-0.285,0.143-0.16,0.58-0.008,0.971c0.135,0.353,0.365,0.987,0.807,0.895
|
||||
c-0.043,0.234-0.068,0.497,0.078,0.54c0.594,0.17,0.697-0.608,0.762-1.023C23.902,13.703,23.932,13.25,23.623,13.172z
|
||||
M22.975,13.571c-0.006-0.167,0.047-0.354-0.018-0.514c-0.043-0.11-0.127-0.206-0.283-0.276c0.08-0.74,0.297-3.04,0.297-3.04
|
||||
l0.047-0.004l0.238,3.491C23.1,13.306,23.027,13.441,22.975,13.571z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Color_Fill_1_2_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#010101" d="M16.255,10.097c4.065-0.024,8.12-0.564,9.967-0.906
|
||||
c0.336-0.062,0.641-0.119,0.92-0.173l-0.195-0.129c-0.225,0.04-0.465,0.084-0.725,0.132c-1.848,0.342-5.902,0.882-9.967,0.906
|
||||
C11.354,9.955,6.443,9.417,5.441,9.277c-0.007,0.074,0.003,0.146,0,0.171C6.443,9.588,11.354,10.126,16.255,10.097z M28.016,9.594
|
||||
c-0.48,0.102-1.111,0.243-1.893,0.426c-1.83,0.43-5.871,1.491-9.936,1.516c-4.901,0.029-9.786-1.119-10.781-1.304
|
||||
c-0.274-0.051-0.506-0.09-0.698-0.12c-0.002,0.04-0.016,0.098-0.019,0.148c0.193,0.043,0.43,0.091,0.709,0.143
|
||||
c0.995,0.185,5.888,1.334,10.789,1.305c4.065-0.024,8.114-1.086,9.944-1.516c0.863-0.202,1.541-0.37,2.035-0.498L28.016,9.594z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Color_Fill_1_copy_7">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#546265" d="M6.853,26.454c0.001,0.009,0.005,0.028,0.011,0.058
|
||||
C6.859,26.493,6.856,26.473,6.853,26.454z M26.006,26.19c0-0.021-0.002-0.042-0.006-0.063c0-0.011-0.002-0.021-0.004-0.032
|
||||
c-0.002-0.01-0.004-0.021-0.006-0.031c-0.006-0.021-0.012-0.041-0.018-0.061c-0.125-0.344-0.428-0.469-0.773-0.484
|
||||
c-0.346-0.014-0.736,0.083-1.043,0.19c-0.209,0.074-0.447,0.096-0.6,0.24c-0.033,0.029-0.039,0.061-0.055,0.111
|
||||
c0.023,0.051,0.045,0.103,0.068,0.154c0.107,0.016,0.264-0.106,0.377-0.152c0.422-0.169,1.676-0.514,1.822,0.084
|
||||
c0.117,0.537-0.697,0.694-1.189,0.632c-0.279-0.034-1.162-0.271-2.518-0.487c-1.355-0.217-3.162-0.425-5.344-0.416
|
||||
c-0.067,0-0.136,0-0.203,0c-0.069,0-0.136,0.001-0.203,0.002c-0.135,0.002-0.268,0.005-0.401,0.009
|
||||
c-0.265,0.007-0.526,0.017-0.783,0.029c-0.513,0.025-1.008,0.061-1.483,0.102c-0.949,0.083-1.816,0.19-2.562,0.297
|
||||
c-1.495,0.21-2.508,0.435-2.719,0.461c-0.503,0.07-1.146-0.163-1.26-0.585c-0.071-0.262,0.146-0.302,0.373-0.36
|
||||
c0.626-0.158,1.281,0.267,1.778,0.396c0.054-0.111,0.083-0.15,0.043-0.277c-0.458-0.213-0.978-0.391-1.592-0.443
|
||||
c-0.408-0.024-0.618,0-0.818,0.431c-0.01,0.021-0.019,0.043-0.026,0.065c-0.003,0.011-0.006,0.022-0.009,0.033
|
||||
s-0.006,0.023-0.008,0.034c-0.004,0.023-0.008,0.047-0.01,0.07c-0.001,0.012-0.002,0.024-0.003,0.036
|
||||
c0,0.012-0.001,0.024-0.001,0.036c-0.001,0.078,0.007,0.159,0.021,0.24c-0.017-0.13,0.4,1.525,0.691,2.823
|
||||
c0.117,0.257,0.393,0.453,0.636,0.558c0.032,0.014,0.074,0.022,0.126,0.027c0.053,0.003,0.115,0.003,0.187-0.001
|
||||
c0.144-0.01,0.327-0.035,0.546-0.07c0.439-0.072,1.023-0.187,1.73-0.308c1.417-0.242,3.317-0.509,5.58-0.507
|
||||
c2.258,0.001,4.165,0.27,5.592,0.516c0.713,0.123,1.303,0.241,1.746,0.317c0.221,0.038,0.406,0.065,0.553,0.078
|
||||
c0.072,0.006,0.135,0.008,0.189,0.006c0.025-0.001,0.049-0.003,0.07-0.006c0.012-0.001,0.021-0.003,0.029-0.006
|
||||
c0.006-0.001,0.01-0.002,0.014-0.004c0.002,0,0.002-0.001,0.004-0.001c0,0,0.002,0,0.002,0c0,0,0.002,0,0.002,0
|
||||
c0.002-0.001,0.004-0.001,0.006-0.002c0.299-0.109,0.582-0.297,0.725-0.593c0.084-0.175,0.135-0.396,0.188-0.619
|
||||
c0.309-1.388,0.51-2.205,0.496-2.146c0.021-0.086,0.037-0.173,0.041-0.259C26.008,26.232,26.008,26.211,26.006,26.19z"/>
|
||||
<path fill="#010101" d="M7.528,25.501c0.055,0,0.115,0.002,0.178,0.006c0.614,0.052,1.134,0.23,1.592,0.443
|
||||
c0.04,0.126,0.011,0.166-0.043,0.277c-0.421-0.11-0.955-0.432-1.489-0.432c-0.096,0-0.193,0.011-0.289,0.035
|
||||
c-0.227,0.058-0.444,0.098-0.373,0.36c0.101,0.372,0.612,0.597,1.076,0.597c0.063,0,0.124-0.004,0.184-0.012
|
||||
c0.211-0.026,1.224-0.251,2.719-0.461c0.746-0.107,1.613-0.213,2.562-0.297c0.475-0.041,0.97-0.076,1.483-0.102
|
||||
c0.257-0.012,0.518-0.022,0.783-0.029c0.133-0.003,0.267-0.007,0.401-0.009c0.067,0,0.134-0.001,0.203-0.002
|
||||
c0.067,0,0.136,0,0.203,0c0.045,0,0.089,0,0.133,0c2.122,0,3.883,0.205,5.211,0.417c1.355,0.216,2.238,0.453,2.518,0.487
|
||||
c0.068,0.009,0.141,0.013,0.215,0.013c0.48,0,1.076-0.181,0.975-0.645c-0.063-0.253-0.324-0.337-0.635-0.337
|
||||
c-0.424,0-0.945,0.156-1.188,0.253c-0.105,0.043-0.252,0.153-0.357,0.153c-0.008,0-0.014,0-0.02-0.001
|
||||
c-0.023-0.051-0.045-0.103-0.068-0.154c0.016-0.051,0.021-0.082,0.055-0.111c0.152-0.144,0.391-0.166,0.6-0.24
|
||||
c0.287-0.1,0.646-0.191,0.975-0.191c0.023,0,0.047,0,0.068,0.001c0.346,0.015,0.648,0.14,0.773,0.484
|
||||
c0.006,0.02,0.012,0.041,0.018,0.061c0.002,0.01,0.004,0.021,0.006,0.031C25.998,26.106,26,26.116,26,26.127
|
||||
c0.004,0.021,0.006,0.042,0.006,0.063c0.002,0.021,0.002,0.042,0,0.064c-0.004,0.086-0.02,0.173-0.041,0.259
|
||||
c0-0.002,0-0.003,0-0.003s-0.199,0.809-0.496,2.149c-0.053,0.223-0.104,0.444-0.188,0.619c-0.143,0.296-0.426,0.483-0.725,0.593
|
||||
c-0.002,0.001-0.004,0.001-0.006,0.002c0,0-0.002,0-0.002,0c0,0-0.002,0-0.002,0c-0.002,0-0.002,0-0.004,0.001
|
||||
c-0.004,0.001-0.008,0.003-0.014,0.004c-0.008,0.002-0.018,0.004-0.029,0.006c-0.021,0.003-0.045,0.005-0.07,0.006
|
||||
c-0.014,0-0.027,0.001-0.043,0.001c-0.043,0-0.092-0.002-0.146-0.007c-0.146-0.012-0.332-0.04-0.553-0.078
|
||||
c-0.443-0.076-1.033-0.194-1.746-0.317c-1.428-0.247-3.334-0.515-5.592-0.516c-0.007,0-0.014,0-0.021,0
|
||||
c-2.253,0-4.146,0.266-5.559,0.507c-0.708,0.121-1.292,0.236-1.73,0.308c-0.219,0.036-0.402,0.061-0.546,0.07
|
||||
c-0.041,0.002-0.078,0.004-0.112,0.004c-0.026,0-0.051-0.001-0.075-0.002c-0.052-0.004-0.094-0.013-0.126-0.027
|
||||
c-0.243-0.104-0.519-0.301-0.636-0.558c-0.28-1.25-0.677-2.83-0.691-2.83c0,0,0,0.002,0,0.007
|
||||
c-0.014-0.081-0.023-0.162-0.021-0.24c0-0.012,0-0.024,0.001-0.036c0.001-0.012,0.001-0.024,0.003-0.036
|
||||
c0.002-0.023,0.005-0.047,0.01-0.07c0.002-0.011,0.005-0.023,0.008-0.034s0.006-0.022,0.009-0.033
|
||||
c0.007-0.022,0.016-0.044,0.026-0.065C7.057,25.575,7.232,25.501,7.528,25.501 M6.853,26.454c0.003,0.02,0.007,0.039,0.011,0.058
|
||||
C6.857,26.482,6.854,26.463,6.853,26.454 M7.528,25.264L7.528,25.264c-0.354,0-0.635,0.098-0.857,0.575
|
||||
c-0.013,0.03-0.025,0.061-0.036,0.093c-0.004,0.015-0.009,0.031-0.013,0.046c-0.004,0.016-0.007,0.031-0.011,0.047
|
||||
c-0.006,0.03-0.011,0.062-0.014,0.093c-0.001,0.015-0.003,0.031-0.003,0.046c-0.001,0.016-0.001,0.03-0.002,0.046
|
||||
c-0.001,0.086,0.007,0.177,0.025,0.28c0.001,0.012,0.005,0.031,0.013,0.07l0.009-0.002c0.067,0.231,0.415,1.622,0.672,2.771
|
||||
l0.005,0.024l0.01,0.022c0.124,0.273,0.407,0.527,0.758,0.678c0.056,0.024,0.123,0.039,0.203,0.045
|
||||
c0.028,0.002,0.06,0.003,0.092,0.003c0.039,0,0.082-0.001,0.127-0.004c0.14-0.009,0.321-0.032,0.57-0.073
|
||||
c0.222-0.037,0.476-0.083,0.77-0.137c0.286-0.053,0.61-0.112,0.962-0.172c1.266-0.216,3.215-0.503,5.519-0.503h0.021
|
||||
c2.321,0.002,4.28,0.293,5.551,0.513c0.389,0.067,0.74,0.133,1.053,0.19c0.264,0.049,0.49,0.092,0.693,0.126
|
||||
c0.256,0.043,0.434,0.068,0.574,0.081c0.063,0.005,0.117,0.007,0.166,0.007c0.02,0,0.035,0,0.053-0.001
|
||||
c0.035-0.001,0.068-0.004,0.098-0.009c0.018-0.002,0.033-0.006,0.051-0.01c0.008-0.002,0.016-0.004,0.023-0.007l0.006-0.001
|
||||
l0.002,0l0.004-0.001v0c0.002,0,0.004,0,0.006-0.001c0.002-0.001,0.006-0.002,0.01-0.004c0.406-0.148,0.703-0.395,0.857-0.713
|
||||
c0.088-0.182,0.139-0.398,0.189-0.608l0.014-0.06l0.002-0.002v-0.002c0.115-0.521,0.293-1.309,0.482-2.094
|
||||
c0.004-0.015,0.008-0.029,0.01-0.043l0,0c0.029-0.114,0.047-0.215,0.051-0.308c0.002-0.028,0.002-0.057,0-0.083
|
||||
c0-0.029-0.004-0.058-0.008-0.085c-0.002-0.015-0.004-0.029-0.006-0.044c-0.004-0.014-0.006-0.028-0.01-0.042
|
||||
c-0.006-0.031-0.016-0.06-0.025-0.087c-0.1-0.278-0.352-0.615-0.986-0.641c-0.025-0.001-0.051-0.001-0.078-0.001
|
||||
c-0.389,0-0.787,0.111-1.053,0.205c-0.053,0.019-0.109,0.034-0.17,0.05c-0.17,0.045-0.361,0.097-0.514,0.239
|
||||
c-0.08,0.073-0.102,0.156-0.117,0.21l-0.004,0.011l-0.021,0.081l0.031,0.078l0.057,0.126c-0.354-0.071-0.77-0.148-1.24-0.224
|
||||
c-1.766-0.282-3.482-0.419-5.249-0.419c-0.044,0-0.088,0-0.133,0c-0.068,0-0.137,0-0.205,0.001c-0.069,0-0.137,0.001-0.205,0.002
|
||||
c-0.131,0.002-0.266,0.004-0.403,0.009c-0.256,0.006-0.521,0.016-0.788,0.029c-0.482,0.023-0.984,0.058-1.492,0.103
|
||||
c-0.837,0.073-1.704,0.173-2.575,0.298c-0.618,0.086-1.149,0.175-1.58,0.252l0.011-0.023c0.065-0.129,0.106-0.235,0.044-0.429
|
||||
l-0.031-0.1l-0.095-0.044c-0.578-0.269-1.109-0.417-1.671-0.464l-0.003,0H7.721C7.641,25.266,7.582,25.264,7.528,25.264
|
||||
L7.528,25.264z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#1E2729" d="M18.379,26.451c-0.75,0-1.098,0.313-1.436,0.833
|
||||
c-0.127,0.194-0.244,0.38-0.332,0.55c-0.096,0.184-0.14,0.11-0.086-0.043c0.105-0.299,0.289-0.544,0.446-0.881
|
||||
c0.109-0.24,0.238-0.53,0.238-0.791c0-0.312-0.129-0.655-0.311-1.03c-0.174-0.364-0.42-0.497-0.585-0.954
|
||||
c-0.165,0.458-0.411,0.59-0.585,0.954c-0.183,0.375-0.311,0.718-0.311,1.03c0,0.26,0.128,0.551,0.237,0.791
|
||||
c0.155,0.333,0.335,0.576,0.441,0.869c0.057,0.156,0.012,0.241-0.087,0.056c-0.096-0.179-0.224-0.377-0.354-0.577
|
||||
c-0.338-0.52-0.658-0.806-1.407-0.806c-0.512,0-0.914,0.541-0.914,1.124c0,0.494,0.236,1.017,0.525,1.311
|
||||
c0.052,0.053,0.162,0.012,0.166-0.045c0.042-0.581,0.301-0.933,0.908-0.933c0.42,0,1.099,0.417,1.099,0.771
|
||||
c-0.131,0-0.088,0.317,0,0.249c0.069,0,0.445,0,0.563,0c0.093,0,0.129-0.249,0-0.249c0-0.354,0.678-0.771,1.096-0.771
|
||||
c0.598,0,0.857,0.341,0.906,0.903c0.006,0.067,0.133,0.114,0.191,0.051c0.279-0.298,0.502-0.807,0.502-1.287
|
||||
C19.291,26.992,18.891,26.451,18.379,26.451z M16.074,29.437h0.503c0.08,0,0.144-0.097,0.144-0.216
|
||||
c0-0.119-0.063-0.215-0.144-0.215h-0.503c-0.08,0-0.144,0.097-0.144,0.215C15.93,29.34,15.994,29.437,16.074,29.437z
|
||||
M17.02,29.937c-0.201,0-0.379-0.003-0.375-0.28c0.033-0.073-0.09-0.179-0.16-0.167c-0.068,0.012-0.146,0.054-0.183,0.054
|
||||
c-0.036,0-0.15-0.054-0.196-0.059c-0.045-0.006-0.171,0.103-0.122,0.172c0.002,0.276-0.225,0.275-0.449,0.275
|
||||
c-0.317,0,0.206,0.397,0.381,0.216c0.14-0.143,0.233-0.154,0.232-0.348h0.02c0,0.175-0.016,0.223-0.09,0.35
|
||||
c-0.034,0.059-0.054,0.127-0.032,0.189c0.099,0.284,0.394,0.333,0.498,0c0.019-0.062-0.006-0.146-0.028-0.208
|
||||
c-0.047-0.129-0.058-0.129-0.057-0.33h0.017c-0.001,0.194,0.077,0.202,0.202,0.329C16.835,30.292,17.309,29.937,17.02,29.937z"/>
|
||||
<path fill="#403C32" d="M16.313,24.134c0.165,0.458,0.411,0.59,0.585,0.954c0.182,0.375,0.311,0.718,0.311,1.03
|
||||
c0,0.26-0.129,0.551-0.238,0.791c-0.157,0.337-0.341,0.582-0.446,0.881c-0.031,0.089-0.029,0.151-0.004,0.151
|
||||
c0.019,0,0.05-0.031,0.09-0.108c0.088-0.169,0.205-0.355,0.332-0.55c0.338-0.52,0.686-0.833,1.436-0.833
|
||||
c0.512,0,0.912,0.541,0.912,1.124c0,0.48-0.223,0.989-0.502,1.287c-0.02,0.021-0.047,0.029-0.074,0.029
|
||||
c-0.055,0-0.113-0.036-0.117-0.081c-0.049-0.563-0.309-0.903-0.906-0.903c-0.418,0-1.096,0.417-1.096,0.771
|
||||
c0.129,0,0.093,0.249,0,0.249c-0.119,0-0.494,0-0.563,0c-0.009,0.007-0.017,0.01-0.024,0.01c-0.071,0-0.094-0.259,0.024-0.259
|
||||
c0-0.354-0.678-0.771-1.099-0.771c-0.606,0-0.866,0.353-0.908,0.933c-0.003,0.039-0.053,0.07-0.103,0.07
|
||||
c-0.023,0-0.046-0.007-0.063-0.024c-0.289-0.294-0.525-0.817-0.525-1.311c0-0.583,0.402-1.124,0.914-1.124
|
||||
c0.75,0,1.069,0.287,1.407,0.806c0.13,0.199,0.258,0.397,0.354,0.577c0.04,0.075,0.071,0.105,0.09,0.105
|
||||
c0.029,0,0.031-0.068-0.003-0.161c-0.106-0.293-0.286-0.537-0.441-0.869c-0.109-0.24-0.237-0.53-0.237-0.791
|
||||
c0-0.312,0.128-0.655,0.311-1.03C15.902,24.725,16.148,24.592,16.313,24.134 M16.577,29.005c0.08,0,0.144,0.097,0.144,0.215
|
||||
c0,0.119-0.063,0.216-0.144,0.216h-0.503c-0.08,0-0.144-0.097-0.144-0.216c0-0.119,0.064-0.215,0.144-0.215H16.577 M16.102,29.484
|
||||
c0.001,0,0.002,0,0.003,0c0.046,0.005,0.16,0.059,0.196,0.059c0.037,0,0.115-0.042,0.183-0.054c0.004,0,0.007,0,0.011,0
|
||||
c0.07,0,0.18,0.099,0.148,0.167c-0.004,0.276,0.175,0.28,0.375,0.28c0.234,0-0.036,0.235-0.229,0.235
|
||||
c-0.044,0-0.084-0.012-0.113-0.042c-0.125-0.127-0.203-0.135-0.202-0.329h-0.017c-0.001,0.201,0.01,0.201,0.057,0.33
|
||||
c0.022,0.063,0.047,0.146,0.028,0.208c-0.05,0.16-0.144,0.232-0.239,0.232c-0.103,0-0.207-0.084-0.258-0.232
|
||||
c-0.022-0.062-0.002-0.13,0.032-0.189c0.074-0.126,0.09-0.175,0.09-0.35h-0.02c0.001,0.194-0.092,0.206-0.232,0.348
|
||||
c-0.032,0.034-0.077,0.047-0.125,0.047c-0.215,0-0.514-0.264-0.256-0.264c0.001,0,0.002,0,0.003,0c0.223,0,0.447,0,0.445-0.275
|
||||
C15.935,29.59,16.053,29.484,16.102,29.484 M16.313,23.943C16.313,23.943,16.313,23.943,16.313,23.943
|
||||
c-0.081,0-0.152,0.051-0.179,0.126c-0.084,0.232-0.19,0.371-0.304,0.517c-0.094,0.121-0.19,0.245-0.274,0.42
|
||||
c-0.153,0.313-0.329,0.724-0.329,1.111c0,0.149,0.034,0.302,0.084,0.452c-0.261-0.201-0.587-0.31-1.063-0.31
|
||||
c-0.598,0-1.104,0.601-1.104,1.313c0,0.512,0.233,1.092,0.58,1.444c0.051,0.053,0.123,0.082,0.199,0.082
|
||||
c0.154,0,0.282-0.108,0.292-0.247c0.039-0.53,0.253-0.756,0.718-0.756c0.321,0,0.78,0.294,0.885,0.501
|
||||
c-0.006,0.009-0.012,0.018-0.017,0.028c-0.035,0.064-0.043,0.134-0.043,0.18c0,0.069,0.015,0.131,0.04,0.181
|
||||
c-0.037,0.066-0.059,0.146-0.059,0.233c0,0.102,0.029,0.194,0.078,0.264c-0.001,0.002-0.002,0.004-0.003,0.006
|
||||
c-0.034,0.065-0.041,0.136-0.023,0.199c-0.002,0.019-0.007,0.025-0.007,0.025c-0.024,0.027-0.18,0.027-0.247,0.027h-0.003
|
||||
c-0.067,0-0.121,0.012-0.167,0.036c-0.077,0.042-0.124,0.118-0.124,0.203c0,0.223,0.331,0.404,0.546,0.404
|
||||
c0.023,0,0.047-0.002,0.069-0.005c0.002,0.007,0.005,0.014,0.007,0.021c0.076,0.218,0.248,0.36,0.438,0.36
|
||||
c0.192,0,0.35-0.137,0.42-0.366c0.005-0.013,0.008-0.024,0.01-0.037c0.02,0.002,0.038,0.004,0.057,0.004
|
||||
c0.201,0,0.51-0.164,0.51-0.382c0-0.084-0.047-0.159-0.123-0.2c-0.043-0.023-0.096-0.034-0.158-0.034
|
||||
c-0.052,0-0.149,0-0.176-0.015c-0.002-0.005-0.008-0.019-0.008-0.049c0.011-0.056,0.004-0.115-0.022-0.171
|
||||
c0.062-0.073,0.099-0.176,0.099-0.291c0-0.102-0.029-0.195-0.08-0.265c0.024-0.05,0.037-0.107,0.037-0.169
|
||||
c0-0.068-0.018-0.131-0.052-0.182c-0.002-0.003-0.005-0.007-0.008-0.011c0.11-0.206,0.564-0.496,0.882-0.496
|
||||
c0.459,0,0.672,0.218,0.717,0.729c0.012,0.143,0.146,0.254,0.307,0.254c0.082,0,0.158-0.032,0.213-0.089
|
||||
c0.332-0.355,0.555-0.924,0.555-1.417c0-0.712-0.506-1.313-1.104-1.313c-0.467,0-0.801,0.116-1.066,0.316
|
||||
c0.051-0.153,0.086-0.308,0.086-0.459c0-0.388-0.176-0.799-0.33-1.113c-0.083-0.173-0.179-0.298-0.272-0.418
|
||||
c-0.113-0.146-0.221-0.285-0.305-0.517C16.464,23.994,16.394,23.943,16.313,23.943L16.313,23.943z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ITALY_copy_5">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#E7D19E" d="M11.995,28.606c-0.05,0-0.086-0.003-0.109-0.008
|
||||
c-0.042-0.009-0.07-0.023-0.088-0.044c-0.018-0.021-0.03-0.048-0.036-0.081c-0.082-0.457-0.163-0.913-0.245-1.369
|
||||
c-0.005-0.032-0.004-0.061,0.005-0.088c0.01-0.027,0.034-0.05,0.074-0.068c0.031-0.014,0.07-0.028,0.118-0.04
|
||||
c0.047-0.013,0.086-0.022,0.118-0.03c-0.006-0.036-0.012-0.07-0.018-0.106c-0.423,0.063-0.845,0.133-1.265,0.212
|
||||
c0.007,0.035,0.015,0.07,0.022,0.105c0.037-0.003,0.082-0.004,0.134-0.004c0.051,0,0.091,0.002,0.119,0.007
|
||||
c0.043,0.007,0.074,0.021,0.093,0.042s0.031,0.047,0.037,0.078c0.091,0.456,0.181,0.911,0.272,1.367
|
||||
c0.007,0.034,0.006,0.063-0.003,0.088s-0.031,0.047-0.065,0.068c-0.018,0.01-0.054,0.022-0.105,0.036s-0.092,0.024-0.118,0.03
|
||||
c0.008,0.036,0.015,0.07,0.022,0.106c0.393-0.074,0.787-0.14,1.182-0.199c-0.006-0.036-0.012-0.071-0.018-0.106
|
||||
C12.087,28.605,12.045,28.606,11.995,28.606z M12.533,26.673c0.026,0.185,0.053,0.371,0.079,0.556
|
||||
c0.041-0.005,0.083-0.01,0.124-0.015c0.021-0.087,0.062-0.183,0.122-0.286c0.061-0.104,0.122-0.163,0.183-0.177
|
||||
c0.034-0.008,0.076-0.016,0.126-0.023c0.05-0.008,0.093-0.014,0.129-0.018c0.026-0.003,0.051-0.005,0.076-0.008
|
||||
c0.059,0.514,0.117,1.028,0.176,1.543c0.003,0.034,0,0.064-0.01,0.09c-0.01,0.026-0.034,0.049-0.072,0.067
|
||||
c-0.019,0.009-0.054,0.02-0.107,0.03c-0.052,0.011-0.093,0.02-0.122,0.025c0.004,0.036,0.009,0.071,0.014,0.107
|
||||
c0.398-0.044,0.797-0.081,1.197-0.11c-0.002-0.036-0.006-0.071-0.009-0.107c-0.035-0.001-0.077-0.004-0.127-0.009
|
||||
c-0.05-0.005-0.087-0.01-0.111-0.017c-0.04-0.011-0.068-0.029-0.083-0.053c-0.016-0.024-0.025-0.053-0.029-0.086
|
||||
c-0.047-0.511-0.095-1.021-0.144-1.532c0.025-0.002,0.051-0.004,0.076-0.006c0.037-0.003,0.08-0.005,0.131-0.006
|
||||
c0.051-0.001,0.093-0.001,0.128,0c0.063,0.003,0.135,0.049,0.216,0.14s0.14,0.177,0.179,0.258
|
||||
c0.041-0.002,0.083-0.005,0.125-0.007c-0.013-0.187-0.025-0.373-0.037-0.56C14.017,26.511,13.273,26.58,12.533,26.673z
|
||||
M17.391,28.223c-0.037-0.021-0.066-0.043-0.086-0.066c-0.02-0.022-0.035-0.048-0.049-0.076c-0.078-0.17-0.172-0.385-0.285-0.644
|
||||
c-0.114-0.259-0.274-0.611-0.491-1.053c-0.109,0-0.217,0.002-0.327,0.004c-0.146,0.315-0.276,0.605-0.39,0.869
|
||||
c-0.114,0.263-0.225,0.527-0.332,0.79c-0.018,0.045-0.04,0.084-0.068,0.118c-0.027,0.033-0.062,0.062-0.102,0.086
|
||||
c-0.023,0.015-0.057,0.027-0.098,0.037c-0.042,0.01-0.079,0.017-0.113,0.021c0.002,0.036,0.005,0.071,0.007,0.107
|
||||
c0.294-0.016,0.589-0.027,0.884-0.034l-0.003-0.108c-0.115-0.006-0.198-0.019-0.248-0.038c-0.05-0.019-0.076-0.043-0.077-0.073
|
||||
c0-0.009,0-0.025,0.003-0.048c0.003-0.023,0.013-0.061,0.03-0.113c0.014-0.04,0.03-0.085,0.049-0.137
|
||||
c0.02-0.051,0.037-0.096,0.054-0.134c0.253-0.008,0.508-0.012,0.761-0.014c0.064,0.134,0.127,0.27,0.189,0.405
|
||||
c0.007,0.016,0.012,0.028,0.014,0.037c0,0.01,0.002,0.018,0.002,0.025c0,0.021-0.037,0.039-0.111,0.054
|
||||
c-0.074,0.015-0.139,0.024-0.193,0.028c0.001,0.036,0.001,0.071,0.001,0.107c0.392-0.004,0.783,0,1.175,0.011
|
||||
c0-0.036,0.002-0.072,0.002-0.108c-0.029-0.003-0.064-0.008-0.102-0.017S17.42,28.238,17.391,28.223z M15.81,27.59
|
||||
c0.098-0.239,0.198-0.478,0.301-0.716c0.114,0.234,0.227,0.469,0.335,0.704C16.234,27.581,16.022,27.584,15.81,27.59z
|
||||
M19.666,28.113c-0.064,0.08-0.125,0.141-0.18,0.183c-0.037,0.026-0.094,0.041-0.172,0.042c-0.076,0.002-0.156,0-0.236-0.005
|
||||
c-0.084-0.006-0.148-0.013-0.195-0.021c-0.049-0.008-0.084-0.022-0.109-0.041c-0.025-0.019-0.041-0.045-0.047-0.081
|
||||
c-0.008-0.036-0.01-0.083-0.004-0.144c0.029-0.429,0.061-0.858,0.092-1.287c0.002-0.033,0.01-0.061,0.027-0.085
|
||||
c0.016-0.024,0.045-0.041,0.088-0.05c0.035-0.007,0.076-0.011,0.123-0.013c0.047-0.002,0.088-0.003,0.123-0.003
|
||||
c0.002-0.036,0.006-0.071,0.008-0.107c-0.42-0.031-0.842-0.054-1.266-0.069c0,0.036-0.002,0.072-0.004,0.108
|
||||
c0.029,0.004,0.066,0.012,0.113,0.021c0.045,0.01,0.086,0.021,0.119,0.036c0.043,0.02,0.07,0.04,0.082,0.062
|
||||
c0.01,0.022,0.014,0.05,0.014,0.083c-0.023,0.461-0.049,0.921-0.072,1.381c-0.002,0.036-0.01,0.065-0.025,0.087
|
||||
c-0.016,0.022-0.041,0.04-0.078,0.05c-0.018,0.005-0.047,0.01-0.096,0.014s-0.09,0.007-0.127,0.009
|
||||
c0,0.035-0.002,0.071-0.004,0.107c0.662,0.023,1.324,0.068,1.982,0.134c0.037-0.207,0.074-0.414,0.113-0.621
|
||||
c-0.039-0.003-0.076-0.007-0.113-0.011C19.781,27.96,19.729,28.033,19.666,28.113z M22.014,26.831
|
||||
c-0.008,0.036-0.014,0.071-0.02,0.106c0.1,0.021,0.17,0.042,0.211,0.067c0.041,0.023,0.059,0.051,0.053,0.082
|
||||
c-0.004,0.024-0.055,0.084-0.15,0.18c-0.096,0.096-0.268,0.264-0.512,0.507c-0.07-0.154-0.135-0.288-0.186-0.401
|
||||
c-0.053-0.113-0.092-0.202-0.119-0.266c-0.029-0.069-0.049-0.119-0.061-0.151c-0.01-0.033-0.016-0.054-0.014-0.063
|
||||
c0.004-0.02,0.027-0.033,0.07-0.039s0.125-0.001,0.244,0.013c0.006-0.036,0.012-0.071,0.018-0.106
|
||||
c-0.438-0.064-0.875-0.119-1.313-0.165c-0.004,0.036-0.01,0.071-0.014,0.107c0.033,0.005,0.07,0.014,0.111,0.026
|
||||
c0.039,0.012,0.074,0.026,0.102,0.043c0.035,0.023,0.07,0.052,0.104,0.087c0.031,0.035,0.064,0.08,0.094,0.134
|
||||
c0.055,0.105,0.115,0.218,0.174,0.337c0.061,0.12,0.123,0.248,0.184,0.381c0.021,0.047,0.039,0.085,0.053,0.114
|
||||
c0.014,0.03,0.021,0.053,0.027,0.072c0.004,0.016,0.004,0.036,0.002,0.059c-0.004,0.023-0.006,0.049-0.012,0.08
|
||||
c-0.018,0.114-0.035,0.228-0.051,0.342c-0.008,0.035-0.018,0.063-0.035,0.085S20.93,28.5,20.889,28.51
|
||||
c-0.021,0.004-0.061,0.006-0.113,0.004c-0.055-0.001-0.096-0.003-0.123-0.005c-0.006,0.036-0.012,0.072-0.016,0.107
|
||||
c0.396,0.05,0.795,0.108,1.189,0.174c0.008-0.035,0.014-0.071,0.021-0.106c-0.027-0.006-0.066-0.019-0.119-0.039
|
||||
s-0.088-0.034-0.105-0.042c-0.035-0.021-0.057-0.045-0.066-0.072c-0.01-0.026-0.012-0.057-0.006-0.089
|
||||
c0.016-0.091,0.031-0.183,0.049-0.274c0.018-0.103,0.035-0.173,0.057-0.212c0.02-0.04,0.064-0.093,0.135-0.162
|
||||
c0.109-0.108,0.211-0.206,0.305-0.294c0.094-0.089,0.184-0.17,0.27-0.245c0.041-0.036,0.082-0.067,0.125-0.096
|
||||
c0.043-0.027,0.09-0.048,0.139-0.062c0.033-0.009,0.064-0.015,0.098-0.018c0.033-0.002,0.07-0.001,0.109,0.002
|
||||
c0.008-0.035,0.014-0.071,0.023-0.106C22.576,26.925,22.295,26.876,22.014,26.831z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_50">
|
||||
<g>
|
||||
<rect x="10.283" y="21.101" fill-rule="evenodd" clip-rule="evenodd" fill="#A29784" width="3.878" height="1.899"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_50_copy">
|
||||
<g>
|
||||
<rect x="18.336" y="21.101" fill-rule="evenodd" clip-rule="evenodd" fill="#A29784" width="3.879" height="1.899"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_16_copy_3">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M11.466,4.709h1.688V4.684c-0.029-0.244-0.238-0.434-0.49-0.434
|
||||
h-1.252c-0.273,0-0.494,0.222-0.494,0.494v1.07c0,0.272,0.221,0.494,0.494,0.494h1.252c0.256,0,0.466-0.193,0.491-0.442V5.841
|
||||
h-1.688V4.709z M15.352,5.051h-1.311V4.695h1.76c-0.025-0.25-0.236-0.445-0.492-0.445h-1.275c-0.273,0-0.495,0.222-0.495,0.494
|
||||
v0.307c0.024,0.25,0.235,0.445,0.491,0.445l1.309-0.001v0.368h-1.797c0.024,0.25,0.235,0.445,0.492,0.445h1.313
|
||||
c0.272,0,0.494-0.221,0.494-0.494V5.495C15.818,5.246,15.607,5.051,15.352,5.051z M21.396,4.232h-1.285
|
||||
c-0.26,0-0.473,0.213-0.473,0.474v1.111c0,0.261,0.213,0.473,0.473,0.473h1.285c0.262,0,0.473-0.212,0.473-0.473V4.706
|
||||
C21.869,4.445,21.658,4.232,21.396,4.232z M21.428,5.909H20.08V4.616h1.348V5.909z M17.816,5.3c0.1,0.125,0.252,0.135,0.295,0.135
|
||||
h0.686v0.449h-1.439V4.631h1.877c-0.035-0.228-0.232-0.398-0.467-0.398h-1.373c-0.262,0-0.475,0.213-0.475,0.474v1.111
|
||||
c0,0.261,0.213,0.473,0.475,0.473h1.373c0.244,0,0.447-0.182,0.471-0.42V5.091h-1.523C17.721,5.131,17.742,5.205,17.816,5.3z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g id="Shape_1_copy_11">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B7E4F3" d="M24.301,3.451c0-0.21,0.016-0.418,0.045-0.622
|
||||
c-2.285-0.262-5.189-0.505-8.087-0.505c-2.799,0-5.593,0.231-7.817,0.486c0.032,0.21,0.048,0.423,0.048,0.641
|
||||
c0,2.339-1.883,5.392-4.394,5.863c-0.218,18.099,9.518,20.474,12.248,21.57c2.79-1.112,12.473-3.473,12.249-21.591
|
||||
C26.133,8.789,24.301,5.759,24.301,3.451z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_49">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#8ED7F0" d="M25.977,11.356c0,0-1.965-0.625-4.014-0.362
|
||||
c1.383-1.472,1.979-3.224,1.979-3.224S21.83,7.986,20.07,9.135c0.703-1.968,0.502-3.922,0.502-3.922s-1.883,1.121-2.967,2.986
|
||||
c-0.176-2.158-1.252-3.934-1.252-3.934s-1.048,1.593-1.318,3.566c-1.019-1.715-2.508-2.787-2.508-2.787s-0.339,1.893,0.195,3.832
|
||||
C11.09,7.691,9.264,7.289,9.264,7.289s0.442,1.906,1.721,3.497c-2.009-0.437-3.907-0.063-3.907-0.063s1.193,1.606,3.043,2.561
|
||||
c-1.043,0.217-1.98,0.617-2.655,0.96c-0.67,0.34,4.028,4.094,4.028,4.094l10.246,0.061c0,0,4.326-3.195,3.654-3.629
|
||||
c-0.666-0.43-1.588-0.935-2.613-1.242C24.693,12.741,25.977,11.356,25.977,11.356z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_1_copy_16">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#546265" d="M25.064,2.685c0-0.223,0.016-0.442,0.049-0.658
|
||||
c-2.504-0.277-5.766-0.535-8.861-0.535c-2.99,0-6.131,0.245-8.569,0.514c0.035,0.222,0.053,0.449,0.053,0.679
|
||||
c0,2.476-1.697,5.706-4.355,6.205C3.152,28.042,13.454,30.556,16.343,31.716c2.954-1.176,13.2-3.675,12.961-22.848
|
||||
C26.701,8.334,25.064,5.127,25.064,2.685z M16.343,30.557C13.713,29.5,4.246,27.123,4.456,9.689
|
||||
c2.815-1.091,4.486-4.294,4.64-6.726c2.143-0.246,4.47-0.4,7.166-0.4c2.792,0,5.233,0.201,7.434,0.453
|
||||
c0.041,1.635,1.449,5.509,4.563,6.673C28.475,27.141,19.031,29.486,16.343,30.557z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_1_copy_17">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M24.178,3.492c0-0.21,0.016-0.417,0.045-0.62
|
||||
c-2.25-0.261-5.109-0.504-7.962-0.504c-2.757,0-5.508,0.23-7.698,0.484c0.031,0.209,0.047,0.423,0.047,0.64
|
||||
c0,2.332-1.973,5.375-4.476,5.845c-0.217,18.043,9.488,20.411,12.21,21.504c2.782-1.108,12.434-3.462,12.209-21.524
|
||||
C26.102,8.813,24.178,5.792,24.178,3.492z M16.343,29.748C13.866,28.753,4.948,26.514,5.145,10.09
|
||||
C7.797,9.063,9.498,6.045,9.64,3.754c1.982-0.231,4.118-0.376,6.627-0.376c2.598,0,4.838,0.188,6.875,0.426
|
||||
c0.039,1.541,1.49,5.189,4.424,6.287C27.77,26.53,18.875,28.739,16.343,29.748z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_1_copy_18">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#010101" d="M24.336,3.248c0-0.213-0.033-0.424-0.004-0.63
|
||||
c-2.281-0.266-5.133-0.514-8.075-0.514c-2.843,0-5.583,0.235-7.803,0.493c0.032,0.213-0.001,0.431-0.001,0.651
|
||||
c0,2.376-1.997,5.475-4.547,5.954c-0.221,18.377,9.665,20.79,12.437,21.903c2.833-1.129,12.665-3.526,12.436-21.923
|
||||
C26.283,8.668,24.336,5.591,24.336,3.248z M16.343,29.992C13.82,28.979,4.736,26.697,4.937,9.969
|
||||
c2.702-1.047,4.38-4.12,4.526-6.454c2.034-0.235,4.243-0.384,6.802-0.384c2.651,0,4.967,0.192,7.055,0.434
|
||||
c0.041,1.569,1.467,5.286,4.455,6.403C27.982,26.714,18.922,28.964,16.343,29.992z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_34_copy_2">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#8D917E" d="M8.557,17.673c0.099,0.448,0.238,1.016,0.414,1.576
|
||||
c0.356,1.135,0.885,2.236,0.885,2.236H23.32c0,0,0.59-1.083,0.941-2.208c0.174-0.556,0.297-1.122,0.379-1.572L8.557,17.673z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_1_copy_14_2_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B8B5A0" d="M20.621,21.167l-8.446,0.034c0,0-4.904,0.537-3.575,2.596
|
||||
c0.276,0.428,0.562,0.823,0.854,1.188c2.553,3.192,5.573,3.951,6.889,4.479c1.524-0.607,5.12-1.479,7.809-5.789
|
||||
C25.658,21.262,20.621,21.167,20.621,21.167z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_1_copy_15">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#A29784" d="M5.51,12.764c0.436,5.998,1.993,9.782,3.944,12.221
|
||||
c1.49-2.05,2.721-3.783,2.721-3.783s0.035-6.002,0.002-6.014C8.556,13.895,5.51,12.764,5.51,12.764z M20.629,15.471
|
||||
c-0.039,0.014-0.008,5.696-0.008,5.696s1.004,1.587,2.531,3.919c1.945-2.419,3.49-6.206,3.986-12.276
|
||||
C27.139,12.81,21.289,15.239,20.629,15.471z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_31_copy_2">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#242424" points="19.725,12.614 19.953,11.828 19.301,11.323 18.381,8.32
|
||||
14.339,8.313 13.482,11.259 12.822,11.775 13.082,12.633 12.544,14.485 13.484,14.512 19.283,14.348 20.297,14.485 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_28_copy_8">
|
||||
<g>
|
||||
<rect x="14.702" y="9.106" fill-rule="evenodd" clip-rule="evenodd" fill="#C0B391" width="3.367" height="17.031"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_28_copy_8_1_">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#A29784" points="13.339,13.905 13.339,21.058 14.734,26.137
|
||||
14.734,9.106 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_28_copy_8_2_">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#A29784" points="18.014,9.106 18.014,26.137 19.408,21.165
|
||||
19.408,13.601 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_29_copy_4">
|
||||
<g>
|
||||
<rect x="15.944" y="16.968" fill-rule="evenodd" clip-rule="evenodd" fill="#30281F" width="1.021" height="1.902"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_32_copy_7">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#30281F" d="M17.215,12.494c-0.02-0.383-0.354-0.688-0.763-0.688
|
||||
c-0.409,0-0.743,0.305-0.763,0.688h-0.001v1.744h1.527V12.494L17.215,12.494z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Color_Fill_2">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#010101" d="M23.623,13.172c-0.063-0.016-0.125-0.014-0.186,0
|
||||
c-0.094-1.051-0.307-3.618-0.307-3.618s-0.016-0.167-0.133-0.165c-0.098,0.002-0.117,0.119-0.117,0.119L22.5,12.709
|
||||
c-0.102-0.023-0.205-0.02-0.299,0.026c-0.285,0.143-0.16,0.58-0.008,0.971c0.135,0.353,0.365,0.987,0.807,0.895
|
||||
c-0.043,0.234-0.068,0.497,0.078,0.54c0.594,0.17,0.697-0.608,0.762-1.023C23.902,13.703,23.932,13.25,23.623,13.172z
|
||||
M22.975,13.571c-0.006-0.167,0.047-0.354-0.018-0.514c-0.043-0.11-0.127-0.206-0.283-0.276c0.08-0.74,0.297-3.04,0.297-3.04
|
||||
l0.047-0.004l0.238,3.491C23.1,13.306,23.027,13.441,22.975,13.571z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Color_Fill_1_2_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#010101" d="M16.255,10.097c4.065-0.024,8.12-0.564,9.967-0.906
|
||||
c0.336-0.062,0.641-0.119,0.92-0.173l-0.195-0.129c-0.225,0.04-0.465,0.084-0.725,0.132c-1.848,0.342-5.902,0.882-9.967,0.906
|
||||
C11.354,9.955,6.443,9.417,5.441,9.277c-0.007,0.074,0.003,0.146,0,0.171C6.443,9.588,11.354,10.126,16.255,10.097z M28.016,9.594
|
||||
c-0.48,0.102-1.111,0.243-1.893,0.426c-1.83,0.43-5.871,1.491-9.936,1.516c-4.901,0.029-9.786-1.119-10.781-1.304
|
||||
c-0.274-0.051-0.506-0.09-0.698-0.12c-0.002,0.04-0.016,0.098-0.019,0.148c0.193,0.043,0.43,0.091,0.709,0.143
|
||||
c0.995,0.185,5.888,1.334,10.789,1.305c4.065-0.024,8.114-1.086,9.944-1.516c0.863-0.202,1.541-0.37,2.035-0.498L28.016,9.594z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Color_Fill_1_copy_7">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#546265" d="M6.853,26.454c0.001,0.009,0.005,0.028,0.011,0.058
|
||||
C6.859,26.493,6.856,26.473,6.853,26.454z M26.006,26.19c0-0.021-0.002-0.042-0.006-0.063c0-0.011-0.002-0.021-0.004-0.032
|
||||
c-0.002-0.01-0.004-0.021-0.006-0.031c-0.006-0.021-0.012-0.041-0.018-0.061c-0.125-0.344-0.428-0.469-0.773-0.484
|
||||
c-0.346-0.014-0.736,0.083-1.043,0.19c-0.209,0.074-0.447,0.096-0.6,0.24c-0.033,0.029-0.039,0.061-0.055,0.111
|
||||
c0.023,0.051,0.045,0.103,0.068,0.154c0.107,0.016,0.264-0.106,0.377-0.152c0.422-0.169,1.676-0.514,1.822,0.084
|
||||
c0.117,0.537-0.697,0.694-1.189,0.632c-0.279-0.034-1.162-0.271-2.518-0.487c-1.355-0.217-3.162-0.425-5.344-0.416
|
||||
c-0.067,0-0.136,0-0.203,0c-0.069,0-0.136,0.001-0.203,0.002c-0.135,0.002-0.268,0.005-0.401,0.009
|
||||
c-0.265,0.007-0.526,0.017-0.783,0.029c-0.513,0.025-1.008,0.061-1.483,0.102c-0.949,0.083-1.816,0.19-2.562,0.297
|
||||
c-1.495,0.21-2.508,0.435-2.719,0.461c-0.503,0.07-1.146-0.163-1.26-0.585c-0.071-0.262,0.146-0.302,0.373-0.36
|
||||
c0.626-0.158,1.281,0.267,1.778,0.396c0.054-0.111,0.083-0.15,0.043-0.277c-0.458-0.213-0.978-0.391-1.592-0.443
|
||||
c-0.408-0.024-0.618,0-0.818,0.431c-0.01,0.021-0.019,0.043-0.026,0.065c-0.003,0.011-0.006,0.022-0.009,0.033
|
||||
s-0.006,0.023-0.008,0.034c-0.004,0.023-0.008,0.047-0.01,0.07c-0.001,0.012-0.002,0.024-0.003,0.036
|
||||
c0,0.012-0.001,0.024-0.001,0.036c-0.001,0.078,0.007,0.159,0.021,0.24c-0.017-0.13,0.4,1.525,0.691,2.823
|
||||
c0.117,0.257,0.393,0.453,0.636,0.558c0.032,0.014,0.074,0.022,0.126,0.027c0.053,0.003,0.115,0.003,0.187-0.001
|
||||
c0.144-0.01,0.327-0.035,0.546-0.07c0.439-0.072,1.023-0.187,1.73-0.308c1.417-0.242,3.317-0.509,5.58-0.507
|
||||
c2.258,0.001,4.165,0.27,5.592,0.516c0.713,0.123,1.303,0.241,1.746,0.317c0.221,0.038,0.406,0.065,0.553,0.078
|
||||
c0.072,0.006,0.135,0.008,0.189,0.006c0.025-0.001,0.049-0.003,0.07-0.006c0.012-0.001,0.021-0.003,0.029-0.006
|
||||
c0.006-0.001,0.01-0.002,0.014-0.004c0.002,0,0.002-0.001,0.004-0.001c0,0,0.002,0,0.002,0c0,0,0.002,0,0.002,0
|
||||
c0.002-0.001,0.004-0.001,0.006-0.002c0.299-0.109,0.582-0.297,0.725-0.593c0.084-0.175,0.135-0.396,0.188-0.619
|
||||
c0.309-1.388,0.51-2.205,0.496-2.146c0.021-0.086,0.037-0.173,0.041-0.259C26.008,26.232,26.008,26.211,26.006,26.19z"/>
|
||||
<path fill="#010101" d="M7.528,25.501c0.055,0,0.115,0.002,0.178,0.006c0.614,0.052,1.134,0.23,1.592,0.443
|
||||
c0.04,0.126,0.011,0.166-0.043,0.277c-0.421-0.11-0.955-0.432-1.489-0.432c-0.096,0-0.193,0.011-0.289,0.035
|
||||
c-0.227,0.058-0.444,0.098-0.373,0.36c0.101,0.372,0.612,0.597,1.076,0.597c0.063,0,0.124-0.004,0.184-0.012
|
||||
c0.211-0.026,1.224-0.251,2.719-0.461c0.746-0.107,1.613-0.213,2.562-0.297c0.475-0.041,0.97-0.076,1.483-0.102
|
||||
c0.257-0.012,0.518-0.022,0.783-0.029c0.133-0.003,0.267-0.007,0.401-0.009c0.067,0,0.134-0.001,0.203-0.002
|
||||
c0.067,0,0.136,0,0.203,0c0.045,0,0.089,0,0.133,0c2.122,0,3.883,0.205,5.211,0.417c1.355,0.216,2.238,0.453,2.518,0.487
|
||||
c0.068,0.009,0.141,0.013,0.215,0.013c0.48,0,1.076-0.181,0.975-0.645c-0.063-0.253-0.324-0.337-0.635-0.337
|
||||
c-0.424,0-0.945,0.156-1.188,0.253c-0.105,0.043-0.252,0.153-0.357,0.153c-0.008,0-0.014,0-0.02-0.001
|
||||
c-0.023-0.051-0.045-0.103-0.068-0.154c0.016-0.051,0.021-0.082,0.055-0.111c0.152-0.144,0.391-0.166,0.6-0.24
|
||||
c0.287-0.1,0.646-0.191,0.975-0.191c0.023,0,0.047,0,0.068,0.001c0.346,0.015,0.648,0.14,0.773,0.484
|
||||
c0.006,0.02,0.012,0.041,0.018,0.061c0.002,0.01,0.004,0.021,0.006,0.031C25.998,26.106,26,26.116,26,26.127
|
||||
c0.004,0.021,0.006,0.042,0.006,0.063c0.002,0.021,0.002,0.042,0,0.064c-0.004,0.086-0.02,0.173-0.041,0.259
|
||||
c0-0.002,0-0.003,0-0.003s-0.199,0.809-0.496,2.149c-0.053,0.223-0.104,0.444-0.188,0.619c-0.143,0.296-0.426,0.483-0.725,0.593
|
||||
c-0.002,0.001-0.004,0.001-0.006,0.002c0,0-0.002,0-0.002,0c0,0-0.002,0-0.002,0c-0.002,0-0.002,0-0.004,0.001
|
||||
c-0.004,0.001-0.008,0.003-0.014,0.004c-0.008,0.002-0.018,0.004-0.029,0.006c-0.021,0.003-0.045,0.005-0.07,0.006
|
||||
c-0.014,0-0.027,0.001-0.043,0.001c-0.043,0-0.092-0.002-0.146-0.007c-0.146-0.012-0.332-0.04-0.553-0.078
|
||||
c-0.443-0.076-1.033-0.194-1.746-0.317c-1.428-0.247-3.334-0.515-5.592-0.516c-0.007,0-0.014,0-0.021,0
|
||||
c-2.253,0-4.146,0.266-5.559,0.507c-0.708,0.121-1.292,0.236-1.73,0.308c-0.219,0.036-0.402,0.061-0.546,0.07
|
||||
c-0.041,0.002-0.078,0.004-0.112,0.004c-0.026,0-0.051-0.001-0.075-0.002c-0.052-0.004-0.094-0.013-0.126-0.027
|
||||
c-0.243-0.104-0.519-0.301-0.636-0.558c-0.28-1.25-0.677-2.83-0.691-2.83c0,0,0,0.002,0,0.007
|
||||
c-0.014-0.081-0.023-0.162-0.021-0.24c0-0.012,0-0.024,0.001-0.036c0.001-0.012,0.001-0.024,0.003-0.036
|
||||
c0.002-0.023,0.005-0.047,0.01-0.07c0.002-0.011,0.005-0.023,0.008-0.034s0.006-0.022,0.009-0.033
|
||||
c0.007-0.022,0.016-0.044,0.026-0.065C7.057,25.575,7.232,25.501,7.528,25.501 M6.853,26.454c0.003,0.02,0.007,0.039,0.011,0.058
|
||||
C6.857,26.482,6.854,26.463,6.853,26.454 M7.528,25.264L7.528,25.264c-0.354,0-0.635,0.098-0.857,0.575
|
||||
c-0.013,0.03-0.025,0.061-0.036,0.093c-0.004,0.015-0.009,0.031-0.013,0.046c-0.004,0.016-0.007,0.031-0.011,0.047
|
||||
c-0.006,0.03-0.011,0.062-0.014,0.093c-0.001,0.015-0.003,0.031-0.003,0.046c-0.001,0.016-0.001,0.03-0.002,0.046
|
||||
c-0.001,0.086,0.007,0.177,0.025,0.28c0.001,0.012,0.005,0.031,0.013,0.07l0.009-0.002c0.067,0.231,0.415,1.622,0.672,2.771
|
||||
l0.005,0.024l0.01,0.022c0.124,0.273,0.407,0.527,0.758,0.678c0.056,0.024,0.123,0.039,0.203,0.045
|
||||
c0.028,0.002,0.06,0.003,0.092,0.003c0.039,0,0.082-0.001,0.127-0.004c0.14-0.009,0.321-0.032,0.57-0.073
|
||||
c0.222-0.037,0.476-0.083,0.77-0.137c0.286-0.053,0.61-0.112,0.962-0.172c1.266-0.216,3.215-0.503,5.519-0.503h0.021
|
||||
c2.321,0.002,4.28,0.293,5.551,0.513c0.389,0.067,0.74,0.133,1.053,0.19c0.264,0.049,0.49,0.092,0.693,0.126
|
||||
c0.256,0.043,0.434,0.068,0.574,0.081c0.063,0.005,0.117,0.007,0.166,0.007c0.02,0,0.035,0,0.053-0.001
|
||||
c0.035-0.001,0.068-0.004,0.098-0.009c0.018-0.002,0.033-0.006,0.051-0.01c0.008-0.002,0.016-0.004,0.023-0.007l0.006-0.001
|
||||
l0.002,0l0.004-0.001v0c0.002,0,0.004,0,0.006-0.001c0.002-0.001,0.006-0.002,0.01-0.004c0.406-0.148,0.703-0.395,0.857-0.713
|
||||
c0.088-0.182,0.139-0.398,0.189-0.608l0.014-0.06l0.002-0.002v-0.002c0.115-0.521,0.293-1.309,0.482-2.094
|
||||
c0.004-0.015,0.008-0.029,0.01-0.043l0,0c0.029-0.114,0.047-0.215,0.051-0.308c0.002-0.028,0.002-0.057,0-0.083
|
||||
c0-0.029-0.004-0.058-0.008-0.085c-0.002-0.015-0.004-0.029-0.006-0.044c-0.004-0.014-0.006-0.028-0.01-0.042
|
||||
c-0.006-0.031-0.016-0.06-0.025-0.087c-0.1-0.278-0.352-0.615-0.986-0.641c-0.025-0.001-0.051-0.001-0.078-0.001
|
||||
c-0.389,0-0.787,0.111-1.053,0.205c-0.053,0.019-0.109,0.034-0.17,0.05c-0.17,0.045-0.361,0.097-0.514,0.239
|
||||
c-0.08,0.073-0.102,0.156-0.117,0.21l-0.004,0.011l-0.021,0.081l0.031,0.078l0.057,0.126c-0.354-0.071-0.77-0.148-1.24-0.224
|
||||
c-1.766-0.282-3.482-0.419-5.249-0.419c-0.044,0-0.088,0-0.133,0c-0.068,0-0.137,0-0.205,0.001c-0.069,0-0.137,0.001-0.205,0.002
|
||||
c-0.131,0.002-0.266,0.004-0.403,0.009c-0.256,0.006-0.521,0.016-0.788,0.029c-0.482,0.023-0.984,0.058-1.492,0.103
|
||||
c-0.837,0.073-1.704,0.173-2.575,0.298c-0.618,0.086-1.149,0.175-1.58,0.252l0.011-0.023c0.065-0.129,0.106-0.235,0.044-0.429
|
||||
l-0.031-0.1l-0.095-0.044c-0.578-0.269-1.109-0.417-1.671-0.464l-0.003,0H7.721C7.641,25.266,7.582,25.264,7.528,25.264
|
||||
L7.528,25.264z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#1E2729" d="M18.379,26.451c-0.75,0-1.098,0.313-1.436,0.833
|
||||
c-0.127,0.194-0.244,0.38-0.332,0.55c-0.096,0.184-0.14,0.11-0.086-0.043c0.105-0.299,0.289-0.544,0.446-0.881
|
||||
c0.109-0.24,0.238-0.53,0.238-0.791c0-0.312-0.129-0.655-0.311-1.03c-0.174-0.364-0.42-0.497-0.585-0.954
|
||||
c-0.165,0.458-0.411,0.59-0.585,0.954c-0.183,0.375-0.311,0.718-0.311,1.03c0,0.26,0.128,0.551,0.237,0.791
|
||||
c0.155,0.333,0.335,0.576,0.441,0.869c0.057,0.156,0.012,0.241-0.087,0.056c-0.096-0.179-0.224-0.377-0.354-0.577
|
||||
c-0.338-0.52-0.658-0.806-1.407-0.806c-0.512,0-0.914,0.541-0.914,1.124c0,0.494,0.236,1.017,0.525,1.311
|
||||
c0.052,0.053,0.162,0.012,0.166-0.045c0.042-0.581,0.301-0.933,0.908-0.933c0.42,0,1.099,0.417,1.099,0.771
|
||||
c-0.131,0-0.088,0.317,0,0.249c0.069,0,0.445,0,0.563,0c0.093,0,0.129-0.249,0-0.249c0-0.354,0.678-0.771,1.096-0.771
|
||||
c0.598,0,0.857,0.341,0.906,0.903c0.006,0.067,0.133,0.114,0.191,0.051c0.279-0.298,0.502-0.807,0.502-1.287
|
||||
C19.291,26.992,18.891,26.451,18.379,26.451z M16.074,29.437h0.503c0.08,0,0.144-0.097,0.144-0.216
|
||||
c0-0.119-0.063-0.215-0.144-0.215h-0.503c-0.08,0-0.144,0.097-0.144,0.215C15.93,29.34,15.994,29.437,16.074,29.437z
|
||||
M17.02,29.937c-0.201,0-0.379-0.003-0.375-0.28c0.033-0.073-0.09-0.179-0.16-0.167c-0.068,0.012-0.146,0.054-0.183,0.054
|
||||
c-0.036,0-0.15-0.054-0.196-0.059c-0.045-0.006-0.171,0.103-0.122,0.172c0.002,0.276-0.225,0.275-0.449,0.275
|
||||
c-0.317,0,0.206,0.397,0.381,0.216c0.14-0.143,0.233-0.154,0.232-0.348h0.02c0,0.175-0.016,0.223-0.09,0.35
|
||||
c-0.034,0.059-0.054,0.127-0.032,0.189c0.099,0.284,0.394,0.333,0.498,0c0.019-0.062-0.006-0.146-0.028-0.208
|
||||
c-0.047-0.129-0.058-0.129-0.057-0.33h0.017c-0.001,0.194,0.077,0.202,0.202,0.329C16.835,30.292,17.309,29.937,17.02,29.937z"/>
|
||||
<path fill="#403C32" d="M16.313,24.134c0.165,0.458,0.411,0.59,0.585,0.954c0.182,0.375,0.311,0.718,0.311,1.03
|
||||
c0,0.26-0.129,0.551-0.238,0.791c-0.157,0.337-0.341,0.582-0.446,0.881c-0.031,0.089-0.029,0.151-0.004,0.151
|
||||
c0.019,0,0.05-0.031,0.09-0.108c0.088-0.169,0.205-0.355,0.332-0.55c0.338-0.52,0.686-0.833,1.436-0.833
|
||||
c0.512,0,0.912,0.541,0.912,1.124c0,0.48-0.223,0.989-0.502,1.287c-0.02,0.021-0.047,0.029-0.074,0.029
|
||||
c-0.055,0-0.113-0.036-0.117-0.081c-0.049-0.563-0.309-0.903-0.906-0.903c-0.418,0-1.096,0.417-1.096,0.771
|
||||
c0.129,0,0.093,0.249,0,0.249c-0.119,0-0.494,0-0.563,0c-0.009,0.007-0.017,0.01-0.024,0.01c-0.071,0-0.094-0.259,0.024-0.259
|
||||
c0-0.354-0.678-0.771-1.099-0.771c-0.606,0-0.866,0.353-0.908,0.933c-0.003,0.039-0.053,0.07-0.103,0.07
|
||||
c-0.023,0-0.046-0.007-0.063-0.024c-0.289-0.294-0.525-0.817-0.525-1.311c0-0.583,0.402-1.124,0.914-1.124
|
||||
c0.75,0,1.069,0.287,1.407,0.806c0.13,0.199,0.258,0.397,0.354,0.577c0.04,0.075,0.071,0.105,0.09,0.105
|
||||
c0.029,0,0.031-0.068-0.003-0.161c-0.106-0.293-0.286-0.537-0.441-0.869c-0.109-0.24-0.237-0.53-0.237-0.791
|
||||
c0-0.312,0.128-0.655,0.311-1.03C15.902,24.725,16.148,24.592,16.313,24.134 M16.577,29.005c0.08,0,0.144,0.097,0.144,0.215
|
||||
c0,0.119-0.063,0.216-0.144,0.216h-0.503c-0.08,0-0.144-0.097-0.144-0.216c0-0.119,0.064-0.215,0.144-0.215H16.577 M16.102,29.484
|
||||
c0.001,0,0.002,0,0.003,0c0.046,0.005,0.16,0.059,0.196,0.059c0.037,0,0.115-0.042,0.183-0.054c0.004,0,0.007,0,0.011,0
|
||||
c0.07,0,0.18,0.099,0.148,0.167c-0.004,0.276,0.175,0.28,0.375,0.28c0.234,0-0.036,0.235-0.229,0.235
|
||||
c-0.044,0-0.084-0.012-0.113-0.042c-0.125-0.127-0.203-0.135-0.202-0.329h-0.017c-0.001,0.201,0.01,0.201,0.057,0.33
|
||||
c0.022,0.063,0.047,0.146,0.028,0.208c-0.05,0.16-0.144,0.232-0.239,0.232c-0.103,0-0.207-0.084-0.258-0.232
|
||||
c-0.022-0.062-0.002-0.13,0.032-0.189c0.074-0.126,0.09-0.175,0.09-0.35h-0.02c0.001,0.194-0.092,0.206-0.232,0.348
|
||||
c-0.032,0.034-0.077,0.047-0.125,0.047c-0.215,0-0.514-0.264-0.256-0.264c0.001,0,0.002,0,0.003,0c0.223,0,0.447,0,0.445-0.275
|
||||
C15.935,29.59,16.053,29.484,16.102,29.484 M16.313,23.943C16.313,23.943,16.313,23.943,16.313,23.943
|
||||
c-0.081,0-0.152,0.051-0.179,0.126c-0.084,0.232-0.19,0.371-0.304,0.517c-0.094,0.121-0.19,0.245-0.274,0.42
|
||||
c-0.153,0.313-0.329,0.724-0.329,1.111c0,0.149,0.034,0.302,0.084,0.452c-0.261-0.201-0.587-0.31-1.063-0.31
|
||||
c-0.598,0-1.104,0.601-1.104,1.313c0,0.512,0.233,1.092,0.58,1.444c0.051,0.053,0.123,0.082,0.199,0.082
|
||||
c0.154,0,0.282-0.108,0.292-0.247c0.039-0.53,0.253-0.756,0.718-0.756c0.321,0,0.78,0.294,0.885,0.501
|
||||
c-0.006,0.009-0.012,0.018-0.017,0.028c-0.035,0.064-0.043,0.134-0.043,0.18c0,0.069,0.015,0.131,0.04,0.181
|
||||
c-0.037,0.066-0.059,0.146-0.059,0.233c0,0.102,0.029,0.194,0.078,0.264c-0.001,0.002-0.002,0.004-0.003,0.006
|
||||
c-0.034,0.065-0.041,0.136-0.023,0.199c-0.002,0.019-0.007,0.025-0.007,0.025c-0.024,0.027-0.18,0.027-0.247,0.027h-0.003
|
||||
c-0.067,0-0.121,0.012-0.167,0.036c-0.077,0.042-0.124,0.118-0.124,0.203c0,0.223,0.331,0.404,0.546,0.404
|
||||
c0.023,0,0.047-0.002,0.069-0.005c0.002,0.007,0.005,0.014,0.007,0.021c0.076,0.218,0.248,0.36,0.438,0.36
|
||||
c0.192,0,0.35-0.137,0.42-0.366c0.005-0.013,0.008-0.024,0.01-0.037c0.02,0.002,0.038,0.004,0.057,0.004
|
||||
c0.201,0,0.51-0.164,0.51-0.382c0-0.084-0.047-0.159-0.123-0.2c-0.043-0.023-0.096-0.034-0.158-0.034
|
||||
c-0.052,0-0.149,0-0.176-0.015c-0.002-0.005-0.008-0.019-0.008-0.049c0.011-0.056,0.004-0.115-0.022-0.171
|
||||
c0.062-0.073,0.099-0.176,0.099-0.291c0-0.102-0.029-0.195-0.08-0.265c0.024-0.05,0.037-0.107,0.037-0.169
|
||||
c0-0.068-0.018-0.131-0.052-0.182c-0.002-0.003-0.005-0.007-0.008-0.011c0.11-0.206,0.564-0.496,0.882-0.496
|
||||
c0.459,0,0.672,0.218,0.717,0.729c0.012,0.143,0.146,0.254,0.307,0.254c0.082,0,0.158-0.032,0.213-0.089
|
||||
c0.332-0.355,0.555-0.924,0.555-1.417c0-0.712-0.506-1.313-1.104-1.313c-0.467,0-0.801,0.116-1.066,0.316
|
||||
c0.051-0.153,0.086-0.308,0.086-0.459c0-0.388-0.176-0.799-0.33-1.113c-0.083-0.173-0.179-0.298-0.272-0.418
|
||||
c-0.113-0.146-0.221-0.285-0.305-0.517C16.464,23.994,16.394,23.943,16.313,23.943L16.313,23.943z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="ITALY_copy_5">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#E7D19E" d="M11.995,28.606c-0.05,0-0.086-0.003-0.109-0.008
|
||||
c-0.042-0.009-0.07-0.023-0.088-0.044c-0.018-0.021-0.03-0.048-0.036-0.081c-0.082-0.457-0.163-0.913-0.245-1.369
|
||||
c-0.005-0.032-0.004-0.061,0.005-0.088c0.01-0.027,0.034-0.05,0.074-0.068c0.031-0.014,0.07-0.028,0.118-0.04
|
||||
c0.047-0.013,0.086-0.022,0.118-0.03c-0.006-0.036-0.012-0.07-0.018-0.106c-0.423,0.063-0.845,0.133-1.265,0.212
|
||||
c0.007,0.035,0.015,0.07,0.022,0.105c0.037-0.003,0.082-0.004,0.134-0.004c0.051,0,0.091,0.002,0.119,0.007
|
||||
c0.043,0.007,0.074,0.021,0.093,0.042s0.031,0.047,0.037,0.078c0.091,0.456,0.181,0.911,0.272,1.367
|
||||
c0.007,0.034,0.006,0.063-0.003,0.088s-0.031,0.047-0.065,0.068c-0.018,0.01-0.054,0.022-0.105,0.036s-0.092,0.024-0.118,0.03
|
||||
c0.008,0.036,0.015,0.07,0.022,0.106c0.393-0.074,0.787-0.14,1.182-0.199c-0.006-0.036-0.012-0.071-0.018-0.106
|
||||
C12.087,28.605,12.045,28.606,11.995,28.606z M12.533,26.673c0.026,0.185,0.053,0.371,0.079,0.556
|
||||
c0.041-0.005,0.083-0.01,0.124-0.015c0.021-0.087,0.062-0.183,0.122-0.286c0.061-0.104,0.122-0.163,0.183-0.177
|
||||
c0.034-0.008,0.076-0.016,0.126-0.023c0.05-0.008,0.093-0.014,0.129-0.018c0.026-0.003,0.051-0.005,0.076-0.008
|
||||
c0.059,0.514,0.117,1.028,0.176,1.543c0.003,0.034,0,0.064-0.01,0.09c-0.01,0.026-0.034,0.049-0.072,0.067
|
||||
c-0.019,0.009-0.054,0.02-0.107,0.03c-0.052,0.011-0.093,0.02-0.122,0.025c0.004,0.036,0.009,0.071,0.014,0.107
|
||||
c0.398-0.044,0.797-0.081,1.197-0.11c-0.002-0.036-0.006-0.071-0.009-0.107c-0.035-0.001-0.077-0.004-0.127-0.009
|
||||
c-0.05-0.005-0.087-0.01-0.111-0.017c-0.04-0.011-0.068-0.029-0.083-0.053c-0.016-0.024-0.025-0.053-0.029-0.086
|
||||
c-0.047-0.511-0.095-1.021-0.144-1.532c0.025-0.002,0.051-0.004,0.076-0.006c0.037-0.003,0.08-0.005,0.131-0.006
|
||||
c0.051-0.001,0.093-0.001,0.128,0c0.063,0.003,0.135,0.049,0.216,0.14s0.14,0.177,0.179,0.258
|
||||
c0.041-0.002,0.083-0.005,0.125-0.007c-0.013-0.187-0.025-0.373-0.037-0.56C14.017,26.511,13.273,26.58,12.533,26.673z
|
||||
M17.391,28.223c-0.037-0.021-0.066-0.043-0.086-0.066c-0.02-0.022-0.035-0.048-0.049-0.076c-0.078-0.17-0.172-0.385-0.285-0.644
|
||||
c-0.114-0.259-0.274-0.611-0.491-1.053c-0.109,0-0.217,0.002-0.327,0.004c-0.146,0.315-0.276,0.605-0.39,0.869
|
||||
c-0.114,0.263-0.225,0.527-0.332,0.79c-0.018,0.045-0.04,0.084-0.068,0.118c-0.027,0.033-0.062,0.062-0.102,0.086
|
||||
c-0.023,0.015-0.057,0.027-0.098,0.037c-0.042,0.01-0.079,0.017-0.113,0.021c0.002,0.036,0.005,0.071,0.007,0.107
|
||||
c0.294-0.016,0.589-0.027,0.884-0.034l-0.003-0.108c-0.115-0.006-0.198-0.019-0.248-0.038c-0.05-0.019-0.076-0.043-0.077-0.073
|
||||
c0-0.009,0-0.025,0.003-0.048c0.003-0.023,0.013-0.061,0.03-0.113c0.014-0.04,0.03-0.085,0.049-0.137
|
||||
c0.02-0.051,0.037-0.096,0.054-0.134c0.253-0.008,0.508-0.012,0.761-0.014c0.064,0.134,0.127,0.27,0.189,0.405
|
||||
c0.007,0.016,0.012,0.028,0.014,0.037c0,0.01,0.002,0.018,0.002,0.025c0,0.021-0.037,0.039-0.111,0.054
|
||||
c-0.074,0.015-0.139,0.024-0.193,0.028c0.001,0.036,0.001,0.071,0.001,0.107c0.392-0.004,0.783,0,1.175,0.011
|
||||
c0-0.036,0.002-0.072,0.002-0.108c-0.029-0.003-0.064-0.008-0.102-0.017S17.42,28.238,17.391,28.223z M15.81,27.59
|
||||
c0.098-0.239,0.198-0.478,0.301-0.716c0.114,0.234,0.227,0.469,0.335,0.704C16.234,27.581,16.022,27.584,15.81,27.59z
|
||||
M19.666,28.113c-0.064,0.08-0.125,0.141-0.18,0.183c-0.037,0.026-0.094,0.041-0.172,0.042c-0.076,0.002-0.156,0-0.236-0.005
|
||||
c-0.084-0.006-0.148-0.013-0.195-0.021c-0.049-0.008-0.084-0.022-0.109-0.041c-0.025-0.019-0.041-0.045-0.047-0.081
|
||||
c-0.008-0.036-0.01-0.083-0.004-0.144c0.029-0.429,0.061-0.858,0.092-1.287c0.002-0.033,0.01-0.061,0.027-0.085
|
||||
c0.016-0.024,0.045-0.041,0.088-0.05c0.035-0.007,0.076-0.011,0.123-0.013c0.047-0.002,0.088-0.003,0.123-0.003
|
||||
c0.002-0.036,0.006-0.071,0.008-0.107c-0.42-0.031-0.842-0.054-1.266-0.069c0,0.036-0.002,0.072-0.004,0.108
|
||||
c0.029,0.004,0.066,0.012,0.113,0.021c0.045,0.01,0.086,0.021,0.119,0.036c0.043,0.02,0.07,0.04,0.082,0.062
|
||||
c0.01,0.022,0.014,0.05,0.014,0.083c-0.023,0.461-0.049,0.921-0.072,1.381c-0.002,0.036-0.01,0.065-0.025,0.087
|
||||
c-0.016,0.022-0.041,0.04-0.078,0.05c-0.018,0.005-0.047,0.01-0.096,0.014s-0.09,0.007-0.127,0.009
|
||||
c0,0.035-0.002,0.071-0.004,0.107c0.662,0.023,1.324,0.068,1.982,0.134c0.037-0.207,0.074-0.414,0.113-0.621
|
||||
c-0.039-0.003-0.076-0.007-0.113-0.011C19.781,27.96,19.729,28.033,19.666,28.113z M22.014,26.831
|
||||
c-0.008,0.036-0.014,0.071-0.02,0.106c0.1,0.021,0.17,0.042,0.211,0.067c0.041,0.023,0.059,0.051,0.053,0.082
|
||||
c-0.004,0.024-0.055,0.084-0.15,0.18c-0.096,0.096-0.268,0.264-0.512,0.507c-0.07-0.154-0.135-0.288-0.186-0.401
|
||||
c-0.053-0.113-0.092-0.202-0.119-0.266c-0.029-0.069-0.049-0.119-0.061-0.151c-0.01-0.033-0.016-0.054-0.014-0.063
|
||||
c0.004-0.02,0.027-0.033,0.07-0.039s0.125-0.001,0.244,0.013c0.006-0.036,0.012-0.071,0.018-0.106
|
||||
c-0.438-0.064-0.875-0.119-1.313-0.165c-0.004,0.036-0.01,0.071-0.014,0.107c0.033,0.005,0.07,0.014,0.111,0.026
|
||||
c0.039,0.012,0.074,0.026,0.102,0.043c0.035,0.023,0.07,0.052,0.104,0.087c0.031,0.035,0.064,0.08,0.094,0.134
|
||||
c0.055,0.105,0.115,0.218,0.174,0.337c0.061,0.12,0.123,0.248,0.184,0.381c0.021,0.047,0.039,0.085,0.053,0.114
|
||||
c0.014,0.03,0.021,0.053,0.027,0.072c0.004,0.016,0.004,0.036,0.002,0.059c-0.004,0.023-0.006,0.049-0.012,0.08
|
||||
c-0.018,0.114-0.035,0.228-0.051,0.342c-0.008,0.035-0.018,0.063-0.035,0.085S20.93,28.5,20.889,28.51
|
||||
c-0.021,0.004-0.061,0.006-0.113,0.004c-0.055-0.001-0.096-0.003-0.123-0.005c-0.006,0.036-0.012,0.072-0.016,0.107
|
||||
c0.396,0.05,0.795,0.108,1.189,0.174c0.008-0.035,0.014-0.071,0.021-0.106c-0.027-0.006-0.066-0.019-0.119-0.039
|
||||
s-0.088-0.034-0.105-0.042c-0.035-0.021-0.057-0.045-0.066-0.072c-0.01-0.026-0.012-0.057-0.006-0.089
|
||||
c0.016-0.091,0.031-0.183,0.049-0.274c0.018-0.103,0.035-0.173,0.057-0.212c0.02-0.04,0.064-0.093,0.135-0.162
|
||||
c0.109-0.108,0.211-0.206,0.305-0.294c0.094-0.089,0.184-0.17,0.27-0.245c0.041-0.036,0.082-0.067,0.125-0.096
|
||||
c0.043-0.027,0.09-0.048,0.139-0.062c0.033-0.009,0.064-0.015,0.098-0.018c0.033-0.002,0.07-0.001,0.109,0.002
|
||||
c0.008-0.035,0.014-0.071,0.023-0.106C22.576,26.925,22.295,26.876,22.014,26.831z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_50">
|
||||
<g>
|
||||
<rect x="10.283" y="21.101" fill-rule="evenodd" clip-rule="evenodd" fill="#A29784" width="3.878" height="1.899"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_50_copy">
|
||||
<g>
|
||||
<rect x="18.336" y="21.101" fill-rule="evenodd" clip-rule="evenodd" fill="#A29784" width="3.879" height="1.899"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_16_copy_3">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M11.466,4.709h1.688V4.684c-0.029-0.244-0.238-0.434-0.49-0.434
|
||||
h-1.252c-0.273,0-0.494,0.222-0.494,0.494v1.07c0,0.272,0.221,0.494,0.494,0.494h1.252c0.256,0,0.466-0.193,0.491-0.442V5.841
|
||||
h-1.688V4.709z M15.352,5.051h-1.311V4.695h1.76c-0.025-0.25-0.236-0.445-0.492-0.445h-1.275c-0.273,0-0.495,0.222-0.495,0.494
|
||||
v0.307c0.024,0.25,0.235,0.445,0.491,0.445l1.309-0.001v0.368h-1.797c0.024,0.25,0.235,0.445,0.492,0.445h1.313
|
||||
c0.272,0,0.494-0.221,0.494-0.494V5.495C15.818,5.246,15.607,5.051,15.352,5.051z M21.396,4.232h-1.285
|
||||
c-0.26,0-0.473,0.213-0.473,0.474v1.111c0,0.261,0.213,0.473,0.473,0.473h1.285c0.262,0,0.473-0.212,0.473-0.473V4.706
|
||||
C21.869,4.445,21.658,4.232,21.396,4.232z M21.428,5.909H20.08V4.616h1.348V5.909z M17.816,5.3c0.1,0.125,0.252,0.135,0.295,0.135
|
||||
h0.686v0.449h-1.439V4.631h1.877c-0.035-0.228-0.232-0.398-0.467-0.398h-1.373c-0.262,0-0.475,0.213-0.475,0.474v1.111
|
||||
c0,0.261,0.213,0.473,0.475,0.473h1.373c0.244,0,0.447-0.182,0.471-0.42V5.091h-1.523C17.721,5.131,17.742,5.205,17.816,5.3z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 27 KiB |
@@ -1,90 +1,90 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g id="Shape_39">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#1C2115" d="M29.976,0.65H2.36C1.958,9.97,2.7,27.451,16.169,31.48
|
||||
C29.636,27.452,30.374,9.842,29.976,0.65z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_39_copy">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#E78025" d="M29.664,0.969H2.674c-0.38,9.15,0.386,26.266,13.495,30.179
|
||||
C29.277,27.235,30.037,9.994,29.664,0.969z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_39_copy_4">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#A29D59" d="M28.411,2.316H3.925c-0.32,8.361,0.433,23.67,12.244,27.184
|
||||
C27.979,25.987,28.728,10.564,28.411,2.316z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_6">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#7E8044" points="16.182,4.546 4.419,9.883 4.723,14.393 16.182,9.066
|
||||
27.639,14.393 28.027,10.113 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_6_copy">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#7E8044" d="M16.182,10.86l-11.38,5.21c0,0,0.794,3.202,1.563,3.873
|
||||
c3.17-1.474,9.816-4.563,9.816-4.563s6.297,2.928,9.554,4.443c1.048-1.496,1.545-3.735,1.545-3.735L16.182,10.86z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_20_2_">
|
||||
<g>
|
||||
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#A29D59" cx="16.229" cy="14.45" r="5.112"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_19">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#272E28" d="M20.277,14.44c0-2.251-1.825-4.076-4.076-4.076
|
||||
s-4.076,1.825-4.076,4.076c0,2.005,1.448,3.672,3.356,4.013l-0.234,4.2l-1.152,0.002v0.321l1.13-0.003l-0.475,6.258l0.874-0.002
|
||||
l0.191-6.257l0.794-0.002l0.209,6.257l0.872-0.002l-0.493-6.256l0.959-0.002l0.005-0.321l-0.985,0.002l-0.234-4.2
|
||||
C18.84,18.1,20.277,16.438,20.277,14.44z M15.825,22.651l0.005-0.176l0.221-3.962c0.05,0.001,0.1,0.003,0.15,0.003
|
||||
c0.057,0,0.115-0.001,0.171-0.004l0.22,3.95l0.007,0.188L15.825,22.651z M16.065,18.242l0.146-2.627l0.146,2.625
|
||||
c-0.052,0.003-0.104,0.004-0.156,0.004C16.155,18.244,16.11,18.243,16.065,18.242z M16.928,18.174l-0.238-4.269l-0.478,0.027
|
||||
l-0.479-0.027l-0.238,4.273c-1.764-0.331-3.099-1.879-3.099-3.739c0-2.102,1.704-3.805,3.805-3.805s3.805,1.703,3.805,3.805
|
||||
C20.006,16.293,18.681,17.836,16.928,18.174z M15.624,29.23l1.194-0.002v0L15.624,29.23L15.624,29.23z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_18_2_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#272E28" d="M15.629,13.096l-1.918-4.019l-1.29,0.607l2.824,3.708
|
||||
L15.629,13.096z M15.183,13.399l-3.381-2.917l-0.915,1.082l4.07,2.264L15.183,13.399z M14.723,14.46l-4.401,0.154l0.102,1.409
|
||||
l4.435-1.094L14.723,14.46z M17.718,14.569l4.358-0.12l-0.057-1.407l-4.431,1.057L17.718,14.569z M17.634,13.994l3.97-1.799
|
||||
L21,10.904l-3.668,2.702L17.634,13.994z M18.271,9.002l-1.356-0.486l-0.583,4.563l0.488,0.061L18.271,9.002z M16.225,13.004
|
||||
L16.014,8.59l-1.437,0.052l1.174,4.485L16.225,13.004z M14.86,13.87l-4.19-1.486l-0.438,1.343l4.579,0.626L14.86,13.87z
|
||||
M16.851,15.866l1.832,3.911l1.266-0.581l-2.712-3.622L16.851,15.866z M17.261,15.576l3.271,2.861l0.919-1.043l-3.96-2.242
|
||||
L17.261,15.576z M17.626,14.63l-0.056,0.481l4.099,1.486l0.468-1.315L17.626,14.63z M16.251,15.961l0.173,4.289l1.401-0.05
|
||||
l-1.104-4.358L16.251,15.961z M15.142,15.479l-2.814,3.253l1.093,0.901l2.157-3.925L15.142,15.479z M14.829,15.035l-3.947,1.824
|
||||
l0.64,1.263l3.613-2.704L14.829,15.035z M17.202,14.457c-0.005-0.544-0.455-0.989-1.004-0.992
|
||||
c-0.55-0.002-0.989,0.438-0.981,0.984c0.007,0.544,0.457,0.986,1.004,0.988C16.769,15.438,17.207,15,17.202,14.457z M14.25,19.887
|
||||
l1.339,0.446l0.533-4.445l-0.486-0.056L14.25,19.887z M17.31,13.5l2.882-3.277l-1.083-0.946l-2.231,3.988L17.31,13.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_39_copy_2">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#1C2115" d="M28.833,1.868H3.504c-0.341,8.622,0.411,24.51,12.665,28.16
|
||||
C28.42,26.378,29.169,10.372,28.833,1.868z M16.169,29.101C4.768,25.715,4.018,10.85,4.317,2.734H28.02
|
||||
C28.315,10.741,27.567,25.715,16.169,29.101z"/>
|
||||
</g>
|
||||
</g>
|
||||
<text transform="matrix(1 0 0 1 6.4873 7.2632)" fill="#F5E8B0" font-family="'BritannicBold'" font-size="5.1856">MILITIA</text>
|
||||
<g id="Color_Fill_1_4_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EFEEEE" d="M20.645,8.273h0.796V8.261c-0.013-0.117-0.111-0.208-0.23-0.208
|
||||
h-0.592c-0.129,0-0.233,0.106-0.233,0.237v0.512c0,0.131,0.104,0.236,0.233,0.236h0.592c0.121,0,0.22-0.092,0.232-0.211V8.815
|
||||
h-0.798V8.273z M22.48,8.437h-0.619v-0.17h0.832c-0.013-0.119-0.112-0.213-0.233-0.213h-0.603c-0.129,0-0.233,0.106-0.233,0.237
|
||||
v0.146c0.011,0.12,0.111,0.214,0.232,0.214l0.618,0v0.176h-0.85c0.011,0.12,0.111,0.213,0.232,0.213h0.62
|
||||
c0.13,0,0.233-0.105,0.233-0.236V8.649C22.701,8.53,22.601,8.437,22.48,8.437z M25.337,8.044h-0.607
|
||||
c-0.122,0-0.224,0.103-0.224,0.227v0.532c0,0.125,0.102,0.227,0.224,0.227h0.607c0.124,0,0.224-0.102,0.224-0.227V8.271
|
||||
C25.561,8.147,25.461,8.044,25.337,8.044z M25.353,8.848h-0.637V8.229h0.637V8.848z M24.315,8.236
|
||||
c-0.018-0.11-0.111-0.191-0.221-0.191h-0.649c-0.124,0-0.224,0.103-0.224,0.227v0.532c0,0.125,0.1,0.227,0.224,0.227h0.649
|
||||
c0.115,0,0.21-0.087,0.221-0.201V8.456h-0.719c0.002,0.02,0.012,0.055,0.049,0.1c0.046,0.061,0.118,0.065,0.139,0.065h0.325v0.216
|
||||
h-0.682v-0.6H24.315z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g id="Shape_39">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#1C2115" d="M29.976,0.65H2.36C1.958,9.97,2.7,27.451,16.169,31.48
|
||||
C29.636,27.452,30.374,9.842,29.976,0.65z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_39_copy">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#E78025" d="M29.664,0.969H2.674c-0.38,9.15,0.386,26.266,13.495,30.179
|
||||
C29.277,27.235,30.037,9.994,29.664,0.969z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_39_copy_4">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#A29D59" d="M28.411,2.316H3.925c-0.32,8.361,0.433,23.67,12.244,27.184
|
||||
C27.979,25.987,28.728,10.564,28.411,2.316z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_6">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#7E8044" points="16.182,4.546 4.419,9.883 4.723,14.393 16.182,9.066
|
||||
27.639,14.393 28.027,10.113 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_6_copy">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#7E8044" d="M16.182,10.86l-11.38,5.21c0,0,0.794,3.202,1.563,3.873
|
||||
c3.17-1.474,9.816-4.563,9.816-4.563s6.297,2.928,9.554,4.443c1.048-1.496,1.545-3.735,1.545-3.735L16.182,10.86z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_20_2_">
|
||||
<g>
|
||||
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#A29D59" cx="16.229" cy="14.45" r="5.112"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_19">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#272E28" d="M20.277,14.44c0-2.251-1.825-4.076-4.076-4.076
|
||||
s-4.076,1.825-4.076,4.076c0,2.005,1.448,3.672,3.356,4.013l-0.234,4.2l-1.152,0.002v0.321l1.13-0.003l-0.475,6.258l0.874-0.002
|
||||
l0.191-6.257l0.794-0.002l0.209,6.257l0.872-0.002l-0.493-6.256l0.959-0.002l0.005-0.321l-0.985,0.002l-0.234-4.2
|
||||
C18.84,18.1,20.277,16.438,20.277,14.44z M15.825,22.651l0.005-0.176l0.221-3.962c0.05,0.001,0.1,0.003,0.15,0.003
|
||||
c0.057,0,0.115-0.001,0.171-0.004l0.22,3.95l0.007,0.188L15.825,22.651z M16.065,18.242l0.146-2.627l0.146,2.625
|
||||
c-0.052,0.003-0.104,0.004-0.156,0.004C16.155,18.244,16.11,18.243,16.065,18.242z M16.928,18.174l-0.238-4.269l-0.478,0.027
|
||||
l-0.479-0.027l-0.238,4.273c-1.764-0.331-3.099-1.879-3.099-3.739c0-2.102,1.704-3.805,3.805-3.805s3.805,1.703,3.805,3.805
|
||||
C20.006,16.293,18.681,17.836,16.928,18.174z M15.624,29.23l1.194-0.002v0L15.624,29.23L15.624,29.23z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_18_2_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#272E28" d="M15.629,13.096l-1.918-4.019l-1.29,0.607l2.824,3.708
|
||||
L15.629,13.096z M15.183,13.399l-3.381-2.917l-0.915,1.082l4.07,2.264L15.183,13.399z M14.723,14.46l-4.401,0.154l0.102,1.409
|
||||
l4.435-1.094L14.723,14.46z M17.718,14.569l4.358-0.12l-0.057-1.407l-4.431,1.057L17.718,14.569z M17.634,13.994l3.97-1.799
|
||||
L21,10.904l-3.668,2.702L17.634,13.994z M18.271,9.002l-1.356-0.486l-0.583,4.563l0.488,0.061L18.271,9.002z M16.225,13.004
|
||||
L16.014,8.59l-1.437,0.052l1.174,4.485L16.225,13.004z M14.86,13.87l-4.19-1.486l-0.438,1.343l4.579,0.626L14.86,13.87z
|
||||
M16.851,15.866l1.832,3.911l1.266-0.581l-2.712-3.622L16.851,15.866z M17.261,15.576l3.271,2.861l0.919-1.043l-3.96-2.242
|
||||
L17.261,15.576z M17.626,14.63l-0.056,0.481l4.099,1.486l0.468-1.315L17.626,14.63z M16.251,15.961l0.173,4.289l1.401-0.05
|
||||
l-1.104-4.358L16.251,15.961z M15.142,15.479l-2.814,3.253l1.093,0.901l2.157-3.925L15.142,15.479z M14.829,15.035l-3.947,1.824
|
||||
l0.64,1.263l3.613-2.704L14.829,15.035z M17.202,14.457c-0.005-0.544-0.455-0.989-1.004-0.992
|
||||
c-0.55-0.002-0.989,0.438-0.981,0.984c0.007,0.544,0.457,0.986,1.004,0.988C16.769,15.438,17.207,15,17.202,14.457z M14.25,19.887
|
||||
l1.339,0.446l0.533-4.445l-0.486-0.056L14.25,19.887z M17.31,13.5l2.882-3.277l-1.083-0.946l-2.231,3.988L17.31,13.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_39_copy_2">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#1C2115" d="M28.833,1.868H3.504c-0.341,8.622,0.411,24.51,12.665,28.16
|
||||
C28.42,26.378,29.169,10.372,28.833,1.868z M16.169,29.101C4.768,25.715,4.018,10.85,4.317,2.734H28.02
|
||||
C28.315,10.741,27.567,25.715,16.169,29.101z"/>
|
||||
</g>
|
||||
</g>
|
||||
<text transform="matrix(1 0 0 1 6.4873 7.2632)" fill="#F5E8B0" font-family="'BritannicBold'" font-size="5.1856">MILITIA</text>
|
||||
<g id="Color_Fill_1_4_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#EFEEEE" d="M20.645,8.273h0.796V8.261c-0.013-0.117-0.111-0.208-0.23-0.208
|
||||
h-0.592c-0.129,0-0.233,0.106-0.233,0.237v0.512c0,0.131,0.104,0.236,0.233,0.236h0.592c0.121,0,0.22-0.092,0.232-0.211V8.815
|
||||
h-0.798V8.273z M22.48,8.437h-0.619v-0.17h0.832c-0.013-0.119-0.112-0.213-0.233-0.213h-0.603c-0.129,0-0.233,0.106-0.233,0.237
|
||||
v0.146c0.011,0.12,0.111,0.214,0.232,0.214l0.618,0v0.176h-0.85c0.011,0.12,0.111,0.213,0.232,0.213h0.62
|
||||
c0.13,0,0.233-0.105,0.233-0.236V8.649C22.701,8.53,22.601,8.437,22.48,8.437z M25.337,8.044h-0.607
|
||||
c-0.122,0-0.224,0.103-0.224,0.227v0.532c0,0.125,0.102,0.227,0.224,0.227h0.607c0.124,0,0.224-0.102,0.224-0.227V8.271
|
||||
C25.561,8.147,25.461,8.044,25.337,8.044z M25.353,8.848h-0.637V8.229h0.637V8.848z M24.315,8.236
|
||||
c-0.018-0.11-0.111-0.191-0.221-0.191h-0.649c-0.124,0-0.224,0.103-0.224,0.227v0.532c0,0.125,0.1,0.227,0.224,0.227h0.649
|
||||
c0.115,0,0.21-0.087,0.221-0.201V8.456h-0.719c0.002,0.02,0.012,0.055,0.049,0.1c0.046,0.061,0.118,0.065,0.139,0.065h0.325v0.216
|
||||
h-0.682v-0.6H24.315z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 5.5 KiB |
@@ -1,196 +1,196 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g id="Shape_34">
|
||||
<g>
|
||||
<rect x="4.09" y="0.689" fill-rule="evenodd" clip-rule="evenodd" fill="#282622" width="24.203" height="31.029"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Rectangle_1">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#303535" d="M9.312,8.763l2.339,2.345l2.339-2.345L11.65,6.418L9.312,8.763z
|
||||
M4.628,8.763l2.339,2.345l2.339-2.345L6.967,6.418L4.628,8.763z M9.312,4.037l2.339,2.345l2.339-2.345L11.65,1.692L9.312,4.037z
|
||||
M18.678,8.763l2.338,2.345l2.34-2.345l-2.34-2.345L18.678,8.763z M13.995,4.037l2.339,2.345l2.338-2.345l-2.338-2.345
|
||||
L13.995,4.037z M4.628,4.037l2.339,2.345l2.339-2.345L6.967,1.692L4.628,4.037z M28.033,4.037l-2.338-2.345l-2.34,2.345
|
||||
l2.34,2.345L28.033,4.037z M18.678,4.037l2.338,2.345l2.34-2.345l-2.34-2.345L18.678,4.037z M23.355,8.763l2.34,2.345l2.338-2.345
|
||||
l-2.338-2.345L23.355,8.763z M13.995,8.763l2.339,2.345l2.338-2.345l-2.338-2.345L13.995,8.763z M4.628,13.488l2.339,2.346
|
||||
l2.339-2.346l-2.339-2.345L4.628,13.488z M13.995,18.215l2.339,2.345l2.338-2.345l-2.338-2.345L13.995,18.215z M9.312,18.215
|
||||
l2.339,2.345l2.339-2.345L11.65,15.87L9.312,18.215z M9.312,13.488l2.339,2.345l2.339-2.345l-2.339-2.345L9.312,13.488z
|
||||
M4.628,18.215l2.339,2.345l2.339-2.345L6.967,15.87L4.628,18.215z M13.995,13.488l2.339,2.345l2.338-2.345l-2.338-2.345
|
||||
L13.995,13.488z M23.355,13.488l2.34,2.345l2.338-2.345l-2.338-2.345L23.355,13.488z M18.678,13.488l2.338,2.345l2.34-2.345
|
||||
l-2.34-2.345L18.678,13.488z M23.355,18.215l2.34,2.345l2.338-2.345l-2.338-2.345L23.355,18.215z M18.678,18.215l2.338,2.345
|
||||
l2.34-2.345l-2.34-2.345L18.678,18.215z M4.628,27.737l2.339,2.345l2.339-2.345l-2.339-2.345L4.628,27.737z M4.628,23.011
|
||||
l2.339,2.346l2.339-2.346l-2.339-2.345L4.628,23.011z M9.312,23.011l2.339,2.346l2.339-2.346l-2.339-2.345L9.312,23.011z
|
||||
M18.678,23.011l2.338,2.346l2.34-2.346l-2.34-2.345L18.678,23.011z M23.355,27.737l2.34,2.345l2.338-2.345l-2.338-2.345
|
||||
L23.355,27.737z M23.355,23.011l2.34,2.346l2.338-2.346l-2.338-2.345L23.355,23.011z M13.995,23.011l2.339,2.346l2.338-2.346
|
||||
l-2.338-2.345L13.995,23.011z M13.995,27.737l2.339,2.345l2.338-2.345l-2.338-2.345L13.995,27.737z M18.678,27.737l2.338,2.345
|
||||
l2.34-2.345l-2.34-2.345L18.678,27.737z M9.312,27.737l2.339,2.345l2.339-2.345l-2.339-2.345L9.312,27.737z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_36">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#A9BDC4" points="22.635,11.858 22.314,11.674 20.676,12.62 20.68,12.296
|
||||
20.357,12.111 20.037,12.296 20.031,12.992 18.678,13.774 18.684,13.062 18.363,12.877 18.043,13.062 18.033,14.146
|
||||
17.348,14.542 16.439,14.018 16.439,13.223 17.369,12.676 17.369,12.306 17.049,12.121 16.439,12.479 16.439,10.915
|
||||
17.033,10.564 17.033,10.194 16.713,10.01 16.439,10.171 16.439,8.281 16.119,8.097 15.799,8.281 15.798,10.174 15.52,10.01
|
||||
15.199,10.194 15.199,10.564 15.798,10.918 15.798,12.481 15.185,12.121 14.864,12.306 14.864,12.676 15.798,13.226
|
||||
15.799,14.018 14.891,14.542 14.202,14.145 14.193,13.066 13.873,12.881 13.552,13.066 13.558,13.772 12.204,12.99 12.197,12.301
|
||||
11.877,12.116 11.557,12.301 11.56,12.618 9.923,11.674 9.603,11.858 9.603,12.229 11.242,13.175 10.96,13.335 10.96,13.704
|
||||
11.28,13.89 11.886,13.547 13.24,14.329 12.621,14.68 12.621,15.05 12.941,15.234 13.884,14.7 14.571,15.097 14.571,16.145
|
||||
13.881,16.543 12.943,16.012 12.623,16.196 12.623,16.566 13.238,16.915 11.883,17.697 11.283,17.357 10.962,17.542
|
||||
10.962,17.912 11.239,18.068 9.603,19.014 9.603,19.383 9.923,19.568 11.563,18.621 11.559,18.945 11.88,19.131 12.2,18.945
|
||||
12.206,18.25 13.561,17.468 13.555,18.18 13.875,18.365 14.195,18.18 14.204,17.097 14.891,16.7 15.798,17.224 15.799,18.02
|
||||
14.87,18.566 14.869,18.937 15.19,19.121 15.799,18.763 15.798,20.327 15.205,20.678 15.204,21.047 15.525,21.232 15.799,21.07
|
||||
15.798,22.96 16.119,23.146 16.439,22.961 16.439,21.067 16.718,21.232 17.039,21.047 17.039,20.677 16.439,20.324 16.439,18.76
|
||||
17.053,19.121 17.373,18.937 17.373,18.566 16.439,18.017 16.439,17.224 17.348,16.7 18.037,17.098 18.045,18.176 18.365,18.36
|
||||
18.686,18.176 18.68,17.47 20.035,18.251 20.041,18.941 20.361,19.126 20.682,18.941 20.678,18.623 22.314,19.568 22.635,19.383
|
||||
22.635,19.014 20.996,18.067 21.277,17.907 21.277,17.537 20.957,17.353 20.352,17.695 18.998,16.913 19.617,16.563
|
||||
19.617,16.192 19.297,16.008 18.354,16.542 17.668,16.146 17.668,15.097 18.357,14.699 19.295,15.23 19.615,15.045 19.615,14.676
|
||||
19,14.327 20.355,13.545 20.955,13.885 21.275,13.7 21.275,13.33 20.998,13.174 22.635,12.229 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_36_copy">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#A9BDC4" points="21.84,15.621 21.699,15.378 20.26,15.378 20.385,15.165
|
||||
20.244,14.922 19.963,14.922 19.695,15.378 18.506,15.378 18.781,14.91 18.641,14.667 18.359,14.667 17.941,15.378 17.338,15.378
|
||||
16.939,14.687 17.242,14.163 18.061,14.156 18.203,13.912 18.061,13.669 17.523,13.674 18.119,12.644 18.643,12.639
|
||||
18.783,12.396 18.643,12.151 18.402,12.154 19.121,10.909 18.98,10.666 18.699,10.666 17.979,11.912 17.857,11.698 17.576,11.698
|
||||
17.436,11.941 17.695,12.402 17.102,13.432 16.834,12.961 16.553,12.961 16.413,13.204 16.819,13.922 16.517,14.443 15.72,14.443
|
||||
15.417,13.919 15.822,13.206 15.681,12.963 15.4,12.963 15.135,13.43 14.541,12.4 14.799,11.943 14.658,11.7 14.377,11.7
|
||||
14.258,11.91 13.539,10.666 13.258,10.666 13.118,10.909 13.837,12.156 13.591,12.153 13.45,12.397 13.591,12.641 14.12,12.646
|
||||
14.714,13.676 14.173,13.671 14.032,13.914 14.173,14.158 14.997,14.165 15.298,14.688 14.9,15.377 14.295,15.378 13.879,14.671
|
||||
13.598,14.671 13.457,14.914 13.729,15.378 12.541,15.378 12.274,14.926 11.993,14.926 11.852,15.169 11.975,15.378
|
||||
10.538,15.378 10.397,15.621 10.538,15.864 11.977,15.864 11.852,16.076 11.993,16.32 12.274,16.32 12.542,15.864 13.732,15.864
|
||||
13.457,16.331 13.598,16.575 13.879,16.575 14.297,15.864 14.9,15.864 15.298,16.555 14.996,17.079 14.176,17.086 14.035,17.329
|
||||
14.176,17.573 14.713,17.568 14.119,18.599 13.594,18.603 13.454,18.847 13.594,19.09 13.836,19.088 13.118,20.332 13.258,20.576
|
||||
13.539,20.576 14.259,19.33 14.38,19.544 14.662,19.544 14.802,19.301 14.542,18.84 15.136,17.81 15.403,18.281 15.685,18.281
|
||||
15.825,18.037 15.419,17.32 15.72,16.799 16.517,16.799 16.82,17.322 16.417,18.035 16.556,18.279 16.837,18.279 17.104,17.812
|
||||
17.697,18.842 17.439,19.299 17.58,19.542 17.861,19.542 17.98,19.331 18.699,20.576 18.98,20.576 19.121,20.332 18.4,19.086
|
||||
18.646,19.088 18.787,18.845 18.646,18.601 18.117,18.597 17.523,17.566 18.064,17.571 18.205,17.327 18.064,17.084 17.24,17.077
|
||||
16.939,16.555 17.338,15.864 17.943,15.864 18.359,16.571 18.641,16.571 18.781,16.327 18.508,15.864 19.697,15.864
|
||||
19.963,16.316 20.244,16.316 20.385,16.073 20.264,15.864 21.699,15.864 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_34_copy_3">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#5A6568" d="M4.623,1.225v29.895H27.76V1.224L4.623,1.225z M27.201,30.517
|
||||
H5.16V1.827h22.041V30.517z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_34_copy_5">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#A9BDC4" d="M5.667,2.351v27.643h21.05V2.351H5.667z M26.389,29.641H5.975
|
||||
V2.73h20.414V29.641z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="office" opacity="0.6392">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#E0E4CD" d="M9.336,25.35c-0.482,0-0.873,0.159-1.171,0.479
|
||||
c-0.299,0.319-0.448,0.692-0.448,1.118c0,0.434,0.15,0.808,0.451,1.123c0.3,0.314,0.69,0.472,1.168,0.472
|
||||
c0.473,0,0.86-0.158,1.162-0.474c0.302-0.317,0.453-0.69,0.453-1.121c0-0.425-0.148-0.797-0.446-1.117
|
||||
C10.207,25.51,9.817,25.35,9.336,25.35z M9.981,27.634c-0.163,0.174-0.378,0.262-0.645,0.262c-0.268,0-0.484-0.088-0.648-0.262
|
||||
c-0.164-0.175-0.246-0.404-0.246-0.688c0-0.285,0.082-0.515,0.246-0.688s0.38-0.261,0.648-0.261c0.267,0,0.482,0.087,0.645,0.261
|
||||
c0.163,0.174,0.244,0.403,0.244,0.688C10.225,27.229,10.144,27.459,9.981,27.634z M11.771,28.501h0.703v-1.276h1.241v-0.57h-1.241
|
||||
V25.96h1.241v-0.57h-1.944V28.501z M14.582,28.501h0.703v-1.276h1.242v-0.57h-1.242V25.96h1.242v-0.57h-1.945V28.501z
|
||||
M17.418,28.501h0.703V25.39h-0.703V28.501z M20.691,27.896c-0.295,0-0.535-0.09-0.723-0.27s-0.283-0.408-0.283-0.685
|
||||
c0-0.274,0.096-0.5,0.287-0.678s0.436-0.267,0.736-0.267c0.307,0,0.631,0.106,0.973,0.319v-0.693
|
||||
c-0.279-0.183-0.619-0.273-1.023-0.273c-0.504,0-0.914,0.155-1.229,0.468c-0.313,0.312-0.469,0.691-0.469,1.138
|
||||
c0,0.447,0.148,0.823,0.445,1.129c0.297,0.305,0.697,0.457,1.197,0.457c0.387,0,0.758-0.103,1.111-0.31v-0.679
|
||||
c-0.268,0.144-0.469,0.236-0.604,0.279C20.977,27.874,20.836,27.896,20.691,27.896z M23.295,27.931v-0.748h1.289v-0.57h-1.289
|
||||
V25.96h1.352v-0.57h-2.055v3.111h2.082v-0.57H23.295z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="_x35_2375">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2F657A" d="M11.447,4.979c-0.068,0-0.142,0.002-0.221,0.007V4.244h0.976
|
||||
V3.983h-1.257v1.269c0.199-0.015,0.335-0.021,0.408-0.021c0.213,0,0.378,0.047,0.493,0.14s0.172,0.223,0.172,0.388
|
||||
c0,0.167-0.056,0.302-0.168,0.402c-0.112,0.102-0.26,0.152-0.444,0.152s-0.364-0.057-0.542-0.168v0.307
|
||||
c0.118,0.069,0.298,0.104,0.538,0.104c0.285,0,0.509-0.074,0.673-0.225c0.164-0.148,0.245-0.346,0.245-0.591
|
||||
c0-0.236-0.076-0.422-0.228-0.559C11.939,5.046,11.725,4.979,11.447,4.979z M13.38,6.073c0.019-0.053,0.051-0.104,0.098-0.157
|
||||
s0.109-0.108,0.188-0.169c0.079-0.06,0.18-0.132,0.301-0.217c0.098-0.068,0.183-0.135,0.256-0.201
|
||||
c0.072-0.065,0.132-0.135,0.18-0.206c0.048-0.071,0.083-0.148,0.107-0.229c0.023-0.081,0.035-0.172,0.035-0.271
|
||||
c0-0.109-0.019-0.207-0.057-0.291c-0.038-0.085-0.09-0.156-0.157-0.214s-0.145-0.102-0.235-0.132
|
||||
c-0.091-0.029-0.189-0.045-0.295-0.045c-0.148,0-0.274,0.021-0.377,0.063c-0.104,0.041-0.197,0.102-0.28,0.181v0.311
|
||||
c0.042-0.046,0.088-0.088,0.137-0.126c0.049-0.037,0.1-0.069,0.152-0.097c0.053-0.027,0.107-0.048,0.162-0.063
|
||||
c0.056-0.016,0.112-0.022,0.17-0.022c0.068,0,0.13,0.009,0.188,0.027c0.058,0.02,0.108,0.048,0.151,0.086
|
||||
c0.043,0.038,0.077,0.086,0.102,0.144c0.025,0.058,0.037,0.126,0.037,0.203c0,0.069-0.008,0.135-0.024,0.197
|
||||
c-0.016,0.062-0.043,0.122-0.082,0.183c-0.039,0.06-0.09,0.119-0.153,0.18c-0.063,0.06-0.142,0.123-0.236,0.188
|
||||
c-0.13,0.093-0.241,0.177-0.331,0.251s-0.163,0.147-0.218,0.222s-0.095,0.152-0.12,0.235c-0.024,0.082-0.036,0.178-0.036,0.285
|
||||
v0.126h1.603v-0.26h-1.293C13.352,6.186,13.361,6.125,13.38,6.073z M16.249,5.193V5.187c0.349-0.096,0.522-0.31,0.522-0.643
|
||||
c0-0.176-0.066-0.321-0.197-0.434c-0.131-0.113-0.306-0.17-0.524-0.17c-0.227,0-0.423,0.049-0.59,0.145v0.283
|
||||
c0.162-0.121,0.333-0.182,0.516-0.182c0.327,0,0.491,0.143,0.491,0.43c0,0.311-0.215,0.466-0.643,0.466h-0.205v0.245h0.216
|
||||
c0.481,0,0.723,0.166,0.723,0.496c0,0.149-0.055,0.269-0.162,0.356c-0.108,0.089-0.253,0.133-0.435,0.133
|
||||
c-0.223,0-0.423-0.068-0.601-0.205V6.42c0.146,0.091,0.342,0.136,0.589,0.136c0.273,0,0.494-0.069,0.661-0.209
|
||||
c0.168-0.14,0.251-0.322,0.251-0.55c0-0.165-0.055-0.302-0.165-0.412C16.584,5.275,16.436,5.211,16.249,5.193z M17.557,4.244
|
||||
h1.309l-0.973,2.27h0.309l1.027-2.438V3.983h-1.672V4.244z M21.203,5.182c-0.152-0.136-0.367-0.203-0.645-0.203
|
||||
c-0.068,0-0.143,0.002-0.221,0.007V4.244h0.975V3.983h-1.256v1.269c0.199-0.015,0.334-0.021,0.408-0.021
|
||||
c0.213,0,0.377,0.047,0.492,0.14s0.172,0.223,0.172,0.388c0,0.167-0.057,0.302-0.168,0.402c-0.113,0.102-0.262,0.152-0.445,0.152
|
||||
c-0.182,0-0.363-0.057-0.541-0.168v0.307c0.119,0.069,0.299,0.104,0.539,0.104c0.283,0,0.508-0.075,0.672-0.225
|
||||
c0.164-0.148,0.246-0.346,0.246-0.591C21.432,5.504,21.355,5.318,21.203,5.182z"/>
|
||||
<path fill="#A9BDC4" d="M16.049,3.94c0.219,0,0.394,0.057,0.524,0.17c0.131,0.112,0.197,0.258,0.197,0.434
|
||||
c0,0.333-0.174,0.547-0.522,0.643v0.007c0.188,0.018,0.336,0.082,0.447,0.191c0.11,0.11,0.165,0.247,0.165,0.412
|
||||
c0,0.228-0.083,0.41-0.251,0.55c-0.167,0.14-0.388,0.209-0.661,0.209c-0.247,0-0.443-0.045-0.589-0.136V6.107
|
||||
c0.177,0.137,0.378,0.205,0.601,0.205c0.182,0,0.326-0.044,0.435-0.133c0.107-0.088,0.162-0.207,0.162-0.356
|
||||
c0-0.33-0.241-0.496-0.723-0.496h-0.216V5.082h0.205c0.428,0,0.643-0.155,0.643-0.466c0-0.287-0.164-0.43-0.491-0.43
|
||||
c-0.182,0-0.354,0.061-0.516,0.182V4.085C15.626,3.989,15.823,3.94,16.049,3.94 M13.801,3.94c0.106,0,0.205,0.016,0.295,0.045
|
||||
c0.09,0.03,0.169,0.074,0.235,0.132s0.119,0.129,0.157,0.214c0.038,0.084,0.057,0.182,0.057,0.291c0,0.1-0.012,0.19-0.035,0.271
|
||||
c-0.024,0.081-0.06,0.158-0.107,0.229c-0.047,0.071-0.107,0.141-0.18,0.206c-0.073,0.066-0.158,0.133-0.256,0.201
|
||||
c-0.122,0.085-0.222,0.157-0.301,0.217c-0.079,0.061-0.142,0.116-0.188,0.169s-0.079,0.104-0.098,0.157
|
||||
c-0.019,0.052-0.028,0.112-0.028,0.181h1.293v0.26h-1.603V6.388c0-0.107,0.012-0.203,0.036-0.285
|
||||
c0.024-0.083,0.064-0.161,0.12-0.235s0.128-0.147,0.218-0.222s0.2-0.158,0.331-0.251c0.094-0.065,0.173-0.129,0.236-0.188
|
||||
c0.063-0.061,0.114-0.12,0.153-0.18c0.039-0.061,0.066-0.121,0.082-0.183c0.017-0.063,0.024-0.128,0.024-0.197
|
||||
c0-0.077-0.012-0.146-0.037-0.203c-0.024-0.058-0.059-0.105-0.102-0.144c-0.042-0.038-0.093-0.066-0.151-0.086
|
||||
c-0.058-0.019-0.121-0.027-0.188-0.027c-0.058,0-0.115,0.007-0.17,0.022c-0.055,0.016-0.109,0.036-0.162,0.063
|
||||
C13.38,4.3,13.329,4.332,13.28,4.369c-0.049,0.038-0.095,0.08-0.137,0.126V4.185c0.083-0.079,0.176-0.14,0.28-0.181
|
||||
C13.526,3.962,13.652,3.94,13.801,3.94 M21.313,3.983v0.261h-0.975v0.741c0.078-0.005,0.152-0.007,0.221-0.007
|
||||
c0.277,0,0.492,0.067,0.645,0.203c0.152,0.137,0.229,0.322,0.229,0.559c0,0.245-0.082,0.442-0.246,0.591
|
||||
c-0.164,0.149-0.389,0.225-0.672,0.225c-0.24,0-0.42-0.035-0.539-0.104V6.145c0.178,0.111,0.359,0.168,0.541,0.168
|
||||
c0.184,0,0.332-0.051,0.445-0.152c0.111-0.101,0.168-0.235,0.168-0.402c0-0.165-0.057-0.295-0.172-0.388s-0.279-0.14-0.492-0.14
|
||||
c-0.074,0-0.209,0.007-0.408,0.021V3.983H21.313 M19.229,3.983v0.092l-1.027,2.438h-0.309l0.973-2.27h-1.309V3.983H19.229
|
||||
M12.202,3.983v0.261h-0.976v0.741c0.08-0.005,0.153-0.007,0.221-0.007c0.277,0,0.492,0.067,0.645,0.203
|
||||
c0.152,0.137,0.228,0.322,0.228,0.559c0,0.245-0.082,0.442-0.245,0.591c-0.164,0.15-0.388,0.225-0.673,0.225
|
||||
c-0.24,0-0.42-0.035-0.538-0.104V6.145c0.178,0.111,0.358,0.168,0.542,0.168s0.332-0.051,0.444-0.152
|
||||
c0.112-0.101,0.168-0.235,0.168-0.402c0-0.165-0.057-0.295-0.172-0.388s-0.279-0.14-0.493-0.14c-0.073,0-0.208,0.007-0.408,0.021
|
||||
V3.983H12.202 M16.049,3.721c-0.265,0-0.5,0.059-0.701,0.174c-0.068,0.039-0.11,0.112-0.11,0.19v0.283
|
||||
c0,0.083,0.047,0.159,0.122,0.196c0.031,0.017,0.065,0.023,0.099,0.023c0.046,0,0.093-0.015,0.132-0.044
|
||||
c0.124-0.093,0.25-0.138,0.384-0.138c0.251,0,0.271,0.087,0.271,0.21c0,0.092,0,0.246-0.422,0.246h-0.205
|
||||
c-0.122,0-0.22,0.099-0.22,0.22v0.246c0,0.121,0.099,0.22,0.22,0.22h0.216c0.502,0,0.502,0.187,0.502,0.275
|
||||
c0,0.084-0.024,0.14-0.081,0.186c-0.067,0.055-0.166,0.083-0.295,0.083c-0.175,0-0.327-0.052-0.466-0.159
|
||||
c-0.04-0.03-0.087-0.046-0.134-0.046c-0.033,0-0.067,0.008-0.098,0.023c-0.075,0.037-0.123,0.113-0.123,0.197V6.42
|
||||
c0,0.076,0.04,0.146,0.104,0.188c0.181,0.111,0.417,0.169,0.705,0.169c0.325,0,0.596-0.088,0.803-0.261
|
||||
c0.219-0.183,0.331-0.425,0.331-0.719c0-0.225-0.078-0.416-0.231-0.568c-0.029-0.028-0.06-0.055-0.092-0.079
|
||||
c0.151-0.152,0.231-0.357,0.231-0.605c0-0.239-0.094-0.447-0.272-0.601C16.546,3.795,16.322,3.721,16.049,3.721L16.049,3.721z
|
||||
M13.801,3.721c-0.176,0-0.331,0.026-0.46,0.078c-0.128,0.052-0.245,0.128-0.348,0.226c-0.044,0.041-0.069,0.1-0.069,0.16v0.311
|
||||
c0,0.091,0.056,0.172,0.14,0.205c0.026,0.01,0.053,0.015,0.08,0.015c0.061,0,0.12-0.024,0.163-0.07
|
||||
c0.033-0.036,0.07-0.07,0.109-0.101c0.038-0.029,0.078-0.055,0.119-0.075c0.038-0.021,0.079-0.036,0.119-0.047
|
||||
c0.036-0.011,0.074-0.016,0.112-0.016c0.044,0,0.084,0.006,0.12,0.018c0.029,0.01,0.053,0.022,0.073,0.041
|
||||
c0.019,0.017,0.034,0.038,0.046,0.065c0.013,0.03,0.019,0.069,0.019,0.116c0,0.05-0.006,0.098-0.017,0.141
|
||||
c-0.01,0.039-0.029,0.079-0.055,0.119c-0.029,0.045-0.069,0.092-0.119,0.14c-0.055,0.052-0.126,0.108-0.211,0.168
|
||||
c-0.136,0.097-0.251,0.185-0.344,0.262c-0.103,0.084-0.189,0.172-0.254,0.26C12.95,5.83,12.898,5.933,12.867,6.04
|
||||
c-0.03,0.103-0.045,0.219-0.045,0.348v0.126c0,0.121,0.099,0.22,0.22,0.22h1.603c0.122,0,0.22-0.099,0.22-0.22v-0.26
|
||||
c0-0.122-0.099-0.221-0.22-0.221H13.67c0.034-0.033,0.077-0.07,0.129-0.11c0.076-0.058,0.175-0.129,0.294-0.211
|
||||
c0.105-0.073,0.198-0.147,0.278-0.22c0.085-0.077,0.158-0.161,0.215-0.247c0.06-0.09,0.105-0.188,0.135-0.29
|
||||
c0.029-0.101,0.044-0.213,0.044-0.333c0-0.141-0.025-0.269-0.076-0.382c-0.051-0.113-0.123-0.211-0.213-0.289
|
||||
c-0.088-0.077-0.193-0.136-0.311-0.175C14.053,3.739,13.93,3.721,13.801,3.721L13.801,3.721z M21.313,3.763h-1.256
|
||||
c-0.121,0-0.221,0.099-0.221,0.221v1.269c0,0.061,0.025,0.119,0.07,0.161c0.041,0.038,0.094,0.059,0.15,0.059
|
||||
c0.006,0,0.01,0,0.016,0c0.24-0.018,0.346-0.021,0.393-0.021c0.16,0,0.279,0.03,0.354,0.09c0.041,0.034,0.09,0.09,0.09,0.217
|
||||
c0,0.104-0.031,0.18-0.096,0.239c-0.07,0.063-0.168,0.095-0.297,0.095c-0.141,0-0.281-0.044-0.424-0.134
|
||||
c-0.035-0.022-0.076-0.034-0.117-0.034c-0.037,0-0.072,0.01-0.105,0.027c-0.07,0.039-0.115,0.113-0.115,0.193v0.307
|
||||
c0,0.078,0.043,0.151,0.109,0.19c0.154,0.091,0.367,0.135,0.65,0.135c0.34,0,0.615-0.095,0.82-0.282
|
||||
c0.211-0.192,0.318-0.445,0.318-0.754c0-0.301-0.102-0.544-0.303-0.723c-0.193-0.172-0.459-0.26-0.791-0.26c0,0,0,0-0.002,0V4.465
|
||||
h0.756c0.123,0,0.221-0.099,0.221-0.221V3.983C21.533,3.861,21.436,3.763,21.313,3.763L21.313,3.763z M19.229,3.763h-1.672
|
||||
c-0.123,0-0.221,0.099-0.221,0.221v0.261c0,0.122,0.098,0.221,0.221,0.221h0.975l-0.842,1.962
|
||||
c-0.029,0.067-0.021,0.146,0.02,0.208s0.109,0.099,0.184,0.099h0.309c0.088,0,0.168-0.053,0.203-0.135l1.027-2.438
|
||||
c0.012-0.026,0.018-0.056,0.018-0.085V3.983C19.449,3.861,19.352,3.763,19.229,3.763L19.229,3.763z M12.202,3.763h-1.257
|
||||
c-0.122,0-0.22,0.099-0.22,0.221v1.269c0,0.061,0.025,0.119,0.07,0.161c0.041,0.038,0.095,0.059,0.15,0.059
|
||||
c0.005,0,0.01,0,0.016,0c0.24-0.018,0.346-0.021,0.392-0.021c0.161,0,0.28,0.03,0.354,0.09c0.042,0.034,0.091,0.09,0.091,0.217
|
||||
c0,0.104-0.031,0.18-0.096,0.239c-0.071,0.063-0.168,0.095-0.296,0.095c-0.142,0-0.281-0.044-0.424-0.134
|
||||
c-0.036-0.022-0.076-0.034-0.117-0.034c-0.037,0-0.073,0.01-0.106,0.027c-0.07,0.039-0.114,0.113-0.114,0.193v0.307
|
||||
c0,0.078,0.042,0.151,0.109,0.19c0.154,0.091,0.366,0.135,0.649,0.135c0.34,0,0.617-0.095,0.821-0.282
|
||||
c0.21-0.192,0.317-0.445,0.317-0.754c0-0.301-0.102-0.544-0.302-0.723c-0.193-0.172-0.459-0.26-0.792-0.26c0,0,0,0-0.001,0V4.465
|
||||
h0.756c0.122,0,0.221-0.099,0.221-0.221V3.983C12.423,3.861,12.324,3.763,12.202,3.763L12.202,3.763z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g id="Shape_34">
|
||||
<g>
|
||||
<rect x="4.09" y="0.689" fill-rule="evenodd" clip-rule="evenodd" fill="#282622" width="24.203" height="31.029"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Rectangle_1">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#303535" d="M9.312,8.763l2.339,2.345l2.339-2.345L11.65,6.418L9.312,8.763z
|
||||
M4.628,8.763l2.339,2.345l2.339-2.345L6.967,6.418L4.628,8.763z M9.312,4.037l2.339,2.345l2.339-2.345L11.65,1.692L9.312,4.037z
|
||||
M18.678,8.763l2.338,2.345l2.34-2.345l-2.34-2.345L18.678,8.763z M13.995,4.037l2.339,2.345l2.338-2.345l-2.338-2.345
|
||||
L13.995,4.037z M4.628,4.037l2.339,2.345l2.339-2.345L6.967,1.692L4.628,4.037z M28.033,4.037l-2.338-2.345l-2.34,2.345
|
||||
l2.34,2.345L28.033,4.037z M18.678,4.037l2.338,2.345l2.34-2.345l-2.34-2.345L18.678,4.037z M23.355,8.763l2.34,2.345l2.338-2.345
|
||||
l-2.338-2.345L23.355,8.763z M13.995,8.763l2.339,2.345l2.338-2.345l-2.338-2.345L13.995,8.763z M4.628,13.488l2.339,2.346
|
||||
l2.339-2.346l-2.339-2.345L4.628,13.488z M13.995,18.215l2.339,2.345l2.338-2.345l-2.338-2.345L13.995,18.215z M9.312,18.215
|
||||
l2.339,2.345l2.339-2.345L11.65,15.87L9.312,18.215z M9.312,13.488l2.339,2.345l2.339-2.345l-2.339-2.345L9.312,13.488z
|
||||
M4.628,18.215l2.339,2.345l2.339-2.345L6.967,15.87L4.628,18.215z M13.995,13.488l2.339,2.345l2.338-2.345l-2.338-2.345
|
||||
L13.995,13.488z M23.355,13.488l2.34,2.345l2.338-2.345l-2.338-2.345L23.355,13.488z M18.678,13.488l2.338,2.345l2.34-2.345
|
||||
l-2.34-2.345L18.678,13.488z M23.355,18.215l2.34,2.345l2.338-2.345l-2.338-2.345L23.355,18.215z M18.678,18.215l2.338,2.345
|
||||
l2.34-2.345l-2.34-2.345L18.678,18.215z M4.628,27.737l2.339,2.345l2.339-2.345l-2.339-2.345L4.628,27.737z M4.628,23.011
|
||||
l2.339,2.346l2.339-2.346l-2.339-2.345L4.628,23.011z M9.312,23.011l2.339,2.346l2.339-2.346l-2.339-2.345L9.312,23.011z
|
||||
M18.678,23.011l2.338,2.346l2.34-2.346l-2.34-2.345L18.678,23.011z M23.355,27.737l2.34,2.345l2.338-2.345l-2.338-2.345
|
||||
L23.355,27.737z M23.355,23.011l2.34,2.346l2.338-2.346l-2.338-2.345L23.355,23.011z M13.995,23.011l2.339,2.346l2.338-2.346
|
||||
l-2.338-2.345L13.995,23.011z M13.995,27.737l2.339,2.345l2.338-2.345l-2.338-2.345L13.995,27.737z M18.678,27.737l2.338,2.345
|
||||
l2.34-2.345l-2.34-2.345L18.678,27.737z M9.312,27.737l2.339,2.345l2.339-2.345l-2.339-2.345L9.312,27.737z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_36">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#A9BDC4" points="22.635,11.858 22.314,11.674 20.676,12.62 20.68,12.296
|
||||
20.357,12.111 20.037,12.296 20.031,12.992 18.678,13.774 18.684,13.062 18.363,12.877 18.043,13.062 18.033,14.146
|
||||
17.348,14.542 16.439,14.018 16.439,13.223 17.369,12.676 17.369,12.306 17.049,12.121 16.439,12.479 16.439,10.915
|
||||
17.033,10.564 17.033,10.194 16.713,10.01 16.439,10.171 16.439,8.281 16.119,8.097 15.799,8.281 15.798,10.174 15.52,10.01
|
||||
15.199,10.194 15.199,10.564 15.798,10.918 15.798,12.481 15.185,12.121 14.864,12.306 14.864,12.676 15.798,13.226
|
||||
15.799,14.018 14.891,14.542 14.202,14.145 14.193,13.066 13.873,12.881 13.552,13.066 13.558,13.772 12.204,12.99 12.197,12.301
|
||||
11.877,12.116 11.557,12.301 11.56,12.618 9.923,11.674 9.603,11.858 9.603,12.229 11.242,13.175 10.96,13.335 10.96,13.704
|
||||
11.28,13.89 11.886,13.547 13.24,14.329 12.621,14.68 12.621,15.05 12.941,15.234 13.884,14.7 14.571,15.097 14.571,16.145
|
||||
13.881,16.543 12.943,16.012 12.623,16.196 12.623,16.566 13.238,16.915 11.883,17.697 11.283,17.357 10.962,17.542
|
||||
10.962,17.912 11.239,18.068 9.603,19.014 9.603,19.383 9.923,19.568 11.563,18.621 11.559,18.945 11.88,19.131 12.2,18.945
|
||||
12.206,18.25 13.561,17.468 13.555,18.18 13.875,18.365 14.195,18.18 14.204,17.097 14.891,16.7 15.798,17.224 15.799,18.02
|
||||
14.87,18.566 14.869,18.937 15.19,19.121 15.799,18.763 15.798,20.327 15.205,20.678 15.204,21.047 15.525,21.232 15.799,21.07
|
||||
15.798,22.96 16.119,23.146 16.439,22.961 16.439,21.067 16.718,21.232 17.039,21.047 17.039,20.677 16.439,20.324 16.439,18.76
|
||||
17.053,19.121 17.373,18.937 17.373,18.566 16.439,18.017 16.439,17.224 17.348,16.7 18.037,17.098 18.045,18.176 18.365,18.36
|
||||
18.686,18.176 18.68,17.47 20.035,18.251 20.041,18.941 20.361,19.126 20.682,18.941 20.678,18.623 22.314,19.568 22.635,19.383
|
||||
22.635,19.014 20.996,18.067 21.277,17.907 21.277,17.537 20.957,17.353 20.352,17.695 18.998,16.913 19.617,16.563
|
||||
19.617,16.192 19.297,16.008 18.354,16.542 17.668,16.146 17.668,15.097 18.357,14.699 19.295,15.23 19.615,15.045 19.615,14.676
|
||||
19,14.327 20.355,13.545 20.955,13.885 21.275,13.7 21.275,13.33 20.998,13.174 22.635,12.229 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_36_copy">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#A9BDC4" points="21.84,15.621 21.699,15.378 20.26,15.378 20.385,15.165
|
||||
20.244,14.922 19.963,14.922 19.695,15.378 18.506,15.378 18.781,14.91 18.641,14.667 18.359,14.667 17.941,15.378 17.338,15.378
|
||||
16.939,14.687 17.242,14.163 18.061,14.156 18.203,13.912 18.061,13.669 17.523,13.674 18.119,12.644 18.643,12.639
|
||||
18.783,12.396 18.643,12.151 18.402,12.154 19.121,10.909 18.98,10.666 18.699,10.666 17.979,11.912 17.857,11.698 17.576,11.698
|
||||
17.436,11.941 17.695,12.402 17.102,13.432 16.834,12.961 16.553,12.961 16.413,13.204 16.819,13.922 16.517,14.443 15.72,14.443
|
||||
15.417,13.919 15.822,13.206 15.681,12.963 15.4,12.963 15.135,13.43 14.541,12.4 14.799,11.943 14.658,11.7 14.377,11.7
|
||||
14.258,11.91 13.539,10.666 13.258,10.666 13.118,10.909 13.837,12.156 13.591,12.153 13.45,12.397 13.591,12.641 14.12,12.646
|
||||
14.714,13.676 14.173,13.671 14.032,13.914 14.173,14.158 14.997,14.165 15.298,14.688 14.9,15.377 14.295,15.378 13.879,14.671
|
||||
13.598,14.671 13.457,14.914 13.729,15.378 12.541,15.378 12.274,14.926 11.993,14.926 11.852,15.169 11.975,15.378
|
||||
10.538,15.378 10.397,15.621 10.538,15.864 11.977,15.864 11.852,16.076 11.993,16.32 12.274,16.32 12.542,15.864 13.732,15.864
|
||||
13.457,16.331 13.598,16.575 13.879,16.575 14.297,15.864 14.9,15.864 15.298,16.555 14.996,17.079 14.176,17.086 14.035,17.329
|
||||
14.176,17.573 14.713,17.568 14.119,18.599 13.594,18.603 13.454,18.847 13.594,19.09 13.836,19.088 13.118,20.332 13.258,20.576
|
||||
13.539,20.576 14.259,19.33 14.38,19.544 14.662,19.544 14.802,19.301 14.542,18.84 15.136,17.81 15.403,18.281 15.685,18.281
|
||||
15.825,18.037 15.419,17.32 15.72,16.799 16.517,16.799 16.82,17.322 16.417,18.035 16.556,18.279 16.837,18.279 17.104,17.812
|
||||
17.697,18.842 17.439,19.299 17.58,19.542 17.861,19.542 17.98,19.331 18.699,20.576 18.98,20.576 19.121,20.332 18.4,19.086
|
||||
18.646,19.088 18.787,18.845 18.646,18.601 18.117,18.597 17.523,17.566 18.064,17.571 18.205,17.327 18.064,17.084 17.24,17.077
|
||||
16.939,16.555 17.338,15.864 17.943,15.864 18.359,16.571 18.641,16.571 18.781,16.327 18.508,15.864 19.697,15.864
|
||||
19.963,16.316 20.244,16.316 20.385,16.073 20.264,15.864 21.699,15.864 "/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_34_copy_3">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#5A6568" d="M4.623,1.225v29.895H27.76V1.224L4.623,1.225z M27.201,30.517
|
||||
H5.16V1.827h22.041V30.517z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_34_copy_5">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#A9BDC4" d="M5.667,2.351v27.643h21.05V2.351H5.667z M26.389,29.641H5.975
|
||||
V2.73h20.414V29.641z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="office" opacity="0.6392">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#E0E4CD" d="M9.336,25.35c-0.482,0-0.873,0.159-1.171,0.479
|
||||
c-0.299,0.319-0.448,0.692-0.448,1.118c0,0.434,0.15,0.808,0.451,1.123c0.3,0.314,0.69,0.472,1.168,0.472
|
||||
c0.473,0,0.86-0.158,1.162-0.474c0.302-0.317,0.453-0.69,0.453-1.121c0-0.425-0.148-0.797-0.446-1.117
|
||||
C10.207,25.51,9.817,25.35,9.336,25.35z M9.981,27.634c-0.163,0.174-0.378,0.262-0.645,0.262c-0.268,0-0.484-0.088-0.648-0.262
|
||||
c-0.164-0.175-0.246-0.404-0.246-0.688c0-0.285,0.082-0.515,0.246-0.688s0.38-0.261,0.648-0.261c0.267,0,0.482,0.087,0.645,0.261
|
||||
c0.163,0.174,0.244,0.403,0.244,0.688C10.225,27.229,10.144,27.459,9.981,27.634z M11.771,28.501h0.703v-1.276h1.241v-0.57h-1.241
|
||||
V25.96h1.241v-0.57h-1.944V28.501z M14.582,28.501h0.703v-1.276h1.242v-0.57h-1.242V25.96h1.242v-0.57h-1.945V28.501z
|
||||
M17.418,28.501h0.703V25.39h-0.703V28.501z M20.691,27.896c-0.295,0-0.535-0.09-0.723-0.27s-0.283-0.408-0.283-0.685
|
||||
c0-0.274,0.096-0.5,0.287-0.678s0.436-0.267,0.736-0.267c0.307,0,0.631,0.106,0.973,0.319v-0.693
|
||||
c-0.279-0.183-0.619-0.273-1.023-0.273c-0.504,0-0.914,0.155-1.229,0.468c-0.313,0.312-0.469,0.691-0.469,1.138
|
||||
c0,0.447,0.148,0.823,0.445,1.129c0.297,0.305,0.697,0.457,1.197,0.457c0.387,0,0.758-0.103,1.111-0.31v-0.679
|
||||
c-0.268,0.144-0.469,0.236-0.604,0.279C20.977,27.874,20.836,27.896,20.691,27.896z M23.295,27.931v-0.748h1.289v-0.57h-1.289
|
||||
V25.96h1.352v-0.57h-2.055v3.111h2.082v-0.57H23.295z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="_x35_2375">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#2F657A" d="M11.447,4.979c-0.068,0-0.142,0.002-0.221,0.007V4.244h0.976
|
||||
V3.983h-1.257v1.269c0.199-0.015,0.335-0.021,0.408-0.021c0.213,0,0.378,0.047,0.493,0.14s0.172,0.223,0.172,0.388
|
||||
c0,0.167-0.056,0.302-0.168,0.402c-0.112,0.102-0.26,0.152-0.444,0.152s-0.364-0.057-0.542-0.168v0.307
|
||||
c0.118,0.069,0.298,0.104,0.538,0.104c0.285,0,0.509-0.074,0.673-0.225c0.164-0.148,0.245-0.346,0.245-0.591
|
||||
c0-0.236-0.076-0.422-0.228-0.559C11.939,5.046,11.725,4.979,11.447,4.979z M13.38,6.073c0.019-0.053,0.051-0.104,0.098-0.157
|
||||
s0.109-0.108,0.188-0.169c0.079-0.06,0.18-0.132,0.301-0.217c0.098-0.068,0.183-0.135,0.256-0.201
|
||||
c0.072-0.065,0.132-0.135,0.18-0.206c0.048-0.071,0.083-0.148,0.107-0.229c0.023-0.081,0.035-0.172,0.035-0.271
|
||||
c0-0.109-0.019-0.207-0.057-0.291c-0.038-0.085-0.09-0.156-0.157-0.214s-0.145-0.102-0.235-0.132
|
||||
c-0.091-0.029-0.189-0.045-0.295-0.045c-0.148,0-0.274,0.021-0.377,0.063c-0.104,0.041-0.197,0.102-0.28,0.181v0.311
|
||||
c0.042-0.046,0.088-0.088,0.137-0.126c0.049-0.037,0.1-0.069,0.152-0.097c0.053-0.027,0.107-0.048,0.162-0.063
|
||||
c0.056-0.016,0.112-0.022,0.17-0.022c0.068,0,0.13,0.009,0.188,0.027c0.058,0.02,0.108,0.048,0.151,0.086
|
||||
c0.043,0.038,0.077,0.086,0.102,0.144c0.025,0.058,0.037,0.126,0.037,0.203c0,0.069-0.008,0.135-0.024,0.197
|
||||
c-0.016,0.062-0.043,0.122-0.082,0.183c-0.039,0.06-0.09,0.119-0.153,0.18c-0.063,0.06-0.142,0.123-0.236,0.188
|
||||
c-0.13,0.093-0.241,0.177-0.331,0.251s-0.163,0.147-0.218,0.222s-0.095,0.152-0.12,0.235c-0.024,0.082-0.036,0.178-0.036,0.285
|
||||
v0.126h1.603v-0.26h-1.293C13.352,6.186,13.361,6.125,13.38,6.073z M16.249,5.193V5.187c0.349-0.096,0.522-0.31,0.522-0.643
|
||||
c0-0.176-0.066-0.321-0.197-0.434c-0.131-0.113-0.306-0.17-0.524-0.17c-0.227,0-0.423,0.049-0.59,0.145v0.283
|
||||
c0.162-0.121,0.333-0.182,0.516-0.182c0.327,0,0.491,0.143,0.491,0.43c0,0.311-0.215,0.466-0.643,0.466h-0.205v0.245h0.216
|
||||
c0.481,0,0.723,0.166,0.723,0.496c0,0.149-0.055,0.269-0.162,0.356c-0.108,0.089-0.253,0.133-0.435,0.133
|
||||
c-0.223,0-0.423-0.068-0.601-0.205V6.42c0.146,0.091,0.342,0.136,0.589,0.136c0.273,0,0.494-0.069,0.661-0.209
|
||||
c0.168-0.14,0.251-0.322,0.251-0.55c0-0.165-0.055-0.302-0.165-0.412C16.584,5.275,16.436,5.211,16.249,5.193z M17.557,4.244
|
||||
h1.309l-0.973,2.27h0.309l1.027-2.438V3.983h-1.672V4.244z M21.203,5.182c-0.152-0.136-0.367-0.203-0.645-0.203
|
||||
c-0.068,0-0.143,0.002-0.221,0.007V4.244h0.975V3.983h-1.256v1.269c0.199-0.015,0.334-0.021,0.408-0.021
|
||||
c0.213,0,0.377,0.047,0.492,0.14s0.172,0.223,0.172,0.388c0,0.167-0.057,0.302-0.168,0.402c-0.113,0.102-0.262,0.152-0.445,0.152
|
||||
c-0.182,0-0.363-0.057-0.541-0.168v0.307c0.119,0.069,0.299,0.104,0.539,0.104c0.283,0,0.508-0.075,0.672-0.225
|
||||
c0.164-0.148,0.246-0.346,0.246-0.591C21.432,5.504,21.355,5.318,21.203,5.182z"/>
|
||||
<path fill="#A9BDC4" d="M16.049,3.94c0.219,0,0.394,0.057,0.524,0.17c0.131,0.112,0.197,0.258,0.197,0.434
|
||||
c0,0.333-0.174,0.547-0.522,0.643v0.007c0.188,0.018,0.336,0.082,0.447,0.191c0.11,0.11,0.165,0.247,0.165,0.412
|
||||
c0,0.228-0.083,0.41-0.251,0.55c-0.167,0.14-0.388,0.209-0.661,0.209c-0.247,0-0.443-0.045-0.589-0.136V6.107
|
||||
c0.177,0.137,0.378,0.205,0.601,0.205c0.182,0,0.326-0.044,0.435-0.133c0.107-0.088,0.162-0.207,0.162-0.356
|
||||
c0-0.33-0.241-0.496-0.723-0.496h-0.216V5.082h0.205c0.428,0,0.643-0.155,0.643-0.466c0-0.287-0.164-0.43-0.491-0.43
|
||||
c-0.182,0-0.354,0.061-0.516,0.182V4.085C15.626,3.989,15.823,3.94,16.049,3.94 M13.801,3.94c0.106,0,0.205,0.016,0.295,0.045
|
||||
c0.09,0.03,0.169,0.074,0.235,0.132s0.119,0.129,0.157,0.214c0.038,0.084,0.057,0.182,0.057,0.291c0,0.1-0.012,0.19-0.035,0.271
|
||||
c-0.024,0.081-0.06,0.158-0.107,0.229c-0.047,0.071-0.107,0.141-0.18,0.206c-0.073,0.066-0.158,0.133-0.256,0.201
|
||||
c-0.122,0.085-0.222,0.157-0.301,0.217c-0.079,0.061-0.142,0.116-0.188,0.169s-0.079,0.104-0.098,0.157
|
||||
c-0.019,0.052-0.028,0.112-0.028,0.181h1.293v0.26h-1.603V6.388c0-0.107,0.012-0.203,0.036-0.285
|
||||
c0.024-0.083,0.064-0.161,0.12-0.235s0.128-0.147,0.218-0.222s0.2-0.158,0.331-0.251c0.094-0.065,0.173-0.129,0.236-0.188
|
||||
c0.063-0.061,0.114-0.12,0.153-0.18c0.039-0.061,0.066-0.121,0.082-0.183c0.017-0.063,0.024-0.128,0.024-0.197
|
||||
c0-0.077-0.012-0.146-0.037-0.203c-0.024-0.058-0.059-0.105-0.102-0.144c-0.042-0.038-0.093-0.066-0.151-0.086
|
||||
c-0.058-0.019-0.121-0.027-0.188-0.027c-0.058,0-0.115,0.007-0.17,0.022c-0.055,0.016-0.109,0.036-0.162,0.063
|
||||
C13.38,4.3,13.329,4.332,13.28,4.369c-0.049,0.038-0.095,0.08-0.137,0.126V4.185c0.083-0.079,0.176-0.14,0.28-0.181
|
||||
C13.526,3.962,13.652,3.94,13.801,3.94 M21.313,3.983v0.261h-0.975v0.741c0.078-0.005,0.152-0.007,0.221-0.007
|
||||
c0.277,0,0.492,0.067,0.645,0.203c0.152,0.137,0.229,0.322,0.229,0.559c0,0.245-0.082,0.442-0.246,0.591
|
||||
c-0.164,0.149-0.389,0.225-0.672,0.225c-0.24,0-0.42-0.035-0.539-0.104V6.145c0.178,0.111,0.359,0.168,0.541,0.168
|
||||
c0.184,0,0.332-0.051,0.445-0.152c0.111-0.101,0.168-0.235,0.168-0.402c0-0.165-0.057-0.295-0.172-0.388s-0.279-0.14-0.492-0.14
|
||||
c-0.074,0-0.209,0.007-0.408,0.021V3.983H21.313 M19.229,3.983v0.092l-1.027,2.438h-0.309l0.973-2.27h-1.309V3.983H19.229
|
||||
M12.202,3.983v0.261h-0.976v0.741c0.08-0.005,0.153-0.007,0.221-0.007c0.277,0,0.492,0.067,0.645,0.203
|
||||
c0.152,0.137,0.228,0.322,0.228,0.559c0,0.245-0.082,0.442-0.245,0.591c-0.164,0.15-0.388,0.225-0.673,0.225
|
||||
c-0.24,0-0.42-0.035-0.538-0.104V6.145c0.178,0.111,0.358,0.168,0.542,0.168s0.332-0.051,0.444-0.152
|
||||
c0.112-0.101,0.168-0.235,0.168-0.402c0-0.165-0.057-0.295-0.172-0.388s-0.279-0.14-0.493-0.14c-0.073,0-0.208,0.007-0.408,0.021
|
||||
V3.983H12.202 M16.049,3.721c-0.265,0-0.5,0.059-0.701,0.174c-0.068,0.039-0.11,0.112-0.11,0.19v0.283
|
||||
c0,0.083,0.047,0.159,0.122,0.196c0.031,0.017,0.065,0.023,0.099,0.023c0.046,0,0.093-0.015,0.132-0.044
|
||||
c0.124-0.093,0.25-0.138,0.384-0.138c0.251,0,0.271,0.087,0.271,0.21c0,0.092,0,0.246-0.422,0.246h-0.205
|
||||
c-0.122,0-0.22,0.099-0.22,0.22v0.246c0,0.121,0.099,0.22,0.22,0.22h0.216c0.502,0,0.502,0.187,0.502,0.275
|
||||
c0,0.084-0.024,0.14-0.081,0.186c-0.067,0.055-0.166,0.083-0.295,0.083c-0.175,0-0.327-0.052-0.466-0.159
|
||||
c-0.04-0.03-0.087-0.046-0.134-0.046c-0.033,0-0.067,0.008-0.098,0.023c-0.075,0.037-0.123,0.113-0.123,0.197V6.42
|
||||
c0,0.076,0.04,0.146,0.104,0.188c0.181,0.111,0.417,0.169,0.705,0.169c0.325,0,0.596-0.088,0.803-0.261
|
||||
c0.219-0.183,0.331-0.425,0.331-0.719c0-0.225-0.078-0.416-0.231-0.568c-0.029-0.028-0.06-0.055-0.092-0.079
|
||||
c0.151-0.152,0.231-0.357,0.231-0.605c0-0.239-0.094-0.447-0.272-0.601C16.546,3.795,16.322,3.721,16.049,3.721L16.049,3.721z
|
||||
M13.801,3.721c-0.176,0-0.331,0.026-0.46,0.078c-0.128,0.052-0.245,0.128-0.348,0.226c-0.044,0.041-0.069,0.1-0.069,0.16v0.311
|
||||
c0,0.091,0.056,0.172,0.14,0.205c0.026,0.01,0.053,0.015,0.08,0.015c0.061,0,0.12-0.024,0.163-0.07
|
||||
c0.033-0.036,0.07-0.07,0.109-0.101c0.038-0.029,0.078-0.055,0.119-0.075c0.038-0.021,0.079-0.036,0.119-0.047
|
||||
c0.036-0.011,0.074-0.016,0.112-0.016c0.044,0,0.084,0.006,0.12,0.018c0.029,0.01,0.053,0.022,0.073,0.041
|
||||
c0.019,0.017,0.034,0.038,0.046,0.065c0.013,0.03,0.019,0.069,0.019,0.116c0,0.05-0.006,0.098-0.017,0.141
|
||||
c-0.01,0.039-0.029,0.079-0.055,0.119c-0.029,0.045-0.069,0.092-0.119,0.14c-0.055,0.052-0.126,0.108-0.211,0.168
|
||||
c-0.136,0.097-0.251,0.185-0.344,0.262c-0.103,0.084-0.189,0.172-0.254,0.26C12.95,5.83,12.898,5.933,12.867,6.04
|
||||
c-0.03,0.103-0.045,0.219-0.045,0.348v0.126c0,0.121,0.099,0.22,0.22,0.22h1.603c0.122,0,0.22-0.099,0.22-0.22v-0.26
|
||||
c0-0.122-0.099-0.221-0.22-0.221H13.67c0.034-0.033,0.077-0.07,0.129-0.11c0.076-0.058,0.175-0.129,0.294-0.211
|
||||
c0.105-0.073,0.198-0.147,0.278-0.22c0.085-0.077,0.158-0.161,0.215-0.247c0.06-0.09,0.105-0.188,0.135-0.29
|
||||
c0.029-0.101,0.044-0.213,0.044-0.333c0-0.141-0.025-0.269-0.076-0.382c-0.051-0.113-0.123-0.211-0.213-0.289
|
||||
c-0.088-0.077-0.193-0.136-0.311-0.175C14.053,3.739,13.93,3.721,13.801,3.721L13.801,3.721z M21.313,3.763h-1.256
|
||||
c-0.121,0-0.221,0.099-0.221,0.221v1.269c0,0.061,0.025,0.119,0.07,0.161c0.041,0.038,0.094,0.059,0.15,0.059
|
||||
c0.006,0,0.01,0,0.016,0c0.24-0.018,0.346-0.021,0.393-0.021c0.16,0,0.279,0.03,0.354,0.09c0.041,0.034,0.09,0.09,0.09,0.217
|
||||
c0,0.104-0.031,0.18-0.096,0.239c-0.07,0.063-0.168,0.095-0.297,0.095c-0.141,0-0.281-0.044-0.424-0.134
|
||||
c-0.035-0.022-0.076-0.034-0.117-0.034c-0.037,0-0.072,0.01-0.105,0.027c-0.07,0.039-0.115,0.113-0.115,0.193v0.307
|
||||
c0,0.078,0.043,0.151,0.109,0.19c0.154,0.091,0.367,0.135,0.65,0.135c0.34,0,0.615-0.095,0.82-0.282
|
||||
c0.211-0.192,0.318-0.445,0.318-0.754c0-0.301-0.102-0.544-0.303-0.723c-0.193-0.172-0.459-0.26-0.791-0.26c0,0,0,0-0.002,0V4.465
|
||||
h0.756c0.123,0,0.221-0.099,0.221-0.221V3.983C21.533,3.861,21.436,3.763,21.313,3.763L21.313,3.763z M19.229,3.763h-1.672
|
||||
c-0.123,0-0.221,0.099-0.221,0.221v0.261c0,0.122,0.098,0.221,0.221,0.221h0.975l-0.842,1.962
|
||||
c-0.029,0.067-0.021,0.146,0.02,0.208s0.109,0.099,0.184,0.099h0.309c0.088,0,0.168-0.053,0.203-0.135l1.027-2.438
|
||||
c0.012-0.026,0.018-0.056,0.018-0.085V3.983C19.449,3.861,19.352,3.763,19.229,3.763L19.229,3.763z M12.202,3.763h-1.257
|
||||
c-0.122,0-0.22,0.099-0.22,0.221v1.269c0,0.061,0.025,0.119,0.07,0.161c0.041,0.038,0.095,0.059,0.15,0.059
|
||||
c0.005,0,0.01,0,0.016,0c0.24-0.018,0.346-0.021,0.392-0.021c0.161,0,0.28,0.03,0.354,0.09c0.042,0.034,0.091,0.09,0.091,0.217
|
||||
c0,0.104-0.031,0.18-0.096,0.239c-0.071,0.063-0.168,0.095-0.296,0.095c-0.142,0-0.281-0.044-0.424-0.134
|
||||
c-0.036-0.022-0.076-0.034-0.117-0.034c-0.037,0-0.073,0.01-0.106,0.027c-0.07,0.039-0.114,0.113-0.114,0.193v0.307
|
||||
c0,0.078,0.042,0.151,0.109,0.19c0.154,0.091,0.366,0.135,0.649,0.135c0.34,0,0.617-0.095,0.821-0.282
|
||||
c0.21-0.192,0.317-0.445,0.317-0.754c0-0.301-0.102-0.544-0.302-0.723c-0.193-0.172-0.459-0.26-0.792-0.26c0,0,0,0-0.001,0V4.465
|
||||
h0.756c0.122,0,0.221-0.099,0.221-0.221V3.983C12.423,3.861,12.324,3.763,12.202,3.763L12.202,3.763z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 211 KiB After Width: | Height: | Size: 209 KiB |
|
Before Width: | Height: | Size: 214 KiB After Width: | Height: | Size: 212 KiB |
@@ -1,435 +1,435 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<path fill="#30302F" d="M31.361,13.876L31.361,13.876c-0.036-0.042-0.079-0.078-0.129-0.107c-0.25-0.145-0.521-0.223-0.824-0.239
|
||||
c-0.169-0.439-0.139-0.992-0.106-1.583c0.024-0.42,0.051-0.896-0.007-1.356c-0.017-0.122-0.076-0.233-0.17-0.314
|
||||
c-0.342-0.294-0.755-0.365-1.131-0.194c-0.159,0.073-0.294,0.182-0.407,0.306c-0.021-0.068-0.039-0.135-0.056-0.198
|
||||
c0.344-0.092,0.65-0.267,0.914-0.52c0.666-0.641,0.927-1.688,0.633-2.547c-0.255-0.741-0.867-1.243-1.694-1.405
|
||||
c0.118-0.129,0.246-0.298,0.264-0.529c0.012-0.142-0.039-0.283-0.138-0.385c-0.1-0.104-0.263-0.167-0.378-0.153
|
||||
c-0.393,0.014-0.798,0.154-1.173,0.4c0-0.012,0-0.023,0-0.035c-0.003-0.403-0.006-0.819,0.159-1.131
|
||||
c0.136-0.426-0.014-0.657-0.162-0.774c-0.097-0.077-0.359-0.229-0.747-0.001c-0.401,0.239-1.059,0.982-1.477,1.88
|
||||
c0-0.004-0.001-0.009-0.001-0.014c-0.108-0.498-0.562-0.607-0.78-0.66c-0.037-0.009-0.149-0.036-0.167-0.046
|
||||
c-0.001-0.002-0.006-0.012-0.021-0.072c-0.308-0.837-1.066-0.797-1.521-0.773c-0.339,0.013-0.506,0.007-0.577-0.077
|
||||
c-0.023-0.028-0.051-0.053-0.081-0.075c-0.001-0.014-0.003-0.027-0.007-0.042c-0.137-0.648-0.52-1.2-1.023-1.474
|
||||
c-0.417-0.23-0.884-0.257-1.348-0.08c-0.166,0.063-0.283,0.208-0.314,0.376C18.579,1.967,18.215,1.947,17.811,2
|
||||
c-0.135,0.018-0.258,0.091-0.336,0.198c-0.066,0.089-0.101,0.199-0.099,0.311c-0.143-0.024-0.287-0.031-0.432-0.021
|
||||
c-0.169-0.503-0.593-0.912-1.12-1.074c-0.489-0.149-0.994-0.063-1.337,0.223c-0.209,0.14-0.33,0.311-0.403,0.469
|
||||
c-0.065-0.03-0.138-0.058-0.22-0.083c-0.729-0.132-1.096,0.148-1.274,0.405c-0.075,0.108-0.119,0.225-0.146,0.33
|
||||
c-0.08-0.001-0.187-0.005-0.322-0.013c-0.459-0.022-1.126-0.054-1.473,0.326c-0.055-0.013-0.109-0.016-0.166-0.01
|
||||
c-0.674,0.08-1.319,0.347-1.895,0.795C8.572,3.812,8.55,3.772,8.523,3.734C7.958,2.957,7.321,3.118,7.14,3.186
|
||||
C6.576,3.399,6.201,4.095,6.267,4.804c0.008,0.09,0.026,0.177,0.053,0.265C5.851,5.111,5.48,5.487,5.399,6.021
|
||||
C5.346,6.366,5.437,6.691,5.64,6.918C5.4,7.195,5.416,7.462,5.484,7.653C5.39,7.745,5.292,7.845,5.2,7.952
|
||||
C4.829,7.803,4.344,8.001,4.155,8.38C4.087,8.516,4.01,8.767,4.146,9.077C3.998,9.148,3.869,9.259,3.767,9.406
|
||||
c-0.285,0.409-0.328,1.018-0.221,1.422c0.134,0.392,0.463,0.549,0.688,0.626c-0.002,0-0.004,0-0.006,0
|
||||
c-0.525,0-1.048,0.489-1.377,0.974c-0.155,0.229-0.48,0.784-0.35,1.278c-0.009,0.014-0.018,0.028-0.025,0.045
|
||||
c-0.478,1.008-0.354,1.956-0.243,2.811c0.005,0.038,0.01,0.076,0.015,0.114c-0.095-0.042-0.196-0.073-0.304-0.091
|
||||
c-0.559-0.092-1.121,0.174-1.399,0.659c-0.271,0.522-0.246,1.104,0.067,1.597c0.354,0.557,0.998,0.903,1.68,0.903l0.075-0.001
|
||||
c0.324-0.01,0.606-0.082,0.845-0.214c0.065,0.531,0.307,0.9,0.689,1.038c-0.036,0.361,0.179,0.739,0.32,0.986l0.038,0.065
|
||||
c0.021,0.036,0.041,0.065,0.036,0.048c0.039,0.171,0.122,0.317,0.243,0.428C4.41,22.275,4.335,22.49,4.328,22.7
|
||||
c-0.007,0.199,0.047,0.872,1.085,1.138l0.066,0.001c0.163,0,0.326-0.031,0.481-0.092c0.059,0.116,0.148,0.218,0.267,0.306
|
||||
c0,0.001,0.001,0.001,0.001,0.001c-0.028,0.299,0.045,0.58,0.213,0.836l0.056,0.141c0.114,0.292,0.314,0.807,0.695,1.008
|
||||
c0.01,0.075,0.036,0.148,0.079,0.213c0.38,0.575,0.918,1.036,1.568,1.343c-0.203,0.239-0.314,0.568-0.285,0.894
|
||||
c0.042,0.462,0.398,0.979,1.293,1.047c0.754-0.013,1.438-0.64,1.563-1.461c0.23,0.496,0.76,0.881,1.666,1.211
|
||||
c0.054,0.02,0.111,0.029,0.17,0.029s0.17-0.021,0.216-0.036c0.146-0.049,0.26-0.162,0.312-0.304c0.29,0.212,0.69,0.236,1.001,0.255
|
||||
c0.083,0.005,0.254,0.015,0.329,0.035c0.086,0.021,0.174,0.021,0.252,0.001c0.002-0.001,0.004-0.001,0.006-0.002
|
||||
c0.039,0.12,0.094,0.231,0.162,0.325c0.167,0.229,0.415,0.365,0.663,0.365c0.032,0,0.063-0.003,0.054-0.006
|
||||
c0.457,0.037,0.87-0.175,1.118-0.566c0.228-0.359,0.268-0.825,0.114-1.225c0.007-0.002,0.014-0.003,0.021-0.005
|
||||
c0.35,0.96,1.188,1.027,2.073,1.099l0.252,0.018c0.343-0.012,0.523-0.167,0.615-0.295c0.202-0.286,0.111-0.626,0.035-0.863
|
||||
c0.047-0.013,0.092-0.033,0.134-0.06c-0.01,0.062-0.014,0.125-0.012,0.19c0.017,0.486,0.359,0.934,0.796,1.04
|
||||
c0.076,0.019,0.163,0.02,0.225,0.003c1.012-0.215,1.238-0.758,1.283-1.063c0.074-0.506-0.243-1.034-0.812-1.346
|
||||
c-0.003-0.001-0.005-0.003-0.008-0.004c0.196-0.101,0.398-0.208,0.604-0.326c0.127,0.059,0.256,0.076,0.373,0.064
|
||||
c0.264-0.012,0.493-0.145,0.652-0.372c0.03,0.014,0.062,0.026,0.095,0.037c0.107,0.035,0.217,0.033,0.325-0.006
|
||||
c1.211-0.44,1.671-0.776,1.762-1.284c0.036-0.206-0.016-0.383-0.085-0.523c0.257-0.248,0.415-0.594,0.565-0.934
|
||||
c0.238,0.323,0.653,0.438,1.115,0.304c0.394-0.112,0.729-0.463,0.853-0.894c0.115-0.401,0.031-0.796-0.229-1.082
|
||||
c-0.042-0.047-0.094-0.086-0.156-0.117l-0.113-0.055c0.073-0.116,0.143-0.252,0.177-0.414c0.003-0.016,0.005-0.03,0.006-0.044
|
||||
c0.646-0.297,1.117-0.976,1.437-1.437c0.12-0.176,0.116-0.41-0.011-0.582c-0.024-0.033-0.05-0.062-0.075-0.086
|
||||
c0.384-0.654,0.325-1.374,0.274-1.961c0.102,0.029,0.2,0.036,0.276,0.021c0.486-0.001,0.886-0.295,1.044-0.766
|
||||
c0.059-0.174,0.079-0.359,0.063-0.545c0.277-0.073,0.492-0.266,0.602-0.544C31.821,14.836,31.644,14.205,31.361,13.876z
|
||||
M21.716,21.769c-0.169-0.178-0.444-0.208-0.64-0.074c-0.079,0.053-0.267,0.176-0.301,0.424c-0.024,0.182,0.043,0.314,0.112,0.41
|
||||
c-0.09,0.06-0.182,0.115-0.273,0.172c-0.096,0.058-0.19,0.116-0.283,0.177c-0.036,0.023-0.069,0.053-0.098,0.086
|
||||
c-0.472-0.057-0.974,0.199-1.382,0.413c-0.28,0.146-0.597,0.312-0.782,0.315c-0.111-0.179-0.3-0.407-0.646-0.362
|
||||
c-0.174,0.03-0.374,0.16-0.44,0.434c-0.194,0.03-0.39,0.057-0.586,0.08c-0.051,0.006-0.1,0.021-0.147,0.045
|
||||
c-0.341-0.176-0.89-0.234-1.778-0.279l-0.076-0.004c-0.118-0.006-0.271-0.014-0.389-0.022c-0.007-0.093-0.031-0.179-0.074-0.258
|
||||
c-0.056-0.104-0.194-0.285-0.485-0.332c-0.194-0.035-0.387,0.046-0.501,0.217c-0.003,0.004-0.006,0.009-0.009,0.014
|
||||
c-0.139-0.028-0.268-0.069-0.384-0.123c0.004-0.114-0.031-0.228-0.101-0.318c-0.306-0.406-0.801-0.707-1.303-1.013
|
||||
c-0.23-0.141-0.45-0.274-0.619-0.403c0.009-0.057,0.008-0.113-0.003-0.167c-0.069-0.333-0.305-0.447-0.42-0.484
|
||||
c0.375-0.09,0.648-0.332,0.757-0.687c0.138-0.451-0.05-0.986-0.438-1.245c-0.202-0.136-0.432-0.184-0.66-0.153
|
||||
c0.473-0.171,0.644-0.479,0.705-0.676c0.13-0.42-0.048-0.904-0.445-1.205c-0.292-0.222-0.64-0.299-0.969-0.225
|
||||
C9.013,16.068,9.004,15.563,9,15.298c0-0.054-0.001-0.103-0.002-0.151c0.753-0.016,1.096-0.425,1.172-0.827
|
||||
c0.039,0.009,0.08,0.016,0.123,0.022c0.529-0.002,0.951-0.306,1.1-0.793c0.176-0.575-0.042-1.248-0.508-1.566
|
||||
c-0.095-0.065-0.296-0.175-0.565-0.178c0.09-0.109,0.214-0.215,0.386-0.301c0.155,0.172,0.428,0.214,0.632,0.091
|
||||
c0.02-0.012,0.039-0.025,0.059-0.04l0.004,0.004l0.089-0.079c0.012-0.011,0.024-0.021,0.036-0.032l0.018-0.016
|
||||
c0.121,0.039,0.243,0.058,0.377,0.058c0,0,0,0,0.001,0c0.267-0.009,0.832-0.18,1.159-0.51c0.011,0.003,0.022,0.006,0.033,0.009
|
||||
c0.443,0.093,0.945-0.227,1.177-0.546c0.269-0.37,0.15-0.668,0.087-0.78c-0.088-0.153-0.223-0.254-0.396-0.301
|
||||
c0.21-0.115,0.426-0.22,0.646-0.315c0.199,0.255,0.491,0.355,0.759,0.27c0.041-0.014,0.08-0.033,0.117-0.057
|
||||
c0.066-0.044,0.122-0.095,0.166-0.152c0.341,0.191,0.7,0.273,1.072,0.274c-0.331,0.296-0.587,0.641-0.728,0.992
|
||||
c-0.133,0.184-0.122,0.447,0.026,0.624c0.09,0.108,0.227,0.171,0.347,0.171c0.002,0,0.005,0,0.007,0l0.128-0.005
|
||||
c0.12-0.018,0.231-0.07,0.332-0.118c0.251-0.119,0.737-0.34,1.229-0.307c-0.122,0.113-0.225,0.23-0.307,0.349
|
||||
c-0.3,0.431-0.407,0.91-0.313,1.384c0.036,0.178,0.165,0.323,0.341,0.38c0.174,0.051,0.364,0.009,0.494-0.116
|
||||
c0.368-0.351,0.849-0.565,1.351-0.61c-0.042,0.183-0.04,0.359,0.003,0.517c0.012,0.155,0.1,0.299,0.235,0.385
|
||||
c0.206,0.132,0.513,0.076,0.664-0.12c0.287-0.367,0.742-0.608,1.18-0.615c0.328,0,0.625,0.148,0.858,0.428
|
||||
c0,0.001,0.001,0.002,0.002,0.002c-0.051,0.311,0.048,0.581,0.194,0.81c-0.232,0.038-0.436,0.139-0.585,0.298
|
||||
c-0.166,0.176-0.408,0.57-0.165,1.238c0.025,0.067,0.063,0.127,0.114,0.179c0.535,0.536,1.064,0.443,1.356,0.201
|
||||
c0.018-0.015,0.035-0.031,0.052-0.047c0.044,0.091,0.067,0.163,0.071,0.206c0.001,0.012,0.003,0.024,0.005,0.036
|
||||
c-0.085,0.087-0.149,0.185-0.193,0.292l-0.025,0.073c-0.046,0.182-0.054,0.366-0.024,0.563c-0.089-0.019-0.174-0.023-0.252-0.017
|
||||
c-0.261,0.012-0.748,0.138-1.088,0.869c-0.139,0.426-0.039,0.833,0.273,1.117c0.316,0.285,0.799,0.372,1.177,0.21
|
||||
c0.005-0.002,0.009-0.004,0.014-0.006c-0.006,0.021-0.01,0.043-0.012,0.065c-0.061,0.062-0.105,0.14-0.127,0.22
|
||||
c-0.038,0.127-0.021,0.267,0.042,0.38c0.034,0.063,0.081,0.116,0.143,0.16c-0.045,0.12-0.101,0.239-0.166,0.356
|
||||
c-0.012,0.022-0.021,0.044-0.026,0.065c-0.005,0.002-0.009,0.004-0.014,0.007c-0.486,0.271-0.787,0.709-1.078,1.134
|
||||
c-0.172,0.251-0.337,0.49-0.523,0.674C21.738,21.793,21.727,21.78,21.716,21.769z"/>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="16.0335" y1="5.4208" x2="16.0335" y2="27.5461">
|
||||
<stop offset="0" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.2318" style="stop-color:#D6BE77"/>
|
||||
<stop offset="0.3855" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.6006" style="stop-color:#A5935C"/>
|
||||
<stop offset="0.7402" style="stop-color:#423B27"/>
|
||||
<stop offset="0.7667" style="stop-color:#48402A"/>
|
||||
<stop offset="0.8025" style="stop-color:#595033"/>
|
||||
<stop offset="0.8435" style="stop-color:#766943"/>
|
||||
<stop offset="0.8882" style="stop-color:#9D8C58"/>
|
||||
<stop offset="0.8966" style="stop-color:#A5935C"/>
|
||||
<stop offset="1" style="stop-color:#A8A66A"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_1_)" d="M14.463,8.571c-0.606,0.253-1.219,0.552-1.714,0.986c-0.111-0.159-0.289-0.287-0.483-0.348
|
||||
c0.532-0.356,1.193-0.517,1.579-1.058c0.059-0.083,0.213-0.329,0.176-0.403c-0.461-0.925-0.783-1.969-1.226-2.922
|
||||
c0.099,0.015,0.293-0.165,0.373,0.012c0.306,0.944,0.662,1.91,1.058,2.871C14.226,7.709,14.514,8.55,14.463,8.571z M12.812,10.386
|
||||
c-0.173-0.435-0.441-1.081-0.956-0.861c-0.608,0.481,0.081,1.285,0.234,0.696c-0.005-0.114-0.273-0.081-0.244-0.241
|
||||
c0.291-0.546,0.843,0.42,0.344,0.662c-0.565,0.36-1.109-0.479-0.809-0.959c0.427-0.972,1.869-1,2.29-1.944l-0.227-0.548
|
||||
c-0.45,1.086-2.05,1.367-2.628,2.306c0.167,0.156,0.08,0.434-0.128,0.525c0.341,0.42,0.724,0.976,1.216,0.971
|
||||
C12.14,10.983,12.911,10.706,12.812,10.386z M13.214,10.5c0.53,0.176,1.257-0.853,0.457-0.773c-0.091-0.03-0.279,0.209-0.135,0.204
|
||||
c0.154-0.111,0.344,0.145,0.175,0.252c-0.339,0.243-0.75-0.259-0.436-0.541l-0.042-0.077c-0.12,0.081-0.232,0.173-0.336,0.263
|
||||
c0.077,0.188,0.211,0.405,0.233,0.61C13.17,10.478,13.125,10.498,13.214,10.5z M12.578,26.658c0.315-0.781,0.431-1.647,0.729-2.434
|
||||
c0.029-0.212,0.404-0.684,0.058-0.74c-0.266,0.402-0.294,1.026-0.444,1.489C12.873,25.531,12.439,26.114,12.578,26.658z
|
||||
M12.054,23.083c-0.406-0.537-1.357-0.935-1.896-1.376c-0.177,0.193-0.632,0.614-0.886,0.852c0.633,0.67,1.263,1.12,2.052,1.239
|
||||
C11.787,23.874,12.025,23.258,12.054,23.083z M12.841,27.639c0.092,0.015,0.109-0.037,0.129-0.147
|
||||
c0.181-0.65,0.167-1.398,0.603-1.946c-0.107-0.027-0.213-0.056-0.319-0.088c-0.201,0.404-0.155,1.563-0.74,1.507
|
||||
C12.462,27.36,12.323,27.604,12.841,27.639z M8.128,21.69c-0.039,0.07-0.087,0.135-0.144,0.193l0.146,0.178
|
||||
C8.166,21.948,8.143,21.814,8.128,21.69z M16.157,24.414c-0.204-0.342-2.105-0.271-2.454-0.37c-0.095,0.25-0.335,0.964-0.368,1.119
|
||||
c0.712,0.203,1.183,0.276,1.898,0.276C16.118,25.48,16.393,25.293,16.157,24.414z M8.421,20.497
|
||||
c0.044,0.001,0.069-0.008,0.082-0.004l0.011-0.018c0.192-0.032,0.48-0.157,0.54-0.371c-0.424-0.683-0.871-1.374-1.139-2.152
|
||||
c-0.137,0.039-1.045,0.29-1.114,0.309C6.873,18.934,7.583,20.319,8.421,20.497z M7.936,22.307L7.725,22.05
|
||||
c-0.126,0.05-0.279,0.067-0.416,0.044c-0.06,0.027-0.175,0.042-0.206,0.044c-0.046,0.19-0.153,0.358-0.256,0.504
|
||||
c0.082,0.106,0.178,0.202,0.251,0.316C7.331,22.761,7.659,22.523,7.936,22.307z M7.381,16.293c0.238-0.004,0.486-0.015,0.439-0.371
|
||||
c-0.053-0.862-0.059-1.672,0.1-2.404c-0.207-0.039-0.911-0.159-1.127-0.195C6.646,14.142,6.29,16.172,7.381,16.293z M7.208,16.586
|
||||
c0.009,0.241,0.036,0.479,0.08,0.712c0.175-0.052,0.36-0.104,0.537-0.154l-0.097-0.581C7.556,16.6,7.379,16.61,7.208,16.586z
|
||||
M8.513,22.081L8.46,22.017c-0.008,0.064-0.026,0.126-0.054,0.188C8.442,22.164,8.478,22.123,8.513,22.081z M8.976,21.569
|
||||
c-0.133-0.144-0.521-0.571-0.159-0.654c0.193,0.039,0.211,0.331,0.369,0.433c0.1-0.106,0.203-0.213,0.315-0.311L9.104,20.55
|
||||
c-0.009,0.002-0.02,0.003-0.033,0.003c-0.626,0.472-1.202,0.16-1.655-0.362c0.278,0.394,0.661,0.939,1.303,1.66
|
||||
C8.799,21.759,8.883,21.669,8.976,21.569z M9.134,21.346l-0.037,0.032v0.001L9.134,21.346z M22.36,6.95
|
||||
c-0.097,0.211-0.168,0.448-0.298,0.573c0.142,0.118,0.256,0.252,0.409,0.388C22.665,7.588,22.565,7.069,22.36,6.95z M6.493,6.91
|
||||
C6.255,7.05,5.83,7.259,5.96,7.506c0.311,0.49,0.968,0.659,1.398,1.036c1.687,1.04-0.338,2.666-0.288,4.124
|
||||
c0.072,0.014,0.328,0.068,0.328,0.068c0.03-0.212,0.057-0.432,0.154-0.624c-0.554-1.33,1.983-2.572,0.424-3.495
|
||||
c-0.729-0.618-2.51-1.386-0.475-1.732c0.633,0.106,1.314,1.091,1.837,1.452c0.03-0.037,0.061-0.073,0.092-0.109
|
||||
C8.42,7.708,7.797,5.816,6.493,6.91z M23.268,7.222c-0.119,0.337-0.348,0.607-0.598,0.85c0.247,0.129,0.48,0.233,0.771,0.27
|
||||
C23.527,7.969,23.458,7.566,23.268,7.222z M22.106,6.533c0.01-0.044,0.017-0.098,0.011-0.143c-0.225-0.004-0.45-0.007-0.674-0.011
|
||||
C21.374,6.837,22.025,6.923,22.106,6.533z M21.431,6.957c-0.065,0.054-0.095,0.185-0.123,0.321c0.102,0.051,0.567,0.171,0.567,0.171
|
||||
C22.09,6.98,21.715,6.718,21.431,6.957z M22.936,7.204c0.111-0.148,0.29-0.452,0.27-0.857c-0.21-0.003-0.421-0.006-0.631-0.008
|
||||
C22.674,6.492,22.743,7.359,22.936,7.204z M23.913,7.221c0.156-0.234,0.182-0.538,0.18-0.811c-0.188-0.01-0.369-0.01-0.555-0.012
|
||||
c0.149,0.309,0.22,0.691,0.215,1.034C23.815,7.385,23.871,7.284,23.913,7.221z M24.495,6.058c-0.243,0.018-1.021,0.016-2.165,0.016
|
||||
c-1.244,0-1.881-0.074-1.969,0.109c-0.147,0.305-0.304,0.853-0.604,0.981c-0.3,0.128-1.801-0.016-2.139-0.027
|
||||
C17.376,7.13,17.518,6.804,17.09,6.78s-0.445,0.221-0.456,0.358c-0.011,0.125,0.055,0.42,0.419,0.45
|
||||
c0.336,0.028,0.287-0.225,0.658-0.216c0.371,0.009,1.619,0.155,1.925,0.159c0.213,0.003,1.363,0.04,1.786,0.225
|
||||
c0.373,0.163,0.426,0.315,0.797,0.537c0.36,0.215,0.878,0.575,2.057,0.561c-0.013-0.041-0.021-0.081-0.038-0.121
|
||||
c-0.866,0.115-1.652-0.241-2.213-0.893c-0.431-0.555-2.058-0.155-1.8-0.848c0.353-0.669,0.192-0.961,1.148-0.839
|
||||
C21.818,6.061,24.447,6.398,24.495,6.058z M23.949,7.531c-0.112,0.448-0.146,0.748-0.209,0.921c0.15,0.018,0.33,0.025,0.454,0.043
|
||||
c0,0,0.091-0.216,0.092-0.216C24.377,8.033,24.198,7.697,23.949,7.531z M20.906,4.343c0.368,0.376,0.444,1.082,0.192,1.456
|
||||
c-0.104,0-0.13,0.003-0.233,0.001c0-0.001-0.026-0.001-0.026-0.002C20.752,5.808,20.572,5.8,20.441,5.8
|
||||
c-0.05,0.007-0.257,0.012-0.377,0.114c-0.048,0.034-0.103,0.138-0.1,0.138c-0.044,0.082-0.067,0.142-0.084,0.24
|
||||
c-1.125-0.27-1.18-1.631-0.385-2.108c0.053-0.032,0.481-0.134,0.852-0.01C20.551,4.242,20.743,4.288,20.906,4.343z M20.645,5.192
|
||||
c0-0.294-0.238-0.533-0.533-0.533c-0.294,0-0.533,0.238-0.533,0.533c0,0.294,0.238,0.533,0.533,0.533S20.646,5.486,20.645,5.192z
|
||||
M15.609,2.983c-0.072-0.071-0.161,0.044-0.152,0.12c0.042,0.151,0.294,0.098,0.416,0.103c0.517-0.415-0.702-1.17-0.956-0.381
|
||||
c-0.183,0.568,0.268,0.677,1.165,0.901s1.118,2.062,2.592,0.787c-0.119-0.052-0.195-0.165-0.258-0.28
|
||||
c-0.172,0.116-0.615,0.368-0.662,0.331c-0.795,0.062-0.752-1.336-1.925-1.141c-0.997,0.151-0.487-1.114-0.05-0.532
|
||||
C15.783,2.977,15.685,3.058,15.609,2.983z M24.701,8.616c0.081,0.256,0.141,0.554-0.09,0.752c-0.004,0.003-0.008,0.004-0.011,0.007
|
||||
c0.704,0.601,1.316,1.307,1.763,2.109c0.162,0.291,0.245,0.218,0.165-0.114c-0.033-0.136-0.011-0.335-0.051-0.462
|
||||
C26.196,10.012,25.711,9.326,24.701,8.616z M24.791,10.859c0.307-0.075,0.591,0.015,0.841,0.178c0.177,0.116,0.217,0.01,0.072-0.185
|
||||
c-0.378-0.506-0.826-0.96-1.308-1.371c-0.189,0.093-0.234,0.374-0.299,0.55C24.372,10.267,24.624,10.54,24.791,10.859z
|
||||
M26.654,10.262c-0.016-0.182-0.024-0.365-0.029-0.547c-0.188-0.1-0.367-0.216-0.54-0.345c0.012,0.101,0.036,0.202,0.041,0.303
|
||||
c0.147,0.187,0.278,0.386,0.388,0.596C26.59,10.415,26.668,10.414,26.654,10.262z M17.341,8.741
|
||||
c3.163-0.959,1.529,0.828,2.879,1.292c-0.306-0.512-0.362-1.342-0.772-1.749c-0.771-0.175-1.528-0.127-2.221,0.257
|
||||
c-2.432,0.407-2.673-3.595-0.029-2.867c0.581,0.327,1.151,0.469,1.824,0.433c-0.262-0.301-0.443-0.717-0.413-1.12
|
||||
c0.004-0.053-0.076-0.076-0.128-0.037c-0.1,0.076-0.205,0.143-0.327,0.182c-0.029,0.159,0.313,0.625-0.042,0.522
|
||||
c-0.803-0.805-1.764-0.636-2.715,0.147C14.101,7.098,15.596,9.485,17.341,8.741z M18.501,10.312
|
||||
c0.148,0.044,0.296,0.087,0.433,0.156c0.269-0.171,0.673-0.068,0.365-0.474c-0.13-0.299-0.144-0.898-0.518-1.007
|
||||
c-0.98,0.034-2.002,0.743-2.351,1.666c-0.006,0.005-0.012,0.01-0.018,0.015c0.003,0.003,0.005,0.006,0.008,0.008
|
||||
c0.006-0.004,0.013-0.007,0.019-0.011C16.495,10.726,17.474,10.004,18.501,10.312z M18.972,28.031
|
||||
c0.198,0.042-0.026-0.391-0.224-0.936c-0.055-0.15-0.095-0.117-0.116,0.034c-0.022,0.155-0.086,0.286-0.217,0.375
|
||||
C18.45,27.894,18.589,28.028,18.972,28.031z M17.256,24.834c-0.042-0.152-0.066-0.445-0.129-0.588
|
||||
c-0.222,0.036-0.446,0.066-0.669,0.093c0.065,0.159,0.091,0.297,0.083,0.436c0,0.02-0.001,0.04-0.002,0.061L17.256,24.834z
|
||||
M18.517,26.098c-0.006-0.222,0.035-0.427,0.153-0.594c-0.105,0.031-0.21,0.063-0.315,0.088c0.007,0.137,0.057,0.321,0.114,0.522
|
||||
C18.498,26.217,18.52,26.207,18.517,26.098z M20.502,23.638c-0.576-0.636-1.681,0.57-2.456,0.554
|
||||
c0.051,0.234,0.196,0.894,0.242,1.102C19.032,24.974,21.086,24.882,20.502,23.638z M10.039,21.301
|
||||
c-0.148-0.706-2.152,2.069-2.442,2.367c0.011,0.025,0.015,0.053,0.018,0.08C8.353,22.892,9.392,22.207,10.039,21.301z M7.414,21.8
|
||||
c0.253-0.004,0.491-0.174,0.503-0.448c-0.636-0.586-1.087-2.191-2.141-1.532C6.247,20.533,6.592,21.532,7.414,21.8z M5.384,19.996
|
||||
c0.233,0.797,1.148,1.418,1.348,2.253c0.3-0.597-0.977-1.422-1.235-2.302C5.459,19.963,5.421,19.98,5.384,19.996z M7.413,24.048
|
||||
c-0.029,0.212,0.02,0.417,0.136,0.569c0.505-0.583,0.896-1.447,1.692-1.645c-0.065-0.066-0.129-0.133-0.19-0.202
|
||||
C8.514,23.113,8.073,24.107,7.413,24.048z M27.674,20.378c1.198-1.046-1.476-0.614-1.735-1.284c-0.02,0.058-0.097,0.26-0.097,0.26
|
||||
c0.43,0.219,1.909,0.25,1.596,0.959C27.515,20.341,27.6,20.379,27.674,20.378z M28.501,11.87c0.084,0.654,0.241,1.353,0.479,2.138
|
||||
c0.177-0.044,0.783-0.185,0.991-0.225c-0.398-0.919-0.041-2.091-0.172-3.128C29.097,10.049,28.498,11.257,28.501,11.87z
|
||||
M22.931,23.414c0.259,0.457,1.265,1.022,0.82,1.589c0.065,0.069,0.164,0.108,0.273,0.108c1.035-0.29-0.998-1.308-0.823-1.97
|
||||
C23.115,23.233,23.021,23.325,22.931,23.414z M23.853,19.33c1.079,0.306,2.07,0.57,3.128,0.892c0.888-0.196-2.862-0.938-3.12-1.07
|
||||
L23.853,19.33z M25.45,20.694c0.086,0.036,0.175,0.072,0.26,0.109l0.144-0.238C25.693,20.521,25.481,20.511,25.45,20.694z
|
||||
M26.316,21.518c0.276-0.108,0.689,0.027,0.942,0.124c0.102-0.149,0.23-0.303,0.268-0.478c-0.603-0.14-0.144-0.025-1.377-0.494
|
||||
l-0.179,0.296C26.069,21.055,26.289,21.254,26.316,21.518z M25.318,20.965c-0.185,0.35-0.443,0.765-0.786,1.19
|
||||
c-0.508,0.548-0.634,0.879,0.21,1.463C25.166,22.838,26.913,21.436,25.318,20.965z M3.887,13.157
|
||||
c0.829,0.252,1.746,0.062,2.549,0.349c0.014-0.061,0.054-0.231,0.054-0.231c-0.467-0.203-2.109,0.102-1.767-0.737
|
||||
C4.313,12.359,4.033,12.84,3.887,13.157z M7.762,7.316c-0.263-0.272-0.605-0.01-0.896,0.093c0.663,0.565,1.379,0.985,1.935,1.696
|
||||
c0.045-0.058,0.091-0.119,0.145-0.17C8.67,8.587,7.098,7.567,7.762,7.316z M7.698,12.796c0.085,0.017,0.459,0.092,0.459,0.092
|
||||
l0.04-0.292c-0.154-0.035-0.279-0.107-0.42-0.218C7.739,12.521,7.716,12.666,7.698,12.796z M8.62,11.986
|
||||
c0.351-0.881,0.779-1.608,1.306-2.22C9.843,9.691,9.733,9.585,9.643,9.507L9.64,9.51C9.51,9.403,9.32,9.227,9.183,9.122
|
||||
c-0.401,0.661-2.248,2.726-0.893,3.176C8.454,12.298,8.561,12.122,8.62,11.986z M10.13,10.527c-0.079-0.076-0.166-0.145-0.251-0.212
|
||||
c-0.614,0.629-0.727,1.735-1.374,2.248c-0.005,0.145-0.042,0.29-0.055,0.435c0.193,0.119,0.156,0.436-0.053,0.517
|
||||
c0.026,0.437,0.11,0.954,0.498,1.131c1.565,0.047,0.371-1.809,0.098-0.96c-0.13,0.289,0.218,0.513,0.267,0.251
|
||||
c-0.154-0.058-0.087-0.297,0.064-0.292c0.241,0.026,0.351,0.37,0.181,0.543c-0.463,0.371-0.866-0.084-0.826-0.766
|
||||
C8.77,12.233,9.31,11.156,10.13,10.527z M11.218,11.051c-0.324-0.275-0.586-0.613-0.849-0.938c-0.084-0.011-0.163-0.073-0.223-0.132
|
||||
c-0.027,0.032-0.054,0.064-0.081,0.097c0.408,0.289,0.702,0.707,1.011,1.091C11.125,11.139,11.172,11.092,11.218,11.051z
|
||||
M9.761,20.253c1.163,0.007,0.574-1.65-0.257-0.967c0.025,0.176,0.421,0.601,0.483,0.23c-0.007-0.03-0.026-0.03-0.049-0.028
|
||||
c-0.275,0.081-0.257-0.356,0.015-0.312c1.035,0.288-0.514,1.93-1.019-0.634c-0.177-0.03-0.342-0.124-0.498-0.287
|
||||
c-0.05-0.052-0.092-0.017-0.057,0.063c0.247,0.573,0.703,1.152,0.976,1.766C9.479,20.223,9.644,20.253,9.761,20.253z M8.12,17.063
|
||||
c0.475-0.151,0.792,0.435,0.324,0.706c0.208,0.327,0.419,0.486,0.644,0.486c1.713-0.081,0.674-1.674-0.13-1.154
|
||||
c0.041,0.264,0.251,0.617,0.46,0.406c0.016-0.017-0.003-0.039-0.029-0.041c-0.129-0.006-0.233-0.195-0.087-0.277
|
||||
c0.282-0.181,0.591,0.186,0.407,0.447c-1.382,1.093-1.16-2.042-1.228-2.91c-0.161-0.214-0.276-0.46-0.337-0.715
|
||||
C7.945,14.792,8.3,15.662,8.01,16.405L8.12,17.063z M9.857,12.493c-0.331,0.83,0.471,0.65,0.5,0.482
|
||||
c0.006-0.033-0.078-0.029-0.101-0.01c-0.119,0.094-0.336-0.079-0.26-0.211c0.142-0.338,0.761-0.171,0.667,0.219
|
||||
c-0.855,1.543-1.9-1.159-0.098-1.955c-0.072-0.09-0.146-0.18-0.223-0.267c-0.687,0.506-1.171,1.391-1.338,2.445
|
||||
c0.294-0.11,0.649,0.066,0.794,0.334c0.167,0.09,0.3,0.282,0.492,0.313C11.478,13.838,10.899,11.666,9.857,12.493z M9.846,7.641
|
||||
c0.644-0.154,1.137-0.734,1.707-1.081c0.364-0.263,0.084-0.686-0.069-0.978C10.994,5.961,8.502,7.038,9.846,7.641z M7.999,7.536
|
||||
C7.95,7.578,7.896,7.598,7.841,7.621C8.66,8.393,9.64,8.999,10.409,9.814c0.053-0.04,0.123-0.056,0.106-0.118
|
||||
C10.421,9.36,8.917,8.406,7.999,7.536z M8.226,13.079c-0.735-0.144-2.373-0.304-3.203-0.443c-0.067,0.077-0.079,0.158,0.013,0.219
|
||||
c0.144,0.072,0.292,0.101,0.509,0.117c1.113,0.082,2.66,0.398,2.698,0.322C8.288,13.204,8.304,13.185,8.226,13.079z M7.945,6.413
|
||||
c0.466,0.395,0.899,1.042,1.424,1.401c0.075,0.051,0.114,0.042,0.03-0.032C9.193,7.6,9.094,7.294,9.184,7.028
|
||||
C8.724,6.928,8.438,5.872,7.945,6.413z M4.731,18.423c-0.196,0.057-0.41,0.128-0.372,0.365c0.01,0.14-0.026,0.339,0.04,0.418
|
||||
c0.745-0.097,1.372-0.593,2.13-0.67c-0.002-0.013-0.026-0.17-0.028-0.188C5.879,18.374,4.901,19.339,4.731,18.423z M5.035,18.317
|
||||
c0.011,0.06,0.015,0.131,0.028,0.189C9.361,17.249,9.322,16.922,5.035,18.317z M8.651,6.127c0.197,0.262,0.377,0.419,0.611,0.606
|
||||
h0.003L9.27,6.734V6.732c0.02,0.001,0.049-0.005,0.063,0.006c0.534-0.646,1.328-0.974,2.012-1.426
|
||||
c-0.127-0.25-0.22-0.473-0.375-0.724C10.165,5.034,9.268,5.416,8.651,6.127z M6.218,12.041c0.084,0.02,0.163,0.04,0.255,0.043
|
||||
c0.103,0.003,0.234-0.013,0.286-0.095c-0.173,0.005-0.336-0.05-0.492-0.147L6.218,12.041z M7.376,10.663
|
||||
c0.251-0.449,0.515-0.929,0.265-1.39L7.64,9.275C7.541,9.067,7.363,8.946,7.194,8.8c-0.34,0.677-1.594,2.556-0.503,2.88
|
||||
C7.131,11.667,7.107,10.956,7.376,10.663z M5.106,20.111c-0.014,0.005-0.118,0.042-0.118,0.042c-0.222-0.066-0.466,0.184-0.565,0.35
|
||||
c-0.183,0.242,0.314,0.879,0.359,1.054c0.071,0.315,0.451,0.29,0.707,0.249c0.695,0.131,0.723,1.175,0.044,1.202
|
||||
C5.354,23.02,4.993,22.8,5.07,22.553c0.061-0.098,0.233-0.094,0.278,0.019c0.123,0.247,0.465,0.083,0.37-0.159
|
||||
c-0.393-0.89-1.623,0.565-0.279,0.923c0.353,0.019,0.671-0.197,0.842-0.483C6.838,21.819,5.314,21.105,5.106,20.111z M6.655,22.887
|
||||
c-0.21,0.22-0.454,0.524-0.133,0.763c0.104-0.175,0.216-0.343,0.362-0.489C6.789,23.087,6.73,22.978,6.655,22.887z M8.237,25.008
|
||||
c1.135-2.393,2.666-0.635,4.389-0.114c0.054-0.214,0.229-0.91,0.289-1.166c-0.253-0.044-0.485-0.122-0.69-0.232
|
||||
c-0.617,1.341-1.995,0.112-2.847-0.24c-0.771,0.054-1.205,1.355-1.817,1.745c-1.076-0.625-0.033-1.82,0.522-2.417
|
||||
c-0.666,0.505-1.795,1.152-1.179,2.118c0.145,0.352,0.335,0.974,0.681,0.937C7.819,25.649,8.075,25.371,8.237,25.008z M7.08,19.736
|
||||
c-0.2-0.311-0.361-0.638-0.472-0.9c-0.674-0.104-2.318,1.319-2.543,0.31c-0.072-0.425,0.003-0.898,0.5-0.993
|
||||
c0.597-0.208,1.21-0.392,1.807-0.579c-0.031-0.062-0.059-0.124-0.084-0.187c-0.587,0.453-1.517,0.264-2.14,0.677
|
||||
c-0.492,0.142-0.682,1.833-0.069,2.035C6.271,19.34,6.574,19.125,7.08,19.736z M7.917,25.804c-0.068,0.061-0.143,0.118-0.229,0.172
|
||||
c0.363,0.551,0.906,0.993,1.534,1.247c0.606,0.126,1.553,0.813,0.838,1.407c-0.284,0.27-1.044-0.289-0.561-0.493
|
||||
c0.066,0,0.138,0.041,0.15,0.133c0.068,0.245,0.411,0.057,0.353-0.121c-0.567-1.237-1.739,0.762-0.164,0.885
|
||||
c0.517-0.009,0.994-0.454,1.073-0.967C10.895,26.882,8.517,26.89,7.917,25.804z M4.013,17.308c-0.002,0.147,0.044,0.294,0.098,0.432
|
||||
c0.067-0.032,0.136-0.059,0.205-0.086c-0.026-0.093-0.106-0.352-0.139-0.475C4.104,17.19,4.053,17.267,4.013,17.308z M11.166,25.25
|
||||
c0.238-0.026,0.503-0.148,0.615-0.355c-0.775-0.247-2.01-1.451-2.664-0.581C9.772,24.672,10.433,25.09,11.166,25.25z M10.464,26.861
|
||||
c0.253,0.014,0.329-0.265,0.328-0.348c-0.072-0.824-1.596-1.052-2.168-1.536C7.706,26.139,9.671,26.591,10.464,26.861z
|
||||
M4.608,17.561c0.08-0.022,0.16-0.042,0.24-0.061c-0.043-0.179-0.079-0.36-0.106-0.54c-0.078,0.075-0.166,0.13-0.263,0.164
|
||||
L4.608,17.561z M5,11.757c0.067,0.014,0.685,0.138,0.921,0.211c0.033-0.125,0.063-0.296,0.11-0.397
|
||||
c-0.034-0.1-0.055-0.197-0.065-0.291c-0.272,0.128-0.626,0.208-0.94,0.149C5.017,11.538,5.02,11.648,5,11.757z M3.439,14.174
|
||||
c-0.175-0.023-0.381-0.015-0.511-0.209c-0.774,1.634,0.286,3.207-0.309,4.329c-0.536,0.793-1.784-0.079-1.058-0.761
|
||||
c0.103-0.08,0.255-0.022,0.296,0.099c0.069,0.138-0.148,0.224-0.129,0.348c0.089,0.568,0.851,0.073,0.708-0.324
|
||||
c-0.152-0.778-1.134-0.724-1.447-0.181c-0.474,0.915,0.42,1.807,1.362,1.77C4.747,19.173,2.524,15.647,3.439,14.174z M4.61,11.049
|
||||
c0.229,0.048,0.472,0.093,0.702,0.093C6.318,11.221,6.22,9.37,6.943,8.623c-0.2-0.135-0.402-0.256-0.615-0.384
|
||||
c-0.875,0.548-0.658,2.484-1.519,2.522c-0.503,0.053-0.813-0.798-0.218-0.867c0.266-0.017,0.248,0.368-0.011,0.318
|
||||
c-0.055,0.127,0.12,0.254,0.217,0.24c0.248-0.001,0.282-0.287,0.342-0.474C5.27,9.726,4.755,9.495,4.504,9.483
|
||||
c-0.461,0.045-0.579,0.825-0.484,1.184C4.115,10.946,4.447,10.986,4.61,11.049z M3.93,17.027c0.192,0.01,0.423-0.176,0.575-0.218
|
||||
c0.414-0.581-0.072-1.861,0.069-2.622c-0.948-0.306-1.037,0.468-0.934,1.19C3.75,15.784,3.511,16.884,3.93,17.027z M5.28,9.497
|
||||
c0.149-0.495,0.362-1.038,0.783-1.429C6.01,8.031,5.954,7.99,5.903,7.942c-0.183,0.18-0.371,0.365-0.49,0.56
|
||||
c0.043,0.301-0.427,0.521-0.599,0.241c-0.06-0.148,0.125-0.286,0.254-0.176C5.222,8.136,3.733,8.597,5.28,9.497z M6.667,17.483
|
||||
l0.327-0.098c-0.059-0.271-0.089-0.564-0.092-0.893c-0.735-0.58-0.576-1.795-0.524-2.66c-0.8-0.41-2.074,0.014-2.768-0.522
|
||||
c-0.104-0.657,0.782-1.43,1.435-0.982c0.579,0.081,1.158,0.176,1.723,0.281c0.008-0.092,0.019-0.183,0.033-0.275
|
||||
c-0.8,0.183-1.71-0.38-2.522-0.377c-0.664-0.111-2.105,2.012-0.756,1.863C7.505,13.783,5.6,14.853,6.667,17.483z M4.848,14.221
|
||||
c-0.026,1.026,0.137,2.104,0.297,3.209c0.267-0.113,0.895-0.002,0.936-0.414c0,0-0.089-1.196-0.125-1.567
|
||||
c-0.04-0.386,0.066-1.165-0.467-1.145v-0.002C5.355,14.28,4.988,14.237,4.848,14.221z M11.892,25.257
|
||||
c-0.927,0.753-2.046-0.258-2.962-0.697c-0.045,0.057-0.089,0.115-0.131,0.174c4.036,1.765,1.13,1.885,2.701,2.602
|
||||
C11.448,26.679,12.222,25.832,11.892,25.257z M21.972,24.377c0.4,1.163-1.512,1.601-2.24,2.088c0.02,0.079,0.043,0.158,0.067,0.236
|
||||
c0.683-0.27,1.38-0.622,2.187-1.105c0.265-0.177,0.489-0.004,0.643,0.232c0.191,0.35,0.561,0.396,0.728,0.017
|
||||
c-0.517-0.455-0.94-1.031-1.298-1.544C22.03,24.327,22.001,24.352,21.972,24.377z M20.251,27.465l0.086,0.162
|
||||
c0.461-0.356,1.718-0.188,1.687,0.515c-0.106,0.242-0.609,0.388-0.635-0.1c-0.015-0.059,0.019-0.187-0.019-0.225
|
||||
c-0.487,0.155-0.263,0.879,0.139,0.977C23.604,28.347,21.547,26.346,20.251,27.465z M23.948,23.323
|
||||
c-0.625-0.84,1.31-2.168,1.449-3.338c-0.198-0.075-0.38-0.142-0.566-0.196c-0.154,0.275-0.292,0.555-0.419,0.857
|
||||
c0.417,1.206-1.687,2.062-0.561,3.118c0.537,0.442,1.362,1.482,0.158,1.664c-0.734-0.152-1.088-1.001-1.614-1.476
|
||||
c-0.031,0.05-0.076,0.088-0.116,0.13c0.563,0.7,0.91,1.463,1.676,1.717C26.395,24.912,25.292,24.568,23.948,23.323z M22.235,25.822
|
||||
c-0.764,0.411-1.523,0.859-2.342,1.172l0.091,0.26c0.809-0.285,1.616-0.662,2.463-1.152C22.39,26.019,22.31,25.831,22.235,25.822z
|
||||
M26.582,21.779c-0.579,0.152-1.062,1.662-1.537,2.074c0.094,0.078,0.217,0.187,0.336,0.313c0.591-0.447,0.662-1.937,1.548-1.943
|
||||
c0.26-0.02,0.542,0.066,0.63,0.339c0.218,0.725-1.066,0.58-0.504,0.179c0.134,0.075,0.298,0.01,0.176-0.152
|
||||
c-0.688-0.25-0.793,1.026,0.116,0.761c0.434-0.123,0.732-0.781,0.389-1.159C27.362,22.013,27.012,21.82,26.582,21.779z
|
||||
M30.982,14.203c-0.805-0.464-1.802,0.101-2.812,0.412c-0.341,0.141-0.422,0.491-0.253,1.106c0.21,1.002,0.157,2.041,0.065,3.017
|
||||
c0.084,0.009,0.169,0.021,0.253,0.033l0.082,0.012c0.601-1.341-1.021-4.602,1.653-3.956c0.077-0.537,0.843-0.638,0.997-0.072
|
||||
c0.083,0.192-0.066,0.53-0.281,0.331c-0.044-0.104-0.003-0.255-0.078-0.362c-0.106-0.091-0.264-0.04-0.316,0.085
|
||||
c-0.046,0.23,0.34,0.542,0.543,0.588C31.363,15.338,31.255,14.52,30.982,14.203z M17.447,25.699c0,0-0.099-0.44-0.125-0.562
|
||||
c-0.205,0.008-0.618,0.003-0.828,0.003c-0.259,1.155-1.851,0.322-2.674,0.579c-0.422,0.542-0.361,1.31-0.58,1.938
|
||||
c-0.117,0.441-0.609,0.274-0.922,0.14c-0.43-0.357,0.107-2.098,0.24-2.606c-0.162-0.059-0.322-0.12-0.482-0.182
|
||||
c0.917,1.396-1.867,2.697,1.171,3.803c0.027,0,0.049-0.008,0.058-0.011C14.104,24.799,13.671,26.074,17.447,25.699z M26.284,17.999
|
||||
c-0.131-1.284,0.251-2.755-0.611-3.851c-0.549-0.747-1.811-2.851-2.572-1.432c-0.264,0.823,1.498,1.384,1.639,2.835
|
||||
c1.389,0.398,1.487,1.625,1.341,2.939c-0.057,1.059,1.565,0.554,2.097,1.092c0.229,0.36-0.024,1.092-0.494,1.112
|
||||
c-0.204-0.022-0.428-0.131-0.62-0.169c-0.493-0.014-0.931-0.268-1.383-0.429c-0.016,0.047-0.031,0.093-0.048,0.14
|
||||
c0.698,0.009,1.302,0.568,1.987,0.624c0.607-0.157,1.074-0.848,1.424-1.352C28.374,18.599,26.427,19.505,26.284,17.999z
|
||||
M28.631,15.655c-0.015,1.069,0.385,2.142-0.016,3.196c0.088,0.027,0.175,0.063,0.264,0.109c0.672-0.983-0.048-2.216,0.363-3.199
|
||||
c0.408-0.62,1.336,0.049,0.81,0.578c-0.141,0.141-0.358-0.096-0.208-0.225c0.207-0.231-0.193-0.42-0.342-0.192
|
||||
c-0.302,0.322,0.106,0.812,0.417,0.759c0.688-0.002,0.802-0.968,0.326-1.328C29.833,14.916,28.733,14.879,28.631,15.655z
|
||||
M14.028,27.682c-0.112,0.02-0.15,0.171-0.15,0.171c-0.042,0.181,0.012,0.44,0.095,0.615c0.199,0.325,0.912,0.217,1.258,0.313
|
||||
c0.343-0.089,0.182-0.62,0.862-0.633c0.805-0.015,0.944,0.99,0.128,1.011c-0.269,0.042-0.253-0.353,0.027-0.3
|
||||
c0.232-0.009,0.279-0.343,0.034-0.4c-0.139-0.024-0.35-0.014-0.434,0.106c-0.14,0.295-0.003,0.939,0.42,0.884
|
||||
c0.67,0.031,0.972-0.683,0.692-1.212C16.441,27.211,14.899,28.054,14.028,27.682z M13.969,26.929c0.21,0.009,0.42,0.013,0.63,0.013
|
||||
c0.664-0.006,1.36-0.032,2.027-0.136c0.173-0.139,0.027-0.53,0.034-0.739C15.79,26.255,14.075,25.632,13.969,26.929z M17.017,26.761
|
||||
c0.116-0.012,0.223-0.021,0.339-0.035c-0.027-0.145-0.101-0.563-0.124-0.701c-0.071,0-0.173,0.011-0.267,0.021
|
||||
C16.98,26.227,17.011,26.613,17.017,26.761z M21.724,24.571c-0.598,0.564-1.823,0.76-2.058,1.582
|
||||
C20.297,25.782,21.89,25.245,21.724,24.571z M22.196,23.727l-0.366-0.415c-0.291,0.228-0.595,0.444-0.905,0.643
|
||||
c0.112,1.231-1.518,0.97-2.003,1.72c-0.418,0.898,0.524,1.675,0.428,2.509c-0.216,0.279-0.771,0.138-1.041-0.033
|
||||
c-0.131-0.171-0.135-0.396-0.197-0.594c-0.153-0.037-0.235-0.162-0.286-0.301c0.088,1.437,0.697,1.405,1.978,1.511
|
||||
c0.306-0.009,0.292-0.194,0.193-0.504C18.473,24.748,20.202,25.765,22.196,23.727z M13.937,27.233l-0.021,0.264
|
||||
c0.989,0.124,2.213-0.352,3.071,0.204c0.203,0.006,0.428-0.021,0.611-0.091c-0.042-0.184-0.094-0.376-0.158-0.585
|
||||
C16.294,27.157,15.133,27.303,13.937,27.233z M21.625,23.082c-0.079-0.089-0.174-0.219-0.25-0.283
|
||||
c-0.247,0.185-0.516,0.331-0.773,0.497c0.115,0.109,0.185,0.203,0.243,0.342C21.108,23.464,21.369,23.277,21.625,23.082z
|
||||
M22.501,14.896c0.78,0.784,1.125-0.573,0.506-0.225c0.302,0.281-0.309,0.418-0.328,0.058c-0.009-1.237,1.399,0.339,1.444,0.833
|
||||
c0.1-0.033,0.2-0.05,0.297-0.052C24.09,13.674,21.918,13.574,22.501,14.896z M24.173,18.922c0.594-0.961-0.982-2.761-1.649-1.344
|
||||
c-0.26,0.796,0.98,1.026,0.983,0.383c-0.16,0.033-0.433,0.111-0.544-0.044c-0.089-0.158-0.064-0.406,0.07-0.48
|
||||
c0.697-0.194,1.176,0.977,0.96,1.443L24.173,18.922z M23.898,16.13c-0.238,0.935,1.15,1.845,0.575,2.864
|
||||
c0.213,0.054,0.881,0.226,1.074,0.278c0.326-0.834,0.528-2.254-0.219-3.025C25.116,15.931,24.138,15.546,23.898,16.13z
|
||||
M24.523,19.705c-0.147-0.039-0.294-0.078-0.439-0.125c-0.062,0.2-0.148,0.399-0.255,0.591c0.148,0.058,0.277,0.152,0.36,0.223
|
||||
C24.287,20.159,24.414,19.932,24.523,19.705z M23.733,11.955c-0.024-0.026-0.054-0.047-0.083-0.069
|
||||
c-1.2,0.186-1.596-0.78-2.707-0.662c-0.409,0.334-0.975,0.812-0.791,1.376c-0.002,0.004-0.004,0.007-0.006,0.011
|
||||
c0.003-0.003,0.006-0.006,0.008-0.01c0.638-0.82,1.967-1.22,2.816-0.199C23.145,12.161,23.426,11.95,23.733,11.955z M24.592,10.929
|
||||
c-0.154-0.246-0.342-0.47-0.555-0.667c-0.121,0.47-0.016,0.964,0.063,1.18C24.151,11.326,24.303,11.051,24.592,10.929z
|
||||
M23.923,9.121c-0.774-0.049-1.558-0.172-2.081-0.803c-0.734-0.615-1.768-0.428-2.657-0.532c-0.511,0.01-1.056-0.163-1.55-0.084
|
||||
c-0.546,0.44-1.411,0.106-1.348-0.644c0.062-0.673,1.091-0.756,1.411-0.223c0.657-0.04,1.734,0.389,2.127-0.297
|
||||
c-0.656-0.317-1.45-0.132-2.113-0.361c-0.406-0.261-0.855-0.46-1.349-0.351c-1.787,0.431-0.507,3.13,1.011,2.441
|
||||
c0.594-0.428,1.302-0.278,1.983-0.222c0.352,0.003,0.451,0.353,0.571,0.623c0.274,0.631,0.65,2.339,1.546,1.944
|
||||
c-0.015-0.368-0.03-0.955,0.218-1.242c0.069-0.127,0.391-0.468,0.433-0.162c-0.284,1.26,0.179,2.402,1.443,2.196
|
||||
c-0.159-0.715-0.025-1.487,0.336-2.122C23.918,9.23,23.925,9.176,23.923,9.121z M21.081,7.253c-0.009-0.407-0.491-0.256-0.523,0.003
|
||||
C20.691,7.255,20.882,7.255,21.081,7.253z M18.597,4.113c0.044,0.068,0.092,0.154,0.143,0.194c0.002,0,0.009,0.003,0.012,0.004
|
||||
c1.287-0.994,2.348,0.218,2.306-0.427c0.004-0.026,0.007-0.053,0.009-0.079c-0.405-0.107-0.843-0.252-1.265-0.207
|
||||
C19.367,3.673,18.967,3.878,18.597,4.113z M23.596,20.436c-0.711,0.397-0.995,1.351-1.678,1.888
|
||||
c0.163,0.166,0.651,0.685,0.812,0.862C23.231,22.597,25.042,20.812,23.596,20.436z M17.951,12.374
|
||||
c0.568-0.541,1.378-0.852,2.193-0.752c0.054-0.23,0.608-0.323,0.448-0.555c-0.489-0.197-0.495-0.483-0.899-0.618
|
||||
C18.79,10.595,17.758,11.41,17.951,12.374z M20.986,6.341c-0.174,0-0.298,0.115-0.361,0.267c-0.013,0.031-0.027,0.061-0.034,0.095
|
||||
c0.004,0.002,0.007,0.004,0.011,0.006C20.624,6.766,21.081,6.584,20.986,6.341z M17.737,24.197l-0.041,0.027
|
||||
c0.003-0.032,0.008-0.121,0.017-0.148c-0.719-1.345,0.286,3.069,0.489,3.175C18.625,27.259,17.742,24.636,17.737,24.197z
|
||||
M23.633,24.731c-0.416-0.842-1.409-1.57-1.981-2.239c-0.079-0.098-0.212-0.287-0.3-0.38c-0.106,0.07-0.103,0.076-0.02,0.171
|
||||
c0.741,0.796,1.444,1.726,2.211,2.472L23.633,24.731z M26.511,15.383c0.237-0.294,0.722-0.327,1.01-0.174
|
||||
c-0.237-1.431-0.987-3.687-2.521-4.097c-0.529-0.036-0.864,0.579-0.679,1.032C25.336,12.985,26.308,14.173,26.511,15.383z
|
||||
M25.903,7.36c0.002-0.104,0.003-0.207,0.004-0.239c0.031-0.242,0.237-0.871,0.475-1.145c0.186-0.61-0.071-1.658,0.259-2.243
|
||||
c0.266-0.832-1.298,0.607-1.702,2.119c-0.028,0.103,0.094,0.143,0.018,0.31c-0.025,0.054-0.1,0.118-0.105,0.177
|
||||
c-0.014,0.17-0.008,0.339,0.021,0.501C25.247,6.952,25.585,7.138,25.903,7.36z M14.937,8.625c0.045,0.103,0.158,0.26,0.288,0.217
|
||||
c0.034-0.022,0.031-0.103,0-0.23c-0.055-0.225-0.322-0.568-0.508-1.015c-0.145-0.35-0.211-0.898-0.394-1.305
|
||||
c-0.779-1.724-1.425-3.32-0.875-3.469c0.384-0.104,0.527,0.32,0.19,0.227c-0.009,0.014-0.022,0.026-0.04,0.032
|
||||
c0.106,0.871,1.205-0.225,0.179-0.568c-1.392-0.242-0.839,1.377-0.438,2.07c0.393,0.981,0.683,1.862,1.034,2.795
|
||||
C14.533,7.802,14.784,8.2,14.937,8.625z M17.726,4.237c0.992-0.766,2.112-1.304,3.36-0.902c-0.166-0.794-0.839-1.519-1.704-1.19
|
||||
c0.008,0.184,0.469,1.278,0.027,0.976c-0.215-0.628-0.946-0.703-1.533-0.625c0.034,0.2,0.732,1.193,0.232,1.015
|
||||
c-0.316-0.455-0.945-0.653-1.463-0.453c-0.007-0.003-0.021,0.015-0.025,0.019c-0.004,0.009-0.006,0.018-0.006,0.027
|
||||
c0.001,0.002,0.003,0.008,0.003,0.012c0.066,0.145,0.355,0.425,0.582,0.7c0.14,0.17,0.252,0.341,0.333,0.432
|
||||
C17.57,4.292,17.692,4.263,17.726,4.237z M14.952,2.439c0.608-0.429,1.306,0.026,1.24,0.725c-0.005,0.013,0.239,0.057,0.227,0.022
|
||||
c0.022-0.019,0.035-0.05,0.044-0.078c0,0,0.001,0,0.002,0.001c0.052-0.141,0.06-0.297,0.02-0.422
|
||||
c-0.206-0.7-1.125-1.121-1.719-0.634c-0.527,0.35-0.194,1.118-0.605,1.476c-0.202,0.131-0.472,0.089-0.652-0.061
|
||||
c0.425,1.105,0.725,1.714,1.108,2.792c0.138-1.085,1.14-1.307,2.216-1.456c0,0-0.498-0.754-0.833-0.854
|
||||
c-0.335-0.1-1.081-0.2-1.241-0.497C14.583,3.127,14.606,2.641,14.952,2.439z M16.638,3.059c0.002-0.001,0.005,0,0.007-0.001
|
||||
c0,0,0.001-0.001,0.001-0.001C16.644,3.058,16.642,3.058,16.638,3.059z M9.631,8.459c0.53,0.397,0.652,0.488,0.984,0.8
|
||||
c0.52-1.017,2.78-1.287,2.562-2.71l-0.664-1.608c-0.179-0.299,0.153-0.453,0.377-0.423c0.029-0.012,0.058-0.034,0.052-0.108
|
||||
l0.021-0.034c-0.168-0.306-0.301-0.803-0.372-1.128c-0.408,0.055-1.545-0.191-1.664,0.263c0.119,0.871,0.874,1.75,1.115,2.614
|
||||
C11.922,7.261,10.219,7.54,9.631,8.459z M16.636,3.059L16.634,3.06L16.636,3.059L16.636,3.059z M7.607,5.624
|
||||
c1.112-0.334,1.759-1.591,2.986-1.787c-0.025-0.089-0.041-0.182-0.051-0.281C9.886,3.633,9.247,3.921,8.739,4.368
|
||||
C8.348,4.847,7.328,5.4,7.105,4.485c-0.088-0.358,0.63-0.784,0.708-0.324c-0.022,0.123-0.139,0.146-0.24,0.113
|
||||
C6.927,4.679,8.371,4.991,8.119,4.028C7.088,2.609,5.93,5.328,7.607,5.624z M8.011,5.996c0.121-0.055,0.253-0.078,0.378-0.042
|
||||
c0.654-0.76,1.583-1.171,2.442-1.639c-0.035-0.075-0.063-0.145-0.084-0.21C9.723,4.643,8.838,5.232,7.979,5.939
|
||||
C7.852,6.044,7.87,6.06,8.011,5.996z M28.096,11.132c-0.059-0.416-0.36-0.602-0.631-0.602c-1.544,0.385,0.182,3.04,0.253,4.035
|
||||
c0.255-0.29,0.747-0.409,0.968-0.468C28.273,12.821,28.073,11.15,28.096,11.132z M27.353,9.995
|
||||
c-0.175-0.036-0.347-0.099-0.509-0.171c0.007,0.169,0.018,0.338,0.035,0.507c0.005,0.051,0.089,0.093,0.129,0.069
|
||||
c0.132-0.082,0.289-0.133,0.442-0.131C27.446,10.256,27.392,10.104,27.353,9.995z M27.679,18.711
|
||||
c-0.013-0.701,0.386-3.119-0.454-3.269c-0.258,0.012-0.547,0.052-0.685,0.395C26.756,16.922,25.93,18.565,27.679,18.711z
|
||||
M28.001,10.094c-0.175-0.01-0.23-0.024-0.402-0.061c0.03,0.083,0.059,0.166,0.089,0.249c0.151,0.021,0.176,0.071,0.297,0.162
|
||||
c0.049,0.037,0.096-0.002,0.079-0.067C28.039,10.284,28.019,10.189,28.001,10.094z M22.211,4.727
|
||||
c-0.181,0.105-0.538,0.039-0.726-0.068c0.247,0.43,0.12,0.858-0.045,1.14c0.931-0.003,1.861-0.004,2.792-0.011
|
||||
c-0.15-0.205,0.007-0.482,0.011-0.705c-0.092-0.42-0.823-0.125-0.951-0.712c-0.326-0.896-1.485-0.07-2.013-0.702
|
||||
c-0.005,0.136-0.005,0.334-0.098,0.447c-0.022,0.027,0.283,0.209,0.362,0.243C21.938,4.531,22.242,4.371,22.211,4.727z M6.211,6.72
|
||||
C6.317,6.653,6.439,6.581,6.56,6.515c-0.015-0.012-0.03-0.026-0.043-0.04C6.163,6.481,5.996,5.876,6.374,5.788
|
||||
c0.113-0.03,0.23,0.178,0.111,0.266c-0.061,0.04,0.014,0.132,0.074,0.119C7.004,6.11,6.702,5.555,6.416,5.565
|
||||
C5.844,5.54,5.67,6.576,6.211,6.72z M26.29,7.649c-0.041-0.61,0.226-1.215,0.744-1.574c0.215-0.149,0.451-0.234,0.693-0.275
|
||||
c0.016-0.25,0.406-0.441,0.421-0.65C27.068,5.19,26,6.436,26.113,7.512C26.172,7.557,26.232,7.602,26.29,7.649z M26.828,7.956
|
||||
c0.421,0.673,1.942,0.285,1.503-0.601c-0.139-0.352-0.81-0.081-0.615,0.214c0.116,0.077-0.023,0.243-0.138,0.167
|
||||
c-0.144-0.095-0.18-0.242-0.149-0.381c0.104-0.475,0.806-0.56,1.072-0.19c0.676,0.979-0.553,1.699-1.353,1.35
|
||||
C26.203,8.2,25.551,7.31,24.185,7.163c-0.001,0.002-0.001,0.004-0.002,0.005c0.335,0.323,0.411,0.746,0.418,0.845
|
||||
c0.669,0.12,2.208,1.441,2.592,1.604c2.557,0.991,3.663-3.148,0.856-3.444C27.121,6.038,26.302,7.148,26.828,7.956z"/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="16.6016" y1="13.4223" x2="16.8244" y2="8.3431" gradientTransform="matrix(1 0 0 -1 0 34)">
|
||||
<stop offset="0" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.5223" style="stop-color:#A5935C"/>
|
||||
<stop offset="1" style="stop-color:#FFF7C4"/>
|
||||
</linearGradient>
|
||||
<rect x="2.26" y="20.143" fill="url(#SVGID_2_)" width="28.845" height="4.556"/>
|
||||
<g>
|
||||
<rect x="2.64" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
|
||||
<rect x="6.662" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
|
||||
<rect x="10.703" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
|
||||
<rect x="14.74" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
|
||||
<rect x="18.781" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
|
||||
<rect x="22.799" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
|
||||
<rect x="26.84" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="16.5495" y1="9.7871" x2="16.5495" y2="13.2217" gradientTransform="matrix(1 0 0 -1 0 34)">
|
||||
<stop offset="0" style="stop-color:#3B3421;stop-opacity:0"/>
|
||||
<stop offset="0.2211" style="stop-color:#353229;stop-opacity:0.3006"/>
|
||||
<stop offset="0.5223" style="stop-color:#30302F;stop-opacity:0.71"/>
|
||||
<stop offset="0.9709" style="stop-color:#3A3422;stop-opacity:0.0432"/>
|
||||
<stop offset="1" style="stop-color:#3B3421;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<rect x="2.797" y="20.732" opacity="0.77" fill="url(#SVGID_3_)" enable-background="new " width="27.505" height="3.515"/>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="8.666" y1="12.0149" x2="8.666" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
|
||||
<stop offset="0" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.5223" style="stop-color:#A5935C"/>
|
||||
<stop offset="1" style="stop-color:#FFF7C4"/>
|
||||
</linearGradient>
|
||||
<polygon fill="url(#SVGID_4_)" points="9.325,23.149 7.974,21.014 7.61,21.014 7.61,23.871 8.007,23.871 8.007,21.768
|
||||
9.354,23.871 9.722,23.871 9.722,21.014 9.325,21.014 "/>
|
||||
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="4.6815" y1="12.0149" x2="4.6815" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
|
||||
<stop offset="0" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.5223" style="stop-color:#A5935C"/>
|
||||
<stop offset="1" style="stop-color:#FFF7C4"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_5_)" d="M4.511,21.013l-1.054,2.859H3.89l0.215-0.627h1.154l0.215,0.627h0.432l-1.054-2.859H4.511z
|
||||
M4.236,22.914l0.446-1.298l0.446,1.298H4.236z"/>
|
||||
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="12.6932" y1="12.0149" x2="12.6932" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
|
||||
<stop offset="0" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.5223" style="stop-color:#A5935C"/>
|
||||
<stop offset="1" style="stop-color:#FFF7C4"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_6_)" d="M13.274,21.811h0.411c-0.12-0.919-1.439-1.176-1.856-0.342c-0.188,0.304-0.108,0.993-0.124,1.345
|
||||
c-0.048,1.291,1.746,1.458,1.98,0.216h-0.411c-0.2,0.724-1.208,0.535-1.158-0.216c0.018-0.247-0.053-0.924,0.073-1.139
|
||||
C12.403,21.175,13.161,21.303,13.274,21.811z"/>
|
||||
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="28.7335" y1="12.0149" x2="28.7335" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
|
||||
<stop offset="0" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.5223" style="stop-color:#A5935C"/>
|
||||
<stop offset="1" style="stop-color:#FFF7C4"/>
|
||||
</linearGradient>
|
||||
<polygon fill="url(#SVGID_7_)" points="27.725,21.013 27.725,21.394 28.533,21.394 28.533,23.872 28.934,23.872 28.934,21.394
|
||||
29.742,21.394 29.742,21.013 "/>
|
||||
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="16.6395" y1="12.0149" x2="16.6395" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
|
||||
<stop offset="0" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.5223" style="stop-color:#A5935C"/>
|
||||
<stop offset="1" style="stop-color:#FFF7C4"/>
|
||||
</linearGradient>
|
||||
<polygon fill="url(#SVGID_8_)" points="16.022,21.394 16.439,21.394 16.439,23.49 16.022,23.49 16.022,23.872 17.257,23.872
|
||||
17.257,23.49 16.84,23.49 16.84,21.394 17.257,21.394 17.257,21.013 16.022,21.013 "/>
|
||||
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="24.688" y1="12.0149" x2="24.688" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
|
||||
<stop offset="0" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.5223" style="stop-color:#A5935C"/>
|
||||
<stop offset="1" style="stop-color:#FFF7C4"/>
|
||||
</linearGradient>
|
||||
<polygon fill="url(#SVGID_9_)" points="25.346,23.149 23.996,21.014 23.632,21.014 23.632,23.871 24.029,23.871 24.029,21.768
|
||||
25.376,23.871 25.744,23.871 25.744,21.014 25.346,21.014 "/>
|
||||
|
||||
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="20.7125" y1="12.0149" x2="20.7125" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
|
||||
<stop offset="0" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.5223" style="stop-color:#A5935C"/>
|
||||
<stop offset="1" style="stop-color:#FFF7C4"/>
|
||||
</linearGradient>
|
||||
<polygon fill="url(#SVGID_10_)" points="19.794,23.872 21.631,23.872 21.631,23.49 20.195,23.49 20.195,22.643 21.414,22.643
|
||||
21.414,22.261 20.195,22.261 20.195,21.394 21.631,21.394 21.631,21.013 19.794,21.013 "/>
|
||||
</g>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<path fill="#30302F" d="M31.361,13.876L31.361,13.876c-0.036-0.042-0.079-0.078-0.129-0.107c-0.25-0.145-0.521-0.223-0.824-0.239
|
||||
c-0.169-0.439-0.139-0.992-0.106-1.583c0.024-0.42,0.051-0.896-0.007-1.356c-0.017-0.122-0.076-0.233-0.17-0.314
|
||||
c-0.342-0.294-0.755-0.365-1.131-0.194c-0.159,0.073-0.294,0.182-0.407,0.306c-0.021-0.068-0.039-0.135-0.056-0.198
|
||||
c0.344-0.092,0.65-0.267,0.914-0.52c0.666-0.641,0.927-1.688,0.633-2.547c-0.255-0.741-0.867-1.243-1.694-1.405
|
||||
c0.118-0.129,0.246-0.298,0.264-0.529c0.012-0.142-0.039-0.283-0.138-0.385c-0.1-0.104-0.263-0.167-0.378-0.153
|
||||
c-0.393,0.014-0.798,0.154-1.173,0.4c0-0.012,0-0.023,0-0.035c-0.003-0.403-0.006-0.819,0.159-1.131
|
||||
c0.136-0.426-0.014-0.657-0.162-0.774c-0.097-0.077-0.359-0.229-0.747-0.001c-0.401,0.239-1.059,0.982-1.477,1.88
|
||||
c0-0.004-0.001-0.009-0.001-0.014c-0.108-0.498-0.562-0.607-0.78-0.66c-0.037-0.009-0.149-0.036-0.167-0.046
|
||||
c-0.001-0.002-0.006-0.012-0.021-0.072c-0.308-0.837-1.066-0.797-1.521-0.773c-0.339,0.013-0.506,0.007-0.577-0.077
|
||||
c-0.023-0.028-0.051-0.053-0.081-0.075c-0.001-0.014-0.003-0.027-0.007-0.042c-0.137-0.648-0.52-1.2-1.023-1.474
|
||||
c-0.417-0.23-0.884-0.257-1.348-0.08c-0.166,0.063-0.283,0.208-0.314,0.376C18.579,1.967,18.215,1.947,17.811,2
|
||||
c-0.135,0.018-0.258,0.091-0.336,0.198c-0.066,0.089-0.101,0.199-0.099,0.311c-0.143-0.024-0.287-0.031-0.432-0.021
|
||||
c-0.169-0.503-0.593-0.912-1.12-1.074c-0.489-0.149-0.994-0.063-1.337,0.223c-0.209,0.14-0.33,0.311-0.403,0.469
|
||||
c-0.065-0.03-0.138-0.058-0.22-0.083c-0.729-0.132-1.096,0.148-1.274,0.405c-0.075,0.108-0.119,0.225-0.146,0.33
|
||||
c-0.08-0.001-0.187-0.005-0.322-0.013c-0.459-0.022-1.126-0.054-1.473,0.326c-0.055-0.013-0.109-0.016-0.166-0.01
|
||||
c-0.674,0.08-1.319,0.347-1.895,0.795C8.572,3.812,8.55,3.772,8.523,3.734C7.958,2.957,7.321,3.118,7.14,3.186
|
||||
C6.576,3.399,6.201,4.095,6.267,4.804c0.008,0.09,0.026,0.177,0.053,0.265C5.851,5.111,5.48,5.487,5.399,6.021
|
||||
C5.346,6.366,5.437,6.691,5.64,6.918C5.4,7.195,5.416,7.462,5.484,7.653C5.39,7.745,5.292,7.845,5.2,7.952
|
||||
C4.829,7.803,4.344,8.001,4.155,8.38C4.087,8.516,4.01,8.767,4.146,9.077C3.998,9.148,3.869,9.259,3.767,9.406
|
||||
c-0.285,0.409-0.328,1.018-0.221,1.422c0.134,0.392,0.463,0.549,0.688,0.626c-0.002,0-0.004,0-0.006,0
|
||||
c-0.525,0-1.048,0.489-1.377,0.974c-0.155,0.229-0.48,0.784-0.35,1.278c-0.009,0.014-0.018,0.028-0.025,0.045
|
||||
c-0.478,1.008-0.354,1.956-0.243,2.811c0.005,0.038,0.01,0.076,0.015,0.114c-0.095-0.042-0.196-0.073-0.304-0.091
|
||||
c-0.559-0.092-1.121,0.174-1.399,0.659c-0.271,0.522-0.246,1.104,0.067,1.597c0.354,0.557,0.998,0.903,1.68,0.903l0.075-0.001
|
||||
c0.324-0.01,0.606-0.082,0.845-0.214c0.065,0.531,0.307,0.9,0.689,1.038c-0.036,0.361,0.179,0.739,0.32,0.986l0.038,0.065
|
||||
c0.021,0.036,0.041,0.065,0.036,0.048c0.039,0.171,0.122,0.317,0.243,0.428C4.41,22.275,4.335,22.49,4.328,22.7
|
||||
c-0.007,0.199,0.047,0.872,1.085,1.138l0.066,0.001c0.163,0,0.326-0.031,0.481-0.092c0.059,0.116,0.148,0.218,0.267,0.306
|
||||
c0,0.001,0.001,0.001,0.001,0.001c-0.028,0.299,0.045,0.58,0.213,0.836l0.056,0.141c0.114,0.292,0.314,0.807,0.695,1.008
|
||||
c0.01,0.075,0.036,0.148,0.079,0.213c0.38,0.575,0.918,1.036,1.568,1.343c-0.203,0.239-0.314,0.568-0.285,0.894
|
||||
c0.042,0.462,0.398,0.979,1.293,1.047c0.754-0.013,1.438-0.64,1.563-1.461c0.23,0.496,0.76,0.881,1.666,1.211
|
||||
c0.054,0.02,0.111,0.029,0.17,0.029s0.17-0.021,0.216-0.036c0.146-0.049,0.26-0.162,0.312-0.304c0.29,0.212,0.69,0.236,1.001,0.255
|
||||
c0.083,0.005,0.254,0.015,0.329,0.035c0.086,0.021,0.174,0.021,0.252,0.001c0.002-0.001,0.004-0.001,0.006-0.002
|
||||
c0.039,0.12,0.094,0.231,0.162,0.325c0.167,0.229,0.415,0.365,0.663,0.365c0.032,0,0.063-0.003,0.054-0.006
|
||||
c0.457,0.037,0.87-0.175,1.118-0.566c0.228-0.359,0.268-0.825,0.114-1.225c0.007-0.002,0.014-0.003,0.021-0.005
|
||||
c0.35,0.96,1.188,1.027,2.073,1.099l0.252,0.018c0.343-0.012,0.523-0.167,0.615-0.295c0.202-0.286,0.111-0.626,0.035-0.863
|
||||
c0.047-0.013,0.092-0.033,0.134-0.06c-0.01,0.062-0.014,0.125-0.012,0.19c0.017,0.486,0.359,0.934,0.796,1.04
|
||||
c0.076,0.019,0.163,0.02,0.225,0.003c1.012-0.215,1.238-0.758,1.283-1.063c0.074-0.506-0.243-1.034-0.812-1.346
|
||||
c-0.003-0.001-0.005-0.003-0.008-0.004c0.196-0.101,0.398-0.208,0.604-0.326c0.127,0.059,0.256,0.076,0.373,0.064
|
||||
c0.264-0.012,0.493-0.145,0.652-0.372c0.03,0.014,0.062,0.026,0.095,0.037c0.107,0.035,0.217,0.033,0.325-0.006
|
||||
c1.211-0.44,1.671-0.776,1.762-1.284c0.036-0.206-0.016-0.383-0.085-0.523c0.257-0.248,0.415-0.594,0.565-0.934
|
||||
c0.238,0.323,0.653,0.438,1.115,0.304c0.394-0.112,0.729-0.463,0.853-0.894c0.115-0.401,0.031-0.796-0.229-1.082
|
||||
c-0.042-0.047-0.094-0.086-0.156-0.117l-0.113-0.055c0.073-0.116,0.143-0.252,0.177-0.414c0.003-0.016,0.005-0.03,0.006-0.044
|
||||
c0.646-0.297,1.117-0.976,1.437-1.437c0.12-0.176,0.116-0.41-0.011-0.582c-0.024-0.033-0.05-0.062-0.075-0.086
|
||||
c0.384-0.654,0.325-1.374,0.274-1.961c0.102,0.029,0.2,0.036,0.276,0.021c0.486-0.001,0.886-0.295,1.044-0.766
|
||||
c0.059-0.174,0.079-0.359,0.063-0.545c0.277-0.073,0.492-0.266,0.602-0.544C31.821,14.836,31.644,14.205,31.361,13.876z
|
||||
M21.716,21.769c-0.169-0.178-0.444-0.208-0.64-0.074c-0.079,0.053-0.267,0.176-0.301,0.424c-0.024,0.182,0.043,0.314,0.112,0.41
|
||||
c-0.09,0.06-0.182,0.115-0.273,0.172c-0.096,0.058-0.19,0.116-0.283,0.177c-0.036,0.023-0.069,0.053-0.098,0.086
|
||||
c-0.472-0.057-0.974,0.199-1.382,0.413c-0.28,0.146-0.597,0.312-0.782,0.315c-0.111-0.179-0.3-0.407-0.646-0.362
|
||||
c-0.174,0.03-0.374,0.16-0.44,0.434c-0.194,0.03-0.39,0.057-0.586,0.08c-0.051,0.006-0.1,0.021-0.147,0.045
|
||||
c-0.341-0.176-0.89-0.234-1.778-0.279l-0.076-0.004c-0.118-0.006-0.271-0.014-0.389-0.022c-0.007-0.093-0.031-0.179-0.074-0.258
|
||||
c-0.056-0.104-0.194-0.285-0.485-0.332c-0.194-0.035-0.387,0.046-0.501,0.217c-0.003,0.004-0.006,0.009-0.009,0.014
|
||||
c-0.139-0.028-0.268-0.069-0.384-0.123c0.004-0.114-0.031-0.228-0.101-0.318c-0.306-0.406-0.801-0.707-1.303-1.013
|
||||
c-0.23-0.141-0.45-0.274-0.619-0.403c0.009-0.057,0.008-0.113-0.003-0.167c-0.069-0.333-0.305-0.447-0.42-0.484
|
||||
c0.375-0.09,0.648-0.332,0.757-0.687c0.138-0.451-0.05-0.986-0.438-1.245c-0.202-0.136-0.432-0.184-0.66-0.153
|
||||
c0.473-0.171,0.644-0.479,0.705-0.676c0.13-0.42-0.048-0.904-0.445-1.205c-0.292-0.222-0.64-0.299-0.969-0.225
|
||||
C9.013,16.068,9.004,15.563,9,15.298c0-0.054-0.001-0.103-0.002-0.151c0.753-0.016,1.096-0.425,1.172-0.827
|
||||
c0.039,0.009,0.08,0.016,0.123,0.022c0.529-0.002,0.951-0.306,1.1-0.793c0.176-0.575-0.042-1.248-0.508-1.566
|
||||
c-0.095-0.065-0.296-0.175-0.565-0.178c0.09-0.109,0.214-0.215,0.386-0.301c0.155,0.172,0.428,0.214,0.632,0.091
|
||||
c0.02-0.012,0.039-0.025,0.059-0.04l0.004,0.004l0.089-0.079c0.012-0.011,0.024-0.021,0.036-0.032l0.018-0.016
|
||||
c0.121,0.039,0.243,0.058,0.377,0.058c0,0,0,0,0.001,0c0.267-0.009,0.832-0.18,1.159-0.51c0.011,0.003,0.022,0.006,0.033,0.009
|
||||
c0.443,0.093,0.945-0.227,1.177-0.546c0.269-0.37,0.15-0.668,0.087-0.78c-0.088-0.153-0.223-0.254-0.396-0.301
|
||||
c0.21-0.115,0.426-0.22,0.646-0.315c0.199,0.255,0.491,0.355,0.759,0.27c0.041-0.014,0.08-0.033,0.117-0.057
|
||||
c0.066-0.044,0.122-0.095,0.166-0.152c0.341,0.191,0.7,0.273,1.072,0.274c-0.331,0.296-0.587,0.641-0.728,0.992
|
||||
c-0.133,0.184-0.122,0.447,0.026,0.624c0.09,0.108,0.227,0.171,0.347,0.171c0.002,0,0.005,0,0.007,0l0.128-0.005
|
||||
c0.12-0.018,0.231-0.07,0.332-0.118c0.251-0.119,0.737-0.34,1.229-0.307c-0.122,0.113-0.225,0.23-0.307,0.349
|
||||
c-0.3,0.431-0.407,0.91-0.313,1.384c0.036,0.178,0.165,0.323,0.341,0.38c0.174,0.051,0.364,0.009,0.494-0.116
|
||||
c0.368-0.351,0.849-0.565,1.351-0.61c-0.042,0.183-0.04,0.359,0.003,0.517c0.012,0.155,0.1,0.299,0.235,0.385
|
||||
c0.206,0.132,0.513,0.076,0.664-0.12c0.287-0.367,0.742-0.608,1.18-0.615c0.328,0,0.625,0.148,0.858,0.428
|
||||
c0,0.001,0.001,0.002,0.002,0.002c-0.051,0.311,0.048,0.581,0.194,0.81c-0.232,0.038-0.436,0.139-0.585,0.298
|
||||
c-0.166,0.176-0.408,0.57-0.165,1.238c0.025,0.067,0.063,0.127,0.114,0.179c0.535,0.536,1.064,0.443,1.356,0.201
|
||||
c0.018-0.015,0.035-0.031,0.052-0.047c0.044,0.091,0.067,0.163,0.071,0.206c0.001,0.012,0.003,0.024,0.005,0.036
|
||||
c-0.085,0.087-0.149,0.185-0.193,0.292l-0.025,0.073c-0.046,0.182-0.054,0.366-0.024,0.563c-0.089-0.019-0.174-0.023-0.252-0.017
|
||||
c-0.261,0.012-0.748,0.138-1.088,0.869c-0.139,0.426-0.039,0.833,0.273,1.117c0.316,0.285,0.799,0.372,1.177,0.21
|
||||
c0.005-0.002,0.009-0.004,0.014-0.006c-0.006,0.021-0.01,0.043-0.012,0.065c-0.061,0.062-0.105,0.14-0.127,0.22
|
||||
c-0.038,0.127-0.021,0.267,0.042,0.38c0.034,0.063,0.081,0.116,0.143,0.16c-0.045,0.12-0.101,0.239-0.166,0.356
|
||||
c-0.012,0.022-0.021,0.044-0.026,0.065c-0.005,0.002-0.009,0.004-0.014,0.007c-0.486,0.271-0.787,0.709-1.078,1.134
|
||||
c-0.172,0.251-0.337,0.49-0.523,0.674C21.738,21.793,21.727,21.78,21.716,21.769z"/>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="16.0335" y1="5.4208" x2="16.0335" y2="27.5461">
|
||||
<stop offset="0" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.2318" style="stop-color:#D6BE77"/>
|
||||
<stop offset="0.3855" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.6006" style="stop-color:#A5935C"/>
|
||||
<stop offset="0.7402" style="stop-color:#423B27"/>
|
||||
<stop offset="0.7667" style="stop-color:#48402A"/>
|
||||
<stop offset="0.8025" style="stop-color:#595033"/>
|
||||
<stop offset="0.8435" style="stop-color:#766943"/>
|
||||
<stop offset="0.8882" style="stop-color:#9D8C58"/>
|
||||
<stop offset="0.8966" style="stop-color:#A5935C"/>
|
||||
<stop offset="1" style="stop-color:#A8A66A"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_1_)" d="M14.463,8.571c-0.606,0.253-1.219,0.552-1.714,0.986c-0.111-0.159-0.289-0.287-0.483-0.348
|
||||
c0.532-0.356,1.193-0.517,1.579-1.058c0.059-0.083,0.213-0.329,0.176-0.403c-0.461-0.925-0.783-1.969-1.226-2.922
|
||||
c0.099,0.015,0.293-0.165,0.373,0.012c0.306,0.944,0.662,1.91,1.058,2.871C14.226,7.709,14.514,8.55,14.463,8.571z M12.812,10.386
|
||||
c-0.173-0.435-0.441-1.081-0.956-0.861c-0.608,0.481,0.081,1.285,0.234,0.696c-0.005-0.114-0.273-0.081-0.244-0.241
|
||||
c0.291-0.546,0.843,0.42,0.344,0.662c-0.565,0.36-1.109-0.479-0.809-0.959c0.427-0.972,1.869-1,2.29-1.944l-0.227-0.548
|
||||
c-0.45,1.086-2.05,1.367-2.628,2.306c0.167,0.156,0.08,0.434-0.128,0.525c0.341,0.42,0.724,0.976,1.216,0.971
|
||||
C12.14,10.983,12.911,10.706,12.812,10.386z M13.214,10.5c0.53,0.176,1.257-0.853,0.457-0.773c-0.091-0.03-0.279,0.209-0.135,0.204
|
||||
c0.154-0.111,0.344,0.145,0.175,0.252c-0.339,0.243-0.75-0.259-0.436-0.541l-0.042-0.077c-0.12,0.081-0.232,0.173-0.336,0.263
|
||||
c0.077,0.188,0.211,0.405,0.233,0.61C13.17,10.478,13.125,10.498,13.214,10.5z M12.578,26.658c0.315-0.781,0.431-1.647,0.729-2.434
|
||||
c0.029-0.212,0.404-0.684,0.058-0.74c-0.266,0.402-0.294,1.026-0.444,1.489C12.873,25.531,12.439,26.114,12.578,26.658z
|
||||
M12.054,23.083c-0.406-0.537-1.357-0.935-1.896-1.376c-0.177,0.193-0.632,0.614-0.886,0.852c0.633,0.67,1.263,1.12,2.052,1.239
|
||||
C11.787,23.874,12.025,23.258,12.054,23.083z M12.841,27.639c0.092,0.015,0.109-0.037,0.129-0.147
|
||||
c0.181-0.65,0.167-1.398,0.603-1.946c-0.107-0.027-0.213-0.056-0.319-0.088c-0.201,0.404-0.155,1.563-0.74,1.507
|
||||
C12.462,27.36,12.323,27.604,12.841,27.639z M8.128,21.69c-0.039,0.07-0.087,0.135-0.144,0.193l0.146,0.178
|
||||
C8.166,21.948,8.143,21.814,8.128,21.69z M16.157,24.414c-0.204-0.342-2.105-0.271-2.454-0.37c-0.095,0.25-0.335,0.964-0.368,1.119
|
||||
c0.712,0.203,1.183,0.276,1.898,0.276C16.118,25.48,16.393,25.293,16.157,24.414z M8.421,20.497
|
||||
c0.044,0.001,0.069-0.008,0.082-0.004l0.011-0.018c0.192-0.032,0.48-0.157,0.54-0.371c-0.424-0.683-0.871-1.374-1.139-2.152
|
||||
c-0.137,0.039-1.045,0.29-1.114,0.309C6.873,18.934,7.583,20.319,8.421,20.497z M7.936,22.307L7.725,22.05
|
||||
c-0.126,0.05-0.279,0.067-0.416,0.044c-0.06,0.027-0.175,0.042-0.206,0.044c-0.046,0.19-0.153,0.358-0.256,0.504
|
||||
c0.082,0.106,0.178,0.202,0.251,0.316C7.331,22.761,7.659,22.523,7.936,22.307z M7.381,16.293c0.238-0.004,0.486-0.015,0.439-0.371
|
||||
c-0.053-0.862-0.059-1.672,0.1-2.404c-0.207-0.039-0.911-0.159-1.127-0.195C6.646,14.142,6.29,16.172,7.381,16.293z M7.208,16.586
|
||||
c0.009,0.241,0.036,0.479,0.08,0.712c0.175-0.052,0.36-0.104,0.537-0.154l-0.097-0.581C7.556,16.6,7.379,16.61,7.208,16.586z
|
||||
M8.513,22.081L8.46,22.017c-0.008,0.064-0.026,0.126-0.054,0.188C8.442,22.164,8.478,22.123,8.513,22.081z M8.976,21.569
|
||||
c-0.133-0.144-0.521-0.571-0.159-0.654c0.193,0.039,0.211,0.331,0.369,0.433c0.1-0.106,0.203-0.213,0.315-0.311L9.104,20.55
|
||||
c-0.009,0.002-0.02,0.003-0.033,0.003c-0.626,0.472-1.202,0.16-1.655-0.362c0.278,0.394,0.661,0.939,1.303,1.66
|
||||
C8.799,21.759,8.883,21.669,8.976,21.569z M9.134,21.346l-0.037,0.032v0.001L9.134,21.346z M22.36,6.95
|
||||
c-0.097,0.211-0.168,0.448-0.298,0.573c0.142,0.118,0.256,0.252,0.409,0.388C22.665,7.588,22.565,7.069,22.36,6.95z M6.493,6.91
|
||||
C6.255,7.05,5.83,7.259,5.96,7.506c0.311,0.49,0.968,0.659,1.398,1.036c1.687,1.04-0.338,2.666-0.288,4.124
|
||||
c0.072,0.014,0.328,0.068,0.328,0.068c0.03-0.212,0.057-0.432,0.154-0.624c-0.554-1.33,1.983-2.572,0.424-3.495
|
||||
c-0.729-0.618-2.51-1.386-0.475-1.732c0.633,0.106,1.314,1.091,1.837,1.452c0.03-0.037,0.061-0.073,0.092-0.109
|
||||
C8.42,7.708,7.797,5.816,6.493,6.91z M23.268,7.222c-0.119,0.337-0.348,0.607-0.598,0.85c0.247,0.129,0.48,0.233,0.771,0.27
|
||||
C23.527,7.969,23.458,7.566,23.268,7.222z M22.106,6.533c0.01-0.044,0.017-0.098,0.011-0.143c-0.225-0.004-0.45-0.007-0.674-0.011
|
||||
C21.374,6.837,22.025,6.923,22.106,6.533z M21.431,6.957c-0.065,0.054-0.095,0.185-0.123,0.321c0.102,0.051,0.567,0.171,0.567,0.171
|
||||
C22.09,6.98,21.715,6.718,21.431,6.957z M22.936,7.204c0.111-0.148,0.29-0.452,0.27-0.857c-0.21-0.003-0.421-0.006-0.631-0.008
|
||||
C22.674,6.492,22.743,7.359,22.936,7.204z M23.913,7.221c0.156-0.234,0.182-0.538,0.18-0.811c-0.188-0.01-0.369-0.01-0.555-0.012
|
||||
c0.149,0.309,0.22,0.691,0.215,1.034C23.815,7.385,23.871,7.284,23.913,7.221z M24.495,6.058c-0.243,0.018-1.021,0.016-2.165,0.016
|
||||
c-1.244,0-1.881-0.074-1.969,0.109c-0.147,0.305-0.304,0.853-0.604,0.981c-0.3,0.128-1.801-0.016-2.139-0.027
|
||||
C17.376,7.13,17.518,6.804,17.09,6.78s-0.445,0.221-0.456,0.358c-0.011,0.125,0.055,0.42,0.419,0.45
|
||||
c0.336,0.028,0.287-0.225,0.658-0.216c0.371,0.009,1.619,0.155,1.925,0.159c0.213,0.003,1.363,0.04,1.786,0.225
|
||||
c0.373,0.163,0.426,0.315,0.797,0.537c0.36,0.215,0.878,0.575,2.057,0.561c-0.013-0.041-0.021-0.081-0.038-0.121
|
||||
c-0.866,0.115-1.652-0.241-2.213-0.893c-0.431-0.555-2.058-0.155-1.8-0.848c0.353-0.669,0.192-0.961,1.148-0.839
|
||||
C21.818,6.061,24.447,6.398,24.495,6.058z M23.949,7.531c-0.112,0.448-0.146,0.748-0.209,0.921c0.15,0.018,0.33,0.025,0.454,0.043
|
||||
c0,0,0.091-0.216,0.092-0.216C24.377,8.033,24.198,7.697,23.949,7.531z M20.906,4.343c0.368,0.376,0.444,1.082,0.192,1.456
|
||||
c-0.104,0-0.13,0.003-0.233,0.001c0-0.001-0.026-0.001-0.026-0.002C20.752,5.808,20.572,5.8,20.441,5.8
|
||||
c-0.05,0.007-0.257,0.012-0.377,0.114c-0.048,0.034-0.103,0.138-0.1,0.138c-0.044,0.082-0.067,0.142-0.084,0.24
|
||||
c-1.125-0.27-1.18-1.631-0.385-2.108c0.053-0.032,0.481-0.134,0.852-0.01C20.551,4.242,20.743,4.288,20.906,4.343z M20.645,5.192
|
||||
c0-0.294-0.238-0.533-0.533-0.533c-0.294,0-0.533,0.238-0.533,0.533c0,0.294,0.238,0.533,0.533,0.533S20.646,5.486,20.645,5.192z
|
||||
M15.609,2.983c-0.072-0.071-0.161,0.044-0.152,0.12c0.042,0.151,0.294,0.098,0.416,0.103c0.517-0.415-0.702-1.17-0.956-0.381
|
||||
c-0.183,0.568,0.268,0.677,1.165,0.901s1.118,2.062,2.592,0.787c-0.119-0.052-0.195-0.165-0.258-0.28
|
||||
c-0.172,0.116-0.615,0.368-0.662,0.331c-0.795,0.062-0.752-1.336-1.925-1.141c-0.997,0.151-0.487-1.114-0.05-0.532
|
||||
C15.783,2.977,15.685,3.058,15.609,2.983z M24.701,8.616c0.081,0.256,0.141,0.554-0.09,0.752c-0.004,0.003-0.008,0.004-0.011,0.007
|
||||
c0.704,0.601,1.316,1.307,1.763,2.109c0.162,0.291,0.245,0.218,0.165-0.114c-0.033-0.136-0.011-0.335-0.051-0.462
|
||||
C26.196,10.012,25.711,9.326,24.701,8.616z M24.791,10.859c0.307-0.075,0.591,0.015,0.841,0.178c0.177,0.116,0.217,0.01,0.072-0.185
|
||||
c-0.378-0.506-0.826-0.96-1.308-1.371c-0.189,0.093-0.234,0.374-0.299,0.55C24.372,10.267,24.624,10.54,24.791,10.859z
|
||||
M26.654,10.262c-0.016-0.182-0.024-0.365-0.029-0.547c-0.188-0.1-0.367-0.216-0.54-0.345c0.012,0.101,0.036,0.202,0.041,0.303
|
||||
c0.147,0.187,0.278,0.386,0.388,0.596C26.59,10.415,26.668,10.414,26.654,10.262z M17.341,8.741
|
||||
c3.163-0.959,1.529,0.828,2.879,1.292c-0.306-0.512-0.362-1.342-0.772-1.749c-0.771-0.175-1.528-0.127-2.221,0.257
|
||||
c-2.432,0.407-2.673-3.595-0.029-2.867c0.581,0.327,1.151,0.469,1.824,0.433c-0.262-0.301-0.443-0.717-0.413-1.12
|
||||
c0.004-0.053-0.076-0.076-0.128-0.037c-0.1,0.076-0.205,0.143-0.327,0.182c-0.029,0.159,0.313,0.625-0.042,0.522
|
||||
c-0.803-0.805-1.764-0.636-2.715,0.147C14.101,7.098,15.596,9.485,17.341,8.741z M18.501,10.312
|
||||
c0.148,0.044,0.296,0.087,0.433,0.156c0.269-0.171,0.673-0.068,0.365-0.474c-0.13-0.299-0.144-0.898-0.518-1.007
|
||||
c-0.98,0.034-2.002,0.743-2.351,1.666c-0.006,0.005-0.012,0.01-0.018,0.015c0.003,0.003,0.005,0.006,0.008,0.008
|
||||
c0.006-0.004,0.013-0.007,0.019-0.011C16.495,10.726,17.474,10.004,18.501,10.312z M18.972,28.031
|
||||
c0.198,0.042-0.026-0.391-0.224-0.936c-0.055-0.15-0.095-0.117-0.116,0.034c-0.022,0.155-0.086,0.286-0.217,0.375
|
||||
C18.45,27.894,18.589,28.028,18.972,28.031z M17.256,24.834c-0.042-0.152-0.066-0.445-0.129-0.588
|
||||
c-0.222,0.036-0.446,0.066-0.669,0.093c0.065,0.159,0.091,0.297,0.083,0.436c0,0.02-0.001,0.04-0.002,0.061L17.256,24.834z
|
||||
M18.517,26.098c-0.006-0.222,0.035-0.427,0.153-0.594c-0.105,0.031-0.21,0.063-0.315,0.088c0.007,0.137,0.057,0.321,0.114,0.522
|
||||
C18.498,26.217,18.52,26.207,18.517,26.098z M20.502,23.638c-0.576-0.636-1.681,0.57-2.456,0.554
|
||||
c0.051,0.234,0.196,0.894,0.242,1.102C19.032,24.974,21.086,24.882,20.502,23.638z M10.039,21.301
|
||||
c-0.148-0.706-2.152,2.069-2.442,2.367c0.011,0.025,0.015,0.053,0.018,0.08C8.353,22.892,9.392,22.207,10.039,21.301z M7.414,21.8
|
||||
c0.253-0.004,0.491-0.174,0.503-0.448c-0.636-0.586-1.087-2.191-2.141-1.532C6.247,20.533,6.592,21.532,7.414,21.8z M5.384,19.996
|
||||
c0.233,0.797,1.148,1.418,1.348,2.253c0.3-0.597-0.977-1.422-1.235-2.302C5.459,19.963,5.421,19.98,5.384,19.996z M7.413,24.048
|
||||
c-0.029,0.212,0.02,0.417,0.136,0.569c0.505-0.583,0.896-1.447,1.692-1.645c-0.065-0.066-0.129-0.133-0.19-0.202
|
||||
C8.514,23.113,8.073,24.107,7.413,24.048z M27.674,20.378c1.198-1.046-1.476-0.614-1.735-1.284c-0.02,0.058-0.097,0.26-0.097,0.26
|
||||
c0.43,0.219,1.909,0.25,1.596,0.959C27.515,20.341,27.6,20.379,27.674,20.378z M28.501,11.87c0.084,0.654,0.241,1.353,0.479,2.138
|
||||
c0.177-0.044,0.783-0.185,0.991-0.225c-0.398-0.919-0.041-2.091-0.172-3.128C29.097,10.049,28.498,11.257,28.501,11.87z
|
||||
M22.931,23.414c0.259,0.457,1.265,1.022,0.82,1.589c0.065,0.069,0.164,0.108,0.273,0.108c1.035-0.29-0.998-1.308-0.823-1.97
|
||||
C23.115,23.233,23.021,23.325,22.931,23.414z M23.853,19.33c1.079,0.306,2.07,0.57,3.128,0.892c0.888-0.196-2.862-0.938-3.12-1.07
|
||||
L23.853,19.33z M25.45,20.694c0.086,0.036,0.175,0.072,0.26,0.109l0.144-0.238C25.693,20.521,25.481,20.511,25.45,20.694z
|
||||
M26.316,21.518c0.276-0.108,0.689,0.027,0.942,0.124c0.102-0.149,0.23-0.303,0.268-0.478c-0.603-0.14-0.144-0.025-1.377-0.494
|
||||
l-0.179,0.296C26.069,21.055,26.289,21.254,26.316,21.518z M25.318,20.965c-0.185,0.35-0.443,0.765-0.786,1.19
|
||||
c-0.508,0.548-0.634,0.879,0.21,1.463C25.166,22.838,26.913,21.436,25.318,20.965z M3.887,13.157
|
||||
c0.829,0.252,1.746,0.062,2.549,0.349c0.014-0.061,0.054-0.231,0.054-0.231c-0.467-0.203-2.109,0.102-1.767-0.737
|
||||
C4.313,12.359,4.033,12.84,3.887,13.157z M7.762,7.316c-0.263-0.272-0.605-0.01-0.896,0.093c0.663,0.565,1.379,0.985,1.935,1.696
|
||||
c0.045-0.058,0.091-0.119,0.145-0.17C8.67,8.587,7.098,7.567,7.762,7.316z M7.698,12.796c0.085,0.017,0.459,0.092,0.459,0.092
|
||||
l0.04-0.292c-0.154-0.035-0.279-0.107-0.42-0.218C7.739,12.521,7.716,12.666,7.698,12.796z M8.62,11.986
|
||||
c0.351-0.881,0.779-1.608,1.306-2.22C9.843,9.691,9.733,9.585,9.643,9.507L9.64,9.51C9.51,9.403,9.32,9.227,9.183,9.122
|
||||
c-0.401,0.661-2.248,2.726-0.893,3.176C8.454,12.298,8.561,12.122,8.62,11.986z M10.13,10.527c-0.079-0.076-0.166-0.145-0.251-0.212
|
||||
c-0.614,0.629-0.727,1.735-1.374,2.248c-0.005,0.145-0.042,0.29-0.055,0.435c0.193,0.119,0.156,0.436-0.053,0.517
|
||||
c0.026,0.437,0.11,0.954,0.498,1.131c1.565,0.047,0.371-1.809,0.098-0.96c-0.13,0.289,0.218,0.513,0.267,0.251
|
||||
c-0.154-0.058-0.087-0.297,0.064-0.292c0.241,0.026,0.351,0.37,0.181,0.543c-0.463,0.371-0.866-0.084-0.826-0.766
|
||||
C8.77,12.233,9.31,11.156,10.13,10.527z M11.218,11.051c-0.324-0.275-0.586-0.613-0.849-0.938c-0.084-0.011-0.163-0.073-0.223-0.132
|
||||
c-0.027,0.032-0.054,0.064-0.081,0.097c0.408,0.289,0.702,0.707,1.011,1.091C11.125,11.139,11.172,11.092,11.218,11.051z
|
||||
M9.761,20.253c1.163,0.007,0.574-1.65-0.257-0.967c0.025,0.176,0.421,0.601,0.483,0.23c-0.007-0.03-0.026-0.03-0.049-0.028
|
||||
c-0.275,0.081-0.257-0.356,0.015-0.312c1.035,0.288-0.514,1.93-1.019-0.634c-0.177-0.03-0.342-0.124-0.498-0.287
|
||||
c-0.05-0.052-0.092-0.017-0.057,0.063c0.247,0.573,0.703,1.152,0.976,1.766C9.479,20.223,9.644,20.253,9.761,20.253z M8.12,17.063
|
||||
c0.475-0.151,0.792,0.435,0.324,0.706c0.208,0.327,0.419,0.486,0.644,0.486c1.713-0.081,0.674-1.674-0.13-1.154
|
||||
c0.041,0.264,0.251,0.617,0.46,0.406c0.016-0.017-0.003-0.039-0.029-0.041c-0.129-0.006-0.233-0.195-0.087-0.277
|
||||
c0.282-0.181,0.591,0.186,0.407,0.447c-1.382,1.093-1.16-2.042-1.228-2.91c-0.161-0.214-0.276-0.46-0.337-0.715
|
||||
C7.945,14.792,8.3,15.662,8.01,16.405L8.12,17.063z M9.857,12.493c-0.331,0.83,0.471,0.65,0.5,0.482
|
||||
c0.006-0.033-0.078-0.029-0.101-0.01c-0.119,0.094-0.336-0.079-0.26-0.211c0.142-0.338,0.761-0.171,0.667,0.219
|
||||
c-0.855,1.543-1.9-1.159-0.098-1.955c-0.072-0.09-0.146-0.18-0.223-0.267c-0.687,0.506-1.171,1.391-1.338,2.445
|
||||
c0.294-0.11,0.649,0.066,0.794,0.334c0.167,0.09,0.3,0.282,0.492,0.313C11.478,13.838,10.899,11.666,9.857,12.493z M9.846,7.641
|
||||
c0.644-0.154,1.137-0.734,1.707-1.081c0.364-0.263,0.084-0.686-0.069-0.978C10.994,5.961,8.502,7.038,9.846,7.641z M7.999,7.536
|
||||
C7.95,7.578,7.896,7.598,7.841,7.621C8.66,8.393,9.64,8.999,10.409,9.814c0.053-0.04,0.123-0.056,0.106-0.118
|
||||
C10.421,9.36,8.917,8.406,7.999,7.536z M8.226,13.079c-0.735-0.144-2.373-0.304-3.203-0.443c-0.067,0.077-0.079,0.158,0.013,0.219
|
||||
c0.144,0.072,0.292,0.101,0.509,0.117c1.113,0.082,2.66,0.398,2.698,0.322C8.288,13.204,8.304,13.185,8.226,13.079z M7.945,6.413
|
||||
c0.466,0.395,0.899,1.042,1.424,1.401c0.075,0.051,0.114,0.042,0.03-0.032C9.193,7.6,9.094,7.294,9.184,7.028
|
||||
C8.724,6.928,8.438,5.872,7.945,6.413z M4.731,18.423c-0.196,0.057-0.41,0.128-0.372,0.365c0.01,0.14-0.026,0.339,0.04,0.418
|
||||
c0.745-0.097,1.372-0.593,2.13-0.67c-0.002-0.013-0.026-0.17-0.028-0.188C5.879,18.374,4.901,19.339,4.731,18.423z M5.035,18.317
|
||||
c0.011,0.06,0.015,0.131,0.028,0.189C9.361,17.249,9.322,16.922,5.035,18.317z M8.651,6.127c0.197,0.262,0.377,0.419,0.611,0.606
|
||||
h0.003L9.27,6.734V6.732c0.02,0.001,0.049-0.005,0.063,0.006c0.534-0.646,1.328-0.974,2.012-1.426
|
||||
c-0.127-0.25-0.22-0.473-0.375-0.724C10.165,5.034,9.268,5.416,8.651,6.127z M6.218,12.041c0.084,0.02,0.163,0.04,0.255,0.043
|
||||
c0.103,0.003,0.234-0.013,0.286-0.095c-0.173,0.005-0.336-0.05-0.492-0.147L6.218,12.041z M7.376,10.663
|
||||
c0.251-0.449,0.515-0.929,0.265-1.39L7.64,9.275C7.541,9.067,7.363,8.946,7.194,8.8c-0.34,0.677-1.594,2.556-0.503,2.88
|
||||
C7.131,11.667,7.107,10.956,7.376,10.663z M5.106,20.111c-0.014,0.005-0.118,0.042-0.118,0.042c-0.222-0.066-0.466,0.184-0.565,0.35
|
||||
c-0.183,0.242,0.314,0.879,0.359,1.054c0.071,0.315,0.451,0.29,0.707,0.249c0.695,0.131,0.723,1.175,0.044,1.202
|
||||
C5.354,23.02,4.993,22.8,5.07,22.553c0.061-0.098,0.233-0.094,0.278,0.019c0.123,0.247,0.465,0.083,0.37-0.159
|
||||
c-0.393-0.89-1.623,0.565-0.279,0.923c0.353,0.019,0.671-0.197,0.842-0.483C6.838,21.819,5.314,21.105,5.106,20.111z M6.655,22.887
|
||||
c-0.21,0.22-0.454,0.524-0.133,0.763c0.104-0.175,0.216-0.343,0.362-0.489C6.789,23.087,6.73,22.978,6.655,22.887z M8.237,25.008
|
||||
c1.135-2.393,2.666-0.635,4.389-0.114c0.054-0.214,0.229-0.91,0.289-1.166c-0.253-0.044-0.485-0.122-0.69-0.232
|
||||
c-0.617,1.341-1.995,0.112-2.847-0.24c-0.771,0.054-1.205,1.355-1.817,1.745c-1.076-0.625-0.033-1.82,0.522-2.417
|
||||
c-0.666,0.505-1.795,1.152-1.179,2.118c0.145,0.352,0.335,0.974,0.681,0.937C7.819,25.649,8.075,25.371,8.237,25.008z M7.08,19.736
|
||||
c-0.2-0.311-0.361-0.638-0.472-0.9c-0.674-0.104-2.318,1.319-2.543,0.31c-0.072-0.425,0.003-0.898,0.5-0.993
|
||||
c0.597-0.208,1.21-0.392,1.807-0.579c-0.031-0.062-0.059-0.124-0.084-0.187c-0.587,0.453-1.517,0.264-2.14,0.677
|
||||
c-0.492,0.142-0.682,1.833-0.069,2.035C6.271,19.34,6.574,19.125,7.08,19.736z M7.917,25.804c-0.068,0.061-0.143,0.118-0.229,0.172
|
||||
c0.363,0.551,0.906,0.993,1.534,1.247c0.606,0.126,1.553,0.813,0.838,1.407c-0.284,0.27-1.044-0.289-0.561-0.493
|
||||
c0.066,0,0.138,0.041,0.15,0.133c0.068,0.245,0.411,0.057,0.353-0.121c-0.567-1.237-1.739,0.762-0.164,0.885
|
||||
c0.517-0.009,0.994-0.454,1.073-0.967C10.895,26.882,8.517,26.89,7.917,25.804z M4.013,17.308c-0.002,0.147,0.044,0.294,0.098,0.432
|
||||
c0.067-0.032,0.136-0.059,0.205-0.086c-0.026-0.093-0.106-0.352-0.139-0.475C4.104,17.19,4.053,17.267,4.013,17.308z M11.166,25.25
|
||||
c0.238-0.026,0.503-0.148,0.615-0.355c-0.775-0.247-2.01-1.451-2.664-0.581C9.772,24.672,10.433,25.09,11.166,25.25z M10.464,26.861
|
||||
c0.253,0.014,0.329-0.265,0.328-0.348c-0.072-0.824-1.596-1.052-2.168-1.536C7.706,26.139,9.671,26.591,10.464,26.861z
|
||||
M4.608,17.561c0.08-0.022,0.16-0.042,0.24-0.061c-0.043-0.179-0.079-0.36-0.106-0.54c-0.078,0.075-0.166,0.13-0.263,0.164
|
||||
L4.608,17.561z M5,11.757c0.067,0.014,0.685,0.138,0.921,0.211c0.033-0.125,0.063-0.296,0.11-0.397
|
||||
c-0.034-0.1-0.055-0.197-0.065-0.291c-0.272,0.128-0.626,0.208-0.94,0.149C5.017,11.538,5.02,11.648,5,11.757z M3.439,14.174
|
||||
c-0.175-0.023-0.381-0.015-0.511-0.209c-0.774,1.634,0.286,3.207-0.309,4.329c-0.536,0.793-1.784-0.079-1.058-0.761
|
||||
c0.103-0.08,0.255-0.022,0.296,0.099c0.069,0.138-0.148,0.224-0.129,0.348c0.089,0.568,0.851,0.073,0.708-0.324
|
||||
c-0.152-0.778-1.134-0.724-1.447-0.181c-0.474,0.915,0.42,1.807,1.362,1.77C4.747,19.173,2.524,15.647,3.439,14.174z M4.61,11.049
|
||||
c0.229,0.048,0.472,0.093,0.702,0.093C6.318,11.221,6.22,9.37,6.943,8.623c-0.2-0.135-0.402-0.256-0.615-0.384
|
||||
c-0.875,0.548-0.658,2.484-1.519,2.522c-0.503,0.053-0.813-0.798-0.218-0.867c0.266-0.017,0.248,0.368-0.011,0.318
|
||||
c-0.055,0.127,0.12,0.254,0.217,0.24c0.248-0.001,0.282-0.287,0.342-0.474C5.27,9.726,4.755,9.495,4.504,9.483
|
||||
c-0.461,0.045-0.579,0.825-0.484,1.184C4.115,10.946,4.447,10.986,4.61,11.049z M3.93,17.027c0.192,0.01,0.423-0.176,0.575-0.218
|
||||
c0.414-0.581-0.072-1.861,0.069-2.622c-0.948-0.306-1.037,0.468-0.934,1.19C3.75,15.784,3.511,16.884,3.93,17.027z M5.28,9.497
|
||||
c0.149-0.495,0.362-1.038,0.783-1.429C6.01,8.031,5.954,7.99,5.903,7.942c-0.183,0.18-0.371,0.365-0.49,0.56
|
||||
c0.043,0.301-0.427,0.521-0.599,0.241c-0.06-0.148,0.125-0.286,0.254-0.176C5.222,8.136,3.733,8.597,5.28,9.497z M6.667,17.483
|
||||
l0.327-0.098c-0.059-0.271-0.089-0.564-0.092-0.893c-0.735-0.58-0.576-1.795-0.524-2.66c-0.8-0.41-2.074,0.014-2.768-0.522
|
||||
c-0.104-0.657,0.782-1.43,1.435-0.982c0.579,0.081,1.158,0.176,1.723,0.281c0.008-0.092,0.019-0.183,0.033-0.275
|
||||
c-0.8,0.183-1.71-0.38-2.522-0.377c-0.664-0.111-2.105,2.012-0.756,1.863C7.505,13.783,5.6,14.853,6.667,17.483z M4.848,14.221
|
||||
c-0.026,1.026,0.137,2.104,0.297,3.209c0.267-0.113,0.895-0.002,0.936-0.414c0,0-0.089-1.196-0.125-1.567
|
||||
c-0.04-0.386,0.066-1.165-0.467-1.145v-0.002C5.355,14.28,4.988,14.237,4.848,14.221z M11.892,25.257
|
||||
c-0.927,0.753-2.046-0.258-2.962-0.697c-0.045,0.057-0.089,0.115-0.131,0.174c4.036,1.765,1.13,1.885,2.701,2.602
|
||||
C11.448,26.679,12.222,25.832,11.892,25.257z M21.972,24.377c0.4,1.163-1.512,1.601-2.24,2.088c0.02,0.079,0.043,0.158,0.067,0.236
|
||||
c0.683-0.27,1.38-0.622,2.187-1.105c0.265-0.177,0.489-0.004,0.643,0.232c0.191,0.35,0.561,0.396,0.728,0.017
|
||||
c-0.517-0.455-0.94-1.031-1.298-1.544C22.03,24.327,22.001,24.352,21.972,24.377z M20.251,27.465l0.086,0.162
|
||||
c0.461-0.356,1.718-0.188,1.687,0.515c-0.106,0.242-0.609,0.388-0.635-0.1c-0.015-0.059,0.019-0.187-0.019-0.225
|
||||
c-0.487,0.155-0.263,0.879,0.139,0.977C23.604,28.347,21.547,26.346,20.251,27.465z M23.948,23.323
|
||||
c-0.625-0.84,1.31-2.168,1.449-3.338c-0.198-0.075-0.38-0.142-0.566-0.196c-0.154,0.275-0.292,0.555-0.419,0.857
|
||||
c0.417,1.206-1.687,2.062-0.561,3.118c0.537,0.442,1.362,1.482,0.158,1.664c-0.734-0.152-1.088-1.001-1.614-1.476
|
||||
c-0.031,0.05-0.076,0.088-0.116,0.13c0.563,0.7,0.91,1.463,1.676,1.717C26.395,24.912,25.292,24.568,23.948,23.323z M22.235,25.822
|
||||
c-0.764,0.411-1.523,0.859-2.342,1.172l0.091,0.26c0.809-0.285,1.616-0.662,2.463-1.152C22.39,26.019,22.31,25.831,22.235,25.822z
|
||||
M26.582,21.779c-0.579,0.152-1.062,1.662-1.537,2.074c0.094,0.078,0.217,0.187,0.336,0.313c0.591-0.447,0.662-1.937,1.548-1.943
|
||||
c0.26-0.02,0.542,0.066,0.63,0.339c0.218,0.725-1.066,0.58-0.504,0.179c0.134,0.075,0.298,0.01,0.176-0.152
|
||||
c-0.688-0.25-0.793,1.026,0.116,0.761c0.434-0.123,0.732-0.781,0.389-1.159C27.362,22.013,27.012,21.82,26.582,21.779z
|
||||
M30.982,14.203c-0.805-0.464-1.802,0.101-2.812,0.412c-0.341,0.141-0.422,0.491-0.253,1.106c0.21,1.002,0.157,2.041,0.065,3.017
|
||||
c0.084,0.009,0.169,0.021,0.253,0.033l0.082,0.012c0.601-1.341-1.021-4.602,1.653-3.956c0.077-0.537,0.843-0.638,0.997-0.072
|
||||
c0.083,0.192-0.066,0.53-0.281,0.331c-0.044-0.104-0.003-0.255-0.078-0.362c-0.106-0.091-0.264-0.04-0.316,0.085
|
||||
c-0.046,0.23,0.34,0.542,0.543,0.588C31.363,15.338,31.255,14.52,30.982,14.203z M17.447,25.699c0,0-0.099-0.44-0.125-0.562
|
||||
c-0.205,0.008-0.618,0.003-0.828,0.003c-0.259,1.155-1.851,0.322-2.674,0.579c-0.422,0.542-0.361,1.31-0.58,1.938
|
||||
c-0.117,0.441-0.609,0.274-0.922,0.14c-0.43-0.357,0.107-2.098,0.24-2.606c-0.162-0.059-0.322-0.12-0.482-0.182
|
||||
c0.917,1.396-1.867,2.697,1.171,3.803c0.027,0,0.049-0.008,0.058-0.011C14.104,24.799,13.671,26.074,17.447,25.699z M26.284,17.999
|
||||
c-0.131-1.284,0.251-2.755-0.611-3.851c-0.549-0.747-1.811-2.851-2.572-1.432c-0.264,0.823,1.498,1.384,1.639,2.835
|
||||
c1.389,0.398,1.487,1.625,1.341,2.939c-0.057,1.059,1.565,0.554,2.097,1.092c0.229,0.36-0.024,1.092-0.494,1.112
|
||||
c-0.204-0.022-0.428-0.131-0.62-0.169c-0.493-0.014-0.931-0.268-1.383-0.429c-0.016,0.047-0.031,0.093-0.048,0.14
|
||||
c0.698,0.009,1.302,0.568,1.987,0.624c0.607-0.157,1.074-0.848,1.424-1.352C28.374,18.599,26.427,19.505,26.284,17.999z
|
||||
M28.631,15.655c-0.015,1.069,0.385,2.142-0.016,3.196c0.088,0.027,0.175,0.063,0.264,0.109c0.672-0.983-0.048-2.216,0.363-3.199
|
||||
c0.408-0.62,1.336,0.049,0.81,0.578c-0.141,0.141-0.358-0.096-0.208-0.225c0.207-0.231-0.193-0.42-0.342-0.192
|
||||
c-0.302,0.322,0.106,0.812,0.417,0.759c0.688-0.002,0.802-0.968,0.326-1.328C29.833,14.916,28.733,14.879,28.631,15.655z
|
||||
M14.028,27.682c-0.112,0.02-0.15,0.171-0.15,0.171c-0.042,0.181,0.012,0.44,0.095,0.615c0.199,0.325,0.912,0.217,1.258,0.313
|
||||
c0.343-0.089,0.182-0.62,0.862-0.633c0.805-0.015,0.944,0.99,0.128,1.011c-0.269,0.042-0.253-0.353,0.027-0.3
|
||||
c0.232-0.009,0.279-0.343,0.034-0.4c-0.139-0.024-0.35-0.014-0.434,0.106c-0.14,0.295-0.003,0.939,0.42,0.884
|
||||
c0.67,0.031,0.972-0.683,0.692-1.212C16.441,27.211,14.899,28.054,14.028,27.682z M13.969,26.929c0.21,0.009,0.42,0.013,0.63,0.013
|
||||
c0.664-0.006,1.36-0.032,2.027-0.136c0.173-0.139,0.027-0.53,0.034-0.739C15.79,26.255,14.075,25.632,13.969,26.929z M17.017,26.761
|
||||
c0.116-0.012,0.223-0.021,0.339-0.035c-0.027-0.145-0.101-0.563-0.124-0.701c-0.071,0-0.173,0.011-0.267,0.021
|
||||
C16.98,26.227,17.011,26.613,17.017,26.761z M21.724,24.571c-0.598,0.564-1.823,0.76-2.058,1.582
|
||||
C20.297,25.782,21.89,25.245,21.724,24.571z M22.196,23.727l-0.366-0.415c-0.291,0.228-0.595,0.444-0.905,0.643
|
||||
c0.112,1.231-1.518,0.97-2.003,1.72c-0.418,0.898,0.524,1.675,0.428,2.509c-0.216,0.279-0.771,0.138-1.041-0.033
|
||||
c-0.131-0.171-0.135-0.396-0.197-0.594c-0.153-0.037-0.235-0.162-0.286-0.301c0.088,1.437,0.697,1.405,1.978,1.511
|
||||
c0.306-0.009,0.292-0.194,0.193-0.504C18.473,24.748,20.202,25.765,22.196,23.727z M13.937,27.233l-0.021,0.264
|
||||
c0.989,0.124,2.213-0.352,3.071,0.204c0.203,0.006,0.428-0.021,0.611-0.091c-0.042-0.184-0.094-0.376-0.158-0.585
|
||||
C16.294,27.157,15.133,27.303,13.937,27.233z M21.625,23.082c-0.079-0.089-0.174-0.219-0.25-0.283
|
||||
c-0.247,0.185-0.516,0.331-0.773,0.497c0.115,0.109,0.185,0.203,0.243,0.342C21.108,23.464,21.369,23.277,21.625,23.082z
|
||||
M22.501,14.896c0.78,0.784,1.125-0.573,0.506-0.225c0.302,0.281-0.309,0.418-0.328,0.058c-0.009-1.237,1.399,0.339,1.444,0.833
|
||||
c0.1-0.033,0.2-0.05,0.297-0.052C24.09,13.674,21.918,13.574,22.501,14.896z M24.173,18.922c0.594-0.961-0.982-2.761-1.649-1.344
|
||||
c-0.26,0.796,0.98,1.026,0.983,0.383c-0.16,0.033-0.433,0.111-0.544-0.044c-0.089-0.158-0.064-0.406,0.07-0.48
|
||||
c0.697-0.194,1.176,0.977,0.96,1.443L24.173,18.922z M23.898,16.13c-0.238,0.935,1.15,1.845,0.575,2.864
|
||||
c0.213,0.054,0.881,0.226,1.074,0.278c0.326-0.834,0.528-2.254-0.219-3.025C25.116,15.931,24.138,15.546,23.898,16.13z
|
||||
M24.523,19.705c-0.147-0.039-0.294-0.078-0.439-0.125c-0.062,0.2-0.148,0.399-0.255,0.591c0.148,0.058,0.277,0.152,0.36,0.223
|
||||
C24.287,20.159,24.414,19.932,24.523,19.705z M23.733,11.955c-0.024-0.026-0.054-0.047-0.083-0.069
|
||||
c-1.2,0.186-1.596-0.78-2.707-0.662c-0.409,0.334-0.975,0.812-0.791,1.376c-0.002,0.004-0.004,0.007-0.006,0.011
|
||||
c0.003-0.003,0.006-0.006,0.008-0.01c0.638-0.82,1.967-1.22,2.816-0.199C23.145,12.161,23.426,11.95,23.733,11.955z M24.592,10.929
|
||||
c-0.154-0.246-0.342-0.47-0.555-0.667c-0.121,0.47-0.016,0.964,0.063,1.18C24.151,11.326,24.303,11.051,24.592,10.929z
|
||||
M23.923,9.121c-0.774-0.049-1.558-0.172-2.081-0.803c-0.734-0.615-1.768-0.428-2.657-0.532c-0.511,0.01-1.056-0.163-1.55-0.084
|
||||
c-0.546,0.44-1.411,0.106-1.348-0.644c0.062-0.673,1.091-0.756,1.411-0.223c0.657-0.04,1.734,0.389,2.127-0.297
|
||||
c-0.656-0.317-1.45-0.132-2.113-0.361c-0.406-0.261-0.855-0.46-1.349-0.351c-1.787,0.431-0.507,3.13,1.011,2.441
|
||||
c0.594-0.428,1.302-0.278,1.983-0.222c0.352,0.003,0.451,0.353,0.571,0.623c0.274,0.631,0.65,2.339,1.546,1.944
|
||||
c-0.015-0.368-0.03-0.955,0.218-1.242c0.069-0.127,0.391-0.468,0.433-0.162c-0.284,1.26,0.179,2.402,1.443,2.196
|
||||
c-0.159-0.715-0.025-1.487,0.336-2.122C23.918,9.23,23.925,9.176,23.923,9.121z M21.081,7.253c-0.009-0.407-0.491-0.256-0.523,0.003
|
||||
C20.691,7.255,20.882,7.255,21.081,7.253z M18.597,4.113c0.044,0.068,0.092,0.154,0.143,0.194c0.002,0,0.009,0.003,0.012,0.004
|
||||
c1.287-0.994,2.348,0.218,2.306-0.427c0.004-0.026,0.007-0.053,0.009-0.079c-0.405-0.107-0.843-0.252-1.265-0.207
|
||||
C19.367,3.673,18.967,3.878,18.597,4.113z M23.596,20.436c-0.711,0.397-0.995,1.351-1.678,1.888
|
||||
c0.163,0.166,0.651,0.685,0.812,0.862C23.231,22.597,25.042,20.812,23.596,20.436z M17.951,12.374
|
||||
c0.568-0.541,1.378-0.852,2.193-0.752c0.054-0.23,0.608-0.323,0.448-0.555c-0.489-0.197-0.495-0.483-0.899-0.618
|
||||
C18.79,10.595,17.758,11.41,17.951,12.374z M20.986,6.341c-0.174,0-0.298,0.115-0.361,0.267c-0.013,0.031-0.027,0.061-0.034,0.095
|
||||
c0.004,0.002,0.007,0.004,0.011,0.006C20.624,6.766,21.081,6.584,20.986,6.341z M17.737,24.197l-0.041,0.027
|
||||
c0.003-0.032,0.008-0.121,0.017-0.148c-0.719-1.345,0.286,3.069,0.489,3.175C18.625,27.259,17.742,24.636,17.737,24.197z
|
||||
M23.633,24.731c-0.416-0.842-1.409-1.57-1.981-2.239c-0.079-0.098-0.212-0.287-0.3-0.38c-0.106,0.07-0.103,0.076-0.02,0.171
|
||||
c0.741,0.796,1.444,1.726,2.211,2.472L23.633,24.731z M26.511,15.383c0.237-0.294,0.722-0.327,1.01-0.174
|
||||
c-0.237-1.431-0.987-3.687-2.521-4.097c-0.529-0.036-0.864,0.579-0.679,1.032C25.336,12.985,26.308,14.173,26.511,15.383z
|
||||
M25.903,7.36c0.002-0.104,0.003-0.207,0.004-0.239c0.031-0.242,0.237-0.871,0.475-1.145c0.186-0.61-0.071-1.658,0.259-2.243
|
||||
c0.266-0.832-1.298,0.607-1.702,2.119c-0.028,0.103,0.094,0.143,0.018,0.31c-0.025,0.054-0.1,0.118-0.105,0.177
|
||||
c-0.014,0.17-0.008,0.339,0.021,0.501C25.247,6.952,25.585,7.138,25.903,7.36z M14.937,8.625c0.045,0.103,0.158,0.26,0.288,0.217
|
||||
c0.034-0.022,0.031-0.103,0-0.23c-0.055-0.225-0.322-0.568-0.508-1.015c-0.145-0.35-0.211-0.898-0.394-1.305
|
||||
c-0.779-1.724-1.425-3.32-0.875-3.469c0.384-0.104,0.527,0.32,0.19,0.227c-0.009,0.014-0.022,0.026-0.04,0.032
|
||||
c0.106,0.871,1.205-0.225,0.179-0.568c-1.392-0.242-0.839,1.377-0.438,2.07c0.393,0.981,0.683,1.862,1.034,2.795
|
||||
C14.533,7.802,14.784,8.2,14.937,8.625z M17.726,4.237c0.992-0.766,2.112-1.304,3.36-0.902c-0.166-0.794-0.839-1.519-1.704-1.19
|
||||
c0.008,0.184,0.469,1.278,0.027,0.976c-0.215-0.628-0.946-0.703-1.533-0.625c0.034,0.2,0.732,1.193,0.232,1.015
|
||||
c-0.316-0.455-0.945-0.653-1.463-0.453c-0.007-0.003-0.021,0.015-0.025,0.019c-0.004,0.009-0.006,0.018-0.006,0.027
|
||||
c0.001,0.002,0.003,0.008,0.003,0.012c0.066,0.145,0.355,0.425,0.582,0.7c0.14,0.17,0.252,0.341,0.333,0.432
|
||||
C17.57,4.292,17.692,4.263,17.726,4.237z M14.952,2.439c0.608-0.429,1.306,0.026,1.24,0.725c-0.005,0.013,0.239,0.057,0.227,0.022
|
||||
c0.022-0.019,0.035-0.05,0.044-0.078c0,0,0.001,0,0.002,0.001c0.052-0.141,0.06-0.297,0.02-0.422
|
||||
c-0.206-0.7-1.125-1.121-1.719-0.634c-0.527,0.35-0.194,1.118-0.605,1.476c-0.202,0.131-0.472,0.089-0.652-0.061
|
||||
c0.425,1.105,0.725,1.714,1.108,2.792c0.138-1.085,1.14-1.307,2.216-1.456c0,0-0.498-0.754-0.833-0.854
|
||||
c-0.335-0.1-1.081-0.2-1.241-0.497C14.583,3.127,14.606,2.641,14.952,2.439z M16.638,3.059c0.002-0.001,0.005,0,0.007-0.001
|
||||
c0,0,0.001-0.001,0.001-0.001C16.644,3.058,16.642,3.058,16.638,3.059z M9.631,8.459c0.53,0.397,0.652,0.488,0.984,0.8
|
||||
c0.52-1.017,2.78-1.287,2.562-2.71l-0.664-1.608c-0.179-0.299,0.153-0.453,0.377-0.423c0.029-0.012,0.058-0.034,0.052-0.108
|
||||
l0.021-0.034c-0.168-0.306-0.301-0.803-0.372-1.128c-0.408,0.055-1.545-0.191-1.664,0.263c0.119,0.871,0.874,1.75,1.115,2.614
|
||||
C11.922,7.261,10.219,7.54,9.631,8.459z M16.636,3.059L16.634,3.06L16.636,3.059L16.636,3.059z M7.607,5.624
|
||||
c1.112-0.334,1.759-1.591,2.986-1.787c-0.025-0.089-0.041-0.182-0.051-0.281C9.886,3.633,9.247,3.921,8.739,4.368
|
||||
C8.348,4.847,7.328,5.4,7.105,4.485c-0.088-0.358,0.63-0.784,0.708-0.324c-0.022,0.123-0.139,0.146-0.24,0.113
|
||||
C6.927,4.679,8.371,4.991,8.119,4.028C7.088,2.609,5.93,5.328,7.607,5.624z M8.011,5.996c0.121-0.055,0.253-0.078,0.378-0.042
|
||||
c0.654-0.76,1.583-1.171,2.442-1.639c-0.035-0.075-0.063-0.145-0.084-0.21C9.723,4.643,8.838,5.232,7.979,5.939
|
||||
C7.852,6.044,7.87,6.06,8.011,5.996z M28.096,11.132c-0.059-0.416-0.36-0.602-0.631-0.602c-1.544,0.385,0.182,3.04,0.253,4.035
|
||||
c0.255-0.29,0.747-0.409,0.968-0.468C28.273,12.821,28.073,11.15,28.096,11.132z M27.353,9.995
|
||||
c-0.175-0.036-0.347-0.099-0.509-0.171c0.007,0.169,0.018,0.338,0.035,0.507c0.005,0.051,0.089,0.093,0.129,0.069
|
||||
c0.132-0.082,0.289-0.133,0.442-0.131C27.446,10.256,27.392,10.104,27.353,9.995z M27.679,18.711
|
||||
c-0.013-0.701,0.386-3.119-0.454-3.269c-0.258,0.012-0.547,0.052-0.685,0.395C26.756,16.922,25.93,18.565,27.679,18.711z
|
||||
M28.001,10.094c-0.175-0.01-0.23-0.024-0.402-0.061c0.03,0.083,0.059,0.166,0.089,0.249c0.151,0.021,0.176,0.071,0.297,0.162
|
||||
c0.049,0.037,0.096-0.002,0.079-0.067C28.039,10.284,28.019,10.189,28.001,10.094z M22.211,4.727
|
||||
c-0.181,0.105-0.538,0.039-0.726-0.068c0.247,0.43,0.12,0.858-0.045,1.14c0.931-0.003,1.861-0.004,2.792-0.011
|
||||
c-0.15-0.205,0.007-0.482,0.011-0.705c-0.092-0.42-0.823-0.125-0.951-0.712c-0.326-0.896-1.485-0.07-2.013-0.702
|
||||
c-0.005,0.136-0.005,0.334-0.098,0.447c-0.022,0.027,0.283,0.209,0.362,0.243C21.938,4.531,22.242,4.371,22.211,4.727z M6.211,6.72
|
||||
C6.317,6.653,6.439,6.581,6.56,6.515c-0.015-0.012-0.03-0.026-0.043-0.04C6.163,6.481,5.996,5.876,6.374,5.788
|
||||
c0.113-0.03,0.23,0.178,0.111,0.266c-0.061,0.04,0.014,0.132,0.074,0.119C7.004,6.11,6.702,5.555,6.416,5.565
|
||||
C5.844,5.54,5.67,6.576,6.211,6.72z M26.29,7.649c-0.041-0.61,0.226-1.215,0.744-1.574c0.215-0.149,0.451-0.234,0.693-0.275
|
||||
c0.016-0.25,0.406-0.441,0.421-0.65C27.068,5.19,26,6.436,26.113,7.512C26.172,7.557,26.232,7.602,26.29,7.649z M26.828,7.956
|
||||
c0.421,0.673,1.942,0.285,1.503-0.601c-0.139-0.352-0.81-0.081-0.615,0.214c0.116,0.077-0.023,0.243-0.138,0.167
|
||||
c-0.144-0.095-0.18-0.242-0.149-0.381c0.104-0.475,0.806-0.56,1.072-0.19c0.676,0.979-0.553,1.699-1.353,1.35
|
||||
C26.203,8.2,25.551,7.31,24.185,7.163c-0.001,0.002-0.001,0.004-0.002,0.005c0.335,0.323,0.411,0.746,0.418,0.845
|
||||
c0.669,0.12,2.208,1.441,2.592,1.604c2.557,0.991,3.663-3.148,0.856-3.444C27.121,6.038,26.302,7.148,26.828,7.956z"/>
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="16.6016" y1="13.4223" x2="16.8244" y2="8.3431" gradientTransform="matrix(1 0 0 -1 0 34)">
|
||||
<stop offset="0" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.5223" style="stop-color:#A5935C"/>
|
||||
<stop offset="1" style="stop-color:#FFF7C4"/>
|
||||
</linearGradient>
|
||||
<rect x="2.26" y="20.143" fill="url(#SVGID_2_)" width="28.845" height="4.556"/>
|
||||
<g>
|
||||
<rect x="2.64" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
|
||||
<rect x="6.662" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
|
||||
<rect x="10.703" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
|
||||
<rect x="14.74" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
|
||||
<rect x="18.781" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
|
||||
<rect x="22.799" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
|
||||
<rect x="26.84" y="20.552" fill="#30302F" width="3.781" height="3.781"/>
|
||||
</g>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="16.5495" y1="9.7871" x2="16.5495" y2="13.2217" gradientTransform="matrix(1 0 0 -1 0 34)">
|
||||
<stop offset="0" style="stop-color:#3B3421;stop-opacity:0"/>
|
||||
<stop offset="0.2211" style="stop-color:#353229;stop-opacity:0.3006"/>
|
||||
<stop offset="0.5223" style="stop-color:#30302F;stop-opacity:0.71"/>
|
||||
<stop offset="0.9709" style="stop-color:#3A3422;stop-opacity:0.0432"/>
|
||||
<stop offset="1" style="stop-color:#3B3421;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<rect x="2.797" y="20.732" opacity="0.77" fill="url(#SVGID_3_)" enable-background="new " width="27.505" height="3.515"/>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="8.666" y1="12.0149" x2="8.666" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
|
||||
<stop offset="0" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.5223" style="stop-color:#A5935C"/>
|
||||
<stop offset="1" style="stop-color:#FFF7C4"/>
|
||||
</linearGradient>
|
||||
<polygon fill="url(#SVGID_4_)" points="9.325,23.149 7.974,21.014 7.61,21.014 7.61,23.871 8.007,23.871 8.007,21.768
|
||||
9.354,23.871 9.722,23.871 9.722,21.014 9.325,21.014 "/>
|
||||
|
||||
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="4.6815" y1="12.0149" x2="4.6815" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
|
||||
<stop offset="0" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.5223" style="stop-color:#A5935C"/>
|
||||
<stop offset="1" style="stop-color:#FFF7C4"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_5_)" d="M4.511,21.013l-1.054,2.859H3.89l0.215-0.627h1.154l0.215,0.627h0.432l-1.054-2.859H4.511z
|
||||
M4.236,22.914l0.446-1.298l0.446,1.298H4.236z"/>
|
||||
|
||||
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="12.6932" y1="12.0149" x2="12.6932" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
|
||||
<stop offset="0" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.5223" style="stop-color:#A5935C"/>
|
||||
<stop offset="1" style="stop-color:#FFF7C4"/>
|
||||
</linearGradient>
|
||||
<path fill="url(#SVGID_6_)" d="M13.274,21.811h0.411c-0.12-0.919-1.439-1.176-1.856-0.342c-0.188,0.304-0.108,0.993-0.124,1.345
|
||||
c-0.048,1.291,1.746,1.458,1.98,0.216h-0.411c-0.2,0.724-1.208,0.535-1.158-0.216c0.018-0.247-0.053-0.924,0.073-1.139
|
||||
C12.403,21.175,13.161,21.303,13.274,21.811z"/>
|
||||
|
||||
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="28.7335" y1="12.0149" x2="28.7335" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
|
||||
<stop offset="0" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.5223" style="stop-color:#A5935C"/>
|
||||
<stop offset="1" style="stop-color:#FFF7C4"/>
|
||||
</linearGradient>
|
||||
<polygon fill="url(#SVGID_7_)" points="27.725,21.013 27.725,21.394 28.533,21.394 28.533,23.872 28.934,23.872 28.934,21.394
|
||||
29.742,21.394 29.742,21.013 "/>
|
||||
|
||||
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="16.6395" y1="12.0149" x2="16.6395" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
|
||||
<stop offset="0" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.5223" style="stop-color:#A5935C"/>
|
||||
<stop offset="1" style="stop-color:#FFF7C4"/>
|
||||
</linearGradient>
|
||||
<polygon fill="url(#SVGID_8_)" points="16.022,21.394 16.439,21.394 16.439,23.49 16.022,23.49 16.022,23.872 17.257,23.872
|
||||
17.257,23.49 16.84,23.49 16.84,21.394 17.257,21.394 17.257,21.013 16.022,21.013 "/>
|
||||
|
||||
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="24.688" y1="12.0149" x2="24.688" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
|
||||
<stop offset="0" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.5223" style="stop-color:#A5935C"/>
|
||||
<stop offset="1" style="stop-color:#FFF7C4"/>
|
||||
</linearGradient>
|
||||
<polygon fill="url(#SVGID_9_)" points="25.346,23.149 23.996,21.014 23.632,21.014 23.632,23.871 24.029,23.871 24.029,21.768
|
||||
25.376,23.871 25.744,23.871 25.744,21.014 25.346,21.014 "/>
|
||||
|
||||
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="20.7125" y1="12.0149" x2="20.7125" y2="9.359" gradientTransform="matrix(1 0 0 -1 0 34)">
|
||||
<stop offset="0" style="stop-color:#FFF7C4"/>
|
||||
<stop offset="0.5223" style="stop-color:#A5935C"/>
|
||||
<stop offset="1" style="stop-color:#FFF7C4"/>
|
||||
</linearGradient>
|
||||
<polygon fill="url(#SVGID_10_)" points="19.794,23.872 21.631,23.872 21.631,23.49 20.195,23.49 20.195,22.643 21.414,22.643
|
||||
21.414,22.261 20.195,22.261 20.195,21.394 21.631,21.394 21.631,21.013 19.794,21.013 "/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 43 KiB |
|
Before Width: | Height: | Size: 74 KiB After Width: | Height: | Size: 74 KiB |
|
Before Width: | Height: | Size: 216 KiB After Width: | Height: | Size: 214 KiB |
@@ -1,274 +1,274 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<rect x="2.083" y="7.25" fill-rule="evenodd" clip-rule="evenodd" fill="#2E5E54" width="26.958" height="11.519"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#227561" points="28.73,12.264 28.73,19.764 15.696,19.878 2.662,20.026
|
||||
2.714,11.718 6.43,8.003 9.6,11.173 12.769,8.003 15.988,11.223 15.988,11.173 19.157,8.003 22.341,11.188 22.341,11.173
|
||||
25.51,8.003 28.73,11.173 "/>
|
||||
<rect x="2.083" y="18.083" fill-rule="evenodd" clip-rule="evenodd" fill="#23331B" width="26.958" height="6.084"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#394428" points="2.662,19.391 2.662,18.105 15.696,18.105 28.73,18.105
|
||||
28.677,19.937 24.961,23.651 21.792,20.481 18.623,23.651 15.403,20.432 15.403,20.481 12.234,23.651 9.05,20.467 9.05,20.481
|
||||
5.881,23.651 2.662,20.481 "/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#BABABA" d="M19.722,15.976h5.258v0.181h-5.227L19.722,15.976z M19.494,13.694
|
||||
h3.873l0.472,1.682h-4.125L19.494,13.694z M19.375,13.334h3.968v0.181h-3.936L19.375,13.334z M19.179,11.384h1.542l0.473,1.47
|
||||
h-1.795L19.179,11.384z M19.093,11.054h1.762v0.21h-1.762V11.054z M17.888,18.525l-0.472-6.991v-0.719h1.479v0.749l0.882,6.961
|
||||
H17.888z M17.699,9.547h0.913v1.094h-0.913V9.547z M17.919,9.374l-0.094-0.27v-0.66h0.661v0.66l-0.094,0.27H17.919z M14.488,15.585
|
||||
h2.912l0.008,0.181H14.48L14.488,15.585z M14.506,15.167h2.874l0.01,0.209h-2.894L14.506,15.167z M14.523,14.746h2.838l0.009,0.21
|
||||
h-2.856L14.523,14.746z M14.54,14.325h2.802l0.009,0.21h-2.819L14.54,14.325z M14.557,13.935h2.768l0.008,0.181h-2.783
|
||||
L14.557,13.935z M14.582,9.656h2.739v1.031h-2.739V9.656z M14.644,8.892h2.645V9.46h-2.645V8.892z M17.294,13.275h-2.71l0.008-0.211
|
||||
h2.692L17.294,13.275z M17.276,12.854h-2.675l0.008-0.18h2.658L17.276,12.854z M17.258,12.465h-2.64l0.008-0.209h2.622
|
||||
L17.258,12.465z M17.238,12.045h-2.603l0.008-0.21h2.585L17.238,12.045z M17.195,11.055l0.005,0.149h-2.53l0.006-0.149H17.195z
|
||||
M17.219,11.624h-2.567l0.009-0.209h2.549L17.219,11.624z M17.314,13.724h-2.749l0.01-0.239h2.729L17.314,13.724z M12.125,18.525
|
||||
l0.882-6.961v-0.749h1.479v0.719l-0.472,6.991H12.125z M13.291,9.547h0.913v1.094h-0.913V9.547z M13.511,9.374l-0.094-0.27v-0.66
|
||||
h0.661v0.66l-0.094,0.27H13.511z M10.708,12.854l0.473-1.47h1.543l-0.221,1.47H10.708z M11.062,11.054h1.763v0.21h-1.763V11.054z
|
||||
M12.51,13.515H8.574v-0.181h3.968L12.51,13.515z M12.409,13.694l-0.221,1.682H8.063l0.472-1.682H12.409z M12.164,16.156H6.937
|
||||
v-0.181h5.258L12.164,16.156z M12.031,16.336l-0.283,2.011H6.395l0.598-2.011H12.031z M17.504,17.897h-3.112l0.008-0.211h3.094
|
||||
L17.504,17.897z M17.485,17.476H14.41l0.008-0.209h3.058L17.485,17.476z M17.466,17.056h-3.04l0.009-0.21h3.021L17.466,17.056z
|
||||
M17.417,15.977l0.01,0.21h-2.963l0.008-0.21H17.417z M17.447,16.635h-3.002l0.01-0.238h2.982L17.447,16.635z M17.514,18.106
|
||||
l0.01,0.21h-3.149l0.009-0.21H17.514z M25.507,18.347h-5.353l-0.283-2.011h5.039L25.507,18.347z"/>
|
||||
<path fill="#898989" d="M18.486,8.444v0.66l-0.094,0.27h-0.473l-0.094-0.27v-0.66H18.486 M14.078,8.444v0.66l-0.094,0.27h-0.473
|
||||
l-0.094-0.27v-0.66H14.078 M17.289,8.892V9.46h-2.645V8.892H17.289 M18.612,9.547v1.094h-0.913V9.547H18.612 M14.204,9.547v1.094
|
||||
h-0.913V9.547H14.204 M17.321,9.656v1.031h-2.739V9.656H17.321 M18.895,10.815v0.749l0.882,6.961h-1.889l-0.472-6.991v-0.719H18.895
|
||||
M14.486,10.815v0.719l-0.472,6.991h-1.889l0.882-6.961v-0.749H14.486 M20.855,11.054v0.21h-1.762v-0.21H20.855 M12.825,11.054v0.21
|
||||
h-1.763v-0.21H12.825 M17.195,11.055l0.005,0.149h-2.53l0.006-0.149H17.195 M20.721,11.384l0.473,1.47h-1.795l-0.22-1.47H20.721
|
||||
M12.724,11.384l-0.221,1.47h-1.795l0.473-1.47H12.724 M17.21,11.415l0.009,0.209h-2.567l0.009-0.209H17.21 M17.229,11.835
|
||||
l0.009,0.21h-2.603l0.008-0.21H17.229 M17.248,12.256l0.01,0.209h-2.64l0.008-0.209H17.248 M17.267,12.675l0.009,0.18h-2.675
|
||||
l0.008-0.18H17.267 M17.285,13.064l0.01,0.211h-2.71l0.008-0.211H17.285 M23.343,13.334v0.181h-3.936l-0.032-0.181H23.343
|
||||
M12.542,13.334l-0.032,0.181H8.574v-0.181H12.542 M17.305,13.484l0.01,0.239h-2.749l0.01-0.239H17.305 M23.367,13.694l0.472,1.682
|
||||
h-4.125l-0.221-1.682H23.367 M12.409,13.694l-0.221,1.682H8.063l0.472-1.682H12.409 M17.325,13.935l0.008,0.181h-2.783l0.007-0.181
|
||||
H17.325 M17.342,14.325l0.009,0.21h-2.819l0.008-0.21H17.342 M17.361,14.746l0.009,0.21h-2.856l0.009-0.21H17.361 M17.38,15.167
|
||||
l0.01,0.209h-2.894l0.009-0.209H17.38 M17.399,15.585l0.008,0.181H14.48l0.007-0.181H17.399 M24.98,15.976v0.181h-5.227
|
||||
l-0.032-0.181H24.98 M12.195,15.976l-0.032,0.181H6.937v-0.181H12.195 M17.417,15.977l0.01,0.21h-2.963l0.008-0.21H17.417
|
||||
M24.91,16.336l0.598,2.011h-5.353l-0.283-2.011H24.91 M12.031,16.336l-0.283,2.011H6.395l0.598-2.011H12.031 M17.437,16.396
|
||||
l0.011,0.238h-3.002l0.01-0.238H17.437 M17.457,16.846l0.01,0.21h-3.04l0.009-0.21H17.457 M17.476,17.267l0.009,0.209H14.41
|
||||
l0.008-0.209H17.476 M17.495,17.687l0.009,0.211h-3.112l0.008-0.211H17.495 M17.514,18.106l0.01,0.21h-3.149l0.009-0.21H17.514
|
||||
M18.536,8.395h-0.05h-0.661h-0.05v0.05v0.66v0.009l0.002,0.008l0.094,0.27l0.012,0.033h0.036h0.473h0.036l0.012-0.033l0.094-0.27
|
||||
l0.002-0.008V9.104v-0.66V8.395L18.536,8.395z M14.127,8.395h-0.05h-0.661h-0.05v0.05v0.66v0.009l0.002,0.008l0.094,0.27
|
||||
l0.012,0.033h0.036h0.473h0.036l0.012-0.033l0.094-0.27l0.002-0.008V9.104v-0.66V8.395L14.127,8.395z M17.339,8.842h-0.05h-2.645
|
||||
h-0.05v0.05V9.46v0.05h0.05h2.645h0.05V9.46V8.892V8.842L17.339,8.842z M18.662,9.497h-0.05h-0.913h-0.05v0.05v1.094v0.05h0.05
|
||||
h0.913h0.05v-0.05V9.547V9.497L18.662,9.497z M14.253,9.497h-0.05h-0.913h-0.05v0.05v1.094v0.05h0.05h0.913h0.05v-0.05V9.547V9.497
|
||||
L14.253,9.497z M17.371,9.606h-0.05h-2.739h-0.05v0.05v1.031v0.05h0.05h2.739h0.05v-0.05V9.656V9.606L17.371,9.606z M18.945,10.766
|
||||
h-0.05h-1.479h-0.05v0.05v0.719l0.472,6.994l0.003,0.047h0.047h1.889h0.057l-0.007-0.056l-0.882-6.961v-0.743V10.766L18.945,10.766z
|
||||
M14.536,10.766h-0.05h-1.479h-0.05v0.05v0.749l-0.882,6.955l-0.007,0.056h0.057h1.889h0.047l0.003-0.047l0.472-6.991v-0.722V10.766
|
||||
L14.536,10.766z M20.905,11.004h-0.05h-1.762h-0.05v0.05v0.21v0.05h0.05h1.762h0.05v-0.05v-0.21V11.004L20.905,11.004z
|
||||
M12.875,11.004h-0.05h-1.763h-0.05v0.05v0.21v0.05h0.05h1.763h0.05v-0.05v-0.21V11.004L12.875,11.004z M17.243,11.005h-0.048
|
||||
h-2.519h-0.048l-0.002,0.048l-0.006,0.149l-0.002,0.052h0.052h2.53h0.052l-0.002-0.052l-0.005-0.149L17.243,11.005L17.243,11.005z
|
||||
M20.758,11.334h-0.037h-1.542h-0.058l0.009,0.058l0.22,1.47l0.006,0.042h0.043h1.795h0.068l-0.021-0.065l-0.473-1.47L20.758,11.334
|
||||
L20.758,11.334z M12.782,11.334h-0.058h-1.543h-0.037l-0.011,0.034l-0.473,1.47l-0.021,0.065h0.069h1.795h0.043l0.006-0.042
|
||||
l0.221-1.47L12.782,11.334L12.782,11.334z M17.258,11.365H17.21h-2.549h-0.048l-0.002,0.048l-0.009,0.209L14.6,11.674h0.052h2.567
|
||||
h0.052l-0.002-0.052l-0.009-0.209L17.258,11.365L17.258,11.365z M17.277,11.785h-0.048h-2.585h-0.048l-0.002,0.048l-0.008,0.21
|
||||
l-0.002,0.052h0.052h2.603h0.052l-0.002-0.052l-0.009-0.21L17.277,11.785L17.277,11.785z M17.296,12.206h-0.048h-2.622h-0.048
|
||||
l-0.002,0.048l-0.008,0.209l-0.002,0.052h0.052h2.64h0.052l-0.002-0.052l-0.01-0.209L17.296,12.206L17.296,12.206z M17.315,12.625
|
||||
h-0.048h-2.658h-0.048l-0.002,0.048l-0.008,0.18l-0.002,0.052h0.052h2.675h0.053l-0.003-0.053l-0.009-0.18L17.315,12.625
|
||||
L17.315,12.625z M17.333,13.015h-0.048h-2.692h-0.048l-0.001,0.048l-0.008,0.211l-0.002,0.052h0.052h2.71h0.052l-0.002-0.052
|
||||
l-0.01-0.211L17.333,13.015L17.333,13.015z M23.393,13.284h-0.05h-3.968h-0.06l0.01,0.059l0.032,0.181l0.007,0.041h0.042h3.936h0.05
|
||||
v-0.05v-0.181V13.284L23.393,13.284z M12.601,13.284h-0.06H8.574h-0.05v0.05v0.181v0.05h0.05h3.936h0.042l0.007-0.041l0.032-0.181
|
||||
L12.601,13.284L12.601,13.284z M17.353,13.435h-0.048h-2.729h-0.048l-0.002,0.048l-0.01,0.239l-0.002,0.052h0.052h2.749h0.052
|
||||
l-0.002-0.052l-0.01-0.239L17.353,13.435L17.353,13.435z M23.405,13.645h-0.038h-3.873h-0.057l0.007,0.057l0.221,1.682l0.006,0.043
|
||||
h0.044h4.125h0.066l-0.018-0.063l-0.472-1.682L23.405,13.645L23.405,13.645z M12.466,13.645h-0.057H8.536H8.498l-0.01,0.036
|
||||
l-0.472,1.682l-0.018,0.063h0.066h4.125h0.044l0.006-0.043l0.221-1.682L12.466,13.645L12.466,13.645z M17.373,13.885h-0.048h-2.768
|
||||
h-0.048l-0.002,0.048L14.5,14.113l-0.002,0.052h0.052h2.783h0.052l-0.002-0.052l-0.008-0.181L17.373,13.885L17.373,13.885z
|
||||
M17.39,14.275h-0.048H14.54h-0.048l-0.002,0.048l-0.008,0.21l-0.002,0.052h0.052h2.819h0.052l-0.002-0.052l-0.009-0.21
|
||||
L17.39,14.275L17.39,14.275z M17.409,14.696h-0.048h-2.838h-0.048l-0.002,0.048l-0.009,0.21l-0.002,0.052h0.052h2.856h0.052
|
||||
l-0.002-0.052l-0.009-0.21L17.409,14.696L17.409,14.696z M17.428,15.117H17.38h-2.874h-0.048l-0.002,0.048l-0.009,0.209
|
||||
l-0.002,0.052h0.052h2.894h0.053l-0.003-0.053l-0.01-0.209L17.428,15.117L17.428,15.117z M17.447,15.535h-0.048h-2.912H14.44
|
||||
l-0.002,0.048l-0.007,0.181l-0.002,0.052h0.052h2.927h0.052l-0.002-0.052l-0.008-0.181L17.447,15.535L17.447,15.535z M25.03,15.926
|
||||
h-0.05h-5.258h-0.06l0.01,0.059l0.032,0.181l0.007,0.041h0.042h5.227h0.05v-0.05v-0.181V15.926L25.03,15.926z M12.255,15.926h-0.06
|
||||
H6.937h-0.05v0.05v0.181v0.05h0.05h5.227h0.042l0.007-0.041l0.032-0.181L12.255,15.926L12.255,15.926z M17.465,15.927h-0.048h-2.945
|
||||
h-0.048l-0.002,0.048l-0.008,0.21l-0.002,0.052h0.052h2.963h0.052l-0.002-0.052l-0.01-0.21L17.465,15.927L17.465,15.927z
|
||||
M24.947,16.286H24.91h-5.039h-0.058l0.008,0.057l0.283,2.011l0.006,0.043h0.043h5.353h0.067l-0.019-0.064l-0.598-2.011
|
||||
L24.947,16.286L24.947,16.286z M12.089,16.286h-0.058H6.993H6.956l-0.011,0.035l-0.598,2.011l-0.019,0.064h0.067h5.353h0.043
|
||||
l0.006-0.043l0.283-2.011L12.089,16.286L12.089,16.286z M17.484,16.347h-0.048h-2.982h-0.048l-0.002,0.048l-0.01,0.238l-0.002,0.052
|
||||
h0.052h3.002H17.5l-0.002-0.052l-0.011-0.238L17.484,16.347L17.484,16.347z M17.504,16.796h-0.048h-3.021h-0.048l-0.002,0.048
|
||||
l-0.009,0.21l-0.002,0.052h0.052h3.04h0.052l-0.002-0.052l-0.01-0.21L17.504,16.796L17.504,16.796z M17.524,17.217h-0.048h-3.058
|
||||
H14.37l-0.001,0.048l-0.008,0.209l-0.002,0.052h0.052h3.075h0.052l-0.002-0.052l-0.009-0.209L17.524,17.217L17.524,17.217z
|
||||
M17.543,17.637h-0.048h-3.094h-0.048l-0.002,0.048l-0.008,0.211l-0.002,0.052h0.052h3.112h0.052l-0.002-0.052l-0.009-0.211
|
||||
L17.543,17.637L17.543,17.637z M17.562,18.057h-0.048h-3.13h-0.048l-0.002,0.048l-0.009,0.21l-0.002,0.052h0.052h3.149h0.053
|
||||
l-0.003-0.052l-0.01-0.211L17.562,18.057L17.562,18.057z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9BCB3C" d="M28.444,16.208c-0.505-0.929-1.088-1.318-2.08-2.447
|
||||
c-0.954-1.085-1.216-2.501-1.216-2.501c2.662,3.817,5.156,0.925,4.25,7.613C29.278,18.209,28.967,17.167,28.444,16.208z
|
||||
M29.231,18.795c0.103,0.46,0.038,1.113,0.038,1.113s-0.224-2.438-2.449-4.279C24.733,13.902,25.1,11.45,25.1,11.45
|
||||
s0.369,1.815,1.979,3.293C28.757,16.285,29.116,18.284,29.231,18.795z M26.567,16.336c1.551,0.787,2.53,2.621,2.863,4.581
|
||||
c-0.758-2.282-2.504-4.332-4.856-4.478c-1.5-0.093-2.01,1.021-2.01,1.021C23.372,15.667,25.072,15.577,26.567,16.336z
|
||||
M28.217,18.813c1.439,2.233,1.692,4.15,1.692,4.15s-0.729-2.87-3.865-4.603c-2.959-1.634-3.709,0.568-3.709,0.568
|
||||
C22.231,15.435,26.544,16.215,28.217,18.813z M5.675,18.361C2.54,20.094,1.81,22.964,1.81,22.964s0.253-1.917,1.691-4.15
|
||||
c1.673-2.599,5.986-3.379,5.883,0.116C9.384,18.93,8.634,16.728,5.675,18.361z M7.144,16.439c-2.351,0.146-4.098,2.195-4.855,4.478
|
||||
c0.333-1.96,1.312-3.794,2.862-4.581c1.494-0.758,3.192-0.669,4.002,1.118C9.116,17.378,8.589,16.352,7.144,16.439z M2.449,19.908
|
||||
c0,0-0.066-0.653,0.039-1.113c0.114-0.511,0.473-2.51,2.152-4.052c1.609-1.478,1.978-3.293,1.978-3.293s0.367,2.452-1.72,4.179
|
||||
C2.673,17.471,2.449,19.908,2.449,19.908z M3.274,16.208c-0.522,0.959-0.833,2.001-0.955,2.665
|
||||
c-0.905-6.688,1.588-3.796,4.251-7.613c0,0-0.262,1.416-1.216,2.501C4.362,14.89,3.779,15.279,3.274,16.208z"/>
|
||||
<path fill="#51853C" d="M1.81,23.014c-0.003,0-0.006,0-0.009-0.001c-0.026-0.005-0.044-0.029-0.041-0.056
|
||||
c0.003-0.019,0.271-1.953,1.699-4.171c0.855-1.328,2.44-2.257,3.854-2.257c0.552,0,1.024,0.149,1.38,0.434
|
||||
c-0.306-0.264-0.794-0.521-1.546-0.474c-2.514,0.155-4.163,2.491-4.811,4.443c-0.008,0.024-0.032,0.039-0.06,0.033
|
||||
c-0.025-0.007-0.042-0.031-0.037-0.058c0.056-0.327,0.128-0.645,0.215-0.95c-0.002,0-0.004,0-0.006,0l0,0
|
||||
c-0.026,0-0.047-0.02-0.05-0.045c-0.002-0.027-0.065-0.667,0.04-1.129l0.02-0.09c0.134-0.622,0.543-2.515,2.148-3.988
|
||||
c0.479-0.439,0.848-0.912,1.129-1.356c-0.104,0.151-0.218,0.301-0.344,0.444c-0.337,0.384-0.627,0.682-0.883,0.944
|
||||
c-0.5,0.515-0.861,0.886-1.191,1.493c-0.517,0.948-0.829,1.991-0.949,2.65c-0.004,0.024-0.025,0.041-0.049,0.041
|
||||
c0,0-0.001,0-0.001,0c-0.025,0-0.045-0.019-0.048-0.043c-0.576-4.257,0.229-4.673,1.563-5.362c0.767-0.396,1.722-0.889,2.697-2.286
|
||||
c0.013-0.019,0.039-0.027,0.06-0.018c0.022,0.009,0.034,0.032,0.03,0.055c0,0.003-0.01,0.054-0.032,0.142
|
||||
c0.008-0.006,0.019-0.01,0.03-0.01H6.62c0.024,0,0.044,0.019,0.048,0.042c0.004,0.025,0.347,2.5-1.738,4.225
|
||||
c-1.821,1.508-2.294,3.437-2.402,4.05c0.507-1.594,1.436-2.834,2.602-3.426c0.588-0.298,1.189-0.455,1.738-0.455
|
||||
c0.731,0,1.727,0.275,2.326,1.585c0.008,0.009,0.013,0.021,0.013,0.033c0,0.027-0.022,0.05-0.05,0.05c-0.001,0-0.001,0-0.002,0
|
||||
c-0.003,0-0.005,0-0.008,0c0.209,0.379,0.306,0.857,0.289,1.428c0,0.023-0.019,0.044-0.042,0.048
|
||||
c-0.022,0.002-0.047-0.011-0.055-0.033c-0.016-0.047-0.405-1.139-1.716-1.139c-0.558,0-1.204,0.201-1.922,0.598
|
||||
c-3.081,1.702-3.833,4.542-3.841,4.571C1.853,22.999,1.832,23.014,1.81,23.014z M7.313,16.63c-1.359,0-2.944,0.93-3.77,2.211
|
||||
c-0.903,1.402-1.338,2.688-1.536,3.44c0.419-0.962,1.447-2.75,3.643-3.964c0.733-0.404,1.396-0.609,1.97-0.609
|
||||
c1.026,0,1.523,0.655,1.714,1c-0.017-0.655-0.202-1.168-0.551-1.528C8.434,16.82,7.925,16.63,7.313,16.63z M6.867,15.936
|
||||
c-0.533,0-1.119,0.154-1.693,0.445c-1.273,0.646-2.26,2.089-2.708,3.924c0.773-1.833,2.364-3.772,4.675-3.915
|
||||
c0.799-0.053,1.323,0.235,1.643,0.521C8.212,16.12,7.451,15.936,6.867,15.936z M6.589,11.748c-0.177,0.575-0.691,1.908-1.916,3.032
|
||||
c-1.581,1.452-1.985,3.321-2.118,3.935l-0.02,0.091c-0.046,0.202-0.059,0.445-0.058,0.65c0.18-0.796,0.74-2.502,2.388-3.865
|
||||
C6.488,14.249,6.609,12.444,6.589,11.748z M6.463,11.494c-0.937,1.262-1.847,1.731-2.585,2.112
|
||||
c-1.264,0.653-2.039,1.053-1.548,4.966c0.151-0.66,0.448-1.56,0.899-2.388c0.337-0.62,0.702-0.996,1.208-1.516
|
||||
c0.255-0.262,0.543-0.56,0.879-0.941C6.017,12.932,6.343,11.944,6.463,11.494z M29.909,23.014c-0.022,0-0.042-0.015-0.048-0.037
|
||||
c-0.007-0.029-0.762-2.87-3.841-4.571c-0.717-0.396-1.364-0.598-1.921-0.598c-1.312,0-1.701,1.092-1.716,1.139
|
||||
c-0.007,0.022-0.032,0.035-0.055,0.033c-0.024-0.004-0.042-0.024-0.042-0.048c-0.017-0.567,0.079-1.044,0.286-1.422
|
||||
c-0.009,0-0.019,0-0.027-0.004c-0.025-0.012-0.037-0.041-0.025-0.066c0.597-1.326,1.599-1.604,2.334-1.604
|
||||
c0.549,0,1.15,0.158,1.737,0.456c1.165,0.592,2.093,1.83,2.601,3.422c-0.11-0.618-0.585-2.542-2.401-4.046
|
||||
c-2.085-1.725-1.742-4.199-1.738-4.225c0.003-0.023,0.024-0.042,0.048-0.042c0.012,0.004,0.023,0.004,0.033,0.011
|
||||
c-0.022-0.089-0.032-0.14-0.032-0.143c-0.004-0.022,0.008-0.046,0.03-0.055c0.023-0.01,0.047-0.001,0.061,0.018
|
||||
c0.975,1.397,1.929,1.891,2.696,2.286c1.334,0.689,2.139,1.105,1.563,5.362c-0.003,0.024-0.023,0.043-0.048,0.043c0,0,0,0-0.001,0
|
||||
c-0.024,0-0.045-0.017-0.049-0.041c-0.12-0.658-0.432-1.7-0.949-2.65c-0.33-0.606-0.691-0.978-1.189-1.491
|
||||
c-0.256-0.263-0.546-0.562-0.884-0.946c-0.129-0.146-0.245-0.3-0.35-0.454c0.282,0.447,0.653,0.924,1.136,1.366
|
||||
c1.601,1.471,2.012,3.362,2.147,3.984l0.021,0.094c0.104,0.462,0.042,1.102,0.039,1.129c-0.002,0.025-0.024,0.045-0.05,0.045l0,0
|
||||
c-0.002,0-0.004,0-0.005,0c0.087,0.306,0.159,0.623,0.215,0.95c0.004,0.026-0.012,0.051-0.037,0.058
|
||||
c-0.028,0.006-0.052-0.009-0.06-0.033c-0.648-1.952-2.297-4.288-4.812-4.443c-0.694-0.044-1.168,0.179-1.479,0.423
|
||||
c0.348-0.251,0.796-0.383,1.314-0.383c1.413,0,2.998,0.929,3.853,2.257c1.429,2.218,1.697,4.152,1.7,4.171
|
||||
c0.003,0.026-0.014,0.051-0.041,0.056C29.915,23.014,29.912,23.014,29.909,23.014z M24.098,17.708c0.575,0,1.237,0.205,1.97,0.609
|
||||
c2.195,1.213,3.224,3,3.643,3.962c-0.198-0.752-0.633-2.038-1.536-3.438c-0.825-1.281-2.41-2.211-3.769-2.211
|
||||
c-0.613,0-1.122,0.19-1.471,0.55c-0.35,0.36-0.534,0.873-0.551,1.528C22.574,18.363,23.072,17.708,24.098,17.708z M24.398,16.384
|
||||
c0.058,0,0.117,0.002,0.178,0.006c2.311,0.143,3.902,2.083,4.676,3.916c-0.447-1.836-1.434-3.278-2.708-3.925
|
||||
c-0.574-0.292-1.159-0.445-1.692-0.445c-0.583,0-1.34,0.183-1.911,0.966C23.236,16.641,23.703,16.384,24.398,16.384z M25.129,11.748
|
||||
c-0.02,0.696,0.102,2.501,1.724,3.843c1.646,1.362,2.207,3.068,2.387,3.864c0-0.205-0.012-0.447-0.057-0.649l-0.021-0.094
|
||||
c-0.134-0.614-0.54-2.482-2.117-3.932C25.821,13.656,25.306,12.324,25.129,11.748z M25.256,11.494
|
||||
c0.12,0.45,0.446,1.438,1.146,2.233c0.336,0.383,0.625,0.681,0.881,0.943c0.504,0.52,0.869,0.895,1.206,1.514
|
||||
c0.452,0.829,0.749,1.729,0.899,2.387c0.491-3.911-0.284-4.312-1.548-4.965C27.102,13.226,26.192,12.756,25.256,11.494z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#5D5E5E" d="M0.543,4.852h30.692v21.757H0.543V4.852z M1.665,6.018h28.449
|
||||
v19.417L1.665,25.436V6.018z"/>
|
||||
<path fill="#898989" d="M31.335,26.708H0.443V4.752h30.892V26.708z M0.643,26.509h30.492V4.951H0.643V26.509z M1.665,25.535h-0.1
|
||||
V5.918h28.649v19.616L1.665,25.535z M1.765,6.117v19.219l28.249-0.001V6.117H1.765z"/>
|
||||
<path fill="#91C63F" d="M1.665,25.436l28.449-0.001V6.018H1.665V25.436 M3.265,7.617h25.249v16.218L3.265,23.836V7.617L3.265,7.617z
|
||||
"/>
|
||||
<path fill="#51853C" d="M3.265,23.886h-0.05V7.567h25.348v16.317L3.265,23.886z M3.314,7.667v16.119l25.149-0.001V7.667H3.314z"/>
|
||||
<path fill="#51853C" d="M1.72,25.447H1.665V5.996h28.449v19.45L1.72,25.447z M1.776,6.114v19.215l28.225-0.002V6.114H1.776z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#E2EAD9" d="M23.153,20.561c-0.306-0.324-0.652-0.486-1.036-0.486
|
||||
c-0.324,0-0.597,0.11-0.819,0.332c-0.221,0.222-0.333,0.495-0.333,0.818c0,0.228,0.049,0.428,0.148,0.603
|
||||
c0.098,0.177,0.237,0.313,0.417,0.413s0.379,0.15,0.599,0.15c0.188,0,0.358-0.035,0.514-0.105c0.155-0.069,0.326-0.196,0.511-0.382
|
||||
l0.438,0.457c-0.251,0.245-0.488,0.413-0.71,0.509c-0.223,0.095-0.477,0.142-0.763,0.142c-0.527,0-0.958-0.167-1.294-0.501
|
||||
c-0.336-0.335-0.504-0.763-0.504-1.285c0-0.339,0.077-0.64,0.229-0.901c0.153-0.264,0.372-0.475,0.657-0.635
|
||||
c0.285-0.159,0.592-0.239,0.921-0.239c0.28,0,0.549,0.06,0.808,0.177c0.258,0.118,0.481,0.286,0.669,0.505L23.153,20.561z
|
||||
M17.809,19.534h1.851v0.633h-1.21v0.612h1.21v0.62h-1.21v0.893h1.21v0.634h-1.851V19.534z M16.392,22.926h-0.655v-2.755h-0.602
|
||||
v-0.637h1.875v0.637h-0.618V22.926z M14.447,22.306v0.62h-2.072l1.202-2.753h-1.103v-0.639h2.051l-1.207,2.771H14.447z
|
||||
M10.83,22.227H9.447L9.17,22.926H8.5l1.308-3.392h0.654l1.305,3.392h-0.671L10.83,22.227z M10.139,20.434l-0.456,1.164h0.908
|
||||
L10.139,20.434z"/>
|
||||
<path fill="#A2BC52" d="M22.127,19.449c0.28,0,0.549,0.06,0.808,0.177c0.258,0.118,0.481,0.286,0.669,0.505l-0.452,0.43
|
||||
c-0.306-0.324-0.652-0.486-1.036-0.486c-0.324,0-0.597,0.11-0.819,0.332c-0.221,0.222-0.333,0.495-0.333,0.818
|
||||
c0,0.228,0.049,0.428,0.148,0.603c0.098,0.177,0.237,0.313,0.417,0.413s0.379,0.15,0.599,0.15c0.188,0,0.358-0.035,0.514-0.105
|
||||
c0.155-0.069,0.326-0.196,0.511-0.382l0.438,0.457c-0.251,0.245-0.488,0.413-0.71,0.509c-0.223,0.095-0.477,0.142-0.763,0.142
|
||||
c-0.527,0-0.958-0.167-1.294-0.501c-0.336-0.335-0.504-0.763-0.504-1.285c0-0.339,0.077-0.64,0.229-0.901
|
||||
c0.153-0.264,0.372-0.475,0.657-0.635C21.491,19.529,21.799,19.449,22.127,19.449 M19.659,19.534v0.633h-1.21v0.612h1.21v0.62h-1.21
|
||||
v0.893h1.21v0.634h-1.851v-3.392H19.659 M17.01,19.534v0.637h-0.618v2.755h-0.655v-2.755h-0.602v-0.637H17.01 M14.525,19.534
|
||||
l-1.207,2.771h1.128v0.62h-2.072l1.202-2.753h-1.103v-0.639H14.525 M10.462,19.534l1.305,3.392h-0.671l-0.266-0.699H9.447
|
||||
L9.17,22.926H8.5l1.308-3.392H10.462 M9.684,21.598h0.908l-0.452-1.164L9.684,21.598 M22.127,19.284
|
||||
c-0.355,0-0.692,0.087-1.001,0.26c-0.31,0.176-0.552,0.409-0.719,0.696c-0.167,0.286-0.251,0.617-0.251,0.984
|
||||
c0,0.565,0.186,1.036,0.552,1.401c0.367,0.365,0.842,0.55,1.411,0.55c0.306,0,0.584-0.052,0.827-0.155
|
||||
c0.244-0.104,0.499-0.286,0.761-0.542l0.117-0.114l-0.113-0.117l-0.438-0.457l-0.117-0.122l-0.119,0.119
|
||||
c-0.169,0.169-0.325,0.285-0.462,0.348c-0.133,0.061-0.283,0.091-0.446,0.091c-0.192,0-0.362-0.042-0.519-0.129
|
||||
c-0.154-0.086-0.27-0.2-0.354-0.35c-0.085-0.151-0.126-0.322-0.126-0.522c0-0.281,0.093-0.51,0.285-0.702
|
||||
c0.191-0.19,0.421-0.283,0.703-0.283c0.34,0,0.64,0.142,0.916,0.435l0.114,0.12l0.12-0.114l0.451-0.43l0.113-0.107l-0.102-0.118
|
||||
c-0.202-0.236-0.446-0.421-0.726-0.548C22.723,19.349,22.428,19.284,22.127,19.284L22.127,19.284z M19.824,19.369h-0.165h-1.851
|
||||
h-0.165v0.165v3.392v0.165h0.165h1.851h0.165v-0.165v-0.634v-0.165h-0.165h-1.045v-0.563h1.045h0.165v-0.165v-0.62v-0.165h-0.165
|
||||
h-1.045v-0.282h1.045h0.165v-0.165v-0.633V19.369L19.824,19.369z M17.174,19.369H17.01h-1.875h-0.165v0.165v0.637v0.164h0.165h0.437
|
||||
v2.591v0.165h0.165h0.655h0.165v-0.165v-2.591h0.454h0.165v-0.164v-0.637V19.369L17.174,19.369z M14.776,19.369h-0.251h-2.051H12.31
|
||||
v0.165v0.639v0.164h0.165h0.851l-1.102,2.522l-0.101,0.231h0.251h2.072h0.165v-0.165v-0.62v-0.165h-0.165H13.57l1.106-2.54
|
||||
L14.776,19.369L14.776,19.369z M10.575,19.369h-0.113H9.808H9.695l-0.041,0.105l-1.308,3.392L8.26,23.091H8.5h0.67h0.112
|
||||
l0.041-0.104l0.235-0.595h1.158l0.225,0.593l0.041,0.106h0.114h0.671h0.24l-0.086-0.224l-1.304-3.392L10.575,19.369L10.575,19.369z
|
||||
M9.925,21.433l0.213-0.546l0.212,0.546H9.925L9.925,21.433z"/>
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.644,11.835 14.635,12.045 14.782,12.045
|
||||
14.789,11.835 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.592,13.064 14.584,13.275 14.74,13.275 14.748,13.064
|
||||
"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.609,12.675 14.601,12.854 14.754,12.854 14.76,12.675
|
||||
"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.626,12.256 14.618,12.465 14.768,12.465
|
||||
14.774,12.256 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.472,15.977 14.463,16.187 14.642,16.187
|
||||
14.649,15.977 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.853,8.892 14.644,8.892 14.644,9.46 15.087,9.46 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.455,16.396 14.445,16.635 14.627,16.635
|
||||
14.635,16.396 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.418,17.267 14.41,17.476 14.599,17.476 14.605,17.267
|
||||
"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.436,16.846 14.427,17.056 14.613,17.056 14.62,16.846
|
||||
"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.401,17.687 14.393,17.897 14.584,17.897
|
||||
14.591,17.687 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="19.885,13.334 19.375,13.334 19.407,13.515
|
||||
19.885,13.515 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="19.965,13.694 19.494,13.694 19.714,15.376
|
||||
21.303,15.376 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="20.562,12.854 19.489,11.384 19.179,11.384
|
||||
19.399,12.854 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="20.276,15.976 19.722,15.976 19.753,16.156
|
||||
20.276,16.156 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.661,11.415 14.652,11.624 14.796,11.624
|
||||
14.803,11.415 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.676,11.055 14.67,11.204 14.81,11.204 14.815,11.055
|
||||
"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="19.407,11.054 19.093,11.054 19.093,11.264
|
||||
19.401,11.264 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.523,14.746 14.514,14.956 14.684,14.956 14.69,14.746
|
||||
"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.895,9.656 14.582,9.656 14.582,10.688 15.277,10.688
|
||||
"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="20.362,16.336 19.871,16.336 20.154,18.347
|
||||
22.373,18.347 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.383,18.106 14.375,18.316 14.57,18.316 14.577,18.106
|
||||
"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.54,14.325 14.532,14.535 14.698,14.535 14.705,14.325
|
||||
"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.506,15.167 14.497,15.376 14.669,15.376
|
||||
14.676,15.167 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.557,13.935 14.549,14.115 14.712,14.115
|
||||
14.718,13.935 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.575,13.484 14.565,13.724 14.725,13.724
|
||||
14.733,13.484 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.488,15.585 14.48,15.766 14.656,15.766 14.662,15.585
|
||||
"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.57,18.316"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.577,18.106"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.584,17.897"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.591,17.687"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.599,17.476"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.605,17.267"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.613,17.056"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.62,16.846"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.627,16.635"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.635,16.396"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.642,16.187"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.649,15.977"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.656,15.766"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.662,15.585"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.669,15.376"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.676,15.167"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.684,14.956"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.69,14.746"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.698,14.535"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.705,14.325"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.718,13.935"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.725,13.724"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.733,13.484"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.74,13.275"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.748,13.064"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.754,12.854"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.76,12.675"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.768,12.465"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.774,12.256"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.782,12.045"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.789,11.835"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.803,11.415"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.815,11.055"/>
|
||||
</g>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<rect x="2.083" y="7.25" fill-rule="evenodd" clip-rule="evenodd" fill="#2E5E54" width="26.958" height="11.519"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#227561" points="28.73,12.264 28.73,19.764 15.696,19.878 2.662,20.026
|
||||
2.714,11.718 6.43,8.003 9.6,11.173 12.769,8.003 15.988,11.223 15.988,11.173 19.157,8.003 22.341,11.188 22.341,11.173
|
||||
25.51,8.003 28.73,11.173 "/>
|
||||
<rect x="2.083" y="18.083" fill-rule="evenodd" clip-rule="evenodd" fill="#23331B" width="26.958" height="6.084"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#394428" points="2.662,19.391 2.662,18.105 15.696,18.105 28.73,18.105
|
||||
28.677,19.937 24.961,23.651 21.792,20.481 18.623,23.651 15.403,20.432 15.403,20.481 12.234,23.651 9.05,20.467 9.05,20.481
|
||||
5.881,23.651 2.662,20.481 "/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#BABABA" d="M19.722,15.976h5.258v0.181h-5.227L19.722,15.976z M19.494,13.694
|
||||
h3.873l0.472,1.682h-4.125L19.494,13.694z M19.375,13.334h3.968v0.181h-3.936L19.375,13.334z M19.179,11.384h1.542l0.473,1.47
|
||||
h-1.795L19.179,11.384z M19.093,11.054h1.762v0.21h-1.762V11.054z M17.888,18.525l-0.472-6.991v-0.719h1.479v0.749l0.882,6.961
|
||||
H17.888z M17.699,9.547h0.913v1.094h-0.913V9.547z M17.919,9.374l-0.094-0.27v-0.66h0.661v0.66l-0.094,0.27H17.919z M14.488,15.585
|
||||
h2.912l0.008,0.181H14.48L14.488,15.585z M14.506,15.167h2.874l0.01,0.209h-2.894L14.506,15.167z M14.523,14.746h2.838l0.009,0.21
|
||||
h-2.856L14.523,14.746z M14.54,14.325h2.802l0.009,0.21h-2.819L14.54,14.325z M14.557,13.935h2.768l0.008,0.181h-2.783
|
||||
L14.557,13.935z M14.582,9.656h2.739v1.031h-2.739V9.656z M14.644,8.892h2.645V9.46h-2.645V8.892z M17.294,13.275h-2.71l0.008-0.211
|
||||
h2.692L17.294,13.275z M17.276,12.854h-2.675l0.008-0.18h2.658L17.276,12.854z M17.258,12.465h-2.64l0.008-0.209h2.622
|
||||
L17.258,12.465z M17.238,12.045h-2.603l0.008-0.21h2.585L17.238,12.045z M17.195,11.055l0.005,0.149h-2.53l0.006-0.149H17.195z
|
||||
M17.219,11.624h-2.567l0.009-0.209h2.549L17.219,11.624z M17.314,13.724h-2.749l0.01-0.239h2.729L17.314,13.724z M12.125,18.525
|
||||
l0.882-6.961v-0.749h1.479v0.719l-0.472,6.991H12.125z M13.291,9.547h0.913v1.094h-0.913V9.547z M13.511,9.374l-0.094-0.27v-0.66
|
||||
h0.661v0.66l-0.094,0.27H13.511z M10.708,12.854l0.473-1.47h1.543l-0.221,1.47H10.708z M11.062,11.054h1.763v0.21h-1.763V11.054z
|
||||
M12.51,13.515H8.574v-0.181h3.968L12.51,13.515z M12.409,13.694l-0.221,1.682H8.063l0.472-1.682H12.409z M12.164,16.156H6.937
|
||||
v-0.181h5.258L12.164,16.156z M12.031,16.336l-0.283,2.011H6.395l0.598-2.011H12.031z M17.504,17.897h-3.112l0.008-0.211h3.094
|
||||
L17.504,17.897z M17.485,17.476H14.41l0.008-0.209h3.058L17.485,17.476z M17.466,17.056h-3.04l0.009-0.21h3.021L17.466,17.056z
|
||||
M17.417,15.977l0.01,0.21h-2.963l0.008-0.21H17.417z M17.447,16.635h-3.002l0.01-0.238h2.982L17.447,16.635z M17.514,18.106
|
||||
l0.01,0.21h-3.149l0.009-0.21H17.514z M25.507,18.347h-5.353l-0.283-2.011h5.039L25.507,18.347z"/>
|
||||
<path fill="#898989" d="M18.486,8.444v0.66l-0.094,0.27h-0.473l-0.094-0.27v-0.66H18.486 M14.078,8.444v0.66l-0.094,0.27h-0.473
|
||||
l-0.094-0.27v-0.66H14.078 M17.289,8.892V9.46h-2.645V8.892H17.289 M18.612,9.547v1.094h-0.913V9.547H18.612 M14.204,9.547v1.094
|
||||
h-0.913V9.547H14.204 M17.321,9.656v1.031h-2.739V9.656H17.321 M18.895,10.815v0.749l0.882,6.961h-1.889l-0.472-6.991v-0.719H18.895
|
||||
M14.486,10.815v0.719l-0.472,6.991h-1.889l0.882-6.961v-0.749H14.486 M20.855,11.054v0.21h-1.762v-0.21H20.855 M12.825,11.054v0.21
|
||||
h-1.763v-0.21H12.825 M17.195,11.055l0.005,0.149h-2.53l0.006-0.149H17.195 M20.721,11.384l0.473,1.47h-1.795l-0.22-1.47H20.721
|
||||
M12.724,11.384l-0.221,1.47h-1.795l0.473-1.47H12.724 M17.21,11.415l0.009,0.209h-2.567l0.009-0.209H17.21 M17.229,11.835
|
||||
l0.009,0.21h-2.603l0.008-0.21H17.229 M17.248,12.256l0.01,0.209h-2.64l0.008-0.209H17.248 M17.267,12.675l0.009,0.18h-2.675
|
||||
l0.008-0.18H17.267 M17.285,13.064l0.01,0.211h-2.71l0.008-0.211H17.285 M23.343,13.334v0.181h-3.936l-0.032-0.181H23.343
|
||||
M12.542,13.334l-0.032,0.181H8.574v-0.181H12.542 M17.305,13.484l0.01,0.239h-2.749l0.01-0.239H17.305 M23.367,13.694l0.472,1.682
|
||||
h-4.125l-0.221-1.682H23.367 M12.409,13.694l-0.221,1.682H8.063l0.472-1.682H12.409 M17.325,13.935l0.008,0.181h-2.783l0.007-0.181
|
||||
H17.325 M17.342,14.325l0.009,0.21h-2.819l0.008-0.21H17.342 M17.361,14.746l0.009,0.21h-2.856l0.009-0.21H17.361 M17.38,15.167
|
||||
l0.01,0.209h-2.894l0.009-0.209H17.38 M17.399,15.585l0.008,0.181H14.48l0.007-0.181H17.399 M24.98,15.976v0.181h-5.227
|
||||
l-0.032-0.181H24.98 M12.195,15.976l-0.032,0.181H6.937v-0.181H12.195 M17.417,15.977l0.01,0.21h-2.963l0.008-0.21H17.417
|
||||
M24.91,16.336l0.598,2.011h-5.353l-0.283-2.011H24.91 M12.031,16.336l-0.283,2.011H6.395l0.598-2.011H12.031 M17.437,16.396
|
||||
l0.011,0.238h-3.002l0.01-0.238H17.437 M17.457,16.846l0.01,0.21h-3.04l0.009-0.21H17.457 M17.476,17.267l0.009,0.209H14.41
|
||||
l0.008-0.209H17.476 M17.495,17.687l0.009,0.211h-3.112l0.008-0.211H17.495 M17.514,18.106l0.01,0.21h-3.149l0.009-0.21H17.514
|
||||
M18.536,8.395h-0.05h-0.661h-0.05v0.05v0.66v0.009l0.002,0.008l0.094,0.27l0.012,0.033h0.036h0.473h0.036l0.012-0.033l0.094-0.27
|
||||
l0.002-0.008V9.104v-0.66V8.395L18.536,8.395z M14.127,8.395h-0.05h-0.661h-0.05v0.05v0.66v0.009l0.002,0.008l0.094,0.27
|
||||
l0.012,0.033h0.036h0.473h0.036l0.012-0.033l0.094-0.27l0.002-0.008V9.104v-0.66V8.395L14.127,8.395z M17.339,8.842h-0.05h-2.645
|
||||
h-0.05v0.05V9.46v0.05h0.05h2.645h0.05V9.46V8.892V8.842L17.339,8.842z M18.662,9.497h-0.05h-0.913h-0.05v0.05v1.094v0.05h0.05
|
||||
h0.913h0.05v-0.05V9.547V9.497L18.662,9.497z M14.253,9.497h-0.05h-0.913h-0.05v0.05v1.094v0.05h0.05h0.913h0.05v-0.05V9.547V9.497
|
||||
L14.253,9.497z M17.371,9.606h-0.05h-2.739h-0.05v0.05v1.031v0.05h0.05h2.739h0.05v-0.05V9.656V9.606L17.371,9.606z M18.945,10.766
|
||||
h-0.05h-1.479h-0.05v0.05v0.719l0.472,6.994l0.003,0.047h0.047h1.889h0.057l-0.007-0.056l-0.882-6.961v-0.743V10.766L18.945,10.766z
|
||||
M14.536,10.766h-0.05h-1.479h-0.05v0.05v0.749l-0.882,6.955l-0.007,0.056h0.057h1.889h0.047l0.003-0.047l0.472-6.991v-0.722V10.766
|
||||
L14.536,10.766z M20.905,11.004h-0.05h-1.762h-0.05v0.05v0.21v0.05h0.05h1.762h0.05v-0.05v-0.21V11.004L20.905,11.004z
|
||||
M12.875,11.004h-0.05h-1.763h-0.05v0.05v0.21v0.05h0.05h1.763h0.05v-0.05v-0.21V11.004L12.875,11.004z M17.243,11.005h-0.048
|
||||
h-2.519h-0.048l-0.002,0.048l-0.006,0.149l-0.002,0.052h0.052h2.53h0.052l-0.002-0.052l-0.005-0.149L17.243,11.005L17.243,11.005z
|
||||
M20.758,11.334h-0.037h-1.542h-0.058l0.009,0.058l0.22,1.47l0.006,0.042h0.043h1.795h0.068l-0.021-0.065l-0.473-1.47L20.758,11.334
|
||||
L20.758,11.334z M12.782,11.334h-0.058h-1.543h-0.037l-0.011,0.034l-0.473,1.47l-0.021,0.065h0.069h1.795h0.043l0.006-0.042
|
||||
l0.221-1.47L12.782,11.334L12.782,11.334z M17.258,11.365H17.21h-2.549h-0.048l-0.002,0.048l-0.009,0.209L14.6,11.674h0.052h2.567
|
||||
h0.052l-0.002-0.052l-0.009-0.209L17.258,11.365L17.258,11.365z M17.277,11.785h-0.048h-2.585h-0.048l-0.002,0.048l-0.008,0.21
|
||||
l-0.002,0.052h0.052h2.603h0.052l-0.002-0.052l-0.009-0.21L17.277,11.785L17.277,11.785z M17.296,12.206h-0.048h-2.622h-0.048
|
||||
l-0.002,0.048l-0.008,0.209l-0.002,0.052h0.052h2.64h0.052l-0.002-0.052l-0.01-0.209L17.296,12.206L17.296,12.206z M17.315,12.625
|
||||
h-0.048h-2.658h-0.048l-0.002,0.048l-0.008,0.18l-0.002,0.052h0.052h2.675h0.053l-0.003-0.053l-0.009-0.18L17.315,12.625
|
||||
L17.315,12.625z M17.333,13.015h-0.048h-2.692h-0.048l-0.001,0.048l-0.008,0.211l-0.002,0.052h0.052h2.71h0.052l-0.002-0.052
|
||||
l-0.01-0.211L17.333,13.015L17.333,13.015z M23.393,13.284h-0.05h-3.968h-0.06l0.01,0.059l0.032,0.181l0.007,0.041h0.042h3.936h0.05
|
||||
v-0.05v-0.181V13.284L23.393,13.284z M12.601,13.284h-0.06H8.574h-0.05v0.05v0.181v0.05h0.05h3.936h0.042l0.007-0.041l0.032-0.181
|
||||
L12.601,13.284L12.601,13.284z M17.353,13.435h-0.048h-2.729h-0.048l-0.002,0.048l-0.01,0.239l-0.002,0.052h0.052h2.749h0.052
|
||||
l-0.002-0.052l-0.01-0.239L17.353,13.435L17.353,13.435z M23.405,13.645h-0.038h-3.873h-0.057l0.007,0.057l0.221,1.682l0.006,0.043
|
||||
h0.044h4.125h0.066l-0.018-0.063l-0.472-1.682L23.405,13.645L23.405,13.645z M12.466,13.645h-0.057H8.536H8.498l-0.01,0.036
|
||||
l-0.472,1.682l-0.018,0.063h0.066h4.125h0.044l0.006-0.043l0.221-1.682L12.466,13.645L12.466,13.645z M17.373,13.885h-0.048h-2.768
|
||||
h-0.048l-0.002,0.048L14.5,14.113l-0.002,0.052h0.052h2.783h0.052l-0.002-0.052l-0.008-0.181L17.373,13.885L17.373,13.885z
|
||||
M17.39,14.275h-0.048H14.54h-0.048l-0.002,0.048l-0.008,0.21l-0.002,0.052h0.052h2.819h0.052l-0.002-0.052l-0.009-0.21
|
||||
L17.39,14.275L17.39,14.275z M17.409,14.696h-0.048h-2.838h-0.048l-0.002,0.048l-0.009,0.21l-0.002,0.052h0.052h2.856h0.052
|
||||
l-0.002-0.052l-0.009-0.21L17.409,14.696L17.409,14.696z M17.428,15.117H17.38h-2.874h-0.048l-0.002,0.048l-0.009,0.209
|
||||
l-0.002,0.052h0.052h2.894h0.053l-0.003-0.053l-0.01-0.209L17.428,15.117L17.428,15.117z M17.447,15.535h-0.048h-2.912H14.44
|
||||
l-0.002,0.048l-0.007,0.181l-0.002,0.052h0.052h2.927h0.052l-0.002-0.052l-0.008-0.181L17.447,15.535L17.447,15.535z M25.03,15.926
|
||||
h-0.05h-5.258h-0.06l0.01,0.059l0.032,0.181l0.007,0.041h0.042h5.227h0.05v-0.05v-0.181V15.926L25.03,15.926z M12.255,15.926h-0.06
|
||||
H6.937h-0.05v0.05v0.181v0.05h0.05h5.227h0.042l0.007-0.041l0.032-0.181L12.255,15.926L12.255,15.926z M17.465,15.927h-0.048h-2.945
|
||||
h-0.048l-0.002,0.048l-0.008,0.21l-0.002,0.052h0.052h2.963h0.052l-0.002-0.052l-0.01-0.21L17.465,15.927L17.465,15.927z
|
||||
M24.947,16.286H24.91h-5.039h-0.058l0.008,0.057l0.283,2.011l0.006,0.043h0.043h5.353h0.067l-0.019-0.064l-0.598-2.011
|
||||
L24.947,16.286L24.947,16.286z M12.089,16.286h-0.058H6.993H6.956l-0.011,0.035l-0.598,2.011l-0.019,0.064h0.067h5.353h0.043
|
||||
l0.006-0.043l0.283-2.011L12.089,16.286L12.089,16.286z M17.484,16.347h-0.048h-2.982h-0.048l-0.002,0.048l-0.01,0.238l-0.002,0.052
|
||||
h0.052h3.002H17.5l-0.002-0.052l-0.011-0.238L17.484,16.347L17.484,16.347z M17.504,16.796h-0.048h-3.021h-0.048l-0.002,0.048
|
||||
l-0.009,0.21l-0.002,0.052h0.052h3.04h0.052l-0.002-0.052l-0.01-0.21L17.504,16.796L17.504,16.796z M17.524,17.217h-0.048h-3.058
|
||||
H14.37l-0.001,0.048l-0.008,0.209l-0.002,0.052h0.052h3.075h0.052l-0.002-0.052l-0.009-0.209L17.524,17.217L17.524,17.217z
|
||||
M17.543,17.637h-0.048h-3.094h-0.048l-0.002,0.048l-0.008,0.211l-0.002,0.052h0.052h3.112h0.052l-0.002-0.052l-0.009-0.211
|
||||
L17.543,17.637L17.543,17.637z M17.562,18.057h-0.048h-3.13h-0.048l-0.002,0.048l-0.009,0.21l-0.002,0.052h0.052h3.149h0.053
|
||||
l-0.003-0.052l-0.01-0.211L17.562,18.057L17.562,18.057z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9BCB3C" d="M28.444,16.208c-0.505-0.929-1.088-1.318-2.08-2.447
|
||||
c-0.954-1.085-1.216-2.501-1.216-2.501c2.662,3.817,5.156,0.925,4.25,7.613C29.278,18.209,28.967,17.167,28.444,16.208z
|
||||
M29.231,18.795c0.103,0.46,0.038,1.113,0.038,1.113s-0.224-2.438-2.449-4.279C24.733,13.902,25.1,11.45,25.1,11.45
|
||||
s0.369,1.815,1.979,3.293C28.757,16.285,29.116,18.284,29.231,18.795z M26.567,16.336c1.551,0.787,2.53,2.621,2.863,4.581
|
||||
c-0.758-2.282-2.504-4.332-4.856-4.478c-1.5-0.093-2.01,1.021-2.01,1.021C23.372,15.667,25.072,15.577,26.567,16.336z
|
||||
M28.217,18.813c1.439,2.233,1.692,4.15,1.692,4.15s-0.729-2.87-3.865-4.603c-2.959-1.634-3.709,0.568-3.709,0.568
|
||||
C22.231,15.435,26.544,16.215,28.217,18.813z M5.675,18.361C2.54,20.094,1.81,22.964,1.81,22.964s0.253-1.917,1.691-4.15
|
||||
c1.673-2.599,5.986-3.379,5.883,0.116C9.384,18.93,8.634,16.728,5.675,18.361z M7.144,16.439c-2.351,0.146-4.098,2.195-4.855,4.478
|
||||
c0.333-1.96,1.312-3.794,2.862-4.581c1.494-0.758,3.192-0.669,4.002,1.118C9.116,17.378,8.589,16.352,7.144,16.439z M2.449,19.908
|
||||
c0,0-0.066-0.653,0.039-1.113c0.114-0.511,0.473-2.51,2.152-4.052c1.609-1.478,1.978-3.293,1.978-3.293s0.367,2.452-1.72,4.179
|
||||
C2.673,17.471,2.449,19.908,2.449,19.908z M3.274,16.208c-0.522,0.959-0.833,2.001-0.955,2.665
|
||||
c-0.905-6.688,1.588-3.796,4.251-7.613c0,0-0.262,1.416-1.216,2.501C4.362,14.89,3.779,15.279,3.274,16.208z"/>
|
||||
<path fill="#51853C" d="M1.81,23.014c-0.003,0-0.006,0-0.009-0.001c-0.026-0.005-0.044-0.029-0.041-0.056
|
||||
c0.003-0.019,0.271-1.953,1.699-4.171c0.855-1.328,2.44-2.257,3.854-2.257c0.552,0,1.024,0.149,1.38,0.434
|
||||
c-0.306-0.264-0.794-0.521-1.546-0.474c-2.514,0.155-4.163,2.491-4.811,4.443c-0.008,0.024-0.032,0.039-0.06,0.033
|
||||
c-0.025-0.007-0.042-0.031-0.037-0.058c0.056-0.327,0.128-0.645,0.215-0.95c-0.002,0-0.004,0-0.006,0l0,0
|
||||
c-0.026,0-0.047-0.02-0.05-0.045c-0.002-0.027-0.065-0.667,0.04-1.129l0.02-0.09c0.134-0.622,0.543-2.515,2.148-3.988
|
||||
c0.479-0.439,0.848-0.912,1.129-1.356c-0.104,0.151-0.218,0.301-0.344,0.444c-0.337,0.384-0.627,0.682-0.883,0.944
|
||||
c-0.5,0.515-0.861,0.886-1.191,1.493c-0.517,0.948-0.829,1.991-0.949,2.65c-0.004,0.024-0.025,0.041-0.049,0.041
|
||||
c0,0-0.001,0-0.001,0c-0.025,0-0.045-0.019-0.048-0.043c-0.576-4.257,0.229-4.673,1.563-5.362c0.767-0.396,1.722-0.889,2.697-2.286
|
||||
c0.013-0.019,0.039-0.027,0.06-0.018c0.022,0.009,0.034,0.032,0.03,0.055c0,0.003-0.01,0.054-0.032,0.142
|
||||
c0.008-0.006,0.019-0.01,0.03-0.01H6.62c0.024,0,0.044,0.019,0.048,0.042c0.004,0.025,0.347,2.5-1.738,4.225
|
||||
c-1.821,1.508-2.294,3.437-2.402,4.05c0.507-1.594,1.436-2.834,2.602-3.426c0.588-0.298,1.189-0.455,1.738-0.455
|
||||
c0.731,0,1.727,0.275,2.326,1.585c0.008,0.009,0.013,0.021,0.013,0.033c0,0.027-0.022,0.05-0.05,0.05c-0.001,0-0.001,0-0.002,0
|
||||
c-0.003,0-0.005,0-0.008,0c0.209,0.379,0.306,0.857,0.289,1.428c0,0.023-0.019,0.044-0.042,0.048
|
||||
c-0.022,0.002-0.047-0.011-0.055-0.033c-0.016-0.047-0.405-1.139-1.716-1.139c-0.558,0-1.204,0.201-1.922,0.598
|
||||
c-3.081,1.702-3.833,4.542-3.841,4.571C1.853,22.999,1.832,23.014,1.81,23.014z M7.313,16.63c-1.359,0-2.944,0.93-3.77,2.211
|
||||
c-0.903,1.402-1.338,2.688-1.536,3.44c0.419-0.962,1.447-2.75,3.643-3.964c0.733-0.404,1.396-0.609,1.97-0.609
|
||||
c1.026,0,1.523,0.655,1.714,1c-0.017-0.655-0.202-1.168-0.551-1.528C8.434,16.82,7.925,16.63,7.313,16.63z M6.867,15.936
|
||||
c-0.533,0-1.119,0.154-1.693,0.445c-1.273,0.646-2.26,2.089-2.708,3.924c0.773-1.833,2.364-3.772,4.675-3.915
|
||||
c0.799-0.053,1.323,0.235,1.643,0.521C8.212,16.12,7.451,15.936,6.867,15.936z M6.589,11.748c-0.177,0.575-0.691,1.908-1.916,3.032
|
||||
c-1.581,1.452-1.985,3.321-2.118,3.935l-0.02,0.091c-0.046,0.202-0.059,0.445-0.058,0.65c0.18-0.796,0.74-2.502,2.388-3.865
|
||||
C6.488,14.249,6.609,12.444,6.589,11.748z M6.463,11.494c-0.937,1.262-1.847,1.731-2.585,2.112
|
||||
c-1.264,0.653-2.039,1.053-1.548,4.966c0.151-0.66,0.448-1.56,0.899-2.388c0.337-0.62,0.702-0.996,1.208-1.516
|
||||
c0.255-0.262,0.543-0.56,0.879-0.941C6.017,12.932,6.343,11.944,6.463,11.494z M29.909,23.014c-0.022,0-0.042-0.015-0.048-0.037
|
||||
c-0.007-0.029-0.762-2.87-3.841-4.571c-0.717-0.396-1.364-0.598-1.921-0.598c-1.312,0-1.701,1.092-1.716,1.139
|
||||
c-0.007,0.022-0.032,0.035-0.055,0.033c-0.024-0.004-0.042-0.024-0.042-0.048c-0.017-0.567,0.079-1.044,0.286-1.422
|
||||
c-0.009,0-0.019,0-0.027-0.004c-0.025-0.012-0.037-0.041-0.025-0.066c0.597-1.326,1.599-1.604,2.334-1.604
|
||||
c0.549,0,1.15,0.158,1.737,0.456c1.165,0.592,2.093,1.83,2.601,3.422c-0.11-0.618-0.585-2.542-2.401-4.046
|
||||
c-2.085-1.725-1.742-4.199-1.738-4.225c0.003-0.023,0.024-0.042,0.048-0.042c0.012,0.004,0.023,0.004,0.033,0.011
|
||||
c-0.022-0.089-0.032-0.14-0.032-0.143c-0.004-0.022,0.008-0.046,0.03-0.055c0.023-0.01,0.047-0.001,0.061,0.018
|
||||
c0.975,1.397,1.929,1.891,2.696,2.286c1.334,0.689,2.139,1.105,1.563,5.362c-0.003,0.024-0.023,0.043-0.048,0.043c0,0,0,0-0.001,0
|
||||
c-0.024,0-0.045-0.017-0.049-0.041c-0.12-0.658-0.432-1.7-0.949-2.65c-0.33-0.606-0.691-0.978-1.189-1.491
|
||||
c-0.256-0.263-0.546-0.562-0.884-0.946c-0.129-0.146-0.245-0.3-0.35-0.454c0.282,0.447,0.653,0.924,1.136,1.366
|
||||
c1.601,1.471,2.012,3.362,2.147,3.984l0.021,0.094c0.104,0.462,0.042,1.102,0.039,1.129c-0.002,0.025-0.024,0.045-0.05,0.045l0,0
|
||||
c-0.002,0-0.004,0-0.005,0c0.087,0.306,0.159,0.623,0.215,0.95c0.004,0.026-0.012,0.051-0.037,0.058
|
||||
c-0.028,0.006-0.052-0.009-0.06-0.033c-0.648-1.952-2.297-4.288-4.812-4.443c-0.694-0.044-1.168,0.179-1.479,0.423
|
||||
c0.348-0.251,0.796-0.383,1.314-0.383c1.413,0,2.998,0.929,3.853,2.257c1.429,2.218,1.697,4.152,1.7,4.171
|
||||
c0.003,0.026-0.014,0.051-0.041,0.056C29.915,23.014,29.912,23.014,29.909,23.014z M24.098,17.708c0.575,0,1.237,0.205,1.97,0.609
|
||||
c2.195,1.213,3.224,3,3.643,3.962c-0.198-0.752-0.633-2.038-1.536-3.438c-0.825-1.281-2.41-2.211-3.769-2.211
|
||||
c-0.613,0-1.122,0.19-1.471,0.55c-0.35,0.36-0.534,0.873-0.551,1.528C22.574,18.363,23.072,17.708,24.098,17.708z M24.398,16.384
|
||||
c0.058,0,0.117,0.002,0.178,0.006c2.311,0.143,3.902,2.083,4.676,3.916c-0.447-1.836-1.434-3.278-2.708-3.925
|
||||
c-0.574-0.292-1.159-0.445-1.692-0.445c-0.583,0-1.34,0.183-1.911,0.966C23.236,16.641,23.703,16.384,24.398,16.384z M25.129,11.748
|
||||
c-0.02,0.696,0.102,2.501,1.724,3.843c1.646,1.362,2.207,3.068,2.387,3.864c0-0.205-0.012-0.447-0.057-0.649l-0.021-0.094
|
||||
c-0.134-0.614-0.54-2.482-2.117-3.932C25.821,13.656,25.306,12.324,25.129,11.748z M25.256,11.494
|
||||
c0.12,0.45,0.446,1.438,1.146,2.233c0.336,0.383,0.625,0.681,0.881,0.943c0.504,0.52,0.869,0.895,1.206,1.514
|
||||
c0.452,0.829,0.749,1.729,0.899,2.387c0.491-3.911-0.284-4.312-1.548-4.965C27.102,13.226,26.192,12.756,25.256,11.494z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#5D5E5E" d="M0.543,4.852h30.692v21.757H0.543V4.852z M1.665,6.018h28.449
|
||||
v19.417L1.665,25.436V6.018z"/>
|
||||
<path fill="#898989" d="M31.335,26.708H0.443V4.752h30.892V26.708z M0.643,26.509h30.492V4.951H0.643V26.509z M1.665,25.535h-0.1
|
||||
V5.918h28.649v19.616L1.665,25.535z M1.765,6.117v19.219l28.249-0.001V6.117H1.765z"/>
|
||||
<path fill="#91C63F" d="M1.665,25.436l28.449-0.001V6.018H1.665V25.436 M3.265,7.617h25.249v16.218L3.265,23.836V7.617L3.265,7.617z
|
||||
"/>
|
||||
<path fill="#51853C" d="M3.265,23.886h-0.05V7.567h25.348v16.317L3.265,23.886z M3.314,7.667v16.119l25.149-0.001V7.667H3.314z"/>
|
||||
<path fill="#51853C" d="M1.72,25.447H1.665V5.996h28.449v19.45L1.72,25.447z M1.776,6.114v19.215l28.225-0.002V6.114H1.776z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#E2EAD9" d="M23.153,20.561c-0.306-0.324-0.652-0.486-1.036-0.486
|
||||
c-0.324,0-0.597,0.11-0.819,0.332c-0.221,0.222-0.333,0.495-0.333,0.818c0,0.228,0.049,0.428,0.148,0.603
|
||||
c0.098,0.177,0.237,0.313,0.417,0.413s0.379,0.15,0.599,0.15c0.188,0,0.358-0.035,0.514-0.105c0.155-0.069,0.326-0.196,0.511-0.382
|
||||
l0.438,0.457c-0.251,0.245-0.488,0.413-0.71,0.509c-0.223,0.095-0.477,0.142-0.763,0.142c-0.527,0-0.958-0.167-1.294-0.501
|
||||
c-0.336-0.335-0.504-0.763-0.504-1.285c0-0.339,0.077-0.64,0.229-0.901c0.153-0.264,0.372-0.475,0.657-0.635
|
||||
c0.285-0.159,0.592-0.239,0.921-0.239c0.28,0,0.549,0.06,0.808,0.177c0.258,0.118,0.481,0.286,0.669,0.505L23.153,20.561z
|
||||
M17.809,19.534h1.851v0.633h-1.21v0.612h1.21v0.62h-1.21v0.893h1.21v0.634h-1.851V19.534z M16.392,22.926h-0.655v-2.755h-0.602
|
||||
v-0.637h1.875v0.637h-0.618V22.926z M14.447,22.306v0.62h-2.072l1.202-2.753h-1.103v-0.639h2.051l-1.207,2.771H14.447z
|
||||
M10.83,22.227H9.447L9.17,22.926H8.5l1.308-3.392h0.654l1.305,3.392h-0.671L10.83,22.227z M10.139,20.434l-0.456,1.164h0.908
|
||||
L10.139,20.434z"/>
|
||||
<path fill="#A2BC52" d="M22.127,19.449c0.28,0,0.549,0.06,0.808,0.177c0.258,0.118,0.481,0.286,0.669,0.505l-0.452,0.43
|
||||
c-0.306-0.324-0.652-0.486-1.036-0.486c-0.324,0-0.597,0.11-0.819,0.332c-0.221,0.222-0.333,0.495-0.333,0.818
|
||||
c0,0.228,0.049,0.428,0.148,0.603c0.098,0.177,0.237,0.313,0.417,0.413s0.379,0.15,0.599,0.15c0.188,0,0.358-0.035,0.514-0.105
|
||||
c0.155-0.069,0.326-0.196,0.511-0.382l0.438,0.457c-0.251,0.245-0.488,0.413-0.71,0.509c-0.223,0.095-0.477,0.142-0.763,0.142
|
||||
c-0.527,0-0.958-0.167-1.294-0.501c-0.336-0.335-0.504-0.763-0.504-1.285c0-0.339,0.077-0.64,0.229-0.901
|
||||
c0.153-0.264,0.372-0.475,0.657-0.635C21.491,19.529,21.799,19.449,22.127,19.449 M19.659,19.534v0.633h-1.21v0.612h1.21v0.62h-1.21
|
||||
v0.893h1.21v0.634h-1.851v-3.392H19.659 M17.01,19.534v0.637h-0.618v2.755h-0.655v-2.755h-0.602v-0.637H17.01 M14.525,19.534
|
||||
l-1.207,2.771h1.128v0.62h-2.072l1.202-2.753h-1.103v-0.639H14.525 M10.462,19.534l1.305,3.392h-0.671l-0.266-0.699H9.447
|
||||
L9.17,22.926H8.5l1.308-3.392H10.462 M9.684,21.598h0.908l-0.452-1.164L9.684,21.598 M22.127,19.284
|
||||
c-0.355,0-0.692,0.087-1.001,0.26c-0.31,0.176-0.552,0.409-0.719,0.696c-0.167,0.286-0.251,0.617-0.251,0.984
|
||||
c0,0.565,0.186,1.036,0.552,1.401c0.367,0.365,0.842,0.55,1.411,0.55c0.306,0,0.584-0.052,0.827-0.155
|
||||
c0.244-0.104,0.499-0.286,0.761-0.542l0.117-0.114l-0.113-0.117l-0.438-0.457l-0.117-0.122l-0.119,0.119
|
||||
c-0.169,0.169-0.325,0.285-0.462,0.348c-0.133,0.061-0.283,0.091-0.446,0.091c-0.192,0-0.362-0.042-0.519-0.129
|
||||
c-0.154-0.086-0.27-0.2-0.354-0.35c-0.085-0.151-0.126-0.322-0.126-0.522c0-0.281,0.093-0.51,0.285-0.702
|
||||
c0.191-0.19,0.421-0.283,0.703-0.283c0.34,0,0.64,0.142,0.916,0.435l0.114,0.12l0.12-0.114l0.451-0.43l0.113-0.107l-0.102-0.118
|
||||
c-0.202-0.236-0.446-0.421-0.726-0.548C22.723,19.349,22.428,19.284,22.127,19.284L22.127,19.284z M19.824,19.369h-0.165h-1.851
|
||||
h-0.165v0.165v3.392v0.165h0.165h1.851h0.165v-0.165v-0.634v-0.165h-0.165h-1.045v-0.563h1.045h0.165v-0.165v-0.62v-0.165h-0.165
|
||||
h-1.045v-0.282h1.045h0.165v-0.165v-0.633V19.369L19.824,19.369z M17.174,19.369H17.01h-1.875h-0.165v0.165v0.637v0.164h0.165h0.437
|
||||
v2.591v0.165h0.165h0.655h0.165v-0.165v-2.591h0.454h0.165v-0.164v-0.637V19.369L17.174,19.369z M14.776,19.369h-0.251h-2.051H12.31
|
||||
v0.165v0.639v0.164h0.165h0.851l-1.102,2.522l-0.101,0.231h0.251h2.072h0.165v-0.165v-0.62v-0.165h-0.165H13.57l1.106-2.54
|
||||
L14.776,19.369L14.776,19.369z M10.575,19.369h-0.113H9.808H9.695l-0.041,0.105l-1.308,3.392L8.26,23.091H8.5h0.67h0.112
|
||||
l0.041-0.104l0.235-0.595h1.158l0.225,0.593l0.041,0.106h0.114h0.671h0.24l-0.086-0.224l-1.304-3.392L10.575,19.369L10.575,19.369z
|
||||
M9.925,21.433l0.213-0.546l0.212,0.546H9.925L9.925,21.433z"/>
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.644,11.835 14.635,12.045 14.782,12.045
|
||||
14.789,11.835 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.592,13.064 14.584,13.275 14.74,13.275 14.748,13.064
|
||||
"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.609,12.675 14.601,12.854 14.754,12.854 14.76,12.675
|
||||
"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.626,12.256 14.618,12.465 14.768,12.465
|
||||
14.774,12.256 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.472,15.977 14.463,16.187 14.642,16.187
|
||||
14.649,15.977 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.853,8.892 14.644,8.892 14.644,9.46 15.087,9.46 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.455,16.396 14.445,16.635 14.627,16.635
|
||||
14.635,16.396 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.418,17.267 14.41,17.476 14.599,17.476 14.605,17.267
|
||||
"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.436,16.846 14.427,17.056 14.613,17.056 14.62,16.846
|
||||
"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.401,17.687 14.393,17.897 14.584,17.897
|
||||
14.591,17.687 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="19.885,13.334 19.375,13.334 19.407,13.515
|
||||
19.885,13.515 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="19.965,13.694 19.494,13.694 19.714,15.376
|
||||
21.303,15.376 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="20.562,12.854 19.489,11.384 19.179,11.384
|
||||
19.399,12.854 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="20.276,15.976 19.722,15.976 19.753,16.156
|
||||
20.276,16.156 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.661,11.415 14.652,11.624 14.796,11.624
|
||||
14.803,11.415 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.676,11.055 14.67,11.204 14.81,11.204 14.815,11.055
|
||||
"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="19.407,11.054 19.093,11.054 19.093,11.264
|
||||
19.401,11.264 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.523,14.746 14.514,14.956 14.684,14.956 14.69,14.746
|
||||
"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.895,9.656 14.582,9.656 14.582,10.688 15.277,10.688
|
||||
"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="20.362,16.336 19.871,16.336 20.154,18.347
|
||||
22.373,18.347 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.383,18.106 14.375,18.316 14.57,18.316 14.577,18.106
|
||||
"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.54,14.325 14.532,14.535 14.698,14.535 14.705,14.325
|
||||
"/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.506,15.167 14.497,15.376 14.669,15.376
|
||||
14.676,15.167 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.557,13.935 14.549,14.115 14.712,14.115
|
||||
14.718,13.935 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.575,13.484 14.565,13.724 14.725,13.724
|
||||
14.733,13.484 "/>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" points="14.488,15.585 14.48,15.766 14.656,15.766 14.662,15.585
|
||||
"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.57,18.316"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.577,18.106"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.584,17.897"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.591,17.687"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.599,17.476"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.605,17.267"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.613,17.056"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.62,16.846"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.627,16.635"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.635,16.396"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.642,16.187"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.649,15.977"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.656,15.766"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.662,15.585"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.669,15.376"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.676,15.167"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.684,14.956"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.69,14.746"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.698,14.535"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.705,14.325"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.718,13.935"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.725,13.724"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.733,13.484"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.74,13.275"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.748,13.064"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.754,12.854"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.76,12.675"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.768,12.465"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.774,12.256"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.782,12.045"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.789,11.835"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.803,11.415"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9A9E94" d="M14.815,11.055"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
@@ -1,141 +1,141 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g id="Shape_22_copy_11_4_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#5E5C55" d="M27.265,5.259H4.152c-0.247,0-0.448,0.201-0.448,0.448v11.939
|
||||
c0.027,0.402,0.518,0.896,0.518,0.896s11.03,11.075,11.166,11.211c0.137,0.137,0.427,0.204,0.637-0.006
|
||||
c0.21-0.209,11.24-11.205,11.24-11.205s0.447-0.467,0.447-0.896V5.708C27.712,5.46,27.512,5.259,27.265,5.259z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Ellipse_1_copy_5" opacity="0.4">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#171617" d="M24.033,8.904l0.083-4.535L4.136,4.301l0.067,13.515l2.704,2.942
|
||||
l0.938,0.769V9.862c0-0.53,0.431-0.959,0.961-0.959h15.164C23.992,8.902,24.013,8.903,24.033,8.904z M14.699,12.492h10.376v-0.674
|
||||
H14.81c-0.005-1.11-0.906-2.009-2.018-2.009s-2.014,0.899-2.02,2.009h-0.186v0.674h0.298c0.249,0.715,0.889,1.247,1.663,1.34
|
||||
v1.915c-0.52,0.061-0.989,0.277-1.362,0.602l-1.753-1.75l-0.479,0.478l1.785,1.783c-0.26,0.393-0.412,0.863-0.412,1.369
|
||||
c0,0.658,0.257,1.256,0.675,1.702L8.958,21.97l0.479,0.478l2.093-2.09c0.303,0.185,0.649,0.307,1.019,0.35v1.944
|
||||
c-0.992,0.102-1.771,0.923-1.808,1.934h-0.153v0.674l0.243,0c0.255,0.821,1.021,1.418,1.927,1.418
|
||||
c0.904,0,1.669-0.594,1.927-1.412l6.354,0.01l0.376-0.69h-6.64c-0.033-0.921-0.684-1.684-1.549-1.89v-2
|
||||
c0.357-0.054,0.691-0.184,0.984-0.373l2.131,2.129l0.479-0.478l-2.095-2.092c0.394-0.441,0.633-1.02,0.633-1.656
|
||||
c0-0.483-0.138-0.934-0.377-1.316l1.833-1.831l-0.477-0.478l-1.79,1.788c-0.36-0.329-0.816-0.556-1.321-0.633V13.8
|
||||
C13.913,13.649,14.471,13.147,14.699,12.492z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Rectangle_1_copy_4">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B3B1A6" d="M12.206,23.091h0.677V18.69l3.116,3.112l0.478-0.478
|
||||
l-3.454-3.449l3.45-3.445l-0.479-0.478l-3.11,3.106v-4.4h-0.677v4.4L9.09,13.947l-0.479,0.478l3.454,3.449l-3.449,3.445
|
||||
l0.478,0.478l3.112-3.107V23.091z M10.245,24.608h11.511v-0.674H10.245V24.608z M10.245,11.167v0.674h14.488v-0.674H10.245z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g opacity="0.4">
|
||||
<path fill="#343A38" d="M14.029,16.625l-0.688-0.687c-0.165-0.038-0.337-0.059-0.513-0.059c-1.261,0-2.284,1.021-2.284,2.281
|
||||
c0,0.239,0.226,0.696,0.295,0.913c0.009,0.027-0.216,0.196-0.2,0.219c0.147,0.209,0.307,0.371,0.508,0.518l0.08-0.167l0.974,0.317
|
||||
v0.479c0.35,0.091,0.666,0.013,0.686,0.012l0.031-0.534l0.321-0.487l0.677,0.297l0.267,0.271c0.188-0.137,0.353-0.303,0.489-0.49
|
||||
l-0.643-0.643V16.625z"/>
|
||||
<path fill="#343A38" d="M13.59,11.124l-0.748-0.677c-0.165-0.038-0.258-0.428-0.434-0.428c-1.263,0-1.261,0.392-1.261,1.651
|
||||
c0,0.539,0.271,0.976,0.582,1.367l0.476,0.023v0.53c0.281,0.096,0.671,0.018,0.689,0.017v-0.523l-0.88-1.243l0.677,0.297
|
||||
l0.267,0.271c0.187-0.138,0.352-0.303,0.489-0.49l0.771-0.059h0.321c0,0,0.073-0.4,0.012-0.701
|
||||
C14.134,11.16,13.59,11.124,13.59,11.124z"/>
|
||||
<path fill="#343A38" d="M13.394,24.68l0.772-0.059h0.32c0,0,0.123-0.265,0.012-0.702c-0.554,0-0.962-0.035-0.962-0.035
|
||||
L13.394,24.68z"/>
|
||||
</g>
|
||||
<g id="Color_Fill_1">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B3B1A6" d="M24.244,7.009V3.656H3.441V17.24l3.899,3.9l0.069-0.547
|
||||
c0,0,0-9.888,0-10.401c0-0.599-0.034-0.834,0.342-1.232C8.127,8.563,8.18,8.583,8.848,8.583c0.479,0,15.44,0,15.44,0L24.244,7.009
|
||||
z M10.72,11.504c0,0.991,0.805,1.795,1.797,1.795c0.993,0,1.799-0.804,1.799-1.795s-0.806-1.795-1.799-1.795
|
||||
C11.524,9.709,10.72,10.513,10.72,11.504z M14.315,24.271c0-0.991-0.806-1.795-1.799-1.795c-0.992,0-1.797,0.804-1.797,1.795
|
||||
s0.805,1.795,1.797,1.795C13.51,26.066,14.315,25.263,14.315,24.271z M12.544,20.155c1.262,0,2.284-1.021,2.284-2.281
|
||||
s-1.022-2.281-2.284-2.281s-2.283,1.021-2.283,2.281S11.282,20.155,12.544,20.155z M19.019,27.401
|
||||
c-2.02,0-4.303-0.016-6.159-0.016c-0.871,0,2.807,3.275,2.807,3.275S20.278,27.401,19.019,27.401z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Rectangle_3">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#293C3C" points="22.574,4.832 22.574,24.252 27.485,18.558 27.485,4.832
|
||||
"/>
|
||||
</g>
|
||||
</g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#55682F" d="M27.52,3.117H4.375c-0.862,0-1.377,0.637-1.377,1.252v12.685
|
||||
c0,1.091,0.635,1.879,0.662,1.913l0.012,0.015l0.013,0.014c3.398,3.624,11.318,12.066,11.486,12.215
|
||||
c0.202,0.18,0.483,0.283,0.771,0.283c0.283,0,0.555-0.103,0.765-0.29c0.262-0.233,9.688-10.209,11.574-12.207l0.03-0.033
|
||||
l0.024-0.037c0.059-0.083,0.562-0.843,0.562-1.714V4.369C28.896,3.777,28.332,3.117,27.52,3.117z M28.166,17.219
|
||||
c0,0.822-0.476,1.539-0.529,1.618l-0.024,0.034l-0.028,0.031C25.804,20.787,16.91,30.2,16.663,30.419
|
||||
c-0.197,0.177-0.454,0.274-0.722,0.274c-0.271,0-0.536-0.098-0.728-0.267C15.057,30.285,7.583,22.319,4.377,18.9l-0.012-0.013
|
||||
l-0.013-0.014c-0.024-0.031-0.624-0.775-0.624-1.805V5.099c0-0.58,0.486-1.181,1.3-1.181h21.838c0.766,0,1.3,0.623,1.3,1.181V17.219
|
||||
z"/>
|
||||
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" fill="#191919" d="M16.133,30.431c-0.008,0-0.015-0.002-0.02-0.003
|
||||
c-0.537-0.55-7.729-8.237-10.771-11.48c-0.055-0.074-0.396-0.56-0.396-1.181V5.087c0.004-0.02,0.033-0.116,0.236-0.116h22.449
|
||||
c0.158,0,0.223,0.106,0.236,0.135l0.079,12.185c0,0.413-0.232,0.866-0.34,1.037c-3.099,3.28-11.06,11.701-11.47,12.103
|
||||
C16.137,30.431,16.135,30.431,16.133,30.431z M26.435,17.815c0.107-0.12,0.266-0.374,0.266-0.495L26.621,5.552l-1.934,0.023
|
||||
l0.026,0.832H6.026v11.88c0.017,0.102,0.176,0.354,0.327,0.517c0.098,0.103,8.544,9.054,9.697,10.273
|
||||
C17.183,27.888,26.174,18.09,26.435,17.815z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#8CA14A" d="M15.941,30.354c-0.007,0-0.015-0.002-0.021-0.003
|
||||
c-0.535-0.55-8.344-8.872-11.386-12.116c-0.055-0.074-0.396-0.559-0.396-1.181V4.375c0.003-0.02,0.033-0.117,0.236-0.117H27.52
|
||||
c0.16,0,0.223,0.107,0.236,0.136v12.82c0,0.413-0.231,0.866-0.34,1.037c-3.098,3.28-11.06,11.701-11.47,12.103
|
||||
C15.945,30.353,15.944,30.354,15.941,30.354z M26.243,17.737c0.108-0.12,0.267-0.374,0.267-0.495V5.695H5.219v11.521
|
||||
c0.016,0.102,0.175,0.353,0.326,0.517c0.098,0.103,9.161,9.688,10.315,10.908C16.992,27.452,25.981,18.012,26.243,17.737z"/>
|
||||
<g id="Shape_22_copy_12_3_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#343A38" d="M27.52,3.687H4.375c-0.574,0-0.807,0.413-0.807,0.682v12.685
|
||||
c0,0.9,0.532,1.551,0.532,1.551s11.283,12.031,11.449,12.18c0.167,0.148,0.521,0.222,0.777-0.007
|
||||
c0.256-0.228,11.538-12.173,11.538-12.173s0.461-0.671,0.461-1.392V4.369C28.326,4.1,28.028,3.687,27.52,3.687z M27.08,17.242
|
||||
c0,0.423-0.418,0.882-0.418,0.882S16.355,28.947,16.159,29.153c-0.195,0.207-0.467,0.141-0.594,0.006
|
||||
C15.438,29.025,5.132,18.125,5.132,18.125s-0.459-0.486-0.483-0.882V5.565c0-0.243,0.188-0.441,0.418-0.441h21.596
|
||||
c0.23,0,0.418,0.198,0.418,0.441V17.242z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path opacity="0.4" fill="#131313" d="M25.468,5.699l-0.006-2.586l-0.728-0.008l-0.75-1.608c0,0-0.14-0.022-0.2-0.022H8.367
|
||||
c-0.485,0-0.88,0.395-0.88,0.881v4.582c0,0.487,0.746,1.245,1.231,1.245l13.856-0.021l0.019-0.272h1.675
|
||||
c0.731,0,1.444-0.701,1.444-1.326l0.001-0.19l0.796-0.004l-0.004-0.669H25.468z"/>
|
||||
<path fill="#8CA14A" d="M24.806,5.891c0,0.896-0.776,1.622-1.735,1.622h-14.1c-0.959,0-1.735-0.726-1.735-1.622V2.646
|
||||
c0-0.896,0.776-1.622,1.735-1.622h14.1c0.959,0,1.735,0.727,1.735,1.623V5.891z"/>
|
||||
<path fill="#343A38" d="M8.908,7.078c-0.644,0-1.167-0.493-1.167-1.099V2.559c0-0.606,0.523-1.1,1.167-1.1h14.225
|
||||
c0.644,0,1.167,0.494,1.167,1.1v3.419c0,0.606-0.523,1.1-1.167,1.1L8.908,7.078z"/>
|
||||
<g id="bank" opacity="0.4">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#171717" d="M11.648,3.494c0.148-0.034,0.26-0.096,0.334-0.186
|
||||
c0.075-0.09,0.112-0.191,0.112-0.303c0-0.153-0.064-0.29-0.193-0.409c-0.128-0.119-0.333-0.179-0.613-0.179H9.937v2.24h1.268
|
||||
c0.397,0,0.657-0.065,0.778-0.196c0.122-0.131,0.182-0.279,0.182-0.445C12.164,3.738,11.993,3.563,11.648,3.494z M10.688,2.898
|
||||
h0.365c0.182,0,0.273,0.063,0.273,0.187c0,0.046-0.02,0.09-0.059,0.13c-0.04,0.041-0.106,0.061-0.201,0.061h-0.379V2.898z
|
||||
M11.304,4.097c-0.046,0.041-0.118,0.062-0.218,0.062h-0.397V3.751h0.371c0.119,0,0.201,0.022,0.247,0.065
|
||||
c0.044,0.043,0.066,0.091,0.066,0.142C11.373,4.009,11.351,4.056,11.304,4.097z M13.823,2.417l-0.821,2.24h0.663l0.159-0.441
|
||||
h0.714l0.15,0.441h0.833l-0.835-2.24H13.823z M13.964,3.727l0.216-0.65l0.214,0.65H13.964z M18.096,3.08
|
||||
c0,0.201,0.021,0.396,0.063,0.588c-0.063-0.124-0.157-0.267-0.28-0.43l-0.62-0.821h-0.772v2.24h0.663V3.573
|
||||
c0-0.101-0.021-0.224-0.063-0.368c0.095,0.181,0.188,0.335,0.282,0.463l0.729,0.989h0.665v-2.24h-0.665V3.08z M21.51,3.237
|
||||
l0.672-0.82h-0.734l-0.734,0.926V2.417h-0.77v2.24h0.77V4.141l0.276-0.33l0.46,0.846h0.894L21.51,3.237z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="bank_4_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#F2EBC8" d="M11.458,3.304c0.148-0.034,0.26-0.096,0.334-0.187
|
||||
c0.075-0.09,0.112-0.191,0.112-0.303c0-0.153-0.064-0.29-0.192-0.409c-0.129-0.119-0.333-0.179-0.615-0.179H9.746v2.24h1.269
|
||||
c0.396,0,0.656-0.065,0.777-0.196c0.122-0.131,0.183-0.279,0.183-0.446C11.975,3.547,11.802,3.374,11.458,3.304z M10.499,2.708
|
||||
h0.364c0.183,0,0.272,0.063,0.272,0.188c0,0.046-0.02,0.089-0.058,0.129c-0.039,0.04-0.106,0.061-0.201,0.061h-0.378V2.708z
|
||||
M11.114,3.907c-0.046,0.041-0.118,0.062-0.218,0.062h-0.397V3.562h0.371c0.119,0,0.201,0.021,0.246,0.065
|
||||
c0.045,0.043,0.067,0.09,0.067,0.142C11.184,3.82,11.16,3.866,11.114,3.907z M13.634,2.227l-0.821,2.24h0.663l0.159-0.441h0.713
|
||||
l0.15,0.441h0.834l-0.835-2.24H13.634z M13.774,3.537l0.215-0.65l0.215,0.65H13.774z M17.906,2.89c0,0.2,0.021,0.396,0.063,0.587
|
||||
c-0.063-0.124-0.157-0.267-0.281-0.43l-0.62-0.821h-0.771v2.24h0.662V3.383c0-0.101-0.021-0.223-0.064-0.368
|
||||
c0.096,0.182,0.189,0.335,0.284,0.462l0.729,0.99h0.665v-2.24h-0.665V2.89z M21.319,3.047l0.673-0.82h-0.734l-0.734,0.926V2.227
|
||||
h-0.77v2.24h0.77V3.95L20.8,3.621l0.46,0.846h0.894L21.319,3.047z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_16_4_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9CAF4E" d="M17.503,5.169h-0.622c-0.136,0-0.246,0.11-0.246,0.245v0.532
|
||||
c0,0.136,0.11,0.246,0.246,0.246h0.622c0.126,0,0.23-0.096,0.243-0.22V5.959h-0.838V5.397h0.838V5.385
|
||||
C17.731,5.263,17.628,5.169,17.503,5.169z M18.838,5.567h-0.651V5.389h0.874c-0.012-0.123-0.116-0.22-0.243-0.22h-0.635
|
||||
c-0.136,0-0.245,0.11-0.245,0.245v0.152c0.012,0.125,0.117,0.221,0.244,0.221l0.649,0V5.97h-0.893
|
||||
c0.013,0.124,0.117,0.221,0.244,0.221h0.652c0.136,0,0.246-0.109,0.246-0.245V5.787C19.069,5.663,18.965,5.567,18.838,5.567z
|
||||
M21.841,5.16h-0.639c-0.129,0-0.234,0.105-0.234,0.235v0.551c0,0.13,0.105,0.235,0.234,0.235h0.639
|
||||
c0.129,0,0.235-0.105,0.235-0.235V5.396C22.076,5.266,21.97,5.16,21.841,5.16z M21.856,5.993h-0.67V5.351h0.67V5.993z
|
||||
M20.063,5.69c0.049,0.063,0.125,0.067,0.146,0.067l0.341,0V5.98h-0.715V5.358h0.933C20.749,5.244,20.65,5.16,20.534,5.16h-0.683
|
||||
c-0.129,0-0.234,0.106-0.234,0.235v0.551c0,0.13,0.105,0.235,0.234,0.235h0.683c0.122,0,0.223-0.09,0.234-0.208V5.586h-0.757
|
||||
C20.015,5.606,20.024,5.643,20.063,5.69z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
|
||||
<g id="Shape_22_copy_11_4_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#5E5C55" d="M27.265,5.259H4.152c-0.247,0-0.448,0.201-0.448,0.448v11.939
|
||||
c0.027,0.402,0.518,0.896,0.518,0.896s11.03,11.075,11.166,11.211c0.137,0.137,0.427,0.204,0.637-0.006
|
||||
c0.21-0.209,11.24-11.205,11.24-11.205s0.447-0.467,0.447-0.896V5.708C27.712,5.46,27.512,5.259,27.265,5.259z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Ellipse_1_copy_5" opacity="0.4">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#171617" d="M24.033,8.904l0.083-4.535L4.136,4.301l0.067,13.515l2.704,2.942
|
||||
l0.938,0.769V9.862c0-0.53,0.431-0.959,0.961-0.959h15.164C23.992,8.902,24.013,8.903,24.033,8.904z M14.699,12.492h10.376v-0.674
|
||||
H14.81c-0.005-1.11-0.906-2.009-2.018-2.009s-2.014,0.899-2.02,2.009h-0.186v0.674h0.298c0.249,0.715,0.889,1.247,1.663,1.34
|
||||
v1.915c-0.52,0.061-0.989,0.277-1.362,0.602l-1.753-1.75l-0.479,0.478l1.785,1.783c-0.26,0.393-0.412,0.863-0.412,1.369
|
||||
c0,0.658,0.257,1.256,0.675,1.702L8.958,21.97l0.479,0.478l2.093-2.09c0.303,0.185,0.649,0.307,1.019,0.35v1.944
|
||||
c-0.992,0.102-1.771,0.923-1.808,1.934h-0.153v0.674l0.243,0c0.255,0.821,1.021,1.418,1.927,1.418
|
||||
c0.904,0,1.669-0.594,1.927-1.412l6.354,0.01l0.376-0.69h-6.64c-0.033-0.921-0.684-1.684-1.549-1.89v-2
|
||||
c0.357-0.054,0.691-0.184,0.984-0.373l2.131,2.129l0.479-0.478l-2.095-2.092c0.394-0.441,0.633-1.02,0.633-1.656
|
||||
c0-0.483-0.138-0.934-0.377-1.316l1.833-1.831l-0.477-0.478l-1.79,1.788c-0.36-0.329-0.816-0.556-1.321-0.633V13.8
|
||||
C13.913,13.649,14.471,13.147,14.699,12.492z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Rectangle_1_copy_4">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B3B1A6" d="M12.206,23.091h0.677V18.69l3.116,3.112l0.478-0.478
|
||||
l-3.454-3.449l3.45-3.445l-0.479-0.478l-3.11,3.106v-4.4h-0.677v4.4L9.09,13.947l-0.479,0.478l3.454,3.449l-3.449,3.445
|
||||
l0.478,0.478l3.112-3.107V23.091z M10.245,24.608h11.511v-0.674H10.245V24.608z M10.245,11.167v0.674h14.488v-0.674H10.245z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g opacity="0.4">
|
||||
<path fill="#343A38" d="M14.029,16.625l-0.688-0.687c-0.165-0.038-0.337-0.059-0.513-0.059c-1.261,0-2.284,1.021-2.284,2.281
|
||||
c0,0.239,0.226,0.696,0.295,0.913c0.009,0.027-0.216,0.196-0.2,0.219c0.147,0.209,0.307,0.371,0.508,0.518l0.08-0.167l0.974,0.317
|
||||
v0.479c0.35,0.091,0.666,0.013,0.686,0.012l0.031-0.534l0.321-0.487l0.677,0.297l0.267,0.271c0.188-0.137,0.353-0.303,0.489-0.49
|
||||
l-0.643-0.643V16.625z"/>
|
||||
<path fill="#343A38" d="M13.59,11.124l-0.748-0.677c-0.165-0.038-0.258-0.428-0.434-0.428c-1.263,0-1.261,0.392-1.261,1.651
|
||||
c0,0.539,0.271,0.976,0.582,1.367l0.476,0.023v0.53c0.281,0.096,0.671,0.018,0.689,0.017v-0.523l-0.88-1.243l0.677,0.297
|
||||
l0.267,0.271c0.187-0.138,0.352-0.303,0.489-0.49l0.771-0.059h0.321c0,0,0.073-0.4,0.012-0.701
|
||||
C14.134,11.16,13.59,11.124,13.59,11.124z"/>
|
||||
<path fill="#343A38" d="M13.394,24.68l0.772-0.059h0.32c0,0,0.123-0.265,0.012-0.702c-0.554,0-0.962-0.035-0.962-0.035
|
||||
L13.394,24.68z"/>
|
||||
</g>
|
||||
<g id="Color_Fill_1">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B3B1A6" d="M24.244,7.009V3.656H3.441V17.24l3.899,3.9l0.069-0.547
|
||||
c0,0,0-9.888,0-10.401c0-0.599-0.034-0.834,0.342-1.232C8.127,8.563,8.18,8.583,8.848,8.583c0.479,0,15.44,0,15.44,0L24.244,7.009
|
||||
z M10.72,11.504c0,0.991,0.805,1.795,1.797,1.795c0.993,0,1.799-0.804,1.799-1.795s-0.806-1.795-1.799-1.795
|
||||
C11.524,9.709,10.72,10.513,10.72,11.504z M14.315,24.271c0-0.991-0.806-1.795-1.799-1.795c-0.992,0-1.797,0.804-1.797,1.795
|
||||
s0.805,1.795,1.797,1.795C13.51,26.066,14.315,25.263,14.315,24.271z M12.544,20.155c1.262,0,2.284-1.021,2.284-2.281
|
||||
s-1.022-2.281-2.284-2.281s-2.283,1.021-2.283,2.281S11.282,20.155,12.544,20.155z M19.019,27.401
|
||||
c-2.02,0-4.303-0.016-6.159-0.016c-0.871,0,2.807,3.275,2.807,3.275S20.278,27.401,19.019,27.401z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Rectangle_3">
|
||||
<g>
|
||||
<polygon fill-rule="evenodd" clip-rule="evenodd" fill="#293C3C" points="22.574,4.832 22.574,24.252 27.485,18.558 27.485,4.832
|
||||
"/>
|
||||
</g>
|
||||
</g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#55682F" d="M27.52,3.117H4.375c-0.862,0-1.377,0.637-1.377,1.252v12.685
|
||||
c0,1.091,0.635,1.879,0.662,1.913l0.012,0.015l0.013,0.014c3.398,3.624,11.318,12.066,11.486,12.215
|
||||
c0.202,0.18,0.483,0.283,0.771,0.283c0.283,0,0.555-0.103,0.765-0.29c0.262-0.233,9.688-10.209,11.574-12.207l0.03-0.033
|
||||
l0.024-0.037c0.059-0.083,0.562-0.843,0.562-1.714V4.369C28.896,3.777,28.332,3.117,27.52,3.117z M28.166,17.219
|
||||
c0,0.822-0.476,1.539-0.529,1.618l-0.024,0.034l-0.028,0.031C25.804,20.787,16.91,30.2,16.663,30.419
|
||||
c-0.197,0.177-0.454,0.274-0.722,0.274c-0.271,0-0.536-0.098-0.728-0.267C15.057,30.285,7.583,22.319,4.377,18.9l-0.012-0.013
|
||||
l-0.013-0.014c-0.024-0.031-0.624-0.775-0.624-1.805V5.099c0-0.58,0.486-1.181,1.3-1.181h21.838c0.766,0,1.3,0.623,1.3,1.181V17.219
|
||||
z"/>
|
||||
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" fill="#191919" d="M16.133,30.431c-0.008,0-0.015-0.002-0.02-0.003
|
||||
c-0.537-0.55-7.729-8.237-10.771-11.48c-0.055-0.074-0.396-0.56-0.396-1.181V5.087c0.004-0.02,0.033-0.116,0.236-0.116h22.449
|
||||
c0.158,0,0.223,0.106,0.236,0.135l0.079,12.185c0,0.413-0.232,0.866-0.34,1.037c-3.099,3.28-11.06,11.701-11.47,12.103
|
||||
C16.137,30.431,16.135,30.431,16.133,30.431z M26.435,17.815c0.107-0.12,0.266-0.374,0.266-0.495L26.621,5.552l-1.934,0.023
|
||||
l0.026,0.832H6.026v11.88c0.017,0.102,0.176,0.354,0.327,0.517c0.098,0.103,8.544,9.054,9.697,10.273
|
||||
C17.183,27.888,26.174,18.09,26.435,17.815z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#8CA14A" d="M15.941,30.354c-0.007,0-0.015-0.002-0.021-0.003
|
||||
c-0.535-0.55-8.344-8.872-11.386-12.116c-0.055-0.074-0.396-0.559-0.396-1.181V4.375c0.003-0.02,0.033-0.117,0.236-0.117H27.52
|
||||
c0.16,0,0.223,0.107,0.236,0.136v12.82c0,0.413-0.231,0.866-0.34,1.037c-3.098,3.28-11.06,11.701-11.47,12.103
|
||||
C15.945,30.353,15.944,30.354,15.941,30.354z M26.243,17.737c0.108-0.12,0.267-0.374,0.267-0.495V5.695H5.219v11.521
|
||||
c0.016,0.102,0.175,0.353,0.326,0.517c0.098,0.103,9.161,9.688,10.315,10.908C16.992,27.452,25.981,18.012,26.243,17.737z"/>
|
||||
<g id="Shape_22_copy_12_3_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#343A38" d="M27.52,3.687H4.375c-0.574,0-0.807,0.413-0.807,0.682v12.685
|
||||
c0,0.9,0.532,1.551,0.532,1.551s11.283,12.031,11.449,12.18c0.167,0.148,0.521,0.222,0.777-0.007
|
||||
c0.256-0.228,11.538-12.173,11.538-12.173s0.461-0.671,0.461-1.392V4.369C28.326,4.1,28.028,3.687,27.52,3.687z M27.08,17.242
|
||||
c0,0.423-0.418,0.882-0.418,0.882S16.355,28.947,16.159,29.153c-0.195,0.207-0.467,0.141-0.594,0.006
|
||||
C15.438,29.025,5.132,18.125,5.132,18.125s-0.459-0.486-0.483-0.882V5.565c0-0.243,0.188-0.441,0.418-0.441h21.596
|
||||
c0.23,0,0.418,0.198,0.418,0.441V17.242z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path opacity="0.4" fill="#131313" d="M25.468,5.699l-0.006-2.586l-0.728-0.008l-0.75-1.608c0,0-0.14-0.022-0.2-0.022H8.367
|
||||
c-0.485,0-0.88,0.395-0.88,0.881v4.582c0,0.487,0.746,1.245,1.231,1.245l13.856-0.021l0.019-0.272h1.675
|
||||
c0.731,0,1.444-0.701,1.444-1.326l0.001-0.19l0.796-0.004l-0.004-0.669H25.468z"/>
|
||||
<path fill="#8CA14A" d="M24.806,5.891c0,0.896-0.776,1.622-1.735,1.622h-14.1c-0.959,0-1.735-0.726-1.735-1.622V2.646
|
||||
c0-0.896,0.776-1.622,1.735-1.622h14.1c0.959,0,1.735,0.727,1.735,1.623V5.891z"/>
|
||||
<path fill="#343A38" d="M8.908,7.078c-0.644,0-1.167-0.493-1.167-1.099V2.559c0-0.606,0.523-1.1,1.167-1.1h14.225
|
||||
c0.644,0,1.167,0.494,1.167,1.1v3.419c0,0.606-0.523,1.1-1.167,1.1L8.908,7.078z"/>
|
||||
<g id="bank" opacity="0.4">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#171717" d="M11.648,3.494c0.148-0.034,0.26-0.096,0.334-0.186
|
||||
c0.075-0.09,0.112-0.191,0.112-0.303c0-0.153-0.064-0.29-0.193-0.409c-0.128-0.119-0.333-0.179-0.613-0.179H9.937v2.24h1.268
|
||||
c0.397,0,0.657-0.065,0.778-0.196c0.122-0.131,0.182-0.279,0.182-0.445C12.164,3.738,11.993,3.563,11.648,3.494z M10.688,2.898
|
||||
h0.365c0.182,0,0.273,0.063,0.273,0.187c0,0.046-0.02,0.09-0.059,0.13c-0.04,0.041-0.106,0.061-0.201,0.061h-0.379V2.898z
|
||||
M11.304,4.097c-0.046,0.041-0.118,0.062-0.218,0.062h-0.397V3.751h0.371c0.119,0,0.201,0.022,0.247,0.065
|
||||
c0.044,0.043,0.066,0.091,0.066,0.142C11.373,4.009,11.351,4.056,11.304,4.097z M13.823,2.417l-0.821,2.24h0.663l0.159-0.441
|
||||
h0.714l0.15,0.441h0.833l-0.835-2.24H13.823z M13.964,3.727l0.216-0.65l0.214,0.65H13.964z M18.096,3.08
|
||||
c0,0.201,0.021,0.396,0.063,0.588c-0.063-0.124-0.157-0.267-0.28-0.43l-0.62-0.821h-0.772v2.24h0.663V3.573
|
||||
c0-0.101-0.021-0.224-0.063-0.368c0.095,0.181,0.188,0.335,0.282,0.463l0.729,0.989h0.665v-2.24h-0.665V3.08z M21.51,3.237
|
||||
l0.672-0.82h-0.734l-0.734,0.926V2.417h-0.77v2.24h0.77V4.141l0.276-0.33l0.46,0.846h0.894L21.51,3.237z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="bank_4_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#F2EBC8" d="M11.458,3.304c0.148-0.034,0.26-0.096,0.334-0.187
|
||||
c0.075-0.09,0.112-0.191,0.112-0.303c0-0.153-0.064-0.29-0.192-0.409c-0.129-0.119-0.333-0.179-0.615-0.179H9.746v2.24h1.269
|
||||
c0.396,0,0.656-0.065,0.777-0.196c0.122-0.131,0.183-0.279,0.183-0.446C11.975,3.547,11.802,3.374,11.458,3.304z M10.499,2.708
|
||||
h0.364c0.183,0,0.272,0.063,0.272,0.188c0,0.046-0.02,0.089-0.058,0.129c-0.039,0.04-0.106,0.061-0.201,0.061h-0.378V2.708z
|
||||
M11.114,3.907c-0.046,0.041-0.118,0.062-0.218,0.062h-0.397V3.562h0.371c0.119,0,0.201,0.021,0.246,0.065
|
||||
c0.045,0.043,0.067,0.09,0.067,0.142C11.184,3.82,11.16,3.866,11.114,3.907z M13.634,2.227l-0.821,2.24h0.663l0.159-0.441h0.713
|
||||
l0.15,0.441h0.834l-0.835-2.24H13.634z M13.774,3.537l0.215-0.65l0.215,0.65H13.774z M17.906,2.89c0,0.2,0.021,0.396,0.063,0.587
|
||||
c-0.063-0.124-0.157-0.267-0.281-0.43l-0.62-0.821h-0.771v2.24h0.662V3.383c0-0.101-0.021-0.223-0.064-0.368
|
||||
c0.096,0.182,0.189,0.335,0.284,0.462l0.729,0.99h0.665v-2.24h-0.665V2.89z M21.319,3.047l0.673-0.82h-0.734l-0.734,0.926V2.227
|
||||
h-0.77v2.24h0.77V3.95L20.8,3.621l0.46,0.846h0.894L21.319,3.047z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape_16_4_">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9CAF4E" d="M17.503,5.169h-0.622c-0.136,0-0.246,0.11-0.246,0.245v0.532
|
||||
c0,0.136,0.11,0.246,0.246,0.246h0.622c0.126,0,0.23-0.096,0.243-0.22V5.959h-0.838V5.397h0.838V5.385
|
||||
C17.731,5.263,17.628,5.169,17.503,5.169z M18.838,5.567h-0.651V5.389h0.874c-0.012-0.123-0.116-0.22-0.243-0.22h-0.635
|
||||
c-0.136,0-0.245,0.11-0.245,0.245v0.152c0.012,0.125,0.117,0.221,0.244,0.221l0.649,0V5.97h-0.893
|
||||
c0.013,0.124,0.117,0.221,0.244,0.221h0.652c0.136,0,0.246-0.109,0.246-0.245V5.787C19.069,5.663,18.965,5.567,18.838,5.567z
|
||||
M21.841,5.16h-0.639c-0.129,0-0.234,0.105-0.234,0.235v0.551c0,0.13,0.105,0.235,0.234,0.235h0.639
|
||||
c0.129,0,0.235-0.105,0.235-0.235V5.396C22.076,5.266,21.97,5.16,21.841,5.16z M21.856,5.993h-0.67V5.351h0.67V5.993z
|
||||
M20.063,5.69c0.049,0.063,0.125,0.067,0.146,0.067l0.341,0V5.98h-0.715V5.358h0.933C20.749,5.244,20.65,5.16,20.534,5.16h-0.683
|
||||
c-0.129,0-0.234,0.106-0.234,0.235v0.551c0,0.13,0.105,0.235,0.234,0.235h0.683c0.122,0,0.223-0.09,0.234-0.208V5.586h-0.757
|
||||
C20.015,5.606,20.024,5.643,20.063,5.69z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 213 KiB After Width: | Height: | Size: 211 KiB |
|
Before Width: | Height: | Size: 210 KiB After Width: | Height: | Size: 208 KiB |
|
Before Width: | Height: | Size: 213 KiB After Width: | Height: | Size: 211 KiB |
|
Before Width: | Height: | Size: 214 KiB After Width: | Height: | Size: 212 KiB |