composed project, added packages, models, controllers, seeders, mirgations etc.

This commit is contained in:
Yevhen Odynets 2024-07-28 17:45:09 +03:00
parent 5d05ee373a
commit 56eec65355
73 changed files with 3576 additions and 368 deletions

View File

@ -0,0 +1,27 @@
<?php
/**
* @package: events-venues-task
* @author: Yevhen Odynets
* @date: 2024-07-28
* @time: 16:01
*/
//phpcs:ignore
declare(strict_types = 1);
namespace App;
enum ConsoleStyleInterfaceType
{
case title;
case section;
//case listing;
case text;
case success;
case error;
case warning;
case note;
case caution;
//case $table;
}

34
app/Facades/Image.php Normal file
View File

@ -0,0 +1,34 @@
<?php
/**
* @package: events-venues-task
* @author: Yevhen Odynets
* @date: 2024-07-27
* @time: 07:29
*/
//phpcs:ignore
declare(strict_types = 1);
namespace App\Facades;
use Illuminate\Support\Facades\Facade;
/**
* @method static string|null localPath(string $imagePath)
* @method static array|string meta(string $fullPath, ?string $property = null)
* phpcs:ignore
* @method static string cropAlign(string $srcPath, string $destPath, ?int $cropWidth = null, ?int $cropHeight = null, ?string $horizontalAlign = 'center', ?string $verticalAlign = 'middle')
*
* @uses \App\Services\Image\Image
*/
class Image extends Facade
{
/**
* @return string
*/
protected static function getFacadeAccessor(): string
{
return 'image';
}
}

View File

@ -7,6 +7,7 @@ use App\Http\Requests\Auth\LoginRequest;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use Illuminate\Validation\ValidationException;
use Illuminate\View\View;
class AuthenticatedSessionController extends Controller
@ -21,6 +22,8 @@ class AuthenticatedSessionController extends Controller
/**
* Handle an incoming authentication request.
*
* @throws ValidationException
*/
public function store(LoginRequest $request): RedirectResponse
{
@ -28,7 +31,8 @@ class AuthenticatedSessionController extends Controller
$request->session()->regenerate();
return redirect()->intended(route('dashboard', absolute: false));
//return redirect()->intended(route('dashboard', absolute: false));
return redirect(route('dashboard', absolute: false));
}
/**

View File

@ -24,10 +24,12 @@ class ConfirmablePasswordController extends Controller
*/
public function store(Request $request): RedirectResponse
{
if (! Auth::guard('web')->validate([
if (
! Auth::guard('web')->validate([
'email' => $request->user()->email,
'password' => $request->password,
])) {
])
) {
throw ValidationException::withMessages([
'password' => __('auth.password'),
]);

View File

@ -31,7 +31,7 @@ class RegisteredUserController extends Controller
{
$request->validate([
'name' => ['required', 'string', 'max:255'],
'email' => ['required', 'string', 'lowercase', 'email', 'max:255', 'unique:'.User::class],
'email' => ['required', 'string', 'lowercase', 'email', 'max:255', 'unique:' . User::class],
'password' => ['required', 'confirmed', Rules\Password::defaults()],
]);

View File

@ -15,13 +15,13 @@ class VerifyEmailController extends Controller
public function __invoke(EmailVerificationRequest $request): RedirectResponse
{
if ($request->user()->hasVerifiedEmail()) {
return redirect()->intended(route('dashboard', absolute: false).'?verified=1');
return redirect()->intended(route('dashboard', absolute: false) . '?verified=1');
}
if ($request->user()->markEmailAsVerified()) {
event(new Verified($request->user()));
}
return redirect()->intended(route('dashboard', absolute: false).'?verified=1');
return redirect()->intended(route('dashboard', absolute: false) . '?verified=1');
}
}

View File

@ -0,0 +1,68 @@
<?php
declare(strict_types=1);
namespace App\Http\Controllers;
use App\Models\Event;
use Illuminate\Http\Request;
class EventController extends Controller
{
/**
* Display a listing of the resource.
*
*/
public function index()
{
return view('model.event', ['events' => Event::with('venue')->get()]);
}
/**
* Show the form for creating a new resource.
*/
public function create()
{
//
}
/**
* Store a newly created resource in storage.
*/
public function store(Request $request)
{
//
}
/**
* Display the specified resource.
*/
public function show(string $id)
{
//
}
/**
* Show the form for editing the specified resource.
*/
public function edit(string $id)
{
//
}
/**
* Update the specified resource in storage.
*/
public function update(Request $request, string $id)
{
//
}
/**
* Remove the specified resource from storage.
*/
public function destroy(string $id)
{
//
}
}

View File

@ -0,0 +1,22 @@
<?php
/**
* @package: events-venues-task
* @author: Yevhen Odynets
* @date: 2024-07-24
* @time: 22:07
*/
declare(strict_types=1);
namespace App\Http\Controllers;
use Illuminate\Http\Response;
class FallbackController
{
public function __invoke(): Response
{
return response()->view('errors.404', [], 404);
}
}

View File

@ -0,0 +1,67 @@
<?php
declare(strict_types=1);
namespace App\Http\Controllers;
use App\Models\Venue;
use Illuminate\Http\Request;
class VenueController extends Controller
{
/**
* Display a listing of the resource.
*/
public function index()
{
return Venue::with('events')->get();
}
/**
* Show the form for creating a new resource.
*/
public function create()
{
//
}
/**
* Store a newly created resource in storage.
*/
public function store(Request $request)
{
//
}
/**
* Display the specified resource.
*/
public function show(string $id)
{
//
}
/**
* Show the form for editing the specified resource.
*/
public function edit(string $id)
{
//
}
/**
* Update the specified resource in storage.
*/
public function update(Request $request, string $id)
{
//
}
/**
* Remove the specified resource from storage.
*/
public function destroy(string $id)
{
//
}
}

View File

@ -80,6 +80,6 @@ class LoginRequest extends FormRequest
*/
public function throttleKey(): string
{
return Str::transliterate(Str::lower($this->string('email')).'|'.$this->ip());
return Str::transliterate(Str::lower($this->string('email')) . '|' . $this->ip());
}
}

View File

@ -17,7 +17,14 @@ class ProfileUpdateRequest extends FormRequest
{
return [
'name' => ['required', 'string', 'max:255'],
'email' => ['required', 'string', 'lowercase', 'email', 'max:255', Rule::unique(User::class)->ignore($this->user()->id)],
'email' => [
'required',
'string',
'lowercase',
'email',
'max:255',
Rule::unique(User::class)->ignore($this->user()->id),
],
];
}
}

View File

@ -0,0 +1,56 @@
<?php
/**
* @package: events-venues-task
* @author: Yevhen Odynets
* @date: 2024-07-27
* @time: 11:57
*/
declare(strict_types=1);
namespace App;
enum LoggingSeverityLevelsType
{
/**
* indicates that the system is unusable and requires immediate attention
*/
case emergency;
/**
* indicates that immediate action is necessary to resolve a critical issue immediately
* (such as a corrupted system database)
*/
case alert;
/**
* signifies critical conditions in the program that demand intervention to prevent system failure
*/
case critical;
/**
* indicates error conditions that impair some operation but are less severe than critical situations
*/
case error;
/**
* signifies potential issues that may lead to errors or unexpected behavior in the future if not addressed
*/
case warning;
/**
* applies to normal but significant conditions that may require monitoring
*/
case notice;
/**
* includes messages that provide a record of the normal operation of the system
*/
case info;
/**
* intended for logging detailed information about the system for debugging purposes
*/
case debug;
}

37
app/Models/Event.php Normal file
View File

@ -0,0 +1,37 @@
<?php
declare(strict_types=1);
namespace App\Models;
use Illuminate\Database\Eloquent\{Builder, Factories\HasFactory, Model, Relations\BelongsTo};
class Event extends Model
{
use HasFactory;
/**
* Indicates if the model should be timestamped.
*
* @var bool
*/
public $timestamps = false;
public function venue(): BelongsTo
{
return $this->belongsTo(Venue::class);
}
/**
* @param Builder $query
* @param string $column
* @param string $direction
*
* @return void
*/
public function scopeSortBy(Builder $query, string $column = 'id', string $direction = 'asc'): void
{
$query->orderBy($column, validateOrderDirection($direction));
}
}

View File

@ -2,14 +2,15 @@
namespace App\Models;
// use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
class User extends Authenticatable
class User extends Authenticatable implements MustVerifyEmail
{
use HasFactory, Notifiable;
use HasFactory;
use Notifiable;
/**
* The attributes that are mass assignable.

40
app/Models/Venue.php Normal file
View File

@ -0,0 +1,40 @@
<?php
declare(strict_types=1);
namespace App\Models;
use Illuminate\Database\Eloquent\{Builder, Factories\HasFactory, Model, Relations\HasMany};
class Venue extends Model
{
use HasFactory;
/**
* Indicates if the model should be timestamped.
*
* @var bool
*/
public $timestamps = false;
/**
* @return HasMany
*/
public function events(): HasMany
{
return $this->hasMany(Event::class);
}
/**
* @param Builder $query
* @param string $column
* @param string $direction
*
* @return void
*/
public function scopeSortBy(Builder $query, string $column = 'id', string $direction = 'asc'): void
{
$query->orderBy($column, validateOrderDirection($direction));
}
}

View File

@ -2,6 +2,7 @@
namespace App\Providers;
use App\Services\Image\Image;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
@ -11,7 +12,6 @@ class AppServiceProvider extends ServiceProvider
*/
public function register(): void
{
//
}
/**

View File

@ -0,0 +1,26 @@
<?php
namespace App\Providers;
use App\Services\Image\Image;
use Illuminate\Support\Facades\Blade;
use Illuminate\Support\ServiceProvider;
class ImageServiceProvider extends ServiceProvider
{
/**
* Register services.
*/
public function register(): void
{
$this->app->singleton('image', Image::class);
}
/**
* Bootstrap services.
*/
public function boot(): void
{
class_alias(Image::class, 'Image');
}
}

View File

@ -0,0 +1,25 @@
<?php
namespace App\Providers;
use App\Services\Journal\Journal;
use Illuminate\Support\ServiceProvider;
class JournalServiceProvider extends ServiceProvider
{
/**
* Register services.
*/
public function register(): void
{
$this->app->singleton('journal', Journal::class);
}
/**
* Bootstrap services.
*/
public function boot(): void
{
class_alias(Journal::class, 'Journal');
}
}

View File

@ -0,0 +1,17 @@
<?php
/**
* @package: events-venues-task
* @author: Yevhen Odynets
* @date: 2024-07-26
* @time: 19:44
*/
declare(strict_types=1);
namespace App\Services\Faker\Image\Contracts;
enum FakerImageProviderType
{
case LoremFlickr;
}

View File

@ -0,0 +1,17 @@
<?php
/**
* @package: events-venues-task
* @author: Yevhen Odynets
* @date: 2024-07-26
* @time: 19:51
*/
declare(strict_types=1);
namespace App\Services\Faker\Image\Contracts;
interface ProviderFactoryInterface
{
public static function apply(): ProviderInterface;
}

View File

@ -0,0 +1,57 @@
<?php
/**
* @package: events-venues-task
* @author: Yevhen Odynets
* @date: 2024-07-26
* @time: 19:48
*/
declare(strict_types=1);
namespace App\Services\Faker\Image\Contracts;
use App\Services\Faker\Image\ImageStorage;
interface ProviderInterface
{
public const array KEYWORDS
= [
'tournament',
'match',
'game',
'fight',
'championship',
'date',
'contest',
'competition',
'event',
'advent',
'meeting',
'adventure',
'convention',
'gathering',
'council',
'committee',
'seminar',
'congregation',
'symposium',
'congress',
'assembly',
'forum',
'colloquium',
'convocation',
'marvel',
'conference',
'celebration',
'holiday',
'ceremony',
];
/**
* @param ImageStorage $storage
*
* @return string|null
*/
public function getImage(ImageStorage $storage): ?string;
}

View File

@ -0,0 +1,32 @@
<?php
/**
* @package: events-venues-task
* @author: Yevhen Odynets
* @date: 2024-07-26
* @time: 19:56
*/
declare(strict_types=1);
namespace App\Services\Faker\Image;
use App\Services\Faker\Image\Providers\LoremFlickrFactory;
use App\Services\Faker\Image\Contracts\{ProviderFactoryInterface, FakerImageProviderType};
use RuntimeException;
class FakerImageProvider
{
public static function use(FakerImageProviderType $type): ProviderFactoryInterface
{
if ($type === FakerImageProviderType::LoremFlickr) {
{
return new LoremFlickrFactory();
}
} else {
{
throw new RuntimeException("Unknown image provider: " . $type->name);
}
}
}
}

View File

@ -0,0 +1,70 @@
<?php
/**
* @package: events-venues-task
* @author: Yevhen Odynets
* @date: 2024-07-26
* @time: 19:20
*/
//phpcs:ignore
declare(strict_types = 1);
namespace App\Services\Faker\Image;
use Illuminate\Support\Arr;
class ImageStorage
{
private string $destFolder;
private int $width;
private int $height;
private array $keywords;
public function __construct(string $destFolder, int $width, int $height, array $keywords = [])
{
$this->destFolder = $destFolder;
$this->width = $width;
$this->height = $height;
$this->keywords = $keywords;
}
/**
* @return string
*/
public function getFolder(): string
{
return $this->destFolder;
}
/**
* @return int
*/
public function getWidth(): int
{
return $this->width;
}
/**
* @return int
*/
public function getHeight(): int
{
return $this->height;
}
/**
* @param string $prefix
* @param string $suffix
*
* @return string|null
*/
public function getKeyword(string $prefix = '', string $suffix = ''): ?string
{
if (count($this->keywords) === 0) {
return null;
}
return $prefix . Arr::random($this->keywords) . $suffix;
}
}

View File

@ -0,0 +1,69 @@
<?php
/**
* @package: events-venues-task
* @author: Yevhen Odynets
* @date: 2024-07-26
* @time: 22:54
*/
//phpcs:ignore
declare(strict_types=1);
namespace App\Services\Faker\Image;
use App\Facades\Image;
use App\Services\Faker\Image\{Contracts\ProviderInterface};
use Error;
use Illuminate\Support\{Facades\Http, Facades\Storage, Str};
abstract class Provider implements ProviderInterface
{
public ?string $url = null;
abstract public function getImage(ImageStorage $storage): ?string;
/**
* @param ImageStorage $storage
* @param string|null $url
*
* @return string|null
*/
protected function download(ImageStorage $storage, ?string $url): ?string
{
$storagePath = Str::of($storage->getFolder()) . '/' . Str::uuid()->toString() . '.jpg';
$response = Http::get($url);
if ($response->successful() === false) {
appNotice("Couldn't download image from $url");
return null;
}
$result = Storage::disk("local")->put($storagePath, $response->body());
$verify = $this->verify($storagePath, config('image.faker.cropper'));
return $result && $verify !== "NULL" ? $verify : "NULL";
}
private function verify(string $storagePath, ?array $cropper = []): string
{
$fullPath = Image::localPath($storagePath);
if (is_null($fullPath)) {
appNotice("Couldn't locate image from $storagePath");
return "NULL";
}
$meta = Image::meta($fullPath);
if (empty($meta)) {
appNotice("Couldn't retrieve image meta from $fullPath");
return "NULL";
}
try {
return Image::cropAlign($fullPath, $storagePath, ...$cropper);
} catch (Error $err) {
//Image::log($err, LoggingSeverityLevelsType::emergency);
return "NULL";
}
}
}

View File

@ -0,0 +1,25 @@
<?php
/**
* @package: events-venues-task
* @author: Yevhen Odynets
* @date: 2024-07-26
* @time: 19:48
*/
declare(strict_types=1);
namespace App\Services\Faker\Image\Providers;
use App\Services\Faker\Image\{ImageStorage, Provider};
final class LoremFlickr extends Provider
{
public function getImage(ImageStorage $storage): ?string
{
$this->url = config('image.faker.provider.loremflickr.host') .
$storage->getWidth() . "/" . $storage->getHeight() . $storage->getKeyword('/');
return $this->download($storage, $this->url);
}
}

View File

@ -0,0 +1,22 @@
<?php
/**
* @package: events-venues-task
* @author: Yevhen Odynets
* @date: 2024-07-26
* @time: 20:03
*/
declare(strict_types=1);
namespace App\Services\Faker\Image\Providers;
use App\Services\Faker\Image\Contracts\{ProviderFactoryInterface, ProviderInterface};
class LoremFlickrFactory implements ProviderFactoryInterface
{
public static function apply(): ProviderInterface
{
return new LoremFlickr();
}
}

View File

@ -0,0 +1,17 @@
<?php
/**
* @package: events-venues-task
* @author: Yevhen Odynets
* @date: 2024-07-27
* @time: 12:58
*/
//phpcs:ignore
declare(strict_types=1);
namespace App\Services\Image\Contracts;
interface ImageInterface
{
}

View File

