TP1
continuous-integration/drone/push Build is failing Details

master
Augustin AFFOGNON 2 years ago
parent 22d3046f71
commit 62763bc294

@ -1,13 +1,13 @@
<?xml version = "1.0" encoding = "UTF-8" ?>
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:MAUI_APP"
x:Class="MAUI_APP.App">
xmlns:local="clr-namespace:BookApp"
x:Class="BookApp.App">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Resources/Styles/Colors.xaml" />
<ResourceDictionary Source="Resources/Styles/Styles.xaml" />
<ResourceDictionary Source="Resources/Styles/Styles.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>

@ -0,0 +1,15 @@
using ViewModel;
namespace BookApp;
public partial class App : Application
{
public App()
{
InitializeComponent();
MainPage = new AppShell();
Routing.RegisterRoute("player", typeof(Player));
}
}

@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="BookApp.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:BookApp"
Shell.FlyoutBehavior="Flyout">
<FlyoutItem FlyoutDisplayOptions="AsSingleItem">
<ShellContent
Title="Ecouter"
Icon="icon_listen.png"
ContentTemplate="{DataTemplate local:Bibliotheque}"
Route="Bibliotheque" />
<ShellContent Icon="icon_explore.png" Title="Explorer" ContentTemplate="{DataTemplate local:MainPage}" />
<ShellContent Icon="icon_radio.png" Title="Radio" ContentTemplate="{DataTemplate local:MainPage}"/>
<ShellContent Icon="icon_library.png" Title="Bibliothèque" ContentTemplate="{DataTemplate local:Bibliotheque}" Route="Bibliotheque" />
<ShellContent Icon="icon_search.png" Title="Paramètres" ContentTemplate="{DataTemplate local:MainPage}"/>
</FlyoutItem>
</Shell>

@ -1,4 +1,4 @@
namespace MAUI_APP;
namespace BookApp;
public partial class AppShell : Shell
{

@ -0,0 +1,44 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="BookApp.Bibliotheque"
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
xmlns:v="clr-namespace:BookApp.ContentViews"
Routing.Route="Bibliotheque"
Title="Bibliotheque">
<Shell.TitleView>
<StackLayout Orientation="Horizontal">
<Button Text="Modifier" TextColor="{StaticResource Key=RedMusic}" HorizontalOptions="End" Margin="180,0,0,0" />
</StackLayout>
</Shell.TitleView>
<ScrollView>
<VerticalStackLayout
Spacing="25"
Padding="30,0"
VerticalOptions="Center">
<v:MenuItem/>
<v:MenuItem />
<v:MenuItem/>
<Label Text="Ajouts récents" FontSize="Title" HorizontalOptions="Start" />
<Grid RowDefinitions="*,*" RowSpacing="10">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<v:ImageCard/>
<v:ImageCard Grid.Column="1"/>
<v:ImageCard Grid.Row="1" />
<v:ImageCard Grid.Row="1" Grid.Column="1"/>
</Grid>
</VerticalStackLayout>
</ScrollView>
</ContentPage>

@ -0,0 +1,9 @@
namespace BookApp;
public partial class Bibliotheque : ContentPage
{
public Bibliotheque()
{
InitializeComponent();
}
}

@ -0,0 +1,153 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net7.0-maccatalyst15.4;net7.0-ios16.0;net7.0-android33.0</TargetFrameworks>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net7.0-windows10.0.19041.0</TargetFrameworks>
<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET -->
<!-- <TargetFrameworks>$(TargetFrameworks);net6.0-tizen</TargetFrameworks> -->
<OutputType>Exe</OutputType>
<RootNamespace>BookApp</RootNamespace>
<UseMaui>true</UseMaui>
<SingleProject>true</SingleProject>
<ImplicitUsings>enable</ImplicitUsings>
<!-- Display name -->
<ApplicationTitle>BookApp</ApplicationTitle>
<!-- App Identifier -->
<ApplicationId>com.companyname.bookapp</ApplicationId>
<ApplicationIdGuid>ae787390-95ac-43fe-8cdf-612c4dbae9b5</ApplicationIdGuid>
<!-- Versions -->
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
<ApplicationVersion>1</ApplicationVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">14.2</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">14.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion>
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net7.0-ios16.0|AnyCPU'">
<CreatePackage>false</CreatePackage>
</PropertyGroup>
<ItemGroup>
<!-- App Icon -->
<MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4" />
<!-- Splash Screen -->
<MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#512BD4" BaseSize="128,128" />
<!-- Images -->
<MauiImage Include="Resources\Images\*" />
<MauiFont Include="Resources\Fonts\*" />
<!-- Raw Assets (also remove the "Resources\Raw" prefix) -->
<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
</ItemGroup>
<ItemGroup>
<None Remove="ContentView\" />
<None Remove="CommunityToolkit.Maui.Core" />
<None Remove="CommunityToolkit.Maui" />
<None Remove="Resources\Images\icon_search.png" />
<None Remove="Resources\Images\icon_explore.png" />
<None Remove="Resources\Images\icon_library.png" />
<None Remove="Resources\Images\icon_listen.png" />
<None Remove="Resources\Images\icon_radio.png" />
<None Remove="Resources\Themes\" />
<None Remove="Resources\Images\playlist.png" />
<None Remove="Resources\Images\playlistr.jpg" />
<None Remove="Resources\Images\micro.png" />
<None Remove="Resources\Images\microo.png" />
<None Remove="Resources\Images\album.jpg" />
<None Remove="Resources\Images\comp.png" />
<None Remove="Resources\Images\chevron.png" />
<None Remove="Resources\Images\next.jpg" />
<None Remove="Resources\Images\dwl.png" />
<None Remove="Resources\Images\elp.png" />
<None Remove="Resources\Images\random.png" />
<None Remove="Resources\Images\star.png" />
<None Remove="Resources\Images\approuve.png" />
</ItemGroup>
<ItemGroup>
<Folder Include="ContentView\" />
<Folder Include="Resources\Themes\" />
</ItemGroup>
<ItemGroup>
<MauiXaml Remove="Resources\Themes\Light.xaml" />
<MauiXaml Remove="Resources\Themes\Dark.xaml" />
</ItemGroup>
<ItemGroup>
<MauiXaml Update="ContentView\ImageCard.xaml">
<SubType></SubType>
</MauiXaml>
<MauiXaml Update="ContentView\DetailsType.xaml">
<SubType></SubType>
</MauiXaml>
<MauiXaml Update="Player.xaml">
<SubType></SubType>
</MauiXaml>
<MauiXaml Update="ContentView\Player.xaml">
<SubType></SubType>
</MauiXaml>
<MauiXaml Update="Bibliotheque.xaml">
<SubType></SubType>
</MauiXaml>
<MauiXaml Update="ContentView\Playerboard.xaml">
<SubType></SubType>
</MauiXaml>
<MauiXaml Update="ContentView\MenuItem.xaml">
<SubType></SubType>
</MauiXaml>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Model\Model.csproj" />
<ProjectReference Include="..\ViewModel\ViewModel.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Maui" Version="2.0.0" />
</ItemGroup>
<ItemGroup>
<BundleResource Include="**/*" />
<BundleResource Include="Resources\Images\*" />
<BundleResource Include="**/*" />
<BundleResource Include="Resources\Images\*" />
<BundleResource Include="**/*" />
<BundleResource Include="Resources\Images\*" />
<BundleResource Include="**/*" />
<BundleResource Include="Resources\Images\*" />
<BundleResource Include="**/*" />
<BundleResource Include="Resources\Images\*" />
<BundleResource Include="Resources\Themes\Light.xaml" />
<BundleResource Include="Resources\Themes\Dark.xaml" />
<BundleResource Include="**/*" />
<BundleResource Include="Resources\Images\*" />
<BundleResource Include="**/*" />
<BundleResource Include="Resources\Images\*" />
<BundleResource Include="**/*" />
<BundleResource Include="Resources\Images\*" />
<BundleResource Include="**/*" />
<BundleResource Include="Resources\Images\*" />
<BundleResource Include="**/*" />
<BundleResource Include="Resources\Images\*" />
<BundleResource Include="**/*" />
<BundleResource Include="Resources\Images\*" />
<BundleResource Include="**/*" />
<BundleResource Include="Resources\Images\*" />
<BundleResource Include="**/*" />
<BundleResource Include="Resources\Images\*" />
<BundleResource Include="**/*" />
<BundleResource Include="Resources\Images\*" />
<BundleResource Include="**/*" />
<BundleResource Include="Resources\Images\*" />
<BundleResource Include="**/*" />
<BundleResource Include="Resources\Images\*" />
<BundleResource Include="**/*" />
<BundleResource Include="Resources\Images\*" />
<BundleResource Include="**/*" />
<BundleResource Include="Resources\Images\*" />
</ItemGroup>
</Project>

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="BookApp.ContentViews.DetailsType"
>
<HorizontalStackLayout HorizontalOptions="Center" >
<Grid RowDefinitions="*" ColumnDefinitions="*,*,*" >
<Label Text="Jazz" />
<Label Grid.Column="1" Text=".2020." FontSize="Caption"/>
<StackLayout Grid.Column="2" Orientation="Horizontal" Spacing="0">
<Image Source="play" HeightRequest="10" Margin="0,0,10,0" />
<Label Text="Lecture" />
</StackLayout>
</Grid>
</HorizontalStackLayout>
</ContentView>

@ -0,0 +1,9 @@
namespace BookApp.ContentViews;
public partial class DetailsType : ContentView
{
public DetailsType()
{
InitializeComponent();
}
}

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:v="clr-namespace:BookApp.ContentViews"
x:Class="BookApp.ContentViews.ImageCard" >
<VerticalStackLayout>
<Frame Background="#EEE" HeightRequest="150" CornerRadius="5" WidthRequest="150">
<Image Source="book" Margin="0,0,0,0" HeightRequest="150" WidthRequest="150" />
<Frame.GestureRecognizers>
<TapGestureRecognizer Tapped="TapGestureRecognizer_Tapped" />
</Frame.GestureRecognizers>
</Frame>
<Label HorizontalOptions="Start" Text="Know What I Mean?" FontSize="Subtitle" FontFamily="Arial"/>
<Label HorizontalOptions="Start" Text="Wayne Shorter" TextColor="Gray" FontSize="Caption" FontFamily="Arial"/>
</VerticalStackLayout>
</ContentView>

@ -0,0 +1,19 @@

using BookApp;
namespace BookApp.ContentViews;
public partial class ImageCard : ContentView
{
public ImageCard()
{
InitializeComponent();
}
async void TapGestureRecognizer_Tapped(System.Object sender, Microsoft.Maui.Controls.TappedEventArgs e)
{
await Navigation.PushModalAsync(new BookApp.Player());
}
}

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
x:Class="BookApp.ContentViews.MenuItem">
<toolkit:Expander>
<toolkit:Expander.Header>
<VerticalStackLayout>
<StackLayout Orientation="Horizontal" Spacing="12">
<Image Source="playlist.png"
HeightRequest="20"
HorizontalOptions="Start" />
<Label Text="Playlist"
FontAttributes="Bold"
FontSize="Medium" HorizontalOptions="Start" />
<Image Source="chevron.png"
HeightRequest="20"
HorizontalOptions="EndAndExpand"/>
</StackLayout>
<Line BackgroundColor="{StaticResource Key=Gray200 }" />
</VerticalStackLayout>
</toolkit:Expander.Header>
<HorizontalStackLayout Padding="10">
<Image Source="chevron.png"
Aspect="AspectFill"
HeightRequest="20"
WidthRequest="20" />
<Label Text="Baboons are African and Arabian Old World monkeys belonging to the genus Papio, part of the subfamily Cercopithecinae."
FontAttributes="Italic" />
</HorizontalStackLayout>
</toolkit:Expander>
</ContentView>

@ -0,0 +1,11 @@
namespace BookApp.ContentViews;
public partial class MenuItem : ContentView
{
public string title { set; get; } = "dssfghj";
public MenuItem()
{
InitializeComponent();
BindingContext = this;
}
}

@ -0,0 +1,65 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:v="clr-namespace:BookApp.ContentViews"
x:Class="BookApp.ContentViews.Player">
<VerticalStackLayout HorizontalOptions="CenterAndExpand" >
<Frame Background="#EEE" Padding="10" Margin="12" HeightRequest="250" CornerRadius="20" WidthRequest="250">
<Image Source="book" Margin="0,0,10,0" HeightRequest="250" WidthRequest="250" />
<Frame.GestureRecognizers>
<TapGestureRecognizer />
</Frame.GestureRecognizers>
</Frame>
<Label HorizontalOptions="Center" Text="Know What I Mean?" FontSize="Title" FontFamily="Arial"/>
<Label HorizontalOptions="Center" Text="Wayne Shorter" TextColor="OrangeRed" FontSize="Title" FontFamily="Arial"/>
<v:DetailsType />
<Grid Padding="15" ColumnSpacing="12">
<Grid.RowDefinitions>
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Frame Style="{StaticResource Key=FramePlayer}" >
<HorizontalStackLayout>
<Image Source="play" HeightRequest="20" Margin="0,0,10,0" />
<Label Text="Lecture" TextColor="{StaticResource Key=RedMusic}" />
</HorizontalStackLayout>
<Frame.GestureRecognizers>
<TapGestureRecognizer />
</Frame.GestureRecognizers>
</Frame>
<Frame Grid.Column="1" Style="{StaticResource Key=FramePlayer}" >
<HorizontalStackLayout>
<Image Source="random" HeightRequest="20" Margin="0,0,10,0" />
<Label Text="Aléatoire" TextColor="{StaticResource Key=RedMusic}"/>
</HorizontalStackLayout>
<Frame.GestureRecognizers>
<TapGestureRecognizer />
</Frame.GestureRecognizers>
</Frame>
</Grid>
</VerticalStackLayout>
</ContentView>

@ -0,0 +1,9 @@
namespace BookApp.ContentViews;
public partial class Player : ContentView
{
public Player()
{
InitializeComponent();
}
}

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="BookApp.ContentViews.Playerboard">
<Grid BackgroundColor="#efedcd" Padding="10" ColumnSpacing="20">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Frame CornerRadius="10" HeightRequest="70" WidthRequest="80" >
<Image Source="dotnet_bot" HeightRequest="70" WidthRequest="80" />
</Frame>
<VerticalStackLayout Grid.Row="0" Grid.Column="1" VerticalOptions="Center" HorizontalOptions="StartAndExpand" WidthRequest="100">
<Label Text="Know what i mean" LineBreakMode="TailTruncation" MaxLines="1" />
</VerticalStackLayout>
<StackLayout Grid.Row="0" Grid.Column="1" Orientation="Horizontal" Spacing="15"
VerticalOptions="Center" HorizontalOptions="End">
<Image Source="play.png" WidthRequest="20" HeightRequest="25"/>
<Image Source="next.png" WidthRequest="40" HeightRequest="25"/>
</StackLayout>
</Grid>
</ContentView>

@ -0,0 +1,9 @@
namespace BookApp.ContentViews;
public partial class Playerboard : ContentView
{
public Playerboard()
{
InitializeComponent();
}
}

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:v="clr-namespace:BookApp.ContentViews"
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
x:Class="BookApp.MainPage">
<ScrollView>
<VerticalStackLayout
Spacing="25"
Padding="30,0"
VerticalOptions="Center">
<v:ImageCard/>
<v:Player/>
</VerticalStackLayout>
</ScrollView>
</ContentPage>

@ -0,0 +1,15 @@
namespace BookApp;
public partial class MainPage : ContentPage
{
public MainPage()
{
InitializeComponent();
}
}

@ -1,4 +1,6 @@
namespace MAUI_APP;
using CommunityToolkit.Maui;
namespace BookApp;
public static class MauiProgram
{
@ -12,8 +14,8 @@ public static class MauiProgram
fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
});
return builder.Build();
builder.UseMauiApp<App>().UseMauiCommunityToolkit();
return builder.Build();
}
}

