merge commit
|
|
@ -8,11 +8,35 @@ if (!function_exists('money')) {
|
|||
* @param \App\Models\Currency $currency
|
||||
* @return string
|
||||
*/
|
||||
function money($amount, \App\Models\Currency $currency)
|
||||
function money($amount, \App\Models\Currency $currency = null)
|
||||
{
|
||||
if(!$currency){
|
||||
return number_format($amount,0,'.',',');
|
||||
}
|
||||
return $currency->symbol_left . number_format($amount, $currency->decimal_place, $currency->decimal_point,
|
||||
$currency->thousand_point) . $currency->symbol_right;
|
||||
}
|
||||
}
|
||||
if(!function_exists('main_categories')){
|
||||
|
||||
/**
|
||||
* return main categories
|
||||
* @return mixed
|
||||
*/
|
||||
function main_categories(){
|
||||
return \App\Models\Category::main()->pluck(trans('Category.category_title'),'id');
|
||||
}
|
||||
}
|
||||
|
||||
if(! function_exists('sub_categories')){
|
||||
/**
|
||||
* return sub categoreies
|
||||
*/
|
||||
|
||||
function sub_categories(){
|
||||
return \App\Models\Category::sub()
|
||||
->select(trans('Category.category_title'),'id','parent_id')
|
||||
->get();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -81,3 +81,27 @@ HTML::macro('sortable_link',
|
|||
Blade::directive('money', function ($expression) {
|
||||
return "<?php echo number_format($expression, 2); ?>";
|
||||
});
|
||||
|
||||
Form::macro('subSelect', function($name, $list = array(), $selected = null, $options = array())
|
||||
{
|
||||
$selected = $this->getValueAttribute($name, $selected);
|
||||
$options['id'] = $this->getIdAttribute($name, $options);
|
||||
|
||||
if ( ! isset($options['name'])) $options['name'] = $name;
|
||||
|
||||
$html = array('<option>Select sub category</option>');
|
||||
//dd($list);
|
||||
foreach ($list as $list_el)
|
||||
{
|
||||
$selectedAttribute = $this->getSelectedValue($list_el['id'], $selected);
|
||||
// dd($selectedAttribute);
|
||||
$option_attr = array('value' => e($list_el['id']), 'selected' => $selectedAttribute, 'parent' => $list_el['parent_id']);
|
||||
$html[] = '<option'.$this->html->attributes($option_attr).'>'.e($list_el[trans('Category.category_title')]).'</option>';
|
||||
}
|
||||
|
||||
$options = $this->html->attributes($options);
|
||||
|
||||
$list = implode('', $html);
|
||||
|
||||
return "<select{$options}>{$list}</select>";
|
||||
});
|
||||
|
|
@ -33,8 +33,19 @@ class CategoryCrudController extends CrudController
|
|||
*/
|
||||
|
||||
// TODO: remove setFromDb() and manually define Fields and Columns
|
||||
$this->crud->setFromDb();
|
||||
|
||||
//$this->crud->setFromDb();
|
||||
$this->crud->addColumns([
|
||||
['name'=>'id','type'=>'text','label'=>'Id'],
|
||||
['name'=>'title_tm','type'=>'text','label'=>'Title tm'],
|
||||
['name'=>'title_ru','type'=>'text','label'=>'Title ru'],
|
||||
['name'=>'parent_id','type'=>'text','label'=>'Parent'],
|
||||
]);
|
||||
$this->crud->addFields([
|
||||
['name'=>'title_tm','type'=>'text','label'=>'Title tm'],
|
||||
['name'=>'title_ru','type'=>'text','label'=>'Title ru'],
|
||||
]);
|
||||
$this->crud->enableReorder('title_tm', 2);
|
||||
$this->crud->allowAccess('reorder');
|
||||
// add asterisk for fields that are required in CategoryRequest
|
||||
$this->crud->setRequiredFields(StoreRequest::class, 'create');
|
||||
$this->crud->setRequiredFields(UpdateRequest::class, 'edit');
|
||||
|
|
|
|||
|
|
@ -22,7 +22,9 @@ class EventAccessCodesController extends MyBaseController
|
|||
*/
|
||||
public function show($event_id)
|
||||
{
|
||||
$event = Event::scope()->findOrFail($event_id);
|
||||
$event = Auth::user()->is_admin ?
|
||||
Event::findOrFail($event_id) :
|
||||
Event::scope()->findOrFail($event_id);
|
||||
return view('ManageEvent.AccessCodes', [
|
||||
'event' => $event,
|
||||
]);
|
||||
|
|
@ -34,8 +36,12 @@ class EventAccessCodesController extends MyBaseController
|
|||
*/
|
||||
public function showCreate($event_id)
|
||||
{
|
||||
$event = Auth::user()->is_admin ?
|
||||
Event::find($event_id) :
|
||||
Event::scope()->find($event_id);
|
||||
|
||||
return view('ManageEvent.Modals.CreateAccessCode', [
|
||||
'event' => Event::scope()->find($event_id),
|
||||
'event' => $event,
|
||||
]);
|
||||
}
|
||||
|
||||
|
|
@ -92,7 +98,9 @@ class EventAccessCodesController extends MyBaseController
|
|||
public function postDelete($event_id, $access_code_id)
|
||||
{
|
||||
/** @var Event $event */
|
||||
$event = Event::scope()->findOrFail($event_id);
|
||||
$event = Auth::user()->is_admin ?
|
||||
Event::findOrFail($event_id) :
|
||||
Event::scope()->findOrFail($event_id);
|
||||
|
||||
if ($event->hasAccessCode($access_code_id)) {
|
||||
/** @var EventAccessCodes $accessCode */
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ class EventViewController extends Controller
|
|||
}
|
||||
}
|
||||
|
||||
return view('Public.ViewEvent.EventPage', $data);
|
||||
return view('Bilettm.ViewEvent.EventPage', $data);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -25,14 +25,16 @@ class ManageAccountController extends MyBaseController
|
|||
* @param Request $request
|
||||
* @return mixed
|
||||
*/
|
||||
public function showEditAccount(Request $request)
|
||||
public function showEditAccount(Request $request,$account_id = null)
|
||||
{
|
||||
if(empty($account_id))
|
||||
$account_id = Auth::user()->account_id;
|
||||
$data = [
|
||||
'account' => Account::find(Auth::user()->account_id),
|
||||
'account' => Account::find($account_id),
|
||||
'timezones' => Timezone::pluck('location', 'id'),
|
||||
'currencies' => Currency::pluck('title', 'id'),
|
||||
'payment_gateways' => PaymentGateway::pluck('provider_name', 'id'),
|
||||
'account_payment_gateways' => AccountPaymentGateway::scope()->get(),
|
||||
// 'account_payment_gateways' => AccountPaymentGateway::scope()->get(),
|
||||
'version_info' => $this->getVersionInfo(),
|
||||
];
|
||||
|
||||
|
|
|
|||
|
|
@ -34,7 +34,8 @@ class MyBaseController extends Controller
|
|||
/*
|
||||
* Share the organizers across all views
|
||||
*/
|
||||
View::share('organisers', Organiser::scope()->get());
|
||||
$organizers = Auth::user()->is_admin ? Organiser::all():Organiser::scope()->get();
|
||||
View::share('organisers', $organizers);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ class PublicController extends Controller
|
|||
->take(10)
|
||||
->get();
|
||||
$this->data['events'] = $events;
|
||||
return view('Public.HomePage', $this->data);
|
||||
return view('Bilettm.Public.HomePage', $this->data);
|
||||
}
|
||||
|
||||
public function showCategoryEvents($category_id){
|
||||
|
|
|
|||
|
|
@ -22,8 +22,8 @@ class CheckIfAdmin
|
|||
*/
|
||||
private function checkIfUserIsAdmin($user)
|
||||
{
|
||||
// return ($user->is_admin == 1);
|
||||
return true;
|
||||
return ($user->is_admin == 1);
|
||||
// return true;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ namespace app\Http\Middleware;
|
|||
|
||||
use App\Models\Organiser;
|
||||
use Closure;
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
|
||||
class FirstRunMiddleware
|
||||
{
|
||||
|
|
@ -21,6 +22,9 @@ class FirstRunMiddleware
|
|||
* If there are no organisers then redirect the user to create one
|
||||
* else - if there's only one organiser bring the user straight there.
|
||||
*/
|
||||
if(Auth::user()->is_admin)
|
||||
return $next($request);
|
||||
|
||||
if (Organiser::scope()->count() === 0 && !($request->route()->getName() == 'showCreateOrganiser') && !($request->route()->getName() == 'postCreateOrganiser')) {
|
||||
return redirect(route('showCreateOrganiser', [
|
||||
'first_run' => '1',
|
||||
|
|
|
|||
|
|
@ -9,8 +9,7 @@
|
|||
namespace App\Models;
|
||||
|
||||
|
||||
class Category extends \Illuminate\Database\Eloquent\Model
|
||||
{
|
||||
class Category extends \Illuminate\Database\Eloquent\Model{
|
||||
use \Backpack\CRUD\CrudTrait;
|
||||
/**
|
||||
* Indicates whether the model should be timestamped.
|
||||
|
|
@ -30,14 +29,24 @@ class Category extends \Illuminate\Database\Eloquent\Model
|
|||
* @var bool $softDelete
|
||||
*/
|
||||
protected $softDelete = false;
|
||||
|
||||
protected $fillable = ['title','lft','rgt','parent_id','depth'];
|
||||
/**
|
||||
* The event associated with the currency.
|
||||
* The events associated with the category.
|
||||
*
|
||||
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
||||
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
||||
*/
|
||||
public function event()
|
||||
{
|
||||
return $this->belongsTo(\App\Models\Event::class);
|
||||
public function events(){
|
||||
return $this->hasMany(\App\Models\Event::class);
|
||||
}
|
||||
|
||||
public function scopeMain($query){
|
||||
return $query->where('depth',1);
|
||||
}
|
||||
public function scopeSub($query){
|
||||
return $query->where('depth',2);
|
||||
}
|
||||
|
||||
public function getChildren($parent_id){
|
||||
return $this->where('parent_id',$parent_id);
|
||||
}
|
||||
}
|
||||
|
|
@ -167,6 +167,30 @@ class Event extends MyBaseModel
|
|||
return $this->belongsTo(\App\Models\Organiser::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Tags associated with the event
|
||||
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
||||
*/
|
||||
public function tags(){
|
||||
return $this->belongsToMany(\App\Models\Tag::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Category associated with the event
|
||||
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
||||
*/
|
||||
public function mainCategory(){
|
||||
return $this->belongsTo(Category::class,'category_id');
|
||||
}
|
||||
|
||||
/**
|
||||
* Sub category associated with the event
|
||||
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
||||
*/
|
||||
public function subCategory(){
|
||||
return $this->belongsTo(Category::class,'sub_category_id');
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the embed url.
|
||||
*
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 146 KiB |
|
Before Width: | Height: | Size: 263 KiB |
|
Before Width: | Height: | Size: 183 KiB |
|
Before Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 24 KiB |
|
After Width: | Height: | Size: 99 KiB |
|
After Width: | Height: | Size: 558 KiB |
|
After Width: | Height: | Size: 496 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 546 KiB |
|
|
@ -0,0 +1,15 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1920" height="132" viewBox="0 0 1920 132">
|
||||
<defs>
|
||||
<linearGradient id="linear-gradient" x1="1" y1="0" x2="0" gradientUnits="objectBoundingBox">
|
||||
<stop offset="0" stop-color="#99302c"/>
|
||||
<stop offset="0.105" stop-color="#b0352e"/>
|
||||
<stop offset="0.23" stop-color="#bd3831"/>
|
||||
<stop offset="0.353" stop-color="#ee4437"/>
|
||||
<stop offset="0.486" stop-color="#be3b36"/>
|
||||
<stop offset="0.653" stop-color="#ce3b31"/>
|
||||
<stop offset="0.795" stop-color="#ce3b34"/>
|
||||
<stop offset="1" stop-color="#9a332e"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<rect id="Menu_BG" data-name="Menu BG" width="1920" height="132" fill="url(#linear-gradient)"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 767 B |
|
After Width: | Height: | Size: 936 B |
|
After Width: | Height: | Size: 5.9 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
|
@ -0,0 +1,17 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="46" height="46" viewBox="0 0 46 46">
|
||||
<defs>
|
||||
<filter id="Rectangle_829" x="0" y="0" width="46" height="46" filterUnits="userSpaceOnUse">
|
||||
<feOffset input="SourceAlpha"/>
|
||||
<feGaussianBlur stdDeviation="1" result="blur"/>
|
||||
<feFlood flood-color="#fff" flood-opacity="0.502"/>
|
||||
<feComposite operator="in" in2="blur"/>
|
||||
<feComposite in="SourceGraphic"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g id="_2D" data-name="2D" transform="translate(-167 -932.6)">
|
||||
<g transform="matrix(1, 0, 0, 1, 167, 932.6)" filter="url(#Rectangle_829)">
|
||||
<rect id="Rectangle_829-2" data-name="Rectangle 829" width="40" height="40" rx="5" transform="translate(3 3)" fill="#d33d33"/>
|
||||
</g>
|
||||
<text id="_2D-2" data-name="2D" transform="translate(178 963.6)" fill="#fff" font-size="20" font-family="Roboto-Bold, Roboto" font-weight="700"><tspan x="0" y="0">2D</tspan></text>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 979 B |
|
|
@ -0,0 +1,17 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="86" height="86" viewBox="0 0 86 86">
|
||||
<defs>
|
||||
<filter id="Rectangle_829" x="0" y="0" width="86" height="86" filterUnits="userSpaceOnUse">
|
||||
<feOffset input="SourceAlpha"/>
|
||||
<feGaussianBlur stdDeviation="1" result="blur"/>
|
||||
<feFlood flood-color="#fff" flood-opacity="0.502"/>
|
||||
<feComposite operator="in" in2="blur"/>
|
||||
<feComposite in="SourceGraphic"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g id="_3D" data-name="3D" transform="translate(-167 -932.6)">
|
||||
<g transform="matrix(1, 0, 0, 1, 167, 932.6)" filter="url(#Rectangle_829)">
|
||||
<rect id="Rectangle_829-2" data-name="Rectangle 829" width="80" height="80" rx="5" transform="translate(3 3)" fill="#d33d33"/>
|
||||
</g>
|
||||
<text id="_3D-2" data-name="3D" transform="translate(186 991.6)" fill="#fff" font-size="40" font-family="Roboto-Bold, Roboto" font-weight="700"><tspan x="0" y="0">3D</tspan></text>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 979 B |
|
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="101" height="41" viewBox="0 0 101 41">
|
||||
<path id="Subtraction_11" data-name="Subtraction 11" d="M-6967.373-1494.326h-90a5.006,5.006,0,0,1-5-5v-4.422l7.4-7.4a4.472,4.472,0,0,0,1.319-3.183,4.467,4.467,0,0,0-1.319-3.182l-7.4-7.4v-4.422a5.006,5.006,0,0,1,5-5h90a5.006,5.006,0,0,1,5,5v4.422l-7.4,7.4a4.467,4.467,0,0,0-1.319,3.182,4.472,4.472,0,0,0,1.319,3.183l7.4,7.4v4.422A5.006,5.006,0,0,1-6967.373-1494.326Z" transform="translate(7062.873 1534.826)" fill="none" stroke="#43425d" stroke-miterlimit="10" stroke-width="1"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 574 B |
|
|
@ -0,0 +1,5 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
|
||||
<g id="Group_11" data-name="Group 11" transform="translate(0)">
|
||||
<path id="Path_2" data-name="Path 2" d="M10.79.794A10,10,0,0,0,8.778,1,9.9,9.9,0,0,0,6.9,1.581,10.06,10.06,0,0,0,1.581,6.906,9.911,9.911,0,0,0,1,8.781a10.014,10.014,0,0,0-.2,2.013A10.222,10.222,0,0,0,1.906,15.37,10.053,10.053,0,0,0,7.139,20.1a9.962,9.962,0,0,0,7.539-.1A10.066,10.066,0,0,0,20,14.682a9.9,9.9,0,0,0,.584-1.875,10.024,10.024,0,0,0,0-4.026A9.9,9.9,0,0,0,20,6.906a10.066,10.066,0,0,0-5.325-5.325A9.906,9.906,0,0,0,10.79.794Zm0,1.534a8.481,8.481,0,0,1,2,.248c-.191.055.113.778-.084.809a8.115,8.115,0,0,1-1.3.1l.045.006a8.7,8.7,0,0,0-.976-.023,4.652,4.652,0,0,0-.817.09,1.364,1.364,0,0,0-.886.478c-.453.543-.659.976-.829,1.085-.141.09-.216.09-.533.119a4.256,4.256,0,0,0-1.4.341l.074-.029a7.157,7.157,0,0,0-1.305-.715A8.424,8.424,0,0,1,10.79,2.328Zm5.666,2.186a8.522,8.522,0,0,1,1.272,1.441,8.39,8.39,0,0,1,.921,1.705l-.06-.018c.054-.173-.033.031-.2.2s-.414.373-.652.562c-.476.378-.937.7-.937.7a.766.766,0,0,0-.062.047q-.029.025-.056.053a.942.942,0,0,0-.095.122q-.02.032-.038.066t-.032.071q-.013.036-.023.074t-.017.075q-.006.038-.009.077t0,.077q0,.038.006.077t.015.075q.009.037.021.074l0,.012.635,1.737-1.26,1.432q-.026.029-.048.06t-.042.065a.766.766,0,0,0-.036.068q-.015.035-.027.072t-.023.074s0,0,0,0l-.221,1L13.651,16.5l-.545-.748L13.1,14.473q0-.038,0-.077a.769.769,0,0,0-.012-.077q-.008-.037-.02-.074a.781.781,0,0,0-.1-.207q-.022-.031-.047-.06a.764.764,0,0,0-.053-.057q-.027-.026-.057-.05a.684.684,0,0,0-.131-.083q-.034-.018-.071-.032t-.072-.024q-.037-.01-.075-.017a.77.77,0,0,0-.077-.009q-.038,0-.077,0t-.069.006l-1.219.153-.233-1.755q0-.038-.014-.075t-.023-.074a.765.765,0,0,0-.029-.072l-.009-.018-.761-1.55c.143-.186.224-.3.488-.63.419-.521.993-1.148,1.021-1.17s.039-.033.057-.051l.023-.023c-.144.153.037-.009.3-.074a8.689,8.689,0,0,1,.948-.165c.679-.086,1.317-.119,1.317-.119a.769.769,0,0,0,.077-.008q.038-.006.075-.015t.074-.023q.036-.013.071-.03a.863.863,0,0,0,.191-.131q.028-.026.053-.054t.048-.06a.809.809,0,0,0,.105-.206q.009-.029.017-.059l.427-1.761ZM3.987,10.134c.039.076.083.146.1.188a6.988,6.988,0,0,1-.1,1.334A1.28,1.28,0,0,0,4.3,12.831a2.028,2.028,0,0,0,.7.449,2.386,2.386,0,0,0,.539.164c.059.084.086.119.171.255a3.658,3.658,0,0,1,.186.341c.043.09.035.178.035.006a1.828,1.828,0,0,0,.1.59c.052.185.118.381.182.562.048.138.055.146.1.255-.038.042-.084.1-.084.1a3.256,3.256,0,0,0-1.4.915,1.484,1.484,0,0,0-.093.231,8.418,8.418,0,0,1-2.338-4.926c.126-.146.772-.538,1.009-.831.21-.26.384-.533.584-.807Z" transform="translate(-0.792 -0.794)" fill="#fff"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 1.0 KiB |
|
|
@ -0,0 +1,51 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" width="20px" height="20px" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 31.059 31.059" style="enable-background:new 0 0 31.059 31.059;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#ffffff;" d="M15.529,31.059C6.966,31.059,0,24.092,0,15.529C0,6.966,6.966,0,15.529,0
|
||||
c8.563,0,15.529,6.966,15.529,15.529C31.059,24.092,24.092,31.059,15.529,31.059z M15.529,1.774
|
||||
c-7.585,0-13.755,6.171-13.755,13.755s6.17,13.754,13.755,13.754c7.584,0,13.754-6.17,13.754-13.754S23.113,1.774,15.529,1.774z"
|
||||
/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#ffffff;" d="M21.652,16.416H9.406c-0.49,0-0.888-0.396-0.888-0.887c0-0.49,0.397-0.888,0.888-0.888h12.246
|
||||
c0.49,0,0.887,0.398,0.887,0.888C22.539,16.02,22.143,16.416,21.652,16.416z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#ffffff;" d="M15.529,22.539c-0.49,0-0.888-0.397-0.888-0.887V9.406c0-0.49,0.398-0.888,0.888-0.888
|
||||
c0.49,0,0.887,0.398,0.887,0.888v12.246C16.416,22.143,16.02,22.539,15.529,22.539z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
|
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="40" viewBox="0 0 100 40">
|
||||
<path id="Subtraction_1" data-name="Subtraction 1" d="M-6967.373-1494.326h-90a5.006,5.006,0,0,1-5-5v-4.422l7.4-7.4a4.472,4.472,0,0,0,1.319-3.183,4.467,4.467,0,0,0-1.319-3.182l-7.4-7.4v-4.422a5.006,5.006,0,0,1,5-5h90a5.006,5.006,0,0,1,5,5v4.422l-7.4,7.4a4.467,4.467,0,0,0-1.319,3.182,4.472,4.472,0,0,0,1.319,3.183l7.4,7.4v4.422A5.006,5.006,0,0,1-6967.373-1494.326Z" transform="translate(7062.373 1534.326)" fill="#d33d33"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 518 B |
|
After Width: | Height: | Size: 2.4 KiB |
|
|
@ -0,0 +1,18 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="37" height="37" viewBox="0 0 37 37">
|
||||
<defs>
|
||||
<filter id="Oval_BG" x="0" y="0" width="37" height="37" filterUnits="userSpaceOnUse">
|
||||
<feOffset dy="2" input="SourceAlpha"/>
|
||||
<feGaussianBlur stdDeviation="2" result="blur"/>
|
||||
<feFlood flood-opacity="0.2"/>
|
||||
<feComposite operator="in" in2="blur"/>
|
||||
<feComposite in="SourceGraphic"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g id="Search_Button_2" data-name="Search Button 2" transform="translate(6 4)">
|
||||
<g transform="matrix(1, 0, 0, 1, -6, -4)" filter="url(#Oval_BG)">
|
||||
<circle id="Oval_BG-2" data-name="Oval BG" cx="12.5" cy="12.5" r="12.5" transform="translate(6 4)" fill="#d33d33"/>
|
||||
</g>
|
||||
<path id="Intersection_1" data-name="Intersection 1" d="M.293,2.062a1,1,0,0,1,0-1.415L.648.293a1,1,0,0,1,1.414,0L5.519,3.749A12.594,12.594,0,0,1,3.75,5.518Z" transform="translate(16.658 16.658)" fill="#fff"/>
|
||||
<ellipse id="Ellipse_37" data-name="Ellipse 37" cx="6.663" cy="6.663" rx="6.663" ry="6.663" transform="translate(6.201 6.2)" fill="none" stroke="#fff" stroke-width="2"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
|
|
@ -0,0 +1,4 @@
|
|||
<svg class="Shape" viewBox="0 0 30.504 33.893">
|
||||
<path id="Shape" d="M 25.41962051391602 23.95637512207031 C 24.13169288635254 23.95637512207031 22.97933578491211 24.46681022644043 22.09812164306641 25.26648902893066 L 10.01532936096191 18.20548248291016 C 10.10006237030029 17.81414985656738 10.16784763336182 17.42281913757324 10.16784763336182 17.01446914672852 C 10.16784763336182 16.60612297058105 10.10006237030029 16.21479225158691 10.01532936096191 15.82345771789551 L 21.96255111694336 8.830510139465332 C 22.87765884399414 9.681234359741211 24.08085250854492 10.20868301391602 25.41962051391602 10.20868301391602 C 28.23272323608398 10.20868301391602 30.50354385375977 7.9287428855896 30.50354385375977 5.104341506958008 C 30.50354385375977 2.2799391746521 28.23272323608398 0 25.41962051391602 0 C 22.60651397705078 0 20.33569526672363 2.2799391746521 20.33569526672363 5.104341506958008 C 20.33569526672363 5.512688636779785 20.40348052978516 5.904021739959717 20.48821449279785 6.29535436630249 L 8.54099178314209 13.28830146789551 C 7.625885963439941 12.43757820129395 6.422690391540527 11.91012954711914 5.083923816680908 11.91012954711914 C 2.270819425582886 11.91012954711914 0 14.19006824493408 0 17.01446914672852 C 0 19.8388729095459 2.270819425582886 22.11881256103516 5.083923816680908 22.11881256103516 C 6.422690391540527 22.11881256103516 7.625885963439941 21.59136390686035 8.54099178314209 20.74064064025879 L 20.60683822631836 27.81865882873535 C 20.5221061706543 28.17596435546875 20.47126579284668 28.5502815246582 20.47126579284668 28.92460250854492 C 20.47126579284668 31.66392707824707 22.69124794006348 33.89282608032227 25.41962051391602 33.89282608032227 C 28.14799308776855 33.89282608032227 30.36797142028809 31.66392707824707 30.36797142028809 28.92460250854492 C 30.36797142028809 26.18527030944824 28.14799308776855 23.95637512207031 25.41962051391602 23.95637512207031 L 25.41962051391602 23.95637512207031 Z">
|
||||
</path>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
|
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 50 50">
|
||||
<path id="Shape" d="M25,50A25,25,0,0,1,7.322,7.322,25,25,0,1,1,42.677,42.678,24.838,24.838,0,0,1,25,50ZM13.779,33.624a.119.119,0,0,0-.064.219A13.91,13.91,0,0,0,35.128,22.124c0-.164,0-.34-.011-.568a9.922,9.922,0,0,0,2.4-2.5.119.119,0,0,0-.008-.142.121.121,0,0,0-.091-.043.118.118,0,0,0-.048.01,9.605,9.605,0,0,1-2.238.678A4.945,4.945,0,0,0,36.875,17.1a.122.122,0,0,0-.04-.128.119.119,0,0,0-.074-.026.121.121,0,0,0-.061.017,9.553,9.553,0,0,1-2.979,1.149A4.974,4.974,0,0,0,25.27,22.54a13.712,13.712,0,0,1-9.754-5.014.114.114,0,0,0-.088-.044h-.013a.123.123,0,0,0-.093.057,4.973,4.973,0,0,0,1.2,6.384,4.705,4.705,0,0,1-1.735-.56.112.112,0,0,0-.056-.015.116.116,0,0,0-.059.016.12.12,0,0,0-.06.1v.063A5.009,5.009,0,0,0,18.1,28.274a4.7,4.7,0,0,1-.754.061,4.855,4.855,0,0,1-.9-.084l-.023,0a.117.117,0,0,0-.112.154,4.953,4.953,0,0,0,4.311,3.434,9.564,9.564,0,0,1-5.691,1.856,9.691,9.691,0,0,1-1.143-.068h-.013Z" fill="#fff"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1009 B |
|
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 50 50">
|
||||
<path id="Shape" d="M25,50A25,25,0,0,1,7.322,7.322,25,25,0,1,1,42.677,42.678,24.838,24.838,0,0,1,25,50ZM13.779,33.624a.119.119,0,0,0-.064.219A13.91,13.91,0,0,0,35.128,22.124c0-.164,0-.34-.011-.568a9.922,9.922,0,0,0,2.4-2.5.119.119,0,0,0-.008-.142.121.121,0,0,0-.091-.043.118.118,0,0,0-.048.01,9.605,9.605,0,0,1-2.238.678A4.945,4.945,0,0,0,36.875,17.1a.122.122,0,0,0-.04-.128.119.119,0,0,0-.074-.026.121.121,0,0,0-.061.017,9.553,9.553,0,0,1-2.979,1.149A4.974,4.974,0,0,0,25.27,22.54a13.712,13.712,0,0,1-9.754-5.014.114.114,0,0,0-.088-.044h-.013a.123.123,0,0,0-.093.057,4.973,4.973,0,0,0,1.2,6.384,4.705,4.705,0,0,1-1.735-.56.112.112,0,0,0-.056-.015.116.116,0,0,0-.059.016.12.12,0,0,0-.06.1v.063A5.009,5.009,0,0,0,18.1,28.274a4.7,4.7,0,0,1-.754.061,4.855,4.855,0,0,1-.9-.084l-.023,0a.117.117,0,0,0-.112.154,4.953,4.953,0,0,0,4.311,3.434,9.564,9.564,0,0,1-5.691,1.856,9.691,9.691,0,0,1-1.143-.068h-.013Z" fill="#d43d34"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1012 B |
|
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 50 50">
|
||||
<path id="Shape" d="M25,50A25,25,0,0,1,7.322,7.322,25,25,0,1,1,42.677,42.677,24.837,24.837,0,0,1,25,50Zm-.438-30.92c-1.5,0-2.679,1.612-2.679,3.671A5.61,5.61,0,0,0,22.325,25L21.291,29.47l-.752,3.253A12.461,12.461,0,0,0,20.3,35.9a1.113,1.113,0,0,0,.93,1.084.985.985,0,0,0,.75-.457,11.752,11.752,0,0,0,1.358-2.972c.168-.621.968-3.865.976-3.9a3.968,3.968,0,0,0,3.395,1.768,6.707,6.707,0,0,0,5.422-2.774A11.535,11.535,0,0,0,35.2,21.7c0-3.993-3.289-8.123-8.793-8.123-6.214,0-9.928,4.5-9.928,8.86,0,2.649,1.064,4.674,2.846,5.417a.614.614,0,0,0,.237.052.472.472,0,0,0,.457-.406c.033-.127.089-.355.144-.582s.105-.428.137-.554a.7.7,0,0,0-.2-.791,4.166,4.166,0,0,1-.916-2.782,6.844,6.844,0,0,1,1.84-4.738,6.694,6.694,0,0,1,5-2.052c3.511,0,5.78,2.133,5.78,5.434,0,4.3-1.894,7.539-4.4,7.539a2.278,2.278,0,0,1-1.782-.814,2.182,2.182,0,0,1-.409-1.917c.151-.651.354-1.322.55-1.971a12.089,12.089,0,0,0,.675-3.06A1.886,1.886,0,0,0,24.561,19.08Z" fill="#fff"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
|
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 50 50">
|
||||
<path id="Shape" d="M25,50A25,25,0,0,1,7.322,7.322,25,25,0,1,1,42.677,42.677,24.837,24.837,0,0,1,25,50Zm-.438-30.92c-1.5,0-2.679,1.612-2.679,3.671A5.61,5.61,0,0,0,22.325,25L21.291,29.47l-.752,3.253A12.461,12.461,0,0,0,20.3,35.9a1.113,1.113,0,0,0,.93,1.084.985.985,0,0,0,.75-.457,11.752,11.752,0,0,0,1.358-2.972c.168-.621.968-3.865.976-3.9a3.968,3.968,0,0,0,3.395,1.768,6.707,6.707,0,0,0,5.422-2.774A11.535,11.535,0,0,0,35.2,21.7c0-3.993-3.289-8.123-8.793-8.123-6.214,0-9.928,4.5-9.928,8.86,0,2.649,1.064,4.674,2.846,5.417a.614.614,0,0,0,.237.052.472.472,0,0,0,.457-.406c.033-.127.089-.355.144-.582s.105-.428.137-.554a.7.7,0,0,0-.2-.791,4.166,4.166,0,0,1-.916-2.782,6.844,6.844,0,0,1,1.84-4.738,6.694,6.694,0,0,1,5-2.052c3.511,0,5.78,2.133,5.78,5.434,0,4.3-1.894,7.539-4.4,7.539a2.278,2.278,0,0,1-1.782-.814,2.182,2.182,0,0,1-.409-1.917c.151-.651.354-1.322.55-1.971a12.089,12.089,0,0,0,.675-3.06A1.886,1.886,0,0,0,24.561,19.08Z" fill="#d43d34"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
|
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 50 50">
|
||||
<path id="Shape" d="M25,50A25,25,0,0,1,7.322,7.322,25,25,0,1,1,42.677,42.677,24.837,24.837,0,0,1,25,50ZM19.292,21.382v3.869h2.371V36.92H25.5V25.251H29.35l.608-3.869H25.5V19.444c0-1.327.582-1.972,1.779-1.972h2.893V13.612h-4.11a3.916,3.916,0,0,0-3.495,1.531,6.8,6.8,0,0,0-.9,3.9v2.341Z" fill="#fff"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 392 B |
|
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 50 50">
|
||||
<path id="Shape" d="M25,50A25,25,0,0,1,7.322,7.322,25,25,0,1,1,42.677,42.677,24.837,24.837,0,0,1,25,50ZM19.292,21.382v3.869h2.371V36.92H25.5V25.251H29.35l.608-3.869H25.5V19.444c0-1.327.582-1.972,1.779-1.972h2.893V13.612h-4.11a3.916,3.916,0,0,0-3.495,1.531,6.8,6.8,0,0,0-.9,3.9v2.341Z" fill="#d43d34"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 395 B |
|
|
@ -0,0 +1,5 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 50 50">
|
||||
<g id="Social_media" data-name="Social media" transform="translate(-210)">
|
||||
<path id="Shape" d="M25,50A25,25,0,0,1,7.323,7.322,25,25,0,1,1,42.677,42.678,24.84,24.84,0,0,1,25,50Zm5.1-26.026c2.361,0,2.361,2.239,2.361,3.873v7.106H37V26.938c0-3.615-.66-6.96-5.447-6.96a4.8,4.8,0,0,0-4.3,2.361h-.06v-2H22.836V34.953h4.537V27.725C27.373,25.87,27.7,23.974,30.1,23.974Zm-14.65-3.632V34.953h4.541V20.342Zm2.271-7.264a2.633,2.633,0,1,0,2.632,2.633A2.636,2.636,0,0,0,17.718,13.078Z" transform="translate(210 0)" fill="#fff"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 618 B |
|
|
@ -0,0 +1,5 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 50 50">
|
||||
<g id="Social_media" data-name="Social media" transform="translate(-210)">
|
||||
<path id="Shape" d="M25,50A25,25,0,0,1,7.323,7.322,25,25,0,1,1,42.677,42.678,24.84,24.84,0,0,1,25,50Zm5.1-26.026c2.361,0,2.361,2.239,2.361,3.873v7.106H37V26.938c0-3.615-.66-6.96-5.447-6.96a4.8,4.8,0,0,0-4.3,2.361h-.06v-2H22.836V34.953h4.537V27.725C27.373,25.87,27.7,23.974,30.1,23.974Zm-14.65-3.632V34.953h4.541V20.342Zm2.271-7.264a2.633,2.633,0,1,0,2.632,2.633A2.636,2.636,0,0,0,17.718,13.078Z" transform="translate(210 0)" fill="#d43d34"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 621 B |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
|
@ -0,0 +1,10 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
|
||||
<g id="Group_59" data-name="Group 59" transform="translate(-1368 38)">
|
||||
<path id="Intersection_2" data-name="Intersection 2" d="M1.024,7.769Q1,7.525,1,7.275A5.777,5.777,0,0,1,7,1.751a5.777,5.777,0,0,1,6,5.523q0,.25-.024.5A9.955,9.955,0,0,1,7,9.752,9.954,9.954,0,0,1,1.024,7.769Z" transform="translate(1371 -27.751)" fill="#fff"/>
|
||||
<circle id="Ellipse_40" data-name="Ellipse 40" cx="3" cy="3" r="3" transform="translate(1375 -33)" fill="#fff"/>
|
||||
<g id="Ellipse_41" data-name="Ellipse 41" transform="translate(1368 -38)" fill="none" stroke="#fff" stroke-width="1">
|
||||
<circle cx="10" cy="10" r="10" stroke="none"/>
|
||||
<circle cx="10" cy="10" r="9.5" fill="none"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 786 B |
|
After Width: | Height: | Size: 6.0 KiB |
|
After Width: | Height: | Size: 6.0 KiB |
|
|
@ -0,0 +1,37 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="260" height="62" viewBox="0 0 260 62">
|
||||
<defs>
|
||||
<clipPath id="clip-path">
|
||||
<rect width="260" height="62" fill="none"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="Bilettm_Logo" data-name="Bilettm Logo" clip-path="url(#clip-path)">
|
||||
<g id="_.com" data-name=".com" transform="translate(201.5 33)">
|
||||
<g id="Group_29" data-name="Group 29">
|
||||
<path id="Path_386" data-name="Path 386" d="M375.214,168.868a1.661,1.661,0,0,0-2.084,0,1.1,1.1,0,0,0-.429.919,1.219,1.219,0,0,0,.429.981,1.6,1.6,0,0,0,1.042.429,1.436,1.436,0,0,0,1.042-.429,1.219,1.219,0,0,0,.429-.981A1.3,1.3,0,0,0,375.214,168.868Z" transform="translate(-372.7 -156.503)" fill="#fff" stroke="#fff" stroke-width="1"/>
|
||||
<path id="Path_387" data-name="Path 387" d="M388.6,162.805a9.586,9.586,0,0,1-2.207.188,4.384,4.384,0,0,1-3.74-1.695,7.024,7.024,0,0,1-1.287-4.393,6.305,6.305,0,0,1,1.41-4.205,4.8,4.8,0,0,1,3.8-1.632,7.141,7.141,0,0,1,2.207.251c.552.188,1.226.439,1.962.753l.613-1.318a7.876,7.876,0,0,0-2.268-.879,10.117,10.117,0,0,0-2.391-.377,7.447,7.447,0,0,0-3.8.941,6.583,6.583,0,0,0-2.575,2.636,7.838,7.838,0,0,0-.92,3.828,8.911,8.911,0,0,0,.858,3.954,6.428,6.428,0,0,0,2.452,2.7,7.29,7.29,0,0,0,3.8.941,13.671,13.671,0,0,0,2.452-.314,7.216,7.216,0,0,0,2.268-.879l-.613-1.318C389.761,162.366,389.087,162.617,388.6,162.805Z" transform="translate(-374.072 -149.5)" fill="#fff" stroke="#fff" stroke-width="1"/>
|
||||
<path id="Path_388" data-name="Path 388" d="M411.884,151.609a6.7,6.7,0,0,0-5.15-2.009,7.446,7.446,0,0,0-3.8.942,6.436,6.436,0,0,0-2.514,2.636,8.581,8.581,0,0,0-.92,3.829,8.818,8.818,0,0,0,.8,3.892,6.148,6.148,0,0,0,6.008,3.641,7.915,7.915,0,0,0,3.924-.941,6.582,6.582,0,0,0,2.575-2.636,8.886,8.886,0,0,0-.92-9.352Zm-1.533,9.792a4.8,4.8,0,0,1-3.8,1.632,4.384,4.384,0,0,1-3.74-1.695,7.025,7.025,0,0,1-1.287-4.394,6.307,6.307,0,0,1,1.41-4.205,4.8,4.8,0,0,1,3.8-1.632,4.384,4.384,0,0,1,3.74,1.695,7.025,7.025,0,0,1,1.287,4.394A6.775,6.775,0,0,1,410.351,161.4Z" transform="translate(-379.563 -149.539)" fill="#fff" stroke="#fff" stroke-width="1"/>
|
||||
<path id="Path_389" data-name="Path 389" d="M446,150.856a3.833,3.833,0,0,0-3.249-1.256,6.529,6.529,0,0,0-2.82.754,7.729,7.729,0,0,0-2.514,1.821,3.786,3.786,0,0,0-3.985-2.575,6.529,6.529,0,0,0-2.82.754,7.729,7.729,0,0,0-2.514,1.821l-.307-2.2H426.2v14.255h1.9V154.059a9.169,9.169,0,0,1,2.514-2.072,5.251,5.251,0,0,1,2.514-.816,2.144,2.144,0,0,1,2.023.942,5.15,5.15,0,0,1,.552,2.575v9.483h1.9V153.745a7.633,7.633,0,0,1,2.391-1.821,5.176,5.176,0,0,1,2.391-.754,2.144,2.144,0,0,1,2.023.942,5.151,5.151,0,0,1,.552,2.575v9.483h1.9v-9.86A5.253,5.253,0,0,0,446,150.856Z" transform="translate(-388.86 -149.539)" fill="#fff" stroke="#fff" stroke-width="1"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Bilettm" transform="translate(10 9)">
|
||||
<g id="Group_33" data-name="Group 33" transform="translate(0 0)">
|
||||
<g id="Group_31" data-name="Group 31" transform="translate(5.577)">
|
||||
<path id="Path_390" data-name="Path 390" d="M81.794,123.138,68,115.284l9-3.957c2.459-1.079,4.738.06,4.8,2.458Z" transform="translate(-68 -110.918)" fill="#fff"/>
|
||||
</g>
|
||||
<g id="Group_32" data-name="Group 32" transform="translate(0 6.644)">
|
||||
<path id="Path_391" data-name="Path 391" d="M91.565,140.693a3.506,3.506,0,0,1-1.739,3.075L63.918,158.895A3.479,3.479,0,0,1,58.7,155.82V125.566a3.506,3.506,0,0,1,1.739-3.075,3.32,3.32,0,0,1,3.478,0l14.213,8.3,11.695,6.826A3.506,3.506,0,0,1,91.565,140.693Z" transform="translate(-58.7 -122)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group_34" data-name="Group 34" transform="translate(41.863 5.418)">
|
||||
<path id="Path_392" data-name="Path 392" d="M149.63,141.282a12.721,12.721,0,0,1-1.439,6.108,10.042,10.042,0,0,1-4.138,4.134,12.886,12.886,0,0,1-6.3,1.481,9.053,9.053,0,0,1-2.939-.555,10.941,10.941,0,0,1-2.7-1.3.384.384,0,0,0-.54.123l-.6.8a.847.847,0,0,1-.72.37h-1.8a.675.675,0,0,1-.66-.679V121.045a.627.627,0,0,1,.6-.679l4.138-.37a.686.686,0,0,1,.72.679v10.057a10.047,10.047,0,0,1,4.618-1.172,12.885,12.885,0,0,1,6.3,1.481,9.563,9.563,0,0,1,4.078,4.134A12.539,12.539,0,0,1,149.63,141.282Zm-5.637,0a8.059,8.059,0,0,0-1.679-5.368,5.583,5.583,0,0,0-4.618-2.036,7.165,7.165,0,0,0-2.339.37,8.986,8.986,0,0,0-2.159,1.111v11.785a7.617,7.617,0,0,0,4.5,1.357,5.743,5.743,0,0,0,4.618-2.036A7.552,7.552,0,0,0,143.993,141.282Z" transform="translate(-127.8 -119.969)" fill="#fff"/>
|
||||
<path id="Path_393" data-name="Path 393" d="M174.09,123.526a2.909,2.909,0,0,1-.96,2.223,3.209,3.209,0,0,1-2.339.926,3.249,3.249,0,0,1-2.939-1.791c0-.062-.06-.123-.06-.185a3.191,3.191,0,0,1,3-4.2,3.309,3.309,0,0,1,2.339.926A2.659,2.659,0,0,1,174.09,123.526Zm-.48,7.41v21a.676.676,0,0,1-.66.679h-4.138a.676.676,0,0,1-.66-.679v-21a.676.676,0,0,1,.66-.679h4.138A.639.639,0,0,1,173.61,130.936Z" transform="translate(-143.744 -120.174)" fill="#fff"/>
|
||||
<path id="Path_394" data-name="Path 394" d="M187.357,120.6v31.173a.676.676,0,0,1-.66.679H182.56a.675.675,0,0,1-.66-.679V121.032a.627.627,0,0,1,.6-.679l4.138-.37A.579.579,0,0,1,187.357,120.6Z" transform="translate(-149.455 -119.956)" fill="#fff"/>
|
||||
<path id="Path_395" data-name="Path 395" d="M206.995,135.3c3.478,0,6.117,1.079,7.856,3.178a12,12,0,0,1,2.7,8.094v.839a.665.665,0,0,1-.66.659H201.537c-.18,0-.3.12-.24.3.6,3.657,3.059,5.516,7.5,5.516a11.339,11.339,0,0,0,3.358-.48,20.679,20.679,0,0,0,3-1.2.657.657,0,0,1,.9.36l1.139,2.518a.741.741,0,0,1-.24.839,16.227,16.227,0,0,1-8.216,2.218c-4.258,0-7.557-1.019-9.775-3.058a10.63,10.63,0,0,1-3.358-8.334,12.813,12.813,0,0,1,1.379-6,9.823,9.823,0,0,1,3.958-4.017A12.074,12.074,0,0,1,206.995,135.3Zm-.12,4.317a5.284,5.284,0,0,0-3.778,1.319,6.213,6.213,0,0,0-1.739,3.417.3.3,0,0,0,.3.36h10.315a.336.336,0,0,0,.3-.36,6.6,6.6,0,0,0-1.739-3.477A5.319,5.319,0,0,0,206.875,139.617Z" transform="translate(-154.939 -125.166)" fill="#fff"/>
|
||||
<path id="Path_396" data-name="Path 396" d="M244.416,132.749h3.658a.723.723,0,0,1,.6.433l1.079,2.6a.664.664,0,0,1-.6.929h-4.738a.162.162,0,0,0-.18.186v10.526a4.888,4.888,0,0,0,.84,2.91,3.02,3.02,0,0,0,2.579,1.115,6.853,6.853,0,0,0,1.859-.31.714.714,0,0,1,.84.372l1.02,2.663a.646.646,0,0,1-.36.867,7.916,7.916,0,0,1-1.439.5,8.3,8.3,0,0,1-2.339.372,9.07,9.07,0,0,1-6.177-1.92,6.96,6.96,0,0,1-2.219-5.573V137.022a.162.162,0,0,0-.18-.186h-2.4a.677.677,0,0,1-.66-.681v-2.6a.677.677,0,0,1,.66-.681h2.4a.162.162,0,0,0,.18-.186v-4.768a.72.72,0,0,1,.54-.681l4.138-.743a.672.672,0,0,1,.78.681v5.511C244.236,132.625,244.3,132.749,244.416,132.749Z" transform="translate(-170.95 -122.571)" fill="#fff"/>
|
||||
<path id="Path_397" data-name="Path 397" d="M271.076,132.749h3.6a.723.723,0,0,1,.6.433l1.08,2.6a.664.664,0,0,1-.6.929h-4.678a.262.262,0,0,0-.24.248v10.464a4.888,4.888,0,0,0,.84,2.91,3.02,3.02,0,0,0,2.579,1.115,6.854,6.854,0,0,0,1.859-.31.714.714,0,0,1,.84.372l1.02,2.663a.646.646,0,0,1-.36.867,7.916,7.916,0,0,1-1.439.5,8.3,8.3,0,0,1-2.339.372,9.069,9.069,0,0,1-6.177-1.92,6.96,6.96,0,0,1-2.219-5.573V137.083a.262.262,0,0,0-.24-.248H262.86a.677.677,0,0,1-.66-.681v-2.6a.677.677,0,0,1,.66-.681H265.2a.262.262,0,0,0,.24-.248v-4.706a.72.72,0,0,1,.54-.681l4.138-.743a.672.672,0,0,1,.78.681v5.449C270.836,132.625,270.956,132.749,271.076,132.749Z" transform="translate(-181.597 -122.571)" fill="#fff"/>
|
||||
<path id="Path_398" data-name="Path 398" d="M330.863,143.294v13.789a.665.665,0,0,1-.66.659h-4.138a.665.665,0,0,1-.66-.659v-13.01a5.669,5.669,0,0,0-.78-3.357,2.809,2.809,0,0,0-2.579-1.139,6.168,6.168,0,0,0-2.939.779,22.456,22.456,0,0,0-3.238,1.978.458.458,0,0,0-.12.3l.06.779V157.2a.665.665,0,0,1-.66.66h-4.138a.665.665,0,0,1-.66-.66v-13.01a5.669,5.669,0,0,0-.78-3.357,2.809,2.809,0,0,0-2.579-1.139c-1.679,0-3.838.959-6.417,2.938a.312.312,0,0,0-.12.24v14.389a.665.665,0,0,1-.66.66H295.66a.665.665,0,0,1-.66-.66V136.879a.665.665,0,0,1,.66-.66h2.519a.6.6,0,0,1,.6.42l.72,1.919a.219.219,0,0,0,.3.12,19.729,19.729,0,0,1,4.138-2.218,12.071,12.071,0,0,1,4.258-.9c3.059,0,5.218,1.019,6.357,3.058.06.12.18.12.3.06a21.834,21.834,0,0,1,4.2-2.278,11.813,11.813,0,0,1,4.258-.9c2.579,0,4.438.719,5.637,2.1C330.264,138.737,330.863,140.716,330.863,143.294Z" transform="translate(-194.726 -125.246)" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Line" d="M231.823,159.2H50.677a7.049,7.049,0,0,1-7.177-6.9V106.1a7.05,7.05,0,0,1,7.177-6.9H231.823A7.049,7.049,0,0,1,239,106.1V152.3A7.089,7.089,0,0,1,231.823,159.2Z" transform="translate(-42.5 -98.2)" fill="none" stroke="#fff" stroke-miterlimit="10" stroke-width="2"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.3 KiB |
|
Before Width: | Height: | Size: 407 KiB |
|
Before Width: | Height: | Size: 56 KiB |
|
Before Width: | Height: | Size: 369 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 720 KiB |
|
|
@ -1,44 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Слой_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 226.8 61.2" style="enable-background:new 0 0 226.8 61.2;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FFFFFF;}
|
||||
</style>
|
||||
<path class="st0" d="M25.9,17.5L9.1,7.4L20,2.3c3-1.4,5.8,0.1,5.8,3.1L25.9,17.5z"/>
|
||||
<path class="st0" d="M41.6,35.4c0,1.6-0.8,3.1-2.2,3.9l-31.8,19c-1.3,0.8-2.9,0.8-4.3,0C2,57.5,1.2,56,1.2,54.4V16.4
|
||||
c0-1.6,0.8-3.1,2.1-3.9c0.7-0.4,1.4-0.6,2.1-0.6c0.7,0,1.5,0.2,2.1,0.6l17.4,10.4l14.4,8.6C40.8,32.3,41.6,33.8,41.6,35.4"/>
|
||||
<path class="st0" d="M66.2,27.5c-1,0-2,0.2-2.9,0.5c-0.9,0.3-1.8,0.8-2.7,1.4v15.3c1.6,1.2,3.5,1.8,5.6,1.8c2.4,0,4.3-0.9,5.7-2.6
|
||||
c1.4-1.7,2.1-4,2.1-6.8c0-2.9-0.7-5.2-2.1-7C70.6,28.4,68.7,27.5,66.2,27.5z M66.1,52.2c-1.1,0-2.3-0.2-3.6-0.7
|
||||
c-1.2-0.4-2.3-1-3.3-1.6c-0.1-0.1-0.2-0.1-0.3-0.1c-0.2,0-0.3,0.1-0.4,0.2l-0.7,1c-0.2,0.3-0.5,0.4-0.9,0.4h-2.2
|
||||
c-0.4,0-0.8-0.4-0.8-0.9V11c0-0.5,0.3-0.8,0.7-0.9l5.1-0.5c0,0,0.1,0,0.1,0c0.5,0,0.8,0.4,0.8,0.9v12.9c1.9-1,3.9-1.5,5.7-1.5
|
||||
c2.9,0,5.5,0.6,7.7,1.9c2.2,1.2,3.9,3,5.1,5.3c1.2,2.3,1.8,5,1.8,8.1c0,3-0.6,5.6-1.8,7.9c-1.2,2.3-2.9,4.1-5.1,5.3
|
||||
C71.7,51.6,69.1,52.2,66.1,52.2z"/>
|
||||
<path class="st0" d="M86.9,17.5c-1.6,0-2.8-0.8-3.6-2.3c0-0.1-0.1-0.1-0.1-0.2c-0.5-1.7-0.1-3.1,0.9-4.2c0.7-0.8,1.7-1.1,2.7-1.1
|
||||
c1.1,0,2.1,0.4,2.8,1.1c0.8,0.8,1.2,1.7,1.2,2.7c0,1.1-0.4,2-1.2,2.8C88.9,17.1,88,17.5,86.9,17.5z M90.1,48.8H85
|
||||
c-0.4,0-0.8-0.4-0.8-0.8V22.8c0-0.5,0.4-0.8,0.8-0.8h5.1c0.4,0,0.8,0.4,0.8,0.8V48C90.9,48.5,90.5,48.8,90.1,48.8z"/>
|
||||
<path class="st0" d="M102.1,10.4V48c0,0.5-0.4,0.8-0.8,0.8h-5.1c-0.5,0-0.8-0.4-0.8-0.8V10.9c0-0.4,0.3-0.8,0.7-0.8l5.1-0.5
|
||||
C101.7,9.6,102.1,10,102.1,10.4"/>
|
||||
<path class="st0" d="M119,26.4c-1.9,0-3.5,0.6-4.7,1.8c-1.1,1.1-1.8,2.6-2.1,4.5c0,0.1,0,0.2,0.1,0.3c0.1,0.1,0.2,0.1,0.3,0.1h12.7
|
||||
c0.1,0,0.2,0,0.3-0.1c0.1-0.1,0.1-0.2,0.1-0.3c-0.4-2-1.1-3.5-2.1-4.6C122.3,27,120.8,26.4,119,26.4z M121.5,51.1
|
||||
c-2.6,0-4.9-0.3-6.9-1c-2-0.7-3.7-1.7-5-3c-1.4-1.3-2.4-3-3.1-4.8c-0.7-1.8-1-3.9-1-6.3c0-3,0.6-5.7,1.7-7.9c1.1-2.3,2.8-4,4.9-5.3
|
||||
c2.1-1.3,4.6-1.9,7.5-1.9c2.1,0,4,0.4,5.6,1.1c1.6,0.7,2.9,1.8,4,3.2c2.2,2.8,3.3,6.4,3.3,10.7v1.1c0,0.5-0.4,0.9-0.8,0.9h-18.7
|
||||
c-0.1,0-0.2,0-0.2,0.1c-0.1,0.1-0.1,0.2-0.1,0.3c0.7,4.8,3.8,7.3,9.1,7.3c1.5,0,2.9-0.2,4.1-0.6c1-0.4,2.2-0.9,3.6-1.6
|
||||
c0.1-0.1,0.2-0.1,0.3-0.1c0.3,0,0.6,0.2,0.7,0.5l1.4,3.3c0.2,0.4,0,0.9-0.3,1.1C128.5,50.1,125.1,51.1,121.5,51.1z"/>
|
||||
<path class="st0" d="M147,22.1h4.6c0.3,0,0.6,0.2,0.8,0.5l1.4,3.3c0.2,0.6-0.2,1.2-0.8,1.2h-6c-0.1,0-0.2,0.1-0.2,0.2v13.2
|
||||
c0,1.5,0.4,2.7,1.1,3.6c0.7,0.9,1.8,1.4,3.2,1.4c0.7,0,1.5-0.1,2.4-0.4c0.4-0.1,0.9,0.1,1,0.5l1.3,3.3c0.2,0.4,0,0.9-0.5,1.1
|
||||
c-0.5,0.2-1.1,0.4-1.8,0.6c-1.1,0.3-2.1,0.4-3,0.4c-3.3,0-6-0.8-7.8-2.4c-1.9-1.6-2.8-4-2.8-7V27.3c0-0.1-0.1-0.2-0.2-0.2h-3.1
|
||||
c-0.5,0-0.8-0.4-0.8-0.9V23c0-0.5,0.4-0.9,0.8-0.9h3.1c0.1,0,0.2-0.1,0.2-0.2v-6c0-0.4,0.3-0.8,0.7-0.8l5.2-1c0.5-0.1,1,0.3,1,0.8
|
||||
v6.9C146.8,22,146.9,22.1,147,22.1"/>
|
||||
<path class="st0" d="M167.2,22.1h4.6c0.3,0,0.6,0.2,0.8,0.5l1.4,3.3c0.2,0.6-0.2,1.2-0.8,1.2h-6c-0.2,0-0.3,0.1-0.3,0.3v13.1
|
||||
c0,1.5,0.4,2.7,1.1,3.6c0.7,0.9,1.8,1.4,3.2,1.4c0.7,0,1.5-0.1,2.4-0.4c0.4-0.1,0.9,0.1,1,0.5l1.3,3.3c0.2,0.4,0,0.9-0.5,1.1
|
||||
c-0.5,0.2-1.1,0.4-1.8,0.6c-1.1,0.3-2.1,0.4-3,0.4c-3.3,0-6-0.8-7.8-2.4c-1.9-1.6-2.8-4-2.8-7V27.4c0-0.2-0.1-0.3-0.3-0.3h-3
|
||||
c-0.5,0-0.8-0.4-0.8-0.9V23c0-0.5,0.4-0.9,0.8-0.9h3c0.2,0,0.3-0.1,0.3-0.3v-5.9c0-0.4,0.3-0.8,0.7-0.8l5.2-1c0.5-0.1,1,0.3,1,0.8
|
||||
v6.9C166.9,22,167.1,22.1,167.2,22.1"/>
|
||||
<path class="st0" d="M225.3,31.6v18.6c0,0.5-0.4,0.9-0.9,0.9h-5.3c-0.5,0-0.9-0.4-0.9-0.9V32.7c0-2-0.3-3.5-1-4.6
|
||||
c-0.6-1-1.7-1.5-3.3-1.5c-1.2,0-2.5,0.3-3.8,1c-1.3,0.7-2.6,1.5-4.1,2.6c-0.1,0.1-0.2,0.2-0.2,0.4l0.1,1v18.6c0,0.5-0.4,0.9-0.9,0.9
|
||||
h-5.3c-0.5,0-0.8-0.4-0.8-0.9V32.7c0-2-0.3-3.5-1-4.6c-0.6-1-1.7-1.5-3.3-1.5c-2.2,0-4.9,1.3-8.2,3.9c-0.1,0.1-0.2,0.2-0.2,0.3v19.4
|
||||
c0,0.5-0.4,0.9-0.9,0.9h-5.3c-0.5,0-0.9-0.4-0.9-0.9V22.7c0-0.5,0.4-0.9,0.9-0.9h3.2c0.4,0,0.7,0.2,0.8,0.6l0.9,2.6
|
||||
c0.1,0.2,0.2,0.2,0.4,0.1c1.7-1.2,3.4-2.2,5.3-3c2-0.8,3.8-1.2,5.5-1.2c4,0,6.7,1.4,8.2,4.2c0.1,0.1,0.2,0.2,0.3,0.1
|
||||
c1.7-1.3,3.5-2.3,5.4-3c2-0.8,3.8-1.2,5.5-1.2c3.3,0,5.7,0.9,7.3,2.8C224.6,25.6,225.3,28.2,225.3,31.6"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.2 KiB |
|
Before Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 267 KiB |
|
Before Width: | Height: | Size: 347 KiB |