@ -0,0 +1,77 @@
<?php
/**
* @package: events-venues-task
* @author: Yevhen Odynets
* @date: 2024-07-27
* @time: 07:35
*/
//phpcs:ignore
declare(strict_types = 1);
namespace App\Services\Image;
use App\ConsoleStyleInterfaceType;
use App\LoggingSeverityLevelsType;
use App\Services\Image\Contracts\ImageInterface;
use App\Services\Image\ImageCropperTrait as Cropper;
use Exception;
use Illuminate\Support\Facades\{App, Log, Storage};
use Symfony\Component\Console\{Input\ArgvInput, Output\ConsoleOutput, Style\SymfonyStyle};
final class Image implements ImageInterface
{
use Cropper;
public static mixed $faker = null;
private SymfonyStyle $io;
private array $config;
private bool $isConsole;
private bool $isVerbosity;
private bool $isIO;
public function __construct()
{
$this->config = config('image');
}
/**
* @param string $imagePath
*
* @return string|null
*/
public function localPath(string $imagePath): ?string
{
$fullPath = realpath(Storage::path($imagePath));
if (! $fullPath || ! file_exists($fullPath)) {
return null;
}
return $fullPath;
}
/**
* @param string $fullPath
* @param string|null $property
*
* @return array|string
*/
public function meta(string $fullPath, ?string $property = null): array|string
{
try {
$meta = getimagesize($fullPath);
if (is_null($property) === false && array_key_exists($property, $this->config['meta'])) {
return $meta[$this->config['meta'][$property]];
}
return getimagesize($fullPath);
} catch (Exception $e) {
appWarning($e);
}
return [];
}
}

View File

@ -0,0 +1,154 @@
<?php
/**
* @package: events-venues-task
* @author: Yevhen Odynets
* @date: 2024-07-27
* @time: 12:42
*/
declare(strict_types=1);
namespace App\Services\Image;
use Illuminate\Support\Facades\File;
use ReflectionException;
use RuntimeException;
trait ImageCropperTrait
{
public static int $counter = 1;
/**
* @throws ReflectionException
*/
public function cropAlign(
string $srcPath,
string $dbPath,
?int $cropWidth = null,
?int $cropHeight = null,
?string $horizontalAlign = 'center',
?string $verticalAlign = 'middle'
): string {
$resource = $this->imageResource($srcPath);
if ($resource === false) {
appNotice("could not get image resource: $srcPath");
return $dbPath;
}
[$image, $saveMethod, $quality] = $resource;
$width = imagesx($image);
$height = imagesy($image);
$cropWidth ??= $width;
$cropHeight ??= $height;
if (($width > $cropWidth || $height > $cropHeight) === false) {
$destPath = $this->destPath($srcPath, $dbPath, $width, $height);
appInfo(self::$counter++ . ". skip cropping ($width x $height): " . basename($destPath[0]) . " saved");
return File::move($srcPath, $destPath[0]) ? $destPath[1] : $dbPath;
}
$horizontalAlignPixels = $this->calculatePixelsForAlign($width, $cropWidth, $horizontalAlign);
$verticalAlignPixels = $this->calculatePixelsForAlign($height, $cropHeight, $verticalAlign);
$destPath = $this->destPath($srcPath, $dbPath, $horizontalAlignPixels[1], $verticalAlignPixels[1]);
$croppedImage = imagecrop($image, [
'x' => $horizontalAlignPixels[0],
'y' => $verticalAlignPixels[0],
'width' => $horizontalAlignPixels[1],
'height' => $verticalAlignPixels[1],
]);
if ($croppedImage !== false) {
$saveMethod($croppedImage, $destPath[0], $quality);
imagedestroy($croppedImage);
appSuccess(
self::$counter++ . ". cropped successfully from $width x $height: " . basename($destPath[0]) . " saved"
);
}
imagedestroy($image);
if (File::delete($srcPath) === false) {
$e = new RuntimeException("could not delete image: $srcPath");
appWarning($e);
return $dbPath;
}
return $destPath[1];
}
/**
* @param string $srcPath
*
* @return false|array
*/
private function imageResource(string $srcPath): false|array
{
return match (mime_content_type($srcPath)) {
'image/jpeg' => [imagecreatefromjpeg($srcPath), 'imagejpeg', 84],
'image/png' => [imagecreatefrompng($srcPath), 'imagepng', 7],
'image/gif' => [imagecreatefromgif($srcPath), 'imagegif', null],
default => false,
};
}
/**
* @param string $srcPath
* @param string $dbPath
* @param int $width
* @param int $height
*
* @return string[]
*/
private function destPath(string $srcPath, string $dbPath, int $width, int $height): array
{
$pi = pathinfo($srcPath);
$fs_path = sprintf(
"%s\%s-%dx%d.%s",
$pi['dirname'],
$pi['filename'],
$width,
$height,
$pi['extension']
);
$db_path = sprintf(
"%s/%s-%dx%d.%s",
dirname($dbPath),
$pi['filename'],
$width,
$height,
$pi['extension']
);
return [$fs_path, $db_path];
}
/**
* @param int $imageSize
* @param int $cropSize
* @param string $align
*
* @return array|int[]
*/
private function calculatePixelsForAlign(int $imageSize, int $cropSize, string $align): array
{
return match ($align) {
'left', 'top' => [0, min($cropSize, $imageSize)],
'right', 'bottom' => [max(0, $imageSize - $cropSize), min($cropSize, $imageSize)],
'center', 'middle' => [
max(0, floor(($imageSize / 2) - ($cropSize / 2))),
min($cropSize, $imageSize),
],
default => [0, $imageSize],
};
}
}

13
app/helpers.php Normal file
View File

@ -0,0 +1,13 @@
<?php
/**
* @package: events-venues-task
* @author: Yevhen Odynets
* @date: 2024-07-24
* @time: 21:26
*/
// phpcs:ignore
declare(strict_types = 1);
require_once 'helpers/logging.php';

115
app/helpers/logging.php Normal file
View File

@ -0,0 +1,115 @@
<?php
/**
* @package: events-venues-task
* @author: Yevhen Odynets
* @date: 2024-07-28
* @time: 16:12
*/
//phpcs:ignore
declare(strict_types = 1);
use App\{ConsoleStyleInterfaceType as Style, LoggingSeverityLevelsType as LogType};
use Illuminate\Support\Facades\{App, Log};
use Symfony\Component\Console\{Input\ArgvInput, Output\ConsoleOutput, Style\SymfonyStyle};
/**
* @param mixed $e
* @param LogType|null $severity
* @param int|null $code
* @param int|null $traceLine
*
* @return void
*/
function appLog(Exception|string $e, ?LogType $severity = null, ?int $code = null, ?int $traceLine = null): void
{
$severity ??= LogType::notice;
if (is_string($e)) {
$e = new RuntimeException($e);
if (is_null($traceLine)) {
$traceLine = 2;
}
$trace = $e->getTrace()[$traceLine];
$context = [$code ?? $e->getCode(), $trace['file'], $trace['line'], $e->getTrace()[++$traceLine]['function']];
} else {
$context = [$code ?? $e->getCode(), $e->getFile(), $e->getLine(), $e->getTrace()[0]['function']];
}
Log::channel('app')->{$severity->name}($e->getMessage(), $context);
}
/**
* @param Exception|string $e
* @param Style $cmd
*
* @return void
* @throws ReflectionException
*/
function appConsole(Exception|string $e, Style $cmd): void
{
if (! is_string($e)) {
$e = $e->getMessage();
}
// $reflection = new ReflectionClass($e);
// if (! $reflection->isSubclassOf(Exception::class)) {
// $e = $e->getMessage();
// }
if (App::runningInConsole()) {
$io = new SymfonyStyle(new ArgvInput(), new ConsoleOutput());
$io->{$cmd->name}($e);
}
}
/**
* @param Exception|string $e
*
* @return void
* @throws ReflectionException
*/
function appWarning(Exception|string $e): void
{
appLog($e, LogType::warning);
appConsole($e, Style::warning);
}
/**
* @param mixed $e
*
* @return void
* @throws ReflectionException
*/
function appSuccess(Exception|string $e): void
{
appLog($e, LogType::info);
appConsole($e, Style::success);
}
/**
* @param mixed $e
*
* @return void
* @throws ReflectionException
*/
function appInfo(Exception|string $e): void
{
appLog($e, LogType::info);
appConsole($e, Style::note);
}
/**
* @param mixed $e
*
* @return void
* @throws ReflectionException
*/
function appNotice(Exception|string $e): void
{
appLog($e, LogType::notice);
appConsole($e, Style::note);
}

View File

@ -2,4 +2,5 @@
return [
App\Providers\AppServiceProvider::class,
App\Providers\ImageServiceProvider::class,
];

View File

@ -1,66 +1,83 @@
{
"name": "laravel/laravel",
"type": "project",
"description": "The skeleton application for the Laravel framework.",
"keywords": ["laravel", "framework"],
"license": "MIT",
"require": {
"php": "^8.2",
"laravel/framework": "^11.9",
"laravel/tinker": "^2.9"
"name": "laravel/laravel",
"type": "project",
"description": "The skeleton application for the Laravel framework.",
"keywords": [
"laravel",
"framework"
],
"license": "MIT",
"require": {
"php": "^8.3",
"ext-fileinfo": "*",
"ext-gd": "*",
"ext-pdo": "*",
"laravel/framework": "^11.9",
"laravel/tinker": "^2.9",
"predis/predis": "2.0"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.13",
"fakerphp/faker": "^1.23",
"laravel/breeze": "^2.1",
"laravel/pint": "^1.13",
"laravel/sail": "^1.26",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.0",
"phpunit/phpunit": "^11.0.1",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.10"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"laravel/breeze": "^2.1",
"laravel/pint": "^1.13",
"laravel/sail": "^1.26",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.0",
"phpunit/phpunit": "^11.0.1"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi",
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
"@php artisan migrate --graceful --ansi"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
"files": [
"app/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi",
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
"@php artisan migrate --graceful --ansi"
],
"phpcs": "phpcs --standard=PSR12",
"check-style": "phpcs -p --standard=PSR12 config/ app/ --ignore=src/Resources/* ",
"fix-style": "phpcbf -p --standard=PSR12 config/ app/ --ignore=src/Resources*",
"test": "phpunit"
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}

1256
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,7 @@
<?php
use App\Services\Image\Image;
return [
/*

View File

@ -103,6 +103,6 @@ return [
|
*/
'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'),
'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_') . '_cache_'),
];

24
config/common.php Normal file
View File

@ -0,0 +1,24 @@
<?php
/**
* @package: events-venues-task
* @author: Yevhen Odynets
* @date: 2024-07-26
* @time: 10:43
*/
declare(strict_types=1);
return [
'seeding' => [
'flush_cache' => true,
'model' => [
'venue' => [
'count' => 20,
],
'event' => [
'count' => 50,
],
],
],
];

View File

@ -147,7 +147,7 @@ return [
'options' => [
'cluster' => env('REDIS_CLUSTER', 'redis'),
'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'),
'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_') . '_database_'),
],
'default' => [

View File

@ -39,7 +39,7 @@ return [
'public' => [
'driver' => 'local',
'root' => storage_path('app/public'),
'url' => env('APP_URL').'/storage',
'url' => env('APP_URL') . '/storage',
'visibility' => 'public',
'throw' => false,
],

39
config/image.php Normal file
View File

@ -0,0 +1,39 @@
<?php
/**
* @package: events-venues-task
* @author: Yevhen Odynets
* @date: 2024-07-27
* @time: 07:45
*/
declare(strict_types=1);
use App\Services\Faker\Image\Contracts\FakerImageProviderType;
return [
'faker' => [
'provider' => [
'loremflickr' => [
"host" => "https://loremflickr.com/",
'type' => FakerImageProviderType::LoremFlickr,
],
],
'cropper' => [800], //see Image facade's method "cropAlign" for details
],
'storage' => [
'poster' => 'public/images/poster',
],
'verbosity' => true,
"log_path" => 'logs/image_facade.log',
'meta' => [
'width' => 0,
'height' => 1,
'type' => 2,
'tag' => 3,
'bits' => 'bits',
'channels' => 'channels',
'mime' => 'mime',
],
'mime_allowed' => ["image/jpeg", "image/gif", "image/png"],
];

View File

@ -89,7 +89,7 @@ return [
'handler_with' => [
'host' => env('PAPERTRAIL_URL'),
'port' => env('PAPERTRAIL_PORT'),
'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'),
'connectionString' => 'tls://' . env('PAPERTRAIL_URL') . ':' . env('PAPERTRAIL_PORT'),
],
'processors' => [PsrLogMessageProcessor::class],
],
@ -122,9 +122,9 @@ return [
'driver' => 'monolog',
'handler' => NullHandler::class,
],
'emergency' => [
'path' => storage_path('logs/laravel.log'),
'app' => [
'driver' => 'single',
'path' => storage_path('logs/app.log'),
],
],

View File

@ -129,7 +129,7 @@ return [
'cookie' => env(
'SESSION_COOKIE',
Str::slug(env('APP_NAME', 'laravel'), '_').'_session'
Str::slug(env('APP_NAME', 'laravel'), '_') . '_session'
),
/*

View File

@ -0,0 +1,56 @@
<?php
declare(strict_types=1);
namespace Database\Factories;
use App\Models\Event;
use App\Services\Faker\Image\{Contracts\ProviderInterface, FakerImageProvider, ImageStorage};
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Str;
use Random\RandomException;
/**
* @extends Factory<Event>
*/
class EventFactory extends Factory
{
private const int NB_WORDS = 5;
/**
* Define the model's default state.
*
* @return array<string, mixed>
* @throws RandomException
*/
public function definition(): array
{
static $venuesCount = config('common.seeding.model.venue.count');
static $counter = 1;
static $imageProvider = app(FakerImageProvider::class)->use(config('image.faker.provider.loremflickr.type'))
->apply();
$image = new ImageStorage(
config('image.storage.poster'),
random_int(400, 1280),
random_int(400, 960),
ProviderInterface::KEYWORDS
);
$poster = $imageProvider->getImage($image);
// Note: numberBetween method is unsafe if you need all `venues`.`id` values be used for constraining ¯\_(ツ)_/¯
$venuesId = $counter > $venuesCount ? $this->faker->numberBetween(1, $venuesCount) : $counter++;
return [
'venue_id' => $venuesId,
'name' => Str::of($this->faker->sentence(self::NB_WORDS))->rtrim('.'),
'event_date' => $this->faker->unique()->dateTimeBetween(
'-3 months',
'3 months',
env('APP_TIMEZONE', 'UTC')
),
'poster' => $poster,
];
}
}

View File

@ -27,7 +27,7 @@ class UserFactory extends Factory
'name' => fake()->name(),
'email' => fake()->unique()->safeEmail(),
'email_verified_at' => now(),
'password' => static::$password ??= Hash::make('password'),
'password' => static::$password ??= Hash::make('What_the_heck?'),
'remember_token' => Str::random(10),
];
}

View File

@ -0,0 +1,27 @@
<?php
declare(strict_types = 1);
namespace Database\Factories;
use App\Models\Venue;
use Illuminate\Database\Eloquent\Factories\Factory;
/**
* @extends Factory<Venue>
*/
class VenueFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
public function definition(): array
{
return [
'name' => $this->faker->catchPhrase,
];
}
}

View File