@ -2,7 +2,7 @@
using Android.Content.PM;
using Android.OS;
namespace MAUI_APP;
namespace BookApp;
[Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
public class MainActivity : MauiAppCompatActivity

@ -1,7 +1,7 @@
using Android.App;
using Android.Runtime;
namespace MAUI_APP;
namespace BookApp;
[Application]
public class MainApplication : MauiApplication

@ -1,6 +1,6 @@
using Foundation;
namespace MAUI_APP;
namespace BookApp;
[Register("AppDelegate")]
public class AppDelegate : MauiUIApplicationDelegate

@ -1,7 +1,7 @@
using ObjCRuntime;
using UIKit;
namespace MAUI_APP;
namespace BookApp;
public class Program
{

@ -2,7 +2,7 @@
using Microsoft.Maui;
using Microsoft.Maui.Hosting;
namespace MAUI_APP;
namespace BookApp;
class Program : MauiApplication
{

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="maui-application-id-placeholder" version="0.0.0" api-version="7" xmlns="http://tizen.org/ns/packages">
<profile name="common" />
<ui-application appid="maui-application-id-placeholder" exec="MAUI_APP.dll" multiple="false" nodisplay="false" taskmanage="true" type="dotnet" launch_mode="single">
<ui-application appid="maui-application-id-placeholder" exec="BookApp.dll" multiple="false" nodisplay="false" taskmanage="true" type="dotnet" launch_mode="single">
<label>maui-application-title-placeholder</label>
<icon>maui-appicon-placeholder</icon>
<metadata key="http://tizen.org/metadata/prefer_dotnet_aot" value="true" />

@ -1,9 +1,9 @@
<maui:MauiWinUIApplication
x:Class="MAUI_APP.WinUI.App"
x:Class="BookApp.WinUI.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:maui="using:Microsoft.Maui"
xmlns:local="using:MAUI_APP.WinUI">
xmlns:local="using:BookApp.WinUI">
</maui:MauiWinUIApplication>

@ -3,7 +3,7 @@
// To learn more about WinUI, the WinUI project structure,
// and more about our project templates, see: http://aka.ms/winui-project-info.
namespace MAUI_APP.WinUI;
namespace BookApp.WinUI;
/// <summary>
/// Provides application-specific behavior to supplement the default Application class.

@ -8,7 +8,7 @@
<Identity Name="maui-package-name-placeholder" Publisher="CN=User Name" Version="0.0.0.0" />
<mp:PhoneIdentity PhoneProductId="CF522D86-9863-46E6-AF9B-0A29D869FBB1" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
<mp:PhoneIdentity PhoneProductId="2D63EBEA-2738-4FC8-8FF2-A863438E63AB" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
<Properties>
<DisplayName>$placeholder$</DisplayName>

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity version="1.0.0.0" name="MAUI_APP.WinUI.app"/>
<assemblyIdentity version="1.0.0.0" name="BookApp.WinUI.app"/>
<application xmlns="urn:schemas-microsoft-com:asm.v3">
<windowsSettings>

@ -1,6 +1,6 @@
using Foundation;
namespace MAUI_APP;
namespace BookApp;
[Register("AppDelegate")]
public class AppDelegate : MauiUIApplicationDelegate

@ -1,7 +1,7 @@
using ObjCRuntime;
using UIKit;
namespace MAUI_APP;
namespace BookApp;
public class Program
{

@ -0,0 +1,81 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="BookApp.Player"
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
xmlns:v="clr-namespace:BookApp.ContentViews"
Routing.Route="player"
Title="Player">
<Shell.TitleView>
<StackLayout Orientation="Horizontal">
<Grid RowDefinitions="*" ColumnDefinitions="*,*,*,*" ColumnSpacing="25" Margin="200,0,0,0">
<Image Grid.Column="3" Source="elp.png" WidthRequest="20" />
<Image Grid.Column="2" Source="approuve.png" WidthRequest="20" />
</Grid>
</StackLayout>
</Shell.TitleView>
<ScrollView>
<VerticalStackLayout
Spacing="25"
Padding="30,0"
VerticalOptions="Center">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Grid>
<v:Player/>
</Grid>
<Grid Grid.Row="1" >
<CollectionView x:Name="myListView" >
<CollectionView.ItemTemplate>
<DataTemplate>
<HorizontalStackLayout Spacing="12">
<Image Source="star.png" WidthRequest="10" HeightRequest="10" />
<Label Text="2" Padding="12" />
<Label Text="{Binding .}" WidthRequest="180" Padding="12" />
<Image Source="dwl.png" Style="{StaticResource Key=ImagePlayer}" />
<Image Source="elp.png" Style="{StaticResource Key=ImagePlayer}" />
</HorizontalStackLayout>
</DataTemplate>
</CollectionView.ItemTemplate>
</CollectionView>
</Grid>
<Grid Grid.Row="2" >
</Grid>
<Grid Grid.Row="3">
<v:Playerboard/>
</Grid>
</Grid>
</VerticalStackLayout>
</ScrollView>
</ContentPage>

@ -0,0 +1,28 @@
using System.Collections.ObjectModel;
namespace BookApp;
public partial class Player : ContentPage
{
public List<string> MyItems { get; set; }
public Player()
{
InitializeComponent();
MyItems = new List<string>();
// Ajouter des éléments à la liste
MyItems.Add("Élément 1");
MyItems.Add("Élément 2");
MyItems.Add("Élément 3");
MyItems.Add("Élément 4");
myListView.ItemsSource = MyItems;
}
private async void OnBackButtonClicked(object sender, EventArgs e)
{
await Navigation.PopAsync();
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 496 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

@ -0,0 +1,404 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
width="362.000000pt" height="372.000000pt" viewBox="0 0 362.000000 372.000000"
preserveAspectRatio="xMidYMid meet">
<g transform="translate(0.000000,372.000000) scale(0.100000,-0.100000)"
fill="#000000" stroke="none">
<path d="M50 3713 c-8 -3 -23 -12 -32 -21 -17 -14 -18 -78 -18 -1081 l1 -1066
33 80 c44 107 61 138 97 179 40 46 69 51 159 26 187 -53 259 -60 348 -38 53
13 104 43 122 71 6 10 15 51 20 90 10 92 16 104 54 124 17 8 39 22 49 31 20
18 22 64 5 92 -10 16 -9 25 5 49 24 41 21 87 -8 125 -33 44 -32 60 11 104 73
76 77 121 15 187 -16 16 -50 61 -75 100 -44 65 -47 73 -41 115 15 115 16 160
5 225 -47 277 -144 420 -358 533 -125 66 -183 82 -287 81 -49 0 -97 -3 -105
-6z m96 -99 c-4 -18 -2 -35 4 -39 5 -3 10 -15 10 -26 0 -13 -7 -19 -24 -19
-34 0 -51 24 -31 43 9 10 11 18 5 22 -14 9 -12 52 3 58 27 9 39 -5 33 -39z
m44 -84 c0 -5 -2 -10 -4 -10 -3 0 -8 5 -11 10 -3 6 -1 10 4 10 6 0 11 -4 11
-10z m208 -28 c-9 -10 -13 -11 -19 0 -5 7 -9 19 -9 26 0 10 4 10 19 0 15 -9
17 -15 9 -26z m-11 -40 c17 -11 -1 -36 -21 -29 -9 4 -16 13 -16 22 0 16 17 20
37 7z m83 -28 c0 -9 -5 -14 -12 -12 -18 6 -21 28 -4 28 9 0 16 -7 16 -16z
m-196 -75 c-3 -5 -10 -7 -15 -3 -5 3 -7 10 -3 15 3 5 10 7 15 3 5 -3 7 -10 3
-15z m158 -63 c13 -12 16 -22 10 -28 -14 -14 -130 -40 -142 -33 -15 9 -12 31
6 46 9 7 20 23 25 36 7 19 13 22 39 17 21 -5 30 -3 31 7 1 8 4 5 6 -6 3 -11
14 -28 25 -39z m128 -222 c0 -2 -7 -4 -15 -4 -8 0 -15 4 -15 10 0 5 7 7 15 4
8 -4 15 -8 15 -10z m-254 -52 c13 -8 26 -120 15 -127 -5 -2 -27 14 -50 37 -32
33 -44 39 -53 30 -16 -16 -28 -15 -28 3 0 40 81 81 116 57z m392 -168 c16 -11
22 -24 20 -42 -4 -36 -18 -37 -56 -3 -50 46 -20 84 36 45z m52 -148 c0 -8 -4
-17 -9 -21 -12 -7 -24 12 -16 25 9 15 25 12 25 -4z m60 -105 c0 -12 -20 -25
-27 -18 -7 7 6 27 18 27 5 0 9 -4 9 -9z m-50 -231 c0 -5 -4 -10 -10 -10 -5 0
-10 5 -10 10 0 6 5 10 10 10 6 0 10 -4 10 -10z m-52 -107 c6 -19 -25 -16 -32
3 -4 11 -1 14 11 12 9 -2 18 -9 21 -15z m97 8 c3 -5 1 -12 -5 -16 -13 -8 -50
3 -50 16 0 12 47 12 55 0z"/>
<path d="M365 3710 c17 -4 68 -9 115 -10 47 -1 77 -4 68 -7 -30 -8 -20 -31 28
-64 32 -22 53 -30 72 -26 30 6 74 -12 69 -27 -5 -16 83 -58 127 -60 27 -1 42
-7 50 -21 6 -11 12 -22 13 -24 3 -5 52 -13 80 -13 12 0 23 -7 25 -17 2 -11 21
-19 63 -26 44 -8 62 -16 69 -30 5 -11 30 -30 55 -43 42 -20 57 -22 141 -17 73
5 98 10 109 23 11 15 12 5 7 -68 -3 -47 -6 -110 -6 -142 l0 -56 -39 5 c-22 3
-51 3 -66 -1 -26 -7 -26 -7 -23 -99 l3 -92 72 1 72 0 3 -85 3 -86 52 -3 c35
-2 60 2 76 13 22 14 25 14 30 0 9 -21 34 -19 54 5 l18 20 16 -21 c13 -18 19
-19 37 -10 14 7 23 8 27 1 3 -5 33 -10 65 -10 48 0 61 4 74 21 l14 21 11 -21
c16 -29 28 -26 47 11 l17 33 15 -33 c9 -18 22 -31 30 -30 18 4 93 138 87 156
-3 8 9 12 43 12 26 0 58 6 72 13 34 17 38 59 8 87 -21 20 -22 22 -5 31 9 6 17
21 17 35 0 25 -2 26 -47 22 -27 -3 -57 -8 -67 -13 -17 -7 -18 -5 -11 21 10 38
8 68 -5 72 -15 5 -12 29 5 36 16 6 21 61 7 70 -5 3 -7 18 -4 34 3 22 -1 31
-20 39 -23 11 -23 12 -1 12 12 1 23 -5 26 -11 3 -9 12 -6 30 11 22 20 30 22
55 13 35 -12 178 2 199 20 7 6 31 8 53 5 23 -3 38 -1 34 4 -3 5 8 12 25 15 17
4 29 11 28 17 -1 5 14 14 33 19 19 5 46 17 60 27 31 21 146 76 180 86 26 8
102 40 132 56 10 5 30 9 45 9 16 0 54 9 86 20 32 11 81 23 109 26 27 4 55 12
62 19 7 7 48 18 92 23 53 6 -441 9 -1486 9 -861 1 -1551 -3 -1535 -7z m273
-17 c-10 -2 -28 -2 -40 0 -13 2 -5 4 17 4 22 1 32 -1 23 -4z m159 -145 c-3 -8
-6 -5 -6 6 -1 11 2 17 5 13 3 -3 4 -12 1 -19z m610 -74 c-3 -3 -12 -4 -19 -1
-8 3 -5 6 6 6 11 1 17 -2 13 -5z m443 -110 c0 -30 -4 -53 -9 -50 -8 6 -12 85
-4 99 10 16 13 4 13 -49z m153 -29 c4 -8 2 -17 -2 -20 -5 -2 -11 4 -14 15 -6
23 8 27 16 5z m-330 -121 c-4 -11 -9 -12 -19 -3 -20 16 -17 28 5 22 12 -3 17
-11 14 -19z m197 6 c0 -5 -4 -10 -10 -10 -5 0 -10 5 -10 10 0 6 5 10 10 10 6
0 10 -4 10 -10z m-310 -66 c0 -8 -7 -14 -15 -14 -17 0 -18 2 -9 24 7 18 24 12
24 -10z m371 -127 c-8 -8 -11 -4 -11 13 0 13 -7 31 -14 39 -13 14 -12 21 7 51
l22 35 3 -64 c2 -36 -2 -69 -7 -74z m-353 -59 c-4 -69 -28 -79 -28 -10 0 27 3
52 7 55 17 17 24 3 21 -45z m111 -32 c11 -13 10 -17 -4 -22 -25 -10 -32 6 -27
61 l6 50 6 -37 c4 -20 12 -44 19 -52z m151 62 c0 -20 -6 -23 -45 -25 -33 -1
-45 2 -45 13 0 15 9 17 48 14 12 -1 22 3 22 9 0 6 5 11 10 11 6 0 10 -10 10
-22z m334 -8 c25 -25 26 -30 12 -36 -9 -3 -27 -3 -41 0 -20 5 -25 13 -25 36 0
38 17 38 54 0z m-234 -49 c0 -22 -16 -36 -24 -22 -8 12 3 41 15 41 5 0 9 -9 9
-19z m-310 -61 c0 -5 -2 -10 -4 -10 -3 0 -8 5 -11 10 -3 6 -1 10 4 10 6 0 11
-4 11 -10z m360 -5 c-12 -15 -30 -12 -30 6 0 5 10 9 21 9 18 0 19 -2 9 -15z
m78 3 c-6 -18 -25 -20 -31 -3 -5 10 0 15 14 15 12 0 19 -5 17 -12z m-438 -44
c0 -14 -4 -23 -9 -20 -5 3 -7 15 -4 26 7 28 13 25 13 -6z m290 -46 c0 -4 -7
-5 -15 -2 -8 4 -15 16 -15 28 1 21 1 21 15 2 8 -11 15 -23 15 -28z"/>
<path d="M500 3653 c14 -9 32 -25 41 -35 9 -10 22 -18 30 -18 15 0 -11 25 -53
53 -35 22 -50 22 -18 0z"/>
<path d="M3523 3638 c-21 -10 -51 -18 -68 -18 -16 0 -57 -13 -91 -29 -34 -16
-75 -32 -92 -35 -16 -4 -47 -16 -68 -27 -21 -10 -47 -19 -58 -19 -10 0 -61
-13 -113 -30 -51 -16 -101 -30 -112 -30 -29 0 -138 -59 -144 -78 -2 -9 -8 -25
-12 -34 -6 -16 -1 -18 38 -18 24 0 66 9 91 21 32 14 57 18 77 14 38 -9 30 -19
-29 -41 -26 -9 -75 -30 -109 -46 -53 -25 -75 -29 -159 -32 -83 -2 -99 -5 -108
-21 -11 -19 -25 -34 -93 -97 -44 -42 -66 -99 -57 -147 8 -40 31 -40 119 -4 36
14 68 23 72 20 3 -4 4 -8 2 -10 -2 -2 -41 -27 -86 -57 -46 -29 -83 -58 -83
-63 0 -6 18 -7 45 -4 25 4 45 3 45 -1 0 -5 -14 -21 -30 -37 -17 -16 -37 -42
-44 -57 -12 -23 -12 -30 2 -49 11 -17 12 -26 4 -40 -13 -20 -3 -31 41 -48 23
-9 36 -7 67 9 41 21 78 28 50 10 -13 -9 -13 -11 0 -20 14 -9 68 -7 208 5 31 3
52 1 52 -5 0 -18 44 -11 130 22 77 30 93 41 174 122 91 90 166 138 166 106 0
-10 -30 -39 -170 -169 -63 -58 -115 -88 -217 -122 -81 -28 -201 -87 -263 -129
-24 -17 -79 -34 -190 -61 -33 -8 -98 -13 -162 -11 -97 2 -164 -8 -233 -34 -11
-4 -54 -29 -95 -55 -68 -43 -147 -83 -271 -137 -56 -24 -120 -80 -161 -141
-35 -52 -42 -57 77 54 30 28 75 59 102 69 108 43 216 97 295 149 46 29 97 57
113 61 17 4 95 9 175 11 80 2 161 7 180 10 62 11 152 46 259 101 57 30 109 54
117 54 8 0 22 4 32 9 31 16 102 34 109 28 3 -4 -3 -7 -15 -7 -11 0 -24 -4 -27
-10 -3 -5 -15 -10 -26 -10 -10 0 -27 -4 -37 -9 -9 -4 -42 -20 -72 -35 -30 -15
-73 -37 -96 -49 -119 -65 -199 -86 -399 -103 -154 -13 -176 -17 -233 -45 -35
-17 -61 -33 -59 -35 3 -3 32 4 66 16 71 24 120 25 195 6 54 -14 126 -7 151 15
12 12 48 11 40 0 -11 -19 16 -21 122 -11 59 6 155 13 211 16 113 5 177 24 185
55 3 10 12 19 21 19 12 0 14 7 10 28 -3 19 2 35 18 55 l24 29 99 -12 c55 -7
111 -19 123 -27 21 -13 26 -13 43 3 27 24 146 30 195 9 l34 -14 0 58 c0 41 -4
59 -12 58 -22 -1 -98 38 -98 50 0 31 69 43 94 17 15 -14 16 32 16 509 l0 524
-29 -1 c-16 -1 -46 -9 -68 -18z m3 -802 c-10 -6 -30 -20 -44 -31 -27 -20 -122
-58 -129 -51 -3 2 10 20 27 40 34 38 107 67 144 58 19 -5 19 -6 2 -16z"/>
<path d="M2143 2403 c9 -2 25 -2 35 0 9 3 1 5 -18 5 -19 0 -27 -2 -17 -5z"/>
<path d="M2018 2357 c-83 -45 -140 -86 -122 -86 6 -1 29 11 50 25 48 33 147
84 163 84 6 0 11 5 11 10 0 18 -24 10 -102 -33z"/>
<path d="M2828 2241 c-160 -6 -199 -14 -132 -27 95 -18 404 3 404 27 0 9 -8 9
-272 0z"/>
<path d="M2039 2223 c-13 -16 -12 -17 4 -4 9 7 17 15 17 17 0 8 -8 3 -21 -13z"/>
<path d="M1680 2194 c-15 -8 -19 -14 -9 -14 8 0 19 4 25 9 5 5 18 11 29 14
l20 5 -20 0 c-11 0 -31 -6 -45 -14z"/>
<path d="M3490 2190 c-49 -12 -297 -17 -345 -7 -29 6 -45 5 -58 -5 -28 -21 -1
-47 58 -57 l50 -8 -35 -6 c-19 -4 -66 -9 -105 -12 -38 -3 -92 -9 -120 -14 -27
-6 -80 -10 -116 -10 -61 -1 -67 -3 -78 -27 -10 -22 -9 -28 6 -40 21 -16 5 -18
-31 -4 -14 5 -26 16 -26 24 0 7 -16 21 -35 30 -29 14 -45 15 -92 7 -32 -5
-109 -9 -172 -10 -133 0 -162 -5 -213 -37 -31 -20 -51 -24 -111 -24 -60 0 -79
-4 -101 -21 -62 -49 -15 -70 160 -71 108 0 145 4 229 26 169 44 311 36 592
-31 108 -26 113 -26 132 -9 16 15 29 16 75 11 68 -9 134 1 118 17 -16 16 31
38 93 45 28 3 64 13 80 23 44 26 133 53 156 47 16 -4 19 0 19 28 0 24 -5 35
-17 38 -17 4 -17 5 0 6 14 1 17 10 17 51 l0 50 -47 -1 c-27 -1 -64 -5 -83 -9z
m-222 -77 c-10 -2 -28 -2 -40 0 -13 2 -5 4 17 4 22 1 32 -1 23 -4z m-402 -138
c36 -19 13 -19 -46 -1 -42 14 -43 15 -14 15 18 1 45 -6 60 -14z m79 -35 c3 -5
22 -10 41 -10 25 0 34 -4 34 -16 0 -11 -5 -14 -17 -9 -10 4 -27 10 -38 13 -11
3 -31 11 -45 19 -24 12 -24 13 -3 13 12 0 25 -4 28 -10z"/>
<path d="M2890 2165 c-30 -8 -67 -14 -82 -15 -21 0 -28 -5 -28 -19 0 -17 10
-20 75 -26 85 -8 105 -4 105 24 0 11 5 23 10 26 16 10 11 25 -7 24 -10 0 -43
-7 -73 -14z"/>
<path d="M1790 2103 c-31 -6 -96 -51 -136 -95 -17 -18 -61 -90 -97 -159 -79
-153 -95 -179 -113 -179 -19 0 -17 19 6 58 23 37 24 42 10 42 -5 0 -10 -7 -10
-15 0 -8 -5 -15 -11 -15 -13 0 -5 28 27 95 12 28 26 64 30 80 7 28 5 28 -37
-19 -76 -85 -130 -131 -149 -128 -27 4 -98 -72 -131 -143 -53 -111 -27 -244
56 -291 28 -15 33 -112 9 -162 -13 -27 -15 -50 -10 -99 6 -55 4 -64 -11 -69
-55 -18 -75 -30 -117 -70 -57 -56 -60 -86 -13 -114 17 -11 41 -20 52 -19 45 3
47 0 41 -38 -4 -25 1 -65 14 -113 11 -41 31 -114 44 -162 13 -48 33 -102 45
-121 35 -57 29 -81 -43 -155 -66 -70 -96 -117 -96 -152 0 -20 3 -20 454 -20
250 0 457 3 460 8 7 11 -19 111 -40 157 -17 34 -26 42 -69 54 -28 7 -77 16
-109 20 -34 3 -61 11 -64 19 -5 16 56 15 133 -3 32 -8 61 -12 63 -10 6 5 -3
23 -24 52 -15 21 -15 23 18 36 63 28 71 39 73 103 1 33 15 107 29 165 l28 107
39 6 c22 4 46 3 52 -1 13 -9 120 -14 245 -13 74 1 84 -1 89 -18 3 -15 14 -19
44 -19 22 0 45 -5 52 -12 14 -14 57 -15 57 -1 0 6 -7 10 -16 10 -8 0 -13 4
-10 9 8 13 47 1 53 -15 12 -31 83 0 83 37 0 10 4 19 9 19 11 0 44 -45 54 -72
9 -25 40 -24 32 1 -8 26 25 38 42 15 12 -17 43 -13 43 6 0 5 14 10 30 10 32 0
37 -9 18 -28 -19 -19 -1 -26 39 -14 23 7 42 8 54 2 23 -13 39 -13 39 -1 0 5
-16 15 -35 22 -43 16 -44 25 -2 43 31 14 31 14 7 15 -15 1 -31 -4 -37 -10 -16
-16 -184 20 -190 41 -2 8 -11 29 -18 47 -12 27 -12 32 2 37 9 4 31 -3 50 -14
19 -11 38 -20 42 -20 5 0 12 20 15 45 4 24 14 48 22 53 8 4 18 21 22 38 6 21
20 35 52 51 56 27 70 28 70 4 0 -16 7 -19 48 -16 26 1 64 10 84 19 49 21 60
20 91 -8 17 -15 24 -31 21 -43 -5 -18 1 -20 91 -20 58 0 101 -5 108 -12 6 -6
15 -11 19 -11 4 0 8 77 8 171 l0 171 -850 -4 c-468 -1 -850 -1 -850 2 0 3 6
14 13 25 69 100 -31 245 -168 245 -75 0 -123 -19 -161 -64 -30 -35 -34 -37
-34 -17 0 12 7 38 16 59 9 20 17 67 19 104 3 37 9 76 14 86 6 11 6 23 1 28 -4
5 0 54 9 112 20 115 31 132 118 188 29 19 57 43 63 54 6 11 9 19 8 19 -2 -1
-14 -4 -28 -6z m-155 -913 c3 -5 1 -10 -4 -10 -6 0 -11 5 -11 10 0 6 2 10 4
10 3 0 8 -4 11 -10z m-3 -82 c-10 -22 -11 -21 -11 12 -1 26 2 31 11 22 8 -8 8
-17 0 -34z m361 -35 c-7 -2 -19 -2 -25 0 -7 3 -2 5 12 5 14 0 19 -2 13 -5z
m583 -53 c8 0 14 -4 14 -10 0 -11 -49 -14 -74 -4 -29 11 -17 27 15 20 17 -3
38 -6 45 -6z m-380 -24 c16 -8 56 -16 90 -18 35 -3 71 -12 84 -21 24 -16 21
-17 -70 -19 -178 -3 -212 1 -243 30 l-28 27 23 6 c41 12 114 9 144 -5z m589
-67 c15 -7 9 -8 -22 -4 -37 4 -46 1 -72 -24 -22 -21 -36 -28 -53 -23 l-22 5
22 10 c13 6 21 16 18 23 -2 7 -2 15 1 18 10 9 106 6 128 -5z m-530 -39 c-3 -5
-10 -10 -16 -10 -5 0 -9 5 -9 10 0 6 7 10 16 10 8 0 12 -4 9 -10z m135 -5 c0
-9 -6 -12 -15 -9 -8 4 -15 10 -15 15 0 5 7 9 15 9 8 0 15 -7 15 -15z m88 -3
c2 -7 -6 -12 -17 -12 -21 0 -27 11 -14 24 9 9 26 2 31 -12z m-348 -38 c0 -13
-4 -24 -10 -24 -14 0 -31 37 -24 55 9 22 34 0 34 -31z m70 -20 c0 -8 -4 -12
-10 -9 -5 3 -10 10 -10 16 0 5 5 9 10 9 6 0 10 -7 10 -16z m453 -29 c8 -20 -5
-26 -42 -19 -32 7 -32 7 -9 19 31 18 45 18 51 0z m102 -4 c0 -18 -56 -34 -70
-20 -7 7 -4 15 10 25 24 18 60 15 60 -5z m-1286 -165 c14 -17 8 -22 -40 -31
-44 -8 -58 7 -27 29 28 20 52 20 67 2z m54 -137 c12 -45 -24 -72 -55 -42 -16
17 -17 20 -2 41 19 28 50 29 57 1z m365 -57 c2 -15 -2 -22 -12 -22 -11 0 -16
9 -16 26 0 31 23 28 28 -4z"/>
<path d="M2348 1907 c-29 -11 -37 -26 -15 -28 6 -1 95 -1 197 1 179 2 189 1
304 -29 65 -17 127 -31 137 -31 10 0 19 -6 19 -14 0 -15 23 -22 105 -31 27 -3
54 -10 59 -15 13 -13 113 -13 121 0 8 13 -28 27 -91 35 -70 9 -133 25 -179 45
-22 10 -67 23 -100 30 -33 6 -99 20 -146 31 -98 21 -362 25 -411 6z"/>
<path d="M2235 1803 c-74 -5 -150 -25 -204 -54 l-54 -29 124 0 c195 1 333 26
321 59 -3 9 -10 19 -16 23 -10 7 -82 7 -171 1z"/>
<path d="M2553 1791 c-7 -11 -23 -21 -35 -24 -21 -4 -20 -4 4 -6 37 -2 80 16
75 32 -6 20 -31 19 -44 -2z"/>
<path d="M2455 1770 c-3 -5 3 -10 14 -10 12 0 21 5 21 10 0 6 -6 10 -14 10 -8
0 -18 -4 -21 -10z"/>
<path d="M3539 1741 c-103 -28 -101 -26 -97 -68 2 -24 -2 -42 -11 -49 -8 -6
-12 -18 -8 -27 5 -12 24 -15 101 -14 l96 0 0 89 c0 48 -3 88 -7 87 -5 0 -38
-8 -74 -18z"/>
<path d="M2601 1676 c-7 -9 -21 -16 -30 -16 -9 0 -23 -5 -31 -11 -11 -7 1 -10
45 -8 33 1 71 1 85 0 23 -2 24 -3 5 -11 -32 -14 -129 -11 -175 5 -25 9 -47 12
-54 6 -19 -15 -103 -31 -160 -31 -64 0 -86 -7 -86 -26 0 -10 15 -14 53 -15 28
-1 99 -3 157 -5 58 -2 121 -4 140 -4 73 -2 103 1 138 16 20 8 70 17 110 20 66
4 74 3 68 -12 -6 -14 10 -16 163 -13 186 4 194 7 228 74 9 16 21 33 27 37 22
15 -46 7 -102 -11 -124 -42 -293 -63 -405 -51 -77 9 -85 13 -67 35 17 21 9 27
-48 33 -36 3 -51 0 -61 -12z"/>
<path d="M3305 1657 c-11 -6 -33 -23 -48 -39 -32 -31 -23 -42 29 -36 24 2 29
9 36 42 10 46 9 48 -17 33z"/>
<path d="M3573 1463 c9 -2 25 -2 35 0 9 3 1 5 -18 5 -19 0 -27 -2 -17 -5z"/>
<path d="M474 1428 c-4 -6 -21 -8 -42 -5 -38 7 -72 -6 -72 -27 0 -22 -47 -58
-67 -52 -24 7 -36 -2 -48 -39 -9 -24 -16 -29 -48 -31 -27 -2 -37 1 -37 12 0 8
-10 14 -25 14 -36 0 -73 20 -78 42 -4 14 -12 19 -29 16 l-23 -3 -3 -197 c-2
-175 -1 -197 13 -192 20 8 21 -45 0 -72 -22 -29 -22 -344 0 -344 8 0 15 -4 15
-9 0 -5 -7 -11 -15 -15 -13 -4 -15 -37 -15 -213 l1 -208 30 35 c35 41 51 95
48 158 -2 27 1 47 8 49 27 9 44 -126 22 -184 -5 -15 -22 -40 -36 -55 -55 -57
-25 -65 247 -64 l175 1 0 32 c0 40 27 73 60 73 18 0 25 5 25 19 0 22 46 56 55
40 4 -5 1 -16 -5 -24 -18 -22 8 -27 73 -16 4 0 7 7 7 14 0 8 16 31 36 51 35
36 35 38 19 62 -9 14 -27 29 -41 34 -13 5 -24 12 -24 16 0 3 27 33 60 66 33
32 60 63 60 68 0 5 15 28 34 53 55 72 69 104 40 93 -19 -7 -49 55 -32 65 17
11 1 39 -21 39 -32 0 -51 11 -51 31 0 13 10 20 36 25 35 6 104 63 104 85 0 6
-7 3 -16 -5 -19 -20 -54 -21 -54 -2 0 20 39 46 67 46 22 0 40 16 29 28 -19 19
-72 9 -110 -21 -56 -44 -32 -5 33 54 28 26 51 49 51 53 0 8 -40 -13 -58 -31
-16 -16 -48 -17 -57 -2 -4 6 1 16 11 23 16 12 14 14 -19 20 -21 4 -37 10 -37
14 0 4 -13 22 -29 39 l-29 32 34 53 c38 60 41 71 17 66 -9 -2 -26 -21 -38 -43
-13 -22 -34 -46 -49 -53 -14 -7 -26 -19 -26 -26 0 -18 -47 -59 -59 -51 -6 3
-20 -1 -32 -9 -33 -23 -85 7 -101 57 -6 20 -8 40 -4 44 3 4 46 7 94 8 124 1
181 29 185 92 2 25 -1 28 -28 28 -27 0 -31 4 -35 35 -4 25 -14 40 -40 57 -19
12 -42 29 -51 38 -20 19 -29 19 -29 1 0 -16 -27 -29 -42 -20 -5 3 -7 12 -4 19
6 16 -21 28 -30 13z m76 -108 c-12 -22 -30 -18 -30 6 0 8 9 14 20 14 18 0 19
-3 10 -20z m-30 -28 c0 -13 -28 -47 -34 -42 -10 10 6 50 20 50 8 0 14 -4 14
-8z m-410 -27 c11 -13 7 -15 -24 -15 -35 0 -49 13 -23 23 22 9 34 7 47 -8z
m96 -42 c-7 -7 -26 7 -26 19 0 6 6 6 15 -2 9 -7 13 -15 11 -17z m435 -13 c-24
-21 -43 -25 -54 -13 -13 12 16 33 47 33 l31 -1 -24 -19z m-285 -85 c18 -13 18
-14 1 -15 -10 0 -25 7 -33 15 -21 21 5 21 32 0z m-80 -242 c3 -10 10 -26 15
-35 12 -24 -5 -31 -45 -18 -41 13 -54 39 -30 57 25 18 54 16 60 -4z m233 -99
c-43 -52 -180 -118 -179 -86 0 7 168 101 184 102 5 0 2 -7 -5 -16z m91 -128
c0 -16 -21 -36 -37 -36 -17 0 -17 47 0 53 17 6 37 -3 37 -17z m-530 -97 c0 -5
-4 -9 -10 -9 -5 0 -10 7 -10 16 0 8 5 12 10 9 6 -3 10 -10 10 -16z m447 -28
c11 -14 19 -30 15 -35 -3 -5 -4 -27 -4 -48 2 -41 -15 -78 -35 -78 -8 0 -13 13
-13 33 0 42 -29 71 -96 96 -55 21 -62 32 -38 55 14 14 28 16 83 10 55 -5 70
-11 88 -33z m86 -15 c3 -8 3 -17 0 -20 -7 -7 -33 13 -33 25 0 15 27 10 33 -5z
m117 -46 c0 -5 -4 -10 -10 -10 -5 0 -10 5 -10 10 0 6 5 10 10 10 6 0 10 -4 10
-10z m-320 -4 c0 -3 -4 -8 -10 -11 -5 -3 -10 -1 -10 4 0 6 5 11 10 11 6 0 10
-2 10 -4z m210 -60 c0 -17 -38 -66 -51 -66 -6 0 -9 8 -7 18 1 9 -1 22 -4 28
-4 6 0 20 10 32 12 15 21 18 34 11 10 -5 18 -16 18 -23z m-252 -112 c26 -18
29 -59 6 -68 -13 -5 -15 -1 -12 19 6 29 7 29 -27 13 -18 -8 -24 -17 -19 -30 9
-28 -26 -22 -63 11 -18 16 -33 33 -33 39 0 32 109 44 148 16z m392 3 c0 -18
-28 -43 -58 -52 -22 -6 -23 -5 -17 16 13 40 75 70 75 36z m-250 -38 c-12 -21
-30 -17 -30 6 0 14 20 25 33 18 4 -2 2 -13 -3 -24z m66 -10 c-6 -31 -40 -68
-64 -69 -19 0 -7 33 26 70 34 38 46 38 38 -1z m-125 -87 c-7 -2 -23 -15 -34
-28 -11 -13 -26 -24 -33 -24 -7 0 -14 -6 -17 -12 -2 -7 -7 -10 -11 -6 -4 3 16
25 45 47 28 23 54 39 58 35 3 -4 0 -9 -8 -12z m-151 -36 c0 -8 -4 -18 -10 -21
-5 -3 -10 3 -10 14 0 12 5 21 10 21 6 0 10 -6 10 -14z"/>
<path d="M250 286 c0 -2 7 -9 15 -16 12 -10 15 -10 15 4 0 9 -7 16 -15 16 -8
0 -15 -2 -15 -4z"/>
<path d="M3575 1419 c-16 -5 -40 -7 -53 -4 -21 5 -23 3 -20 -22 3 -27 6 -28
61 -31 l57 -3 0 36 c0 38 0 38 -45 24z"/>
<path d="M3451 1384 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z"/>
<path d="M3315 1374 l-30 -14 39 3 c22 1 41 8 44 15 5 15 -15 14 -53 -4z"/>
<path d="M2383 1365 c-13 -9 -42 -20 -65 -25 -29 -6 13 -7 127 -4 94 4 316 8
494 9 209 2 327 7 334 14 6 6 9 12 6 14 -2 1 -58 0 -124 -3 -162 -7 -505 -5
-640 4 -93 6 -114 4 -132 -9z"/>
<path d="M961 1061 c-17 -11 -20 -83 -3 -89 7 -2 12 7 12 25 0 16 5 34 12 41
16 16 -2 34 -21 23z"/>
<path d="M3485 915 c-14 -13 -25 -29 -25 -35 0 -6 -12 -9 -27 -8 -22 2 -28 -1
-28 -17 0 -17 6 -20 42 -17 32 3 42 0 38 -10 -9 -22 -55 -39 -76 -28 -30 17
-41 12 -37 -17 2 -20 9 -28 22 -28 12 0 22 -12 30 -35 12 -37 15 -38 83 -24
35 7 49 35 30 64 -9 15 -7 22 14 39 23 20 23 20 3 21 -11 0 -28 8 -38 18 -15
18 -15 21 5 46 21 26 20 56 -1 56 -6 0 -22 -11 -35 -25z"/>
<path d="M3577 914 c-9 -10 15 -54 30 -54 16 0 17 14 3 41 -11 19 -22 24 -33
13z"/>
<path d="M3297 773 c-4 -3 -7 -15 -7 -25 0 -10 -6 -18 -12 -19 -7 0 14 -9 47
-20 34 -10 63 -15 68 -10 10 10 -25 33 -44 29 -7 -2 -18 7 -24 20 -16 29 -20
33 -28 25z"/>
<path d="M2140 719 c0 -5 5 -7 10 -4 6 3 10 8 10 11 0 2 -4 4 -10 4 -5 0 -10
-5 -10 -11z"/>
<path d="M2380 697 c0 -4 6 -17 13 -28 10 -17 10 -23 0 -26 -14 -5 -18 -33 -5
-33 12 1 77 58 72 63 -3 3 -19 7 -35 9 -17 2 -33 8 -37 13 -4 6 -8 7 -8 2z"/>
<path d="M3576 681 c-51 -8 -55 -23 -11 -47 31 -17 37 -17 45 -4 8 13 15 63 8
59 -2 -1 -21 -5 -42 -8z"/>
<path d="M2210 676 c0 -14 29 -56 33 -48 10 14 -4 52 -19 52 -8 0 -14 -2 -14
-4z"/>
<path d="M900 660 c8 -5 20 -10 25 -10 6 0 3 5 -5 10 -8 5 -19 10 -25 10 -5 0
-3 -5 5 -10z"/>
<path d="M3160 630 c0 -20 5 -30 15 -30 8 0 15 9 15 20 0 10 8 24 18 29 14 9
11 10 -15 11 -30 0 -33 -3 -33 -30z"/>
<path d="M2128 633 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z"/>
<path d="M2498 633 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z"/>
<path d="M2960 630 c0 -5 4 -10 9 -10 6 0 13 5 16 10 3 6 -1 10 -9 10 -9 0
-16 -4 -16 -10z"/>
<path d="M3237 634 c-13 -13 -7 -22 18 -28 14 -4 25 -13 25 -21 0 -9 9 -15 22
-15 17 0 19 -3 10 -12 -7 -7 -12 -20 -12 -29 0 -10 -7 -25 -16 -33 -14 -15
-13 -16 13 -17 28 -1 66 1 70 5 1 1 5 21 9 45 7 42 6 43 -14 30 -12 -7 -25
-10 -29 -6 -4 5 -1 12 6 16 22 14 8 45 -24 52 -17 4 -39 10 -50 14 -11 3 -24
3 -28 -1z"/>
<path d="M2596 621 c-3 -5 1 -12 9 -15 12 -4 13 -10 6 -25 -6 -10 -7 -21 -4
-25 22 -22 62 36 42 61 -13 15 -45 17 -53 4z"/>
<path d="M3026 621 c-3 -5 1 -11 9 -15 15 -6 29 7 18 18 -9 9 -21 8 -27 -3z"/>
<path d="M2155 600 c-3 -5 -1 -10 4 -10 6 0 11 5 11 10 0 6 -2 10 -4 10 -3 0
-8 -4 -11 -10z"/>
<path d="M2550 585 c-8 -9 -8 -15 -2 -15 12 0 26 19 19 26 -2 2 -10 -2 -17
-11z"/>
<path d="M2808 593 c6 -2 12 -11 12 -18 0 -21 19 -28 34 -12 13 12 11 16 -10
26 -14 6 -30 11 -37 10 -9 0 -9 -2 1 -6z"/>
<path d="M3595 579 c-5 -14 -1 -27 9 -37 15 -15 16 -13 16 21 0 40 -15 50 -25
16z"/>
<path d="M2741 574 c-12 -14 -12 -17 0 -25 22 -14 27 -11 21 16 -2 14 -5 25
-6 25 0 -1 -7 -8 -15 -16z"/>
<path d="M2978 548 c-2 -19 -8 -22 -33 -20 -16 2 -35 8 -41 13 -13 11 -26 -12
-16 -27 13 -18 94 -9 109 11 15 21 13 37 -4 42 -6 2 -13 -6 -15 -19z"/>
<path d="M3145 560 c-3 -5 -19 -10 -35 -10 -16 0 -32 -5 -35 -10 -5 -8 -11 -7
-21 1 -10 8 -14 8 -14 1 0 -20 39 -35 55 -22 8 6 23 9 34 5 14 -4 23 0 30 14
6 11 11 22 11 25 0 10 -18 7 -25 -4z"/>
<path d="M3549 528 c-1 -13 0 -33 1 -45 1 -13 -7 -26 -19 -32 -27 -15 -31 -14
-31 9 0 23 -3 24 -30 8 -17 -11 -22 -10 -29 0 -5 9 -14 10 -32 3 -13 -5 -18
-10 -11 -10 6 -1 12 -8 12 -16 0 -11 -7 -13 -28 -9 -42 8 -60 -18 -33 -45 19
-19 24 -20 54 -8 22 10 40 11 60 5 30 -11 35 -25 12 -34 -22 -9 -18 -22 8 -30
12 -3 30 -15 40 -25 17 -18 17 -19 -13 -19 -35 0 -40 -15 -8 -26 21 -6 21 -7
-7 -21 -18 -10 -41 -13 -66 -9 -20 3 -45 3 -53 0 -23 -9 -20 -34 4 -34 17 0
19 -3 10 -19 -8 -16 -5 -21 22 -30 17 -6 39 -11 49 -11 11 0 19 -6 19 -14 0
-20 58 -66 75 -60 14 6 10 34 -6 34 -5 0 -9 5 -9 10 0 6 10 10 21 10 17 0 19
3 10 14 -14 17 -4 46 15 46 8 0 19 12 24 26 14 36 13 43 -10 37 -16 -4 -20 0
-20 20 0 14 -6 28 -12 30 -10 4 -10 6 0 6 24 2 12 17 -24 30 -41 15 -40 38 2
32 39 -4 41 -6 49 -41 12 -56 24 -30 23 50 l-1 79 -29 -20 c-19 -14 -35 -18
-50 -13 l-22 7 25 20 c13 11 36 24 52 29 15 6 27 16 27 24 0 10 -9 14 -27 12
-25 -3 -28 0 -25 25 2 15 -1 27 -7 27 -6 0 -11 -10 -12 -22z m9 -333 c9 -9 -8
-19 -33 -20 -14 0 -24 -4 -23 -10 2 -5 9 -9 16 -9 6 1 12 -9 12 -22 0 -13 -3
-24 -6 -24 -12 0 -114 65 -114 72 0 5 8 8 18 8 9 0 28 6 42 13 23 12 73 8 88
-8z"/>
<path d="M3205 520 c-18 -20 -11 -25 19 -14 17 6 23 34 8 34 -5 0 -17 -9 -27
-20z"/>
<path d="M3500 530 c0 -5 10 -10 23 -10 18 0 19 2 7 10 -19 13 -30 13 -30 0z"/>
<path d="M2560 510 c0 -13 7 -20 19 -20 30 0 33 16 6 28 -22 10 -25 9 -25 -8z"/>
<path d="M2705 520 c4 -6 11 -8 16 -5 14 9 11 15 -7 15 -8 0 -12 -5 -9 -10z"/>
<path d="M2478 503 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z"/>
<path d="M2828 496 c-10 -7 -18 -18 -18 -24 0 -6 -6 -12 -12 -15 -10 -3 -9 -9
3 -23 28 -34 30 -43 9 -37 -28 7 -17 -19 14 -33 19 -9 27 -7 50 13 26 22 26
23 5 23 -17 0 -20 4 -16 20 3 14 -1 25 -13 33 -14 8 -16 15 -9 24 17 19 6 33
-13 19z"/>
<path d="M2624 425 c10 -7 15 -18 11 -24 -10 -17 21 -13 35 4 17 21 4 35 -33
35 -30 -1 -31 -2 -13 -15z"/>
<path d="M2270 390 c0 -5 7 -7 15 -4 8 4 15 8 15 10 0 2 -7 4 -15 4 -8 0 -15
-4 -15 -10z"/>
<path d="M2332 387 c15 -10 15 -12 -5 -24 -12 -7 -37 -19 -54 -28 -26 -12 -33
-21 -33 -45 0 -34 5 -37 26 -15 21 21 34 19 34 -5 0 -35 43 -43 100 -18 28 12
50 28 50 35 0 7 -4 13 -10 13 -5 0 -10 4 -10 9 0 5 8 7 19 4 11 -3 21 2 24 11
4 10 1 16 -7 16 -7 0 -32 14 -54 30 -24 17 -54 30 -69 29 -24 0 -26 -2 -11
-12z m-2 -71 c0 -9 -7 -12 -20 -9 -11 3 -20 9 -20 14 0 5 9 9 20 9 11 0 20 -6
20 -14z"/>
<path d="M2540 391 c0 -5 11 -16 25 -25 23 -15 26 -15 31 -1 8 19 6 20 -28 29
-16 3 -28 2 -28 -3z"/>
<path d="M3004 379 c-8 -13 25 -24 37 -12 7 7 3 12 -10 16 -12 3 -24 1 -27 -4z"/>
<path d="M3280 384 c0 -17 18 -36 30 -32 7 2 4 10 -9 22 -12 11 -21 15 -21 10z"/>
<path d="M3177 366 c-3 -8 0 -17 7 -19 18 -7 40 8 32 22 -10 16 -33 14 -39 -3z"/>
<path d="M3342 361 c-11 -7 -10 -10 3 -15 23 -9 25 -8 25 9 0 17 -9 19 -28 6z"/>
<path d="M3080 347 c0 -7 -16 -19 -35 -26 -19 -7 -35 -16 -35 -21 0 -5 6 -7
14 -4 8 3 19 -3 26 -15 9 -19 8 -21 -14 -21 -13 0 -26 7 -30 15 -6 17 -36 21
-36 5 0 -5 4 -10 10 -10 5 0 7 -7 4 -15 -4 -10 -11 -12 -18 -7 -17 13 -56 21
-56 12 0 -5 5 -12 10 -15 17 -11 11 -25 -11 -25 -25 0 -49 -22 -49 -45 0 -9
-9 -19 -20 -22 -11 -3 -20 -13 -20 -23 0 -32 36 -11 54 31 10 21 24 39 31 39
7 0 20 3 29 6 11 4 16 0 16 -14 0 -12 5 -24 10 -27 6 -3 10 -17 10 -30 0 -18
-7 -25 -30 -30 -32 -7 -37 -20 -16 -47 16 -22 36 -23 62 -3 18 13 16 14 -21
15 -26 1 -34 4 -22 8 29 12 59 70 52 102 -7 32 6 46 57 55 28 5 37 12 41 31 2
14 0 27 -5 30 -5 3 -6 19 -3 35 4 16 4 29 1 29 -3 0 -6 -6 -6 -13z"/>
<path d="M3128 353 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z"/>
<path d="M2545 340 c-4 -6 -1 -18 6 -26 10 -13 10 -17 -2 -25 -12 -7 -11 -9 3
-9 22 0 27 10 21 43 -5 28 -17 35 -28 17z"/>
<path d="M1010 330 c0 -5 5 -10 11 -10 5 0 7 5 4 10 -3 6 -8 10 -11 10 -2 0
-4 -4 -4 -10z"/>
<path d="M2950 325 c0 -9 6 -12 15 -9 8 4 15 10 15 15 0 5 -7 9 -15 9 -8 0
-15 -7 -15 -15z"/>
<path d="M3242 319 c2 -7 16 -13 31 -15 15 -1 42 -12 60 -23 l32 -19 2 28 c2
32 -14 40 -85 40 -28 0 -42 -4 -40 -11z"/>
<path d="M2788 307 c-7 -8 -20 -17 -28 -20 -8 -4 3 -4 25 0 47 7 49 8 40 22
-8 15 -21 14 -37 -2z"/>
<path d="M2850 294 c-9 -21 -8 -31 4 -42 13 -14 16 -12 27 11 10 21 9 29 -5
42 -15 15 -17 14 -26 -11z"/>
<path d="M2475 280 c3 -5 13 -10 21 -10 8 0 14 5 14 10 0 6 -9 10 -21 10 -11
0 -17 -4 -14 -10z"/>
<path d="M2625 281 c-6 -5 -17 -11 -25 -14 -8 -2 -2 -3 15 -1 32 5 60 24 34
24 -8 0 -19 -4 -24 -9z"/>
<path d="M2675 277 c-15 -12 -15 -14 -2 -26 12 -9 21 -10 36 -1 26 13 26 17 2
29 -13 7 -23 6 -36 -2z"/>
<path d="M3179 249 c-11 -7 -9 -9 9 -9 30 0 28 -16 -3 -24 -31 -8 -53 -49 -37
-69 9 -10 8 -18 -2 -33 -9 -12 -11 -27 -5 -41 9 -24 24 -30 34 -13 8 14 41 13
65 -2 10 -7 22 -9 25 -6 12 12 -16 48 -43 54 -64 16 -72 60 -16 93 19 12 34
26 32 33 -6 17 -43 28 -59 17z"/>
<path d="M790 231 c0 -6 5 -11 10 -11 20 0 10 -39 -15 -58 -14 -11 -54 -26
-90 -33 -69 -13 -81 -25 -40 -35 14 -3 25 -12 25 -19 0 -17 23 -25 41 -14 10
6 10 9 2 9 -31 0 -8 27 42 50 46 21 54 29 60 58 3 19 5 35 3 36 -2 1 -11 8
-20 15 -12 9 -18 10 -18 2z"/>
<path d="M2505 230 c-3 -5 1 -10 9 -10 9 0 16 5 16 10 0 6 -4 10 -9 10 -6 0
-13 -4 -16 -10z"/>
<path d="M2634 229 c-3 -6 -1 -15 6 -19 17 -11 5 -41 -20 -47 -21 -6 -26 -18
-10 -28 15 -9 122 44 117 58 -2 6 -13 11 -25 9 -13 -2 -25 5 -32 17 -12 23
-25 27 -36 10z"/>
<path d="M3280 226 c0 -8 4 -17 9 -20 10 -7 23 19 14 28 -11 11 -23 6 -23 -8z"/>
<path d="M2439 214 c-12 -14 -11 -16 5 -13 11 2 21 10 24 17 5 17 -13 15 -29
-4z"/>
<path d="M2785 214 c-18 -18 -16 -35 5 -42 7 -3 10 0 6 6 -4 7 -2 21 4 32 13
24 7 26 -15 4z"/>
<path d="M2354 174 c-7 -28 13 -58 32 -46 6 4 15 22 19 40 6 30 5 32 -19 32
-19 0 -27 -6 -32 -26z"/>
<path d="M2905 140 c-3 -5 -1 -10 4 -10 6 0 11 5 11 10 0 6 -2 10 -4 10 -3 0
-8 -4 -11 -10z"/>
<path d="M820 115 c0 -8 5 -15 10 -15 6 0 10 7 10 15 0 8 -4 15 -10 15 -5 0
-10 -7 -10 -15z"/>
<path d="M3010 115 c-7 -9 -10 -18 -7 -22 8 -7 37 15 37 28 0 14 -16 11 -30
-6z"/>
<path d="M530 96 c0 -9 5 -16 10 -16 6 0 10 4 10 9 0 6 -4 13 -10 16 -5 3 -10
-1 -10 -9z"/>
<path d="M2610 90 c0 -5 5 -10 10 -10 6 0 10 5 10 10 0 6 -4 10 -10 10 -5 0
-10 -4 -10 -10z"/>
<path d="M2658 76 c-10 -7 -18 -16 -18 -20 0 -11 35 -7 48 6 27 27 2 39 -30
14z"/>
<path d="M773 73 c-13 -2 -23 -9 -23 -14 0 -14 24 -11 46 6 19 15 16 16 -23 8z"/>
<path d="M2273 73 c-20 -8 -15 -23 7 -23 11 0 20 7 20 15 0 15 -6 17 -27 8z"/>
<path d="M2840 70 c-21 -13 0 -31 28 -24 12 4 22 13 22 20 0 16 -28 18 -50 4z"/>
<path d="M588 63 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z"/>
<path d="M2360 59 c0 -5 5 -7 10 -4 6 3 10 8 10 11 0 2 -4 4 -10 4 -5 0 -10
-5 -10 -11z"/>
<path d="M3080 61 c0 -5 7 -11 15 -15 9 -3 15 0 15 9 0 8 -7 15 -15 15 -8 0
-15 -4 -15 -9z"/>
<path d="M3468 63 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 645 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 230 KiB

@ -0,0 +1,596 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="920px" height="512px" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" xmlns:xlink="http://www.w3.org/1999/xlink">
<g><path style="opacity:1" fill="#fefffe" d="M -0.5,-0.5 C 4.5,-0.5 9.5,-0.5 14.5,-0.5C 14.5,4.5 14.5,9.5 14.5,14.5C 9.5,14.5 4.5,14.5 -0.5,14.5C -0.5,9.5 -0.5,4.5 -0.5,-0.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 14.5,-0.5 C 19.5,-0.5 24.5,-0.5 29.5,-0.5C 29.5,4.5 29.5,9.5 29.5,14.5C 24.5,14.5 19.5,14.5 14.5,14.5C 14.5,9.5 14.5,4.5 14.5,-0.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 29.5,-0.5 C 34.5,-0.5 39.5,-0.5 44.5,-0.5C 44.5,4.5 44.5,9.5 44.5,14.5C 39.5,14.5 34.5,14.5 29.5,14.5C 29.5,9.5 29.5,4.5 29.5,-0.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 44.5,-0.5 C 49.5,-0.5 54.5,-0.5 59.5,-0.5C 59.5,4.5 59.5,9.5 59.5,14.5C 54.5,14.5 49.5,14.5 44.5,14.5C 44.5,9.5 44.5,4.5 44.5,-0.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 59.5,-0.5 C 64.5,-0.5 69.5,-0.5 74.5,-0.5C 74.5,4.5 74.5,9.5 74.5,14.5C 69.5,14.5 64.5,14.5 59.5,14.5C 59.5,9.5 59.5,4.5 59.5,-0.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 74.5,-0.5 C 79.5,-0.5 84.5,-0.5 89.5,-0.5C 89.5,4.5 89.5,9.5 89.5,14.5C 84.5,14.5 79.5,14.5 74.5,14.5C 74.5,9.5 74.5,4.5 74.5,-0.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 89.5,-0.5 C 94.5,-0.5 99.5,-0.5 104.5,-0.5C 104.5,4.5 104.5,9.5 104.5,14.5C 99.5,14.5 94.5,14.5 89.5,14.5C 89.5,9.5 89.5,4.5 89.5,-0.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 104.5,-0.5 C 109.5,-0.5 114.5,-0.5 119.5,-0.5C 119.5,4.5 119.5,9.5 119.5,14.5C 114.5,14.5 109.5,14.5 104.5,14.5C 104.5,9.5 104.5,4.5 104.5,-0.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 119.5,-0.5 C 124.5,-0.5 129.5,-0.5 134.5,-0.5C 134.5,4.5 134.5,9.5 134.5,14.5C 129.5,14.5 124.5,14.5 119.5,14.5C 119.5,9.5 119.5,4.5 119.5,-0.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 134.5,-0.5 C 139.5,-0.5 144.5,-0.5 149.5,-0.5C 149.5,4.5 149.5,9.5 149.5,14.5C 144.5,14.5 139.5,14.5 134.5,14.5C 134.5,9.5 134.5,4.5 134.5,-0.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 149.5,-0.5 C 154.5,-0.5 159.5,-0.5 164.5,-0.5C 164.5,4.5 164.5,9.5 164.5,14.5C 159.5,14.5 154.5,14.5 149.5,14.5C 149.5,9.5 149.5,4.5 149.5,-0.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 164.5,-0.5 C 169.5,-0.5 174.5,-0.5 179.5,-0.5C 179.5,4.5 179.5,9.5 179.5,14.5C 174.5,14.5 169.5,14.5 164.5,14.5C 164.5,9.5 164.5,4.5 164.5,-0.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 179.5,-0.5 C 184.5,-0.5 189.5,-0.5 194.5,-0.5C 194.5,4.5 194.5,9.5 194.5,14.5C 189.5,14.5 184.5,14.5 179.5,14.5C 179.5,9.5 179.5,4.5 179.5,-0.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 194.5,-0.5 C 199.5,-0.5 204.5,-0.5 209.5,-0.5C 209.5,4.5 209.5,9.5 209.5,14.5C 204.5,14.5 199.5,14.5 194.5,14.5C 194.5,9.5 194.5,4.5 194.5,-0.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 209.5,-0.5 C 214.5,-0.5 219.5,-0.5 224.5,-0.5C 224.5,4.5 224.5,9.5 224.5,14.5C 219.5,14.5 214.5,14.5 209.5,14.5C 209.5,9.5 209.5,4.5 209.5,-0.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 224.5,-0.5 C 229.5,-0.5 234.5,-0.5 239.5,-0.5C 239.5,4.5 239.5,9.5 239.5,14.5C 234.5,14.5 229.5,14.5 224.5,14.5C 224.5,9.5 224.5,4.5 224.5,-0.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 239.5,-0.5 C 244.5,-0.5 249.5,-0.5 254.5,-0.5C 254.5,4.5 254.5,9.5 254.5,14.5C 249.5,14.5 244.5,14.5 239.5,14.5C 239.5,9.5 239.5,4.5 239.5,-0.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 254.5,-0.5 C 259.5,-0.5 264.5,-0.5 269.5,-0.5C 269.5,4.5 269.5,9.5 269.5,14.5C 264.5,14.5 259.5,14.5 254.5,14.5C 254.5,9.5 254.5,4.5 254.5,-0.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 269.5,-0.5 C 274.5,-0.5 279.5,-0.5 284.5,-0.5C 284.5,4.5 284.5,9.5 284.5,14.5C 279.5,14.5 274.5,14.5 269.5,14.5C 269.5,9.5 269.5,4.5 269.5,-0.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 284.5,-0.5 C 289.5,-0.5 294.5,-0.5 299.5,-0.5C 299.5,4.5 299.5,9.5 299.5,14.5C 294.5,14.5 289.5,14.5 284.5,14.5C 284.5,9.5 284.5,4.5 284.5,-0.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 299.5,-0.5 C 304.5,-0.5 309.5,-0.5 314.5,-0.5C 314.5,4.5 314.5,9.5 314.5,14.5C 309.5,14.5 304.5,14.5 299.5,14.5C 299.5,9.5 299.5,4.5 299.5,-0.5 Z"/></g>
<g><path style="opacity:1" fill="#f9f9f9" d="M 899.5,-0.5 C 906.167,-0.5 912.833,-0.5 919.5,-0.5C 919.5,170.167 919.5,340.833 919.5,511.5C 912.833,511.5 906.167,511.5 899.5,511.5C 899.5,510.833 899.5,510.167 899.5,509.5C 904.5,509.5 909.5,509.5 914.5,509.5C 914.5,504.5 914.5,499.5 914.5,494.5C 909.5,494.5 904.5,494.5 899.5,494.5C 899.5,489.5 899.5,484.5 899.5,479.5C 904.5,479.5 909.5,479.5 914.5,479.5C 914.5,474.5 914.5,469.5 914.5,464.5C 909.5,464.5 904.5,464.5 899.5,464.5C 899.5,459.5 899.5,454.5 899.5,449.5C 904.5,449.5 909.5,449.5 914.5,449.5C 914.5,444.5 914.5,439.5 914.5,434.5C 909.5,434.5 904.5,434.5 899.5,434.5C 899.5,429.5 899.5,424.5 899.5,419.5C 904.5,419.5 909.5,419.5 914.5,419.5C 914.5,414.5 914.5,409.5 914.5,404.5C 909.5,404.5 904.5,404.5 899.5,404.5C 899.5,399.5 899.5,394.5 899.5,389.5C 904.5,389.5 909.5,389.5 914.5,389.5C 914.5,384.5 914.5,379.5 914.5,374.5C 909.5,374.5 904.5,374.5 899.5,374.5C 899.5,369.5 899.5,364.5 899.5,359.5C 904.5,359.5 909.5,359.5 914.5,359.5C 914.5,354.5 914.5,349.5 914.5,344.5C 909.5,344.5 904.5,344.5 899.5,344.5C 899.5,339.5 899.5,334.5 899.5,329.5C 904.5,329.5 909.5,329.5 914.5,329.5C 914.5,324.5 914.5,319.5 914.5,314.5C 909.5,314.5 904.5,314.5 899.5,314.5C 899.5,309.5 899.5,304.5 899.5,299.5C 904.5,299.5 909.5,299.5 914.5,299.5C 914.5,294.5 914.5,289.5 914.5,284.5C 909.5,284.5 904.5,284.5 899.5,284.5C 899.5,279.5 899.5,274.5 899.5,269.5C 904.5,269.5 909.5,269.5 914.5,269.5C 914.5,264.5 914.5,259.5 914.5,254.5C 909.5,254.5 904.5,254.5 899.5,254.5C 899.5,249.5 899.5,244.5 899.5,239.5C 904.5,239.5 909.5,239.5 914.5,239.5C 914.5,234.5 914.5,229.5 914.5,224.5C 909.5,224.5 904.5,224.5 899.5,224.5C 899.5,219.5 899.5,214.5 899.5,209.5C 904.5,209.5 909.5,209.5 914.5,209.5C 914.5,204.5 914.5,199.5 914.5,194.5C 909.5,194.5 904.5,194.5 899.5,194.5C 899.5,189.5 899.5,184.5 899.5,179.5C 904.5,179.5 909.5,179.5 914.5,179.5C 914.5,174.5 914.5,169.5 914.5,164.5C 909.5,164.5 904.5,164.5 899.5,164.5C 899.5,159.5 899.5,154.5 899.5,149.5C 904.5,149.5 909.5,149.5 914.5,149.5C 914.5,144.5 914.5,139.5 914.5,134.5C 909.5,134.5 904.5,134.5 899.5,134.5C 899.5,129.5 899.5,124.5 899.5,119.5C 904.5,119.5 909.5,119.5 914.5,119.5C 914.5,114.5 914.5,109.5 914.5,104.5C 909.5,104.5 904.5,104.5 899.5,104.5C 899.5,99.5 899.5,94.5 899.5,89.5C 904.5,89.5 909.5,89.5 914.5,89.5C 914.5,84.5 914.5,79.5 914.5,74.5C 909.5,74.5 904.5,74.5 899.5,74.5C 899.5,69.5 899.5,64.5 899.5,59.5C 904.5,59.5 909.5,59.5 914.5,59.5C 914.5,54.5 914.5,49.5 914.5,44.5C 909.5,44.5 904.5,44.5 899.5,44.5C 899.5,39.5 899.5,34.5 899.5,29.5C 904.5,29.5 909.5,29.5 914.5,29.5C 914.5,24.5 914.5,19.5 914.5,14.5C 909.5,14.5 904.5,14.5 899.5,14.5C 899.5,9.5 899.5,4.5 899.5,-0.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M -0.5,14.5 C 4.5,14.5 9.5,14.5 14.5,14.5C 14.5,19.5 14.5,24.5 14.5,29.5C 9.5,29.5 4.5,29.5 -0.5,29.5C -0.5,24.5 -0.5,19.5 -0.5,14.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 14.5,14.5 C 19.5,14.5 24.5,14.5 29.5,14.5C 29.5,19.5 29.5,24.5 29.5,29.5C 24.5,29.5 19.5,29.5 14.5,29.5C 14.5,24.5 14.5,19.5 14.5,14.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 29.5,14.5 C 34.5,14.5 39.5,14.5 44.5,14.5C 44.5,19.5 44.5,24.5 44.5,29.5C 39.5,29.5 34.5,29.5 29.5,29.5C 29.5,24.5 29.5,19.5 29.5,14.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 44.5,14.5 C 49.5,14.5 54.5,14.5 59.5,14.5C 59.5,19.5 59.5,24.5 59.5,29.5C 54.5,29.5 49.5,29.5 44.5,29.5C 44.5,24.5 44.5,19.5 44.5,14.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 59.5,14.5 C 64.5,14.5 69.5,14.5 74.5,14.5C 74.5,19.5 74.5,24.5 74.5,29.5C 69.5,29.5 64.5,29.5 59.5,29.5C 59.5,24.5 59.5,19.5 59.5,14.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 74.5,14.5 C 79.5,14.5 84.5,14.5 89.5,14.5C 89.5,19.5 89.5,24.5 89.5,29.5C 84.5,29.5 79.5,29.5 74.5,29.5C 74.5,24.5 74.5,19.5 74.5,14.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 89.5,14.5 C 94.5,14.5 99.5,14.5 104.5,14.5C 104.5,19.5 104.5,24.5 104.5,29.5C 99.5,29.5 94.5,29.5 89.5,29.5C 89.5,24.5 89.5,19.5 89.5,14.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 104.5,14.5 C 109.5,14.5 114.5,14.5 119.5,14.5C 119.5,19.5 119.5,24.5 119.5,29.5C 114.5,29.5 109.5,29.5 104.5,29.5C 104.5,24.5 104.5,19.5 104.5,14.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 119.5,14.5 C 124.5,14.5 129.5,14.5 134.5,14.5C 134.5,19.5 134.5,24.5 134.5,29.5C 129.5,29.5 124.5,29.5 119.5,29.5C 119.5,24.5 119.5,19.5 119.5,14.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 134.5,14.5 C 139.5,14.5 144.5,14.5 149.5,14.5C 149.5,19.5 149.5,24.5 149.5,29.5C 144.5,29.5 139.5,29.5 134.5,29.5C 134.5,24.5 134.5,19.5 134.5,14.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 149.5,14.5 C 154.5,14.5 159.5,14.5 164.5,14.5C 164.5,19.5 164.5,24.5 164.5,29.5C 159.5,29.5 154.5,29.5 149.5,29.5C 149.5,24.5 149.5,19.5 149.5,14.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 164.5,14.5 C 169.5,14.5 174.5,14.5 179.5,14.5C 179.5,19.5 179.5,24.5 179.5,29.5C 174.5,29.5 169.5,29.5 164.5,29.5C 164.5,24.5 164.5,19.5 164.5,14.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 179.5,14.5 C 184.5,14.5 189.5,14.5 194.5,14.5C 194.5,19.5 194.5,24.5 194.5,29.5C 189.5,29.5 184.5,29.5 179.5,29.5C 179.5,24.5 179.5,19.5 179.5,14.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 194.5,14.5 C 199.5,14.5 204.5,14.5 209.5,14.5C 209.5,19.5 209.5,24.5 209.5,29.5C 204.5,29.5 199.5,29.5 194.5,29.5C 194.5,24.5 194.5,19.5 194.5,14.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 209.5,14.5 C 214.5,14.5 219.5,14.5 224.5,14.5C 224.5,19.5 224.5,24.5 224.5,29.5C 219.5,29.5 214.5,29.5 209.5,29.5C 209.5,24.5 209.5,19.5 209.5,14.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 224.5,14.5 C 229.5,14.5 234.5,14.5 239.5,14.5C 239.5,19.5 239.5,24.5 239.5,29.5C 234.5,29.5 229.5,29.5 224.5,29.5C 224.5,24.5 224.5,19.5 224.5,14.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 239.5,14.5 C 244.5,14.5 249.5,14.5 254.5,14.5C 254.5,19.5 254.5,24.5 254.5,29.5C 249.5,29.5 244.5,29.5 239.5,29.5C 239.5,24.5 239.5,19.5 239.5,14.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 254.5,14.5 C 259.5,14.5 264.5,14.5 269.5,14.5C 269.5,19.5 269.5,24.5 269.5,29.5C 264.5,29.5 259.5,29.5 254.5,29.5C 254.5,24.5 254.5,19.5 254.5,14.5 Z"/></g>
<g><path style="opacity:1" fill="#f1f1f1" d="M 314.5,-0.5 C 509.5,-0.5 704.5,-0.5 899.5,-0.5C 899.5,4.5 899.5,9.5 899.5,14.5C 904.5,14.5 909.5,14.5 914.5,14.5C 914.5,19.5 914.5,24.5 914.5,29.5C 909.5,29.5 904.5,29.5 899.5,29.5C 899.5,34.5 899.5,39.5 899.5,44.5C 904.5,44.5 909.5,44.5 914.5,44.5C 914.5,49.5 914.5,54.5 914.5,59.5C 909.5,59.5 904.5,59.5 899.5,59.5C 899.5,64.5 899.5,69.5 899.5,74.5C 904.5,74.5 909.5,74.5 914.5,74.5C 914.5,79.5 914.5,84.5 914.5,89.5C 909.5,89.5 904.5,89.5 899.5,89.5C 899.5,94.5 899.5,99.5 899.5,104.5C 904.5,104.5 909.5,104.5 914.5,104.5C 914.5,109.5 914.5,114.5 914.5,119.5C 909.5,119.5 904.5,119.5 899.5,119.5C 899.5,124.5 899.5,129.5 899.5,134.5C 904.5,134.5 909.5,134.5 914.5,134.5C 914.5,139.5 914.5,144.5 914.5,149.5C 909.5,149.5 904.5,149.5 899.5,149.5C 899.5,154.5 899.5,159.5 899.5,164.5C 904.5,164.5 909.5,164.5 914.5,164.5C 914.5,169.5 914.5,174.5 914.5,179.5C 909.5,179.5 904.5,179.5 899.5,179.5C 899.5,184.5 899.5,189.5 899.5,194.5C 904.5,194.5 909.5,194.5 914.5,194.5C 914.5,199.5 914.5,204.5 914.5,209.5C 909.5,209.5 904.5,209.5 899.5,209.5C 899.5,214.5 899.5,219.5 899.5,224.5C 904.5,224.5 909.5,224.5 914.5,224.5C 914.5,229.5 914.5,234.5 914.5,239.5C 909.5,239.5 904.5,239.5 899.5,239.5C 899.5,244.5 899.5,249.5 899.5,254.5C 904.5,254.5 909.5,254.5 914.5,254.5C 914.5,259.5 914.5,264.5 914.5,269.5C 909.5,269.5 904.5,269.5 899.5,269.5C 899.5,274.5 899.5,279.5 899.5,284.5C 904.5,284.5 909.5,284.5 914.5,284.5C 914.5,289.5 914.5,294.5 914.5,299.5C 909.5,299.5 904.5,299.5 899.5,299.5C 899.5,304.5 899.5,309.5 899.5,314.5C 904.5,314.5 909.5,314.5 914.5,314.5C 914.5,319.5 914.5,324.5 914.5,329.5C 909.5,329.5 904.5,329.5 899.5,329.5C 899.5,334.5 899.5,339.5 899.5,344.5C 904.5,344.5 909.5,344.5 914.5,344.5C 914.5,349.5 914.5,354.5 914.5,359.5C 909.5,359.5 904.5,359.5 899.5,359.5C 899.5,364.5 899.5,369.5 899.5,374.5C 904.5,374.5 909.5,374.5 914.5,374.5C 914.5,379.5 914.5,384.5 914.5,389.5C 909.5,389.5 904.5,389.5 899.5,389.5C 899.5,394.5 899.5,399.5 899.5,404.5C 904.5,404.5 909.5,404.5 914.5,404.5C 914.5,409.5 914.5,414.5 914.5,419.5C 909.5,419.5 904.5,419.5 899.5,419.5C 899.5,424.5 899.5,429.5 899.5,434.5C 904.5,434.5 909.5,434.5 914.5,434.5C 914.5,439.5 914.5,444.5 914.5,449.5C 909.5,449.5 904.5,449.5 899.5,449.5C 899.5,454.5 899.5,459.5 899.5,464.5C 894.5,464.5 889.5,464.5 884.5,464.5C 884.5,459.5 884.5,454.5 884.5,449.5C 879.5,449.5 874.5,449.5 869.5,449.5C 869.5,444.5 869.5,439.5 869.5,434.5C 864.5,434.5 859.5,434.5 854.5,434.5C 854.5,429.5 854.5,424.5 854.5,419.5C 849.5,419.5 844.5,419.5 839.5,419.5C 839.5,414.5 839.5,409.5 839.5,404.5C 834.5,404.5 829.5,404.5 824.5,404.5C 824.5,399.5 824.5,394.5 824.5,389.5C 819.5,389.5 814.5,389.5 809.5,389.5C 809.5,384.5 809.5,379.5 809.5,374.5C 804.5,374.5 799.5,374.5 794.5,374.5C 794.5,369.5 794.5,364.5 794.5,359.5C 789.5,359.5 784.5,359.5 779.5,359.5C 779.5,354.5 779.5,349.5 779.5,344.5C 774.5,344.5 769.5,344.5 764.5,344.5C 764.5,339.5 764.5,334.5 764.5,329.5C 759.5,329.5 754.5,329.5 749.5,329.5C 749.5,324.5 749.5,319.5 749.5,314.5C 744.5,314.5 739.5,314.5 734.5,314.5C 734.5,309.5 734.5,304.5 734.5,299.5C 729.5,299.5 724.5,299.5 719.5,299.5C 719.5,294.5 719.5,289.5 719.5,284.5C 714.5,284.5 709.5,284.5 704.5,284.5C 704.5,279.5 704.5,274.5 704.5,269.5C 704.5,264.5 704.5,259.5 704.5,254.5C 704.5,249.5 704.5,244.5 704.5,239.5C 699.5,239.5 694.5,239.5 689.5,239.5C 689.5,234.5 689.5,229.5 689.5,224.5C 684.5,224.5 679.5,224.5 674.5,224.5C 674.5,219.5 674.5,214.5 674.5,209.5C 669.5,209.5 664.5,209.5 659.5,209.5C 659.5,204.5 659.5,199.5 659.5,194.5C 654.5,194.5 649.5,194.5 644.5,194.5C 644.665,198.182 644.499,201.848 644,205.5C 642.494,203.935 640.994,203.601 639.5,204.5C 543.861,149.678 448.194,94.8451 352.5,40C 336.076,29.3184 318.41,26.3184 299.5,31C 286.275,37.3836 277.608,47.5503 273.5,61.5C 272.817,59.8235 271.483,59.1568 269.5,59.5C 269.5,64.5 269.5,69.5 269.5,74.5C 264.5,74.5 259.5,74.5 254.5,74.5C 254.5,69.5 254.5,64.5 254.5,59.5C 254.5,54.5 254.5,49.5 254.5,44.5C 254.5,39.5 254.5,34.5 254.5,29.5C 259.5,29.5 264.5,29.5 269.5,29.5C 269.5,24.5 269.5,19.5 269.5,14.5C 274.5,14.5 279.5,14.5 284.5,14.5C 289.5,14.5 294.5,14.5 299.5,14.5C 304.5,14.5 309.5,14.5 314.5,14.5C 314.5,9.5 314.5,4.5 314.5,-0.5 Z"/></g>
<g><path style="opacity:1" fill="#1c1c1a" d="M 639.5,204.5 C 650.479,209.989 660.813,216.489 670.5,224C 695.217,249.303 694.217,273.637 667.5,297C 664.433,299.188 661.433,301.355 658.5,303.5C 624.138,322.677 590.138,342.343 556.5,362.5C 519.671,382.411 483.338,403.078 447.5,424.5C 432.903,432.442 418.569,440.775 404.5,449.5C 393.502,454.997 382.835,460.997 372.5,467.5C 360.325,474.755 347.658,481.255 334.5,487C 312.468,494.788 294.301,489.622 280,471.5C 274.635,461.352 271.469,450.685 270.5,439.5C 270.333,318.833 270.5,198.166 271,77.5C 271.771,72.1454 272.605,66.812 273.5,61.5C 277.608,47.5503 286.275,37.3836 299.5,31C 318.41,26.3184 336.076,29.3184 352.5,40C 448.194,94.8451 543.861,149.678 639.5,204.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M -0.5,29.5 C 4.5,29.5 9.5,29.5 14.5,29.5C 14.5,34.5 14.5,39.5 14.5,44.5C 9.5,44.5 4.5,44.5 -0.5,44.5C -0.5,39.5 -0.5,34.5 -0.5,29.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 14.5,29.5 C 19.5,29.5 24.5,29.5 29.5,29.5C 29.5,34.5 29.5,39.5 29.5,44.5C 24.5,44.5 19.5,44.5 14.5,44.5C 14.5,39.5 14.5,34.5 14.5,29.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 29.5,29.5 C 34.5,29.5 39.5,29.5 44.5,29.5C 44.5,34.5 44.5,39.5 44.5,44.5C 39.5,44.5 34.5,44.5 29.5,44.5C 29.5,39.5 29.5,34.5 29.5,29.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 44.5,29.5 C 49.5,29.5 54.5,29.5 59.5,29.5C 59.5,34.5 59.5,39.5 59.5,44.5C 54.5,44.5 49.5,44.5 44.5,44.5C 44.5,39.5 44.5,34.5 44.5,29.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 59.5,29.5 C 64.5,29.5 69.5,29.5 74.5,29.5C 74.5,34.5 74.5,39.5 74.5,44.5C 69.5,44.5 64.5,44.5 59.5,44.5C 59.5,39.5 59.5,34.5 59.5,29.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 74.5,29.5 C 79.5,29.5 84.5,29.5 89.5,29.5C 89.5,34.5 89.5,39.5 89.5,44.5C 84.5,44.5 79.5,44.5 74.5,44.5C 74.5,39.5 74.5,34.5 74.5,29.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 89.5,29.5 C 94.5,29.5 99.5,29.5 104.5,29.5C 104.5,34.5 104.5,39.5 104.5,44.5C 99.5,44.5 94.5,44.5 89.5,44.5C 89.5,39.5 89.5,34.5 89.5,29.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 104.5,29.5 C 109.5,29.5 114.5,29.5 119.5,29.5C 119.5,34.5 119.5,39.5 119.5,44.5C 114.5,44.5 109.5,44.5 104.5,44.5C 104.5,39.5 104.5,34.5 104.5,29.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 119.5,29.5 C 124.5,29.5 129.5,29.5 134.5,29.5C 134.5,34.5 134.5,39.5 134.5,44.5C 129.5,44.5 124.5,44.5 119.5,44.5C 119.5,39.5 119.5,34.5 119.5,29.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 134.5,29.5 C 139.5,29.5 144.5,29.5 149.5,29.5C 149.5,34.5 149.5,39.5 149.5,44.5C 144.5,44.5 139.5,44.5 134.5,44.5C 134.5,39.5 134.5,34.5 134.5,29.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 149.5,29.5 C 154.5,29.5 159.5,29.5 164.5,29.5C 164.5,34.5 164.5,39.5 164.5,44.5C 159.5,44.5 154.5,44.5 149.5,44.5C 149.5,39.5 149.5,34.5 149.5,29.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 164.5,29.5 C 169.5,29.5 174.5,29.5 179.5,29.5C 179.5,34.5 179.5,39.5 179.5,44.5C 174.5,44.5 169.5,44.5 164.5,44.5C 164.5,39.5 164.5,34.5 164.5,29.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 179.5,29.5 C 184.5,29.5 189.5,29.5 194.5,29.5C 194.5,34.5 194.5,39.5 194.5,44.5C 189.5,44.5 184.5,44.5 179.5,44.5C 179.5,39.5 179.5,34.5 179.5,29.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 194.5,29.5 C 199.5,29.5 204.5,29.5 209.5,29.5C 209.5,34.5 209.5,39.5 209.5,44.5C 204.5,44.5 199.5,44.5 194.5,44.5C 194.5,39.5 194.5,34.5 194.5,29.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 209.5,29.5 C 214.5,29.5 219.5,29.5 224.5,29.5C 224.5,34.5 224.5,39.5 224.5,44.5C 219.5,44.5 214.5,44.5 209.5,44.5C 209.5,39.5 209.5,34.5 209.5,29.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 224.5,29.5 C 229.5,29.5 234.5,29.5 239.5,29.5C 239.5,34.5 239.5,39.5 239.5,44.5C 234.5,44.5 229.5,44.5 224.5,44.5C 224.5,39.5 224.5,34.5 224.5,29.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 239.5,29.5 C 244.5,29.5 249.5,29.5 254.5,29.5C 254.5,34.5 254.5,39.5 254.5,44.5C 249.5,44.5 244.5,44.5 239.5,44.5C 239.5,39.5 239.5,34.5 239.5,29.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M -0.5,44.5 C 4.5,44.5 9.5,44.5 14.5,44.5C 14.5,49.5 14.5,54.5 14.5,59.5C 9.5,59.5 4.5,59.5 -0.5,59.5C -0.5,54.5 -0.5,49.5 -0.5,44.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 14.5,44.5 C 19.5,44.5 24.5,44.5 29.5,44.5C 29.5,49.5 29.5,54.5 29.5,59.5C 24.5,59.5 19.5,59.5 14.5,59.5C 14.5,54.5 14.5,49.5 14.5,44.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 29.5,44.5 C 34.5,44.5 39.5,44.5 44.5,44.5C 44.5,49.5 44.5,54.5 44.5,59.5C 39.5,59.5 34.5,59.5 29.5,59.5C 29.5,54.5 29.5,49.5 29.5,44.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 44.5,44.5 C 49.5,44.5 54.5,44.5 59.5,44.5C 59.5,49.5 59.5,54.5 59.5,59.5C 54.5,59.5 49.5,59.5 44.5,59.5C 44.5,54.5 44.5,49.5 44.5,44.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 59.5,44.5 C 64.5,44.5 69.5,44.5 74.5,44.5C 74.5,49.5 74.5,54.5 74.5,59.5C 69.5,59.5 64.5,59.5 59.5,59.5C 59.5,54.5 59.5,49.5 59.5,44.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 74.5,44.5 C 79.5,44.5 84.5,44.5 89.5,44.5C 89.5,49.5 89.5,54.5 89.5,59.5C 84.5,59.5 79.5,59.5 74.5,59.5C 74.5,54.5 74.5,49.5 74.5,44.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 89.5,44.5 C 94.5,44.5 99.5,44.5 104.5,44.5C 104.5,49.5 104.5,54.5 104.5,59.5C 99.5,59.5 94.5,59.5 89.5,59.5C 89.5,54.5 89.5,49.5 89.5,44.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 104.5,44.5 C 109.5,44.5 114.5,44.5 119.5,44.5C 119.5,49.5 119.5,54.5 119.5,59.5C 114.5,59.5 109.5,59.5 104.5,59.5C 104.5,54.5 104.5,49.5 104.5,44.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 119.5,44.5 C 124.5,44.5 129.5,44.5 134.5,44.5C 134.5,49.5 134.5,54.5 134.5,59.5C 129.5,59.5 124.5,59.5 119.5,59.5C 119.5,54.5 119.5,49.5 119.5,44.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 134.5,44.5 C 139.5,44.5 144.5,44.5 149.5,44.5C 149.5,49.5 149.5,54.5 149.5,59.5C 144.5,59.5 139.5,59.5 134.5,59.5C 134.5,54.5 134.5,49.5 134.5,44.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 149.5,44.5 C 154.5,44.5 159.5,44.5 164.5,44.5C 164.5,49.5 164.5,54.5 164.5,59.5C 159.5,59.5 154.5,59.5 149.5,59.5C 149.5,54.5 149.5,49.5 149.5,44.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 164.5,44.5 C 169.5,44.5 174.5,44.5 179.5,44.5C 179.5,49.5 179.5,54.5 179.5,59.5C 174.5,59.5 169.5,59.5 164.5,59.5C 164.5,54.5 164.5,49.5 164.5,44.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 179.5,44.5 C 184.5,44.5 189.5,44.5 194.5,44.5C 194.5,49.5 194.5,54.5 194.5,59.5C 189.5,59.5 184.5,59.5 179.5,59.5C 179.5,54.5 179.5,49.5 179.5,44.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 194.5,44.5 C 199.5,44.5 204.5,44.5 209.5,44.5C 209.5,49.5 209.5,54.5 209.5,59.5C 204.5,59.5 199.5,59.5 194.5,59.5C 194.5,54.5 194.5,49.5 194.5,44.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 209.5,44.5 C 214.5,44.5 219.5,44.5 224.5,44.5C 224.5,49.5 224.5,54.5 224.5,59.5C 219.5,59.5 214.5,59.5 209.5,59.5C 209.5,54.5 209.5,49.5 209.5,44.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 224.5,44.5 C 229.5,44.5 234.5,44.5 239.5,44.5C 239.5,49.5 239.5,54.5 239.5,59.5C 234.5,59.5 229.5,59.5 224.5,59.5C 224.5,54.5 224.5,49.5 224.5,44.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 239.5,44.5 C 244.5,44.5 249.5,44.5 254.5,44.5C 254.5,49.5 254.5,54.5 254.5,59.5C 249.5,59.5 244.5,59.5 239.5,59.5C 239.5,54.5 239.5,49.5 239.5,44.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M -0.5,59.5 C 4.5,59.5 9.5,59.5 14.5,59.5C 14.5,64.5 14.5,69.5 14.5,74.5C 9.5,74.5 4.5,74.5 -0.5,74.5C -0.5,69.5 -0.5,64.5 -0.5,59.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 14.5,59.5 C 19.5,59.5 24.5,59.5 29.5,59.5C 29.5,64.5 29.5,69.5 29.5,74.5C 24.5,74.5 19.5,74.5 14.5,74.5C 14.5,69.5 14.5,64.5 14.5,59.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 29.5,59.5 C 34.5,59.5 39.5,59.5 44.5,59.5C 44.5,64.5 44.5,69.5 44.5,74.5C 39.5,74.5 34.5,74.5 29.5,74.5C 29.5,69.5 29.5,64.5 29.5,59.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 44.5,59.5 C 49.5,59.5 54.5,59.5 59.5,59.5C 59.5,64.5 59.5,69.5 59.5,74.5C 54.5,74.5 49.5,74.5 44.5,74.5C 44.5,69.5 44.5,64.5 44.5,59.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 59.5,59.5 C 64.5,59.5 69.5,59.5 74.5,59.5C 74.5,64.5 74.5,69.5 74.5,74.5C 69.5,74.5 64.5,74.5 59.5,74.5C 59.5,69.5 59.5,64.5 59.5,59.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 74.5,59.5 C 79.5,59.5 84.5,59.5 89.5,59.5C 89.5,64.5 89.5,69.5 89.5,74.5C 84.5,74.5 79.5,74.5 74.5,74.5C 74.5,69.5 74.5,64.5 74.5,59.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 89.5,59.5 C 94.5,59.5 99.5,59.5 104.5,59.5C 104.5,64.5 104.5,69.5 104.5,74.5C 99.5,74.5 94.5,74.5 89.5,74.5C 89.5,69.5 89.5,64.5 89.5,59.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 104.5,59.5 C 109.5,59.5 114.5,59.5 119.5,59.5C 119.5,64.5 119.5,69.5 119.5,74.5C 114.5,74.5 109.5,74.5 104.5,74.5C 104.5,69.5 104.5,64.5 104.5,59.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 119.5,59.5 C 124.5,59.5 129.5,59.5 134.5,59.5C 134.5,64.5 134.5,69.5 134.5,74.5C 129.5,74.5 124.5,74.5 119.5,74.5C 119.5,69.5 119.5,64.5 119.5,59.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 134.5,59.5 C 139.5,59.5 144.5,59.5 149.5,59.5C 149.5,64.5 149.5,69.5 149.5,74.5C 144.5,74.5 139.5,74.5 134.5,74.5C 134.5,69.5 134.5,64.5 134.5,59.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 149.5,59.5 C 154.5,59.5 159.5,59.5 164.5,59.5C 164.5,64.5 164.5,69.5 164.5,74.5C 159.5,74.5 154.5,74.5 149.5,74.5C 149.5,69.5 149.5,64.5 149.5,59.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 164.5,59.5 C 169.5,59.5 174.5,59.5 179.5,59.5C 179.5,64.5 179.5,69.5 179.5,74.5C 174.5,74.5 169.5,74.5 164.5,74.5C 164.5,69.5 164.5,64.5 164.5,59.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 179.5,59.5 C 184.5,59.5 189.5,59.5 194.5,59.5C 194.5,64.5 194.5,69.5 194.5,74.5C 189.5,74.5 184.5,74.5 179.5,74.5C 179.5,69.5 179.5,64.5 179.5,59.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 194.5,59.5 C 199.5,59.5 204.5,59.5 209.5,59.5C 209.5,64.5 209.5,69.5 209.5,74.5C 204.5,74.5 199.5,74.5 194.5,74.5C 194.5,69.5 194.5,64.5 194.5,59.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 209.5,59.5 C 214.5,59.5 219.5,59.5 224.5,59.5C 224.5,64.5 224.5,69.5 224.5,74.5C 219.5,74.5 214.5,74.5 209.5,74.5C 209.5,69.5 209.5,64.5 209.5,59.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 224.5,59.5 C 229.5,59.5 234.5,59.5 239.5,59.5C 239.5,64.5 239.5,69.5 239.5,74.5C 234.5,74.5 229.5,74.5 224.5,74.5C 224.5,69.5 224.5,64.5 224.5,59.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 239.5,59.5 C 244.5,59.5 249.5,59.5 254.5,59.5C 254.5,64.5 254.5,69.5 254.5,74.5C 249.5,74.5 244.5,74.5 239.5,74.5C 239.5,69.5 239.5,64.5 239.5,59.5 Z"/></g>
<g><path style="opacity:1" fill="#fefefe" d="M 273.5,61.5 C 272.605,66.812 271.771,72.1454 271,77.5C 270.5,198.166 270.333,318.833 270.5,439.5C 270.167,442.833 269.833,446.167 269.5,449.5C 264.5,449.5 259.5,449.5 254.5,449.5C 254.5,444.5 254.5,439.5 254.5,434.5C 259.5,434.5 264.5,434.5 269.5,434.5C 269.5,429.5 269.5,424.5 269.5,419.5C 264.5,419.5 259.5,419.5 254.5,419.5C 254.5,414.5 254.5,409.5 254.5,404.5C 259.5,404.5 264.5,404.5 269.5,404.5C 269.5,399.5 269.5,394.5 269.5,389.5C 264.5,389.5 259.5,389.5 254.5,389.5C 254.5,384.5 254.5,379.5 254.5,374.5C 259.5,374.5 264.5,374.5 269.5,374.5C 269.5,369.5 269.5,364.5 269.5,359.5C 264.5,359.5 259.5,359.5 254.5,359.5C 254.5,354.5 254.5,349.5 254.5,344.5C 259.5,344.5 264.5,344.5 269.5,344.5C 269.5,339.5 269.5,334.5 269.5,329.5C 264.5,329.5 259.5,329.5 254.5,329.5C 254.5,324.5 254.5,319.5 254.5,314.5C 259.5,314.5 264.5,314.5 269.5,314.5C 269.5,309.5 269.5,304.5 269.5,299.5C 264.5,299.5 259.5,299.5 254.5,299.5C 254.5,294.5 254.5,289.5 254.5,284.5C 259.5,284.5 264.5,284.5 269.5,284.5C 269.5,279.5 269.5,274.5 269.5,269.5C 264.5,269.5 259.5,269.5 254.5,269.5C 254.5,264.5 254.5,259.5 254.5,254.5C 259.5,254.5 264.5,254.5 269.5,254.5C 269.5,249.5 269.5,244.5 269.5,239.5C 264.5,239.5 259.5,239.5 254.5,239.5C 254.5,234.5 254.5,229.5 254.5,224.5C 259.5,224.5 264.5,224.5 269.5,224.5C 269.5,219.5 269.5,214.5 269.5,209.5C 264.5,209.5 259.5,209.5 254.5,209.5C 254.5,204.5 254.5,199.5 254.5,194.5C 259.5,194.5 264.5,194.5 269.5,194.5C 269.5,189.5 269.5,184.5 269.5,179.5C 264.5,179.5 259.5,179.5 254.5,179.5C 254.5,174.5 254.5,169.5 254.5,164.5C 259.5,164.5 264.5,164.5 269.5,164.5C 269.5,159.5 269.5,154.5 269.5,149.5C 264.5,149.5 259.5,149.5 254.5,149.5C 254.5,144.5 254.5,139.5 254.5,134.5C 259.5,134.5 264.5,134.5 269.5,134.5C 269.5,129.5 269.5,124.5 269.5,119.5C 264.5,119.5 259.5,119.5 254.5,119.5C 254.5,114.5 254.5,109.5 254.5,104.5C 259.5,104.5 264.5,104.5 269.5,104.5C 269.5,99.5 269.5,94.5 269.5,89.5C 264.5,89.5 259.5,89.5 254.5,89.5C 254.5,84.5 254.5,79.5 254.5,74.5C 259.5,74.5 264.5,74.5 269.5,74.5C 269.5,69.5 269.5,64.5 269.5,59.5C 271.483,59.1568 272.817,59.8235 273.5,61.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M -0.5,74.5 C 4.5,74.5 9.5,74.5 14.5,74.5C 14.5,79.5 14.5,84.5 14.5,89.5C 9.5,89.5 4.5,89.5 -0.5,89.5C -0.5,84.5 -0.5,79.5 -0.5,74.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 14.5,74.5 C 19.5,74.5 24.5,74.5 29.5,74.5C 29.5,79.5 29.5,84.5 29.5,89.5C 24.5,89.5 19.5,89.5 14.5,89.5C 14.5,84.5 14.5,79.5 14.5,74.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 29.5,74.5 C 34.5,74.5 39.5,74.5 44.5,74.5C 44.5,79.5 44.5,84.5 44.5,89.5C 39.5,89.5 34.5,89.5 29.5,89.5C 29.5,84.5 29.5,79.5 29.5,74.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 44.5,74.5 C 49.5,74.5 54.5,74.5 59.5,74.5C 59.5,79.5 59.5,84.5 59.5,89.5C 54.5,89.5 49.5,89.5 44.5,89.5C 44.5,84.5 44.5,79.5 44.5,74.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 59.5,74.5 C 64.5,74.5 69.5,74.5 74.5,74.5C 74.5,79.5 74.5,84.5 74.5,89.5C 69.5,89.5 64.5,89.5 59.5,89.5C 59.5,84.5 59.5,79.5 59.5,74.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 74.5,74.5 C 79.5,74.5 84.5,74.5 89.5,74.5C 89.5,79.5 89.5,84.5 89.5,89.5C 84.5,89.5 79.5,89.5 74.5,89.5C 74.5,84.5 74.5,79.5 74.5,74.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 89.5,74.5 C 94.5,74.5 99.5,74.5 104.5,74.5C 104.5,79.5 104.5,84.5 104.5,89.5C 99.5,89.5 94.5,89.5 89.5,89.5C 89.5,84.5 89.5,79.5 89.5,74.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 104.5,74.5 C 109.5,74.5 114.5,74.5 119.5,74.5C 119.5,79.5 119.5,84.5 119.5,89.5C 114.5,89.5 109.5,89.5 104.5,89.5C 104.5,84.5 104.5,79.5 104.5,74.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 119.5,74.5 C 124.5,74.5 129.5,74.5 134.5,74.5C 134.5,79.5 134.5,84.5 134.5,89.5C 129.5,89.5 124.5,89.5 119.5,89.5C 119.5,84.5 119.5,79.5 119.5,74.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 134.5,74.5 C 139.5,74.5 144.5,74.5 149.5,74.5C 149.5,79.5 149.5,84.5 149.5,89.5C 144.5,89.5 139.5,89.5 134.5,89.5C 134.5,84.5 134.5,79.5 134.5,74.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 149.5,74.5 C 154.5,74.5 159.5,74.5 164.5,74.5C 164.5,79.5 164.5,84.5 164.5,89.5C 159.5,89.5 154.5,89.5 149.5,89.5C 149.5,84.5 149.5,79.5 149.5,74.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 164.5,74.5 C 169.5,74.5 174.5,74.5 179.5,74.5C 179.5,79.5 179.5,84.5 179.5,89.5C 174.5,89.5 169.5,89.5 164.5,89.5C 164.5,84.5 164.5,79.5 164.5,74.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 179.5,74.5 C 184.5,74.5 189.5,74.5 194.5,74.5C 194.5,79.5 194.5,84.5 194.5,89.5C 189.5,89.5 184.5,89.5 179.5,89.5C 179.5,84.5 179.5,79.5 179.5,74.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 194.5,74.5 C 199.5,74.5 204.5,74.5 209.5,74.5C 209.5,79.5 209.5,84.5 209.5,89.5C 204.5,89.5 199.5,89.5 194.5,89.5C 194.5,84.5 194.5,79.5 194.5,74.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 209.5,74.5 C 214.5,74.5 219.5,74.5 224.5,74.5C 224.5,79.5 224.5,84.5 224.5,89.5C 219.5,89.5 214.5,89.5 209.5,89.5C 209.5,84.5 209.5,79.5 209.5,74.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 224.5,74.5 C 229.5,74.5 234.5,74.5 239.5,74.5C 239.5,79.5 239.5,84.5 239.5,89.5C 234.5,89.5 229.5,89.5 224.5,89.5C 224.5,84.5 224.5,79.5 224.5,74.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 239.5,74.5 C 244.5,74.5 249.5,74.5 254.5,74.5C 254.5,79.5 254.5,84.5 254.5,89.5C 249.5,89.5 244.5,89.5 239.5,89.5C 239.5,84.5 239.5,79.5 239.5,74.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M -0.5,89.5 C 4.5,89.5 9.5,89.5 14.5,89.5C 14.5,94.5 14.5,99.5 14.5,104.5C 9.5,104.5 4.5,104.5 -0.5,104.5C -0.5,99.5 -0.5,94.5 -0.5,89.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 14.5,89.5 C 19.5,89.5 24.5,89.5 29.5,89.5C 29.5,94.5 29.5,99.5 29.5,104.5C 24.5,104.5 19.5,104.5 14.5,104.5C 14.5,99.5 14.5,94.5 14.5,89.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 29.5,89.5 C 34.5,89.5 39.5,89.5 44.5,89.5C 44.5,94.5 44.5,99.5 44.5,104.5C 39.5,104.5 34.5,104.5 29.5,104.5C 29.5,99.5 29.5,94.5 29.5,89.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 44.5,89.5 C 49.5,89.5 54.5,89.5 59.5,89.5C 59.5,94.5 59.5,99.5 59.5,104.5C 54.5,104.5 49.5,104.5 44.5,104.5C 44.5,99.5 44.5,94.5 44.5,89.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 59.5,89.5 C 64.5,89.5 69.5,89.5 74.5,89.5C 74.5,94.5 74.5,99.5 74.5,104.5C 69.5,104.5 64.5,104.5 59.5,104.5C 59.5,99.5 59.5,94.5 59.5,89.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 74.5,89.5 C 79.5,89.5 84.5,89.5 89.5,89.5C 89.5,94.5 89.5,99.5 89.5,104.5C 84.5,104.5 79.5,104.5 74.5,104.5C 74.5,99.5 74.5,94.5 74.5,89.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 89.5,89.5 C 94.5,89.5 99.5,89.5 104.5,89.5C 104.5,94.5 104.5,99.5 104.5,104.5C 99.5,104.5 94.5,104.5 89.5,104.5C 89.5,99.5 89.5,94.5 89.5,89.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 104.5,89.5 C 109.5,89.5 114.5,89.5 119.5,89.5C 119.5,94.5 119.5,99.5 119.5,104.5C 114.5,104.5 109.5,104.5 104.5,104.5C 104.5,99.5 104.5,94.5 104.5,89.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 119.5,89.5 C 124.5,89.5 129.5,89.5 134.5,89.5C 134.5,94.5 134.5,99.5 134.5,104.5C 129.5,104.5 124.5,104.5 119.5,104.5C 119.5,99.5 119.5,94.5 119.5,89.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 134.5,89.5 C 139.5,89.5 144.5,89.5 149.5,89.5C 149.5,94.5 149.5,99.5 149.5,104.5C 144.5,104.5 139.5,104.5 134.5,104.5C 134.5,99.5 134.5,94.5 134.5,89.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 149.5,89.5 C 154.5,89.5 159.5,89.5 164.5,89.5C 164.5,94.5 164.5,99.5 164.5,104.5C 159.5,104.5 154.5,104.5 149.5,104.5C 149.5,99.5 149.5,94.5 149.5,89.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 164.5,89.5 C 169.5,89.5 174.5,89.5 179.5,89.5C 179.5,94.5 179.5,99.5 179.5,104.5C 174.5,104.5 169.5,104.5 164.5,104.5C 164.5,99.5 164.5,94.5 164.5,89.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 179.5,89.5 C 184.5,89.5 189.5,89.5 194.5,89.5C 194.5,94.5 194.5,99.5 194.5,104.5C 189.5,104.5 184.5,104.5 179.5,104.5C 179.5,99.5 179.5,94.5 179.5,89.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 194.5,89.5 C 199.5,89.5 204.5,89.5 209.5,89.5C 209.5,94.5 209.5,99.5 209.5,104.5C 204.5,104.5 199.5,104.5 194.5,104.5C 194.5,99.5 194.5,94.5 194.5,89.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 209.5,89.5 C 214.5,89.5 219.5,89.5 224.5,89.5C 224.5,94.5 224.5,99.5 224.5,104.5C 219.5,104.5 214.5,104.5 209.5,104.5C 209.5,99.5 209.5,94.5 209.5,89.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 224.5,89.5 C 229.5,89.5 234.5,89.5 239.5,89.5C 239.5,94.5 239.5,99.5 239.5,104.5C 234.5,104.5 229.5,104.5 224.5,104.5C 224.5,99.5 224.5,94.5 224.5,89.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 239.5,89.5 C 244.5,89.5 249.5,89.5 254.5,89.5C 254.5,94.5 254.5,99.5 254.5,104.5C 249.5,104.5 244.5,104.5 239.5,104.5C 239.5,99.5 239.5,94.5 239.5,89.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 254.5,89.5 C 259.5,89.5 264.5,89.5 269.5,89.5C 269.5,94.5 269.5,99.5 269.5,104.5C 264.5,104.5 259.5,104.5 254.5,104.5C 254.5,99.5 254.5,94.5 254.5,89.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M -0.5,104.5 C 4.5,104.5 9.5,104.5 14.5,104.5C 14.5,109.5 14.5,114.5 14.5,119.5C 9.5,119.5 4.5,119.5 -0.5,119.5C -0.5,114.5 -0.5,109.5 -0.5,104.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 14.5,104.5 C 19.5,104.5 24.5,104.5 29.5,104.5C 29.5,109.5 29.5,114.5 29.5,119.5C 24.5,119.5 19.5,119.5 14.5,119.5C 14.5,114.5 14.5,109.5 14.5,104.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 29.5,104.5 C 34.5,104.5 39.5,104.5 44.5,104.5C 44.5,109.5 44.5,114.5 44.5,119.5C 39.5,119.5 34.5,119.5 29.5,119.5C 29.5,114.5 29.5,109.5 29.5,104.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 44.5,104.5 C 49.5,104.5 54.5,104.5 59.5,104.5C 59.5,109.5 59.5,114.5 59.5,119.5C 54.5,119.5 49.5,119.5 44.5,119.5C 44.5,114.5 44.5,109.5 44.5,104.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 59.5,104.5 C 64.5,104.5 69.5,104.5 74.5,104.5C 74.5,109.5 74.5,114.5 74.5,119.5C 69.5,119.5 64.5,119.5 59.5,119.5C 59.5,114.5 59.5,109.5 59.5,104.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 74.5,104.5 C 79.5,104.5 84.5,104.5 89.5,104.5C 89.5,109.5 89.5,114.5 89.5,119.5C 84.5,119.5 79.5,119.5 74.5,119.5C 74.5,114.5 74.5,109.5 74.5,104.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 89.5,104.5 C 94.5,104.5 99.5,104.5 104.5,104.5C 104.5,109.5 104.5,114.5 104.5,119.5C 99.5,119.5 94.5,119.5 89.5,119.5C 89.5,114.5 89.5,109.5 89.5,104.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 104.5,104.5 C 109.5,104.5 114.5,104.5 119.5,104.5C 119.5,109.5 119.5,114.5 119.5,119.5C 114.5,119.5 109.5,119.5 104.5,119.5C 104.5,114.5 104.5,109.5 104.5,104.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 119.5,104.5 C 124.5,104.5 129.5,104.5 134.5,104.5C 134.5,109.5 134.5,114.5 134.5,119.5C 129.5,119.5 124.5,119.5 119.5,119.5C 119.5,114.5 119.5,109.5 119.5,104.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 134.5,104.5 C 139.5,104.5 144.5,104.5 149.5,104.5C 149.5,109.5 149.5,114.5 149.5,119.5C 144.5,119.5 139.5,119.5 134.5,119.5C 134.5,114.5 134.5,109.5 134.5,104.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 149.5,104.5 C 154.5,104.5 159.5,104.5 164.5,104.5C 164.5,109.5 164.5,114.5 164.5,119.5C 159.5,119.5 154.5,119.5 149.5,119.5C 149.5,114.5 149.5,109.5 149.5,104.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 164.5,104.5 C 169.5,104.5 174.5,104.5 179.5,104.5C 179.5,109.5 179.5,114.5 179.5,119.5C 174.5,119.5 169.5,119.5 164.5,119.5C 164.5,114.5 164.5,109.5 164.5,104.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 179.5,104.5 C 184.5,104.5 189.5,104.5 194.5,104.5C 194.5,109.5 194.5,114.5 194.5,119.5C 189.5,119.5 184.5,119.5 179.5,119.5C 179.5,114.5 179.5,109.5 179.5,104.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 194.5,104.5 C 199.5,104.5 204.5,104.5 209.5,104.5C 209.5,109.5 209.5,114.5 209.5,119.5C 204.5,119.5 199.5,119.5 194.5,119.5C 194.5,114.5 194.5,109.5 194.5,104.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 209.5,104.5 C 214.5,104.5 219.5,104.5 224.5,104.5C 224.5,109.5 224.5,114.5 224.5,119.5C 219.5,119.5 214.5,119.5 209.5,119.5C 209.5,114.5 209.5,109.5 209.5,104.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 224.5,104.5 C 229.5,104.5 234.5,104.5 239.5,104.5C 239.5,109.5 239.5,114.5 239.5,119.5C 234.5,119.5 229.5,119.5 224.5,119.5C 224.5,114.5 224.5,109.5 224.5,104.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 239.5,104.5 C 244.5,104.5 249.5,104.5 254.5,104.5C 254.5,109.5 254.5,114.5 254.5,119.5C 249.5,119.5 244.5,119.5 239.5,119.5C 239.5,114.5 239.5,109.5 239.5,104.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M -0.5,119.5 C 4.5,119.5 9.5,119.5 14.5,119.5C 14.5,124.5 14.5,129.5 14.5,134.5C 9.5,134.5 4.5,134.5 -0.5,134.5C -0.5,129.5 -0.5,124.5 -0.5,119.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 14.5,119.5 C 19.5,119.5 24.5,119.5 29.5,119.5C 29.5,124.5 29.5,129.5 29.5,134.5C 24.5,134.5 19.5,134.5 14.5,134.5C 14.5,129.5 14.5,124.5 14.5,119.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 29.5,119.5 C 34.5,119.5 39.5,119.5 44.5,119.5C 44.5,124.5 44.5,129.5 44.5,134.5C 39.5,134.5 34.5,134.5 29.5,134.5C 29.5,129.5 29.5,124.5 29.5,119.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 44.5,119.5 C 49.5,119.5 54.5,119.5 59.5,119.5C 59.5,124.5 59.5,129.5 59.5,134.5C 54.5,134.5 49.5,134.5 44.5,134.5C 44.5,129.5 44.5,124.5 44.5,119.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 59.5,119.5 C 64.5,119.5 69.5,119.5 74.5,119.5C 74.5,124.5 74.5,129.5 74.5,134.5C 69.5,134.5 64.5,134.5 59.5,134.5C 59.5,129.5 59.5,124.5 59.5,119.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 74.5,119.5 C 79.5,119.5 84.5,119.5 89.5,119.5C 89.5,124.5 89.5,129.5 89.5,134.5C 84.5,134.5 79.5,134.5 74.5,134.5C 74.5,129.5 74.5,124.5 74.5,119.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 89.5,119.5 C 94.5,119.5 99.5,119.5 104.5,119.5C 104.5,124.5 104.5,129.5 104.5,134.5C 99.5,134.5 94.5,134.5 89.5,134.5C 89.5,129.5 89.5,124.5 89.5,119.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 104.5,119.5 C 109.5,119.5 114.5,119.5 119.5,119.5C 119.5,124.5 119.5,129.5 119.5,134.5C 114.5,134.5 109.5,134.5 104.5,134.5C 104.5,129.5 104.5,124.5 104.5,119.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 119.5,119.5 C 124.5,119.5 129.5,119.5 134.5,119.5C 134.5,124.5 134.5,129.5 134.5,134.5C 129.5,134.5 124.5,134.5 119.5,134.5C 119.5,129.5 119.5,124.5 119.5,119.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 134.5,119.5 C 139.5,119.5 144.5,119.5 149.5,119.5C 149.5,124.5 149.5,129.5 149.5,134.5C 144.5,134.5 139.5,134.5 134.5,134.5C 134.5,129.5 134.5,124.5 134.5,119.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 149.5,119.5 C 154.5,119.5 159.5,119.5 164.5,119.5C 164.5,124.5 164.5,129.5 164.5,134.5C 159.5,134.5 154.5,134.5 149.5,134.5C 149.5,129.5 149.5,124.5 149.5,119.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 164.5,119.5 C 169.5,119.5 174.5,119.5 179.5,119.5C 179.5,124.5 179.5,129.5 179.5,134.5C 174.5,134.5 169.5,134.5 164.5,134.5C 164.5,129.5 164.5,124.5 164.5,119.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 179.5,119.5 C 184.5,119.5 189.5,119.5 194.5,119.5C 194.5,124.5 194.5,129.5 194.5,134.5C 189.5,134.5 184.5,134.5 179.5,134.5C 179.5,129.5 179.5,124.5 179.5,119.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 194.5,119.5 C 199.5,119.5 204.5,119.5 209.5,119.5C 209.5,124.5 209.5,129.5 209.5,134.5C 204.5,134.5 199.5,134.5 194.5,134.5C 194.5,129.5 194.5,124.5 194.5,119.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 209.5,119.5 C 214.5,119.5 219.5,119.5 224.5,119.5C 224.5,124.5 224.5,129.5 224.5,134.5C 219.5,134.5 214.5,134.5 209.5,134.5C 209.5,129.5 209.5,124.5 209.5,119.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 224.5,119.5 C 229.5,119.5 234.5,119.5 239.5,119.5C 239.5,124.5 239.5,129.5 239.5,134.5C 234.5,134.5 229.5,134.5 224.5,134.5C 224.5,129.5 224.5,124.5 224.5,119.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 239.5,119.5 C 244.5,119.5 249.5,119.5 254.5,119.5C 254.5,124.5 254.5,129.5 254.5,134.5C 249.5,134.5 244.5,134.5 239.5,134.5C 239.5,129.5 239.5,124.5 239.5,119.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 254.5,119.5 C 259.5,119.5 264.5,119.5 269.5,119.5C 269.5,124.5 269.5,129.5 269.5,134.5C 264.5,134.5 259.5,134.5 254.5,134.5C 254.5,129.5 254.5,124.5 254.5,119.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M -0.5,134.5 C 4.5,134.5 9.5,134.5 14.5,134.5C 14.5,139.5 14.5,144.5 14.5,149.5C 9.5,149.5 4.5,149.5 -0.5,149.5C -0.5,144.5 -0.5,139.5 -0.5,134.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 14.5,134.5 C 19.5,134.5 24.5,134.5 29.5,134.5C 29.5,139.5 29.5,144.5 29.5,149.5C 24.5,149.5 19.5,149.5 14.5,149.5C 14.5,144.5 14.5,139.5 14.5,134.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 29.5,134.5 C 34.5,134.5 39.5,134.5 44.5,134.5C 44.5,139.5 44.5,144.5 44.5,149.5C 39.5,149.5 34.5,149.5 29.5,149.5C 29.5,144.5 29.5,139.5 29.5,134.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 44.5,134.5 C 49.5,134.5 54.5,134.5 59.5,134.5C 59.5,139.5 59.5,144.5 59.5,149.5C 54.5,149.5 49.5,149.5 44.5,149.5C 44.5,144.5 44.5,139.5 44.5,134.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 59.5,134.5 C 64.5,134.5 69.5,134.5 74.5,134.5C 74.5,139.5 74.5,144.5 74.5,149.5C 69.5,149.5 64.5,149.5 59.5,149.5C 59.5,144.5 59.5,139.5 59.5,134.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 74.5,134.5 C 79.5,134.5 84.5,134.5 89.5,134.5C 89.5,139.5 89.5,144.5 89.5,149.5C 84.5,149.5 79.5,149.5 74.5,149.5C 74.5,144.5 74.5,139.5 74.5,134.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 89.5,134.5 C 94.5,134.5 99.5,134.5 104.5,134.5C 104.5,139.5 104.5,144.5 104.5,149.5C 99.5,149.5 94.5,149.5 89.5,149.5C 89.5,144.5 89.5,139.5 89.5,134.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 104.5,134.5 C 109.5,134.5 114.5,134.5 119.5,134.5C 119.5,139.5 119.5,144.5 119.5,149.5C 114.5,149.5 109.5,149.5 104.5,149.5C 104.5,144.5 104.5,139.5 104.5,134.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 119.5,134.5 C 124.5,134.5 129.5,134.5 134.5,134.5C 134.5,139.5 134.5,144.5 134.5,149.5C 129.5,149.5 124.5,149.5 119.5,149.5C 119.5,144.5 119.5,139.5 119.5,134.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 134.5,134.5 C 139.5,134.5 144.5,134.5 149.5,134.5C 149.5,139.5 149.5,144.5 149.5,149.5C 144.5,149.5 139.5,149.5 134.5,149.5C 134.5,144.5 134.5,139.5 134.5,134.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 149.5,134.5 C 154.5,134.5 159.5,134.5 164.5,134.5C 164.5,139.5 164.5,144.5 164.5,149.5C 159.5,149.5 154.5,149.5 149.5,149.5C 149.5,144.5 149.5,139.5 149.5,134.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 164.5,134.5 C 169.5,134.5 174.5,134.5 179.5,134.5C 179.5,139.5 179.5,144.5 179.5,149.5C 174.5,149.5 169.5,149.5 164.5,149.5C 164.5,144.5 164.5,139.5 164.5,134.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 179.5,134.5 C 184.5,134.5 189.5,134.5 194.5,134.5C 194.5,139.5 194.5,144.5 194.5,149.5C 189.5,149.5 184.5,149.5 179.5,149.5C 179.5,144.5 179.5,139.5 179.5,134.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 194.5,134.5 C 199.5,134.5 204.5,134.5 209.5,134.5C 209.5,139.5 209.5,144.5 209.5,149.5C 204.5,149.5 199.5,149.5 194.5,149.5C 194.5,144.5 194.5,139.5 194.5,134.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 209.5,134.5 C 214.5,134.5 219.5,134.5 224.5,134.5C 224.5,139.5 224.5,144.5 224.5,149.5C 219.5,149.5 214.5,149.5 209.5,149.5C 209.5,144.5 209.5,139.5 209.5,134.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 224.5,134.5 C 229.5,134.5 234.5,134.5 239.5,134.5C 239.5,139.5 239.5,144.5 239.5,149.5C 234.5,149.5 229.5,149.5 224.5,149.5C 224.5,144.5 224.5,139.5 224.5,134.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 239.5,134.5 C 244.5,134.5 249.5,134.5 254.5,134.5C 254.5,139.5 254.5,144.5 254.5,149.5C 249.5,149.5 244.5,149.5 239.5,149.5C 239.5,144.5 239.5,139.5 239.5,134.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M -0.5,149.5 C 4.5,149.5 9.5,149.5 14.5,149.5C 14.5,154.5 14.5,159.5 14.5,164.5C 9.5,164.5 4.5,164.5 -0.5,164.5C -0.5,159.5 -0.5,154.5 -0.5,149.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 14.5,149.5 C 19.5,149.5 24.5,149.5 29.5,149.5C 29.5,154.5 29.5,159.5 29.5,164.5C 24.5,164.5 19.5,164.5 14.5,164.5C 14.5,159.5 14.5,154.5 14.5,149.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 29.5,149.5 C 34.5,149.5 39.5,149.5 44.5,149.5C 44.5,154.5 44.5,159.5 44.5,164.5C 39.5,164.5 34.5,164.5 29.5,164.5C 29.5,159.5 29.5,154.5 29.5,149.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 44.5,149.5 C 49.5,149.5 54.5,149.5 59.5,149.5C 59.5,154.5 59.5,159.5 59.5,164.5C 54.5,164.5 49.5,164.5 44.5,164.5C 44.5,159.5 44.5,154.5 44.5,149.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 59.5,149.5 C 64.5,149.5 69.5,149.5 74.5,149.5C 74.5,154.5 74.5,159.5 74.5,164.5C 69.5,164.5 64.5,164.5 59.5,164.5C 59.5,159.5 59.5,154.5 59.5,149.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 74.5,149.5 C 79.5,149.5 84.5,149.5 89.5,149.5C 89.5,154.5 89.5,159.5 89.5,164.5C 84.5,164.5 79.5,164.5 74.5,164.5C 74.5,159.5 74.5,154.5 74.5,149.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 89.5,149.5 C 94.5,149.5 99.5,149.5 104.5,149.5C 104.5,154.5 104.5,159.5 104.5,164.5C 99.5,164.5 94.5,164.5 89.5,164.5C 89.5,159.5 89.5,154.5 89.5,149.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 104.5,149.5 C 109.5,149.5 114.5,149.5 119.5,149.5C 119.5,154.5 119.5,159.5 119.5,164.5C 114.5,164.5 109.5,164.5 104.5,164.5C 104.5,159.5 104.5,154.5 104.5,149.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 119.5,149.5 C 124.5,149.5 129.5,149.5 134.5,149.5C 134.5,154.5 134.5,159.5 134.5,164.5C 129.5,164.5 124.5,164.5 119.5,164.5C 119.5,159.5 119.5,154.5 119.5,149.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 134.5,149.5 C 139.5,149.5 144.5,149.5 149.5,149.5C 149.5,154.5 149.5,159.5 149.5,164.5C 144.5,164.5 139.5,164.5 134.5,164.5C 134.5,159.5 134.5,154.5 134.5,149.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 149.5,149.5 C 154.5,149.5 159.5,149.5 164.5,149.5C 164.5,154.5 164.5,159.5 164.5,164.5C 159.5,164.5 154.5,164.5 149.5,164.5C 149.5,159.5 149.5,154.5 149.5,149.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 164.5,149.5 C 169.5,149.5 174.5,149.5 179.5,149.5C 179.5,154.5 179.5,159.5 179.5,164.5C 174.5,164.5 169.5,164.5 164.5,164.5C 164.5,159.5 164.5,154.5 164.5,149.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 179.5,149.5 C 184.5,149.5 189.5,149.5 194.5,149.5C 194.5,154.5 194.5,159.5 194.5,164.5C 189.5,164.5 184.5,164.5 179.5,164.5C 179.5,159.5 179.5,154.5 179.5,149.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 194.5,149.5 C 199.5,149.5 204.5,149.5 209.5,149.5C 209.5,154.5 209.5,159.5 209.5,164.5C 204.5,164.5 199.5,164.5 194.5,164.5C 194.5,159.5 194.5,154.5 194.5,149.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 209.5,149.5 C 214.5,149.5 219.5,149.5 224.5,149.5C 224.5,154.5 224.5,159.5 224.5,164.5C 219.5,164.5 214.5,164.5 209.5,164.5C 209.5,159.5 209.5,154.5 209.5,149.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 224.5,149.5 C 229.5,149.5 234.5,149.5 239.5,149.5C 239.5,154.5 239.5,159.5 239.5,164.5C 234.5,164.5 229.5,164.5 224.5,164.5C 224.5,159.5 224.5,154.5 224.5,149.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 239.5,149.5 C 244.5,149.5 249.5,149.5 254.5,149.5C 254.5,154.5 254.5,159.5 254.5,164.5C 249.5,164.5 244.5,164.5 239.5,164.5C 239.5,159.5 239.5,154.5 239.5,149.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 254.5,149.5 C 259.5,149.5 264.5,149.5 269.5,149.5C 269.5,154.5 269.5,159.5 269.5,164.5C 264.5,164.5 259.5,164.5 254.5,164.5C 254.5,159.5 254.5,154.5 254.5,149.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M -0.5,164.5 C 4.5,164.5 9.5,164.5 14.5,164.5C 14.5,169.5 14.5,174.5 14.5,179.5C 9.5,179.5 4.5,179.5 -0.5,179.5C -0.5,174.5 -0.5,169.5 -0.5,164.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 14.5,164.5 C 19.5,164.5 24.5,164.5 29.5,164.5C 29.5,169.5 29.5,174.5 29.5,179.5C 24.5,179.5 19.5,179.5 14.5,179.5C 14.5,174.5 14.5,169.5 14.5,164.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 29.5,164.5 C 34.5,164.5 39.5,164.5 44.5,164.5C 44.5,169.5 44.5,174.5 44.5,179.5C 39.5,179.5 34.5,179.5 29.5,179.5C 29.5,174.5 29.5,169.5 29.5,164.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 44.5,164.5 C 49.5,164.5 54.5,164.5 59.5,164.5C 59.5,169.5 59.5,174.5 59.5,179.5C 54.5,179.5 49.5,179.5 44.5,179.5C 44.5,174.5 44.5,169.5 44.5,164.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 59.5,164.5 C 64.5,164.5 69.5,164.5 74.5,164.5C 74.5,169.5 74.5,174.5 74.5,179.5C 69.5,179.5 64.5,179.5 59.5,179.5C 59.5,174.5 59.5,169.5 59.5,164.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 74.5,164.5 C 79.5,164.5 84.5,164.5 89.5,164.5C 89.5,169.5 89.5,174.5 89.5,179.5C 84.5,179.5 79.5,179.5 74.5,179.5C 74.5,174.5 74.5,169.5 74.5,164.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 89.5,164.5 C 94.5,164.5 99.5,164.5 104.5,164.5C 104.5,169.5 104.5,174.5 104.5,179.5C 99.5,179.5 94.5,179.5 89.5,179.5C 89.5,174.5 89.5,169.5 89.5,164.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 104.5,164.5 C 109.5,164.5 114.5,164.5 119.5,164.5C 119.5,169.5 119.5,174.5 119.5,179.5C 114.5,179.5 109.5,179.5 104.5,179.5C 104.5,174.5 104.5,169.5 104.5,164.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 119.5,164.5 C 124.5,164.5 129.5,164.5 134.5,164.5C 134.5,169.5 134.5,174.5 134.5,179.5C 129.5,179.5 124.5,179.5 119.5,179.5C 119.5,174.5 119.5,169.5 119.5,164.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 134.5,164.5 C 139.5,164.5 144.5,164.5 149.5,164.5C 149.5,169.5 149.5,174.5 149.5,179.5C 144.5,179.5 139.5,179.5 134.5,179.5C 134.5,174.5 134.5,169.5 134.5,164.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 149.5,164.5 C 154.5,164.5 159.5,164.5 164.5,164.5C 164.5,169.5 164.5,174.5 164.5,179.5C 159.5,179.5 154.5,179.5 149.5,179.5C 149.5,174.5 149.5,169.5 149.5,164.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 164.5,164.5 C 169.5,164.5 174.5,164.5 179.5,164.5C 179.5,169.5 179.5,174.5 179.5,179.5C 174.5,179.5 169.5,179.5 164.5,179.5C 164.5,174.5 164.5,169.5 164.5,164.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 179.5,164.5 C 184.5,164.5 189.5,164.5 194.5,164.5C 194.5,169.5 194.5,174.5 194.5,179.5C 189.5,179.5 184.5,179.5 179.5,179.5C 179.5,174.5 179.5,169.5 179.5,164.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 194.5,164.5 C 199.5,164.5 204.5,164.5 209.5,164.5C 209.5,169.5 209.5,174.5 209.5,179.5C 204.5,179.5 199.5,179.5 194.5,179.5C 194.5,174.5 194.5,169.5 194.5,164.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 209.5,164.5 C 214.5,164.5 219.5,164.5 224.5,164.5C 224.5,169.5 224.5,174.5 224.5,179.5C 219.5,179.5 214.5,179.5 209.5,179.5C 209.5,174.5 209.5,169.5 209.5,164.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 224.5,164.5 C 229.5,164.5 234.5,164.5 239.5,164.5C 239.5,169.5 239.5,174.5 239.5,179.5C 234.5,179.5 229.5,179.5 224.5,179.5C 224.5,174.5 224.5,169.5 224.5,164.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 239.5,164.5 C 244.5,164.5 249.5,164.5 254.5,164.5C 254.5,169.5 254.5,174.5 254.5,179.5C 249.5,179.5 244.5,179.5 239.5,179.5C 239.5,174.5 239.5,169.5 239.5,164.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M -0.5,179.5 C 4.5,179.5 9.5,179.5 14.5,179.5C 14.5,184.5 14.5,189.5 14.5,194.5C 9.5,194.5 4.5,194.5 -0.5,194.5C -0.5,189.5 -0.5,184.5 -0.5,179.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 14.5,179.5 C 19.5,179.5 24.5,179.5 29.5,179.5C 29.5,184.5 29.5,189.5 29.5,194.5C 24.5,194.5 19.5,194.5 14.5,194.5C 14.5,189.5 14.5,184.5 14.5,179.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 29.5,179.5 C 34.5,179.5 39.5,179.5 44.5,179.5C 44.5,184.5 44.5,189.5 44.5,194.5C 39.5,194.5 34.5,194.5 29.5,194.5C 29.5,189.5 29.5,184.5 29.5,179.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 44.5,179.5 C 49.5,179.5 54.5,179.5 59.5,179.5C 59.5,184.5 59.5,189.5 59.5,194.5C 54.5,194.5 49.5,194.5 44.5,194.5C 44.5,189.5 44.5,184.5 44.5,179.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 59.5,179.5 C 64.5,179.5 69.5,179.5 74.5,179.5C 74.5,184.5 74.5,189.5 74.5,194.5C 69.5,194.5 64.5,194.5 59.5,194.5C 59.5,189.5 59.5,184.5 59.5,179.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 74.5,179.5 C 79.5,179.5 84.5,179.5 89.5,179.5C 89.5,184.5 89.5,189.5 89.5,194.5C 84.5,194.5 79.5,194.5 74.5,194.5C 74.5,189.5 74.5,184.5 74.5,179.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 89.5,179.5 C 94.5,179.5 99.5,179.5 104.5,179.5C 104.5,184.5 104.5,189.5 104.5,194.5C 99.5,194.5 94.5,194.5 89.5,194.5C 89.5,189.5 89.5,184.5 89.5,179.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 104.5,179.5 C 109.5,179.5 114.5,179.5 119.5,179.5C 119.5,184.5 119.5,189.5 119.5,194.5C 114.5,194.5 109.5,194.5 104.5,194.5C 104.5,189.5 104.5,184.5 104.5,179.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 119.5,179.5 C 124.5,179.5 129.5,179.5 134.5,179.5C 134.5,184.5 134.5,189.5 134.5,194.5C 129.5,194.5 124.5,194.5 119.5,194.5C 119.5,189.5 119.5,184.5 119.5,179.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 134.5,179.5 C 139.5,179.5 144.5,179.5 149.5,179.5C 149.5,184.5 149.5,189.5 149.5,194.5C 144.5,194.5 139.5,194.5 134.5,194.5C 134.5,189.5 134.5,184.5 134.5,179.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 149.5,179.5 C 154.5,179.5 159.5,179.5 164.5,179.5C 164.5,184.5 164.5,189.5 164.5,194.5C 159.5,194.5 154.5,194.5 149.5,194.5C 149.5,189.5 149.5,184.5 149.5,179.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 164.5,179.5 C 169.5,179.5 174.5,179.5 179.5,179.5C 179.5,184.5 179.5,189.5 179.5,194.5C 174.5,194.5 169.5,194.5 164.5,194.5C 164.5,189.5 164.5,184.5 164.5,179.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 179.5,179.5 C 184.5,179.5 189.5,179.5 194.5,179.5C 194.5,184.5 194.5,189.5 194.5,194.5C 189.5,194.5 184.5,194.5 179.5,194.5C 179.5,189.5 179.5,184.5 179.5,179.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 194.5,179.5 C 199.5,179.5 204.5,179.5 209.5,179.5C 209.5,184.5 209.5,189.5 209.5,194.5C 204.5,194.5 199.5,194.5 194.5,194.5C 194.5,189.5 194.5,184.5 194.5,179.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 209.5,179.5 C 214.5,179.5 219.5,179.5 224.5,179.5C 224.5,184.5 224.5,189.5 224.5,194.5C 219.5,194.5 214.5,194.5 209.5,194.5C 209.5,189.5 209.5,184.5 209.5,179.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 224.5,179.5 C 229.5,179.5 234.5,179.5 239.5,179.5C 239.5,184.5 239.5,189.5 239.5,194.5C 234.5,194.5 229.5,194.5 224.5,194.5C 224.5,189.5 224.5,184.5 224.5,179.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 239.5,179.5 C 244.5,179.5 249.5,179.5 254.5,179.5C 254.5,184.5 254.5,189.5 254.5,194.5C 249.5,194.5 244.5,194.5 239.5,194.5C 239.5,189.5 239.5,184.5 239.5,179.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 254.5,179.5 C 259.5,179.5 264.5,179.5 269.5,179.5C 269.5,184.5 269.5,189.5 269.5,194.5C 264.5,194.5 259.5,194.5 254.5,194.5C 254.5,189.5 254.5,184.5 254.5,179.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M -0.5,194.5 C 4.5,194.5 9.5,194.5 14.5,194.5C 14.5,199.5 14.5,204.5 14.5,209.5C 9.5,209.5 4.5,209.5 -0.5,209.5C -0.5,204.5 -0.5,199.5 -0.5,194.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 14.5,194.5 C 19.5,194.5 24.5,194.5 29.5,194.5C 29.5,199.5 29.5,204.5 29.5,209.5C 24.5,209.5 19.5,209.5 14.5,209.5C 14.5,204.5 14.5,199.5 14.5,194.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 29.5,194.5 C 34.5,194.5 39.5,194.5 44.5,194.5C 44.5,199.5 44.5,204.5 44.5,209.5C 39.5,209.5 34.5,209.5 29.5,209.5C 29.5,204.5 29.5,199.5 29.5,194.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 44.5,194.5 C 49.5,194.5 54.5,194.5 59.5,194.5C 59.5,199.5 59.5,204.5 59.5,209.5C 54.5,209.5 49.5,209.5 44.5,209.5C 44.5,204.5 44.5,199.5 44.5,194.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 59.5,194.5 C 64.5,194.5 69.5,194.5 74.5,194.5C 74.5,199.5 74.5,204.5 74.5,209.5C 69.5,209.5 64.5,209.5 59.5,209.5C 59.5,204.5 59.5,199.5 59.5,194.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 74.5,194.5 C 79.5,194.5 84.5,194.5 89.5,194.5C 89.5,199.5 89.5,204.5 89.5,209.5C 84.5,209.5 79.5,209.5 74.5,209.5C 74.5,204.5 74.5,199.5 74.5,194.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 89.5,194.5 C 94.5,194.5 99.5,194.5 104.5,194.5C 104.5,199.5 104.5,204.5 104.5,209.5C 99.5,209.5 94.5,209.5 89.5,209.5C 89.5,204.5 89.5,199.5 89.5,194.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 104.5,194.5 C 109.5,194.5 114.5,194.5 119.5,194.5C 119.5,199.5 119.5,204.5 119.5,209.5C 114.5,209.5 109.5,209.5 104.5,209.5C 104.5,204.5 104.5,199.5 104.5,194.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 119.5,194.5 C 124.5,194.5 129.5,194.5 134.5,194.5C 134.5,199.5 134.5,204.5 134.5,209.5C 129.5,209.5 124.5,209.5 119.5,209.5C 119.5,204.5 119.5,199.5 119.5,194.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 134.5,194.5 C 139.5,194.5 144.5,194.5 149.5,194.5C 149.5,199.5 149.5,204.5 149.5,209.5C 144.5,209.5 139.5,209.5 134.5,209.5C 134.5,204.5 134.5,199.5 134.5,194.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 149.5,194.5 C 154.5,194.5 159.5,194.5 164.5,194.5C 164.5,199.5 164.5,204.5 164.5,209.5C 159.5,209.5 154.5,209.5 149.5,209.5C 149.5,204.5 149.5,199.5 149.5,194.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 164.5,194.5 C 169.5,194.5 174.5,194.5 179.5,194.5C 179.5,199.5 179.5,204.5 179.5,209.5C 174.5,209.5 169.5,209.5 164.5,209.5C 164.5,204.5 164.5,199.5 164.5,194.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 179.5,194.5 C 184.5,194.5 189.5,194.5 194.5,194.5C 194.5,199.5 194.5,204.5 194.5,209.5C 189.5,209.5 184.5,209.5 179.5,209.5C 179.5,204.5 179.5,199.5 179.5,194.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 194.5,194.5 C 199.5,194.5 204.5,194.5 209.5,194.5C 209.5,199.5 209.5,204.5 209.5,209.5C 204.5,209.5 199.5,209.5 194.5,209.5C 194.5,204.5 194.5,199.5 194.5,194.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 209.5,194.5 C 214.5,194.5 219.5,194.5 224.5,194.5C 224.5,199.5 224.5,204.5 224.5,209.5C 219.5,209.5 214.5,209.5 209.5,209.5C 209.5,204.5 209.5,199.5 209.5,194.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 224.5,194.5 C 229.5,194.5 234.5,194.5 239.5,194.5C 239.5,199.5 239.5,204.5 239.5,209.5C 234.5,209.5 229.5,209.5 224.5,209.5C 224.5,204.5 224.5,199.5 224.5,194.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 239.5,194.5 C 244.5,194.5 249.5,194.5 254.5,194.5C 254.5,199.5 254.5,204.5 254.5,209.5C 249.5,209.5 244.5,209.5 239.5,209.5C 239.5,204.5 239.5,199.5 239.5,194.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M -0.5,209.5 C 4.5,209.5 9.5,209.5 14.5,209.5C 14.5,214.5 14.5,219.5 14.5,224.5C 9.5,224.5 4.5,224.5 -0.5,224.5C -0.5,219.5 -0.5,214.5 -0.5,209.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 14.5,209.5 C 19.5,209.5 24.5,209.5 29.5,209.5C 29.5,214.5 29.5,219.5 29.5,224.5C 24.5,224.5 19.5,224.5 14.5,224.5C 14.5,219.5 14.5,214.5 14.5,209.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 29.5,209.5 C 34.5,209.5 39.5,209.5 44.5,209.5C 44.5,214.5 44.5,219.5 44.5,224.5C 39.5,224.5 34.5,224.5 29.5,224.5C 29.5,219.5 29.5,214.5 29.5,209.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 44.5,209.5 C 49.5,209.5 54.5,209.5 59.5,209.5C 59.5,214.5 59.5,219.5 59.5,224.5C 54.5,224.5 49.5,224.5 44.5,224.5C 44.5,219.5 44.5,214.5 44.5,209.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 59.5,209.5 C 64.5,209.5 69.5,209.5 74.5,209.5C 74.5,214.5 74.5,219.5 74.5,224.5C 69.5,224.5 64.5,224.5 59.5,224.5C 59.5,219.5 59.5,214.5 59.5,209.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 74.5,209.5 C 79.5,209.5 84.5,209.5 89.5,209.5C 89.5,214.5 89.5,219.5 89.5,224.5C 84.5,224.5 79.5,224.5 74.5,224.5C 74.5,219.5 74.5,214.5 74.5,209.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 89.5,209.5 C 94.5,209.5 99.5,209.5 104.5,209.5C 104.5,214.5 104.5,219.5 104.5,224.5C 99.5,224.5 94.5,224.5 89.5,224.5C 89.5,219.5 89.5,214.5 89.5,209.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 104.5,209.5 C 109.5,209.5 114.5,209.5 119.5,209.5C 119.5,214.5 119.5,219.5 119.5,224.5C 114.5,224.5 109.5,224.5 104.5,224.5C 104.5,219.5 104.5,214.5 104.5,209.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 119.5,209.5 C 124.5,209.5 129.5,209.5 134.5,209.5C 134.5,214.5 134.5,219.5 134.5,224.5C 129.5,224.5 124.5,224.5 119.5,224.5C 119.5,219.5 119.5,214.5 119.5,209.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 134.5,209.5 C 139.5,209.5 144.5,209.5 149.5,209.5C 149.5,214.5 149.5,219.5 149.5,224.5C 144.5,224.5 139.5,224.5 134.5,224.5C 134.5,219.5 134.5,214.5 134.5,209.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 149.5,209.5 C 154.5,209.5 159.5,209.5 164.5,209.5C 164.5,214.5 164.5,219.5 164.5,224.5C 159.5,224.5 154.5,224.5 149.5,224.5C 149.5,219.5 149.5,214.5 149.5,209.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 164.5,209.5 C 169.5,209.5 174.5,209.5 179.5,209.5C 179.5,214.5 179.5,219.5 179.5,224.5C 174.5,224.5 169.5,224.5 164.5,224.5C 164.5,219.5 164.5,214.5 164.5,209.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 179.5,209.5 C 184.5,209.5 189.5,209.5 194.5,209.5C 194.5,214.5 194.5,219.5 194.5,224.5C 189.5,224.5 184.5,224.5 179.5,224.5C 179.5,219.5 179.5,214.5 179.5,209.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 194.5,209.5 C 199.5,209.5 204.5,209.5 209.5,209.5C 209.5,214.5 209.5,219.5 209.5,224.5C 204.5,224.5 199.5,224.5 194.5,224.5C 194.5,219.5 194.5,214.5 194.5,209.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 209.5,209.5 C 214.5,209.5 219.5,209.5 224.5,209.5C 224.5,214.5 224.5,219.5 224.5,224.5C 219.5,224.5 214.5,224.5 209.5,224.5C 209.5,219.5 209.5,214.5 209.5,209.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 224.5,209.5 C 229.5,209.5 234.5,209.5 239.5,209.5C 239.5,214.5 239.5,219.5 239.5,224.5C 234.5,224.5 229.5,224.5 224.5,224.5C 224.5,219.5 224.5,214.5 224.5,209.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 239.5,209.5 C 244.5,209.5 249.5,209.5 254.5,209.5C 254.5,214.5 254.5,219.5 254.5,224.5C 249.5,224.5 244.5,224.5 239.5,224.5C 239.5,219.5 239.5,214.5 239.5,209.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 254.5,209.5 C 259.5,209.5 264.5,209.5 269.5,209.5C 269.5,214.5 269.5,219.5 269.5,224.5C 264.5,224.5 259.5,224.5 254.5,224.5C 254.5,219.5 254.5,214.5 254.5,209.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M -0.5,224.5 C 4.5,224.5 9.5,224.5 14.5,224.5C 14.5,229.5 14.5,234.5 14.5,239.5C 9.5,239.5 4.5,239.5 -0.5,239.5C -0.5,234.5 -0.5,229.5 -0.5,224.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 14.5,224.5 C 19.5,224.5 24.5,224.5 29.5,224.5C 29.5,229.5 29.5,234.5 29.5,239.5C 24.5,239.5 19.5,239.5 14.5,239.5C 14.5,234.5 14.5,229.5 14.5,224.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 29.5,224.5 C 34.5,224.5 39.5,224.5 44.5,224.5C 44.5,229.5 44.5,234.5 44.5,239.5C 39.5,239.5 34.5,239.5 29.5,239.5C 29.5,234.5 29.5,229.5 29.5,224.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 44.5,224.5 C 49.5,224.5 54.5,224.5 59.5,224.5C 59.5,229.5 59.5,234.5 59.5,239.5C 54.5,239.5 49.5,239.5 44.5,239.5C 44.5,234.5 44.5,229.5 44.5,224.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 59.5,224.5 C 64.5,224.5 69.5,224.5 74.5,224.5C 74.5,229.5 74.5,234.5 74.5,239.5C 69.5,239.5 64.5,239.5 59.5,239.5C 59.5,234.5 59.5,229.5 59.5,224.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 74.5,224.5 C 79.5,224.5 84.5,224.5 89.5,224.5C 89.5,229.5 89.5,234.5 89.5,239.5C 84.5,239.5 79.5,239.5 74.5,239.5C 74.5,234.5 74.5,229.5 74.5,224.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 89.5,224.5 C 94.5,224.5 99.5,224.5 104.5,224.5C 104.5,229.5 104.5,234.5 104.5,239.5C 99.5,239.5 94.5,239.5 89.5,239.5C 89.5,234.5 89.5,229.5 89.5,224.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 104.5,224.5 C 109.5,224.5 114.5,224.5 119.5,224.5C 119.5,229.5 119.5,234.5 119.5,239.5C 114.5,239.5 109.5,239.5 104.5,239.5C 104.5,234.5 104.5,229.5 104.5,224.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 119.5,224.5 C 124.5,224.5 129.5,224.5 134.5,224.5C 134.5,229.5 134.5,234.5 134.5,239.5C 129.5,239.5 124.5,239.5 119.5,239.5C 119.5,234.5 119.5,229.5 119.5,224.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 134.5,224.5 C 139.5,224.5 144.5,224.5 149.5,224.5C 149.5,229.5 149.5,234.5 149.5,239.5C 144.5,239.5 139.5,239.5 134.5,239.5C 134.5,234.5 134.5,229.5 134.5,224.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 149.5,224.5 C 154.5,224.5 159.5,224.5 164.5,224.5C 164.5,229.5 164.5,234.5 164.5,239.5C 159.5,239.5 154.5,239.5 149.5,239.5C 149.5,234.5 149.5,229.5 149.5,224.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 164.5,224.5 C 169.5,224.5 174.5,224.5 179.5,224.5C 179.5,229.5 179.5,234.5 179.5,239.5C 174.5,239.5 169.5,239.5 164.5,239.5C 164.5,234.5 164.5,229.5 164.5,224.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 179.5,224.5 C 184.5,224.5 189.5,224.5 194.5,224.5C 194.5,229.5 194.5,234.5 194.5,239.5C 189.5,239.5 184.5,239.5 179.5,239.5C 179.5,234.5 179.5,229.5 179.5,224.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 194.5,224.5 C 199.5,224.5 204.5,224.5 209.5,224.5C 209.5,229.5 209.5,234.5 209.5,239.5C 204.5,239.5 199.5,239.5 194.5,239.5C 194.5,234.5 194.5,229.5 194.5,224.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 209.5,224.5 C 214.5,224.5 219.5,224.5 224.5,224.5C 224.5,229.5 224.5,234.5 224.5,239.5C 219.5,239.5 214.5,239.5 209.5,239.5C 209.5,234.5 209.5,229.5 209.5,224.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 224.5,224.5 C 229.5,224.5 234.5,224.5 239.5,224.5C 239.5,229.5 239.5,234.5 239.5,239.5C 234.5,239.5 229.5,239.5 224.5,239.5C 224.5,234.5 224.5,229.5 224.5,224.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 239.5,224.5 C 244.5,224.5 249.5,224.5 254.5,224.5C 254.5,229.5 254.5,234.5 254.5,239.5C 249.5,239.5 244.5,239.5 239.5,239.5C 239.5,234.5 239.5,229.5 239.5,224.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M -0.5,239.5 C 4.5,239.5 9.5,239.5 14.5,239.5C 14.5,244.5 14.5,249.5 14.5,254.5C 9.5,254.5 4.5,254.5 -0.5,254.5C -0.5,249.5 -0.5,244.5 -0.5,239.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 14.5,239.5 C 19.5,239.5 24.5,239.5 29.5,239.5C 29.5,244.5 29.5,249.5 29.5,254.5C 24.5,254.5 19.5,254.5 14.5,254.5C 14.5,249.5 14.5,244.5 14.5,239.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 29.5,239.5 C 34.5,239.5 39.5,239.5 44.5,239.5C 44.5,244.5 44.5,249.5 44.5,254.5C 39.5,254.5 34.5,254.5 29.5,254.5C 29.5,249.5 29.5,244.5 29.5,239.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 44.5,239.5 C 49.5,239.5 54.5,239.5 59.5,239.5C 59.5,244.5 59.5,249.5 59.5,254.5C 54.5,254.5 49.5,254.5 44.5,254.5C 44.5,249.5 44.5,244.5 44.5,239.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 59.5,239.5 C 64.5,239.5 69.5,239.5 74.5,239.5C 74.5,244.5 74.5,249.5 74.5,254.5C 69.5,254.5 64.5,254.5 59.5,254.5C 59.5,249.5 59.5,244.5 59.5,239.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 74.5,239.5 C 79.5,239.5 84.5,239.5 89.5,239.5C 89.5,244.5 89.5,249.5 89.5,254.5C 84.5,254.5 79.5,254.5 74.5,254.5C 74.5,249.5 74.5,244.5 74.5,239.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 89.5,239.5 C 94.5,239.5 99.5,239.5 104.5,239.5C 104.5,244.5 104.5,249.5 104.5,254.5C 99.5,254.5 94.5,254.5 89.5,254.5C 89.5,249.5 89.5,244.5 89.5,239.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 104.5,239.5 C 109.5,239.5 114.5,239.5 119.5,239.5C 119.5,244.5 119.5,249.5 119.5,254.5C 114.5,254.5 109.5,254.5 104.5,254.5C 104.5,249.5 104.5,244.5 104.5,239.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 119.5,239.5 C 124.5,239.5 129.5,239.5 134.5,239.5C 134.5,244.5 134.5,249.5 134.5,254.5C 129.5,254.5 124.5,254.5 119.5,254.5C 119.5,249.5 119.5,244.5 119.5,239.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 134.5,239.5 C 139.5,239.5 144.5,239.5 149.5,239.5C 149.5,244.5 149.5,249.5 149.5,254.5C 144.5,254.5 139.5,254.5 134.5,254.5C 134.5,249.5 134.5,244.5 134.5,239.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 149.5,239.5 C 154.5,239.5 159.5,239.5 164.5,239.5C 164.5,244.5 164.5,249.5 164.5,254.5C 159.5,254.5 154.5,254.5 149.5,254.5C 149.5,249.5 149.5,244.5 149.5,239.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 164.5,239.5 C 169.5,239.5 174.5,239.5 179.5,239.5C 179.5,244.5 179.5,249.5 179.5,254.5C 174.5,254.5 169.5,254.5 164.5,254.5C 164.5,249.5 164.5,244.5 164.5,239.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 179.5,239.5 C 184.5,239.5 189.5,239.5 194.5,239.5C 194.5,244.5 194.5,249.5 194.5,254.5C 189.5,254.5 184.5,254.5 179.5,254.5C 179.5,249.5 179.5,244.5 179.5,239.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 194.5,239.5 C 199.5,239.5 204.5,239.5 209.5,239.5C 209.5,244.5 209.5,249.5 209.5,254.5C 204.5,254.5 199.5,254.5 194.5,254.5C 194.5,249.5 194.5,244.5 194.5,239.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 209.5,239.5 C 214.5,239.5 219.5,239.5 224.5,239.5C 224.5,244.5 224.5,249.5 224.5,254.5C 219.5,254.5 214.5,254.5 209.5,254.5C 209.5,249.5 209.5,244.5 209.5,239.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 224.5,239.5 C 229.5,239.5 234.5,239.5 239.5,239.5C 239.5,244.5 239.5,249.5 239.5,254.5C 234.5,254.5 229.5,254.5 224.5,254.5C 224.5,249.5 224.5,244.5 224.5,239.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 239.5,239.5 C 244.5,239.5 249.5,239.5 254.5,239.5C 254.5,244.5 254.5,249.5 254.5,254.5C 249.5,254.5 244.5,254.5 239.5,254.5C 239.5,249.5 239.5,244.5 239.5,239.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 254.5,239.5 C 259.5,239.5 264.5,239.5 269.5,239.5C 269.5,244.5 269.5,249.5 269.5,254.5C 264.5,254.5 259.5,254.5 254.5,254.5C 254.5,249.5 254.5,244.5 254.5,239.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M -0.5,254.5 C 4.5,254.5 9.5,254.5 14.5,254.5C 14.5,259.5 14.5,264.5 14.5,269.5C 9.5,269.5 4.5,269.5 -0.5,269.5C -0.5,264.5 -0.5,259.5 -0.5,254.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 14.5,254.5 C 19.5,254.5 24.5,254.5 29.5,254.5C 29.5,259.5 29.5,264.5 29.5,269.5C 24.5,269.5 19.5,269.5 14.5,269.5C 14.5,264.5 14.5,259.5 14.5,254.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 29.5,254.5 C 34.5,254.5 39.5,254.5 44.5,254.5C 44.5,259.5 44.5,264.5 44.5,269.5C 39.5,269.5 34.5,269.5 29.5,269.5C 29.5,264.5 29.5,259.5 29.5,254.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 44.5,254.5 C 49.5,254.5 54.5,254.5 59.5,254.5C 59.5,259.5 59.5,264.5 59.5,269.5C 54.5,269.5 49.5,269.5 44.5,269.5C 44.5,264.5 44.5,259.5 44.5,254.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 59.5,254.5 C 64.5,254.5 69.5,254.5 74.5,254.5C 74.5,259.5 74.5,264.5 74.5,269.5C 69.5,269.5 64.5,269.5 59.5,269.5C 59.5,264.5 59.5,259.5 59.5,254.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 74.5,254.5 C 79.5,254.5 84.5,254.5 89.5,254.5C 89.5,259.5 89.5,264.5 89.5,269.5C 84.5,269.5 79.5,269.5 74.5,269.5C 74.5,264.5 74.5,259.5 74.5,254.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 89.5,254.5 C 94.5,254.5 99.5,254.5 104.5,254.5C 104.5,259.5 104.5,264.5 104.5,269.5C 99.5,269.5 94.5,269.5 89.5,269.5C 89.5,264.5 89.5,259.5 89.5,254.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 104.5,254.5 C 109.5,254.5 114.5,254.5 119.5,254.5C 119.5,259.5 119.5,264.5 119.5,269.5C 114.5,269.5 109.5,269.5 104.5,269.5C 104.5,264.5 104.5,259.5 104.5,254.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 119.5,254.5 C 124.5,254.5 129.5,254.5 134.5,254.5C 134.5,259.5 134.5,264.5 134.5,269.5C 129.5,269.5 124.5,269.5 119.5,269.5C 119.5,264.5 119.5,259.5 119.5,254.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 134.5,254.5 C 139.5,254.5 144.5,254.5 149.5,254.5C 149.5,259.5 149.5,264.5 149.5,269.5C 144.5,269.5 139.5,269.5 134.5,269.5C 134.5,264.5 134.5,259.5 134.5,254.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 149.5,254.5 C 154.5,254.5 159.5,254.5 164.5,254.5C 164.5,259.5 164.5,264.5 164.5,269.5C 159.5,269.5 154.5,269.5 149.5,269.5C 149.5,264.5 149.5,259.5 149.5,254.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 164.5,254.5 C 169.5,254.5 174.5,254.5 179.5,254.5C 179.5,259.5 179.5,264.5 179.5,269.5C 174.5,269.5 169.5,269.5 164.5,269.5C 164.5,264.5 164.5,259.5 164.5,254.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 179.5,254.5 C 184.5,254.5 189.5,254.5 194.5,254.5C 194.5,259.5 194.5,264.5 194.5,269.5C 189.5,269.5 184.5,269.5 179.5,269.5C 179.5,264.5 179.5,259.5 179.5,254.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 194.5,254.5 C 199.5,254.5 204.5,254.5 209.5,254.5C 209.5,259.5 209.5,264.5 209.5,269.5C 204.5,269.5 199.5,269.5 194.5,269.5C 194.5,264.5 194.5,259.5 194.5,254.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 209.5,254.5 C 214.5,254.5 219.5,254.5 224.5,254.5C 224.5,259.5 224.5,264.5 224.5,269.5C 219.5,269.5 214.5,269.5 209.5,269.5C 209.5,264.5 209.5,259.5 209.5,254.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 224.5,254.5 C 229.5,254.5 234.5,254.5 239.5,254.5C 239.5,259.5 239.5,264.5 239.5,269.5C 234.5,269.5 229.5,269.5 224.5,269.5C 224.5,264.5 224.5,259.5 224.5,254.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 239.5,254.5 C 244.5,254.5 249.5,254.5 254.5,254.5C 254.5,259.5 254.5,264.5 254.5,269.5C 249.5,269.5 244.5,269.5 239.5,269.5C 239.5,264.5 239.5,259.5 239.5,254.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 704.5,254.5 C 704.5,259.5 704.5,264.5 704.5,269.5C 699.5,269.5 694.5,269.5 689.5,269.5C 689.5,264.5 689.5,259.5 689.5,254.5C 694.5,254.5 699.5,254.5 704.5,254.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M -0.5,269.5 C 4.5,269.5 9.5,269.5 14.5,269.5C 14.5,274.5 14.5,279.5 14.5,284.5C 9.5,284.5 4.5,284.5 -0.5,284.5C -0.5,279.5 -0.5,274.5 -0.5,269.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 14.5,269.5 C 19.5,269.5 24.5,269.5 29.5,269.5C 29.5,274.5 29.5,279.5 29.5,284.5C 24.5,284.5 19.5,284.5 14.5,284.5C 14.5,279.5 14.5,274.5 14.5,269.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 29.5,269.5 C 34.5,269.5 39.5,269.5 44.5,269.5C 44.5,274.5 44.5,279.5 44.5,284.5C 39.5,284.5 34.5,284.5 29.5,284.5C 29.5,279.5 29.5,274.5 29.5,269.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 44.5,269.5 C 49.5,269.5 54.5,269.5 59.5,269.5C 59.5,274.5 59.5,279.5 59.5,284.5C 54.5,284.5 49.5,284.5 44.5,284.5C 44.5,279.5 44.5,274.5 44.5,269.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 59.5,269.5 C 64.5,269.5 69.5,269.5 74.5,269.5C 74.5,274.5 74.5,279.5 74.5,284.5C 69.5,284.5 64.5,284.5 59.5,284.5C 59.5,279.5 59.5,274.5 59.5,269.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 74.5,269.5 C 79.5,269.5 84.5,269.5 89.5,269.5C 89.5,274.5 89.5,279.5 89.5,284.5C 84.5,284.5 79.5,284.5 74.5,284.5C 74.5,279.5 74.5,274.5 74.5,269.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 89.5,269.5 C 94.5,269.5 99.5,269.5 104.5,269.5C 104.5,274.5 104.5,279.5 104.5,284.5C 99.5,284.5 94.5,284.5 89.5,284.5C 89.5,279.5 89.5,274.5 89.5,269.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 104.5,269.5 C 109.5,269.5 114.5,269.5 119.5,269.5C 119.5,274.5 119.5,279.5 119.5,284.5C 114.5,284.5 109.5,284.5 104.5,284.5C 104.5,279.5 104.5,274.5 104.5,269.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 119.5,269.5 C 124.5,269.5 129.5,269.5 134.5,269.5C 134.5,274.5 134.5,279.5 134.5,284.5C 129.5,284.5 124.5,284.5 119.5,284.5C 119.5,279.5 119.5,274.5 119.5,269.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 134.5,269.5 C 139.5,269.5 144.5,269.5 149.5,269.5C 149.5,274.5 149.5,279.5 149.5,284.5C 144.5,284.5 139.5,284.5 134.5,284.5C 134.5,279.5 134.5,274.5 134.5,269.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 149.5,269.5 C 154.5,269.5 159.5,269.5 164.5,269.5C 164.5,274.5 164.5,279.5 164.5,284.5C 159.5,284.5 154.5,284.5 149.5,284.5C 149.5,279.5 149.5,274.5 149.5,269.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 164.5,269.5 C 169.5,269.5 174.5,269.5 179.5,269.5C 179.5,274.5 179.5,279.5 179.5,284.5C 174.5,284.5 169.5,284.5 164.5,284.5C 164.5,279.5 164.5,274.5 164.5,269.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 179.5,269.5 C 184.5,269.5 189.5,269.5 194.5,269.5C 194.5,274.5 194.5,279.5 194.5,284.5C 189.5,284.5 184.5,284.5 179.5,284.5C 179.5,279.5 179.5,274.5 179.5,269.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 194.5,269.5 C 199.5,269.5 204.5,269.5 209.5,269.5C 209.5,274.5 209.5,279.5 209.5,284.5C 204.5,284.5 199.5,284.5 194.5,284.5C 194.5,279.5 194.5,274.5 194.5,269.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 209.5,269.5 C 214.5,269.5 219.5,269.5 224.5,269.5C 224.5,274.5 224.5,279.5 224.5,284.5C 219.5,284.5 214.5,284.5 209.5,284.5C 209.5,279.5 209.5,274.5 209.5,269.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 224.5,269.5 C 229.5,269.5 234.5,269.5 239.5,269.5C 239.5,274.5 239.5,279.5 239.5,284.5C 234.5,284.5 229.5,284.5 224.5,284.5C 224.5,279.5 224.5,274.5 224.5,269.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 239.5,269.5 C 244.5,269.5 249.5,269.5 254.5,269.5C 254.5,274.5 254.5,279.5 254.5,284.5C 249.5,284.5 244.5,284.5 239.5,284.5C 239.5,279.5 239.5,274.5 239.5,269.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 254.5,269.5 C 259.5,269.5 264.5,269.5 269.5,269.5C 269.5,274.5 269.5,279.5 269.5,284.5C 264.5,284.5 259.5,284.5 254.5,284.5C 254.5,279.5 254.5,274.5 254.5,269.5 Z"/></g>
<g><path style="opacity:1" fill="#f4f4f4" d="M 704.5,254.5 C 699.5,254.5 694.5,254.5 689.5,254.5C 689.5,259.5 689.5,264.5 689.5,269.5C 694.5,269.5 699.5,269.5 704.5,269.5C 704.5,274.5 704.5,279.5 704.5,284.5C 709.5,284.5 714.5,284.5 719.5,284.5C 719.5,289.5 719.5,294.5 719.5,299.5C 724.5,299.5 729.5,299.5 734.5,299.5C 734.5,304.5 734.5,309.5 734.5,314.5C 739.5,314.5 744.5,314.5 749.5,314.5C 749.5,319.5 749.5,324.5 749.5,329.5C 754.5,329.5 759.5,329.5 764.5,329.5C 764.5,334.5 764.5,339.5 764.5,344.5C 769.5,344.5 774.5,344.5 779.5,344.5C 779.5,349.5 779.5,354.5 779.5,359.5C 784.5,359.5 789.5,359.5 794.5,359.5C 794.5,364.5 794.5,369.5 794.5,374.5C 799.5,374.5 804.5,374.5 809.5,374.5C 809.5,379.5 809.5,384.5 809.5,389.5C 814.5,389.5 819.5,389.5 824.5,389.5C 824.5,394.5 824.5,399.5 824.5,404.5C 829.5,404.5 834.5,404.5 839.5,404.5C 839.5,409.5 839.5,414.5 839.5,419.5C 844.5,419.5 849.5,419.5 854.5,419.5C 854.5,424.5 854.5,429.5 854.5,434.5C 859.5,434.5 864.5,434.5 869.5,434.5C 869.5,439.5 869.5,444.5 869.5,449.5C 874.5,449.5 879.5,449.5 884.5,449.5C 884.5,454.5 884.5,459.5 884.5,464.5C 889.5,464.5 894.5,464.5 899.5,464.5C 904.5,464.5 909.5,464.5 914.5,464.5C 914.5,469.5 914.5,474.5 914.5,479.5C 909.5,479.5 904.5,479.5 899.5,479.5C 899.5,484.5 899.5,489.5 899.5,494.5C 904.5,494.5 909.5,494.5 914.5,494.5C 914.5,499.5 914.5,504.5 914.5,509.5C 909.5,509.5 904.5,509.5 899.5,509.5C 894.5,509.5 889.5,509.5 884.5,509.5C 884.5,504.5 884.5,499.5 884.5,494.5C 879.5,494.5 874.5,494.5 869.5,494.5C 869.5,499.5 869.5,504.5 869.5,509.5C 864.5,509.5 859.5,509.5 854.5,509.5C 854.5,504.5 854.5,499.5 854.5,494.5C 849.5,494.5 844.5,494.5 839.5,494.5C 839.5,499.5 839.5,504.5 839.5,509.5C 834.5,509.5 829.5,509.5 824.5,509.5C 824.5,504.5 824.5,499.5 824.5,494.5C 819.5,494.5 814.5,494.5 809.5,494.5C 809.5,489.5 809.5,484.5 809.5,479.5C 804.5,479.5 799.5,479.5 794.5,479.5C 794.5,474.5 794.5,469.5 794.5,464.5C 789.5,464.5 784.5,464.5 779.5,464.5C 779.5,459.5 779.5,454.5 779.5,449.5C 774.5,449.5 769.5,449.5 764.5,449.5C 764.5,444.5 764.5,439.5 764.5,434.5C 759.5,434.5 754.5,434.5 749.5,434.5C 749.5,429.5 749.5,424.5 749.5,419.5C 744.5,419.5 739.5,419.5 734.5,419.5C 734.5,414.5 734.5,409.5 734.5,404.5C 729.5,404.5 724.5,404.5 719.5,404.5C 719.5,399.5 719.5,394.5 719.5,389.5C 714.5,389.5 709.5,389.5 704.5,389.5C 704.5,384.5 704.5,379.5 704.5,374.5C 699.5,374.5 694.5,374.5 689.5,374.5C 689.5,369.5 689.5,364.5 689.5,359.5C 684.5,359.5 679.5,359.5 674.5,359.5C 674.5,354.5 674.5,349.5 674.5,344.5C 669.5,344.5 664.5,344.5 659.5,344.5C 659.5,339.5 659.5,334.5 659.5,329.5C 659.5,324.5 659.5,319.5 659.5,314.5C 659.756,310.731 659.423,307.064 658.5,303.5C 661.433,301.355 664.433,299.188 667.5,297C 694.217,273.637 695.217,249.303 670.5,224C 660.813,216.489 650.479,209.989 639.5,204.5C 640.994,203.601 642.494,203.935 644,205.5C 644.499,201.848 644.665,198.182 644.5,194.5C 649.5,194.5 654.5,194.5 659.5,194.5C 659.5,199.5 659.5,204.5 659.5,209.5C 664.5,209.5 669.5,209.5 674.5,209.5C 674.5,214.5 674.5,219.5 674.5,224.5C 679.5,224.5 684.5,224.5 689.5,224.5C 689.5,229.5 689.5,234.5 689.5,239.5C 694.5,239.5 699.5,239.5 704.5,239.5C 704.5,244.5 704.5,249.5 704.5,254.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M -0.5,284.5 C 4.5,284.5 9.5,284.5 14.5,284.5C 14.5,289.5 14.5,294.5 14.5,299.5C 9.5,299.5 4.5,299.5 -0.5,299.5C -0.5,294.5 -0.5,289.5 -0.5,284.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 14.5,284.5 C 19.5,284.5 24.5,284.5 29.5,284.5C 29.5,289.5 29.5,294.5 29.5,299.5C 24.5,299.5 19.5,299.5 14.5,299.5C 14.5,294.5 14.5,289.5 14.5,284.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 29.5,284.5 C 34.5,284.5 39.5,284.5 44.5,284.5C 44.5,289.5 44.5,294.5 44.5,299.5C 39.5,299.5 34.5,299.5 29.5,299.5C 29.5,294.5 29.5,289.5 29.5,284.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 44.5,284.5 C 49.5,284.5 54.5,284.5 59.5,284.5C 59.5,289.5 59.5,294.5 59.5,299.5C 54.5,299.5 49.5,299.5 44.5,299.5C 44.5,294.5 44.5,289.5 44.5,284.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 59.5,284.5 C 64.5,284.5 69.5,284.5 74.5,284.5C 74.5,289.5 74.5,294.5 74.5,299.5C 69.5,299.5 64.5,299.5 59.5,299.5C 59.5,294.5 59.5,289.5 59.5,284.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 74.5,284.5 C 79.5,284.5 84.5,284.5 89.5,284.5C 89.5,289.5 89.5,294.5 89.5,299.5C 84.5,299.5 79.5,299.5 74.5,299.5C 74.5,294.5 74.5,289.5 74.5,284.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 89.5,284.5 C 94.5,284.5 99.5,284.5 104.5,284.5C 104.5,289.5 104.5,294.5 104.5,299.5C 99.5,299.5 94.5,299.5 89.5,299.5C 89.5,294.5 89.5,289.5 89.5,284.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 104.5,284.5 C 109.5,284.5 114.5,284.5 119.5,284.5C 119.5,289.5 119.5,294.5 119.5,299.5C 114.5,299.5 109.5,299.5 104.5,299.5C 104.5,294.5 104.5,289.5 104.5,284.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 119.5,284.5 C 124.5,284.5 129.5,284.5 134.5,284.5C 134.5,289.5 134.5,294.5 134.5,299.5C 129.5,299.5 124.5,299.5 119.5,299.5C 119.5,294.5 119.5,289.5 119.5,284.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 134.5,284.5 C 139.5,284.5 144.5,284.5 149.5,284.5C 149.5,289.5 149.5,294.5 149.5,299.5C 144.5,299.5 139.5,299.5 134.5,299.5C 134.5,294.5 134.5,289.5 134.5,284.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 149.5,284.5 C 154.5,284.5 159.5,284.5 164.5,284.5C 164.5,289.5 164.5,294.5 164.5,299.5C 159.5,299.5 154.5,299.5 149.5,299.5C 149.5,294.5 149.5,289.5 149.5,284.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 164.5,284.5 C 169.5,284.5 174.5,284.5 179.5,284.5C 179.5,289.5 179.5,294.5 179.5,299.5C 174.5,299.5 169.5,299.5 164.5,299.5C 164.5,294.5 164.5,289.5 164.5,284.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 179.5,284.5 C 184.5,284.5 189.5,284.5 194.5,284.5C 194.5,289.5 194.5,294.5 194.5,299.5C 189.5,299.5 184.5,299.5 179.5,299.5C 179.5,294.5 179.5,289.5 179.5,284.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 194.5,284.5 C 199.5,284.5 204.5,284.5 209.5,284.5C 209.5,289.5 209.5,294.5 209.5,299.5C 204.5,299.5 199.5,299.5 194.5,299.5C 194.5,294.5 194.5,289.5 194.5,284.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 209.5,284.5 C 214.5,284.5 219.5,284.5 224.5,284.5C 224.5,289.5 224.5,294.5 224.5,299.5C 219.5,299.5 214.5,299.5 209.5,299.5C 209.5,294.5 209.5,289.5 209.5,284.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 224.5,284.5 C 229.5,284.5 234.5,284.5 239.5,284.5C 239.5,289.5 239.5,294.5 239.5,299.5C 234.5,299.5 229.5,299.5 224.5,299.5C 224.5,294.5 224.5,289.5 224.5,284.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 239.5,284.5 C 244.5,284.5 249.5,284.5 254.5,284.5C 254.5,289.5 254.5,294.5 254.5,299.5C 249.5,299.5 244.5,299.5 239.5,299.5C 239.5,294.5 239.5,289.5 239.5,284.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M -0.5,299.5 C 4.5,299.5 9.5,299.5 14.5,299.5C 14.5,304.5 14.5,309.5 14.5,314.5C 9.5,314.5 4.5,314.5 -0.5,314.5C -0.5,309.5 -0.5,304.5 -0.5,299.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 14.5,299.5 C 19.5,299.5 24.5,299.5 29.5,299.5C 29.5,304.5 29.5,309.5 29.5,314.5C 24.5,314.5 19.5,314.5 14.5,314.5C 14.5,309.5 14.5,304.5 14.5,299.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 29.5,299.5 C 34.5,299.5 39.5,299.5 44.5,299.5C 44.5,304.5 44.5,309.5 44.5,314.5C 39.5,314.5 34.5,314.5 29.5,314.5C 29.5,309.5 29.5,304.5 29.5,299.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 44.5,299.5 C 49.5,299.5 54.5,299.5 59.5,299.5C 59.5,304.5 59.5,309.5 59.5,314.5C 54.5,314.5 49.5,314.5 44.5,314.5C 44.5,309.5 44.5,304.5 44.5,299.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 59.5,299.5 C 64.5,299.5 69.5,299.5 74.5,299.5C 74.5,304.5 74.5,309.5 74.5,314.5C 69.5,314.5 64.5,314.5 59.5,314.5C 59.5,309.5 59.5,304.5 59.5,299.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 74.5,299.5 C 79.5,299.5 84.5,299.5 89.5,299.5C 89.5,304.5 89.5,309.5 89.5,314.5C 84.5,314.5 79.5,314.5 74.5,314.5C 74.5,309.5 74.5,304.5 74.5,299.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 89.5,299.5 C 94.5,299.5 99.5,299.5 104.5,299.5C 104.5,304.5 104.5,309.5 104.5,314.5C 99.5,314.5 94.5,314.5 89.5,314.5C 89.5,309.5 89.5,304.5 89.5,299.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 104.5,299.5 C 109.5,299.5 114.5,299.5 119.5,299.5C 119.5,304.5 119.5,309.5 119.5,314.5C 114.5,314.5 109.5,314.5 104.5,314.5C 104.5,309.5 104.5,304.5 104.5,299.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 119.5,299.5 C 124.5,299.5 129.5,299.5 134.5,299.5C 134.5,304.5 134.5,309.5 134.5,314.5C 129.5,314.5 124.5,314.5 119.5,314.5C 119.5,309.5 119.5,304.5 119.5,299.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 134.5,299.5 C 139.5,299.5 144.5,299.5 149.5,299.5C 149.5,304.5 149.5,309.5 149.5,314.5C 144.5,314.5 139.5,314.5 134.5,314.5C 134.5,309.5 134.5,304.5 134.5,299.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 149.5,299.5 C 154.5,299.5 159.5,299.5 164.5,299.5C 164.5,304.5 164.5,309.5 164.5,314.5C 159.5,314.5 154.5,314.5 149.5,314.5C 149.5,309.5 149.5,304.5 149.5,299.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 164.5,299.5 C 169.5,299.5 174.5,299.5 179.5,299.5C 179.5,304.5 179.5,309.5 179.5,314.5C 174.5,314.5 169.5,314.5 164.5,314.5C 164.5,309.5 164.5,304.5 164.5,299.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 179.5,299.5 C 184.5,299.5 189.5,299.5 194.5,299.5C 194.5,304.5 194.5,309.5 194.5,314.5C 189.5,314.5 184.5,314.5 179.5,314.5C 179.5,309.5 179.5,304.5 179.5,299.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 194.5,299.5 C 199.5,299.5 204.5,299.5 209.5,299.5C 209.5,304.5 209.5,309.5 209.5,314.5C 204.5,314.5 199.5,314.5 194.5,314.5C 194.5,309.5 194.5,304.5 194.5,299.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 209.5,299.5 C 214.5,299.5 219.5,299.5 224.5,299.5C 224.5,304.5 224.5,309.5 224.5,314.5C 219.5,314.5 214.5,314.5 209.5,314.5C 209.5,309.5 209.5,304.5 209.5,299.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 224.5,299.5 C 229.5,299.5 234.5,299.5 239.5,299.5C 239.5,304.5 239.5,309.5 239.5,314.5C 234.5,314.5 229.5,314.5 224.5,314.5C 224.5,309.5 224.5,304.5 224.5,299.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 239.5,299.5 C 244.5,299.5 249.5,299.5 254.5,299.5C 254.5,304.5 254.5,309.5 254.5,314.5C 249.5,314.5 244.5,314.5 239.5,314.5C 239.5,309.5 239.5,304.5 239.5,299.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 254.5,299.5 C 259.5,299.5 264.5,299.5 269.5,299.5C 269.5,304.5 269.5,309.5 269.5,314.5C 264.5,314.5 259.5,314.5 254.5,314.5C 254.5,309.5 254.5,304.5 254.5,299.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M -0.5,314.5 C 4.5,314.5 9.5,314.5 14.5,314.5C 14.5,319.5 14.5,324.5 14.5,329.5C 9.5,329.5 4.5,329.5 -0.5,329.5C -0.5,324.5 -0.5,319.5 -0.5,314.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 14.5,314.5 C 19.5,314.5 24.5,314.5 29.5,314.5C 29.5,319.5 29.5,324.5 29.5,329.5C 24.5,329.5 19.5,329.5 14.5,329.5C 14.5,324.5 14.5,319.5 14.5,314.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 29.5,314.5 C 34.5,314.5 39.5,314.5 44.5,314.5C 44.5,319.5 44.5,324.5 44.5,329.5C 39.5,329.5 34.5,329.5 29.5,329.5C 29.5,324.5 29.5,319.5 29.5,314.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 44.5,314.5 C 49.5,314.5 54.5,314.5 59.5,314.5C 59.5,319.5 59.5,324.5 59.5,329.5C 54.5,329.5 49.5,329.5 44.5,329.5C 44.5,324.5 44.5,319.5 44.5,314.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 59.5,314.5 C 64.5,314.5 69.5,314.5 74.5,314.5C 74.5,319.5 74.5,324.5 74.5,329.5C 69.5,329.5 64.5,329.5 59.5,329.5C 59.5,324.5 59.5,319.5 59.5,314.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 74.5,314.5 C 79.5,314.5 84.5,314.5 89.5,314.5C 89.5,319.5 89.5,324.5 89.5,329.5C 84.5,329.5 79.5,329.5 74.5,329.5C 74.5,324.5 74.5,319.5 74.5,314.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 89.5,314.5 C 94.5,314.5 99.5,314.5 104.5,314.5C 104.5,319.5 104.5,324.5 104.5,329.5C 99.5,329.5 94.5,329.5 89.5,329.5C 89.5,324.5 89.5,319.5 89.5,314.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 104.5,314.5 C 109.5,314.5 114.5,314.5 119.5,314.5C 119.5,319.5 119.5,324.5 119.5,329.5C 114.5,329.5 109.5,329.5 104.5,329.5C 104.5,324.5 104.5,319.5 104.5,314.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 119.5,314.5 C 124.5,314.5 129.5,314.5 134.5,314.5C 134.5,319.5 134.5,324.5 134.5,329.5C 129.5,329.5 124.5,329.5 119.5,329.5C 119.5,324.5 119.5,319.5 119.5,314.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 134.5,314.5 C 139.5,314.5 144.5,314.5 149.5,314.5C 149.5,319.5 149.5,324.5 149.5,329.5C 144.5,329.5 139.5,329.5 134.5,329.5C 134.5,324.5 134.5,319.5 134.5,314.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 149.5,314.5 C 154.5,314.5 159.5,314.5 164.5,314.5C 164.5,319.5 164.5,324.5 164.5,329.5C 159.5,329.5 154.5,329.5 149.5,329.5C 149.5,324.5 149.5,319.5 149.5,314.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 164.5,314.5 C 169.5,314.5 174.5,314.5 179.5,314.5C 179.5,319.5 179.5,324.5 179.5,329.5C 174.5,329.5 169.5,329.5 164.5,329.5C 164.5,324.5 164.5,319.5 164.5,314.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 179.5,314.5 C 184.5,314.5 189.5,314.5 194.5,314.5C 194.5,319.5 194.5,324.5 194.5,329.5C 189.5,329.5 184.5,329.5 179.5,329.5C 179.5,324.5 179.5,319.5 179.5,314.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 194.5,314.5 C 199.5,314.5 204.5,314.5 209.5,314.5C 209.5,319.5 209.5,324.5 209.5,329.5C 204.5,329.5 199.5,329.5 194.5,329.5C 194.5,324.5 194.5,319.5 194.5,314.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 209.5,314.5 C 214.5,314.5 219.5,314.5 224.5,314.5C 224.5,319.5 224.5,324.5 224.5,329.5C 219.5,329.5 214.5,329.5 209.5,329.5C 209.5,324.5 209.5,319.5 209.5,314.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 224.5,314.5 C 229.5,314.5 234.5,314.5 239.5,314.5C 239.5,319.5 239.5,324.5 239.5,329.5C 234.5,329.5 229.5,329.5 224.5,329.5C 224.5,324.5 224.5,319.5 224.5,314.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 239.5,314.5 C 244.5,314.5 249.5,314.5 254.5,314.5C 254.5,319.5 254.5,324.5 254.5,329.5C 249.5,329.5 244.5,329.5 239.5,329.5C 239.5,324.5 239.5,319.5 239.5,314.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 659.5,314.5 C 659.5,319.5 659.5,324.5 659.5,329.5C 654.5,329.5 649.5,329.5 644.5,329.5C 644.5,324.5 644.5,319.5 644.5,314.5C 649.5,314.5 654.5,314.5 659.5,314.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M -0.5,329.5 C 4.5,329.5 9.5,329.5 14.5,329.5C 14.5,334.5 14.5,339.5 14.5,344.5C 9.5,344.5 4.5,344.5 -0.5,344.5C -0.5,339.5 -0.5,334.5 -0.5,329.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 14.5,329.5 C 19.5,329.5 24.5,329.5 29.5,329.5C 29.5,334.5 29.5,339.5 29.5,344.5C 24.5,344.5 19.5,344.5 14.5,344.5C 14.5,339.5 14.5,334.5 14.5,329.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 29.5,329.5 C 34.5,329.5 39.5,329.5 44.5,329.5C 44.5,334.5 44.5,339.5 44.5,344.5C 39.5,344.5 34.5,344.5 29.5,344.5C 29.5,339.5 29.5,334.5 29.5,329.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 44.5,329.5 C 49.5,329.5 54.5,329.5 59.5,329.5C 59.5,334.5 59.5,339.5 59.5,344.5C 54.5,344.5 49.5,344.5 44.5,344.5C 44.5,339.5 44.5,334.5 44.5,329.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 59.5,329.5 C 64.5,329.5 69.5,329.5 74.5,329.5C 74.5,334.5 74.5,339.5 74.5,344.5C 69.5,344.5 64.5,344.5 59.5,344.5C 59.5,339.5 59.5,334.5 59.5,329.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 74.5,329.5 C 79.5,329.5 84.5,329.5 89.5,329.5C 89.5,334.5 89.5,339.5 89.5,344.5C 84.5,344.5 79.5,344.5 74.5,344.5C 74.5,339.5 74.5,334.5 74.5,329.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 89.5,329.5 C 94.5,329.5 99.5,329.5 104.5,329.5C 104.5,334.5 104.5,339.5 104.5,344.5C 99.5,344.5 94.5,344.5 89.5,344.5C 89.5,339.5 89.5,334.5 89.5,329.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 104.5,329.5 C 109.5,329.5 114.5,329.5 119.5,329.5C 119.5,334.5 119.5,339.5 119.5,344.5C 114.5,344.5 109.5,344.5 104.5,344.5C 104.5,339.5 104.5,334.5 104.5,329.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 119.5,329.5 C 124.5,329.5 129.5,329.5 134.5,329.5C 134.5,334.5 134.5,339.5 134.5,344.5C 129.5,344.5 124.5,344.5 119.5,344.5C 119.5,339.5 119.5,334.5 119.5,329.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 134.5,329.5 C 139.5,329.5 144.5,329.5 149.5,329.5C 149.5,334.5 149.5,339.5 149.5,344.5C 144.5,344.5 139.5,344.5 134.5,344.5C 134.5,339.5 134.5,334.5 134.5,329.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 149.5,329.5 C 154.5,329.5 159.5,329.5 164.5,329.5C 164.5,334.5 164.5,339.5 164.5,344.5C 159.5,344.5 154.5,344.5 149.5,344.5C 149.5,339.5 149.5,334.5 149.5,329.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 164.5,329.5 C 169.5,329.5 174.5,329.5 179.5,329.5C 179.5,334.5 179.5,339.5 179.5,344.5C 174.5,344.5 169.5,344.5 164.5,344.5C 164.5,339.5 164.5,334.5 164.5,329.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 179.5,329.5 C 184.5,329.5 189.5,329.5 194.5,329.5C 194.5,334.5 194.5,339.5 194.5,344.5C 189.5,344.5 184.5,344.5 179.5,344.5C 179.5,339.5 179.5,334.5 179.5,329.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 194.5,329.5 C 199.5,329.5 204.5,329.5 209.5,329.5C 209.5,334.5 209.5,339.5 209.5,344.5C 204.5,344.5 199.5,344.5 194.5,344.5C 194.5,339.5 194.5,334.5 194.5,329.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 209.5,329.5 C 214.5,329.5 219.5,329.5 224.5,329.5C 224.5,334.5 224.5,339.5 224.5,344.5C 219.5,344.5 214.5,344.5 209.5,344.5C 209.5,339.5 209.5,334.5 209.5,329.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 224.5,329.5 C 229.5,329.5 234.5,329.5 239.5,329.5C 239.5,334.5 239.5,339.5 239.5,344.5C 234.5,344.5 229.5,344.5 224.5,344.5C 224.5,339.5 224.5,334.5 224.5,329.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 239.5,329.5 C 244.5,329.5 249.5,329.5 254.5,329.5C 254.5,334.5 254.5,339.5 254.5,344.5C 249.5,344.5 244.5,344.5 239.5,344.5C 239.5,339.5 239.5,334.5 239.5,329.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 254.5,329.5 C 259.5,329.5 264.5,329.5 269.5,329.5C 269.5,334.5 269.5,339.5 269.5,344.5C 264.5,344.5 259.5,344.5 254.5,344.5C 254.5,339.5 254.5,334.5 254.5,329.5 Z"/></g>
<g><path style="opacity:1" fill="#f1f1f1" d="M 658.5,303.5 C 659.423,307.064 659.756,310.731 659.5,314.5C 654.5,314.5 649.5,314.5 644.5,314.5C 644.5,319.5 644.5,324.5 644.5,329.5C 649.5,329.5 654.5,329.5 659.5,329.5C 659.5,334.5 659.5,339.5 659.5,344.5C 664.5,344.5 669.5,344.5 674.5,344.5C 674.5,349.5 674.5,354.5 674.5,359.5C 679.5,359.5 684.5,359.5 689.5,359.5C 689.5,364.5 689.5,369.5 689.5,374.5C 694.5,374.5 699.5,374.5 704.5,374.5C 704.5,379.5 704.5,384.5 704.5,389.5C 709.5,389.5 714.5,389.5 719.5,389.5C 719.5,394.5 719.5,399.5 719.5,404.5C 724.5,404.5 729.5,404.5 734.5,404.5C 734.5,409.5 734.5,414.5 734.5,419.5C 739.5,419.5 744.5,419.5 749.5,419.5C 749.5,424.5 749.5,429.5 749.5,434.5C 754.5,434.5 759.5,434.5 764.5,434.5C 764.5,439.5 764.5,444.5 764.5,449.5C 769.5,449.5 774.5,449.5 779.5,449.5C 779.5,454.5 779.5,459.5 779.5,464.5C 784.5,464.5 789.5,464.5 794.5,464.5C 794.5,469.5 794.5,474.5 794.5,479.5C 799.5,479.5 804.5,479.5 809.5,479.5C 809.5,484.5 809.5,489.5 809.5,494.5C 809.5,499.5 809.5,504.5 809.5,509.5C 804.5,509.5 799.5,509.5 794.5,509.5C 794.5,504.5 794.5,499.5 794.5,494.5C 789.5,494.5 784.5,494.5 779.5,494.5C 779.5,499.5 779.5,504.5 779.5,509.5C 774.5,509.5 769.5,509.5 764.5,509.5C 764.5,504.5 764.5,499.5 764.5,494.5C 759.5,494.5 754.5,494.5 749.5,494.5C 749.5,499.5 749.5,504.5 749.5,509.5C 744.5,509.5 739.5,509.5 734.5,509.5C 734.5,504.5 734.5,499.5 734.5,494.5C 729.5,494.5 724.5,494.5 719.5,494.5C 719.5,499.5 719.5,504.5 719.5,509.5C 714.5,509.5 709.5,509.5 704.5,509.5C 704.5,504.5 704.5,499.5 704.5,494.5C 704.5,489.5 704.5,484.5 704.5,479.5C 699.5,479.5 694.5,479.5 689.5,479.5C 689.5,474.5 689.5,469.5 689.5,464.5C 684.5,464.5 679.5,464.5 674.5,464.5C 674.5,459.5 674.5,454.5 674.5,449.5C 669.5,449.5 664.5,449.5 659.5,449.5C 659.5,444.5 659.5,439.5 659.5,434.5C 654.5,434.5 649.5,434.5 644.5,434.5C 644.5,429.5 644.5,424.5 644.5,419.5C 639.5,419.5 634.5,419.5 629.5,419.5C 629.5,414.5 629.5,409.5 629.5,404.5C 624.5,404.5 619.5,404.5 614.5,404.5C 614.5,399.5 614.5,394.5 614.5,389.5C 609.5,389.5 604.5,389.5 599.5,389.5C 599.5,384.5 599.5,379.5 599.5,374.5C 594.5,374.5 589.5,374.5 584.5,374.5C 584.5,369.5 584.5,364.5 584.5,359.5C 579.5,359.5 574.5,359.5 569.5,359.5C 569.5,364.5 569.5,369.5 569.5,374.5C 564.5,374.5 559.5,374.5 554.5,374.5C 553.99,370.187 554.657,366.187 556.5,362.5C 590.138,342.343 624.138,322.677 658.5,303.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M -0.5,344.5 C 4.5,344.5 9.5,344.5 14.5,344.5C 14.5,349.5 14.5,354.5 14.5,359.5C 9.5,359.5 4.5,359.5 -0.5,359.5C -0.5,354.5 -0.5,349.5 -0.5,344.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 14.5,344.5 C 19.5,344.5 24.5,344.5 29.5,344.5C 29.5,349.5 29.5,354.5 29.5,359.5C 24.5,359.5 19.5,359.5 14.5,359.5C 14.5,354.5 14.5,349.5 14.5,344.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 29.5,344.5 C 34.5,344.5 39.5,344.5 44.5,344.5C 44.5,349.5 44.5,354.5 44.5,359.5C 39.5,359.5 34.5,359.5 29.5,359.5C 29.5,354.5 29.5,349.5 29.5,344.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 44.5,344.5 C 49.5,344.5 54.5,344.5 59.5,344.5C 59.5,349.5 59.5,354.5 59.5,359.5C 54.5,359.5 49.5,359.5 44.5,359.5C 44.5,354.5 44.5,349.5 44.5,344.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 59.5,344.5 C 64.5,344.5 69.5,344.5 74.5,344.5C 74.5,349.5 74.5,354.5 74.5,359.5C 69.5,359.5 64.5,359.5 59.5,359.5C 59.5,354.5 59.5,349.5 59.5,344.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 74.5,344.5 C 79.5,344.5 84.5,344.5 89.5,344.5C 89.5,349.5 89.5,354.5 89.5,359.5C 84.5,359.5 79.5,359.5 74.5,359.5C 74.5,354.5 74.5,349.5 74.5,344.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 89.5,344.5 C 94.5,344.5 99.5,344.5 104.5,344.5C 104.5,349.5 104.5,354.5 104.5,359.5C 99.5,359.5 94.5,359.5 89.5,359.5C 89.5,354.5 89.5,349.5 89.5,344.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 104.5,344.5 C 109.5,344.5 114.5,344.5 119.5,344.5C 119.5,349.5 119.5,354.5 119.5,359.5C 114.5,359.5 109.5,359.5 104.5,359.5C 104.5,354.5 104.5,349.5 104.5,344.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 119.5,344.5 C 124.5,344.5 129.5,344.5 134.5,344.5C 134.5,349.5 134.5,354.5 134.5,359.5C 129.5,359.5 124.5,359.5 119.5,359.5C 119.5,354.5 119.5,349.5 119.5,344.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 134.5,344.5 C 139.5,344.5 144.5,344.5 149.5,344.5C 149.5,349.5 149.5,354.5 149.5,359.5C 144.5,359.5 139.5,359.5 134.5,359.5C 134.5,354.5 134.5,349.5 134.5,344.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 149.5,344.5 C 154.5,344.5 159.5,344.5 164.5,344.5C 164.5,349.5 164.5,354.5 164.5,359.5C 159.5,359.5 154.5,359.5 149.5,359.5C 149.5,354.5 149.5,349.5 149.5,344.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 164.5,344.5 C 169.5,344.5 174.5,344.5 179.5,344.5C 179.5,349.5 179.5,354.5 179.5,359.5C 174.5,359.5 169.5,359.5 164.5,359.5C 164.5,354.5 164.5,349.5 164.5,344.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 179.5,344.5 C 184.5,344.5 189.5,344.5 194.5,344.5C 194.5,349.5 194.5,354.5 194.5,359.5C 189.5,359.5 184.5,359.5 179.5,359.5C 179.5,354.5 179.5,349.5 179.5,344.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 194.5,344.5 C 199.5,344.5 204.5,344.5 209.5,344.5C 209.5,349.5 209.5,354.5 209.5,359.5C 204.5,359.5 199.5,359.5 194.5,359.5C 194.5,354.5 194.5,349.5 194.5,344.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 209.5,344.5 C 214.5,344.5 219.5,344.5 224.5,344.5C 224.5,349.5 224.5,354.5 224.5,359.5C 219.5,359.5 214.5,359.5 209.5,359.5C 209.5,354.5 209.5,349.5 209.5,344.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 224.5,344.5 C 229.5,344.5 234.5,344.5 239.5,344.5C 239.5,349.5 239.5,354.5 239.5,359.5C 234.5,359.5 229.5,359.5 224.5,359.5C 224.5,354.5 224.5,349.5 224.5,344.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 239.5,344.5 C 244.5,344.5 249.5,344.5 254.5,344.5C 254.5,349.5 254.5,354.5 254.5,359.5C 249.5,359.5 244.5,359.5 239.5,359.5C 239.5,354.5 239.5,349.5 239.5,344.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M -0.5,359.5 C 4.5,359.5 9.5,359.5 14.5,359.5C 14.5,364.5 14.5,369.5 14.5,374.5C 9.5,374.5 4.5,374.5 -0.5,374.5C -0.5,369.5 -0.5,364.5 -0.5,359.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 14.5,359.5 C 19.5,359.5 24.5,359.5 29.5,359.5C 29.5,364.5 29.5,369.5 29.5,374.5C 24.5,374.5 19.5,374.5 14.5,374.5C 14.5,369.5 14.5,364.5 14.5,359.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 29.5,359.5 C 34.5,359.5 39.5,359.5 44.5,359.5C 44.5,364.5 44.5,369.5 44.5,374.5C 39.5,374.5 34.5,374.5 29.5,374.5C 29.5,369.5 29.5,364.5 29.5,359.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 44.5,359.5 C 49.5,359.5 54.5,359.5 59.5,359.5C 59.5,364.5 59.5,369.5 59.5,374.5C 54.5,374.5 49.5,374.5 44.5,374.5C 44.5,369.5 44.5,364.5 44.5,359.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 59.5,359.5 C 64.5,359.5 69.5,359.5 74.5,359.5C 74.5,364.5 74.5,369.5 74.5,374.5C 69.5,374.5 64.5,374.5 59.5,374.5C 59.5,369.5 59.5,364.5 59.5,359.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 74.5,359.5 C 79.5,359.5 84.5,359.5 89.5,359.5C 89.5,364.5 89.5,369.5 89.5,374.5C 84.5,374.5 79.5,374.5 74.5,374.5C 74.5,369.5 74.5,364.5 74.5,359.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 89.5,359.5 C 94.5,359.5 99.5,359.5 104.5,359.5C 104.5,364.5 104.5,369.5 104.5,374.5C 99.5,374.5 94.5,374.5 89.5,374.5C 89.5,369.5 89.5,364.5 89.5,359.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 104.5,359.5 C 109.5,359.5 114.5,359.5 119.5,359.5C 119.5,364.5 119.5,369.5 119.5,374.5C 114.5,374.5 109.5,374.5 104.5,374.5C 104.5,369.5 104.5,364.5 104.5,359.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 119.5,359.5 C 124.5,359.5 129.5,359.5 134.5,359.5C 134.5,364.5 134.5,369.5 134.5,374.5C 129.5,374.5 124.5,374.5 119.5,374.5C 119.5,369.5 119.5,364.5 119.5,359.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 134.5,359.5 C 139.5,359.5 144.5,359.5 149.5,359.5C 149.5,364.5 149.5,369.5 149.5,374.5C 144.5,374.5 139.5,374.5 134.5,374.5C 134.5,369.5 134.5,364.5 134.5,359.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 149.5,359.5 C 154.5,359.5 159.5,359.5 164.5,359.5C 164.5,364.5 164.5,369.5 164.5,374.5C 159.5,374.5 154.5,374.5 149.5,374.5C 149.5,369.5 149.5,364.5 149.5,359.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 164.5,359.5 C 169.5,359.5 174.5,359.5 179.5,359.5C 179.5,364.5 179.5,369.5 179.5,374.5C 174.5,374.5 169.5,374.5 164.5,374.5C 164.5,369.5 164.5,364.5 164.5,359.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 179.5,359.5 C 184.5,359.5 189.5,359.5 194.5,359.5C 194.5,364.5 194.5,369.5 194.5,374.5C 189.5,374.5 184.5,374.5 179.5,374.5C 179.5,369.5 179.5,364.5 179.5,359.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 194.5,359.5 C 199.5,359.5 204.5,359.5 209.5,359.5C 209.5,364.5 209.5,369.5 209.5,374.5C 204.5,374.5 199.5,374.5 194.5,374.5C 194.5,369.5 194.5,364.5 194.5,359.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 209.5,359.5 C 214.5,359.5 219.5,359.5 224.5,359.5C 224.5,364.5 224.5,369.5 224.5,374.5C 219.5,374.5 214.5,374.5 209.5,374.5C 209.5,369.5 209.5,364.5 209.5,359.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 224.5,359.5 C 229.5,359.5 234.5,359.5 239.5,359.5C 239.5,364.5 239.5,369.5 239.5,374.5C 234.5,374.5 229.5,374.5 224.5,374.5C 224.5,369.5 224.5,364.5 224.5,359.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 239.5,359.5 C 244.5,359.5 249.5,359.5 254.5,359.5C 254.5,364.5 254.5,369.5 254.5,374.5C 249.5,374.5 244.5,374.5 239.5,374.5C 239.5,369.5 239.5,364.5 239.5,359.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 254.5,359.5 C 259.5,359.5 264.5,359.5 269.5,359.5C 269.5,364.5 269.5,369.5 269.5,374.5C 264.5,374.5 259.5,374.5 254.5,374.5C 254.5,369.5 254.5,364.5 254.5,359.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 584.5,374.5 C 579.5,374.5 574.5,374.5 569.5,374.5C 569.5,369.5 569.5,364.5 569.5,359.5C 574.5,359.5 579.5,359.5 584.5,359.5C 584.5,364.5 584.5,369.5 584.5,374.5 Z"/></g>
<g><path style="opacity:1" fill="#f3f3f3" d="M 556.5,362.5 C 554.657,366.187 553.99,370.187 554.5,374.5C 559.5,374.5 564.5,374.5 569.5,374.5C 574.5,374.5 579.5,374.5 584.5,374.5C 589.5,374.5 594.5,374.5 599.5,374.5C 599.5,379.5 599.5,384.5 599.5,389.5C 604.5,389.5 609.5,389.5 614.5,389.5C 614.5,394.5 614.5,399.5 614.5,404.5C 619.5,404.5 624.5,404.5 629.5,404.5C 629.5,409.5 629.5,414.5 629.5,419.5C 634.5,419.5 639.5,419.5 644.5,419.5C 644.5,424.5 644.5,429.5 644.5,434.5C 649.5,434.5 654.5,434.5 659.5,434.5C 659.5,439.5 659.5,444.5 659.5,449.5C 664.5,449.5 669.5,449.5 674.5,449.5C 674.5,454.5 674.5,459.5 674.5,464.5C 679.5,464.5 684.5,464.5 689.5,464.5C 689.5,469.5 689.5,474.5 689.5,479.5C 694.5,479.5 699.5,479.5 704.5,479.5C 704.5,484.5 704.5,489.5 704.5,494.5C 699.5,494.5 694.5,494.5 689.5,494.5C 689.5,499.5 689.5,504.5 689.5,509.5C 684.5,509.5 679.5,509.5 674.5,509.5C 674.5,504.5 674.5,499.5 674.5,494.5C 669.5,494.5 664.5,494.5 659.5,494.5C 659.5,499.5 659.5,504.5 659.5,509.5C 654.5,509.5 649.5,509.5 644.5,509.5C 644.5,504.5 644.5,499.5 644.5,494.5C 639.5,494.5 634.5,494.5 629.5,494.5C 629.5,499.5 629.5,504.5 629.5,509.5C 624.5,509.5 619.5,509.5 614.5,509.5C 614.5,504.5 614.5,499.5 614.5,494.5C 609.5,494.5 604.5,494.5 599.5,494.5C 599.5,499.5 599.5,504.5 599.5,509.5C 594.5,509.5 589.5,509.5 584.5,509.5C 584.5,504.5 584.5,499.5 584.5,494.5C 579.5,494.5 574.5,494.5 569.5,494.5C 569.5,499.5 569.5,504.5 569.5,509.5C 564.5,509.5 559.5,509.5 554.5,509.5C 554.5,504.5 554.5,499.5 554.5,494.5C 549.5,494.5 544.5,494.5 539.5,494.5C 539.5,499.5 539.5,504.5 539.5,509.5C 534.5,509.5 529.5,509.5 524.5,509.5C 524.5,504.5 524.5,499.5 524.5,494.5C 519.5,494.5 514.5,494.5 509.5,494.5C 509.5,489.5 509.5,484.5 509.5,479.5C 504.5,479.5 499.5,479.5 494.5,479.5C 494.5,474.5 494.5,469.5 494.5,464.5C 489.5,464.5 484.5,464.5 479.5,464.5C 479.5,459.5 479.5,454.5 479.5,449.5C 474.5,449.5 469.5,449.5 464.5,449.5C 464.5,444.5 464.5,439.5 464.5,434.5C 459.5,434.5 454.5,434.5 449.5,434.5C 450.069,430.671 449.402,427.337 447.5,424.5C 483.338,403.078 519.671,382.411 556.5,362.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M -0.5,374.5 C 4.5,374.5 9.5,374.5 14.5,374.5C 14.5,379.5 14.5,384.5 14.5,389.5C 9.5,389.5 4.5,389.5 -0.5,389.5C -0.5,384.5 -0.5,379.5 -0.5,374.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 14.5,374.5 C 19.5,374.5 24.5,374.5 29.5,374.5C 29.5,379.5 29.5,384.5 29.5,389.5C 24.5,389.5 19.5,389.5 14.5,389.5C 14.5,384.5 14.5,379.5 14.5,374.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 29.5,374.5 C 34.5,374.5 39.5,374.5 44.5,374.5C 44.5,379.5 44.5,384.5 44.5,389.5C 39.5,389.5 34.5,389.5 29.5,389.5C 29.5,384.5 29.5,379.5 29.5,374.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 44.5,374.5 C 49.5,374.5 54.5,374.5 59.5,374.5C 59.5,379.5 59.5,384.5 59.5,389.5C 54.5,389.5 49.5,389.5 44.5,389.5C 44.5,384.5 44.5,379.5 44.5,374.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 59.5,374.5 C 64.5,374.5 69.5,374.5 74.5,374.5C 74.5,379.5 74.5,384.5 74.5,389.5C 69.5,389.5 64.5,389.5 59.5,389.5C 59.5,384.5 59.5,379.5 59.5,374.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 74.5,374.5 C 79.5,374.5 84.5,374.5 89.5,374.5C 89.5,379.5 89.5,384.5 89.5,389.5C 84.5,389.5 79.5,389.5 74.5,389.5C 74.5,384.5 74.5,379.5 74.5,374.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 89.5,374.5 C 94.5,374.5 99.5,374.5 104.5,374.5C 104.5,379.5 104.5,384.5 104.5,389.5C 99.5,389.5 94.5,389.5 89.5,389.5C 89.5,384.5 89.5,379.5 89.5,374.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 104.5,374.5 C 109.5,374.5 114.5,374.5 119.5,374.5C 119.5,379.5 119.5,384.5 119.5,389.5C 114.5,389.5 109.5,389.5 104.5,389.5C 104.5,384.5 104.5,379.5 104.5,374.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 119.5,374.5 C 124.5,374.5 129.5,374.5 134.5,374.5C 134.5,379.5 134.5,384.5 134.5,389.5C 129.5,389.5 124.5,389.5 119.5,389.5C 119.5,384.5 119.5,379.5 119.5,374.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 134.5,374.5 C 139.5,374.5 144.5,374.5 149.5,374.5C 149.5,379.5 149.5,384.5 149.5,389.5C 144.5,389.5 139.5,389.5 134.5,389.5C 134.5,384.5 134.5,379.5 134.5,374.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 149.5,374.5 C 154.5,374.5 159.5,374.5 164.5,374.5C 164.5,379.5 164.5,384.5 164.5,389.5C 159.5,389.5 154.5,389.5 149.5,389.5C 149.5,384.5 149.5,379.5 149.5,374.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 164.5,374.5 C 169.5,374.5 174.5,374.5 179.5,374.5C 179.5,379.5 179.5,384.5 179.5,389.5C 174.5,389.5 169.5,389.5 164.5,389.5C 164.5,384.5 164.5,379.5 164.5,374.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 179.5,374.5 C 184.5,374.5 189.5,374.5 194.5,374.5C 194.5,379.5 194.5,384.5 194.5,389.5C 189.5,389.5 184.5,389.5 179.5,389.5C 179.5,384.5 179.5,379.5 179.5,374.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 194.5,374.5 C 199.5,374.5 204.5,374.5 209.5,374.5C 209.5,379.5 209.5,384.5 209.5,389.5C 204.5,389.5 199.5,389.5 194.5,389.5C 194.5,384.5 194.5,379.5 194.5,374.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 209.5,374.5 C 214.5,374.5 219.5,374.5 224.5,374.5C 224.5,379.5 224.5,384.5 224.5,389.5C 219.5,389.5 214.5,389.5 209.5,389.5C 209.5,384.5 209.5,379.5 209.5,374.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 224.5,374.5 C 229.5,374.5 234.5,374.5 239.5,374.5C 239.5,379.5 239.5,384.5 239.5,389.5C 234.5,389.5 229.5,389.5 224.5,389.5C 224.5,384.5 224.5,379.5 224.5,374.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 239.5,374.5 C 244.5,374.5 249.5,374.5 254.5,374.5C 254.5,379.5 254.5,384.5 254.5,389.5C 249.5,389.5 244.5,389.5 239.5,389.5C 239.5,384.5 239.5,379.5 239.5,374.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M -0.5,389.5 C 4.5,389.5 9.5,389.5 14.5,389.5C 14.5,394.5 14.5,399.5 14.5,404.5C 9.5,404.5 4.5,404.5 -0.5,404.5C -0.5,399.5 -0.5,394.5 -0.5,389.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 14.5,389.5 C 19.5,389.5 24.5,389.5 29.5,389.5C 29.5,394.5 29.5,399.5 29.5,404.5C 24.5,404.5 19.5,404.5 14.5,404.5C 14.5,399.5 14.5,394.5 14.5,389.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 29.5,389.5 C 34.5,389.5 39.5,389.5 44.5,389.5C 44.5,394.5 44.5,399.5 44.5,404.5C 39.5,404.5 34.5,404.5 29.5,404.5C 29.5,399.5 29.5,394.5 29.5,389.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 44.5,389.5 C 49.5,389.5 54.5,389.5 59.5,389.5C 59.5,394.5 59.5,399.5 59.5,404.5C 54.5,404.5 49.5,404.5 44.5,404.5C 44.5,399.5 44.5,394.5 44.5,389.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 59.5,389.5 C 64.5,389.5 69.5,389.5 74.5,389.5C 74.5,394.5 74.5,399.5 74.5,404.5C 69.5,404.5 64.5,404.5 59.5,404.5C 59.5,399.5 59.5,394.5 59.5,389.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 74.5,389.5 C 79.5,389.5 84.5,389.5 89.5,389.5C 89.5,394.5 89.5,399.5 89.5,404.5C 84.5,404.5 79.5,404.5 74.5,404.5C 74.5,399.5 74.5,394.5 74.5,389.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 89.5,389.5 C 94.5,389.5 99.5,389.5 104.5,389.5C 104.5,394.5 104.5,399.5 104.5,404.5C 99.5,404.5 94.5,404.5 89.5,404.5C 89.5,399.5 89.5,394.5 89.5,389.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 104.5,389.5 C 109.5,389.5 114.5,389.5 119.5,389.5C 119.5,394.5 119.5,399.5 119.5,404.5C 114.5,404.5 109.5,404.5 104.5,404.5C 104.5,399.5 104.5,394.5 104.5,389.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 119.5,389.5 C 124.5,389.5 129.5,389.5 134.5,389.5C 134.5,394.5 134.5,399.5 134.5,404.5C 129.5,404.5 124.5,404.5 119.5,404.5C 119.5,399.5 119.5,394.5 119.5,389.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 134.5,389.5 C 139.5,389.5 144.5,389.5 149.5,389.5C 149.5,394.5 149.5,399.5 149.5,404.5C 144.5,404.5 139.5,404.5 134.5,404.5C 134.5,399.5 134.5,394.5 134.5,389.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 149.5,389.5 C 154.5,389.5 159.5,389.5 164.5,389.5C 164.5,394.5 164.5,399.5 164.5,404.5C 159.5,404.5 154.5,404.5 149.5,404.5C 149.5,399.5 149.5,394.5 149.5,389.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 164.5,389.5 C 169.5,389.5 174.5,389.5 179.5,389.5C 179.5,394.5 179.5,399.5 179.5,404.5C 174.5,404.5 169.5,404.5 164.5,404.5C 164.5,399.5 164.5,394.5 164.5,389.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 179.5,389.5 C 184.5,389.5 189.5,389.5 194.5,389.5C 194.5,394.5 194.5,399.5 194.5,404.5C 189.5,404.5 184.5,404.5 179.5,404.5C 179.5,399.5 179.5,394.5 179.5,389.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 194.5,389.5 C 199.5,389.5 204.5,389.5 209.5,389.5C 209.5,394.5 209.5,399.5 209.5,404.5C 204.5,404.5 199.5,404.5 194.5,404.5C 194.5,399.5 194.5,394.5 194.5,389.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 209.5,389.5 C 214.5,389.5 219.5,389.5 224.5,389.5C 224.5,394.5 224.5,399.5 224.5,404.5C 219.5,404.5 214.5,404.5 209.5,404.5C 209.5,399.5 209.5,394.5 209.5,389.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 224.5,389.5 C 229.5,389.5 234.5,389.5 239.5,389.5C 239.5,394.5 239.5,399.5 239.5,404.5C 234.5,404.5 229.5,404.5 224.5,404.5C 224.5,399.5 224.5,394.5 224.5,389.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 239.5,389.5 C 244.5,389.5 249.5,389.5 254.5,389.5C 254.5,394.5 254.5,399.5 254.5,404.5C 249.5,404.5 244.5,404.5 239.5,404.5C 239.5,399.5 239.5,394.5 239.5,389.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 254.5,389.5 C 259.5,389.5 264.5,389.5 269.5,389.5C 269.5,394.5 269.5,399.5 269.5,404.5C 264.5,404.5 259.5,404.5 254.5,404.5C 254.5,399.5 254.5,394.5 254.5,389.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M -0.5,404.5 C 4.5,404.5 9.5,404.5 14.5,404.5C 14.5,409.5 14.5,414.5 14.5,419.5C 9.5,419.5 4.5,419.5 -0.5,419.5C -0.5,414.5 -0.5,409.5 -0.5,404.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 14.5,404.5 C 19.5,404.5 24.5,404.5 29.5,404.5C 29.5,409.5 29.5,414.5 29.5,419.5C 24.5,419.5 19.5,419.5 14.5,419.5C 14.5,414.5 14.5,409.5 14.5,404.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 29.5,404.5 C 34.5,404.5 39.5,404.5 44.5,404.5C 44.5,409.5 44.5,414.5 44.5,419.5C 39.5,419.5 34.5,419.5 29.5,419.5C 29.5,414.5 29.5,409.5 29.5,404.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 44.5,404.5 C 49.5,404.5 54.5,404.5 59.5,404.5C 59.5,409.5 59.5,414.5 59.5,419.5C 54.5,419.5 49.5,419.5 44.5,419.5C 44.5,414.5 44.5,409.5 44.5,404.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 59.5,404.5 C 64.5,404.5 69.5,404.5 74.5,404.5C 74.5,409.5 74.5,414.5 74.5,419.5C 69.5,419.5 64.5,419.5 59.5,419.5C 59.5,414.5 59.5,409.5 59.5,404.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 74.5,404.5 C 79.5,404.5 84.5,404.5 89.5,404.5C 89.5,409.5 89.5,414.5 89.5,419.5C 84.5,419.5 79.5,419.5 74.5,419.5C 74.5,414.5 74.5,409.5 74.5,404.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 89.5,404.5 C 94.5,404.5 99.5,404.5 104.5,404.5C 104.5,409.5 104.5,414.5 104.5,419.5C 99.5,419.5 94.5,419.5 89.5,419.5C 89.5,414.5 89.5,409.5 89.5,404.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 104.5,404.5 C 109.5,404.5 114.5,404.5 119.5,404.5C 119.5,409.5 119.5,414.5 119.5,419.5C 114.5,419.5 109.5,419.5 104.5,419.5C 104.5,414.5 104.5,409.5 104.5,404.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 119.5,404.5 C 124.5,404.5 129.5,404.5 134.5,404.5C 134.5,409.5 134.5,414.5 134.5,419.5C 129.5,419.5 124.5,419.5 119.5,419.5C 119.5,414.5 119.5,409.5 119.5,404.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 134.5,404.5 C 139.5,404.5 144.5,404.5 149.5,404.5C 149.5,409.5 149.5,414.5 149.5,419.5C 144.5,419.5 139.5,419.5 134.5,419.5C 134.5,414.5 134.5,409.5 134.5,404.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 149.5,404.5 C 154.5,404.5 159.5,404.5 164.5,404.5C 164.5,409.5 164.5,414.5 164.5,419.5C 159.5,419.5 154.5,419.5 149.5,419.5C 149.5,414.5 149.5,409.5 149.5,404.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 164.5,404.5 C 169.5,404.5 174.5,404.5 179.5,404.5C 179.5,409.5 179.5,414.5 179.5,419.5C 174.5,419.5 169.5,419.5 164.5,419.5C 164.5,414.5 164.5,409.5 164.5,404.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 179.5,404.5 C 184.5,404.5 189.5,404.5 194.5,404.5C 194.5,409.5 194.5,414.5 194.5,419.5C 189.5,419.5 184.5,419.5 179.5,419.5C 179.5,414.5 179.5,409.5 179.5,404.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 194.5,404.5 C 199.5,404.5 204.5,404.5 209.5,404.5C 209.5,409.5 209.5,414.5 209.5,419.5C 204.5,419.5 199.5,419.5 194.5,419.5C 194.5,414.5 194.5,409.5 194.5,404.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 209.5,404.5 C 214.5,404.5 219.5,404.5 224.5,404.5C 224.5,409.5 224.5,414.5 224.5,419.5C 219.5,419.5 214.5,419.5 209.5,419.5C 209.5,414.5 209.5,409.5 209.5,404.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 224.5,404.5 C 229.5,404.5 234.5,404.5 239.5,404.5C 239.5,409.5 239.5,414.5 239.5,419.5C 234.5,419.5 229.5,419.5 224.5,419.5C 224.5,414.5 224.5,409.5 224.5,404.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 239.5,404.5 C 244.5,404.5 249.5,404.5 254.5,404.5C 254.5,409.5 254.5,414.5 254.5,419.5C 249.5,419.5 244.5,419.5 239.5,419.5C 239.5,414.5 239.5,409.5 239.5,404.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 494.5,404.5 C 499.5,404.5 504.5,404.5 509.5,404.5C 509.5,409.5 509.5,414.5 509.5,419.5C 504.5,419.5 499.5,419.5 494.5,419.5C 494.5,414.5 494.5,409.5 494.5,404.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M -0.5,419.5 C 4.5,419.5 9.5,419.5 14.5,419.5C 14.5,424.5 14.5,429.5 14.5,434.5C 9.5,434.5 4.5,434.5 -0.5,434.5C -0.5,429.5 -0.5,424.5 -0.5,419.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 14.5,419.5 C 19.5,419.5 24.5,419.5 29.5,419.5C 29.5,424.5 29.5,429.5 29.5,434.5C 24.5,434.5 19.5,434.5 14.5,434.5C 14.5,429.5 14.5,424.5 14.5,419.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 29.5,419.5 C 34.5,419.5 39.5,419.5 44.5,419.5C 44.5,424.5 44.5,429.5 44.5,434.5C 39.5,434.5 34.5,434.5 29.5,434.5C 29.5,429.5 29.5,424.5 29.5,419.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 44.5,419.5 C 49.5,419.5 54.5,419.5 59.5,419.5C 59.5,424.5 59.5,429.5 59.5,434.5C 54.5,434.5 49.5,434.5 44.5,434.5C 44.5,429.5 44.5,424.5 44.5,419.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 59.5,419.5 C 64.5,419.5 69.5,419.5 74.5,419.5C 74.5,424.5 74.5,429.5 74.5,434.5C 69.5,434.5 64.5,434.5 59.5,434.5C 59.5,429.5 59.5,424.5 59.5,419.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 74.5,419.5 C 79.5,419.5 84.5,419.5 89.5,419.5C 89.5,424.5 89.5,429.5 89.5,434.5C 84.5,434.5 79.5,434.5 74.5,434.5C 74.5,429.5 74.5,424.5 74.5,419.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 89.5,419.5 C 94.5,419.5 99.5,419.5 104.5,419.5C 104.5,424.5 104.5,429.5 104.5,434.5C 99.5,434.5 94.5,434.5 89.5,434.5C 89.5,429.5 89.5,424.5 89.5,419.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 104.5,419.5 C 109.5,419.5 114.5,419.5 119.5,419.5C 119.5,424.5 119.5,429.5 119.5,434.5C 114.5,434.5 109.5,434.5 104.5,434.5C 104.5,429.5 104.5,424.5 104.5,419.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 119.5,419.5 C 124.5,419.5 129.5,419.5 134.5,419.5C 134.5,424.5 134.5,429.5 134.5,434.5C 129.5,434.5 124.5,434.5 119.5,434.5C 119.5,429.5 119.5,424.5 119.5,419.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 134.5,419.5 C 139.5,419.5 144.5,419.5 149.5,419.5C 149.5,424.5 149.5,429.5 149.5,434.5C 144.5,434.5 139.5,434.5 134.5,434.5C 134.5,429.5 134.5,424.5 134.5,419.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 149.5,419.5 C 154.5,419.5 159.5,419.5 164.5,419.5C 164.5,424.5 164.5,429.5 164.5,434.5C 159.5,434.5 154.5,434.5 149.5,434.5C 149.5,429.5 149.5,424.5 149.5,419.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 164.5,419.5 C 169.5,419.5 174.5,419.5 179.5,419.5C 179.5,424.5 179.5,429.5 179.5,434.5C 174.5,434.5 169.5,434.5 164.5,434.5C 164.5,429.5 164.5,424.5 164.5,419.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 179.5,419.5 C 184.5,419.5 189.5,419.5 194.5,419.5C 194.5,424.5 194.5,429.5 194.5,434.5C 189.5,434.5 184.5,434.5 179.5,434.5C 179.5,429.5 179.5,424.5 179.5,419.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 194.5,419.5 C 199.5,419.5 204.5,419.5 209.5,419.5C 209.5,424.5 209.5,429.5 209.5,434.5C 204.5,434.5 199.5,434.5 194.5,434.5C 194.5,429.5 194.5,424.5 194.5,419.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 209.5,419.5 C 214.5,419.5 219.5,419.5 224.5,419.5C 224.5,424.5 224.5,429.5 224.5,434.5C 219.5,434.5 214.5,434.5 209.5,434.5C 209.5,429.5 209.5,424.5 209.5,419.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 224.5,419.5 C 229.5,419.5 234.5,419.5 239.5,419.5C 239.5,424.5 239.5,429.5 239.5,434.5C 234.5,434.5 229.5,434.5 224.5,434.5C 224.5,429.5 224.5,424.5 224.5,419.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 239.5,419.5 C 244.5,419.5 249.5,419.5 254.5,419.5C 254.5,424.5 254.5,429.5 254.5,434.5C 249.5,434.5 244.5,434.5 239.5,434.5C 239.5,429.5 239.5,424.5 239.5,419.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 254.5,419.5 C 259.5,419.5 264.5,419.5 269.5,419.5C 269.5,424.5 269.5,429.5 269.5,434.5C 264.5,434.5 259.5,434.5 254.5,434.5C 254.5,429.5 254.5,424.5 254.5,419.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M -0.5,434.5 C 4.5,434.5 9.5,434.5 14.5,434.5C 14.5,439.5 14.5,444.5 14.5,449.5C 9.5,449.5 4.5,449.5 -0.5,449.5C -0.5,444.5 -0.5,439.5 -0.5,434.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 14.5,434.5 C 19.5,434.5 24.5,434.5 29.5,434.5C 29.5,439.5 29.5,444.5 29.5,449.5C 24.5,449.5 19.5,449.5 14.5,449.5C 14.5,444.5 14.5,439.5 14.5,434.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 29.5,434.5 C 34.5,434.5 39.5,434.5 44.5,434.5C 44.5,439.5 44.5,444.5 44.5,449.5C 39.5,449.5 34.5,449.5 29.5,449.5C 29.5,444.5 29.5,439.5 29.5,434.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 44.5,434.5 C 49.5,434.5 54.5,434.5 59.5,434.5C 59.5,439.5 59.5,444.5 59.5,449.5C 54.5,449.5 49.5,449.5 44.5,449.5C 44.5,444.5 44.5,439.5 44.5,434.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 59.5,434.5 C 64.5,434.5 69.5,434.5 74.5,434.5C 74.5,439.5 74.5,444.5 74.5,449.5C 69.5,449.5 64.5,449.5 59.5,449.5C 59.5,444.5 59.5,439.5 59.5,434.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 74.5,434.5 C 79.5,434.5 84.5,434.5 89.5,434.5C 89.5,439.5 89.5,444.5 89.5,449.5C 84.5,449.5 79.5,449.5 74.5,449.5C 74.5,444.5 74.5,439.5 74.5,434.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 89.5,434.5 C 94.5,434.5 99.5,434.5 104.5,434.5C 104.5,439.5 104.5,444.5 104.5,449.5C 99.5,449.5 94.5,449.5 89.5,449.5C 89.5,444.5 89.5,439.5 89.5,434.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 104.5,434.5 C 109.5,434.5 114.5,434.5 119.5,434.5C 119.5,439.5 119.5,444.5 119.5,449.5C 114.5,449.5 109.5,449.5 104.5,449.5C 104.5,444.5 104.5,439.5 104.5,434.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 119.5,434.5 C 124.5,434.5 129.5,434.5 134.5,434.5C 134.5,439.5 134.5,444.5 134.5,449.5C 129.5,449.5 124.5,449.5 119.5,449.5C 119.5,444.5 119.5,439.5 119.5,434.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 134.5,434.5 C 139.5,434.5 144.5,434.5 149.5,434.5C 149.5,439.5 149.5,444.5 149.5,449.5C 144.5,449.5 139.5,449.5 134.5,449.5C 134.5,444.5 134.5,439.5 134.5,434.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 149.5,434.5 C 154.5,434.5 159.5,434.5 164.5,434.5C 164.5,439.5 164.5,444.5 164.5,449.5C 159.5,449.5 154.5,449.5 149.5,449.5C 149.5,444.5 149.5,439.5 149.5,434.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 164.5,434.5 C 169.5,434.5 174.5,434.5 179.5,434.5C 179.5,439.5 179.5,444.5 179.5,449.5C 174.5,449.5 169.5,449.5 164.5,449.5C 164.5,444.5 164.5,439.5 164.5,434.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 179.5,434.5 C 184.5,434.5 189.5,434.5 194.5,434.5C 194.5,439.5 194.5,444.5 194.5,449.5C 189.5,449.5 184.5,449.5 179.5,449.5C 179.5,444.5 179.5,439.5 179.5,434.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 194.5,434.5 C 199.5,434.5 204.5,434.5 209.5,434.5C 209.5,439.5 209.5,444.5 209.5,449.5C 204.5,449.5 199.5,449.5 194.5,449.5C 194.5,444.5 194.5,439.5 194.5,434.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 209.5,434.5 C 214.5,434.5 219.5,434.5 224.5,434.5C 224.5,439.5 224.5,444.5 224.5,449.5C 219.5,449.5 214.5,449.5 209.5,449.5C 209.5,444.5 209.5,439.5 209.5,434.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 224.5,434.5 C 229.5,434.5 234.5,434.5 239.5,434.5C 239.5,439.5 239.5,444.5 239.5,449.5C 234.5,449.5 229.5,449.5 224.5,449.5C 224.5,444.5 224.5,439.5 224.5,434.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 239.5,434.5 C 244.5,434.5 249.5,434.5 254.5,434.5C 254.5,439.5 254.5,444.5 254.5,449.5C 249.5,449.5 244.5,449.5 239.5,449.5C 239.5,444.5 239.5,439.5 239.5,434.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M -0.5,449.5 C 4.5,449.5 9.5,449.5 14.5,449.5C 14.5,454.5 14.5,459.5 14.5,464.5C 9.5,464.5 4.5,464.5 -0.5,464.5C -0.5,459.5 -0.5,454.5 -0.5,449.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 14.5,449.5 C 19.5,449.5 24.5,449.5 29.5,449.5C 29.5,454.5 29.5,459.5 29.5,464.5C 24.5,464.5 19.5,464.5 14.5,464.5C 14.5,459.5 14.5,454.5 14.5,449.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 29.5,449.5 C 34.5,449.5 39.5,449.5 44.5,449.5C 44.5,454.5 44.5,459.5 44.5,464.5C 39.5,464.5 34.5,464.5 29.5,464.5C 29.5,459.5 29.5,454.5 29.5,449.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 44.5,449.5 C 49.5,449.5 54.5,449.5 59.5,449.5C 59.5,454.5 59.5,459.5 59.5,464.5C 54.5,464.5 49.5,464.5 44.5,464.5C 44.5,459.5 44.5,454.5 44.5,449.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 59.5,449.5 C 64.5,449.5 69.5,449.5 74.5,449.5C 74.5,454.5 74.5,459.5 74.5,464.5C 69.5,464.5 64.5,464.5 59.5,464.5C 59.5,459.5 59.5,454.5 59.5,449.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 74.5,449.5 C 79.5,449.5 84.5,449.5 89.5,449.5C 89.5,454.5 89.5,459.5 89.5,464.5C 84.5,464.5 79.5,464.5 74.5,464.5C 74.5,459.5 74.5,454.5 74.5,449.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 89.5,449.5 C 94.5,449.5 99.5,449.5 104.5,449.5C 104.5,454.5 104.5,459.5 104.5,464.5C 99.5,464.5 94.5,464.5 89.5,464.5C 89.5,459.5 89.5,454.5 89.5,449.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 104.5,449.5 C 109.5,449.5 114.5,449.5 119.5,449.5C 119.5,454.5 119.5,459.5 119.5,464.5C 114.5,464.5 109.5,464.5 104.5,464.5C 104.5,459.5 104.5,454.5 104.5,449.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 119.5,449.5 C 124.5,449.5 129.5,449.5 134.5,449.5C 134.5,454.5 134.5,459.5 134.5,464.5C 129.5,464.5 124.5,464.5 119.5,464.5C 119.5,459.5 119.5,454.5 119.5,449.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 134.5,449.5 C 139.5,449.5 144.5,449.5 149.5,449.5C 149.5,454.5 149.5,459.5 149.5,464.5C 144.5,464.5 139.5,464.5 134.5,464.5C 134.5,459.5 134.5,454.5 134.5,449.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 149.5,449.5 C 154.5,449.5 159.5,449.5 164.5,449.5C 164.5,454.5 164.5,459.5 164.5,464.5C 159.5,464.5 154.5,464.5 149.5,464.5C 149.5,459.5 149.5,454.5 149.5,449.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 164.5,449.5 C 169.5,449.5 174.5,449.5 179.5,449.5C 179.5,454.5 179.5,459.5 179.5,464.5C 174.5,464.5 169.5,464.5 164.5,464.5C 164.5,459.5 164.5,454.5 164.5,449.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 179.5,449.5 C 184.5,449.5 189.5,449.5 194.5,449.5C 194.5,454.5 194.5,459.5 194.5,464.5C 189.5,464.5 184.5,464.5 179.5,464.5C 179.5,459.5 179.5,454.5 179.5,449.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 194.5,449.5 C 199.5,449.5 204.5,449.5 209.5,449.5C 209.5,454.5 209.5,459.5 209.5,464.5C 204.5,464.5 199.5,464.5 194.5,464.5C 194.5,459.5 194.5,454.5 194.5,449.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 209.5,449.5 C 214.5,449.5 219.5,449.5 224.5,449.5C 224.5,454.5 224.5,459.5 224.5,464.5C 219.5,464.5 214.5,464.5 209.5,464.5C 209.5,459.5 209.5,454.5 209.5,449.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 224.5,449.5 C 229.5,449.5 234.5,449.5 239.5,449.5C 239.5,454.5 239.5,459.5 239.5,464.5C 234.5,464.5 229.5,464.5 224.5,464.5C 224.5,459.5 224.5,454.5 224.5,449.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 239.5,449.5 C 244.5,449.5 249.5,449.5 254.5,449.5C 254.5,454.5 254.5,459.5 254.5,464.5C 249.5,464.5 244.5,464.5 239.5,464.5C 239.5,459.5 239.5,454.5 239.5,449.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M -0.5,464.5 C 4.5,464.5 9.5,464.5 14.5,464.5C 14.5,469.5 14.5,474.5 14.5,479.5C 9.5,479.5 4.5,479.5 -0.5,479.5C -0.5,474.5 -0.5,469.5 -0.5,464.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 14.5,464.5 C 19.5,464.5 24.5,464.5 29.5,464.5C 29.5,469.5 29.5,474.5 29.5,479.5C 24.5,479.5 19.5,479.5 14.5,479.5C 14.5,474.5 14.5,469.5 14.5,464.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 29.5,464.5 C 34.5,464.5 39.5,464.5 44.5,464.5C 44.5,469.5 44.5,474.5 44.5,479.5C 39.5,479.5 34.5,479.5 29.5,479.5C 29.5,474.5 29.5,469.5 29.5,464.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 44.5,464.5 C 49.5,464.5 54.5,464.5 59.5,464.5C 59.5,469.5 59.5,474.5 59.5,479.5C 54.5,479.5 49.5,479.5 44.5,479.5C 44.5,474.5 44.5,469.5 44.5,464.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 59.5,464.5 C 64.5,464.5 69.5,464.5 74.5,464.5C 74.5,469.5 74.5,474.5 74.5,479.5C 69.5,479.5 64.5,479.5 59.5,479.5C 59.5,474.5 59.5,469.5 59.5,464.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 74.5,464.5 C 79.5,464.5 84.5,464.5 89.5,464.5C 89.5,469.5 89.5,474.5 89.5,479.5C 84.5,479.5 79.5,479.5 74.5,479.5C 74.5,474.5 74.5,469.5 74.5,464.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 89.5,464.5 C 94.5,464.5 99.5,464.5 104.5,464.5C 104.5,469.5 104.5,474.5 104.5,479.5C 99.5,479.5 94.5,479.5 89.5,479.5C 89.5,474.5 89.5,469.5 89.5,464.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 104.5,464.5 C 109.5,464.5 114.5,464.5 119.5,464.5C 119.5,469.5 119.5,474.5 119.5,479.5C 114.5,479.5 109.5,479.5 104.5,479.5C 104.5,474.5 104.5,469.5 104.5,464.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 119.5,464.5 C 124.5,464.5 129.5,464.5 134.5,464.5C 134.5,469.5 134.5,474.5 134.5,479.5C 129.5,479.5 124.5,479.5 119.5,479.5C 119.5,474.5 119.5,469.5 119.5,464.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 134.5,464.5 C 139.5,464.5 144.5,464.5 149.5,464.5C 149.5,469.5 149.5,474.5 149.5,479.5C 144.5,479.5 139.5,479.5 134.5,479.5C 134.5,474.5 134.5,469.5 134.5,464.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 149.5,464.5 C 154.5,464.5 159.5,464.5 164.5,464.5C 164.5,469.5 164.5,474.5 164.5,479.5C 159.5,479.5 154.5,479.5 149.5,479.5C 149.5,474.5 149.5,469.5 149.5,464.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 164.5,464.5 C 169.5,464.5 174.5,464.5 179.5,464.5C 179.5,469.5 179.5,474.5 179.5,479.5C 174.5,479.5 169.5,479.5 164.5,479.5C 164.5,474.5 164.5,469.5 164.5,464.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 179.5,464.5 C 184.5,464.5 189.5,464.5 194.5,464.5C 194.5,469.5 194.5,474.5 194.5,479.5C 189.5,479.5 184.5,479.5 179.5,479.5C 179.5,474.5 179.5,469.5 179.5,464.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 194.5,464.5 C 199.5,464.5 204.5,464.5 209.5,464.5C 209.5,469.5 209.5,474.5 209.5,479.5C 204.5,479.5 199.5,479.5 194.5,479.5C 194.5,474.5 194.5,469.5 194.5,464.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 209.5,464.5 C 214.5,464.5 219.5,464.5 224.5,464.5C 224.5,469.5 224.5,474.5 224.5,479.5C 219.5,479.5 214.5,479.5 209.5,479.5C 209.5,474.5 209.5,469.5 209.5,464.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 224.5,464.5 C 229.5,464.5 234.5,464.5 239.5,464.5C 239.5,469.5 239.5,474.5 239.5,479.5C 234.5,479.5 229.5,479.5 224.5,479.5C 224.5,474.5 224.5,469.5 224.5,464.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 239.5,464.5 C 244.5,464.5 249.5,464.5 254.5,464.5C 254.5,469.5 254.5,474.5 254.5,479.5C 249.5,479.5 244.5,479.5 239.5,479.5C 239.5,474.5 239.5,469.5 239.5,464.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M -0.5,479.5 C 4.5,479.5 9.5,479.5 14.5,479.5C 14.5,484.5 14.5,489.5 14.5,494.5C 9.5,494.5 4.5,494.5 -0.5,494.5C -0.5,489.5 -0.5,484.5 -0.5,479.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 14.5,479.5 C 19.5,479.5 24.5,479.5 29.5,479.5C 29.5,484.5 29.5,489.5 29.5,494.5C 24.5,494.5 19.5,494.5 14.5,494.5C 14.5,489.5 14.5,484.5 14.5,479.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 29.5,479.5 C 34.5,479.5 39.5,479.5 44.5,479.5C 44.5,484.5 44.5,489.5 44.5,494.5C 39.5,494.5 34.5,494.5 29.5,494.5C 29.5,489.5 29.5,484.5 29.5,479.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 44.5,479.5 C 49.5,479.5 54.5,479.5 59.5,479.5C 59.5,484.5 59.5,489.5 59.5,494.5C 54.5,494.5 49.5,494.5 44.5,494.5C 44.5,489.5 44.5,484.5 44.5,479.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 59.5,479.5 C 64.5,479.5 69.5,479.5 74.5,479.5C 74.5,484.5 74.5,489.5 74.5,494.5C 69.5,494.5 64.5,494.5 59.5,494.5C 59.5,489.5 59.5,484.5 59.5,479.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 74.5,479.5 C 79.5,479.5 84.5,479.5 89.5,479.5C 89.5,484.5 89.5,489.5 89.5,494.5C 84.5,494.5 79.5,494.5 74.5,494.5C 74.5,489.5 74.5,484.5 74.5,479.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 89.5,479.5 C 94.5,479.5 99.5,479.5 104.5,479.5C 104.5,484.5 104.5,489.5 104.5,494.5C 99.5,494.5 94.5,494.5 89.5,494.5C 89.5,489.5 89.5,484.5 89.5,479.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 104.5,479.5 C 109.5,479.5 114.5,479.5 119.5,479.5C 119.5,484.5 119.5,489.5 119.5,494.5C 114.5,494.5 109.5,494.5 104.5,494.5C 104.5,489.5 104.5,484.5 104.5,479.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 119.5,479.5 C 124.5,479.5 129.5,479.5 134.5,479.5C 134.5,484.5 134.5,489.5 134.5,494.5C 129.5,494.5 124.5,494.5 119.5,494.5C 119.5,489.5 119.5,484.5 119.5,479.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 134.5,479.5 C 139.5,479.5 144.5,479.5 149.5,479.5C 149.5,484.5 149.5,489.5 149.5,494.5C 144.5,494.5 139.5,494.5 134.5,494.5C 134.5,489.5 134.5,484.5 134.5,479.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 149.5,479.5 C 154.5,479.5 159.5,479.5 164.5,479.5C 164.5,484.5 164.5,489.5 164.5,494.5C 159.5,494.5 154.5,494.5 149.5,494.5C 149.5,489.5 149.5,484.5 149.5,479.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 164.5,479.5 C 169.5,479.5 174.5,479.5 179.5,479.5C 179.5,484.5 179.5,489.5 179.5,494.5C 174.5,494.5 169.5,494.5 164.5,494.5C 164.5,489.5 164.5,484.5 164.5,479.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 179.5,479.5 C 184.5,479.5 189.5,479.5 194.5,479.5C 194.5,484.5 194.5,489.5 194.5,494.5C 189.5,494.5 184.5,494.5 179.5,494.5C 179.5,489.5 179.5,484.5 179.5,479.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 194.5,479.5 C 199.5,479.5 204.5,479.5 209.5,479.5C 209.5,484.5 209.5,489.5 209.5,494.5C 204.5,494.5 199.5,494.5 194.5,494.5C 194.5,489.5 194.5,484.5 194.5,479.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 209.5,479.5 C 214.5,479.5 219.5,479.5 224.5,479.5C 224.5,484.5 224.5,489.5 224.5,494.5C 219.5,494.5 214.5,494.5 209.5,494.5C 209.5,489.5 209.5,484.5 209.5,479.5 Z"/></g>
<g><path style="opacity:1" fill="#e5e6e5" d="M 224.5,479.5 C 229.5,479.5 234.5,479.5 239.5,479.5C 239.5,484.5 239.5,489.5 239.5,494.5C 234.5,494.5 229.5,494.5 224.5,494.5C 224.5,489.5 224.5,484.5 224.5,479.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 239.5,479.5 C 244.5,479.5 249.5,479.5 254.5,479.5C 254.5,484.5 254.5,489.5 254.5,494.5C 249.5,494.5 244.5,494.5 239.5,494.5C 239.5,489.5 239.5,484.5 239.5,479.5 Z"/></g>
<g><path style="opacity:1" fill="#eeeeee" d="M 447.5,424.5 C 449.402,427.337 450.069,430.671 449.5,434.5C 454.5,434.5 459.5,434.5 464.5,434.5C 464.5,439.5 464.5,444.5 464.5,449.5C 469.5,449.5 474.5,449.5 479.5,449.5C 479.5,454.5 479.5,459.5 479.5,464.5C 484.5,464.5 489.5,464.5 494.5,464.5C 494.5,469.5 494.5,474.5 494.5,479.5C 499.5,479.5 504.5,479.5 509.5,479.5C 509.5,484.5 509.5,489.5 509.5,494.5C 514.5,494.5 519.5,494.5 524.5,494.5C 524.5,499.5 524.5,504.5 524.5,509.5C 529.5,509.5 534.5,509.5 539.5,509.5C 539.5,504.5 539.5,499.5 539.5,494.5C 544.5,494.5 549.5,494.5 554.5,494.5C 554.5,499.5 554.5,504.5 554.5,509.5C 559.5,509.5 564.5,509.5 569.5,509.5C 569.5,504.5 569.5,499.5 569.5,494.5C 574.5,494.5 579.5,494.5 584.5,494.5C 584.5,499.5 584.5,504.5 584.5,509.5C 589.5,509.5 594.5,509.5 599.5,509.5C 599.5,504.5 599.5,499.5 599.5,494.5C 604.5,494.5 609.5,494.5 614.5,494.5C 614.5,499.5 614.5,504.5 614.5,509.5C 619.5,509.5 624.5,509.5 629.5,509.5C 629.5,504.5 629.5,499.5 629.5,494.5C 634.5,494.5 639.5,494.5 644.5,494.5C 644.5,499.5 644.5,504.5 644.5,509.5C 649.5,509.5 654.5,509.5 659.5,509.5C 659.5,504.5 659.5,499.5 659.5,494.5C 664.5,494.5 669.5,494.5 674.5,494.5C 674.5,499.5 674.5,504.5 674.5,509.5C 679.5,509.5 684.5,509.5 689.5,509.5C 689.5,504.5 689.5,499.5 689.5,494.5C 694.5,494.5 699.5,494.5 704.5,494.5C 704.5,499.5 704.5,504.5 704.5,509.5C 709.5,509.5 714.5,509.5 719.5,509.5C 719.5,504.5 719.5,499.5 719.5,494.5C 724.5,494.5 729.5,494.5 734.5,494.5C 734.5,499.5 734.5,504.5 734.5,509.5C 739.5,509.5 744.5,509.5 749.5,509.5C 749.5,504.5 749.5,499.5 749.5,494.5C 754.5,494.5 759.5,494.5 764.5,494.5C 764.5,499.5 764.5,504.5 764.5,509.5C 769.5,509.5 774.5,509.5 779.5,509.5C 779.5,504.5 779.5,499.5 779.5,494.5C 784.5,494.5 789.5,494.5 794.5,494.5C 794.5,499.5 794.5,504.5 794.5,509.5C 799.5,509.5 804.5,509.5 809.5,509.5C 809.5,504.5 809.5,499.5 809.5,494.5C 814.5,494.5 819.5,494.5 824.5,494.5C 824.5,499.5 824.5,504.5 824.5,509.5C 829.5,509.5 834.5,509.5 839.5,509.5C 839.5,504.5 839.5,499.5 839.5,494.5C 844.5,494.5 849.5,494.5 854.5,494.5C 854.5,499.5 854.5,504.5 854.5,509.5C 859.5,509.5 864.5,509.5 869.5,509.5C 869.5,504.5 869.5,499.5 869.5,494.5C 874.5,494.5 879.5,494.5 884.5,494.5C 884.5,499.5 884.5,504.5 884.5,509.5C 889.5,509.5 894.5,509.5 899.5,509.5C 899.5,510.167 899.5,510.833 899.5,511.5C 599.5,511.5 299.5,511.5 -0.5,511.5C -0.5,505.833 -0.5,500.167 -0.5,494.5C 4.5,494.5 9.5,494.5 14.5,494.5C 19.5,494.5 24.5,494.5 29.5,494.5C 34.5,494.5 39.5,494.5 44.5,494.5C 49.5,494.5 54.5,494.5 59.5,494.5C 64.5,494.5 69.5,494.5 74.5,494.5C 79.5,494.5 84.5,494.5 89.5,494.5C 94.5,494.5 99.5,494.5 104.5,494.5C 109.5,494.5 114.5,494.5 119.5,494.5C 124.5,494.5 129.5,494.5 134.5,494.5C 139.5,494.5 144.5,494.5 149.5,494.5C 154.5,494.5 159.5,494.5 164.5,494.5C 169.5,494.5 174.5,494.5 179.5,494.5C 184.5,494.5 189.5,494.5 194.5,494.5C 199.5,494.5 204.5,494.5 209.5,494.5C 214.5,494.5 219.5,494.5 224.5,494.5C 229.5,494.5 234.5,494.5 239.5,494.5C 244.5,494.5 249.5,494.5 254.5,494.5C 254.5,489.5 254.5,484.5 254.5,479.5C 254.5,474.5 254.5,469.5 254.5,464.5C 254.5,459.5 254.5,454.5 254.5,449.5C 259.5,449.5 264.5,449.5 269.5,449.5C 269.833,446.167 270.167,442.833 270.5,439.5C 271.469,450.685 274.635,461.352 280,471.5C 294.301,489.622 312.468,494.788 334.5,487C 347.658,481.255 360.325,474.755 372.5,467.5C 374.423,471.029 375.089,475.029 374.5,479.5C 369.5,479.5 364.5,479.5 359.5,479.5C 359.5,484.5 359.5,489.5 359.5,494.5C 364.5,494.5 369.5,494.5 374.5,494.5C 374.5,499.5 374.5,504.5 374.5,509.5C 379.5,509.5 384.5,509.5 389.5,509.5C 389.5,504.5 389.5,499.5 389.5,494.5C 394.5,494.5 399.5,494.5 404.5,494.5C 404.5,499.5 404.5,504.5 404.5,509.5C 409.5,509.5 414.5,509.5 419.5,509.5C 419.5,504.5 419.5,499.5 419.5,494.5C 424.5,494.5 429.5,494.5 434.5,494.5C 434.5,489.5 434.5,484.5 434.5,479.5C 429.5,479.5 424.5,479.5 419.5,479.5C 419.5,474.5 419.5,469.5 419.5,464.5C 414.5,464.5 409.5,464.5 404.5,464.5C 404.5,459.5 404.5,454.5 404.5,449.5C 418.569,440.775 432.903,432.442 447.5,424.5 Z"/></g>
<g><path style="opacity:1" fill="#fefffe" d="M 374.5,479.5 C 374.5,484.5 374.5,489.5 374.5,494.5C 369.5,494.5 364.5,494.5 359.5,494.5C 359.5,489.5 359.5,484.5 359.5,479.5C 364.5,479.5 369.5,479.5 374.5,479.5 Z"/></g>
<g><path style="opacity:1" fill="#f7f7f7" d="M 404.5,449.5 C 404.5,454.5 404.5,459.5 404.5,464.5C 409.5,464.5 414.5,464.5 419.5,464.5C 419.5,469.5 419.5,474.5 419.5,479.5C 424.5,479.5 429.5,479.5 434.5,479.5C 434.5,484.5 434.5,489.5 434.5,494.5C 429.5,494.5 424.5,494.5 419.5,494.5C 419.5,499.5 419.5,504.5 419.5,509.5C 414.5,509.5 409.5,509.5 404.5,509.5C 404.5,504.5 404.5,499.5 404.5,494.5C 399.5,494.5 394.5,494.5 389.5,494.5C 389.5,499.5 389.5,504.5 389.5,509.5C 384.5,509.5 379.5,509.5 374.5,509.5C 374.5,504.5 374.5,499.5 374.5,494.5C 374.5,489.5 374.5,484.5 374.5,479.5C 375.089,475.029 374.423,471.029 372.5,467.5C 382.835,460.997 393.502,454.997 404.5,449.5 Z"/></g>
</svg>

After

Width:  |  Height:  |  Size: 141 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

@ -4,6 +4,7 @@
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">
<Color x:Key="RedMusic">#edacfe</Color>
<Color x:Key="Primary">#512BD4</Color>
<Color x:Key="Secondary">#DFD8F7</Color>
<Color x:Key="Tertiary">#2B0B98</Color>

@ -8,6 +8,24 @@
<Setter Property="Color" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
</Style>
<Style x:Key="ImagePlayer" TargetType="Image">
<Setter Property="WidthRequest" Value="10"/>
<Setter Property="HeightRequest" Value="10"/>
</Style>
<Style x:Key="FramePlayer" TargetType="Frame">
<Setter Property="Padding" Value="10,10,1,10"/>
<Setter Property="HeightRequest" Value="50"/>
<Setter Property="WidthRequest" Value="140"/>
<Setter Property="Background" Value="#fff"/>
</Style>
<Style x:Key="MenuIconStyle" TargetType="Image">
<Setter Property="WidthRequest" Value="24" />
<Setter Property="HeightRequest" Value="24" />
<Setter Property="BackgroundColor" Value="Transparent" />
<Setter Property="Margin" Value="0,0,10,0" />
</Style>
<Style TargetType="IndicatorView">
<Setter Property="IndicatorColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}"/>
<Setter Property="SelectedIndicatorColor" Value="{AppThemeBinding Light={StaticResource Gray950}, Dark={StaticResource Gray100}}"/>

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8" ?>
<?xaml-comp compile="true" ?>
<ResourceDictionary xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
<Color x:Key="PageBackgroundColor">Black</Color>
<Color x:Key="NavigationBarColor">Teal</Color>
<Color x:Key="PrimaryColor">Teal</Color>
<Color x:Key="SecondaryColor">White</Color>
<Color x:Key="PrimaryTextColor">White</Color>
<Color x:Key="SecondaryTextColor">White</Color>
<Color x:Key="TertiaryTextColor">WhiteSmoke</Color>
<Color x:Key="TransparentColor">Transparent</Color>
</ResourceDictionary>

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8" ?>
<?xaml-comp compile="true" ?>
<ResourceDictionary xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">
<Color x:Key="PageBackgroundColor">White</Color>
<Color x:Key="NavigationBarColor">WhiteSmoke</Color>
<Color x:Key="PrimaryColor">WhiteSmoke</Color>
<Color x:Key="SecondaryColor">Black</Color>
<Color x:Key="PrimaryTextColor">Black</Color>
<Color x:Key="SecondaryTextColor">White</Color>
<Color x:Key="TertiaryTextColor">Gray</Color>
<Color x:Key="TransparentColor">Transparent</Color>
</ResourceDictionary>

@ -1,12 +0,0 @@
namespace MAUI_APP;
public partial class App : Application
{
public App()
{
InitializeComponent();
MainPage = new AppShell();
}
}

@ -1,15 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="MAUI_APP.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:MAUI_APP"
Shell.FlyoutBehavior="Disabled">
<ShellContent
Title="Home"
ContentTemplate="{DataTemplate local:MainPage}"
Route="MainPage" />
</Shell>

@ -1,48 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0-android;net6.0-ios;net6.0-maccatalyst</TargetFrameworks>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net6.0-windows10.0.19041.0</TargetFrameworks>
<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET -->
<!-- <TargetFrameworks>$(TargetFrameworks);net6.0-tizen</TargetFrameworks> -->
<OutputType>Exe</OutputType>
<RootNamespace>MAUI_APP</RootNamespace>
<UseMaui>true</UseMaui>
<SingleProject>true</SingleProject>
<ImplicitUsings>enable</ImplicitUsings>
<!-- Display name -->
<ApplicationTitle>MAUI_APP</ApplicationTitle>
<!-- App Identifier -->
<ApplicationId>com.companyname.maui_app</ApplicationId>
<ApplicationIdGuid>c879f47e-cc2b-4639-9084-50644f1aa297</ApplicationIdGuid>
<!-- Versions -->
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
<ApplicationVersion>1</ApplicationVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">14.2</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">14.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion>
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion>
</PropertyGroup>
<ItemGroup>
<!-- App Icon -->
<MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4" />
<!-- Splash Screen -->
<MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#512BD4" BaseSize="128,128" />
<!-- Images -->
<MauiImage Include="Resources\Images\*" />
<MauiFont Include="Resources\Fonts\*" />
<!-- Raw Assets (also remove the "Resources\Raw" prefix) -->
<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
</ItemGroup>
</Project>

@ -1,42 +0,0 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="MAUI_APP.MainPage">
<ScrollView>
<VerticalStackLayout
Spacing="25"
Padding="30,0"
VerticalOptions="Center">
<Image
Source="dotnet_bot.png"
SemanticProperties.Description="Cute dot net bot waving hi to you!"
HeightRequest="200"
HorizontalOptions="Center" />
<Label
Text="Hello, World!"
SemanticProperties.HeadingLevel="Level1"
FontSize="32"
HorizontalOptions="Center" />
<Label
Text="Welcome to .NET Multi-platform App UI"
SemanticProperties.HeadingLevel="Level2"
SemanticProperties.Description="Welcome to dot net Multi platform App U I"
FontSize="18"
HorizontalOptions="Center" />
<Button
x:Name="CounterBtn"
Text="Click me"
SemanticProperties.Hint="Counts the number of times you click"
Clicked="OnCounterClicked"
HorizontalOptions="Center" />
</VerticalStackLayout>
</ScrollView>
</ContentPage>

@ -1,25 +0,0 @@
namespace MAUI_APP;
public partial class MainPage : ContentPage
{
int count = 0;
public MainPage()
{
InitializeComponent();
}
private void OnCounterClicked(object sender, EventArgs e)
{
count++;
if (count == 1)
CounterBtn.Text = $"Clicked {count} time";
else
CounterBtn.Text = $"Clicked {count} times";
SemanticScreenReader.Announce(CounterBtn.Text);
}
}

@ -0,0 +1,59 @@
using System.Numerics;
namespace Model;
public class Livre : IEquatable<Livre>
{
private string title;
public string Title
{
get => title;
private set
{
title = string.IsNullOrWhiteSpace(value) ? "" : value;
}
}
private string auteur;
public string Auteur
{
get => auteur;
private set
{
auteur = string.IsNullOrWhiteSpace(value) ? "" : value;
}
}
public Livre(string nom, string auteur)
{
this.Title = nom;
this.Auteur = auteur;
if (string.IsNullOrWhiteSpace(Title)
&& string.IsNullOrWhiteSpace(Auteur) )
{
throw new ArgumentException("un morceaui doit avoir un titre et un auteur ");
}
}
public void setTitle(string title)
{
Title = title;
}
public void setAuteur(string auteur)
{
Auteur = auteur;
}
public bool Equals(Livre? obj)
{
if (ReferenceEquals(obj, null)) return false;
if (ReferenceEquals(obj, this)) return true;
if (GetType() != obj.GetType()) return false;
return Equals(obj as Livre);
}
}

@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

@ -3,15 +3,15 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.810.22
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloWorldLib", "HelloWorldLib\HelloWorldLib.csproj", "{48BBA997-E63D-48BB-BB2A-538457425F02}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{C75DF644-C41F-4A08-8B69-C8554204AC72}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloWorldApp", "HelloWorldApp\HelloWorldApp.csproj", "{21365B7E-4A1A-4C37-B140-A9D6FC7A7E50}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloWordLib_UnitTests", "Tests\HelloWordLib_UnitTests\HelloWordLib_UnitTests.csproj", "{F9B12DFD-EF58-429F-9344-70DFC10EC6E5}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MAUI_APP", "MAUI_APP\MAUI_APP.csproj", "{BBFC487A-C658-405A-8648-482AA2300DD3}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BookApp", "BookApp\BookApp.csproj", "{1F888829-F224-4FB9-8C38-1971C640F519}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Model", "Model\Model.csproj", "{E71057EA-7DC6-42A9-9F57-E576B35E0CDF}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ViewModel", "ViewModel\ViewModel.csproj", "{003DFF70-77BB-4237-B791-F0E650E49EB2}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@ -19,22 +19,22 @@ Global
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{48BBA997-E63D-48BB-BB2A-538457425F02}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{48BBA997-E63D-48BB-BB2A-538457425F02}.Debug|Any CPU.Build.0 = Debug|Any CPU
{48BBA997-E63D-48BB-BB2A-538457425F02}.Release|Any CPU.ActiveCfg = Release|Any CPU
{48BBA997-E63D-48BB-BB2A-538457425F02}.Release|Any CPU.Build.0 = Release|Any CPU
{21365B7E-4A1A-4C37-B140-A9D6FC7A7E50}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{21365B7E-4A1A-4C37-B140-A9D6FC7A7E50}.Debug|Any CPU.Build.0 = Debug|Any CPU
{21365B7E-4A1A-4C37-B140-A9D6FC7A7E50}.Release|Any CPU.ActiveCfg = Release|Any CPU
{21365B7E-4A1A-4C37-B140-A9D6FC7A7E50}.Release|Any CPU.Build.0 = Release|Any CPU
{F9B12DFD-EF58-429F-9344-70DFC10EC6E5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F9B12DFD-EF58-429F-9344-70DFC10EC6E5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F9B12DFD-EF58-429F-9344-70DFC10EC6E5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F9B12DFD-EF58-429F-9344-70DFC10EC6E5}.Release|Any CPU.Build.0 = Release|Any CPU
{BBFC487A-C658-405A-8648-482AA2300DD3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BBFC487A-C658-405A-8648-482AA2300DD3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BBFC487A-C658-405A-8648-482AA2300DD3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BBFC487A-C658-405A-8648-482AA2300DD3}.Release|Any CPU.Build.0 = Release|Any CPU
{1F888829-F224-4FB9-8C38-1971C640F519}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1F888829-F224-4FB9-8C38-1971C640F519}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1F888829-F224-4FB9-8C38-1971C640F519}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1F888829-F224-4FB9-8C38-1971C640F519}.Release|Any CPU.Build.0 = Release|Any CPU
{E71057EA-7DC6-42A9-9F57-E576B35E0CDF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E71057EA-7DC6-42A9-9F57-E576B35E0CDF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E71057EA-7DC6-42A9-9F57-E576B35E0CDF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E71057EA-7DC6-42A9-9F57-E576B35E0CDF}.Release|Any CPU.Build.0 = Release|Any CPU
{003DFF70-77BB-4237-B791-F0E650E49EB2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{003DFF70-77BB-4237-B791-F0E650E49EB2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{003DFF70-77BB-4237-B791-F0E650E49EB2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{003DFF70-77BB-4237-B791-F0E650E49EB2}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

@ -19,7 +19,4 @@
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\HelloWorldLib\HelloWorldLib.csproj" />
</ItemGroup>
</Project>

@ -0,0 +1,24 @@
using Model;
namespace ViewModel;
public class LivreViewModel
{
public Livre model { set; get; }
public LivreViewModel(Livre livre)
{
model = livre;
}
public void setTitle(string title)
{
model.setTitle ( title);
}
public void SetAuteur(string auteur)
{
model.setAuteur(auteur);
}
}

@ -0,0 +1,15 @@
using System;
namespace ViewModel
{
public class ManagerViewModel
{
public ManagerViewModel()
{
}
}
}

@ -0,0 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Model\Model.csproj" />
</ItemGroup>
</Project>
Loading…
Cancel
Save