@ -11,7 +11,7 @@ return new class extends Migration
*/
public function up(): void
{
Schema::create('users', function (Blueprint $table) {
Schema::create('users', static function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('email')->unique();
@ -21,13 +21,13 @@ return new class extends Migration
$table->timestamps();
});
Schema::create('password_reset_tokens', function (Blueprint $table) {
Schema::create('password_reset_tokens', static function (Blueprint $table) {
$table->string('email')->primary();
$table->string('token');
$table->timestamp('created_at')->nullable();
});
Schema::create('sessions', function (Blueprint $table) {
Schema::create('sessions', static function (Blueprint $table) {
$table->string('id')->primary();
$table->foreignId('user_id')->nullable()->index();
$table->string('ip_address', 45)->nullable();

View File

@ -11,13 +11,13 @@ return new class extends Migration
*/
public function up(): void
{
Schema::create('cache', function (Blueprint $table) {
Schema::create('cache', static function (Blueprint $table) {
$table->string('key')->primary();
$table->mediumText('value');
$table->integer('expiration');
});
Schema::create('cache_locks', function (Blueprint $table) {
Schema::create('cache_locks', static function (Blueprint $table) {
$table->string('key')->primary();
$table->string('owner');
$table->integer('expiration');

View File

@ -11,7 +11,7 @@ return new class extends Migration
*/
public function up(): void
{
Schema::create('jobs', function (Blueprint $table) {
Schema::create('jobs', static function (Blueprint $table) {
$table->id();
$table->string('queue')->index();
$table->longText('payload');
@ -21,7 +21,7 @@ return new class extends Migration
$table->unsignedInteger('created_at');
});
Schema::create('job_batches', function (Blueprint $table) {
Schema::create('job_batches', static function (Blueprint $table) {
$table->string('id')->primary();
$table->string('name');
$table->integer('total_jobs');

View File

@ -0,0 +1,27 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('venues', static function (Blueprint $table) {
$table->id();
$table->string('name', 255)->unique();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('venues');
}
};

View File

@ -0,0 +1,30 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('events', static function (Blueprint $table) {
$table->id();
$table->foreignId('venue_id')->nullable()->constrained()->nullOnDelete();
$table->string('name', 255)->unique();
$table->date('event_date');
$table->string('poster', 255);
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('events');
}
};

View File

@ -0,0 +1,31 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::dropIfExists('sessions');
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::create('sessions', static function (Blueprint $table) {
$table->string('id')->primary();
$table->foreignId('user_id')->nullable()->index();
$table->string('ip_address', 45)->nullable();
$table->text('user_agent')->nullable();
$table->longText('payload');
$table->integer('last_activity')->index();
});
}
};

View File

@ -1,10 +1,13 @@
<?php
declare(strict_types = 1);
namespace Database\Seeders;
use App\Models\User;
// use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\Cache;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
class DatabaseSeeder extends Seeder
{
@ -13,11 +16,15 @@ class DatabaseSeeder extends Seeder
*/
public function run(): void
{
// User::factory(10)->create();
if (config('common.seeding.flush_cache') ?? false) {
Cache::flush();
}
User::factory()->create([
'name' => 'Test User',
'email' => 'test@example.com',
$this->call([
UserSeeder::class,
VenueSeeder::class,
EventSeeder::class,
]);
}
}

View File

@ -0,0 +1,20 @@
<?php
declare(strict_types = 1);
namespace Database\Seeders;
use App\Models\Event;
use Illuminate\Database\Seeder;
//use Illuminate\Database\Console\Seeds\WithoutModelEvents;
class EventSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
Event::factory(config('common.seeding.model.event.count'))->create();
}
}

View File

@ -0,0 +1,24 @@
<?php
declare(strict_types = 1);
namespace Database\Seeders;
use App\Models\User;
use Illuminate\Database\Seeder;
//use Illuminate\Database\Console\Seeds\WithoutModelEvents;
class UserSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
User::factory()->create([
'name' => 'Jane Doe',
'email' => 'jane.doe@example.com',
]);
}
}

View File

@ -0,0 +1,23 @@
<?php
declare(strict_types = 1);
namespace Database\Seeders;
use App\Models\Venue;
use Illuminate\Database\Seeder;
//use Illuminate\Database\Console\Seeds\WithoutModelEvents;
class VenueSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
Venue::factory(config('common.seeding.model.venue.count'))->create();
//->hasEvents(3)->create(); //Impossible to count 50 events for 20 venues
}
}

44
package-lock.json generated
View File

@ -7,11 +7,12 @@
"devDependencies": {
"@tailwindcss/forms": "^0.5.2",
"alpinejs": "^3.4.2",
"autoprefixer": "^10.4.2",
"autoprefixer": "^10.4.19",
"axios": "^1.6.4",
"laravel-vite-plugin": "^1.0",
"postcss": "^8.4.31",
"tailwindcss": "^3.1.0",
"postcss": "^8.4.40",
"sass": "^1.77.8",
"tailwindcss": "^3.4.6",
"vite": "^5.0"
}
},
@ -1169,9 +1170,9 @@
"license": "MIT"
},
"node_modules/electron-to-chromium": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.0.tgz",
"integrity": "sha512-Vb3xHHYnLseK8vlMJQKJYXJ++t4u1/qJ3vykuVrVjvdiOEhYyT1AuP4x03G8EnPmYvYOhe9T+dADTmthjRQMkA==",
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.1.tgz",
"integrity": "sha512-FKbOCOQ5QRB3VlIbl1LZQefWIYwszlBloaXcY2rbfpu9ioJnNh3TK03YtIDKDo3WKBi8u+YV4+Fn2CkEozgf4w==",
"dev": true,
"license": "ISC"
},
@ -1423,6 +1424,13 @@
"node": ">= 0.4"
}
},
"node_modules/immutable": {
"version": "4.3.7",
"resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.7.tgz",
"integrity": "sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==",
"dev": true,
"license": "MIT"
},
"node_modules/is-binary-path": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
@ -1815,9 +1823,9 @@
}
},
"node_modules/postcss": {
"version": "8.4.39",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.39.tgz",
"integrity": "sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==",
"version": "8.4.40",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.40.tgz",
"integrity": "sha512-YF2kKIUzAofPMpfH6hOi2cGnv/HrUlfucspc7pDyvv7kGdqXrfj8SCl/t8owkEgKEuu8ZcRjSOxFxVLqwChZ2Q==",
"dev": true,
"funding": [
{
@ -2117,6 +2125,24 @@
"queue-microtask": "^1.2.2"
}
},
"node_modules/sass": {
"version": "1.77.8",
"resolved": "https://registry.npmjs.org/sass/-/sass-1.77.8.tgz",
"integrity": "sha512-4UHg6prsrycW20fqLGPShtEvo/WyHRVRHwOP4DzkUrObWoWI05QBSfzU71TVB7PFaL104TwNaHpjlWXAZbQiNQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"chokidar": ">=3.0.0 <4.0.0",
"immutable": "^4.0.0",
"source-map-js": ">=0.6.2 <2.0.0"
},
"bin": {
"sass": "sass.js"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/shebang-command": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",

View File

@ -3,16 +3,26 @@
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build"
"build": "vite build",
"serve": "php artisan serve",
"storage:link": "php artisan storage:link",
"browserslist:update": "npx browserslist@latest --update-db",
"browserslist": "npx browserslist",
"cache:clear": "php artisan optimize:clear",
"reseed": "php artisan migrate:fresh --seed"
},
"browserslist": [
"cover 99.5%"
],
"devDependencies": {
"@tailwindcss/forms": "^0.5.2",
"alpinejs": "^3.4.2",
"autoprefixer": "^10.4.2",
"autoprefixer": "^10.4.19",
"axios": "^1.6.4",
"laravel-vite-plugin": "^1.0",
"postcss": "^8.4.31",
"tailwindcss": "^3.1.0",
"postcss": "^8.4.40",
"sass": "^1.77.8",
"tailwindcss": "^3.4.6",
"vite": "^5.0"
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 0 B

After

Width:  |  Height:  |  Size: 17 KiB

677
resources/images/404.svg Normal file
View File

@ -0,0 +1,677 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 27.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 500 500" style="enable-background:new 0 0 500 500;" xml:space="preserve">
<g id="Floor">
<path id="Floor_7_" style="fill:#F5F5F5;" d="M410.246,249.133c-89.627-51.534-234.942-51.534-324.571,0
c-89.628,51.534-89.627,135.088,0.001,186.621c89.63,51.533,234.944,51.533,324.571,0
C499.872,384.221,499.872,300.667,410.246,249.133z"/>
</g>
<g id="Shadows">
<ellipse id="Shadow_6_" style="fill:#E0E0E0;" cx="139.254" cy="312.646" rx="63.454" ry="36.635"/>
<g id="Shadow_2_">
<path style="fill:#E0E0E0;" d="M247.286,408.962l-5.899-3.407l4.291-2.477c2.234-1.294,2.568-3.125,2.568-4.107
c-0.002-0.976-0.338-2.807-2.572-4.096l-10.687-6.171c-1.185-0.684-2.592-1.032-4.188-1.033c-1.591,0.001-2.998,0.349-4.181,1.032
l-7.21,4.164l-37.259-21.512c-1.184-0.683-2.589-1.03-4.181-1.031c-1.588,0-2.996,0.347-4.186,1.032l-15.227,8.792
c-1.314,0.76-2.177,1.51-2.73,2.379c-0.658,1.051-0.86,2.346-0.587,3.925l7.882,39.438c0.458,1.981,1.942,3.708,4.413,5.133
l10.687,6.171c1.186,0.685,2.59,1.032,4.174,1.032h0.008c1.593,0,3.001-0.347,4.184-1.031l30.302-17.496l8.824,5.094
c1.186,0.685,2.59,1.032,4.191,1.032c1.585,0,2.99-0.346,4.177-1.031l13.201-7.624c2.239-1.285,2.576-3.12,2.578-4.111
C249.857,412.083,249.52,410.251,247.286,408.962z M188.606,410.649l-1.771-8.882l8.577,4.952L188.606,410.649z"/>
<path style="fill:#E0E0E0;" d="M306.625,347.585c-2.67-1.697-5.624-3.48-8.778-5.302c-3.128-1.806-6.283-3.548-9.398-5.19
c-3.991-2.061-8.388-3.759-13.067-5.052c-4.721-1.301-9.703-1.992-14.806-2.055l-0.69-0.003c-4.871,0-9.921,0.626-15.009,1.861
c-5.359,1.304-10.741,3.504-15.998,6.538c-5.443,3.143-9.267,6.283-11.689,9.601c-2.533,3.478-3.756,6.999-3.633,10.47
c0.124,3.466,1.488,6.791,4.046,9.878c2.326,2.814,5.365,5.442,9.054,7.827c2.76,1.748,5.781,3.571,8.979,5.417
c3.197,1.846,6.285,3.55,9.194,5.072c4.001,2.066,8.399,3.765,13.067,5.052c4.721,1.304,9.703,1.994,14.807,2.055l0.692,0.004
c4.883,0,9.932-0.626,15.007-1.861c5.358-1.304,10.741-3.503,15.997-6.538c5.447-3.145,9.27-6.285,11.689-9.599
c2.537-3.476,3.759-7.001,3.634-10.472c-0.124-3.461-1.486-6.785-4.047-9.879C313.345,352.593,310.306,349.965,306.625,347.585z
M288.496,368.474c-0.273,0.416-1.046,1.294-3.154,2.509c-1.743,1.007-3.463,1.701-5.112,2.063
c-1.315,0.289-2.628,0.435-3.902,0.435c-0.347,0-0.694-0.01-1.042-0.032c-1.611-0.098-3.203-0.41-4.734-0.928
c-1.632-0.553-3.265-1.262-4.897-2.132c-5.926-3.039-11.537-6.279-16.725-9.66c-1.398-0.872-2.533-1.758-3.372-2.629
c-0.617-0.642-1.003-1.259-1.119-1.773c-0.022-0.099-0.088-0.403,0.344-1.061c0.272-0.413,1.042-1.289,3.153-2.508
c1.748-1.009,3.468-1.703,5.111-2.063c1.266-0.277,2.521-0.418,3.73-0.418c0.38,0,0.757,0.014,1.128,0.041
c1.601,0.119,3.191,0.442,4.724,0.96c1.662,0.563,3.359,1.267,4.973,2.061c5.751,3.016,11.38,6.267,16.747,9.67
c1.421,0.89,2.594,1.785,3.48,2.658c0.595,0.588,0.957,1.151,1.046,1.629C288.895,367.414,288.96,367.767,288.496,368.474z"/>
<path style="fill:#E0E0E0;" d="M394.57,323.926l-5.9-3.407l4.292-2.477c2.234-1.293,2.567-3.125,2.567-4.102
c0-0.975-0.333-2.805-2.571-4.102l-10.686-6.168c-1.182-0.684-2.588-1.032-4.191-1.035c-1.59,0.003-2.996,0.35-4.18,1.033
l-7.21,4.164l-37.258-21.511c-1.183-0.683-2.589-1.031-4.182-1.032c-1.587,0-2.995,0.346-4.185,1.031l-15.226,8.791
c-1.312,0.759-2.176,1.507-2.734,2.383c-0.655,1.053-0.857,2.347-0.585,3.924l7.883,39.438c0.458,1.981,1.942,3.707,4.411,5.133
l10.687,6.169c1.185,0.686,2.59,1.033,4.175,1.033h0.008c1.59,0,2.998-0.347,4.184-1.032l30.302-17.495l8.824,5.094
c1.186,0.685,2.594,1.032,4.191,1.032c1.586,0,2.991-0.347,4.176-1.032l13.201-7.623c2.235-1.283,2.576-3.117,2.579-4.116
C397.14,327.042,396.801,325.215,394.57,323.926z M335.89,325.613l-1.771-8.882l8.577,4.953L335.89,325.613z"/>
</g>
</g>
<g id="Clouds">
<g id="Clouds_1_">
<path id="XMLID_325_" style="fill:#EBEBEB;" d="M435.371,85.753l-9.463-5.463c0.047-0.368,0.08-0.75,0.08-1.161v-2.741
c0-4.879-3.425-10.811-7.65-13.25c-1.711-0.988-3.285-1.24-4.559-0.88c-0.692-6.933-5.505-14.776-11.35-18.151
c-6.321-3.649-11.445-0.691-11.445,6.608v4.101c0,1.89,0.35,3.886,0.969,5.87l-7.86-4.538c-2.344-1.353-4.243-0.256-4.243,2.45
c0,2.706,1.9,5.997,4.243,7.35l51.279,29.606c2.344,1.353,4.243,0.256,4.243-2.45C439.615,90.397,437.715,87.106,435.371,85.753z"
/>
<path id="XMLID_292_" style="fill:#EBEBEB;" d="M377.997,95.892l-6.028-3.48c0.03-0.235,0.051-0.478,0.051-0.74v-1.746
c0-3.108-2.182-6.887-4.873-8.441c-1.09-0.629-2.093-0.79-2.905-0.561c-0.441-4.417-3.507-9.413-7.231-11.563
c-4.027-2.325-7.291-0.441-7.291,4.209v2.613c0,1.204,0.223,2.476,0.617,3.74l-5.007-2.891c-1.493-0.862-2.703-0.163-2.703,1.561
c0,1.724,1.21,3.82,2.703,4.682l32.668,18.861c1.493,0.862,2.703,0.163,2.703-1.561C380.7,98.851,379.49,96.754,377.997,95.892z"
/>
</g>
</g>
<g id="Plant">
<g id="Plants_4_">
<g id="XMLID_303_">
<g id="XMLID_317_">
<path id="XMLID_324_" style="fill:#27DEBF;" d="M373.82,300.748c-3.235-14.81-8.414-29.326-5.195-51.983
c2.917-20.534,13.702-38.889,29.074-40.943c10.365-1.385,19.414,10.171,9.269,25.012c-1.684,2.463-23.651,23.958-20.03,53.669
l-2.049,19.734L373.82,300.748z"/>
</g>
<g id="XMLID_314_" style="opacity:0.2;">
<path id="XMLID_315_" d="M373.82,300.748c-3.235-14.81-8.414-29.326-5.195-51.983c2.917-20.534,13.702-38.889,29.074-40.943
c10.365-1.385,19.414,10.171,9.269,25.012c-1.684,2.463-23.651,23.958-20.03,53.669l-2.049,19.734L373.82,300.748z"/>
</g>
<g id="XMLID_304_">
<path id="XMLID_308_" style="fill:#FFFFFF;" d="M379.197,298.549c0.266-0.122,0.43-0.41,0.383-0.713
c-5.956-37.992,1.65-66.367,20-81.962c0.282-0.239,0.316-0.663,0.077-0.944c-0.237-0.281-0.656-0.325-0.944-0.076
c-18.585,15.793-26.488,44.721-20.456,83.19c0.057,0.365,0.399,0.614,0.764,0.558
C379.083,298.592,379.142,298.574,379.197,298.549z"/>
</g>
</g>
<g id="XMLID_261_">
<g id="XMLID_294_">
<path id="XMLID_301_" style="fill:#455A64;" d="M391.143,312.058c-0.075-5.761,3.102-18.313,10.637-29.268
c9.504-13.818,24.316-18.341,25.831-25.583c1.819-8.7-7.286-13.663-19.085-9.443c-14.181,5.073-30.937,25.502-25.128,59.942
L391.143,312.058z"/>
</g>
<g id="XMLID_268_">
<path id="XMLID_281_" style="fill:#FFFFFF;" d="M387.266,305.974c0.256-0.1,0.442-0.341,0.458-0.634
c1.598-30.569,19.752-46.576,29.126-50.77c0.363-0.162,0.525-0.588,0.363-0.951c-0.162-0.364-0.574-0.531-0.951-0.363
c-10.367,4.637-28.345,20.808-29.977,52.01c-0.021,0.396,0.285,0.736,0.682,0.757
C387.072,306.027,387.173,306.01,387.266,305.974z"/>
</g>
</g>
</g>
</g>
<g id="_x34_04_Error">
<g id="_x34_04_1_">
<g id="_x34_04">
<g>
<g>
<path style="fill:#27DEBF;" d="M244.655,401.337l-13.21,7.622c-0.736,0.433-1.648,0.643-2.724,0.643
c-1.076,0-1.976-0.21-2.712-0.643l-10.288-5.939l-31.763,18.342c-0.736,0.421-1.648,0.643-2.724,0.643
c-1.075,0-1.976-0.222-2.724-0.643l-10.685-6.172c-1.754-1.005-2.759-2.093-3.028-3.262l-7.868-39.35
c-0.047-0.257-0.058-0.491-0.058-0.701c0,0.76-0.012,10.58,0,11.059c0,0.187,0.023,0.386,0.058,0.608l7.868,39.35
c0.269,1.169,1.274,2.256,3.028,3.262l10.685,6.172c0.748,0.421,1.648,0.643,2.724,0.643c1.076,0,1.988-0.222,2.724-0.643
l31.763-18.342l10.288,5.939c0.736,0.433,1.637,0.643,2.712,0.643c1.075,0,1.987-0.21,2.724-0.643l13.21-7.622
c0.737-0.433,1.111-0.947,1.111-1.578v-10.966C245.766,400.378,245.392,400.904,244.655,401.337z"/>
<path style="fill:#27DEBF;" d="M244.153,396.637v-10.966c0,0.62-0.374,1.146-1.11,1.578l-8.674,5.004l9.364,5.401
C244.001,397.35,244.153,397.011,244.153,396.637z"/>
<polygon style="fill:#27DEBF;" points="184.017,395.094 190.587,398.905 200.091,393.422 181.538,382.702 184.005,395.094
"/>
</g>
<g>
<polygon style="opacity:0.35;" points="184.017,395.094 190.587,398.905 200.091,393.422 181.538,382.702 184.005,395.094
"/>
<path style="opacity:0.2;" d="M244.153,396.637v-10.966c0,0.62-0.374,1.146-1.11,1.578l-8.674,5.004l9.364,5.401
C244.001,397.35,244.153,397.011,244.153,396.637z"/>
<path style="opacity:0.2;" d="M244.655,401.337l-13.21,7.622c-0.736,0.433-1.648,0.643-2.724,0.643v10.966
c1.075,0,1.987-0.21,2.724-0.643l13.21-7.622c0.737-0.433,1.111-0.947,1.111-1.578v-10.966
C245.766,400.378,245.392,400.904,244.655,401.337z"/>
<path style="opacity:0.25;" d="M164.798,411.928l-7.868-39.35c-0.047-0.257-0.058-0.491-0.058-0.701
c0,0.76-0.012,10.58,0,11.059c0,0.187,0.023,0.386,0.058,0.608l7.868,39.35c0.047,0.222,0.129,0.444,0.245,0.666v-10.966
C164.926,412.372,164.844,412.15,164.798,411.928z"/>
<path style="opacity:0.35;" d="M181.234,422.005c-1.075,0-1.976-0.222-2.724-0.643l-10.685-6.172
c-1.415-0.807-2.35-1.672-2.782-2.595v10.966c0.432,0.923,1.368,1.789,2.782,2.595l10.685,6.172
c0.748,0.421,1.648,0.643,2.724,0.643c0.105,0,0.199,0,0.304-0.023v-10.966C181.433,422.005,181.34,422.005,181.234,422.005z"
/>
<path style="opacity:0.2;" d="M183.958,421.362c-0.667,0.386-1.473,0.596-2.42,0.62v10.966c0.947-0.023,1.753-0.234,2.42-0.62
l31.763-18.342V403.02L183.958,421.362z"/>
<path style="opacity:0.35;" d="M226.009,408.959l-10.288-5.939v10.966l10.288,5.939c0.736,0.433,1.637,0.643,2.712,0.643
v-10.966C227.646,409.602,226.745,409.392,226.009,408.959z"/>
</g>
<path style="fill:#27DEBF;" d="M231.45,408.959c-0.741,0.427-1.649,0.641-2.725,0.64c-1.075,0-1.981-0.214-2.721-0.641
l-10.285-5.938l-31.763,18.339c-0.74,0.427-1.644,0.64-2.723,0.64c-1.077,0.001-1.981-0.214-2.721-0.641l-10.688-6.171
c-1.748-1.009-2.756-2.095-3.026-3.26l-7.864-39.354c-0.134-0.776-0.066-1.378,0.2-1.804c0.271-0.426,0.842-0.893,1.715-1.398
l15.225-8.79c0.74-0.426,1.648-0.639,2.725-0.64c1.075,0.001,1.983,0.215,2.721,0.641l38.719,22.354l8.671-5.007
c0.738-0.427,1.648-0.639,2.723-0.641c1.077,0.002,1.982,0.215,2.722,0.642l10.688,6.17c0.74,0.427,1.11,0.951,1.11,1.571
c0,0.623-0.372,1.146-1.11,1.573l-8.671,5.007l10.283,5.937c0.742,0.428,1.11,0.951,1.112,1.572
c-0.001,0.622-0.372,1.146-1.111,1.572L231.45,408.959z M200.089,393.416l-18.551-10.711l3.831,19.21L200.089,393.416z"/>
</g>
<g>
<g>
<path style="fill:#27DEBF;" d="M315.64,352.646c-0.047,2.642-1.087,5.343-3.086,8.09c-2.151,2.946-5.74,5.88-10.79,8.791
c-5.039,2.911-10.112,4.98-15.221,6.231c-5.109,1.239-10.101,1.835-14.976,1.777c-4.863-0.058-9.563-0.713-14.064-1.952
c-4.501-1.239-8.674-2.852-12.509-4.84c-2.887-1.508-5.904-3.18-9.072-5.004c-3.156-1.824-6.114-3.601-8.873-5.354
c-3.425-2.21-6.219-4.618-8.359-7.213c-2.163-2.607-3.285-5.308-3.379-8.125c0.059,1.742-0.07,9.048,0,10.966
c0.093,2.817,1.216,5.518,3.379,8.125c2.139,2.595,4.933,5.003,8.359,7.213c2.759,1.754,5.717,3.53,8.873,5.354
c3.168,1.824,6.184,3.495,9.072,5.015c3.835,1.976,8.008,3.589,12.509,4.828c4.501,1.239,9.201,1.894,14.064,1.952
c4.875,0.059,9.867-0.538,14.976-1.777c5.109-1.251,10.182-3.32,15.221-6.231c5.05-2.911,8.639-5.845,10.79-8.791
c2.151-2.946,3.18-5.834,3.074-8.639C315.57,361.449,315.675,355.136,315.64,352.646z"/>
<path style="opacity:0.35;" d="M274.258,377.477c-0.9,0.033-1.8,0.068-2.691,0.058c-4.863-0.058-9.563-0.713-14.064-1.952
c-4.501-1.239-8.674-2.852-12.509-4.84c-2.887-1.508-5.904-3.18-9.072-5.004c-3.156-1.824-6.114-3.601-8.873-5.354
c-3.425-2.21-6.219-4.618-8.359-7.213c-2.163-2.607-3.285-5.308-3.379-8.125c0.059,1.742-0.07,9.048,0,10.966
c0.093,2.817,1.216,5.518,3.379,8.125c2.139,2.595,4.933,5.003,8.359,7.213c2.759,1.754,5.717,3.53,8.873,5.354
c3.168,1.824,6.184,3.495,9.072,5.015c3.835,1.976,8.008,3.589,12.509,4.828c4.501,1.239,9.201,1.894,14.064,1.952
c0.892,0.011,1.792-0.025,2.691-0.058V377.477z"/>
<path style="opacity:0.2;" d="M315.64,352.646c-0.047,2.642-1.087,5.343-3.086,8.09c-2.151,2.946-5.74,5.88-10.79,8.791
c-5.039,2.911-10.112,4.98-15.221,6.231c-4.174,1.012-8.265,1.572-12.283,1.719v10.966c4.018-0.148,8.109-0.707,12.283-1.719
c5.109-1.251,10.182-3.32,15.221-6.231c5.05-2.911,8.639-5.845,10.79-8.791c2.151-2.946,3.18-5.834,3.074-8.639
C315.57,361.449,315.675,355.136,315.64,352.646z"/>
</g>
<g>
<path style="fill:#27DEBF;" d="M242.282,346.824c0.561,0.585,1.216,1.169,1.964,1.73c0.339-0.222,0.678-0.444,1.052-0.666
c2.022-1.157,3.998-1.952,5.951-2.385c1.952-0.421,3.858-0.573,5.705-0.433c1.847,0.14,3.659,0.503,5.448,1.099
c1.777,0.608,3.577,1.356,5.389,2.245c5.845,3.075,11.492,6.325,16.94,9.785c0.713,0.444,1.367,0.9,1.963,1.344
c1.438-0.929,2.479-1.85,3.076-2.77c0.736-1.122,1.005-2.233,0.807-3.32c-0.199-1.076-0.818-2.139-1.859-3.168
c-1.052-1.029-2.373-2.046-3.986-3.051c-5.448-3.46-11.094-6.722-16.94-9.785c-1.812-0.888-3.612-1.637-5.389-2.245
c-1.789-0.596-3.601-0.958-5.448-1.099c-1.847-0.14-3.753,0.012-5.705,0.433c-1.952,0.432-3.928,1.227-5.951,2.385
c-2.011,1.169-3.39,2.315-4.127,3.437c-0.736,1.122-0.994,2.221-0.76,3.285C240.657,344.72,241.277,345.772,242.282,346.824z"
/>
<path style="opacity:0.35;" d="M242.282,346.824c0.561,0.585,1.216,1.169,1.964,1.73c0.339-0.222,0.678-0.444,1.052-0.666
c2.022-1.157,3.998-1.952,5.951-2.385c1.952-0.421,3.858-0.573,5.705-0.433c1.847,0.14,3.659,0.503,5.448,1.099
c1.777,0.608,3.577,1.356,5.389,2.245c5.845,3.075,11.492,6.325,16.94,9.785c0.713,0.444,1.367,0.9,1.963,1.344
c1.438-0.929,2.479-1.85,3.076-2.77c0.736-1.122,1.005-2.233,0.807-3.32c-0.199-1.076-0.818-2.139-1.859-3.168
c-1.052-1.029-2.373-2.046-3.986-3.051c-5.448-3.46-11.094-6.722-16.94-9.785c-1.812-0.888-3.612-1.637-5.389-2.245
c-1.789-0.596-3.601-0.958-5.448-1.099c-1.847-0.14-3.753,0.012-5.705,0.433c-1.952,0.432-3.928,1.227-5.951,2.385
c-2.011,1.169-3.39,2.315-4.127,3.437c-0.736,1.122-0.994,2.221-0.76,3.285C240.657,344.72,241.277,345.772,242.282,346.824z"
/>
</g>
<path style="fill:#27DEBF;" d="M229.171,327.611c5.041-2.911,10.119-4.987,15.227-6.23c5.108-1.24,10.101-1.832,14.973-1.775
c4.871,0.06,9.562,0.709,14.065,1.951c4.504,1.243,8.671,2.853,12.504,4.831c3.024,1.594,6.117,3.3,9.276,5.124
c3.159,1.824,6.048,3.571,8.672,5.238c3.427,2.213,6.217,4.62,8.368,7.219c2.152,2.6,3.277,5.309,3.379,8.12
c0.101,2.814-0.924,5.697-3.074,8.645c-2.153,2.949-5.749,5.881-10.79,8.791c-5.041,2.911-10.117,4.986-15.226,6.229
c-5.106,1.242-10.099,1.833-14.973,1.775c-4.872-0.057-9.564-0.707-14.064-1.951c-4.506-1.241-8.673-2.852-12.506-4.83
c-2.891-1.514-5.913-3.182-9.073-5.007c-3.16-1.824-6.119-3.609-8.876-5.356c-3.427-2.213-6.217-4.618-8.366-7.22
c-2.154-2.598-3.277-5.306-3.379-8.12c-0.1-2.813,0.925-5.695,3.074-8.644C220.535,333.452,224.13,330.521,229.171,327.611z
M284.729,347.229c-5.446-3.453-11.092-6.713-16.94-9.78c-1.813-0.892-3.614-1.639-5.393-2.242
c-1.782-0.601-3.597-0.969-5.446-1.106c-1.847-0.135-3.75,0.01-5.698,0.437c-1.95,0.427-3.93,1.223-5.949,2.387
c-2.015,1.164-3.394,2.309-4.133,3.435c-0.739,1.126-0.991,2.223-0.757,3.289c0.238,1.068,0.859,2.124,1.866,3.173
c1.009,1.048,2.32,2.078,3.933,3.085c5.242,3.416,10.89,6.677,16.94,9.78c1.747,0.932,3.512,1.697,5.294,2.299
c1.778,0.602,3.612,0.962,5.494,1.076c1.884,0.117,3.799-0.038,5.748-0.466c1.95-0.427,3.934-1.222,5.949-2.387
c2.018-1.164,3.394-2.309,4.133-3.435c0.739-1.124,1.01-2.231,0.807-3.318c-0.202-1.086-0.824-2.144-1.864-3.172
C287.668,349.258,286.341,348.239,284.729,347.229z"/>
</g>
<g>
<g>
<path style="fill:#27DEBF;" d="M391.939,316.301l-13.21,7.622c-0.736,0.432-1.648,0.643-2.724,0.643
c-1.076,0-1.976-0.21-2.712-0.643l-10.288-5.939l-31.763,18.342c-0.737,0.421-1.648,0.643-2.724,0.643
c-1.075,0-1.976-0.222-2.724-0.643l-10.685-6.173c-1.754-1.005-2.759-2.093-3.028-3.262l-7.868-39.35
c-0.047-0.257-0.058-0.491-0.058-0.701c0,0.76-0.012,10.58,0,11.059c0,0.187,0.023,0.386,0.058,0.608l7.868,39.35
c0.269,1.169,1.274,2.256,3.028,3.262l10.685,6.173c0.748,0.421,1.648,0.643,2.724,0.643c1.076,0,1.987-0.222,2.724-0.643
l31.763-18.342l10.288,5.939c0.737,0.432,1.637,0.643,2.712,0.643c1.075,0,1.987-0.21,2.724-0.643l13.21-7.622
c0.737-0.432,1.111-0.947,1.111-1.578v-10.966C393.05,315.342,392.676,315.868,391.939,316.301z"/>
<path style="fill:#27DEBF;" d="M391.436,311.601v-10.966c0,0.62-0.374,1.146-1.111,1.578l-8.674,5.004l9.364,5.401
C391.284,312.314,391.436,311.975,391.436,311.601z"/>
<polygon style="fill:#27DEBF;" points="331.301,310.058 337.87,313.869 347.375,308.386 328.822,297.666 331.289,310.058
"/>
</g>
<g>
<polygon style="opacity:0.35;" points="331.301,310.058 337.87,313.869 347.375,308.386 328.822,297.666 331.289,310.058
"/>
<path style="opacity:0.2;" d="M391.436,311.601v-10.966c0,0.62-0.374,1.146-1.111,1.578l-8.674,5.004l9.364,5.401
C391.284,312.314,391.436,311.975,391.436,311.601z"/>
<path style="opacity:0.2;" d="M391.939,316.301l-13.21,7.622c-0.736,0.432-1.648,0.643-2.724,0.643v10.966
c1.075,0,1.987-0.21,2.724-0.643l13.21-7.622c0.737-0.432,1.111-0.947,1.111-1.578v-10.966
C393.05,315.342,392.676,315.868,391.939,316.301z"/>
<path style="opacity:0.25;" d="M312.081,326.892l-7.868-39.35c-0.047-0.257-0.058-0.491-0.058-0.701
c0,0.76-0.012,10.58,0,11.059c0,0.187,0.023,0.386,0.058,0.608l7.868,39.35c0.047,0.222,0.129,0.444,0.245,0.666v-10.966
C312.21,327.336,312.128,327.114,312.081,326.892z"/>
<path style="opacity:0.35;" d="M328.518,336.97c-1.075,0-1.976-0.222-2.724-0.643l-10.685-6.173
c-1.415-0.807-2.35-1.672-2.782-2.595v10.966c0.432,0.924,1.368,1.789,2.782,2.595l10.685,6.173
c0.748,0.421,1.648,0.643,2.724,0.643c0.105,0,0.199,0,0.304-0.023v-10.966C328.717,336.97,328.623,336.97,328.518,336.97z"/>
<path style="opacity:0.2;" d="M331.242,336.327c-0.667,0.386-1.473,0.596-2.42,0.62v10.966c0.947-0.023,1.754-0.234,2.42-0.62
l31.763-18.342v-10.966L331.242,336.327z"/>
<path style="opacity:0.35;" d="M373.293,323.923l-10.288-5.939v10.966l10.288,5.939c0.737,0.432,1.637,0.643,2.712,0.643
v-10.966C374.929,324.566,374.029,324.355,373.293,323.923z"/>
</g>
<path style="fill:#27DEBF;" d="M378.734,323.923c-0.741,0.427-1.649,0.641-2.725,0.64c-1.075,0-1.981-0.214-2.721-0.641
l-10.285-5.938l-31.763,18.339c-0.74,0.427-1.644,0.64-2.723,0.64c-1.077,0.001-1.981-0.214-2.721-0.641l-10.688-6.171
c-1.748-1.009-2.756-2.095-3.026-3.26l-7.864-39.353c-0.134-0.776-0.066-1.378,0.2-1.804c0.271-0.427,0.842-0.893,1.715-1.398
l15.225-8.79c0.74-0.425,1.648-0.639,2.725-0.64c1.075,0.001,1.983,0.215,2.721,0.641l38.719,22.354l8.671-5.007
c0.738-0.427,1.648-0.639,2.723-0.641c1.077,0.002,1.982,0.215,2.722,0.642l10.688,6.17c0.74,0.427,1.11,0.951,1.11,1.571
c0,0.623-0.372,1.146-1.11,1.573l-8.671,5.007l10.283,5.937c0.741,0.428,1.11,0.951,1.112,1.572
c-0.001,0.622-0.372,1.146-1.111,1.572L378.734,323.923z M347.372,308.38l-18.551-10.711l3.831,19.21L347.372,308.38z"/>
</g>
</g>
<g>
<path style="fill:#455A64;" d="M310.379,409.165c0.225-0.131,0.502-0.195,0.83-0.195c0.327,0,0.603,0.065,0.828,0.195
l3.258,1.881c0.226,0.13,0.339,0.29,0.338,0.479c0,0.189-0.112,0.35-0.338,0.479l-14.566,8.41
c-0.226,0.13-0.502,0.195-0.83,0.194c-0.327,0.001-0.604-0.064-0.83-0.194l-19.852-11.462c-0.225-0.13-0.338-0.289-0.339-0.479
c0.001-0.189,0.113-0.349,0.339-0.478l14.321-8.269c0.225-0.13,0.502-0.195,0.829-0.195c0.329,0,0.606,0.065,0.831,0.195
l3.258,1.881c0.225,0.13,0.336,0.289,0.337,0.479c-0.001,0.189-0.112,0.35-0.338,0.479l-9.466,5.465l3.319,1.916l8.79-5.074
c0.225-0.13,0.501-0.195,0.83-0.195c0.327,0,0.604,0.066,0.828,0.195l3.258,1.881c0.226,0.13,0.339,0.29,0.338,0.479
c0.001,0.19-0.112,0.35-0.338,0.479l-8.789,5.074l3.442,1.987L310.379,409.165z"/>
<path style="fill:#455A64;" d="M315.233,393.586c0.225-0.13,0.503-0.194,0.83-0.194c0.327,0,0.604,0.064,0.831,0.195l3.104,1.792
c0.225,0.13,0.336,0.289,0.337,0.479c-0.001,0.189-0.112,0.35-0.337,0.479l-2.797,1.614c-1.885,1.089-1.886,2.177,0,3.265
l7.56,4.365c0.226,0.13,0.339,0.29,0.338,0.479c0,0.189-0.112,0.35-0.338,0.479l-3.872,2.235
c-0.225,0.131-0.502,0.195-0.83,0.195c-0.327,0-0.604-0.065-0.83-0.195l-14.32-8.268c-0.227-0.131-0.339-0.29-0.339-0.48
c0.001-0.189,0.112-0.349,0.338-0.479l3.565-2.059c0.225-0.13,0.502-0.194,0.829-0.194c0.328,0,0.605,0.064,0.831,0.195
l0.706,0.407c0.021-0.531,0.22-1.072,0.599-1.623c0.379-0.55,1.029-1.092,1.951-1.624L315.233,393.586z"/>
<path style="fill:#455A64;" d="M330.107,384.999c0.225-0.131,0.503-0.195,0.83-0.195c0.328,0,0.604,0.064,0.831,0.195
l3.104,1.792c0.226,0.13,0.337,0.29,0.337,0.479c0,0.189-0.111,0.35-0.337,0.479l-2.797,1.614c-1.885,1.089-1.886,2.177,0,3.265
l7.56,4.365c0.226,0.13,0.339,0.29,0.338,0.478c0,0.19-0.112,0.35-0.338,0.48l-3.872,2.235c-0.226,0.131-0.502,0.195-0.83,0.195
c-0.327,0.001-0.605-0.065-0.829-0.195l-14.32-8.268c-0.227-0.131-0.34-0.29-0.34-0.479c0.001-0.189,0.112-0.349,0.338-0.479
l3.565-2.058c0.225-0.13,0.503-0.194,0.829-0.195c0.328,0,0.604,0.065,0.831,0.195l0.706,0.408
c0.021-0.532,0.221-1.073,0.6-1.624c0.379-0.55,1.029-1.091,1.951-1.623L330.107,384.999z"/>
<path style="fill:#455A64;" d="M356.537,377.617c0.328,0.166,0.732,0.388,1.214,0.665c0.482,0.279,0.865,0.513,1.153,0.701
c0.941,0.592,1.639,1.254,2.09,1.987c0.449,0.733,0.641,1.494,0.569,2.28c-0.073,0.787-0.432,1.579-1.077,2.377
c-0.645,0.799-1.594,1.559-2.843,2.28c-1.25,0.722-2.566,1.269-3.948,1.642c-1.384,0.372-2.756,0.58-4.117,0.621
c-1.363,0.042-2.681-0.068-3.951-0.328c-1.27-0.261-2.417-0.663-3.441-1.207c-0.328-0.165-0.731-0.387-1.214-0.665
c-0.481-0.278-0.865-0.512-1.153-0.701c-0.962-0.579-1.67-1.236-2.119-1.97c-0.451-0.732-0.636-1.496-0.554-2.288
c0.082-0.793,0.441-1.591,1.076-2.395c0.635-0.805,1.577-1.567,2.827-2.289c1.25-0.722,2.571-1.266,3.965-1.633
c1.394-0.366,2.775-0.573,4.148-0.621c1.372-0.047,2.689,0.063,3.949,0.329C354.37,376.668,355.513,377.073,356.537,377.617z
M347.564,385.353c0.84,0.414,1.73,0.604,2.673,0.567c0.942-0.035,1.824-0.289,2.643-0.763c0.819-0.473,1.26-0.981,1.321-1.525
c0.061-0.544-0.267-1.059-0.983-1.544c-0.267-0.201-0.594-0.414-0.984-0.639c-0.389-0.225-0.758-0.414-1.105-0.568
c-0.841-0.414-1.73-0.603-2.673-0.567c-0.944,0.036-1.825,0.29-2.645,0.763c-0.819,0.474-1.26,0.982-1.32,1.526
c-0.061,0.544,0.266,1.059,0.983,1.544c0.266,0.201,0.594,0.414,0.982,0.639C346.847,385.01,347.215,385.2,347.564,385.353z"/>
<path style="fill:#455A64;" d="M364.527,365.125c0.226-0.13,0.503-0.194,0.83-0.195c0.328,0.001,0.605,0.065,0.831,0.196
l3.104,1.792c0.226,0.13,0.337,0.289,0.337,0.479c0,0.189-0.111,0.35-0.337,0.479l-2.797,1.614c-1.885,1.089-1.886,2.177,0,3.265
l7.56,4.365c0.225,0.13,0.339,0.29,0.338,0.478c0,0.19-0.112,0.35-0.338,0.48l-3.872,2.235c-0.226,0.13-0.502,0.195-0.83,0.195
c-0.327,0-0.604-0.064-0.829-0.195l-14.32-8.268c-0.227-0.131-0.34-0.29-0.34-0.479c0.001-0.189,0.112-0.35,0.338-0.479
l3.565-2.059c0.226-0.13,0.503-0.194,0.829-0.194c0.328,0,0.605,0.064,0.832,0.195l0.705,0.407
c0.021-0.531,0.221-1.072,0.6-1.623c0.379-0.55,1.029-1.091,1.951-1.624L364.527,365.125z"/>
</g>
</g>
</g>
<g id="Character">
<g id="Monster">
<g>
<path style="fill:#27DEBF;" d="M152.588,274.36c-4.216-0.169-6.082,0.249-5.427,4.711c0.656,4.462,0.847,7.896,0.847,7.896
s7.513,0.218,10.996-1.728C162.488,283.294,158.93,274.614,152.588,274.36z"/>
<path style="opacity:0.5;" d="M152.588,274.36c-4.216-0.169-6.082,0.249-5.427,4.711c0.656,4.462,0.847,7.896,0.847,7.896
s7.513,0.218,10.996-1.728C162.488,283.294,158.93,274.614,152.588,274.36z"/>
<g>
<path style="fill:#455A64;" d="M153.264,293.518c-0.273,0-0.55-0.027-0.827-0.082c-2.302-0.454-3.8-2.688-3.345-4.99
c1.093-5.538,2.171-9.815,3.123-13.589c1.388-5.502,2.485-9.849,3.153-15.982c1.046-9.601-1.991-18.766-5.182-24.143
c-1.197-2.017-0.532-4.624,1.485-5.821c2.014-1.197,4.624-0.533,5.821,1.485c1.888,3.181,7.924,14.702,6.322,29.399
c-0.732,6.72-1.95,11.549-3.36,17.14c-0.927,3.673-1.977,7.836-3.027,13.156C157.028,292.116,155.252,293.518,153.264,293.518z"
/>
</g>
<g id="XMLID_262_">
<g>
<path style="fill:#455A64;" d="M143.104,299.261c0,0-0.407,1.781-0.029,2.488c0.59,1.102,3.855,2.451,5.575,3.161
c1.72,0.71,3.615,1.756,5.418,5.034c1.927,3.503,5.424,5.882,9.335,7.368c3.911,1.486,9.606,2.259,16.295,0.588
c6.688-1.671,6.969-5.698,6.969-5.698s0.105-3.778-1.62-4.258C183.322,307.463,143.104,299.261,143.104,299.261z"/>
<path id="XMLID_264_" style="fill:#27DEBF;" d="M145.801,285.22c-0.19,1.189-0.46,2.365-0.81,3.517
c-0.963,3.173-2.552,6.438-1.887,10.523c1.099,1.958,3.391,2.697,5.114,3.461c2.315,1.027,3.975,1.707,5.631,3.708
c2.973,3.591,5.807,8.133,14.792,9.299c8.984,1.166,15.523-2.102,16.992-4.735c1.469-2.633-0.187-4.911-6.074-7.597
c-2.989-1.364-9.808-6.973-10.592-7.715c-0.761-0.72-1.326-1.557-1.917-2.412c-1.194-1.727-2.108-3.921-2.399-5.987
c-0.273-1.93-0.172-4.431,0.325-6.835c0.106-0.516,0.363-1.052,0.144-1.531c-0.575-1.255-2.544-0.923-3.628-0.837
c-1.635,0.129-3.242,0.478-4.841,0.827c-0.518,0.113-1.067,0.242-1.443,0.616c-0.363,0.36-0.5,0.883-0.632,1.376
c-0.201,0.752-0.424,1.498-0.669,2.237c-0.17,0.513-0.394,1.072-0.881,1.304c-0.482,0.229-1.089,0.036-1.452-0.354
c-0.363-0.391-0.515-0.937-0.549-1.469c-0.035-0.532,0.036-1.065,0.056-1.598c0.02-0.51-0.015-1.049-0.288-1.48
c-0.589-0.929-2.084-1.073-2.461-2.106c-0.202-0.553,0.025-1.201,0.452-1.607c0.427-0.406,1.019-0.598,1.605-0.66
s1.118-0.043,1.757-0.025l0.311-1.235c-1.526-0.141-2.702-0.085-4.086,0.514c-0.738,0.319-1.562,1.004-1.872,1.765
c-0.545,1.339-0.215,2.452-0.148,3.064C146.608,281.605,146.175,282.878,145.801,285.22z"/>
<path id="XMLID_269_" style="opacity:0.35;" d="M145.801,285.22c-0.19,1.189-0.46,2.365-0.81,3.517
c-0.963,3.173-2.552,6.438-1.887,10.523c1.099,1.958,3.391,2.697,5.114,3.461c2.315,1.027,3.975,1.707,5.631,3.708
c2.973,3.591,5.807,8.133,14.792,9.299c8.984,1.166,15.523-2.102,16.992-4.735c1.469-2.633-0.187-4.911-6.074-7.597
c-2.989-1.364-9.808-6.973-10.592-7.715c-0.761-0.72-1.326-1.557-1.917-2.412c-1.194-1.727-2.108-3.921-2.399-5.987
c-0.273-1.93-0.172-4.431,0.325-6.835c0.106-0.516,0.363-1.052,0.144-1.531c-0.575-1.255-2.544-0.923-3.628-0.837
c-1.635,0.129-3.242,0.478-4.841,0.827c-0.518,0.113-1.067,0.242-1.443,0.616c-0.363,0.36-0.5,0.883-0.632,1.376
c-0.201,0.752-0.424,1.498-0.669,2.237c-0.17,0.513-0.394,1.072-0.881,1.304c-0.482,0.229-1.089,0.036-1.452-0.354
c-0.363-0.391-0.515-0.937-0.549-1.469c-0.035-0.532,0.036-1.065,0.056-1.598c0.02-0.51-0.015-1.049-0.288-1.48
c-0.589-0.929-2.084-1.073-2.461-2.106c-0.202-0.553,0.025-1.201,0.452-1.607c0.427-0.406,1.019-0.598,1.605-0.66
s1.118-0.043,1.757-0.025l0.311-1.235c-1.526-0.141-2.702-0.085-4.086,0.514c-0.738,0.319-1.562,1.004-1.872,1.765
c-0.545,1.339-0.215,2.452-0.148,3.064C146.608,281.605,146.175,282.878,145.801,285.22z"/>
<path style="fill:#FAFAFA;" d="M162.679,314.172c0,0-0.459-6.372,5.997-10.238c6.456-3.866,10.665-1.935,12.809-0.6
c2.553,1.59,6.283,5.016,4.345,7.816c-2.093,3.024-5.659,4.634-12.474,5.172C166.542,316.86,162.679,314.172,162.679,314.172z"
/>
<g>
<path style="fill:#FAFAFA;" d="M153.781,290.955c0.235,0.022,0.476-0.06,0.643-0.241c0.886-0.958,6.294-4.227,10.388-2.545
c0.098-0.155,0.269-1.149-0.227-1.456c-5.528-1.386-10.251,1.859-11.319,3.017c-0.28,0.303-0.247,0.769,0.072,1.04
C153.467,290.88,153.622,290.94,153.781,290.955z"/>
<path style="fill:#FAFAFA;" d="M166.527,292.492c0.011-0.714-0.407-1.349-0.659-1.527c-4.657-0.668-9.339,2.263-10.363,3.373
c-0.28,0.303-0.246,0.768,0.074,1.039c0.13,0.11,0.284,0.17,0.443,0.185c0.235,0.021,0.476-0.061,0.643-0.242
C157.523,294.388,162.846,291.299,166.527,292.492z"/>
<path style="fill:#FAFAFA;" d="M173.583,299.418c-0.07-0.477-1.014-1.2-1.797-1.399c-5.149-0.354-9.497,3.569-10.348,4.869
c-0.226,0.345-0.116,0.8,0.244,1.013c0.146,0.087,0.309,0.121,0.467,0.109c0.235-0.018,0.46-0.138,0.594-0.344
C163.498,302.514,168.699,298.119,173.583,299.418z"/>
<path style="fill:#FAFAFA;" d="M158.696,300.041c0.236-0.006,0.466-0.116,0.61-0.316c0.757-1.045,5.271-5.004,9.923-3.809
c0.032-0.408-0.822-1.212-1.236-1.328c-4.617-0.418-9.069,3.074-9.955,4.297c-0.242,0.334-0.154,0.793,0.195,1.023
C158.376,300.004,158.537,300.045,158.696,300.041z"/>
</g>
</g>
</g>
</g>
<g>
<path style="fill:#27DEBF;" d="M105.662,289.114c-4.205-0.346-6.087-0.007-5.62,4.479c0.467,4.486,0.515,7.924,0.515,7.924
s7.497,0.534,11.059-1.264C115.178,298.456,111.987,289.634,105.662,289.114z"/>
<path style="opacity:0.5;" d="M105.662,289.114c-4.205-0.346-6.087-0.007-5.62,4.479c0.467,4.486,0.515,7.924,0.515,7.924
s7.497,0.534,11.059-1.264C115.178,298.456,111.987,289.634,105.662,289.114z"/>
<g>
<path style="fill:#455A64;" d="M105.532,308.283c-0.272-0.011-0.548-0.05-0.823-0.117c-2.281-0.55-3.684-2.846-3.132-5.126
c1.325-5.487,2.582-9.715,3.692-13.445c1.618-5.439,2.896-9.736,3.822-15.835c1.448-9.549-1.201-18.833-4.162-24.34
c-1.111-2.066-0.337-4.642,1.729-5.754c2.062-1.111,4.642-0.338,5.754,1.729c1.753,3.257,7.299,15.022,5.081,29.639
c-1.014,6.683-2.434,11.456-4.078,16.983c-1.081,3.631-2.305,7.746-3.578,13.017
C109.351,307.04,107.518,308.367,105.532,308.283z"/>
</g>
<g id="XMLID_266_">
<g>
<path style="fill:#455A64;" d="M95.139,313.594c0,0-0.482,1.762-0.133,2.484c0.543,1.125,3.748,2.611,5.437,3.392
c1.689,0.782,3.538,1.906,5.202,5.257c1.778,3.581,5.172,6.105,9.017,7.754c3.845,1.649,9.503,2.661,16.255,1.273
c6.752-1.388,7.203-5.4,7.203-5.4s0.264-3.77-1.44-4.322C134.976,323.48,95.139,313.594,95.139,313.594z"/>
<path id="XMLID_275_" style="fill:#27DEBF;" d="M98.424,299.678c-0.24,1.18-0.559,2.344-0.957,3.48
c-1.096,3.129-2.821,6.325-2.328,10.435c1.015,2.003,3.275,2.837,4.964,3.673c2.27,1.124,3.899,1.872,5.47,3.941
c2.82,3.713,5.46,8.37,14.388,9.913c8.928,1.543,15.598-1.448,17.176-4.017c1.579-2.569,0.02-4.914-5.75-7.846
c-2.929-1.488-9.506-7.379-10.258-8.153c-0.73-0.751-1.259-1.612-1.813-2.491c-1.12-1.776-1.941-4.006-2.146-6.083
c-0.191-1.94,0.015-4.434,0.612-6.816c0.128-0.51,0.407-1.036,0.208-1.523c-0.522-1.278-2.503-1.029-3.59-0.989
c-1.639,0.06-3.259,0.341-4.871,0.622c-0.523,0.091-1.076,0.197-1.468,0.555c-0.377,0.345-0.536,0.861-0.689,1.349
c-0.233,0.743-0.487,1.479-0.763,2.207c-0.191,0.505-0.438,1.055-0.935,1.265c-0.491,0.208-1.09-0.009-1.436-0.415
c-0.346-0.406-0.475-0.958-0.487-1.491c-0.012-0.533,0.081-1.062,0.123-1.594c0.041-0.509,0.029-1.049-0.226-1.491
c-0.549-0.953-2.037-1.16-2.37-2.208c-0.178-0.561,0.075-1.199,0.519-1.586c0.444-0.387,1.043-0.554,1.631-0.592
c0.588-0.038,1.118,0.004,1.756,0.049l0.363-1.221c-1.519-0.205-2.696-0.198-4.104,0.341c-0.751,0.288-1.603,0.938-1.944,1.685
c-0.601,1.315-0.318,2.441-0.277,3.056C99.382,296.101,98.896,297.354,98.424,299.678z"/>
<path id="XMLID_270_" style="opacity:0.35;" d="M98.424,299.678c-0.24,1.18-0.559,2.344-0.957,3.48
c-1.096,3.129-2.821,6.325-2.328,10.435c1.015,2.003,3.275,2.837,4.964,3.673c2.27,1.124,3.899,1.872,5.47,3.941
c2.82,3.713,5.46,8.37,14.388,9.913c8.928,1.543,15.598-1.448,17.176-4.017c1.579-2.569,0.02-4.914-5.75-7.846
c-2.929-1.488-9.506-7.379-10.258-8.153c-0.73-0.751-1.259-1.612-1.813-2.491c-1.12-1.776-1.941-4.006-2.146-6.083
c-0.191-1.94,0.015-4.434,0.612-6.816c0.128-0.51,0.407-1.036,0.208-1.523c-0.522-1.278-2.503-1.029-3.59-0.989
c-1.639,0.06-3.259,0.341-4.871,0.622c-0.523,0.091-1.076,0.197-1.468,0.555c-0.377,0.345-0.536,0.861-0.689,1.349
c-0.233,0.743-0.487,1.479-0.763,2.207c-0.191,0.505-0.438,1.055-0.935,1.265c-0.491,0.208-1.09-0.009-1.436-0.415
c-0.346-0.406-0.475-0.958-0.487-1.491c-0.012-0.533,0.081-1.062,0.123-1.594c0.041-0.509,0.029-1.049-0.226-1.491
c-0.549-0.953-2.037-1.16-2.37-2.208c-0.178-0.561,0.075-1.199,0.519-1.586c0.444-0.387,1.043-0.554,1.631-0.592
c0.588-0.038,1.118,0.004,1.756,0.049l0.363-1.221c-1.519-0.205-2.696-0.198-4.104,0.341c-0.751,0.288-1.603,0.938-1.944,1.685
c-0.601,1.315-0.318,2.441-0.277,3.056C99.382,296.101,98.896,297.354,98.424,299.678z"/>
<path style="fill:#FAFAFA;" d="M114.07,329.315c0,0-0.191-6.386,6.422-9.977c6.613-3.591,10.737-1.485,12.823-0.06
c2.484,1.696,6.066,5.276,4.013,7.992c-2.218,2.934-5.849,4.392-12.68,4.643C117.816,332.163,114.07,329.315,114.07,329.315z"
/>
<g>
<path style="fill:#FAFAFA;" d="M106.156,305.745c0.234,0.031,0.479-0.04,0.653-0.214c0.925-0.92,6.466-3.958,10.486-2.106
c0.104-0.15,0.317-1.137-0.166-1.464c-5.465-1.617-10.321,1.426-11.436,2.538c-0.293,0.291-0.279,0.758,0.029,1.042
C105.846,305.656,105.998,305.723,106.156,305.745z"/>
<path style="fill:#FAFAFA;" d="M118.826,307.815c0.041-0.713-0.35-1.365-0.594-1.553c-4.624-0.863-9.426,1.868-10.496,2.934
c-0.292,0.291-0.278,0.757,0.03,1.042c0.125,0.115,0.277,0.182,0.435,0.203c0.234,0.031,0.478-0.04,0.652-0.214
C109.751,309.332,115.198,306.469,118.826,307.815z"/>
<path style="fill:#FAFAFA;" d="M125.584,315.032c-0.05-0.48-0.963-1.241-1.736-1.473c-5.13-0.57-9.639,3.167-10.544,4.43
c-0.241,0.335-0.149,0.794,0.201,1.023c0.142,0.093,0.303,0.134,0.463,0.129c0.236-0.008,0.465-0.119,0.608-0.319
C115.378,317.702,120.759,313.529,125.584,315.032z"/>
<path style="fill:#FAFAFA;" d="M110.685,315.029c0.236,0.004,0.47-0.097,0.623-0.29c0.8-1.012,5.477-4.778,10.075-3.388
c0.049-0.406-0.77-1.246-1.179-1.378c-4.596-0.611-9.19,2.69-10.127,3.875c-0.256,0.324-0.187,0.786,0.152,1.031
C110.366,314.978,110.525,315.026,110.685,315.029z"/>
</g>
</g>
</g>
</g>
<g>
<path style="fill:#455A64;" d="M214.064,215.395c-4.063,0-9.125-1.423-14.74-5.258c-1.383-0.945-1.739-2.834-0.794-4.217
c0.946-1.385,2.834-1.738,4.217-0.794c7.566,5.168,12.976,4.562,14.983,3.39c0.814-0.477,1.418-1.602,1.655-3.087
c0.474-2.966-0.508-7.817-4.686-12.534c-8.839-9.985-19.929-15.117-37.084-17.16c-1.664-0.198-2.852-1.708-2.654-3.372
c0.198-1.664,1.704-2.857,3.372-2.654c18.512,2.205,31.13,8.116,40.911,19.163c4.738,5.351,7.031,11.898,6.134,17.515
c-0.532,3.333-2.16,5.95-4.584,7.369C219.096,214.746,216.808,215.395,214.064,215.395z"/>
</g>
<g>
<path style="fill:#27DEBF;" d="M175.684,137.576c4.59-4.323,8.634-17.041,6.548-30.403
c-2.086-13.362-14.434-25.858-19.351-28.561c-4.917-2.703-8.377,0.793-7.04,5.774c1.819,6.776,4.086,22.02-8.56,28.733
c0,0,1.872,9.953,8.389,17.854C162.187,138.874,175.684,137.576,175.684,137.576z"/>
<path style="opacity:0.75;fill:#FFFFFF;" d="M175.684,137.576c4.59-4.323,8.634-17.041,6.548-30.403
c-2.086-13.362-14.434-25.858-19.351-28.561c-4.917-2.703-8.377,0.793-7.04,5.774c1.819,6.776,4.086,22.02-8.56,28.733
c0,0,1.872,9.953,8.389,17.854C162.187,138.874,175.684,137.576,175.684,137.576z"/>
<g>
<path style="fill:#27DEBF;" d="M158.521,87.013c-1.115,0-2.22-0.162-3.243-0.488c-0.32-0.102-0.497-0.443-0.395-0.763
c0.103-0.318,0.444-0.498,0.762-0.394c3.982,1.27,9.355-0.213,10.7-4.37c0.103-0.318,0.441-0.494,0.765-0.39
c0.319,0.103,0.493,0.446,0.39,0.765C166.289,85.113,162.342,87.013,158.521,87.013z"/>
</g>
<g>
<path style="fill:#27DEBF;" d="M163.069,95.406c-3.406,0-5.769-1.342-6.684-1.86c-0.292-0.166-0.393-0.536-0.228-0.827
c0.165-0.293,0.536-0.394,0.827-0.229c1.867,1.06,4.831,2.352,9.004,1.348c5.519-1.328,6.697-4.561,6.947-5.89
c0.062-0.331,0.384-0.545,0.709-0.484c0.329,0.062,0.545,0.379,0.484,0.708c-0.294,1.561-1.648,5.353-7.855,6.847
C165.125,95.294,164.053,95.406,163.069,95.406z"/>
</g>
<g>
<path style="fill:#27DEBF;" d="M169.352,105.927c-0.015,0-0.031,0-0.047,0c-7.126-0.014-11.542-3.576-13.54-5.698
c-0.23-0.244-0.218-0.628,0.026-0.858c0.243-0.229,0.627-0.219,0.858,0.026c1.865,1.98,5.987,5.304,12.658,5.317
c0.015,0,0.031,0,0.046,0c7.792,0,10.107-3.66,11.097-5.225c0.181-0.284,0.557-0.368,0.838-0.188
c0.283,0.179,0.367,0.554,0.188,0.837C180.474,101.722,177.813,105.927,169.352,105.927z"/>
</g>
<g>
<path style="fill:#27DEBF;" d="M172.534,118.134c-2.226,0-4.631-0.33-7.087-1.158c-5.739-1.935-9.884-5.262-12.317-9.887
c-0.156-0.297-0.043-0.664,0.255-0.82c0.294-0.155,0.664-0.043,0.819,0.254c2.315,4.402,6.12,7.445,11.632,9.303
c7.607,2.563,14.868,0.014,16.891-1.854c0.247-0.227,0.631-0.211,0.857,0.034c0.228,0.246,0.212,0.63-0.034,0.858
C181.96,116.333,177.736,118.134,172.534,118.134z"/>
</g>
<path style="opacity:0.1;" d="M157.193,126.732c10.884-12.435,6.676-32.024,4-37.64c-3.768-7.905-2.173-11.372,1.124-10.752
c-4.612-2.14-7.761,1.259-6.476,6.045c1.819,6.776,4.086,22.02-8.56,28.733c0,0,1.639,8.707,7.184,16.298
C155.375,128.648,156.287,127.767,157.193,126.732z"/>
</g>
<g>
<path style="fill:#27DEBF;" d="M185.678,211.349c-3.7-9.007-5.542-33.904-4.777-50.272c2.479-0.519,5.512-3.899,4.286-8.269
c-1.102-3.928-2.172-4.446-5.484-8.687c-2.365-3.028-4.008-7.035-6.127-10.279c-7.275-11.142-16.527-18.575-30.142-21.778
c-2.337-0.55-3.743-2.961-3.072-5.265c0.87-2.991,1.611-6.916,0.697-9.797c-1.687-5.317-5.045-5.856-7.272-4.872
c-2.227,0.984-2.386,3.195-1.719,6.765c0.667,3.57-0.379,4.195-1.572,3.811s-2.074-6.872-10.384-9.925
c-8.31-3.053-13.924,0.953-13.785,4.384c0.151,3.743,2.874,4.035,8.64,4.659c2.451,0.265,5.057,1.297,6.715,2.981
c2.319,2.355,1.034,6.34-2.192,7.059c-21.134,4.71-37.538,22.32-42.178,46.08c-0.703,3.63-1.187,8.009-1.48,12.902l-0.001,0
c0,0-2.117-3.979-6.662-5.096c-4.082-1.004-5.697,0.951-5.643,2.772c0.054,1.822,2.327,2.691,4.617,3.639
c3.67,1.52,4.267,2.93,4.267,2.93s-3.173-0.537-5.682,0.572c-2.509,1.108-3.166,3.822-0.74,4.855
c1.355,0.577,3.422-0.457,5.552-0.951c1.341-0.31,3.822-0.802,3.96,0.808c0,0,0.002-0.001,0.002-0.001
c-0.049,3.762-0.016,7.7,0.093,11.742c0.307,11.411,2.306,19.225,0.482,29.574c-1.382,7.843-8.243,14.041-1.354,20.514
c3.079,2.893,6.676,3.119,9.498,2.626c2.309-0.404,4.466,1.035,5.002,3.317c0.765,3.257,3.121,7.212,9.757,8.968
c6.126,1.621,10.047-0.245,12.436-2.516c1.732-1.646,4.493-1.667,6.026,0.166c2.548,3.046,7.277,6.317,15.827,6.275
c8.534-0.042,12.855-3.75,14.989-6.908c1.259-1.863,3.716-2.538,5.651-1.394c3.247,1.92,8.466,3.464,14.97-0.005
c4.833-2.578,6.083-7.211,6.2-10.967c0.076-2.464,2.303-4.391,4.74-4.017c3.73,0.574,7.527-0.403,10.092-4.28
C194.531,226.485,189.012,219.465,185.678,211.349z"/>
<g style="opacity:0.1;">
<path d="M68.142,172.16c3.67,1.52,4.267,2.93,4.267,2.93s-3.173-0.537-5.682,0.572c-2.509,1.108-3.166,3.822-0.74,4.855
c1.355,0.577,3.422-0.457,5.552-0.951c1.341-0.31,3.822-0.802,3.96,0.808c0,0,0.002-0.001,0.002-0.001
c-0.049,3.762-0.016,7.7,0.093,11.742c0.307,11.411,2.306,19.225,0.482,29.574c-1.382,7.843-8.243,14.041-1.354,20.514
c1.615,1.518,3.372,2.29,5.086,2.621c-0.205-0.11-3.43-5.298,0.369-12.769c5.341-10.501,5.01-17.079,3.611-38.364
c-1.712-26.042,1.484-37.171,10.935-55.574c9.683-18.856,25.09-19.773,31.631-24.77c3.555-2.716,2.338-7.653-0.771-10.782
c-2.612-2.629-6.692-3.693-9.097-3.942c-5.269-0.545-10.156-1.459-9.168-4.089c-0.674,0.829-1.025,1.748-0.989,2.63
c0.151,3.743,2.874,4.035,8.64,4.659c2.451,0.265,5.057,1.297,6.715,2.981c2.319,2.355,1.034,6.34-2.192,7.059
c-21.134,4.71-37.538,22.32-42.178,46.08c-0.703,3.63-1.187,8.009-1.48,12.902l-0.001,0c0,0-2.117-3.979-6.662-5.096
c-4.082-1.004-5.697,0.951-5.643,2.772C63.579,170.343,65.853,171.212,68.142,172.16z"/>
<path d="M94.722,248.249c-2.686-3.535-4.853-4.115-8.583-3.33c-0.007,0.001-0.012,0.005-0.019,0.006
c1.502,0.405,2.718,1.59,3.101,3.221c0.765,3.257,3.121,7.212,9.757,8.968c4.326,1.145,7.548,0.547,9.912-0.7
C99.298,258.499,97.407,251.784,94.722,248.249z"/>
<path d="M140.795,259.809c-4.726,0.62-9.156-0.447-14.137-4.095c-5.37-3.933-7.994-3.566-11.316-2.235
c-0.001,0-0.002,0.001-0.002,0.001c0.792,0.181,1.531,0.604,2.101,1.284c2.548,3.046,7.277,6.317,15.827,6.275
C136.273,261.024,138.746,260.549,140.795,259.809z"/>
<path d="M134.268,97.338c-0.179-3.153,1.834-5.535,4.308-4.495c-1.585-1.346-3.405-1.325-4.789-0.714
c-2.227,0.984-2.386,3.195-1.719,6.765c0.667,3.57-0.379,4.195-1.572,3.811c-0.176-0.057-0.348-0.259-0.536-0.552l0.001,0.003
c0.914,2.026,1.807,4.05,3.89,2.919C135.935,103.944,134.447,100.492,134.268,97.338z"/>
</g>
</g>
<g>
<path style="opacity:0.2;" d="M114.145,169.43c0,0,1.154,4.885,6.506,4.817c5.352-0.068,5.94-2.499,8.133-5.814
c2.193-3.315,6.894-4.065,10.982-4.133c4.088-0.068,7.913-4.707,5.722-9.404c0,0,0.557,3.351-2.719,5.492
c-3.276,2.141-7.635,0.212-11.928,2.267c-4.293,2.054-4.663,6.676-7.816,8.146C119.872,172.272,116.05,171.154,114.145,169.43z"
/>
<path style="fill:#455A64;" d="M139.205,166.66c-0.473,4.406-4.43,7.586-8.836,7.113c-2.61-0.279-4.794-1.784-6.033-3.884
c2.124-1.979,2.925-5.401,6.506-7.234c2.828-1.444,4.976-0.789,7.343-0.85C138.999,163.225,139.4,164.912,139.205,166.66z"/>
<path style="fill:none;stroke:#455A64;stroke-width:1.2138;stroke-linecap:round;stroke-miterlimit:10;" d="M112.448,166.973
c0.981,2.216,3.248,4.865,8.413,4.415c5.401-0.471,4.966-6.176,9.979-8.733c4.587-2.34,7.398,0.832,12.209-2.449
c4.344-2.963,1.883-8.81,0.246-10.006"/>
<path style="fill:#F5F5F5;" d="M137.117,165.788c-0.015,1.217-1.014,2.191-2.231,2.175c-1.217-0.015-2.191-1.014-2.175-2.231
c0.015-1.217,1.014-2.191,2.231-2.175C136.158,163.573,137.132,164.572,137.117,165.788z"/>
</g>
<g>
<path style="opacity:0.2;" d="M180.89,161.353l-0.533-0.275c0,0-1.883-0.128-2.954-1.118s-2.275-4.231-5.698-5.064
c-3.424-0.833-5.339,0.837-9.134,0.998c-3.796,0.161-5.073-2.462-5.834-4.66c-0.402,3.729,0.654,6.228,3.358,7.326
c3.003,1.219,8.433-1.34,10.754,0c2.321,1.34,3.664,4.111,6.554,4.432c1.67,0.186,2.788-0.271,3.448-0.691
C180.863,161.982,180.876,161.666,180.89,161.353z"/>
<path style="fill:#455A64;" d="M177.403,159.96c-0.935,3.641-4.418,6.154-8.278,5.741c-4.224-0.461-7.283-4.26-6.822-8.484
c0.049-0.449,0.134-0.898,0.267-1.323c2.816-0.073,5.389-2.027,9.14-0.995C175.012,155.809,175.23,158.418,177.403,159.96z"/>
<path style="fill:none;stroke:#455A64;stroke-width:1.2138;stroke-linecap:round;stroke-miterlimit:10;" d="M156.889,148.714
c-0.768,2.146,0.25,4.941,2.451,6.272c4.362,2.638,7.264-1.495,12.366-0.09c3.832,1.056,3.516,4.37,6.881,5.705
c0.651,0.258,1.677,0.5,2.315,0.475"/>
<path style="fill:#F5F5F5;" d="M174.072,159.55c-0.014,1.137-0.947,2.046-2.084,2.032c-1.137-0.014-2.046-0.947-2.032-2.084
c0.014-1.137,0.947-2.046,2.084-2.032C173.176,157.481,174.086,158.414,174.072,159.55z"/>
</g>
<g>
<path style="fill:#455A64;" d="M149.814,176.643c-10.394,4.648-19.525,13.841-23.744,23.975
c-2.601,6.247-1.185,11.444,2.303,12.622c6.875,2.323,14.585-8.397,22.252-12.137c7.592-3.703,13.913-0.125,17.805-2.633
c4.579-2.951,3.91-10.477,1.449-15.851C167.135,176.625,160.209,171.995,149.814,176.643z"/>
<path style="fill:#F28F8F;" d="M168.167,198.609c-3.81-13.245-16.245-17.374-28.868-15.376
c-5.787,4.775-10.522,10.882-13.229,17.385c-2.601,6.247-1.185,11.444,2.303,12.622c6.875,2.323,14.585-8.398,22.252-12.137
C158.053,197.48,164.257,200.81,168.167,198.609z"/>
<path style="opacity:0.1;" d="M159.956,199.304c-12.766-3.432-21.007,7.54-25.043,7.437c-4.038-0.103-5.989-3.628-0.393-12.586
c5.545-8.876,17.606-11.392,22.847-8.775c-5.226-2.577-11.619-3.169-18.068-2.148c-5.787,4.775-10.522,10.882-13.229,17.385
c-2.601,6.247-1.184,11.444,2.303,12.622c6.875,2.323,14.585-8.398,22.252-12.137
C154.029,199.443,157.17,199.246,159.956,199.304z"/>
<g>
<path style="fill:#F5F5F5;" d="M164.858,186.623c-2.463,1.068-2.43,4.34-4.459,11.286c-0.142,0.487-0.281,0.953-0.417,1.401
c3.423,0.078,6.306,0.54,8.449-0.841c0.438-0.282,0.819-0.62,1.172-0.983C170.1,192.216,167.464,185.493,164.858,186.623z"/>
<path style="fill:#E0E0E0;" d="M169.603,197.487c0.058-0.612,0.069-1.244,0.048-1.881c-0.664,0.85-1.702,1.68-2.862,1.907
c-1.87,0.365-3.95,0-3.95,0s0.645-4.062,1.278-7.552c0.425-2.343,1.828-3.357,2.942-2.546c-0.685-0.77-1.443-1.119-2.2-0.79
c-2.463,1.068-2.43,4.34-4.459,11.286c-0.142,0.487-0.281,0.953-0.417,1.401c3.423,0.078,6.305,0.54,8.449-0.841
C168.869,198.187,169.25,197.849,169.603,197.487z"/>
</g>
<g>
<path style="fill:#F5F5F5;" d="M138.466,195.254c-2.463,1.068-2.43,4.34-4.459,11.286c-0.888,3.039-1.645,5.278-2.238,6.884
c3.667-0.706,7.518-4.007,11.433-7.179l0-0.001C143.755,200.957,141.092,194.115,138.466,195.254z"/>
<path style="fill:#E0E0E0;" d="M143.202,206.245c0.088-0.845,0.087-1.729,0.024-2.615c-3.888,2.52-6.226,5.216-6.842,4.882
c-0.618-0.336-0.088-3.069,0.178-6.076c0.321-3.629,0.771-7.386,3.182-7.123c-0.418-0.2-0.848-0.246-1.279-0.059
c-2.463,1.068-2.43,4.34-4.459,11.286c-0.888,3.039-1.645,5.278-2.238,6.884C135.437,212.719,139.288,209.417,143.202,206.245
L143.202,206.245z"/>
</g>
</g>
<g>
<g>
<path style="fill:#455A64;" d="M53.759,240.386c-0.32,0-0.645-0.051-0.965-0.159c-1.59-0.532-2.445-2.253-1.912-3.842
c8.078-24.088,19.95-34.268,36.486-42.885c1.484-0.775,3.318-0.199,4.093,1.288c0.775,1.486,0.198,3.319-1.288,4.093
c-15.588,8.124-26.074,17.181-33.537,39.434C56.21,239.583,55.027,240.386,53.759,240.386z"/>
</g>
<path style="fill:#455A64;" d="M51.621,234.218c-1.273,3.299-3.21,4.637-5.063,6.58c-1.853,1.943-3.845,3.133-5.778,6.176
c-1.933,3.043-2.844,8.194-2.264,10.601c0.328,1.361,2.213,1.376,2.323,0.18c0.41-4.433,1.148-8.251,4.262-10.63
c0,0-2.109,4.278-2.388,8.183c-0.279,3.904,0.232,8.556,1.85,8.791c1.618,0.235,1.552-1.423,1.327-3.767
c-0.225-2.344-0.436-8.553,2.685-12.981c0,0-1.113,6.542-0.002,10.714c1.111,4.172,3.276,7.164,4.475,6.651
c1.198-0.513,1.141-1.306-0.155-4.517c-1.006-2.493-0.956-5.65-0.701-8.325c0.259-2.728,0.885-4.637,2.718-6.54
c0.798-0.828,1.642-1.29,2.311-1.482c0.756-0.217,2.059,0.219,2.757,0.897c1.128,1.098,2.119,2.484,2.429,4.761
c0.285,2.1,3.755,2.293,2.463-3.613c-1.292-5.905-8.562-6.94-6.738-11.758L51.621,234.218z"/>
</g>
<path style="fill:#455A64;" d="M202.675,212.13l2.764-5.357c-4.295-2.242,0.617-8.835-1.866-14.346s-5.154-3.288-4.131-1.432
c1.109,2.012,1.319,3.756,0.889,5.27c-0.417,1.467-1.368,2.324-2.385,1.457c-1.018-0.868-1.659-3.73-5.37-6.88
c-3.368-2.859-6.555-3.415-7.947-3.418c-2.897-0.007-1.879,2.012-0.484,2.572c5.985,2.4,6.732,3.734,8.238,5.69
c1.506,1.956,1.307,3.087,0.524,2.853c-0.783-0.234-1.964-1.928-5.621-3.61c-3.657-1.682-7.7-1.665-8.339-0.9
c-0.638,0.765-0.557,1.758,1.18,2.174c1.736,0.415,5.413,1.333,7.41,2.485c2.55,1.471,3.715,3.37,3.293,3.926
c-0.422,0.556-2.599-0.99-5.918-1.601c-3.318-0.611-5.026-0.608-6.398-0.076c-1.023,0.396-0.656,2.447,2.39,2.59
c2.46,0.116,6.478,1.306,8.717,2.833c1.246,0.85,2.906,2.012,5.058,2.945C197.03,210.324,198.452,210.768,202.675,212.13z"/>
<g>
<path style="fill:#27DEBF;" d="M103.384,131.17c3.509,1.835,9.137,11.418,2.238,21.609c-6.898,10.191-16.67,9.822-21.153,9.049
c-2.8-1.362-17.454-7.714-18.179-27.98c-0.725-20.265,11.748-28.019,14.869-29.815c3.121-1.795,9.337-2.338,8.571,4.604
c-0.766,6.942-1.5,13.098,3.544,17.562C97.226,129.697,103.384,131.17,103.384,131.17z"/>
<path style="opacity:0.75;fill:#FFFFFF;" d="M103.384,131.17c3.509,1.835,9.137,11.418,2.238,21.609
c-6.898,10.191-16.67,9.822-21.153,9.049c-2.8-1.362-17.454-7.714-18.179-27.98c-0.725-20.265,11.748-28.019,14.869-29.815
c3.121-1.795,9.337-2.338,8.571,4.604c-0.766,6.942-1.5,13.098,3.544,17.562C97.226,129.697,103.384,131.17,103.384,131.17z"/>
<g>
<path style="fill:#27DEBF;" d="M77.128,157.518c-0.578,0-1.075-0.027-1.471-0.069c-0.333-0.036-0.574-0.335-0.538-0.669
c0.036-0.334,0.34-0.571,0.669-0.538c3.046,0.328,12.346-0.353,18.77-7.36c6.576-7.176,6.838-14.161,5.898-18.757
c-0.066-0.328,0.145-0.649,0.474-0.716c0.322-0.066,0.648,0.144,0.716,0.473c0.996,4.873,0.729,12.267-6.195,19.821
C89.522,156.171,81.244,157.518,77.128,157.518z"/>
</g>
<g>
<path style="fill:#27DEBF;" d="M73.409,144.143c-3.675,0-6.393-0.591-6.621-0.642c-0.327-0.074-0.533-0.398-0.46-0.725
c0.075-0.327,0.396-0.533,0.725-0.459c0.46,0.103,11.333,2.465,19.13-2.764c7.056-4.732,7.672-10.446,7.935-12.886
c0.035-0.334,0.35-0.568,0.669-0.538c0.333,0.035,0.574,0.335,0.538,0.668c-0.257,2.384-0.939,8.717-8.466,13.763
C82.567,143.439,77.418,144.143,73.409,144.143z"/>
</g>
<g>
<path style="fill:#27DEBF;" d="M76.311,127.987c-5.23,0-8.647-1.645-10.385-2.783c-0.28-0.184-0.358-0.56-0.174-0.84
c0.184-0.283,0.56-0.357,0.84-0.175c2.019,1.322,6.48,3.376,13.712,2.271c5.709-0.873,8.181-2.709,10.003-4.564
c0.233-0.239,0.618-0.242,0.858-0.007c0.239,0.235,0.242,0.619,0.007,0.858c-1.968,2.003-4.625,3.986-10.686,4.912
C78.985,127.888,77.594,127.987,76.311,127.987z"/>
</g>
<g>
<path style="fill:#27DEBF;" d="M82.675,116.296c-1.133,0-2.354-0.144-3.658-0.484c-3.209-0.836-5.605-2.674-6.931-5.314
c-0.149-0.299-0.028-0.664,0.27-0.814c0.296-0.151,0.664-0.031,0.816,0.27c1.179,2.352,3.249,3.928,6.151,4.684
c4.523,1.178,7.944-0.22,10.017-1.601c0.275-0.187,0.655-0.113,0.842,0.169c0.186,0.278,0.11,0.655-0.168,0.841
C88.333,115.166,85.848,116.296,82.675,116.296z"/>
</g>
<path style="opacity:0.1;" d="M92.383,154.598c-4.425-0.403-9.961-1.656-14.753-9.005c-4.792-7.349-6.283-22.653-1.908-31.877
c2.877-6.066,8.633-11.63,12.778-9.772c-1.854-1.726-5.272-1.101-7.341,0.089c-3.121,1.795-15.594,9.549-14.869,29.815
s15.379,26.617,18.179,27.98c4.483,0.772,14.255,1.142,21.153-9.049c4.619-6.824,3.62-13.37,1.404-17.505l-0.004-0.002
C110.487,146.142,98.956,155.197,92.383,154.598z"/>
</g>
<path style="fill:#FAFAFA;" d="M101.456,152.5c0,0-5.212,5.746-5.257,11.275c-0.023,2.801,1.996,5.364,5.257,5.364
c3.262,0,5.281-2.562,5.258-5.364C106.668,158.246,101.456,152.5,101.456,152.5z"/>
</g>
</g>
<g id="Speech_Bubble">
<g id="Speech_Bubble_9_">
<g id="Speech_Bubble_10_">
<g id="XMLID_260_">
<path id="XMLID_1172_" style="fill:#27DEBF;" d="M280.017,60.695l-64.481,37.182c-0.67,0.387-1.213,1.328-1.213,2.102v40.537
c0,0.774,0.546,1.709,1.22,2.09l4.347,2.437c0.674,0.38,1.764,0.375,2.434-0.012l64.481-37.182
c0.67-0.387,1.213-1.328,1.213-2.102V65.21c0-0.774-0.546-1.709-1.22-2.09l-4.347-2.437
C281.777,60.303,280.688,60.308,280.017,60.695z"/>
<path id="XMLID_1171_" style="fill:#27DEBF;" d="M221.111,144.331v-40.537c0-0.774,0.543-1.715,1.214-2.102l64.481-37.182
c0.67-0.387,1.213-0.073,1.213,0.701v40.537c0,0.774-0.543,1.715-1.213,2.102l-64.481,37.182
C221.654,145.418,221.111,145.104,221.111,144.331z"/>
<path id="XMLID_1170_" style="opacity:0.2;" d="M222.324,145.031c-0.716,0.41-1.826,0.388-2.436,0.014l-4.345-2.442
c-0.673-0.376-1.222-1.312-1.222-2.085v-40.54c0-0.404,0.151-0.846,0.387-1.239l6.76,3.86c-0.224,0.375-0.359,0.807-0.359,1.194
v40.535C221.111,145.037,221.61,145.445,222.324,145.031z"/>
<path id="XMLID_1164_" style="opacity:0.4;fill:#FFFFFF;" d="M288.003,64.99c-0.095-0.611-0.594-0.83-1.199-0.482
l-64.477,37.184c-0.336,0.196-0.639,0.527-0.857,0.908l-6.766-3.86c0.219-0.364,0.51-0.678,0.835-0.863l64.482-37.184
c0.667-0.387,1.754-0.392,2.432-0.011l4.345,2.436C287.409,63.465,287.918,64.267,288.003,64.99z"/>
</g>
<g>
<path style="fill:#27DEBF;" d="M214.322,114.382l-9.764,9.933c-0.521,0.53-0.34,1.319,0.184,1.66
c0.201,0.131,6.759,3.888,6.759,3.888l9.609-11.57L214.322,114.382z"/>
<path style="opacity:0.1;" d="M214.322,114.382l-9.764,9.933c-0.521,0.53-0.34,1.319,0.184,1.66
c0.201,0.131,6.759,3.888,6.759,3.888l9.609-11.57L214.322,114.382z"/>
<path style="fill:#27DEBF;" d="M221.111,118.292l-9.764,9.932c-0.721,0.733-0.098,1.962,0.919,1.816l8.845-1.277
C222.06,128.764,222.06,118.292,221.111,118.292z"/>
</g>
</g>
<g>
<path style="fill:#455A64;" d="M229.011,115.016c0.038-1.133,0.195-2.269,0.473-3.411c0.277-1.141,0.67-2.22,1.178-3.238
c0.509-1.018,1.126-1.949,1.855-2.796c0.727-0.846,1.567-1.544,2.52-2.094c0.939-0.543,1.777-0.813,2.511-0.811
c0.734,0.003,1.355,0.219,1.865,0.649c0.509,0.43,0.901,1.056,1.178,1.877c0.277,0.822,0.434,1.776,0.473,2.865
c0.026,0.837,0.038,1.722,0.038,2.654c0,0.932-0.013,1.812-0.038,2.64c-0.038,1.132-0.196,2.269-0.473,3.41
c-0.278,1.141-0.67,2.226-1.178,3.254c-0.509,1.027-1.131,1.961-1.865,2.801c-0.734,0.84-1.572,1.532-2.511,2.075
c-0.953,0.55-1.793,0.827-2.52,0.83c-0.729,0.004-1.346-0.214-1.855-0.654c-0.508-0.44-0.902-1.071-1.178-1.893
c-0.278-0.822-0.434-1.776-0.473-2.864c-0.027-0.798-0.039-1.663-0.039-2.595C228.972,116.783,228.985,115.883,229.011,115.016z
M237.491,115.265c0.013-0.364,0.027-0.768,0.038-1.212c0.013-0.444,0.019-0.893,0.019-1.349c0-0.456-0.006-0.893-0.019-1.313
c-0.012-0.419-0.026-0.792-0.038-1.122c-0.026-0.481-0.093-0.898-0.202-1.251c-0.109-0.353-0.264-0.625-0.464-0.817
c-0.2-0.192-0.447-0.292-0.743-0.3c-0.297-0.006-0.644,0.104-1.044,0.335c-0.4,0.23-0.747,0.521-1.043,0.87
c-0.297,0.35-0.544,0.736-0.743,1.159c-0.201,0.423-0.355,0.874-0.464,1.353c-0.11,0.48-0.178,0.975-0.203,1.485
c-0.026,0.352-0.042,0.743-0.049,1.173c-0.006,0.431-0.009,0.873-0.009,1.33c0,0.456,0.003,0.9,0.009,1.332
c0.006,0.432,0.023,0.82,0.049,1.161c0.052,0.962,0.274,1.656,0.667,2.084c0.392,0.428,0.988,0.411,1.786-0.05
c0.798-0.461,1.391-1.13,1.777-2.007C237.201,117.246,237.426,116.293,237.491,115.265z"/>
<path style="fill:#455A64;" d="M253.175,105.258c0.013,0.29,0.02,0.668,0.02,1.133c0,0.466-0.007,0.852-0.02,1.157
c-0.026,0.966-0.168,1.94-0.424,2.922c-0.258,0.981-0.612,1.914-1.063,2.799c-0.451,0.884-0.994,1.689-1.632,2.414
c-0.638,0.725-1.349,1.315-2.134,1.768c-0.785,0.454-1.497,0.686-2.135,0.697c-0.637,0.011-1.181-0.165-1.632-0.529
c-0.451-0.365-0.805-0.889-1.062-1.573c-0.258-0.684-0.399-1.495-0.425-2.431c-0.013-0.29-0.019-0.668-0.019-1.134
c0-0.465,0.006-0.851,0.019-1.156c0.013-0.959,0.148-1.929,0.406-2.911c0.258-0.982,0.615-1.917,1.072-2.805
c0.456-0.889,1.004-1.701,1.641-2.435c0.638-0.734,1.35-1.33,2.135-1.783c0.785-0.453,1.496-0.68,2.134-0.681
c0.638-0.002,1.185,0.178,1.642,0.539c0.456,0.36,0.812,0.884,1.062,1.572C253.011,103.509,253.15,104.32,253.175,105.258z
M246.144,111.458c0.039,0.732,0.216,1.219,0.531,1.463c0.315,0.245,0.731,0.218,1.246-0.08c0.515-0.297,0.93-0.75,1.246-1.359
c0.315-0.608,0.492-1.299,0.531-2.076c0.026-0.312,0.038-0.657,0.038-1.033c0-0.377-0.013-0.706-0.038-0.988
c-0.038-0.731-0.215-1.219-0.531-1.463c-0.316-0.244-0.731-0.218-1.246,0.08c-0.515,0.297-0.931,0.751-1.246,1.359
c-0.315,0.608-0.492,1.301-0.531,2.076c-0.026,0.312-0.038,0.656-0.038,1.033S246.118,111.176,246.144,111.458z"/>
<path style="fill:#455A64;" d="M261.057,109.867c-0.373,0.216-0.702,0.346-0.985,0.39c-0.283,0.045-0.528,0.037-0.734-0.022
c-0.205-0.06-0.38-0.153-0.521-0.279c-0.142-0.126-0.258-0.252-0.347-0.379v6.335c0,0.218-0.052,0.436-0.155,0.655
c-0.104,0.218-0.225,0.367-0.367,0.449l-2.435,1.405c-0.142,0.082-0.264,0.074-0.367-0.025c-0.103-0.1-0.154-0.258-0.154-0.477
V98.409c0-0.218,0.051-0.435,0.154-0.653c0.104-0.218,0.225-0.368,0.367-0.45l2.338-1.349c0.141-0.082,0.263-0.072,0.368,0.026
c0.103,0.099,0.154,0.257,0.154,0.476v0.685c0.115-0.265,0.242-0.547,0.377-0.843c0.135-0.296,0.302-0.586,0.502-0.87
c0.2-0.283,0.445-0.564,0.734-0.84c0.29-0.276,0.647-0.537,1.072-0.783c0.58-0.335,1.126-0.516,1.642-0.546
c0.514-0.029,0.966,0.126,1.352,0.469c0.387,0.341,0.698,0.871,0.937,1.585c0.238,0.716,0.369,1.65,0.396,2.805
c0.013,0.29,0.019,0.688,0.019,1.194c0,0.505-0.006,0.911-0.019,1.215c-0.027,1.185-0.158,2.272-0.396,3.262
c-0.239,0.991-0.551,1.88-0.937,2.668c-0.386,0.788-0.838,1.469-1.352,2.044C262.183,109.078,261.637,109.533,261.057,109.867z
M261.927,102.168c0.038-0.578,0.038-1.133,0-1.666c-0.039-0.671-0.188-1.19-0.444-1.557c-0.258-0.367-0.689-0.376-1.295-0.026
c-0.283,0.164-0.528,0.374-0.734,0.632c-0.205,0.258-0.376,0.54-0.511,0.845c-0.136,0.306-0.242,0.62-0.319,0.942
c-0.077,0.323-0.129,0.64-0.154,0.952c-0.027,0.313-0.04,0.667-0.04,1.063c0,0.397,0.013,0.736,0.04,1.019
c0.025,0.282,0.077,0.54,0.154,0.773c0.077,0.233,0.183,0.425,0.319,0.575c0.136,0.15,0.306,0.235,0.511,0.254
c0.206,0.02,0.451-0.052,0.734-0.216c0.606-0.35,1.036-0.856,1.295-1.521C261.739,103.575,261.887,102.884,261.927,102.168z"/>
<path style="fill:#455A64;" d="M272.917,98.082c0-0.218-0.048-0.359-0.145-0.422c-0.096-0.063-0.26-0.067-0.492-0.013
c-0.233,0.055-0.538,0.152-0.918,0.292c-0.379,0.14-0.853,0.295-1.419,0.463c-0.979,0.287-1.732,0.167-2.26-0.362
c-0.529-0.527-0.792-1.465-0.792-2.813c0-0.674,0.108-1.361,0.327-2.063c0.219-0.701,0.525-1.383,0.918-2.047
c0.392-0.663,0.866-1.278,1.42-1.846c0.553-0.567,1.171-1.048,1.854-1.442c0.67-0.387,1.288-0.619,1.855-0.699
c0.566-0.079,1.055-0.044,1.468,0.104c0.411,0.149,0.737,0.407,0.975,0.775c0.238,0.368,0.37,0.793,0.396,1.273
c0.013,0.211-0.036,0.427-0.145,0.649c-0.11,0.222-0.236,0.373-0.377,0.455l-2.299,1.327c-0.142,0.082-0.254,0.097-0.337,0.047
c-0.083-0.051-0.184-0.102-0.3-0.154c-0.115-0.052-0.267-0.074-0.454-0.065c-0.187,0.009-0.448,0.11-0.783,0.303
c-0.296,0.171-0.543,0.378-0.744,0.623c-0.2,0.245-0.299,0.514-0.299,0.811c0,0.219,0.031,0.368,0.096,0.45
c0.065,0.082,0.193,0.102,0.386,0.06c0.194-0.041,0.465-0.123,0.812-0.245c0.348-0.121,0.805-0.276,1.372-0.465
c1.171-0.379,2.024-0.262,2.559,0.351c0.534,0.614,0.801,1.515,0.801,2.704c0,0.674-0.109,1.367-0.328,2.078
c-0.219,0.711-0.541,1.413-0.966,2.104c-0.424,0.691-0.939,1.341-1.545,1.948c-0.606,0.607-1.295,1.134-2.066,1.58
c-0.773,0.446-1.452,0.704-2.038,0.774c-0.586,0.071-1.079,0.014-1.478-0.172c-0.399-0.187-0.706-0.465-0.917-0.838
c-0.213-0.373-0.332-0.79-0.358-1.25c-0.012-0.211,0.036-0.427,0.146-0.649c0.109-0.221,0.235-0.374,0.376-0.455l2.396-1.383
c0.141-0.081,0.245-0.086,0.309-0.014c0.064,0.072,0.147,0.143,0.251,0.212c0.103,0.07,0.251,0.103,0.443,0.101
c0.194-0.003,0.484-0.116,0.871-0.339c0.386-0.223,0.72-0.495,1.003-0.817C272.775,98.69,272.917,98.38,272.917,98.082z"/>
<path style="fill:#455A64;" d="M281.629,90.495c0,0.218-0.052,0.437-0.155,0.655c-0.104,0.218-0.225,0.368-0.367,0.449
l-2.434,1.405c-0.142,0.082-0.265,0.074-0.367-0.025c-0.104-0.099-0.154-0.258-0.154-0.477V79.685
c0-0.218,0.05-0.436,0.154-0.654c0.103-0.218,0.225-0.368,0.367-0.45l2.434-1.405c0.141-0.082,0.263-0.072,0.367,0.027
c0.103,0.099,0.155,0.258,0.155,0.476V90.495z M281.629,96.89c0,0.218-0.052,0.436-0.155,0.654
c-0.104,0.219-0.225,0.368-0.367,0.45l-2.434,1.405c-0.142,0.082-0.265,0.074-0.367-0.026c-0.104-0.099-0.154-0.258-0.154-0.476
v-3.004c0-0.218,0.05-0.435,0.154-0.654c0.103-0.218,0.225-0.368,0.367-0.45l2.434-1.405c0.141-0.082,0.263-0.073,0.367,0.026
c0.103,0.1,0.155,0.258,0.155,0.476V96.89z"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 58 KiB

BIN
resources/images/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -1,7 +1,11 @@
import './bootstrap';
import Alpine from 'alpinejs';
import.meta.glob([
'../images/**',
]);
window.Alpine = Alpine;
Alpine.start();

10
resources/js/main.js Normal file
View File

@ -0,0 +1,10 @@
/**
* @package: events-venues-task
* @author: Yevhen Odynets
* @date: 2024-07-25
* @time: 11:44
*/
import.meta.glob([
'../images/**',
]);

16
resources/scss/main.scss Normal file
View File

@ -0,0 +1,16 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
html,
body,
:root {
height: 100hv;
font-size: 16px;
}
body{
&::-webkit-scrollbar {
display: none;
}
}

View File

@ -32,16 +32,22 @@
</label>
</div>
<div class="flex items-center justify-end mt-4">
@if (Route::has('password.request'))
<a class="underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800" href="{{ route('password.request') }}">
{{ __('Forgot your password?') }}
</a>
@endif
<div class="flex items-center justify-between mt-4">
<a class="underline text-sm font-extrabold text-gray-600 dark:text-blue-900 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800" href="{{ route('register') }}">
{{ __('Register') }}
</a>
<x-primary-button class="ms-3">
{{ __('Log in') }}
</x-primary-button>
<div>
@if (Route::has('password.request'))
<a class="underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800" href="{{ route('password.request') }}">
{{ __('Forgot your password?') }}
</a>
@endif
<x-primary-button class="ms-3">
{{ __('Log in') }}
</x-primary-button>
</div>
</div>
</form>
</x-guest-layout>

View File

@ -1,3 +1 @@
<svg viewBox="0 0 316 316" xmlns="http://www.w3.org/2000/svg" {{ $attributes }}>
<path d="M305.8 81.125C305.77 80.995 305.69 80.885 305.65 80.755C305.56 80.525 305.49 80.285 305.37 80.075C305.29 79.935 305.17 79.815 305.07 79.685C304.94 79.515 304.83 79.325 304.68 79.175C304.55 79.045 304.39 78.955 304.25 78.845C304.09 78.715 303.95 78.575 303.77 78.475L251.32 48.275C249.97 47.495 248.31 47.495 246.96 48.275L194.51 78.475C194.33 78.575 194.19 78.725 194.03 78.845C193.89 78.955 193.73 79.045 193.6 79.175C193.45 79.325 193.34 79.515 193.21 79.685C193.11 79.815 192.99 79.935 192.91 80.075C192.79 80.285 192.71 80.525 192.63 80.755C192.58 80.875 192.51 80.995 192.48 81.125C192.38 81.495 192.33 81.875 192.33 82.265V139.625L148.62 164.795V52.575C148.62 52.185 148.57 51.805 148.47 51.435C148.44 51.305 148.36 51.195 148.32 51.065C148.23 50.835 148.16 50.595 148.04 50.385C147.96 50.245 147.84 50.125 147.74 49.995C147.61 49.825 147.5 49.635 147.35 49.485C147.22 49.355 147.06 49.265 146.92 49.155C146.76 49.025 146.62 48.885 146.44 48.785L93.99 18.585C92.64 17.805 90.98 17.805 89.63 18.585L37.18 48.785C37 48.885 36.86 49.035 36.7 49.155C36.56 49.265 36.4 49.355 36.27 49.485C36.12 49.635 36.01 49.825 35.88 49.995C35.78 50.125 35.66 50.245 35.58 50.385C35.46 50.595 35.38 50.835 35.3 51.065C35.25 51.185 35.18 51.305 35.15 51.435C35.05 51.805 35 52.185 35 52.575V232.235C35 233.795 35.84 235.245 37.19 236.025L142.1 296.425C142.33 296.555 142.58 296.635 142.82 296.725C142.93 296.765 143.04 296.835 143.16 296.865C143.53 296.965 143.9 297.015 144.28 297.015C144.66 297.015 145.03 296.965 145.4 296.865C145.5 296.835 145.59 296.775 145.69 296.745C145.95 296.655 146.21 296.565 146.45 296.435L251.36 236.035C252.72 235.255 253.55 233.815 253.55 232.245V174.885L303.81 145.945C305.17 145.165 306 143.725 306 142.155V82.265C305.95 81.875 305.89 81.495 305.8 81.125ZM144.2 227.205L100.57 202.515L146.39 176.135L196.66 147.195L240.33 172.335L208.29 190.625L144.2 227.205ZM244.75 114.995V164.795L226.39 154.225L201.03 139.625V89.825L219.39 100.395L244.75 114.995ZM249.12 57.105L292.81 82.265L249.12 107.425L205.43 82.265L249.12 57.105ZM114.49 184.425L96.13 194.995V85.305L121.49 70.705L139.85 60.135V169.815L114.49 184.425ZM91.76 27.425L135.45 52.585L91.76 77.745L48.07 52.585L91.76 27.425ZM43.67 60.135L62.03 70.705L87.39 85.305V202.545V202.555V202.565C87.39 202.735 87.44 202.895 87.46 203.055C87.49 203.265 87.49 203.485 87.55 203.695V203.705C87.6 203.875 87.69 204.035 87.76 204.195C87.84 204.375 87.89 204.575 87.99 204.745C87.99 204.745 87.99 204.755 88 204.755C88.09 204.905 88.22 205.035 88.33 205.175C88.45 205.335 88.55 205.495 88.69 205.635L88.7 205.645C88.82 205.765 88.98 205.855 89.12 205.965C89.28 206.085 89.42 206.225 89.59 206.325C89.6 206.325 89.6 206.325 89.61 206.335C89.62 206.335 89.62 206.345 89.63 206.345L139.87 234.775V285.065L43.67 229.705V60.135ZM244.75 229.705L148.58 285.075V234.775L219.8 194.115L244.75 179.875V229.705ZM297.2 139.625L253.49 164.795V114.995L278.85 100.395L297.21 89.825V139.625H297.2Z"/>
</svg>
<img src="{{Vite::asset('resources/images/tiny_logo.png')}}" alt="Logo">

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 72 B

View File

@ -0,0 +1,19 @@
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Page Not Found</title>
<style>
body {
margin: 0;
padding: 0;
width: 100%;
height: 100vh;
background: #fff url("{{ Vite::asset('resources/images/404.svg') }}") no-repeat center;
}
</style>
</head>
<body></body>
</html>

View File

@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
@dump($events)
</body>
</html>

File diff suppressed because one or more lines are too long

View File

@ -1,20 +1,39 @@
<?php
use App\Http\Controllers\ProfileController;
declare(strict_types = 1);
use App\Http\Controllers\{EventController, FallbackController, ProfileController, VenueController};
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
return view('welcome');
Route::middleware(['auth', 'verified'])->group(callback: function () {
Route::get('/', static function () {
//return \App\Facades\Image::getName();
return view('welcome');
});
Route::get('/dashboard', static function () {
return view('dashboard');
})->name('dashboard');
Route::resources([
'venues' => VenueController::class,
'events' => EventController::class,
]);
Route::fallback(FallbackController::class)->name('not_found_fallback');
});
Route::get('/dashboard', function () {
return view('dashboard');
})->middleware(['auth', 'verified'])->name('dashboard');
Route::middleware('auth')->group(function () {
Route::get('/profile', [ProfileController::class, 'edit'])->name('profile.edit');
Route::patch('/profile', [ProfileController::class, 'update'])->name('profile.update');
Route::delete('/profile', [ProfileController::class, 'destroy'])->name('profile.destroy');
Route::get('/profile', [ProfileController::class, 'edit'])->name(
'profile.edit'
);
Route::patch('/profile', [ProfileController::class, 'update'])->name(
'profile.update'
);
Route::delete('/profile', [ProfileController::class, 'destroy'])->name(
'profile.destroy'
);
});
require __DIR__.'/auth.php';

2
storage/debugbar/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*
!.gitignore

View File

@ -12,7 +12,7 @@ export default {
theme: {
extend: {
fontFamily: {
sans: ['Figtree', ...defaultTheme.fontFamily.sans],
sans: ['-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'Noto Sans', 'sans-serif', "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", ...defaultTheme.fontFamily.sans],
},
},
},

View File

@ -6,7 +6,9 @@ export default defineConfig({
laravel({
input: [
'resources/css/app.css',
'resources/scss/main.scss',
'resources/js/app.js',
'resources/js/main.js',
],
refresh: true,
}),