Make departmental orders consoles print slips (#36944)

* Make departmental orders consoles print slips

* feed back cycle
This commit is contained in:
pathetic meowmeow
2025-05-06 15:04:18 -04:00
committed by GitHub
parent f73f6d4467
commit cfba56c2b4
45 changed files with 649 additions and 27 deletions

View File

@@ -38,9 +38,10 @@
<!-- Products get added here by code --> <!-- Products get added here by code -->
</BoxContainer> </BoxContainer>
</ScrollContainer> </ScrollContainer>
<Control MinHeight="5"/> <Control MinHeight="5" Name="OrdersSpacer"/>
<PanelContainer VerticalExpand="True" <PanelContainer VerticalExpand="True"
SizeFlagsStretchRatio="1"> SizeFlagsStretchRatio="1"
Name="Orders">
<PanelContainer.PanelOverride> <PanelContainer.PanelOverride>
<gfx:StyleBoxFlat BackgroundColor="#000000" /> <gfx:StyleBoxFlat BackgroundColor="#000000" />
</PanelContainer.PanelOverride> </PanelContainer.PanelOverride>

View File

@@ -208,6 +208,7 @@ namespace Content.Client.Cargo.UI
var product = _protoManager.Index<EntityPrototype>(order.ProductId); var product = _protoManager.Index<EntityPrototype>(order.ProductId);
var productName = product.Name; var productName = product.Name;
var account = _protoManager.Index(order.Account);
var row = new CargoOrderRow var row = new CargoOrderRow
{ {
@@ -219,7 +220,9 @@ namespace Content.Client.Cargo.UI
"cargo-console-menu-populate-orders-cargo-order-row-product-name-text", "cargo-console-menu-populate-orders-cargo-order-row-product-name-text",
("productName", productName), ("productName", productName),
("orderAmount", order.OrderQuantity), ("orderAmount", order.OrderQuantity),
("orderRequester", order.Requester)) ("orderRequester", order.Requester),
("accountColor", account.Color),
("account", Loc.GetString(account.Code)))
}, },
Description = Description =
{ {
@@ -282,6 +285,9 @@ namespace Content.Client.Cargo.UI
AccountActionButton.Disabled = TransferSpinBox.Value <= 0 || AccountActionButton.Disabled = TransferSpinBox.Value <= 0 ||
TransferSpinBox.Value > bankAccount.Accounts[orderConsole.Account] * orderConsole.TransferLimit || TransferSpinBox.Value > bankAccount.Accounts[orderConsole.Account] * orderConsole.TransferLimit ||
_timing.CurTime < orderConsole.NextAccountActionTime; _timing.CurTime < orderConsole.NextAccountActionTime;
OrdersSpacer.Visible = !orderConsole.SlipPrinter;
Orders.Visible = !orderConsole.SlipPrinter;
} }
} }
} }

View File

@@ -11,11 +11,10 @@
<BoxContainer Orientation="Vertical" <BoxContainer Orientation="Vertical"
HorizontalExpand="True" HorizontalExpand="True"
VerticalExpand="True"> VerticalExpand="True">
<Label Name="ProductName" <RichTextLabel Name="ProductName"
Access="Public" Access="Public"
HorizontalExpand="True" HorizontalExpand="True"
StyleClasses="LabelSubText" StyleClasses="LabelSubText" />
ClipText="True" />
<Label Name="Description" <Label Name="Description"
Access="Public" Access="Public"
HorizontalExpand="True" HorizontalExpand="True"

View File

@@ -36,6 +36,7 @@ namespace Content.Client.Cargo.UI
{ {
var product = protoManager.Index<EntityPrototype>(order.ProductId); var product = protoManager.Index<EntityPrototype>(order.ProductId);
var productName = product.Name; var productName = product.Name;
var account = protoManager.Index(order.Account);
var row = new CargoOrderRow var row = new CargoOrderRow
{ {
@@ -47,7 +48,9 @@ namespace Content.Client.Cargo.UI
"cargo-console-menu-populate-orders-cargo-order-row-product-name-text", "cargo-console-menu-populate-orders-cargo-order-row-product-name-text",
("productName", productName), ("productName", productName),
("orderAmount", order.OrderQuantity - order.NumDispatched), ("orderAmount", order.OrderQuantity - order.NumDispatched),
("orderRequester", order.Requester)) ("orderRequester", order.Requester),
("accountColor", account.Color),
("account", Loc.GetString(account.Code)))
}, },
Description = {Text = Loc.GetString("cargo-console-menu-order-reason-description", Description = {Text = Loc.GetString("cargo-console-menu-order-reason-description",
("reason", order.Reason))} ("reason", order.Reason))}

View File

@@ -1,4 +1,5 @@
using System.Numerics; using System.Numerics;
using Robust.Shared.Utility;
namespace Content.Client.Paper.UI; namespace Content.Client.Paper.UI;
@@ -55,6 +56,24 @@ public sealed partial class PaperVisualsComponent : Component
[DataField("headerMargin")] [DataField("headerMargin")]
public Box2 HeaderMargin = default; public Box2 HeaderMargin = default;
/// <summary>
/// A path to an image which will be used as a footer on the paper
/// </summary>
[DataField]
public ResPath? FooterImagePath;
/// <summary>
/// Modulate the footer image by this color
/// </summary>
[DataField]
public Color FooterImageModulate = Color.White;
/// <summary>
/// Any additional margin to add around the footer
/// </summary>
[DataField]
public Box2 FooterMargin = default;
/// <summary> /// <summary>
/// Path to an image to use as the background to the "content" of the paper /// Path to an image to use as the background to the "content" of the paper
/// The header and actual written text will use this as a background. The /// The header and actual written text will use this as a background. The

View File

@@ -22,6 +22,7 @@
</PanelContainer> </PanelContainer>
<Label Name="FillStatus" StyleClasses="LabelSecondaryColor"/> <Label Name="FillStatus" StyleClasses="LabelSecondaryColor"/>
</BoxContainer> </BoxContainer>
<TextureButton Name="FooterImage" HorizontalAlignment="Center" VerticalAlignment="Top" MouseFilter="Ignore"/>
</BoxContainer> </BoxContainer>
<paper:StampCollection Name="StampDisplay" VerticalAlignment="Bottom" Margin="6"/> <paper:StampCollection Name="StampDisplay" VerticalAlignment="Bottom" Margin="6"/>

View File

@@ -149,6 +149,16 @@ namespace Content.Client.Paper.UI
HeaderImage.Margin = new Thickness(visuals.HeaderMargin.Left, visuals.HeaderMargin.Top, HeaderImage.Margin = new Thickness(visuals.HeaderMargin.Left, visuals.HeaderMargin.Top,
visuals.HeaderMargin.Right, visuals.HeaderMargin.Bottom); visuals.HeaderMargin.Right, visuals.HeaderMargin.Bottom);
// Then the footer
if (visuals.FooterImagePath is {} path)
{
FooterImage.TexturePath = path.ToString();
FooterImage.MinSize = FooterImage.TextureNormal?.Size ?? Vector2.Zero;
}
FooterImage.ModulateSelfOverride = visuals.FooterImageModulate;
FooterImage.Margin = new Thickness(visuals.FooterMargin.Left, visuals.FooterMargin.Top,
visuals.FooterMargin.Right, visuals.FooterMargin.Bottom);
PaperContent.ModulateSelfOverride = visuals.ContentImageModulate; PaperContent.ModulateSelfOverride = visuals.ContentImageModulate;
WrittenTextLabel.ModulateSelfOverride = visuals.FontAccentColor; WrittenTextLabel.ModulateSelfOverride = visuals.FontAccentColor;

View File

@@ -13,6 +13,7 @@ using Content.Shared.Interaction;
using Content.Shared.Labels.Components; using Content.Shared.Labels.Components;
using Content.Shared.Paper; using Content.Shared.Paper;
using JetBrains.Annotations; using JetBrains.Annotations;
using Robust.Shared.Audio;
using Robust.Shared.Map; using Robust.Shared.Map;
using Robust.Shared.Prototypes; using Robust.Shared.Prototypes;
using Robust.Shared.Utility; using Robust.Shared.Utility;
@@ -35,11 +36,8 @@ namespace Content.Server.Cargo.Systems
SubscribeLocalEvent<CargoOrderConsoleComponent, GotEmaggedEvent>(OnEmagged); SubscribeLocalEvent<CargoOrderConsoleComponent, GotEmaggedEvent>(OnEmagged);
} }
private void OnInteractUsing(EntityUid uid, CargoOrderConsoleComponent component, ref InteractUsingEvent args) private void OnInteractUsingCash(EntityUid uid, CargoOrderConsoleComponent component, ref InteractUsingEvent args)
{ {
if (!HasComp<CashComponent>(args.Used))
return;
var price = _pricing.GetPrice(args.Used); var price = _pricing.GetPrice(args.Used);
if (price == 0) if (price == 0)
@@ -56,6 +54,55 @@ namespace Content.Server.Cargo.Systems
args.Handled = true; args.Handled = true;
} }
private void OnInteractUsingSlip(Entity<CargoOrderConsoleComponent> ent, ref InteractUsingEvent args, CargoSlipComponent slip)
{
if (slip.OrderQuantity <= 0)
return;
var stationUid = _station.GetOwningStation(ent);
if (!TryGetOrderDatabase(stationUid, out var orderDatabase))
return;
if (!_protoMan.TryIndex(slip.Product, out var product))
{
Log.Error($"Tried to add invalid cargo product {slip.Product} as order!");
return;
}
if (!ent.Comp.AllowedGroups.Contains(product.Group))
return;
var orderId = GenerateOrderId(orderDatabase);
var data = new CargoOrderData(orderId, product.Product, product.Name, product.Cost, slip.OrderQuantity, slip.Requester, slip.Reason, slip.Account);
if (!TryAddOrder(stationUid.Value, ent.Comp.Account, data, orderDatabase))
{
PlayDenySound(ent, ent.Comp);
return;
}
// Log order addition
_audio.PlayPvs(ent.Comp.ScanSound, ent);
_adminLogger.Add(LogType.Action,
LogImpact.Low,
$"{ToPrettyString(args.User):user} inserted order slip [orderId:{data.OrderId}, quantity:{data.OrderQuantity}, product:{data.ProductId}, requester:{data.Requester}, reason:{data.Reason}]");
QueueDel(args.Used);
args.Handled = true;
}
private void OnInteractUsing(EntityUid uid, CargoOrderConsoleComponent component, ref InteractUsingEvent args)
{
if (HasComp<CashComponent>(args.Used))
{
OnInteractUsingCash(uid, component, ref args);
}
else if (TryComp<CargoSlipComponent>(args.Used, out var slip) && !component.SlipPrinter)
{
OnInteractUsingSlip((uid, component), ref args, slip);
}
}
private void OnInit(EntityUid uid, CargoOrderConsoleComponent orderConsole, ComponentInit args) private void OnInit(EntityUid uid, CargoOrderConsoleComponent orderConsole, ComponentInit args)
{ {
var station = _station.GetOwningStation(uid); var station = _station.GetOwningStation(uid);
@@ -94,6 +141,9 @@ namespace Content.Server.Cargo.Systems
if (args.Actor is not { Valid: true } player) if (args.Actor is not { Valid: true } player)
return; return;
if (component.SlipPrinter)
return;
if (!_accessReaderSystem.IsAllowed(player, uid)) if (!_accessReaderSystem.IsAllowed(player, uid))
{ {
ConsolePopup(args.Actor, Loc.GetString("cargo-console-order-not-allowed")); ConsolePopup(args.Actor, Loc.GetString("cargo-console-order-not-allowed"));
@@ -115,7 +165,7 @@ namespace Content.Server.Cargo.Systems
// Find our order again. It might have been dispatched or approved already // Find our order again. It might have been dispatched or approved already
var order = orderDatabase.Orders[component.Account].Find(order => args.OrderId == order.OrderId && !order.Approved); var order = orderDatabase.Orders[component.Account].Find(order => args.OrderId == order.OrderId && !order.Approved);
if (order == null) if (order == null || !_protoMan.TryIndex(order.Account, out var account))
{ {
return; return;
} }
@@ -128,7 +178,7 @@ namespace Content.Server.Cargo.Systems
return; return;
} }
var amount = GetOutstandingOrderCount(orderDatabase, component.Account); var amount = GetOutstandingOrderCount(orderDatabase, order.Account);
var capacity = orderDatabase.Capacity; var capacity = orderDatabase.Capacity;
// Too many orders, avoid them getting spammed in the UI. // Too many orders, avoid them getting spammed in the UI.
@@ -150,7 +200,7 @@ namespace Content.Server.Cargo.Systems
} }
var cost = order.Price * order.OrderQuantity; var cost = order.Price * order.OrderQuantity;
var accountBalance = GetBalanceFromAccount((station.Value, bank), component.Account); var accountBalance = GetBalanceFromAccount((station.Value, bank), order.Account);
// Not enough balance // Not enough balance
if (cost > accountBalance) if (cost > accountBalance)
@@ -166,7 +216,7 @@ namespace Content.Server.Cargo.Systems
if (!ev.Handled) if (!ev.Handled)
{ {
ev.FulfillmentEntity = TryFulfillOrder((station.Value, stationData), component.Account, order, orderDatabase); ev.FulfillmentEntity = TryFulfillOrder((station.Value, stationData), order.Account, order, orderDatabase);
if (ev.FulfillmentEntity == null) if (ev.FulfillmentEntity == null)
{ {
@@ -190,8 +240,8 @@ namespace Content.Server.Cargo.Systems
("orderAmount", order.OrderQuantity), ("orderAmount", order.OrderQuantity),
("approver", order.Approver ?? string.Empty), ("approver", order.Approver ?? string.Empty),
("cost", cost)); ("cost", cost));
_radio.SendRadioMessage(uid, message, component.AnnouncementChannel, uid, escapeMarkup: false); _radio.SendRadioMessage(uid, message, account.RadioChannel, uid, escapeMarkup: false);
if (CargoOrderConsoleComponent.BaseAnnouncementChannel != component.AnnouncementChannel) if (CargoOrderConsoleComponent.BaseAnnouncementChannel != account.RadioChannel)
_radio.SendRadioMessage(uid, message, CargoOrderConsoleComponent.BaseAnnouncementChannel, uid, escapeMarkup: false); _radio.SendRadioMessage(uid, message, CargoOrderConsoleComponent.BaseAnnouncementChannel, uid, escapeMarkup: false);
} }
@@ -200,10 +250,10 @@ namespace Content.Server.Cargo.Systems
// Log order approval // Log order approval
_adminLogger.Add(LogType.Action, _adminLogger.Add(LogType.Action,
LogImpact.Low, LogImpact.Low,
$"{ToPrettyString(player):user} approved order [orderId:{order.OrderId}, quantity:{order.OrderQuantity}, product:{order.ProductId}, requester:{order.Requester}, reason:{order.Reason}] on account {component.Account} with balance at {accountBalance}"); $"{ToPrettyString(player):user} approved order [orderId:{order.OrderId}, quantity:{order.OrderQuantity}, product:{order.ProductId}, requester:{order.Requester}, reason:{order.Reason}] on account {order.Account} with balance at {accountBalance}");
orderDatabase.Orders[component.Account].Remove(order); orderDatabase.Orders[component.Account].Remove(order);
UpdateBankAccount((station.Value, bank), -cost, component.Account); UpdateBankAccount((station.Value, bank), -cost, order.Account);
UpdateOrders(station.Value); UpdateOrders(station.Value);
} }
@@ -259,12 +309,48 @@ namespace Content.Server.Cargo.Systems
{ {
var station = _station.GetOwningStation(uid); var station = _station.GetOwningStation(uid);
if (component.SlipPrinter)
return;
if (!TryGetOrderDatabase(station, out var orderDatabase)) if (!TryGetOrderDatabase(station, out var orderDatabase))
return; return;
RemoveOrder(station.Value, component.Account, args.OrderId, orderDatabase); RemoveOrder(station.Value, component.Account, args.OrderId, orderDatabase);
} }
private void OnAddOrderMessageSlipPrinter(EntityUid uid, CargoOrderConsoleComponent component, CargoConsoleAddOrderMessage args, CargoProductPrototype product)
{
if (!_protoMan.TryIndex(component.Account, out var account))
return;
if (Timing.CurTime < component.NextPrintTime)
return;
var label = Spawn(account.AcquisitionSlip, Transform(uid).Coordinates);
component.NextPrintTime = Timing.CurTime + component.PrintDelay;
_audio.PlayPvs(component.PrintSound, uid);
var paper = EnsureComp<PaperComponent>(label);
var msg = new FormattedMessage();
msg.AddMarkupPermissive(Loc.GetString("cargo-acquisition-slip-body",
("product", product.Name),
("description", product.Description),
("unit", product.Cost),
("amount", args.Amount),
("cost", product.Cost * args.Amount),
("orderer", args.Requester),
("reason", args.Reason)));
_paperSystem.SetContent((label, paper), msg.ToMarkup());
var slip = EnsureComp<CargoSlipComponent>(label);
slip.Product = product.ID;
slip.Requester = args.Requester;
slip.Reason = args.Reason;
slip.OrderQuantity = args.Amount;
slip.Account = component.Account;
}
private void OnAddOrderMessage(EntityUid uid, CargoOrderConsoleComponent component, CargoConsoleAddOrderMessage args) private void OnAddOrderMessage(EntityUid uid, CargoOrderConsoleComponent component, CargoConsoleAddOrderMessage args)
{ {
if (args.Actor is not { Valid: true } player) if (args.Actor is not { Valid: true } player)
@@ -287,7 +373,13 @@ namespace Content.Server.Cargo.Systems
if (!component.AllowedGroups.Contains(product.Group)) if (!component.AllowedGroups.Contains(product.Group))
return; return;
var data = GetOrderData(args, product, GenerateOrderId(orderDatabase)); if (component.SlipPrinter)
{
OnAddOrderMessageSlipPrinter(uid, component, args, product);
return;
}
var data = GetOrderData(args, product, GenerateOrderId(orderDatabase), component.Account);
if (!TryAddOrder(stationUid.Value, component.Account, data, orderDatabase)) if (!TryAddOrder(stationUid.Value, component.Account, data, orderDatabase))
{ {
@@ -342,9 +434,9 @@ namespace Content.Server.Cargo.Systems
_audio.PlayPvs(_audio.ResolveSound(component.ErrorSound), uid); _audio.PlayPvs(_audio.ResolveSound(component.ErrorSound), uid);
} }
private static CargoOrderData GetOrderData(CargoConsoleAddOrderMessage args, CargoProductPrototype cargoProduct, int id) private static CargoOrderData GetOrderData(CargoConsoleAddOrderMessage args, CargoProductPrototype cargoProduct, int id, ProtoId<CargoAccountPrototype> account)
{ {
return new CargoOrderData(id, cargoProduct.Product, cargoProduct.Name, cargoProduct.Cost, args.Amount, args.Requester, args.Reason); return new CargoOrderData(id, cargoProduct.Product, cargoProduct.Name, cargoProduct.Cost, args.Amount, args.Requester, args.Reason, account);
} }
public static int GetOutstandingOrderCount(StationCargoOrderDatabaseComponent component, ProtoId<CargoAccountPrototype> account) public static int GetOutstandingOrderCount(StationCargoOrderDatabaseComponent component, ProtoId<CargoAccountPrototype> account)
@@ -397,7 +489,7 @@ namespace Content.Server.Cargo.Systems
DebugTools.Assert(_protoMan.HasIndex<EntityPrototype>(spawnId)); DebugTools.Assert(_protoMan.HasIndex<EntityPrototype>(spawnId));
// Make an order // Make an order
var id = GenerateOrderId(component); var id = GenerateOrderId(component);
var order = new CargoOrderData(id, spawnId, name, cost, qty, sender, description); var order = new CargoOrderData(id, spawnId, name, cost, qty, sender, description, account);
// Approve it now // Approve it now
order.SetApproverData(dest, sender); order.SetApproverData(dest, sender);

View File

@@ -1,3 +1,5 @@
using Content.Shared.Cargo.Prototypes;
using Robust.Shared.Prototypes;
using Robust.Shared.Serialization; using Robust.Shared.Serialization;
using System.Text; using System.Text;
namespace Content.Shared.Cargo namespace Content.Shared.Cargo
@@ -52,7 +54,13 @@ namespace Content.Shared.Cargo
[DataField] [DataField]
public string? Approver; public string? Approver;
public CargoOrderData(int orderId, string productId, string productName, int price, int amount, string requester, string reason) /// <summary>
/// Which account to deduct funds from when ordering
/// </summary>
[DataField]
public ProtoId<CargoAccountPrototype> Account;
public CargoOrderData(int orderId, string productId, string productName, int price, int amount, string requester, string reason, ProtoId<CargoAccountPrototype> account)
{ {
OrderId = orderId; OrderId = orderId;
ProductId = productId; ProductId = productId;
@@ -61,6 +69,7 @@ namespace Content.Shared.Cargo
OrderQuantity = amount; OrderQuantity = amount;
Requester = requester; Requester = requester;
Reason = reason; Reason = reason;
Account = account;
} }
public void SetApproverData(string? approver) public void SetApproverData(string? approver)

View File

@@ -96,6 +96,36 @@ public sealed partial class CargoOrderConsoleComponent : Component
/// Secondary radio channel which always receives order announcements. /// Secondary radio channel which always receives order announcements.
/// </summary> /// </summary>
public static readonly ProtoId<RadioChannelPrototype> BaseAnnouncementChannel = "Supply"; public static readonly ProtoId<RadioChannelPrototype> BaseAnnouncementChannel = "Supply";
/// <summary>
/// If set to true, restricts this console from ordering and has it print slips instead
/// </summary>
[DataField]
public bool SlipPrinter;
/// <summary>
/// The time at which the console will be able to print a slip again.
/// </summary>
[DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), AutoPausedField]
public TimeSpan NextPrintTime = TimeSpan.Zero;
/// <summary>
/// The time between prints.
/// </summary>
[DataField]
public TimeSpan PrintDelay = TimeSpan.FromSeconds(5);
/// <summary>
/// The sound made when printing occurs
/// </summary>
[DataField]
public SoundSpecifier PrintSound = new SoundCollectionSpecifier("PrinterPrint");
/// <summary>
/// The sound made when an order slip is scanned
/// </summary>
[DataField]
public SoundSpecifier ScanSound = new SoundCollectionSpecifier("CargoBeep");
} }
/// <summary> /// <summary>

View File

@@ -0,0 +1,41 @@
using Content.Shared.Cargo.Prototypes;
using Robust.Shared.Prototypes;
namespace Content.Shared.Cargo.Components;
/// <summary>
/// Holds data for an order slip required for insertion into a console
/// </summary>
[RegisterComponent]
public sealed partial class CargoSlipComponent : Component
{
/// <summary>
/// The requested product
/// </summary>
[DataField]
public ProtoId<CargoProductPrototype> Product;
/// <summary>
/// The provided value for the requester form field
/// </summary>
[DataField]
public string Requester;
/// <summary>
/// The provided value for the reason form field
/// </summary>
[DataField]
public string Reason;
/// <summary>
/// How many of the product to order
/// </summary>
[DataField]
public int OrderQuantity;
/// <summary>
/// How many of the product to order
/// </summary>
[DataField]
public ProtoId<CargoAccountPrototype> Account;
}

View File

@@ -36,4 +36,10 @@ public sealed partial class CargoAccountPrototype : IPrototype
/// </summary> /// </summary>
[DataField] [DataField]
public ProtoId<RadioChannelPrototype> RadioChannel; public ProtoId<RadioChannelPrototype> RadioChannel;
/// <summary>
/// Paper prototype used for acquisition slips.
/// </summary>
[DataField]
public EntProtoId AcquisitionSlip;
} }

View File

@@ -5,3 +5,9 @@
copyright: '"buzz_sigh.ogg", "buzz_two.ogg", and "ping.ogg" by /tg/station' copyright: '"buzz_sigh.ogg", "buzz_two.ogg", and "ping.ogg" by /tg/station'
license: CC-BY-SA-3.0 license: CC-BY-SA-3.0
source: https://github.com/tgstation/tgstation/tree/d6f15fb717e7c047f8befefabb4b7735b3c39a84/sound source: https://github.com/tgstation/tgstation/tree/d6f15fb717e7c047f8befefabb4b7735b3c39a84/sound
- files:
- beep.ogg
copyright: 'Store Scanner Beep by zerolagtime'
license: CC0-1.0
source: https://freesound.org/people/zerolagtime/sounds/144418/

Binary file not shown.

View File

@@ -18,7 +18,7 @@ cargo-console-menu-requests-label = Requests
cargo-console-menu-orders-label = Orders cargo-console-menu-orders-label = Orders
cargo-console-menu-order-reason-description = Reasons: {$reason} cargo-console-menu-order-reason-description = Reasons: {$reason}
cargo-console-menu-populate-categories-all-text = All cargo-console-menu-populate-categories-all-text = All
cargo-console-menu-populate-orders-cargo-order-row-product-name-text = {$productName} (x{$orderAmount}) by {$orderRequester} cargo-console-menu-populate-orders-cargo-order-row-product-name-text = {$productName} (x{$orderAmount}) by {$orderRequester} from [color={$accountColor}]{$account}[/color]
cargo-console-menu-cargo-order-row-approve-button = Approve cargo-console-menu-cargo-order-row-approve-button = Approve
cargo-console-menu-cargo-order-row-cancel-button = Cancel cargo-console-menu-cargo-order-row-cancel-button = Cancel
cargo-console-menu-tab-title-orders = Orders cargo-console-menu-tab-title-orders = Orders
@@ -82,3 +82,15 @@ cargo-funding-alloc-console-label-save-fail = [bold]Revenue Divisions Invalid![/
[1] + [1] +
*[-1] - *[-1] -
}{$val}%)[/color] }{$val}%)[/color]
# Slip template
cargo-acquisition-slip-body = [head=3]Asset Detail[/head]
{"[bold]Product:[/bold]"} {$product}
{"[bold]Description:[/bold]"} {$description}
{"[bold]Unit cost:[/bold"}] ${$unit}
{"[bold]Amount:[/bold]"} {$amount}
{"[bold]Cost:[/bold]"} ${$cost}
{"[head=3]Purchase Detail[/head]"}
{"[bold]Orderer:[/bold]"} {$orderer}
{"[bold]Reason:[/bold]"} {$reason}

View File

@@ -4,6 +4,7 @@
code: cargo-account-cargo-code code: cargo-account-cargo-code
color: "#b48b57" color: "#b48b57"
radioChannel: Supply radioChannel: Supply
acquisitionSlip: PaperAcquisitionSlipCargo
- type: cargoAccount - type: cargoAccount
id: Engineering id: Engineering
@@ -11,6 +12,7 @@
code: cargo-account-engineering-code code: cargo-account-engineering-code
color: "#ff733c" color: "#ff733c"
radioChannel: Engineering radioChannel: Engineering
acquisitionSlip: PaperAcquisitionSlipEngineering
- type: cargoAccount - type: cargoAccount
id: Medical id: Medical
@@ -18,6 +20,7 @@
code: cargo-account-medical-code code: cargo-account-medical-code
color: "#57b8f0" color: "#57b8f0"
radioChannel: Medical radioChannel: Medical
acquisitionSlip: PaperAcquisitionSlipMedical
- type: cargoAccount - type: cargoAccount
id: Science id: Science
@@ -25,6 +28,7 @@
code: cargo-account-science-code code: cargo-account-science-code
color: "#cd7ccd" color: "#cd7ccd"
radioChannel: Science radioChannel: Science
acquisitionSlip: PaperAcquisitionSlipScience
- type: cargoAccount - type: cargoAccount
id: Security id: Security
@@ -32,6 +36,7 @@
code: cargo-account-security-code code: cargo-account-security-code
color: "#ff4242" color: "#ff4242"
radioChannel: Security radioChannel: Security
acquisitionSlip: PaperAcquisitionSlipSecurity
- type: cargoAccount - type: cargoAccount
id: Service id: Service
@@ -39,4 +44,4 @@
code: cargo-account-service-code code: cargo-account-service-code
color: "#539c00" color: "#539c00"
radioChannel: Service radioChannel: Service
acquisitionSlip: PaperAcquisitionSlipService

View File

@@ -0,0 +1,139 @@
- type: entity
abstract: true
parent: Paper
id: PaperAcquisitionSlip
name: acquisition slip
description: A slip with order details on it. It can be given to Cargo to complete the order.
components:
- type: Sprite
layers:
- state: acquisition_form
- state: acquisition_form_words
map: ["enum.PaperVisualLayers.Writing"]
visible: false
- state: acquisition_form_header
- state: paper_stamp-generic
map: ["enum.PaperVisualLayers.Stamp"]
visible: false
- type: Tag
tags:
- Trash
- type: Paper
editingDisabled: true
- type: PaperVisuals
footerImagePath: "/Textures/Interface/Paper/AcquisitionSlips/barcode.svg.192dpi.png"
maxWritableArea: 512.0, 512.0
- type: entity
parent: PaperAcquisitionSlip
id: PaperAcquisitionSlipMedical
suffix: Medical
components:
- type: Sprite
layers:
- state: acquisition_form
- state: acquisition_form_words
map: ["enum.PaperVisualLayers.Writing"]
visible: false
- state: acquisition_form_header
color: "#57b8f0"
- state: paper_stamp-generic
map: ["enum.PaperVisualLayers.Stamp"]
visible: false
- type: PaperVisuals
headerImagePath: "/Textures/Interface/Paper/AcquisitionSlips/medical.svg.192dpi.png"
- type: entity
parent: PaperAcquisitionSlip
id: PaperAcquisitionSlipScience
suffix: Science
components:
- type: Sprite
layers:
- state: acquisition_form
- state: acquisition_form_words
map: ["enum.PaperVisualLayers.Writing"]
visible: false
- state: acquisition_form_header
color: "#cd7ccd"
- state: paper_stamp-generic
map: ["enum.PaperVisualLayers.Stamp"]
visible: false
- type: PaperVisuals
headerImagePath: "/Textures/Interface/Paper/AcquisitionSlips/science.svg.192dpi.png"
- type: entity
parent: PaperAcquisitionSlip
id: PaperAcquisitionSlipSecurity
suffix: Security
components:
- type: Sprite
layers:
- state: acquisition_form
- state: acquisition_form_words
map: ["enum.PaperVisualLayers.Writing"]
visible: false
- state: acquisition_form_header
color: "#ff4242"
- state: paper_stamp-generic
map: ["enum.PaperVisualLayers.Stamp"]
visible: false
- type: PaperVisuals
headerImagePath: "/Textures/Interface/Paper/AcquisitionSlips/security.svg.192dpi.png"
- type: entity
parent: PaperAcquisitionSlip
id: PaperAcquisitionSlipService
suffix: Service
components:
- type: Sprite
layers:
- state: acquisition_form
- state: acquisition_form_words
map: ["enum.PaperVisualLayers.Writing"]
visible: false
- state: acquisition_form_header
color: "#539c00"
- state: paper_stamp-generic
map: ["enum.PaperVisualLayers.Stamp"]
visible: false
- type: PaperVisuals
headerImagePath: "/Textures/Interface/Paper/AcquisitionSlips/service.svg.192dpi.png"
- type: entity
parent: PaperAcquisitionSlip
id: PaperAcquisitionSlipCargo
suffix: Cargo
components:
- type: Sprite
layers:
- state: acquisition_form
- state: acquisition_form_words
map: ["enum.PaperVisualLayers.Writing"]
visible: false
- state: acquisition_form_header
color: "#b48b57"
- state: paper_stamp-generic
map: ["enum.PaperVisualLayers.Stamp"]
visible: false
- type: PaperVisuals
headerImagePath: "/Textures/Interface/Paper/AcquisitionSlips/cargo.svg.192dpi.png"
- type: entity
parent: PaperAcquisitionSlip
id: PaperAcquisitionSlipEngineering
suffix: Engineering
components:
- type: Sprite
layers:
- state: acquisition_form
- state: acquisition_form_words
map: ["enum.PaperVisualLayers.Writing"]
visible: false
- state: acquisition_form_header
color: "#ff733c"
- state: paper_stamp-generic
map: ["enum.PaperVisualLayers.Stamp"]
visible: false
- type: PaperVisuals
headerImagePath: "/Textures/Interface/Paper/AcquisitionSlips/engineering.svg.192dpi.png"

View File

@@ -929,6 +929,7 @@
account: Engineering account: Engineering
announcementChannel: Engineering announcementChannel: Engineering
removeLimitAccess: [ "ChiefEngineer" ] removeLimitAccess: [ "ChiefEngineer" ]
slipPrinter: true
- type: ActiveRadio - type: ActiveRadio
channels: channels:
- Engineering - Engineering
@@ -961,6 +962,7 @@
account: Medical account: Medical
announcementChannel: Medical announcementChannel: Medical
removeLimitAccess: [ "ChiefMedicalOfficer" ] removeLimitAccess: [ "ChiefMedicalOfficer" ]
slipPrinter: true
- type: ActiveRadio - type: ActiveRadio
channels: channels:
- Medical - Medical
@@ -993,6 +995,7 @@
account: Science account: Science
announcementChannel: Science announcementChannel: Science
removeLimitAccess: [ "ResearchDirector" ] removeLimitAccess: [ "ResearchDirector" ]
slipPrinter: true
- type: ActiveRadio - type: ActiveRadio
channels: channels:
- Science - Science
@@ -1025,6 +1028,7 @@
account: Security account: Security
announcementChannel: Security announcementChannel: Security
removeLimitAccess: [ "HeadOfSecurity" ] removeLimitAccess: [ "HeadOfSecurity" ]
slipPrinter: true
- type: ActiveRadio - type: ActiveRadio
channels: channels:
- Security - Security
@@ -1057,6 +1061,7 @@
account: Service account: Service
announcementChannel: Service announcementChannel: Service
removeLimitAccess: [ "HeadOfPersonnel" ] removeLimitAccess: [ "HeadOfPersonnel" ]
slipPrinter: true
- type: ActiveRadio - type: ActiveRadio
channels: channels:
- Service - Service

View File

@@ -48,6 +48,9 @@
whitelist: whitelist:
components: components:
- FaxableObject #used to be PaperComponent - brainfood1183 - FaxableObject #used to be PaperComponent - brainfood1183
blacklist:
components:
- CargoSlip
- type: GenericVisualizer - type: GenericVisualizer
visuals: visuals:
enum.PowerDeviceVisuals.Powered: enum.PowerDeviceVisuals.Powered:

View File

@@ -1,3 +1,8 @@
- type: soundCollection
id: PrinterPrint
files:
- /Audio/Machines/printer.ogg
- type: soundCollection - type: soundCollection
id: CargoPing id: CargoPing
files: files:
@@ -12,3 +17,8 @@
id: CargoToggleLimit id: CargoToggleLimit
files: files:
- /Audio/Machines/quickbeep.ogg - /Audio/Machines/quickbeep.ogg
- type: soundCollection
id: CargoBeep
files:
- /Audio/Effects/Cargo/beep.ogg

View File

@@ -0,0 +1,48 @@
<svg width="200" height="29" viewBox="0 0 200 29" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_14_168)">
<path d="M1.48148 0H0V29H1.48148V0Z" fill="black"/>
<path d="M4.44443 0H2.96295V29H4.44443V0Z" fill="black"/>
<path d="M7.40742 0H5.92593V29H7.40742V0Z" fill="black"/>
<path d="M13.3333 0H11.8518V29H13.3333V0Z" fill="black"/>
<path d="M19.2593 0H14.8148V29H19.2593V0Z" fill="black"/>
<path d="M22.2222 0H20.7408V29H22.2222V0Z" fill="black"/>
<path d="M28.1481 0H23.7037V29H28.1481V0Z" fill="black"/>
<path d="M34.0741 0H32.5926V29H34.0741V0Z" fill="black"/>
<path d="M42.963 0H38.5185V29H42.963V0Z" fill="black"/>
<path d="M48.8889 0H44.4445V29H48.8889V0Z" fill="black"/>
<path d="M51.8518 0H50.3704V29H51.8518V0Z" fill="black"/>
<path d="M57.7778 0H56.2963V29H57.7778V0Z" fill="black"/>
<path d="M60.7407 0H59.2592V29H60.7407V0Z" fill="black"/>
<path d="M66.6667 0H65.1852V29H66.6667V0Z" fill="black"/>
<path d="M75.5556 0H71.1111V29H75.5556V0Z" fill="black"/>
<path d="M78.5185 0H77.037V29H78.5185V0Z" fill="black"/>
<path d="M84.4444 0H80V29H84.4444V0Z" fill="black"/>
<path d="M90.3704 0H85.9259V29H90.3704V0Z" fill="black"/>
<path d="M93.3333 0H91.8519V29H93.3333V0Z" fill="black"/>
<path d="M96.2963 0H94.8148V29H96.2963V0Z" fill="black"/>
<path d="M105.185 0H100.741V29H105.185V0Z" fill="black"/>
<path d="M111.111 0H109.63V29H111.111V0Z" fill="black"/>
<path d="M114.074 0H112.593V29H114.074V0Z" fill="black"/>
<path d="M117.037 0H115.556V29H117.037V0Z" fill="black"/>
<path d="M120 0H118.519V29H120V0Z" fill="black"/>
<path d="M128.889 0H124.444V29H128.889V0Z" fill="black"/>
<path d="M137.778 0H133.333V29H137.778V0Z" fill="black"/>
<path d="M143.704 0H139.259V29H143.704V0Z" fill="black"/>
<path d="M146.667 0H145.185V29H146.667V0Z" fill="black"/>
<path d="M152.593 0H148.148V29H152.593V0Z" fill="black"/>
<path d="M158.519 0H157.037V29H158.519V0Z" fill="black"/>
<path d="M161.481 0H160V29H161.481V0Z" fill="black"/>
<path d="M167.407 0H165.926V29H167.407V0Z" fill="black"/>
<path d="M173.333 0H168.889V29H173.333V0Z" fill="black"/>
<path d="M179.259 0H177.778V29H179.259V0Z" fill="black"/>
<path d="M185.185 0H183.704V29H185.185V0Z" fill="black"/>
<path d="M191.111 0H186.667V29H191.111V0Z" fill="black"/>
<path d="M197.037 0H192.593V29H197.037V0Z" fill="black"/>
<path d="M200 0H198.519V29H200V0Z" fill="black"/>
</g>
<defs>
<clipPath id="clip0_14_168">
<rect width="200" height="29" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 515 B

View File

@@ -0,0 +1,2 @@
sample:
filter: true

View File

@@ -0,0 +1,23 @@
<svg width="256" height="32" viewBox="0 0 256 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.3599 9.76624C10.2014 9.63414 10.0876 9.45694 10.0342 9.25865C9.98074 9.06037 9.99014 8.8506 10.0611 8.65779C10.1321 8.46498 10.2612 8.29845 10.431 8.18078C10.6008 8.06311 10.803 8 11.0102 8H15.99C16.0972 8 16.2 8.04216 16.2757 8.11722C16.3515 8.19227 16.3941 8.29407 16.3941 8.40021V14.793L10.3599 9.76624ZM23.4014 8H18.0385C17.9035 8 17.7739 8.05081 17.6784 8.14124C17.5829 8.23168 17.5293 8.35434 17.5293 8.48223V23.5178C17.5293 23.6457 17.5829 23.7683 17.6784 23.8588C17.7739 23.9492 17.9035 24 18.0385 24H22.0384C22.1735 24 22.303 23.9492 22.3985 23.8588C22.494 23.7683 22.5476 23.6457 22.5476 23.5178V15.3911L27.9868 23.7703C28.0323 23.8405 28.0961 23.8985 28.1721 23.9387C28.248 23.9789 28.3336 24 28.4206 24H33.9606C34.0956 24 34.2252 23.9492 34.3207 23.8588C34.4162 23.7683 34.4698 23.6457 34.4698 23.5178V8.48223C34.4698 8.4189 34.4566 8.3562 34.431 8.29769C34.4055 8.23918 34.3679 8.18602 34.3207 8.14124C34.2734 8.09646 34.2172 8.06094 34.1554 8.03671C34.0937 8.01247 34.0274 8 33.9606 8H29.8395C29.7044 8 29.5749 8.05081 29.4794 8.14124C29.3839 8.23168 29.3302 8.35434 29.3302 8.48223V16.695L23.8352 8.2297C23.7897 8.15951 23.7259 8.10154 23.6499 8.06133C23.574 8.02111 23.4884 8 23.4014 8ZM41.9657 22.7414C41.9122 22.5431 41.7985 22.3659 41.6399 22.2338L35.6058 17.207V23.5999C35.6058 23.6524 35.6162 23.7044 35.6366 23.753C35.6569 23.8016 35.6866 23.8457 35.7241 23.8828C35.7617 23.92 35.8062 23.9495 35.8552 23.9696C35.9043 23.9897 35.9568 24.0001 36.0099 24.0001H40.9897C41.1969 24.0001 41.3991 23.937 41.5689 23.8193C41.7386 23.7016 41.8678 23.5351 41.9387 23.3423C42.0097 23.1495 42.0191 22.9397 41.9657 22.7414Z" fill="#A46106"/>
<path d="M245.892 14.244C246.652 14.244 247.232 14.436 247.632 14.82C248.032 15.204 248.232 15.824 248.232 16.68V21H245.94V17.388C245.94 16.884 245.872 16.536 245.736 16.344C245.6 16.144 245.4 16.044 245.136 16.044C244.768 16.044 244.512 16.208 244.368 16.536C244.224 16.856 244.152 17.312 244.152 17.904V21H241.86V17.388C241.86 16.908 241.796 16.564 241.668 16.356C241.54 16.148 241.348 16.044 241.092 16.044C240.7 16.044 240.432 16.22 240.288 16.572C240.152 16.924 240.084 17.432 240.084 18.096V21H237.792V14.364H239.52L239.856 15.18H239.916C240.092 14.908 240.344 14.684 240.672 14.508C241.008 14.332 241.42 14.244 241.908 14.244C242.396 14.244 242.796 14.328 243.108 14.496C243.428 14.656 243.688 14.88 243.888 15.168H243.96C244.168 14.872 244.436 14.644 244.764 14.484C245.1 14.324 245.476 14.244 245.892 14.244Z" fill="#A46106"/>
<path d="M236.175 14.244C236.303 14.244 236.435 14.252 236.571 14.268C236.707 14.284 236.807 14.3 236.871 14.316L236.667 16.476C236.587 16.46 236.487 16.444 236.367 16.428C236.255 16.412 236.095 16.404 235.887 16.404C235.695 16.404 235.487 16.432 235.263 16.488C235.047 16.544 234.859 16.668 234.699 16.86C234.539 17.044 234.459 17.336 234.459 17.736V21H232.167V14.364H233.871L234.231 15.42H234.339C234.523 15.092 234.779 14.816 235.107 14.592C235.443 14.36 235.799 14.244 236.175 14.244Z" fill="#A46106"/>
<path d="M230.862 17.664C230.862 18.776 230.566 19.632 229.974 20.232C229.382 20.824 228.57 21.12 227.538 21.12C226.898 21.12 226.33 20.988 225.834 20.724C225.338 20.452 224.946 20.06 224.658 19.548C224.378 19.028 224.238 18.4 224.238 17.664C224.238 16.568 224.534 15.724 225.126 15.132C225.718 14.54 226.534 14.244 227.574 14.244C228.214 14.244 228.778 14.376 229.266 14.64C229.762 14.904 230.15 15.292 230.43 15.804C230.718 16.308 230.862 16.928 230.862 17.664ZM226.566 17.664C226.566 18.232 226.642 18.668 226.794 18.972C226.946 19.268 227.202 19.416 227.562 19.416C227.914 19.416 228.162 19.268 228.306 18.972C228.458 18.668 228.534 18.232 228.534 17.664C228.534 17.096 228.458 16.668 228.306 16.38C228.162 16.092 227.91 15.948 227.55 15.948C227.206 15.948 226.954 16.092 226.794 16.38C226.642 16.668 226.566 17.096 226.566 17.664Z" fill="#A46106"/>
<path d="M220.47 21H218.19V12.432H223.254V14.292H220.47V15.924H223.038V17.784H220.47V21Z" fill="#A46106"/>
<path d="M211.053 14.244C211.741 14.244 212.301 14.436 212.733 14.82C213.165 15.204 213.381 15.824 213.381 16.68V21H211.089V17.376C211.089 16.936 211.025 16.604 210.897 16.38C210.769 16.156 210.565 16.044 210.285 16.044C209.853 16.044 209.561 16.22 209.409 16.572C209.265 16.924 209.193 17.432 209.193 18.096V21H206.901V14.364H208.629L208.941 15.24H209.025C209.233 14.928 209.505 14.684 209.841 14.508C210.185 14.332 210.589 14.244 211.053 14.244Z" fill="#A46106"/>
<path d="M205.597 17.664C205.597 18.776 205.301 19.632 204.709 20.232C204.117 20.824 203.305 21.12 202.273 21.12C201.633 21.12 201.065 20.988 200.569 20.724C200.073 20.452 199.681 20.06 199.393 19.548C199.113 19.028 198.973 18.4 198.973 17.664C198.973 16.568 199.269 15.724 199.861 15.132C200.453 14.54 201.269 14.244 202.309 14.244C202.949 14.244 203.513 14.376 204.001 14.64C204.497 14.904 204.885 15.292 205.165 15.804C205.453 16.308 205.597 16.928 205.597 17.664ZM201.301 17.664C201.301 18.232 201.377 18.668 201.529 18.972C201.681 19.268 201.937 19.416 202.297 19.416C202.649 19.416 202.897 19.268 203.041 18.972C203.193 18.668 203.269 18.232 203.269 17.664C203.269 17.096 203.193 16.668 203.041 16.38C202.897 16.092 202.645 15.948 202.285 15.948C201.941 15.948 201.689 16.092 201.529 16.38C201.377 16.668 201.301 17.096 201.301 17.664Z" fill="#A46106"/>
<path d="M196.522 11.688C196.85 11.688 197.134 11.756 197.374 11.892C197.622 12.028 197.746 12.3 197.746 12.708C197.746 13.1 197.622 13.368 197.374 13.512C197.134 13.648 196.85 13.716 196.522 13.716C196.186 13.716 195.898 13.648 195.658 13.512C195.426 13.368 195.31 13.1 195.31 12.708C195.31 12.3 195.426 12.028 195.658 11.892C195.898 11.756 196.186 11.688 196.522 11.688ZM197.662 14.364V21H195.37V14.364H197.662Z" fill="#A46106"/>
<path d="M193.091 19.308C193.299 19.308 193.487 19.288 193.655 19.248C193.831 19.2 194.011 19.144 194.195 19.08V20.748C193.947 20.852 193.683 20.94 193.403 21.012C193.123 21.084 192.767 21.12 192.335 21.12C191.903 21.12 191.523 21.052 191.195 20.916C190.875 20.78 190.623 20.548 190.439 20.22C190.255 19.884 190.163 19.416 190.163 18.816V16.08H189.359V15.144L190.379 14.424L190.967 13.032H192.467V14.364H194.099V16.08H192.467V18.66C192.467 19.092 192.675 19.308 193.091 19.308Z" fill="#A46106"/>
<path d="M187.101 11.688C187.429 11.688 187.713 11.756 187.953 11.892C188.201 12.028 188.325 12.3 188.325 12.708C188.325 13.1 188.201 13.368 187.953 13.512C187.713 13.648 187.429 13.716 187.101 13.716C186.765 13.716 186.477 13.648 186.237 13.512C186.005 13.368 185.889 13.1 185.889 12.708C185.889 12.3 186.005 12.028 186.237 11.892C186.477 11.756 186.765 11.688 187.101 11.688ZM188.241 14.364V21H185.949V14.364H188.241Z" fill="#A46106"/>
<path d="M184.669 18.96C184.669 19.376 184.573 19.748 184.381 20.076C184.197 20.404 183.897 20.66 183.481 20.844C183.073 21.028 182.533 21.12 181.861 21.12C181.389 21.12 180.965 21.092 180.589 21.036C180.221 20.988 179.845 20.892 179.461 20.748V18.912C179.885 19.104 180.313 19.244 180.745 19.332C181.177 19.412 181.517 19.452 181.765 19.452C182.261 19.452 182.509 19.34 182.509 19.116C182.509 19.02 182.469 18.936 182.389 18.864C182.309 18.792 182.165 18.712 181.957 18.624C181.757 18.536 181.469 18.416 181.093 18.264C180.541 18.032 180.129 17.768 179.857 17.472C179.585 17.168 179.449 16.744 179.449 16.2C179.449 15.552 179.697 15.064 180.193 14.736C180.697 14.408 181.361 14.244 182.185 14.244C182.625 14.244 183.037 14.292 183.421 14.388C183.805 14.484 184.205 14.624 184.621 14.808L183.997 16.284C183.669 16.132 183.337 16.012 183.001 15.924C182.665 15.836 182.397 15.792 182.197 15.792C181.821 15.792 181.633 15.884 181.633 16.068C181.633 16.148 181.665 16.22 181.729 16.284C181.801 16.348 181.933 16.42 182.125 16.5C182.317 16.58 182.597 16.696 182.965 16.848C183.349 17 183.665 17.168 183.913 17.352C184.169 17.528 184.357 17.744 184.477 18C184.605 18.248 184.669 18.568 184.669 18.96Z" fill="#A46106"/>
<path d="M176.999 11.688C177.327 11.688 177.611 11.756 177.851 11.892C178.099 12.028 178.223 12.3 178.223 12.708C178.223 13.1 178.099 13.368 177.851 13.512C177.611 13.648 177.327 13.716 176.999 13.716C176.663 13.716 176.375 13.648 176.135 13.512C175.903 13.368 175.787 13.1 175.787 12.708C175.787 12.3 175.903 12.028 176.135 11.892C176.375 11.756 176.663 11.688 176.999 11.688ZM178.139 14.364V21H175.847V14.364H178.139Z" fill="#A46106"/>
<path d="M174.252 14.364V21H172.524L172.236 20.172H172.104C171.896 20.508 171.612 20.752 171.252 20.904C170.892 21.048 170.508 21.12 170.1 21.12C169.668 21.12 169.276 21.036 168.924 20.868C168.572 20.7 168.292 20.436 168.084 20.076C167.884 19.716 167.784 19.252 167.784 18.684V14.364H170.076V17.988C170.076 18.42 170.136 18.748 170.256 18.972C170.384 19.196 170.588 19.308 170.868 19.308C171.3 19.308 171.588 19.132 171.732 18.78C171.884 18.428 171.96 17.924 171.96 17.268V14.364H174.252Z" fill="#A46106"/>
<path d="M163.925 21.132C163.925 20.804 163.949 20.48 163.997 20.16H163.925C163.773 20.424 163.557 20.652 163.277 20.844C162.997 21.028 162.629 21.12 162.173 21.12C161.469 21.12 160.897 20.828 160.457 20.244C160.017 19.66 159.797 18.808 159.797 17.688C159.797 16.568 160.021 15.716 160.469 15.132C160.917 14.54 161.497 14.244 162.209 14.244C162.673 14.244 163.045 14.336 163.325 14.52C163.613 14.696 163.845 14.916 164.021 15.18H164.069L164.237 14.364H166.217V23.88H163.925V21.132ZM163.109 19.344C163.485 19.344 163.745 19.228 163.889 18.996C164.033 18.756 164.105 18.4 164.105 17.928V17.652C164.105 17.132 164.033 16.732 163.889 16.452C163.753 16.164 163.481 16.02 163.073 16.02C162.441 16.02 162.125 16.588 162.125 17.724C162.125 18.3 162.205 18.716 162.365 18.972C162.525 19.22 162.773 19.344 163.109 19.344Z" fill="#A46106"/>
<path d="M156.64 21.12C155.632 21.12 154.828 20.848 154.228 20.304C153.628 19.76 153.328 18.896 153.328 17.712C153.328 16.904 153.48 16.248 153.784 15.744C154.088 15.232 154.5 14.856 155.02 14.616C155.548 14.368 156.148 14.244 156.82 14.244C157.228 14.244 157.612 14.288 157.972 14.376C158.34 14.464 158.68 14.588 158.992 14.748L158.32 16.44C158.048 16.32 157.792 16.224 157.552 16.152C157.32 16.08 157.076 16.044 156.82 16.044C156.476 16.044 156.196 16.18 155.98 16.452C155.764 16.724 155.656 17.14 155.656 17.7C155.656 18.276 155.764 18.688 155.98 18.936C156.204 19.176 156.488 19.296 156.832 19.296C157.16 19.296 157.488 19.244 157.816 19.14C158.152 19.036 158.468 18.892 158.764 18.708V20.532C158.492 20.708 158.184 20.852 157.84 20.964C157.496 21.068 157.096 21.12 156.64 21.12Z" fill="#A46106"/>
<path d="M150.297 21L149.877 19.392H147.093L146.661 21H144.117L146.913 12.396H149.997L152.829 21H150.297ZM149.025 16.092C148.985 15.94 148.929 15.724 148.857 15.444C148.785 15.156 148.713 14.86 148.641 14.556C148.569 14.252 148.513 14.004 148.473 13.812C148.441 14.004 148.389 14.244 148.317 14.532C148.253 14.82 148.185 15.104 148.113 15.384C148.049 15.664 147.993 15.9 147.945 16.092L147.573 17.496H149.397L149.025 16.092Z" fill="#A46106"/>
<path d="M140.487 17.664C140.487 18.776 140.191 19.632 139.599 20.232C139.007 20.824 138.195 21.12 137.163 21.12C136.523 21.12 135.955 20.988 135.459 20.724C134.963 20.452 134.571 20.06 134.283 19.548C134.003 19.028 133.863 18.4 133.863 17.664C133.863 16.568 134.159 15.724 134.751 15.132C135.343 14.54 136.159 14.244 137.199 14.244C137.839 14.244 138.403 14.376 138.891 14.64C139.387 14.904 139.775 15.292 140.055 15.804C140.343 16.308 140.487 16.928 140.487 17.664ZM136.191 17.664C136.191 18.232 136.267 18.668 136.419 18.972C136.571 19.268 136.827 19.416 137.187 19.416C137.539 19.416 137.787 19.268 137.931 18.972C138.083 18.668 138.159 18.232 138.159 17.664C138.159 17.096 138.083 16.668 137.931 16.38C137.787 16.092 137.535 15.948 137.175 15.948C136.831 15.948 136.579 16.092 136.419 16.38C136.267 16.668 136.191 17.096 136.191 17.664Z" fill="#A46106"/>
<path d="M128.564 14.244C129.028 14.244 129.4 14.336 129.68 14.52C129.968 14.696 130.2 14.916 130.376 15.18H130.424L130.592 14.364H132.572V21.012C132.572 21.948 132.28 22.66 131.696 23.148C131.12 23.636 130.232 23.88 129.032 23.88C128.496 23.88 128.024 23.852 127.616 23.796C127.208 23.74 126.816 23.64 126.44 23.496V21.588C126.84 21.756 127.22 21.88 127.58 21.96C127.94 22.048 128.38 22.092 128.9 22.092C129.82 22.092 130.28 21.764 130.28 21.108V20.988C130.28 20.756 130.304 20.48 130.352 20.16H130.28C130.128 20.424 129.912 20.652 129.632 20.844C129.352 21.028 128.984 21.12 128.528 21.12C127.824 21.12 127.252 20.828 126.812 20.244C126.372 19.66 126.152 18.808 126.152 17.688C126.152 16.568 126.376 15.716 126.824 15.132C127.272 14.54 127.852 14.244 128.564 14.244ZM129.428 16.02C128.796 16.02 128.48 16.588 128.48 17.724C128.48 18.3 128.56 18.716 128.72 18.972C128.88 19.22 129.128 19.344 129.464 19.344C129.84 19.344 130.1 19.228 130.244 18.996C130.388 18.756 130.46 18.4 130.46 17.928V17.652C130.46 17.132 130.388 16.732 130.244 16.452C130.108 16.164 129.836 16.02 129.428 16.02Z" fill="#A46106"/>
<path d="M124.941 14.244C125.069 14.244 125.201 14.252 125.337 14.268C125.473 14.284 125.573 14.3 125.637 14.316L125.433 16.476C125.353 16.46 125.253 16.444 125.133 16.428C125.021 16.412 124.861 16.404 124.653 16.404C124.461 16.404 124.253 16.432 124.029 16.488C123.813 16.544 123.625 16.668 123.465 16.86C123.305 17.044 123.225 17.336 123.225 17.736V21H120.933V14.364H122.637L122.997 15.42H123.105C123.289 15.092 123.545 14.816 123.873 14.592C124.209 14.36 124.565 14.244 124.941 14.244Z" fill="#A46106"/>
<path d="M116.696 14.244C117.536 14.244 118.192 14.452 118.664 14.868C119.136 15.284 119.372 15.876 119.372 16.644V21H117.788L117.344 20.124H117.296C117.112 20.356 116.92 20.548 116.72 20.7C116.528 20.844 116.304 20.948 116.048 21.012C115.792 21.084 115.48 21.12 115.112 21.12C114.536 21.12 114.056 20.944 113.672 20.592C113.288 20.24 113.096 19.7 113.096 18.972C113.096 18.26 113.34 17.732 113.828 17.388C114.324 17.044 115.04 16.852 115.976 16.812L117.08 16.776V16.68C117.08 16.384 117.008 16.176 116.864 16.056C116.72 15.928 116.524 15.864 116.276 15.864C116.012 15.864 115.72 15.912 115.4 16.008C115.08 16.096 114.756 16.212 114.428 16.356L113.768 14.844C114.152 14.644 114.584 14.496 115.064 14.4C115.552 14.296 116.096 14.244 116.696 14.244ZM116.564 18.06C116.148 18.076 115.852 18.152 115.676 18.288C115.508 18.416 115.424 18.6 115.424 18.84C115.424 19.064 115.484 19.232 115.604 19.344C115.724 19.448 115.884 19.5 116.084 19.5C116.364 19.5 116.6 19.412 116.792 19.236C116.992 19.06 117.092 18.832 117.092 18.552V18.036L116.564 18.06Z" fill="#A46106"/>
<path d="M109.611 14.208C109.067 14.208 108.639 14.432 108.327 14.88C108.015 15.328 107.859 15.952 107.859 16.752C107.859 17.56 108.015 18.176 108.327 18.6C108.639 19.016 109.111 19.224 109.743 19.224C110.119 19.224 110.483 19.172 110.835 19.068C111.195 18.964 111.555 18.836 111.915 18.684V20.64C111.539 20.808 111.151 20.928 110.751 21C110.359 21.08 109.939 21.12 109.491 21.12C108.563 21.12 107.803 20.936 107.211 20.568C106.619 20.2 106.183 19.688 105.903 19.032C105.623 18.368 105.483 17.604 105.483 16.74C105.483 15.876 105.643 15.112 105.963 14.448C106.283 13.784 106.751 13.264 107.367 12.888C107.991 12.504 108.747 12.312 109.635 12.312C110.051 12.312 110.487 12.36 110.943 12.456C111.399 12.552 111.847 12.704 112.287 12.912L111.579 14.736C111.267 14.584 110.951 14.46 110.631 14.364C110.311 14.26 109.971 14.208 109.611 14.208Z" fill="#A46106"/>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@@ -0,0 +1,2 @@
sample:
filter: true

View File

@@ -0,0 +1,29 @@
<svg width="256" height="32" viewBox="0 0 256 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.3599 9.76624C10.2014 9.63414 10.0876 9.45694 10.0342 9.25865C9.98074 9.06037 9.99014 8.8506 10.0611 8.65779C10.1321 8.46498 10.2612 8.29845 10.431 8.18078C10.6008 8.06311 10.803 8 11.0102 8H15.99C16.0972 8 16.2 8.04216 16.2757 8.11722C16.3515 8.19227 16.3941 8.29407 16.3941 8.40021V14.793L10.3599 9.76624ZM23.4014 8H18.0385C17.9035 8 17.7739 8.05081 17.6784 8.14124C17.5829 8.23168 17.5293 8.35434 17.5293 8.48223V23.5178C17.5293 23.6457 17.5829 23.7683 17.6784 23.8588C17.7739 23.9492 17.9035 24 18.0385 24H22.0384C22.1735 24 22.303 23.9492 22.3985 23.8588C22.494 23.7683 22.5476 23.6457 22.5476 23.5178V15.3911L27.9868 23.7703C28.0323 23.8405 28.0961 23.8985 28.1721 23.9387C28.248 23.9789 28.3336 24 28.4206 24H33.9606C34.0956 24 34.2252 23.9492 34.3207 23.8588C34.4162 23.7683 34.4698 23.6457 34.4698 23.5178V8.48223C34.4698 8.4189 34.4566 8.3562 34.431 8.29769C34.4055 8.23918 34.3679 8.18602 34.3207 8.14124C34.2734 8.09646 34.2172 8.06094 34.1554 8.03671C34.0937 8.01247 34.0274 8 33.9606 8H29.8395C29.7044 8 29.5749 8.05081 29.4794 8.14124C29.3839 8.23168 29.3302 8.35434 29.3302 8.48223V16.695L23.8352 8.2297C23.7897 8.15951 23.7259 8.10154 23.6499 8.06133C23.574 8.02111 23.4884 8 23.4014 8ZM41.9657 22.7414C41.9122 22.5431 41.7985 22.3659 41.6399 22.2338L35.6058 17.207V23.5999C35.6058 23.6524 35.6162 23.7044 35.6366 23.753C35.6569 23.8016 35.6866 23.8457 35.7241 23.8828C35.7617 23.92 35.8062 23.9495 35.8552 23.9696C35.9043 23.9897 35.9568 24.0001 36.0099 24.0001H40.9897C41.1969 24.0001 41.3991 23.937 41.5689 23.8193C41.7386 23.7016 41.8678 23.5351 41.9387 23.3423C42.0097 23.1495 42.0191 22.9397 41.9657 22.7414Z" fill="#FF733C"/>
<path d="M245.892 14.244C246.652 14.244 247.232 14.436 247.632 14.82C248.032 15.204 248.232 15.824 248.232 16.68V21H245.94V17.388C245.94 16.884 245.872 16.536 245.736 16.344C245.6 16.144 245.4 16.044 245.136 16.044C244.768 16.044 244.512 16.208 244.368 16.536C244.224 16.856 244.152 17.312 244.152 17.904V21H241.86V17.388C241.86 16.908 241.796 16.564 241.668 16.356C241.54 16.148 241.348 16.044 241.092 16.044C240.7 16.044 240.432 16.22 240.288 16.572C240.152 16.924 240.084 17.432 240.084 18.096V21H237.792V14.364H239.52L239.856 15.18H239.916C240.092 14.908 240.344 14.684 240.672 14.508C241.008 14.332 241.42 14.244 241.908 14.244C242.396 14.244 242.796 14.328 243.108 14.496C243.428 14.656 243.688 14.88 243.888 15.168H243.96C244.168 14.872 244.436 14.644 244.764 14.484C245.1 14.324 245.476 14.244 245.892 14.244Z" fill="#FF733C"/>
<path d="M236.175 14.244C236.303 14.244 236.435 14.252 236.571 14.268C236.707 14.284 236.807 14.3 236.871 14.316L236.667 16.476C236.587 16.46 236.487 16.444 236.367 16.428C236.255 16.412 236.095 16.404 235.887 16.404C235.695 16.404 235.487 16.432 235.263 16.488C235.047 16.544 234.859 16.668 234.699 16.86C234.539 17.044 234.459 17.336 234.459 17.736V21H232.167V14.364H233.871L234.231 15.42H234.339C234.523 15.092 234.779 14.816 235.107 14.592C235.443 14.36 235.799 14.244 236.175 14.244Z" fill="#FF733C"/>
<path d="M230.862 17.664C230.862 18.776 230.566 19.632 229.974 20.232C229.382 20.824 228.57 21.12 227.538 21.12C226.898 21.12 226.33 20.988 225.834 20.724C225.338 20.452 224.946 20.06 224.658 19.548C224.378 19.028 224.238 18.4 224.238 17.664C224.238 16.568 224.534 15.724 225.126 15.132C225.718 14.54 226.534 14.244 227.574 14.244C228.214 14.244 228.778 14.376 229.266 14.64C229.762 14.904 230.15 15.292 230.43 15.804C230.718 16.308 230.862 16.928 230.862 17.664ZM226.566 17.664C226.566 18.232 226.642 18.668 226.794 18.972C226.946 19.268 227.202 19.416 227.562 19.416C227.914 19.416 228.162 19.268 228.306 18.972C228.458 18.668 228.534 18.232 228.534 17.664C228.534 17.096 228.458 16.668 228.306 16.38C228.162 16.092 227.91 15.948 227.55 15.948C227.206 15.948 226.954 16.092 226.794 16.38C226.642 16.668 226.566 17.096 226.566 17.664Z" fill="#FF733C"/>
<path d="M220.47 21H218.19V12.432H223.254V14.292H220.47V15.924H223.038V17.784H220.47V21Z" fill="#FF733C"/>
<path d="M211.053 14.244C211.741 14.244 212.301 14.436 212.733 14.82C213.165 15.204 213.381 15.824 213.381 16.68V21H211.089V17.376C211.089 16.936 211.025 16.604 210.897 16.38C210.769 16.156 210.565 16.044 210.285 16.044C209.853 16.044 209.561 16.22 209.409 16.572C209.265 16.924 209.193 17.432 209.193 18.096V21H206.901V14.364H208.629L208.941 15.24H209.025C209.233 14.928 209.505 14.684 209.841 14.508C210.185 14.332 210.589 14.244 211.053 14.244Z" fill="#FF733C"/>
<path d="M205.597 17.664C205.597 18.776 205.301 19.632 204.709 20.232C204.117 20.824 203.305 21.12 202.273 21.12C201.633 21.12 201.065 20.988 200.569 20.724C200.073 20.452 199.681 20.06 199.393 19.548C199.113 19.028 198.973 18.4 198.973 17.664C198.973 16.568 199.269 15.724 199.861 15.132C200.453 14.54 201.269 14.244 202.309 14.244C202.949 14.244 203.513 14.376 204.001 14.64C204.497 14.904 204.885 15.292 205.165 15.804C205.453 16.308 205.597 16.928 205.597 17.664ZM201.301 17.664C201.301 18.232 201.377 18.668 201.529 18.972C201.681 19.268 201.937 19.416 202.297 19.416C202.649 19.416 202.897 19.268 203.041 18.972C203.193 18.668 203.269 18.232 203.269 17.664C203.269 17.096 203.193 16.668 203.041 16.38C202.897 16.092 202.645 15.948 202.285 15.948C201.941 15.948 201.689 16.092 201.529 16.38C201.377 16.668 201.301 17.096 201.301 17.664Z" fill="#FF733C"/>
<path d="M196.522 11.688C196.85 11.688 197.134 11.756 197.374 11.892C197.622 12.028 197.746 12.3 197.746 12.708C197.746 13.1 197.622 13.368 197.374 13.512C197.134 13.648 196.85 13.716 196.522 13.716C196.186 13.716 195.898 13.648 195.658 13.512C195.426 13.368 195.31 13.1 195.31 12.708C195.31 12.3 195.426 12.028 195.658 11.892C195.898 11.756 196.186 11.688 196.522 11.688ZM197.662 14.364V21H195.37V14.364H197.662Z" fill="#FF733C"/>
<path d="M193.091 19.308C193.299 19.308 193.487 19.288 193.655 19.248C193.831 19.2 194.011 19.144 194.195 19.08V20.748C193.947 20.852 193.683 20.94 193.403 21.012C193.123 21.084 192.767 21.12 192.335 21.12C191.903 21.12 191.523 21.052 191.195 20.916C190.875 20.78 190.623 20.548 190.439 20.22C190.255 19.884 190.163 19.416 190.163 18.816V16.08H189.359V15.144L190.379 14.424L190.967 13.032H192.467V14.364H194.099V16.08H192.467V18.66C192.467 19.092 192.675 19.308 193.091 19.308Z" fill="#FF733C"/>
<path d="M187.101 11.688C187.429 11.688 187.713 11.756 187.953 11.892C188.201 12.028 188.325 12.3 188.325 12.708C188.325 13.1 188.201 13.368 187.953 13.512C187.713 13.648 187.429 13.716 187.101 13.716C186.765 13.716 186.477 13.648 186.237 13.512C186.005 13.368 185.889 13.1 185.889 12.708C185.889 12.3 186.005 12.028 186.237 11.892C186.477 11.756 186.765 11.688 187.101 11.688ZM188.241 14.364V21H185.949V14.364H188.241Z" fill="#FF733C"/>
<path d="M184.669 18.96C184.669 19.376 184.573 19.748 184.381 20.076C184.197 20.404 183.897 20.66 183.481 20.844C183.073 21.028 182.533 21.12 181.861 21.12C181.389 21.12 180.965 21.092 180.589 21.036C180.221 20.988 179.845 20.892 179.461 20.748V18.912C179.885 19.104 180.313 19.244 180.745 19.332C181.177 19.412 181.517 19.452 181.765 19.452C182.261 19.452 182.509 19.34 182.509 19.116C182.509 19.02 182.469 18.936 182.389 18.864C182.309 18.792 182.165 18.712 181.957 18.624C181.757 18.536 181.469 18.416 181.093 18.264C180.541 18.032 180.129 17.768 179.857 17.472C179.585 17.168 179.449 16.744 179.449 16.2C179.449 15.552 179.697 15.064 180.193 14.736C180.697 14.408 181.361 14.244 182.185 14.244C182.625 14.244 183.037 14.292 183.421 14.388C183.805 14.484 184.205 14.624 184.621 14.808L183.997 16.284C183.669 16.132 183.337 16.012 183.001 15.924C182.665 15.836 182.397 15.792 182.197 15.792C181.821 15.792 181.633 15.884 181.633 16.068C181.633 16.148 181.665 16.22 181.729 16.284C181.801 16.348 181.933 16.42 182.125 16.5C182.317 16.58 182.597 16.696 182.965 16.848C183.349 17 183.665 17.168 183.913 17.352C184.169 17.528 184.357 17.744 184.477 18C184.605 18.248 184.669 18.568 184.669 18.96Z" fill="#FF733C"/>
<path d="M176.999 11.688C177.327 11.688 177.611 11.756 177.851 11.892C178.099 12.028 178.223 12.3 178.223 12.708C178.223 13.1 178.099 13.368 177.851 13.512C177.611 13.648 177.327 13.716 176.999 13.716C176.663 13.716 176.375 13.648 176.135 13.512C175.903 13.368 175.787 13.1 175.787 12.708C175.787 12.3 175.903 12.028 176.135 11.892C176.375 11.756 176.663 11.688 176.999 11.688ZM178.139 14.364V21H175.847V14.364H178.139Z" fill="#FF733C"/>
<path d="M174.252 14.364V21H172.524L172.236 20.172H172.104C171.896 20.508 171.612 20.752 171.252 20.904C170.892 21.048 170.508 21.12 170.1 21.12C169.668 21.12 169.276 21.036 168.924 20.868C168.572 20.7 168.292 20.436 168.084 20.076C167.884 19.716 167.784 19.252 167.784 18.684V14.364H170.076V17.988C170.076 18.42 170.136 18.748 170.256 18.972C170.384 19.196 170.588 19.308 170.868 19.308C171.3 19.308 171.588 19.132 171.732 18.78C171.884 18.428 171.96 17.924 171.96 17.268V14.364H174.252Z" fill="#FF733C"/>
<path d="M163.925 21.132C163.925 20.804 163.949 20.48 163.997 20.16H163.925C163.773 20.424 163.557 20.652 163.277 20.844C162.997 21.028 162.629 21.12 162.173 21.12C161.469 21.12 160.897 20.828 160.457 20.244C160.017 19.66 159.797 18.808 159.797 17.688C159.797 16.568 160.021 15.716 160.469 15.132C160.917 14.54 161.497 14.244 162.209 14.244C162.673 14.244 163.045 14.336 163.325 14.52C163.613 14.696 163.845 14.916 164.021 15.18H164.069L164.237 14.364H166.217V23.88H163.925V21.132ZM163.109 19.344C163.485 19.344 163.745 19.228 163.889 18.996C164.033 18.756 164.105 18.4 164.105 17.928V17.652C164.105 17.132 164.033 16.732 163.889 16.452C163.753 16.164 163.481 16.02 163.073 16.02C162.441 16.02 162.125 16.588 162.125 17.724C162.125 18.3 162.205 18.716 162.365 18.972C162.525 19.22 162.773 19.344 163.109 19.344Z" fill="#FF733C"/>
<path d="M156.64 21.12C155.632 21.12 154.828 20.848 154.228 20.304C153.628 19.76 153.328 18.896 153.328 17.712C153.328 16.904 153.48 16.248 153.784 15.744C154.088 15.232 154.5 14.856 155.02 14.616C155.548 14.368 156.148 14.244 156.82 14.244C157.228 14.244 157.612 14.288 157.972 14.376C158.34 14.464 158.68 14.588 158.992 14.748L158.32 16.44C158.048 16.32 157.792 16.224 157.552 16.152C157.32 16.08 157.076 16.044 156.82 16.044C156.476 16.044 156.196 16.18 155.98 16.452C155.764 16.724 155.656 17.14 155.656 17.7C155.656 18.276 155.764 18.688 155.98 18.936C156.204 19.176 156.488 19.296 156.832 19.296C157.16 19.296 157.488 19.244 157.816 19.14C158.152 19.036 158.468 18.892 158.764 18.708V20.532C158.492 20.708 158.184 20.852 157.84 20.964C157.496 21.068 157.096 21.12 156.64 21.12Z" fill="#FF733C"/>
<path d="M150.297 21L149.877 19.392H147.093L146.661 21H144.117L146.913 12.396H149.997L152.829 21H150.297ZM149.025 16.092C148.985 15.94 148.929 15.724 148.857 15.444C148.785 15.156 148.713 14.86 148.641 14.556C148.569 14.252 148.513 14.004 148.473 13.812C148.441 14.004 148.389 14.244 148.317 14.532C148.253 14.82 148.185 15.104 148.113 15.384C148.049 15.664 147.993 15.9 147.945 16.092L147.573 17.496H149.397L149.025 16.092Z" fill="#FF733C"/>
<path d="M136.205 14.244C136.669 14.244 137.041 14.336 137.321 14.52C137.609 14.696 137.841 14.916 138.017 15.18H138.065L138.233 14.364H140.213V21.012C140.213 21.948 139.921 22.66 139.337 23.148C138.761 23.636 137.873 23.88 136.673 23.88C136.137 23.88 135.665 23.852 135.257 23.796C134.849 23.74 134.457 23.64 134.081 23.496V21.588C134.481 21.756 134.861 21.88 135.221 21.96C135.581 22.048 136.021 22.092 136.541 22.092C137.461 22.092 137.921 21.764 137.921 21.108V20.988C137.921 20.756 137.945 20.48 137.993 20.16H137.921C137.769 20.424 137.553 20.652 137.273 20.844C136.993 21.028 136.625 21.12 136.169 21.12C135.465 21.12 134.893 20.828 134.453 20.244C134.013 19.66 133.793 18.808 133.793 17.688C133.793 16.568 134.017 15.716 134.465 15.132C134.913 14.54 135.493 14.244 136.205 14.244ZM137.069 16.02C136.437 16.02 136.121 16.588 136.121 17.724C136.121 18.3 136.201 18.716 136.361 18.972C136.521 19.22 136.769 19.344 137.105 19.344C137.481 19.344 137.741 19.228 137.885 18.996C138.029 18.756 138.101 18.4 138.101 17.928V17.652C138.101 17.132 138.029 16.732 137.885 16.452C137.749 16.164 137.477 16.02 137.069 16.02Z" fill="#FF733C"/>
<path d="M130.194 14.244C130.882 14.244 131.442 14.436 131.874 14.82C132.306 15.204 132.522 15.824 132.522 16.68V21H130.23V17.376C130.23 16.936 130.166 16.604 130.038 16.38C129.91 16.156 129.706 16.044 129.426 16.044C128.994 16.044 128.702 16.22 128.55 16.572C128.406 16.924 128.334 17.432 128.334 18.096V21H126.042V14.364H127.77L128.082 15.24H128.166C128.374 14.928 128.646 14.684 128.982 14.508C129.326 14.332 129.73 14.244 130.194 14.244Z" fill="#FF733C"/>
<path d="M123.304 11.688C123.632 11.688 123.916 11.756 124.156 11.892C124.404 12.028 124.528 12.3 124.528 12.708C124.528 13.1 124.404 13.368 124.156 13.512C123.916 13.648 123.632 13.716 123.304 13.716C122.968 13.716 122.68 13.648 122.44 13.512C122.208 13.368 122.092 13.1 122.092 12.708C122.092 12.3 122.208 12.028 122.44 11.892C122.68 11.756 122.968 11.688 123.304 11.688ZM124.444 14.364V21H122.152V14.364H124.444Z" fill="#FF733C"/>
<path d="M120.523 14.244C120.651 14.244 120.783 14.252 120.919 14.268C121.055 14.284 121.155 14.3 121.219 14.316L121.015 16.476C120.935 16.46 120.835 16.444 120.715 16.428C120.603 16.412 120.443 16.404 120.235 16.404C120.043 16.404 119.835 16.432 119.611 16.488C119.395 16.544 119.207 16.668 119.047 16.86C118.887 17.044 118.807 17.336 118.807 17.736V21H116.515V14.364H118.219L118.579 15.42H118.687C118.871 15.092 119.127 14.816 119.455 14.592C119.791 14.36 120.147 14.244 120.523 14.244Z" fill="#FF733C"/>
<path d="M112.085 14.244C113.053 14.244 113.817 14.496 114.377 15C114.937 15.504 115.217 16.264 115.217 17.28V18.3H111.125C111.141 18.644 111.269 18.928 111.509 19.152C111.757 19.376 112.113 19.488 112.577 19.488C112.993 19.488 113.373 19.448 113.717 19.368C114.061 19.288 114.417 19.16 114.785 18.984V20.628C114.465 20.796 114.113 20.92 113.729 21C113.353 21.08 112.877 21.12 112.301 21.12C111.629 21.12 111.029 21.004 110.501 20.772C109.981 20.532 109.569 20.16 109.265 19.656C108.961 19.152 108.809 18.508 108.809 17.724C108.809 16.924 108.945 16.268 109.217 15.756C109.497 15.244 109.881 14.864 110.369 14.616C110.865 14.368 111.437 14.244 112.085 14.244ZM112.169 15.804C111.897 15.804 111.669 15.888 111.485 16.056C111.309 16.224 111.205 16.492 111.173 16.86H113.141C113.133 16.564 113.045 16.316 112.877 16.116C112.717 15.908 112.481 15.804 112.169 15.804Z" fill="#FF733C"/>
<path d="M104.667 14.244C105.635 14.244 106.399 14.496 106.959 15C107.519 15.504 107.799 16.264 107.799 17.28V18.3H103.707C103.723 18.644 103.851 18.928 104.091 19.152C104.339 19.376 104.695 19.488 105.159 19.488C105.575 19.488 105.955 19.448 106.299 19.368C106.643 19.288 106.999 19.16 107.367 18.984V20.628C107.047 20.796 106.695 20.92 106.311 21C105.935 21.08 105.459 21.12 104.883 21.12C104.211 21.12 103.611 21.004 103.083 20.772C102.563 20.532 102.151 20.16 101.847 19.656C101.543 19.152 101.391 18.508 101.391 17.724C101.391 16.924 101.527 16.268 101.799 15.756C102.079 15.244 102.463 14.864 102.951 14.616C103.447 14.368 104.019 14.244 104.667 14.244ZM104.751 15.804C104.479 15.804 104.251 15.888 104.067 16.056C103.891 16.224 103.787 16.492 103.755 16.86H105.723C105.715 16.564 105.627 16.316 105.459 16.116C105.299 15.908 105.063 15.804 104.751 15.804Z" fill="#FF733C"/>
<path d="M97.7916 14.244C98.4796 14.244 99.0396 14.436 99.4716 14.82C99.9036 15.204 100.12 15.824 100.12 16.68V21H97.8276V17.376C97.8276 16.936 97.7636 16.604 97.6356 16.38C97.5076 16.156 97.3036 16.044 97.0236 16.044C96.5916 16.044 96.2996 16.22 96.1476 16.572C96.0036 16.924 95.9316 17.432 95.9316 18.096V21H93.6396V14.364H95.3676L95.6796 15.24H95.7636C95.9716 14.928 96.2436 14.684 96.5796 14.508C96.9236 14.332 97.3276 14.244 97.7916 14.244Z" fill="#FF733C"/>
<path d="M90.9013 11.688C91.2293 11.688 91.5133 11.756 91.7533 11.892C92.0013 12.028 92.1253 12.3 92.1253 12.708C92.1253 13.1 92.0013 13.368 91.7533 13.512C91.5133 13.648 91.2293 13.716 90.9013 13.716C90.5653 13.716 90.2773 13.648 90.0373 13.512C89.8053 13.368 89.6893 13.1 89.6893 12.708C89.6893 12.3 89.8053 12.028 90.0373 11.892C90.2773 11.756 90.5653 11.688 90.9013 11.688ZM92.0413 14.364V21H89.7493V14.364H92.0413Z" fill="#FF733C"/>
<path d="M84.1504 14.244C84.6144 14.244 84.9864 14.336 85.2664 14.52C85.5544 14.696 85.7864 14.916 85.9624 15.18H86.0104L86.1784 14.364H88.1584V21.012C88.1584 21.948 87.8664 22.66 87.2824 23.148C86.7064 23.636 85.8184 23.88 84.6184 23.88C84.0824 23.88 83.6104 23.852 83.2024 23.796C82.7944 23.74 82.4024 23.64 82.0264 23.496V21.588C82.4264 21.756 82.8064 21.88 83.1664 21.96C83.5264 22.048 83.9664 22.092 84.4864 22.092C85.4064 22.092 85.8664 21.764 85.8664 21.108V20.988C85.8664 20.756 85.8904 20.48 85.9384 20.16H85.8664C85.7144 20.424 85.4984 20.652 85.2184 20.844C84.9384 21.028 84.5704 21.12 84.1144 21.12C83.4104 21.12 82.8384 20.828 82.3984 20.244C81.9584 19.66 81.7384 18.808 81.7384 17.688C81.7384 16.568 81.9624 15.716 82.4104 15.132C82.8584 14.54 83.4384 14.244 84.1504 14.244ZM85.0144 16.02C84.3824 16.02 84.0664 16.588 84.0664 17.724C84.0664 18.3 84.1464 18.716 84.3064 18.972C84.4664 19.22 84.7144 19.344 85.0504 19.344C85.4264 19.344 85.6864 19.228 85.8304 18.996C85.9744 18.756 86.0464 18.4 86.0464 17.928V17.652C86.0464 17.132 85.9744 16.732 85.8304 16.452C85.6944 16.164 85.4224 16.02 85.0144 16.02Z" fill="#FF733C"/>
<path d="M78.1393 14.244C78.8273 14.244 79.3873 14.436 79.8193 14.82C80.2513 15.204 80.4673 15.824 80.4673 16.68V21H78.1753V17.376C78.1753 16.936 78.1113 16.604 77.9833 16.38C77.8553 16.156 77.6513 16.044 77.3713 16.044C76.9393 16.044 76.6473 16.22 76.4953 16.572C76.3513 16.924 76.2793 17.432 76.2793 18.096V21H73.9873V14.364H75.7153L76.0273 15.24H76.1113C76.3193 14.928 76.5913 14.684 76.9273 14.508C77.2713 14.332 77.6753 14.244 78.1393 14.244Z" fill="#FF733C"/>
<path d="M72.6214 21H67.5334V12.432H72.6214V14.292H69.8494V15.636H72.4174V17.496H69.8494V19.116H72.6214V21Z" fill="#FF733C"/>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@@ -0,0 +1,2 @@
sample:
filter: true

View File

@@ -0,0 +1,25 @@
<svg width="256" height="32" viewBox="0 0 256 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.3599 9.76624C10.2014 9.63414 10.0876 9.45694 10.0342 9.25865C9.98074 9.06037 9.99014 8.8506 10.0611 8.65779C10.1321 8.46498 10.2612 8.29845 10.431 8.18078C10.6008 8.06311 10.803 8 11.0102 8H15.99C16.0972 8 16.2 8.04216 16.2757 8.11722C16.3515 8.19227 16.3941 8.29407 16.3941 8.40021V14.793L10.3599 9.76624ZM23.4014 8H18.0385C17.9035 8 17.7739 8.05081 17.6784 8.14124C17.5829 8.23168 17.5293 8.35434 17.5293 8.48223V23.5178C17.5293 23.6457 17.5829 23.7683 17.6784 23.8588C17.7739 23.9492 17.9035 24 18.0385 24H22.0384C22.1735 24 22.303 23.9492 22.3985 23.8588C22.494 23.7683 22.5476 23.6457 22.5476 23.5178V15.3911L27.9868 23.7703C28.0323 23.8405 28.0961 23.8985 28.1721 23.9387C28.248 23.9789 28.3336 24 28.4206 24H33.9606C34.0956 24 34.2252 23.9492 34.3207 23.8588C34.4162 23.7683 34.4698 23.6457 34.4698 23.5178V8.48223C34.4698 8.4189 34.4566 8.3562 34.431 8.29769C34.4055 8.23918 34.3679 8.18602 34.3207 8.14124C34.2734 8.09646 34.2172 8.06094 34.1554 8.03671C34.0937 8.01247 34.0274 8 33.9606 8H29.8395C29.7044 8 29.5749 8.05081 29.4794 8.14124C29.3839 8.23168 29.3302 8.35434 29.3302 8.48223V16.695L23.8352 8.2297C23.7897 8.15951 23.7259 8.10154 23.6499 8.06133C23.574 8.02111 23.4884 8 23.4014 8ZM41.9657 22.7414C41.9122 22.5431 41.7985 22.3659 41.6399 22.2338L35.6058 17.207V23.5999C35.6058 23.6524 35.6162 23.7044 35.6366 23.753C35.6569 23.8016 35.6866 23.8457 35.7241 23.8828C35.7617 23.92 35.8062 23.9495 35.8552 23.9696C35.9043 23.9897 35.9568 24.0001 36.0099 24.0001H40.9897C41.1969 24.0001 41.3991 23.937 41.5689 23.8193C41.7386 23.7016 41.8678 23.5351 41.9387 23.3423C42.0097 23.1495 42.0191 22.9397 41.9657 22.7414Z" fill="#52B4E9"/>
<path d="M245.892 14.244C246.652 14.244 247.232 14.436 247.632 14.82C248.032 15.204 248.232 15.824 248.232 16.68V21H245.94V17.388C245.94 16.884 245.872 16.536 245.736 16.344C245.6 16.144 245.4 16.044 245.136 16.044C244.768 16.044 244.512 16.208 244.368 16.536C244.224 16.856 244.152 17.312 244.152 17.904V21H241.86V17.388C241.86 16.908 241.796 16.564 241.668 16.356C241.54 16.148 241.348 16.044 241.092 16.044C240.7 16.044 240.432 16.22 240.288 16.572C240.152 16.924 240.084 17.432 240.084 18.096V21H237.792V14.364H239.52L239.856 15.18H239.916C240.092 14.908 240.344 14.684 240.672 14.508C241.008 14.332 241.42 14.244 241.908 14.244C242.396 14.244 242.796 14.328 243.108 14.496C243.428 14.656 243.688 14.88 243.888 15.168H243.96C244.168 14.872 244.436 14.644 244.764 14.484C245.1 14.324 245.476 14.244 245.892 14.244Z" fill="#52B4E9"/>
<path d="M236.175 14.244C236.303 14.244 236.435 14.252 236.571 14.268C236.707 14.284 236.807 14.3 236.871 14.316L236.667 16.476C236.587 16.46 236.487 16.444 236.367 16.428C236.255 16.412 236.095 16.404 235.887 16.404C235.695 16.404 235.487 16.432 235.263 16.488C235.047 16.544 234.859 16.668 234.699 16.86C234.539 17.044 234.459 17.336 234.459 17.736V21H232.167V14.364H233.871L234.231 15.42H234.339C234.523 15.092 234.779 14.816 235.107 14.592C235.443 14.36 235.799 14.244 236.175 14.244Z" fill="#52B4E9"/>
<path d="M230.862 17.664C230.862 18.776 230.566 19.632 229.974 20.232C229.382 20.824 228.57 21.12 227.538 21.12C226.898 21.12 226.33 20.988 225.834 20.724C225.338 20.452 224.946 20.06 224.658 19.548C224.378 19.028 224.238 18.4 224.238 17.664C224.238 16.568 224.534 15.724 225.126 15.132C225.718 14.54 226.534 14.244 227.574 14.244C228.214 14.244 228.778 14.376 229.266 14.64C229.762 14.904 230.15 15.292 230.43 15.804C230.718 16.308 230.862 16.928 230.862 17.664ZM226.566 17.664C226.566 18.232 226.642 18.668 226.794 18.972C226.946 19.268 227.202 19.416 227.562 19.416C227.914 19.416 228.162 19.268 228.306 18.972C228.458 18.668 228.534 18.232 228.534 17.664C228.534 17.096 228.458 16.668 228.306 16.38C228.162 16.092 227.91 15.948 227.55 15.948C227.206 15.948 226.954 16.092 226.794 16.38C226.642 16.668 226.566 17.096 226.566 17.664Z" fill="#52B4E9"/>
<path d="M220.47 21H218.19V12.432H223.254V14.292H220.47V15.924H223.038V17.784H220.47V21Z" fill="#52B4E9"/>
<path d="M211.053 14.244C211.741 14.244 212.301 14.436 212.733 14.82C213.165 15.204 213.381 15.824 213.381 16.68V21H211.089V17.376C211.089 16.936 211.025 16.604 210.897 16.38C210.769 16.156 210.565 16.044 210.285 16.044C209.853 16.044 209.561 16.22 209.409 16.572C209.265 16.924 209.193 17.432 209.193 18.096V21H206.901V14.364H208.629L208.941 15.24H209.025C209.233 14.928 209.505 14.684 209.841 14.508C210.185 14.332 210.589 14.244 211.053 14.244Z" fill="#52B4E9"/>
<path d="M205.597 17.664C205.597 18.776 205.301 19.632 204.709 20.232C204.117 20.824 203.305 21.12 202.273 21.12C201.633 21.12 201.065 20.988 200.569 20.724C200.073 20.452 199.681 20.06 199.393 19.548C199.113 19.028 198.973 18.4 198.973 17.664C198.973 16.568 199.269 15.724 199.861 15.132C200.453 14.54 201.269 14.244 202.309 14.244C202.949 14.244 203.513 14.376 204.001 14.64C204.497 14.904 204.885 15.292 205.165 15.804C205.453 16.308 205.597 16.928 205.597 17.664ZM201.301 17.664C201.301 18.232 201.377 18.668 201.529 18.972C201.681 19.268 201.937 19.416 202.297 19.416C202.649 19.416 202.897 19.268 203.041 18.972C203.193 18.668 203.269 18.232 203.269 17.664C203.269 17.096 203.193 16.668 203.041 16.38C202.897 16.092 202.645 15.948 202.285 15.948C201.941 15.948 201.689 16.092 201.529 16.38C201.377 16.668 201.301 17.096 201.301 17.664Z" fill="#52B4E9"/>
<path d="M196.522 11.688C196.85 11.688 197.134 11.756 197.374 11.892C197.622 12.028 197.746 12.3 197.746 12.708C197.746 13.1 197.622 13.368 197.374 13.512C197.134 13.648 196.85 13.716 196.522 13.716C196.186 13.716 195.898 13.648 195.658 13.512C195.426 13.368 195.31 13.1 195.31 12.708C195.31 12.3 195.426 12.028 195.658 11.892C195.898 11.756 196.186 11.688 196.522 11.688ZM197.662 14.364V21H195.37V14.364H197.662Z" fill="#52B4E9"/>
<path d="M193.091 19.308C193.299 19.308 193.487 19.288 193.655 19.248C193.831 19.2 194.011 19.144 194.195 19.08V20.748C193.947 20.852 193.683 20.94 193.403 21.012C193.123 21.084 192.767 21.12 192.335 21.12C191.903 21.12 191.523 21.052 191.195 20.916C190.875 20.78 190.623 20.548 190.439 20.22C190.255 19.884 190.163 19.416 190.163 18.816V16.08H189.359V15.144L190.379 14.424L190.967 13.032H192.467V14.364H194.099V16.08H192.467V18.66C192.467 19.092 192.675 19.308 193.091 19.308Z" fill="#52B4E9"/>
<path d="M187.101 11.688C187.429 11.688 187.713 11.756 187.953 11.892C188.201 12.028 188.325 12.3 188.325 12.708C188.325 13.1 188.201 13.368 187.953 13.512C187.713 13.648 187.429 13.716 187.101 13.716C186.765 13.716 186.477 13.648 186.237 13.512C186.005 13.368 185.889 13.1 185.889 12.708C185.889 12.3 186.005 12.028 186.237 11.892C186.477 11.756 186.765 11.688 187.101 11.688ZM188.241 14.364V21H185.949V14.364H188.241Z" fill="#52B4E9"/>
<path d="M184.669 18.96C184.669 19.376 184.573 19.748 184.381 20.076C184.197 20.404 183.897 20.66 183.481 20.844C183.073 21.028 182.533 21.12 181.861 21.12C181.389 21.12 180.965 21.092 180.589 21.036C180.221 20.988 179.845 20.892 179.461 20.748V18.912C179.885 19.104 180.313 19.244 180.745 19.332C181.177 19.412 181.517 19.452 181.765 19.452C182.261 19.452 182.509 19.34 182.509 19.116C182.509 19.02 182.469 18.936 182.389 18.864C182.309 18.792 182.165 18.712 181.957 18.624C181.757 18.536 181.469 18.416 181.093 18.264C180.541 18.032 180.129 17.768 179.857 17.472C179.585 17.168 179.449 16.744 179.449 16.2C179.449 15.552 179.697 15.064 180.193 14.736C180.697 14.408 181.361 14.244 182.185 14.244C182.625 14.244 183.037 14.292 183.421 14.388C183.805 14.484 184.205 14.624 184.621 14.808L183.997 16.284C183.669 16.132 183.337 16.012 183.001 15.924C182.665 15.836 182.397 15.792 182.197 15.792C181.821 15.792 181.633 15.884 181.633 16.068C181.633 16.148 181.665 16.22 181.729 16.284C181.801 16.348 181.933 16.42 182.125 16.5C182.317 16.58 182.597 16.696 182.965 16.848C183.349 17 183.665 17.168 183.913 17.352C184.169 17.528 184.357 17.744 184.477 18C184.605 18.248 184.669 18.568 184.669 18.96Z" fill="#52B4E9"/>
<path d="M176.999 11.688C177.327 11.688 177.611 11.756 177.851 11.892C178.099 12.028 178.223 12.3 178.223 12.708C178.223 13.1 178.099 13.368 177.851 13.512C177.611 13.648 177.327 13.716 176.999 13.716C176.663 13.716 176.375 13.648 176.135 13.512C175.903 13.368 175.787 13.1 175.787 12.708C175.787 12.3 175.903 12.028 176.135 11.892C176.375 11.756 176.663 11.688 176.999 11.688ZM178.139 14.364V21H175.847V14.364H178.139Z" fill="#52B4E9"/>
<path d="M174.252 14.364V21H172.524L172.236 20.172H172.104C171.896 20.508 171.612 20.752 171.252 20.904C170.892 21.048 170.508 21.12 170.1 21.12C169.668 21.12 169.276 21.036 168.924 20.868C168.572 20.7 168.292 20.436 168.084 20.076C167.884 19.716 167.784 19.252 167.784 18.684V14.364H170.076V17.988C170.076 18.42 170.136 18.748 170.256 18.972C170.384 19.196 170.588 19.308 170.868 19.308C171.3 19.308 171.588 19.132 171.732 18.78C171.884 18.428 171.96 17.924 171.96 17.268V14.364H174.252Z" fill="#52B4E9"/>
<path d="M163.925 21.132C163.925 20.804 163.949 20.48 163.997 20.16H163.925C163.773 20.424 163.557 20.652 163.277 20.844C162.997 21.028 162.629 21.12 162.173 21.12C161.469 21.12 160.897 20.828 160.457 20.244C160.017 19.66 159.797 18.808 159.797 17.688C159.797 16.568 160.021 15.716 160.469 15.132C160.917 14.54 161.497 14.244 162.209 14.244C162.673 14.244 163.045 14.336 163.325 14.52C163.613 14.696 163.845 14.916 164.021 15.18H164.069L164.237 14.364H166.217V23.88H163.925V21.132ZM163.109 19.344C163.485 19.344 163.745 19.228 163.889 18.996C164.033 18.756 164.105 18.4 164.105 17.928V17.652C164.105 17.132 164.033 16.732 163.889 16.452C163.753 16.164 163.481 16.02 163.073 16.02C162.441 16.02 162.125 16.588 162.125 17.724C162.125 18.3 162.205 18.716 162.365 18.972C162.525 19.22 162.773 19.344 163.109 19.344Z" fill="#52B4E9"/>
<path d="M156.64 21.12C155.632 21.12 154.828 20.848 154.228 20.304C153.628 19.76 153.328 18.896 153.328 17.712C153.328 16.904 153.48 16.248 153.784 15.744C154.088 15.232 154.5 14.856 155.02 14.616C155.548 14.368 156.148 14.244 156.82 14.244C157.228 14.244 157.612 14.288 157.972 14.376C158.34 14.464 158.68 14.588 158.992 14.748L158.32 16.44C158.048 16.32 157.792 16.224 157.552 16.152C157.32 16.08 157.076 16.044 156.82 16.044C156.476 16.044 156.196 16.18 155.98 16.452C155.764 16.724 155.656 17.14 155.656 17.7C155.656 18.276 155.764 18.688 155.98 18.936C156.204 19.176 156.488 19.296 156.832 19.296C157.16 19.296 157.488 19.244 157.816 19.14C158.152 19.036 158.468 18.892 158.764 18.708V20.532C158.492 20.708 158.184 20.852 157.84 20.964C157.496 21.068 157.096 21.12 156.64 21.12Z" fill="#52B4E9"/>
<path d="M150.297 21L149.877 19.392H147.093L146.661 21H144.117L146.913 12.396H149.997L152.829 21H150.297ZM149.025 16.092C148.985 15.94 148.929 15.724 148.857 15.444C148.785 15.156 148.713 14.86 148.641 14.556C148.569 14.252 148.513 14.004 148.473 13.812C148.441 14.004 148.389 14.244 148.317 14.532C148.253 14.82 148.185 15.104 148.113 15.384C148.049 15.664 147.993 15.9 147.945 16.092L147.573 17.496H149.397L149.025 16.092Z" fill="#52B4E9"/>
<path d="M140.205 21H137.913V11.88H140.205V21Z" fill="#52B4E9"/>
<path d="M133.677 14.244C134.517 14.244 135.173 14.452 135.645 14.868C136.117 15.284 136.353 15.876 136.353 16.644V21H134.769L134.325 20.124H134.277C134.093 20.356 133.901 20.548 133.701 20.7C133.509 20.844 133.285 20.948 133.029 21.012C132.773 21.084 132.461 21.12 132.093 21.12C131.517 21.12 131.037 20.944 130.653 20.592C130.269 20.24 130.077 19.7 130.077 18.972C130.077 18.26 130.321 17.732 130.809 17.388C131.305 17.044 132.021 16.852 132.957 16.812L134.061 16.776V16.68C134.061 16.384 133.989 16.176 133.845 16.056C133.701 15.928 133.505 15.864 133.257 15.864C132.993 15.864 132.701 15.912 132.381 16.008C132.061 16.096 131.737 16.212 131.409 16.356L130.749 14.844C131.133 14.644 131.565 14.496 132.045 14.4C132.533 14.296 133.077 14.244 133.677 14.244ZM133.545 18.06C133.129 18.076 132.833 18.152 132.657 18.288C132.489 18.416 132.405 18.6 132.405 18.84C132.405 19.064 132.465 19.232 132.585 19.344C132.705 19.448 132.865 19.5 133.065 19.5C133.345 19.5 133.581 19.412 133.773 19.236C133.973 19.06 134.073 18.832 134.073 18.552V18.036L133.545 18.06Z" fill="#52B4E9"/>
<path d="M126.992 21.12C125.984 21.12 125.18 20.848 124.58 20.304C123.98 19.76 123.68 18.896 123.68 17.712C123.68 16.904 123.832 16.248 124.136 15.744C124.44 15.232 124.852 14.856 125.372 14.616C125.9 14.368 126.5 14.244 127.172 14.244C127.58 14.244 127.964 14.288 128.324 14.376C128.692 14.464 129.032 14.588 129.344 14.748L128.672 16.44C128.4 16.32 128.144 16.224 127.904 16.152C127.672 16.08 127.428 16.044 127.172 16.044C126.828 16.044 126.548 16.18 126.332 16.452C126.116 16.724 126.008 17.14 126.008 17.7C126.008 18.276 126.116 18.688 126.332 18.936C126.556 19.176 126.84 19.296 127.184 19.296C127.512 19.296 127.84 19.244 128.168 19.14C128.504 19.036 128.82 18.892 129.116 18.708V20.532C128.844 20.708 128.536 20.852 128.192 20.964C127.848 21.068 127.448 21.12 126.992 21.12Z" fill="#52B4E9"/>
<path d="M121.229 11.688C121.557 11.688 121.841 11.756 122.081 11.892C122.329 12.028 122.453 12.3 122.453 12.708C122.453 13.1 122.329 13.368 122.081 13.512C121.841 13.648 121.557 13.716 121.229 13.716C120.893 13.716 120.605 13.648 120.365 13.512C120.133 13.368 120.017 13.1 120.017 12.708C120.017 12.3 120.133 12.028 120.365 11.892C120.605 11.756 120.893 11.688 121.229 11.688ZM122.369 14.364V21H120.077V14.364H122.369Z" fill="#52B4E9"/>
<path d="M114.418 21.12C113.738 21.12 113.174 20.828 112.726 20.244C112.286 19.66 112.066 18.808 112.066 17.688C112.066 16.552 112.29 15.696 112.738 15.12C113.194 14.536 113.782 14.244 114.502 14.244C114.95 14.244 115.306 14.336 115.57 14.52C115.842 14.704 116.066 14.936 116.242 15.216H116.29C116.258 15.048 116.23 14.816 116.206 14.52C116.19 14.224 116.182 13.936 116.182 13.656V11.88H118.486V21H116.758L116.266 20.16H116.182C116.022 20.424 115.802 20.652 115.522 20.844C115.242 21.028 114.874 21.12 114.418 21.12ZM115.354 19.308C115.722 19.308 115.982 19.192 116.134 18.96C116.286 18.728 116.366 18.372 116.374 17.892V17.712C116.374 17.192 116.298 16.792 116.146 16.512C116.002 16.232 115.73 16.092 115.33 16.092C115.058 16.092 114.83 16.224 114.646 16.488C114.47 16.752 114.382 17.164 114.382 17.724C114.382 18.276 114.47 18.68 114.646 18.936C114.83 19.184 115.066 19.308 115.354 19.308Z" fill="#52B4E9"/>
<path d="M107.925 14.244C108.893 14.244 109.657 14.496 110.217 15C110.777 15.504 111.057 16.264 111.057 17.28V18.3H106.965C106.981 18.644 107.109 18.928 107.349 19.152C107.597 19.376 107.953 19.488 108.417 19.488C108.833 19.488 109.213 19.448 109.557 19.368C109.901 19.288 110.257 19.16 110.625 18.984V20.628C110.305 20.796 109.953 20.92 109.569 21C109.193 21.08 108.717 21.12 108.141 21.12C107.469 21.12 106.869 21.004 106.341 20.772C105.821 20.532 105.409 20.16 105.105 19.656C104.801 19.152 104.649 18.508 104.649 17.724C104.649 16.924 104.785 16.268 105.057 15.756C105.337 15.244 105.721 14.864 106.209 14.616C106.705 14.368 107.277 14.244 107.925 14.244ZM108.009 15.804C107.737 15.804 107.509 15.888 107.325 16.056C107.149 16.224 107.045 16.492 107.013 16.86H108.981C108.973 16.564 108.885 16.316 108.717 16.116C108.557 15.908 108.321 15.804 108.009 15.804Z" fill="#52B4E9"/>
<path d="M97.199 21L95.447 14.832H95.399C95.415 14.992 95.431 15.208 95.447 15.48C95.463 15.752 95.479 16.048 95.495 16.368C95.511 16.68 95.519 16.984 95.519 17.28V21H93.467V12.432H96.551L98.339 18.516H98.387L100.139 12.432H103.223V21H101.099V17.244C101.099 16.972 101.103 16.684 101.111 16.38C101.119 16.068 101.131 15.776 101.147 15.504C101.163 15.224 101.175 15.004 101.183 14.844H101.135L99.407 21H97.199Z" fill="#52B4E9"/>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@@ -0,0 +1,2 @@
sample:
filter: true

View File

@@ -0,0 +1,26 @@
<svg width="256" height="32" viewBox="0 0 256 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.3599 9.76624C10.2014 9.63414 10.0876 9.45694 10.0342 9.25865C9.98074 9.06037 9.99014 8.8506 10.0611 8.65779C10.1321 8.46498 10.2612 8.29845 10.431 8.18078C10.6008 8.06311 10.803 8 11.0102 8H15.99C16.0972 8 16.2 8.04216 16.2757 8.11722C16.3515 8.19227 16.3941 8.29407 16.3941 8.40021V14.793L10.3599 9.76624ZM23.4014 8H18.0385C17.9035 8 17.7739 8.05081 17.6784 8.14124C17.5829 8.23168 17.5293 8.35434 17.5293 8.48223V23.5178C17.5293 23.6457 17.5829 23.7683 17.6784 23.8588C17.7739 23.9492 17.9035 24 18.0385 24H22.0384C22.1735 24 22.303 23.9492 22.3985 23.8588C22.494 23.7683 22.5476 23.6457 22.5476 23.5178V15.3911L27.9868 23.7703C28.0323 23.8405 28.0961 23.8985 28.1721 23.9387C28.248 23.9789 28.3336 24 28.4206 24H33.9606C34.0956 24 34.2252 23.9492 34.3207 23.8588C34.4162 23.7683 34.4698 23.6457 34.4698 23.5178V8.48223C34.4698 8.4189 34.4566 8.3562 34.431 8.29769C34.4055 8.23918 34.3679 8.18602 34.3207 8.14124C34.2734 8.09646 34.2172 8.06094 34.1554 8.03671C34.0937 8.01247 34.0274 8 33.9606 8H29.8395C29.7044 8 29.5749 8.05081 29.4794 8.14124C29.3839 8.23168 29.3302 8.35434 29.3302 8.48223V16.695L23.8352 8.2297C23.7897 8.15951 23.7259 8.10154 23.6499 8.06133C23.574 8.02111 23.4884 8 23.4014 8ZM41.9657 22.7414C41.9122 22.5431 41.7985 22.3659 41.6399 22.2338L35.6058 17.207V23.5999C35.6058 23.6524 35.6162 23.7044 35.6366 23.753C35.6569 23.8016 35.6866 23.8457 35.7241 23.8828C35.7617 23.92 35.8062 23.9495 35.8552 23.9696C35.9043 23.9897 35.9568 24.0001 36.0099 24.0001H40.9897C41.1969 24.0001 41.3991 23.937 41.5689 23.8193C41.7386 23.7016 41.8678 23.5351 41.9387 23.3423C42.0097 23.1495 42.0191 22.9397 41.9657 22.7414Z" fill="#D381C9"/>
<path d="M245.892 14.244C246.652 14.244 247.232 14.436 247.632 14.82C248.032 15.204 248.232 15.824 248.232 16.68V21H245.94V17.388C245.94 16.884 245.872 16.536 245.736 16.344C245.6 16.144 245.4 16.044 245.136 16.044C244.768 16.044 244.512 16.208 244.368 16.536C244.224 16.856 244.152 17.312 244.152 17.904V21H241.86V17.388C241.86 16.908 241.796 16.564 241.668 16.356C241.54 16.148 241.348 16.044 241.092 16.044C240.7 16.044 240.432 16.22 240.288 16.572C240.152 16.924 240.084 17.432 240.084 18.096V21H237.792V14.364H239.52L239.856 15.18H239.916C240.092 14.908 240.344 14.684 240.672 14.508C241.008 14.332 241.42 14.244 241.908 14.244C242.396 14.244 242.796 14.328 243.108 14.496C243.428 14.656 243.688 14.88 243.888 15.168H243.96C244.168 14.872 244.436 14.644 244.764 14.484C245.1 14.324 245.476 14.244 245.892 14.244Z" fill="#D381C9"/>
<path d="M236.175 14.244C236.303 14.244 236.435 14.252 236.571 14.268C236.707 14.284 236.807 14.3 236.871 14.316L236.667 16.476C236.587 16.46 236.487 16.444 236.367 16.428C236.255 16.412 236.095 16.404 235.887 16.404C235.695 16.404 235.487 16.432 235.263 16.488C235.047 16.544 234.859 16.668 234.699 16.86C234.539 17.044 234.459 17.336 234.459 17.736V21H232.167V14.364H233.871L234.231 15.42H234.339C234.523 15.092 234.779 14.816 235.107 14.592C235.443 14.36 235.799 14.244 236.175 14.244Z" fill="#D381C9"/>
<path d="M230.862 17.664C230.862 18.776 230.566 19.632 229.974 20.232C229.382 20.824 228.57 21.12 227.538 21.12C226.898 21.12 226.33 20.988 225.834 20.724C225.338 20.452 224.946 20.06 224.658 19.548C224.378 19.028 224.238 18.4 224.238 17.664C224.238 16.568 224.534 15.724 225.126 15.132C225.718 14.54 226.534 14.244 227.574 14.244C228.214 14.244 228.778 14.376 229.266 14.64C229.762 14.904 230.15 15.292 230.43 15.804C230.718 16.308 230.862 16.928 230.862 17.664ZM226.566 17.664C226.566 18.232 226.642 18.668 226.794 18.972C226.946 19.268 227.202 19.416 227.562 19.416C227.914 19.416 228.162 19.268 228.306 18.972C228.458 18.668 228.534 18.232 228.534 17.664C228.534 17.096 228.458 16.668 228.306 16.38C228.162 16.092 227.91 15.948 227.55 15.948C227.206 15.948 226.954 16.092 226.794 16.38C226.642 16.668 226.566 17.096 226.566 17.664Z" fill="#D381C9"/>
<path d="M220.47 21H218.19V12.432H223.254V14.292H220.47V15.924H223.038V17.784H220.47V21Z" fill="#D381C9"/>
<path d="M211.053 14.244C211.741 14.244 212.301 14.436 212.733 14.82C213.165 15.204 213.381 15.824 213.381 16.68V21H211.089V17.376C211.089 16.936 211.025 16.604 210.897 16.38C210.769 16.156 210.565 16.044 210.285 16.044C209.853 16.044 209.561 16.22 209.409 16.572C209.265 16.924 209.193 17.432 209.193 18.096V21H206.901V14.364H208.629L208.941 15.24H209.025C209.233 14.928 209.505 14.684 209.841 14.508C210.185 14.332 210.589 14.244 211.053 14.244Z" fill="#D381C9"/>
<path d="M205.597 17.664C205.597 18.776 205.301 19.632 204.709 20.232C204.117 20.824 203.305 21.12 202.273 21.12C201.633 21.12 201.065 20.988 200.569 20.724C200.073 20.452 199.681 20.06 199.393 19.548C199.113 19.028 198.973 18.4 198.973 17.664C198.973 16.568 199.269 15.724 199.861 15.132C200.453 14.54 201.269 14.244 202.309 14.244C202.949 14.244 203.513 14.376 204.001 14.64C204.497 14.904 204.885 15.292 205.165 15.804C205.453 16.308 205.597 16.928 205.597 17.664ZM201.301 17.664C201.301 18.232 201.377 18.668 201.529 18.972C201.681 19.268 201.937 19.416 202.297 19.416C202.649 19.416 202.897 19.268 203.041 18.972C203.193 18.668 203.269 18.232 203.269 17.664C203.269 17.096 203.193 16.668 203.041 16.38C202.897 16.092 202.645 15.948 202.285 15.948C201.941 15.948 201.689 16.092 201.529 16.38C201.377 16.668 201.301 17.096 201.301 17.664Z" fill="#D381C9"/>
<path d="M196.522 11.688C196.85 11.688 197.134 11.756 197.374 11.892C197.622 12.028 197.746 12.3 197.746 12.708C197.746 13.1 197.622 13.368 197.374 13.512C197.134 13.648 196.85 13.716 196.522 13.716C196.186 13.716 195.898 13.648 195.658 13.512C195.426 13.368 195.31 13.1 195.31 12.708C195.31 12.3 195.426 12.028 195.658 11.892C195.898 11.756 196.186 11.688 196.522 11.688ZM197.662 14.364V21H195.37V14.364H197.662Z" fill="#D381C9"/>
<path d="M193.091 19.308C193.299 19.308 193.487 19.288 193.655 19.248C193.831 19.2 194.011 19.144 194.195 19.08V20.748C193.947 20.852 193.683 20.94 193.403 21.012C193.123 21.084 192.767 21.12 192.335 21.12C191.903 21.12 191.523 21.052 191.195 20.916C190.875 20.78 190.623 20.548 190.439 20.22C190.255 19.884 190.163 19.416 190.163 18.816V16.08H189.359V15.144L190.379 14.424L190.967 13.032H192.467V14.364H194.099V16.08H192.467V18.66C192.467 19.092 192.675 19.308 193.091 19.308Z" fill="#D381C9"/>
<path d="M187.101 11.688C187.429 11.688 187.713 11.756 187.953 11.892C188.201 12.028 188.325 12.3 188.325 12.708C188.325 13.1 188.201 13.368 187.953 13.512C187.713 13.648 187.429 13.716 187.101 13.716C186.765 13.716 186.477 13.648 186.237 13.512C186.005 13.368 185.889 13.1 185.889 12.708C185.889 12.3 186.005 12.028 186.237 11.892C186.477 11.756 186.765 11.688 187.101 11.688ZM188.241 14.364V21H185.949V14.364H188.241Z" fill="#D381C9"/>
<path d="M184.669 18.96C184.669 19.376 184.573 19.748 184.381 20.076C184.197 20.404 183.897 20.66 183.481 20.844C183.073 21.028 182.533 21.12 181.861 21.12C181.389 21.12 180.965 21.092 180.589 21.036C180.221 20.988 179.845 20.892 179.461 20.748V18.912C179.885 19.104 180.313 19.244 180.745 19.332C181.177 19.412 181.517 19.452 181.765 19.452C182.261 19.452 182.509 19.34 182.509 19.116C182.509 19.02 182.469 18.936 182.389 18.864C182.309 18.792 182.165 18.712 181.957 18.624C181.757 18.536 181.469 18.416 181.093 18.264C180.541 18.032 180.129 17.768 179.857 17.472C179.585 17.168 179.449 16.744 179.449 16.2C179.449 15.552 179.697 15.064 180.193 14.736C180.697 14.408 181.361 14.244 182.185 14.244C182.625 14.244 183.037 14.292 183.421 14.388C183.805 14.484 184.205 14.624 184.621 14.808L183.997 16.284C183.669 16.132 183.337 16.012 183.001 15.924C182.665 15.836 182.397 15.792 182.197 15.792C181.821 15.792 181.633 15.884 181.633 16.068C181.633 16.148 181.665 16.22 181.729 16.284C181.801 16.348 181.933 16.42 182.125 16.5C182.317 16.58 182.597 16.696 182.965 16.848C183.349 17 183.665 17.168 183.913 17.352C184.169 17.528 184.357 17.744 184.477 18C184.605 18.248 184.669 18.568 184.669 18.96Z" fill="#D381C9"/>
<path d="M176.999 11.688C177.327 11.688 177.611 11.756 177.851 11.892C178.099 12.028 178.223 12.3 178.223 12.708C178.223 13.1 178.099 13.368 177.851 13.512C177.611 13.648 177.327 13.716 176.999 13.716C176.663 13.716 176.375 13.648 176.135 13.512C175.903 13.368 175.787 13.1 175.787 12.708C175.787 12.3 175.903 12.028 176.135 11.892C176.375 11.756 176.663 11.688 176.999 11.688ZM178.139 14.364V21H175.847V14.364H178.139Z" fill="#D381C9"/>
<path d="M174.252 14.364V21H172.524L172.236 20.172H172.104C171.896 20.508 171.612 20.752 171.252 20.904C170.892 21.048 170.508 21.12 170.1 21.12C169.668 21.12 169.276 21.036 168.924 20.868C168.572 20.7 168.292 20.436 168.084 20.076C167.884 19.716 167.784 19.252 167.784 18.684V14.364H170.076V17.988C170.076 18.42 170.136 18.748 170.256 18.972C170.384 19.196 170.588 19.308 170.868 19.308C171.3 19.308 171.588 19.132 171.732 18.78C171.884 18.428 171.96 17.924 171.96 17.268V14.364H174.252Z" fill="#D381C9"/>
<path d="M163.925 21.132C163.925 20.804 163.949 20.48 163.997 20.16H163.925C163.773 20.424 163.557 20.652 163.277 20.844C162.997 21.028 162.629 21.12 162.173 21.12C161.469 21.12 160.897 20.828 160.457 20.244C160.017 19.66 159.797 18.808 159.797 17.688C159.797 16.568 160.021 15.716 160.469 15.132C160.917 14.54 161.497 14.244 162.209 14.244C162.673 14.244 163.045 14.336 163.325 14.52C163.613 14.696 163.845 14.916 164.021 15.18H164.069L164.237 14.364H166.217V23.88H163.925V21.132ZM163.109 19.344C163.485 19.344 163.745 19.228 163.889 18.996C164.033 18.756 164.105 18.4 164.105 17.928V17.652C164.105 17.132 164.033 16.732 163.889 16.452C163.753 16.164 163.481 16.02 163.073 16.02C162.441 16.02 162.125 16.588 162.125 17.724C162.125 18.3 162.205 18.716 162.365 18.972C162.525 19.22 162.773 19.344 163.109 19.344Z" fill="#D381C9"/>
<path d="M156.64 21.12C155.632 21.12 154.828 20.848 154.228 20.304C153.628 19.76 153.328 18.896 153.328 17.712C153.328 16.904 153.48 16.248 153.784 15.744C154.088 15.232 154.5 14.856 155.02 14.616C155.548 14.368 156.148 14.244 156.82 14.244C157.228 14.244 157.612 14.288 157.972 14.376C158.34 14.464 158.68 14.588 158.992 14.748L158.32 16.44C158.048 16.32 157.792 16.224 157.552 16.152C157.32 16.08 157.076 16.044 156.82 16.044C156.476 16.044 156.196 16.18 155.98 16.452C155.764 16.724 155.656 17.14 155.656 17.7C155.656 18.276 155.764 18.688 155.98 18.936C156.204 19.176 156.488 19.296 156.832 19.296C157.16 19.296 157.488 19.244 157.816 19.14C158.152 19.036 158.468 18.892 158.764 18.708V20.532C158.492 20.708 158.184 20.852 157.84 20.964C157.496 21.068 157.096 21.12 156.64 21.12Z" fill="#D381C9"/>
<path d="M150.297 21L149.877 19.392H147.093L146.661 21H144.117L146.913 12.396H149.997L152.829 21H150.297ZM149.025 16.092C148.985 15.94 148.929 15.724 148.857 15.444C148.785 15.156 148.713 14.86 148.641 14.556C148.569 14.252 148.513 14.004 148.473 13.812C148.441 14.004 148.389 14.244 148.317 14.532C148.253 14.82 148.185 15.104 148.113 15.384C148.049 15.664 147.993 15.9 147.945 16.092L147.573 17.496H149.397L149.025 16.092Z" fill="#D381C9"/>
<path d="M136.045 13.176C136.045 13.664 136.033 14.076 136.009 14.412C135.985 14.748 135.965 15.004 135.949 15.18H136.057C136.273 14.836 136.533 14.596 136.837 14.46C137.141 14.316 137.489 14.244 137.881 14.244C138.321 14.244 138.717 14.328 139.069 14.496C139.421 14.664 139.701 14.928 139.909 15.288C140.125 15.64 140.233 16.104 140.233 16.68V21H137.929V17.376C137.929 16.488 137.665 16.044 137.137 16.044C136.721 16.044 136.433 16.22 136.273 16.572C136.121 16.924 136.045 17.428 136.045 18.084V21H133.753V11.88H136.045V13.176Z" fill="#D381C9"/>
<path d="M130.308 21.12C129.3 21.12 128.496 20.848 127.896 20.304C127.296 19.76 126.996 18.896 126.996 17.712C126.996 16.904 127.148 16.248 127.452 15.744C127.756 15.232 128.168 14.856 128.688 14.616C129.216 14.368 129.816 14.244 130.488 14.244C130.896 14.244 131.28 14.288 131.64 14.376C132.008 14.464 132.348 14.588 132.66 14.748L131.988 16.44C131.716 16.32 131.46 16.224 131.22 16.152C130.988 16.08 130.744 16.044 130.488 16.044C130.144 16.044 129.864 16.18 129.648 16.452C129.432 16.724 129.324 17.14 129.324 17.7C129.324 18.276 129.432 18.688 129.648 18.936C129.872 19.176 130.156 19.296 130.5 19.296C130.828 19.296 131.156 19.244 131.484 19.14C131.82 19.036 132.136 18.892 132.432 18.708V20.532C132.16 20.708 131.852 20.852 131.508 20.964C131.164 21.068 130.764 21.12 130.308 21.12Z" fill="#D381C9"/>
<path d="M125.902 14.244C126.03 14.244 126.162 14.252 126.298 14.268C126.434 14.284 126.534 14.3 126.598 14.316L126.394 16.476C126.314 16.46 126.214 16.444 126.094 16.428C125.982 16.412 125.822 16.404 125.614 16.404C125.422 16.404 125.214 16.432 124.99 16.488C124.774 16.544 124.586 16.668 124.426 16.86C124.266 17.044 124.186 17.336 124.186 17.736V21H121.894V14.364H123.598L123.958 15.42H124.066C124.25 15.092 124.506 14.816 124.834 14.592C125.17 14.36 125.526 14.244 125.902 14.244Z" fill="#D381C9"/>
<path d="M117.657 14.244C118.497 14.244 119.153 14.452 119.625 14.868C120.097 15.284 120.333 15.876 120.333 16.644V21H118.749L118.305 20.124H118.257C118.073 20.356 117.881 20.548 117.681 20.7C117.489 20.844 117.265 20.948 117.009 21.012C116.753 21.084 116.441 21.12 116.073 21.12C115.497 21.12 115.017 20.944 114.633 20.592C114.249 20.24 114.057 19.7 114.057 18.972C114.057 18.26 114.301 17.732 114.789 17.388C115.285 17.044 116.001 16.852 116.937 16.812L118.041 16.776V16.68C118.041 16.384 117.969 16.176 117.825 16.056C117.681 15.928 117.485 15.864 117.237 15.864C116.973 15.864 116.681 15.912 116.361 16.008C116.041 16.096 115.717 16.212 115.389 16.356L114.729 14.844C115.113 14.644 115.545 14.496 116.025 14.4C116.513 14.296 117.057 14.244 117.657 14.244ZM117.525 18.06C117.109 18.076 116.813 18.152 116.637 18.288C116.469 18.416 116.385 18.6 116.385 18.84C116.385 19.064 116.445 19.232 116.565 19.344C116.685 19.448 116.845 19.5 117.045 19.5C117.325 19.5 117.561 19.412 117.753 19.236C117.953 19.06 118.053 18.832 118.053 18.552V18.036L117.525 18.06Z" fill="#D381C9"/>
<path d="M109.987 14.244C110.955 14.244 111.719 14.496 112.279 15C112.839 15.504 113.119 16.264 113.119 17.28V18.3H109.027C109.043 18.644 109.171 18.928 109.411 19.152C109.659 19.376 110.015 19.488 110.479 19.488C110.895 19.488 111.275 19.448 111.619 19.368C111.963 19.288 112.319 19.16 112.687 18.984V20.628C112.367 20.796 112.015 20.92 111.631 21C111.255 21.08 110.779 21.12 110.203 21.12C109.531 21.12 108.931 21.004 108.403 20.772C107.883 20.532 107.471 20.16 107.167 19.656C106.863 19.152 106.711 18.508 106.711 17.724C106.711 16.924 106.847 16.268 107.119 15.756C107.399 15.244 107.783 14.864 108.271 14.616C108.767 14.368 109.339 14.244 109.987 14.244ZM110.071 15.804C109.799 15.804 109.571 15.888 109.387 16.056C109.211 16.224 109.107 16.492 109.075 16.86H111.043C111.035 16.564 110.947 16.316 110.779 16.116C110.619 15.908 110.383 15.804 110.071 15.804Z" fill="#D381C9"/>
<path d="M105.732 18.96C105.732 19.376 105.636 19.748 105.444 20.076C105.26 20.404 104.96 20.66 104.544 20.844C104.136 21.028 103.596 21.12 102.924 21.12C102.452 21.12 102.028 21.092 101.652 21.036C101.284 20.988 100.908 20.892 100.524 20.748V18.912C100.948 19.104 101.376 19.244 101.808 19.332C102.24 19.412 102.58 19.452 102.828 19.452C103.324 19.452 103.572 19.34 103.572 19.116C103.572 19.02 103.532 18.936 103.452 18.864C103.372 18.792 103.228 18.712 103.02 18.624C102.82 18.536 102.532 18.416 102.156 18.264C101.604 18.032 101.192 17.768 100.92 17.472C100.648 17.168 100.512 16.744 100.512 16.2C100.512 15.552 100.76 15.064 101.256 14.736C101.76 14.408 102.424 14.244 103.248 14.244C103.688 14.244 104.1 14.292 104.484 14.388C104.868 14.484 105.268 14.624 105.684 14.808L105.06 16.284C104.732 16.132 104.4 16.012 104.064 15.924C103.728 15.836 103.46 15.792 103.26 15.792C102.884 15.792 102.696 15.884 102.696 16.068C102.696 16.148 102.728 16.22 102.792 16.284C102.864 16.348 102.996 16.42 103.188 16.5C103.38 16.58 103.66 16.696 104.028 16.848C104.412 17 104.728 17.168 104.976 17.352C105.232 17.528 105.42 17.744 105.54 18C105.668 18.248 105.732 18.568 105.732 18.96Z" fill="#D381C9"/>
<path d="M96.3698 14.244C97.3378 14.244 98.1018 14.496 98.6618 15C99.2218 15.504 99.5018 16.264 99.5018 17.28V18.3H95.4098C95.4258 18.644 95.5538 18.928 95.7938 19.152C96.0418 19.376 96.3978 19.488 96.8618 19.488C97.2778 19.488 97.6578 19.448 98.0018 19.368C98.3458 19.288 98.7018 19.16 99.0698 18.984V20.628C98.7498 20.796 98.3978 20.92 98.0138 21C97.6378 21.08 97.1618 21.12 96.5858 21.12C95.9138 21.12 95.3138 21.004 94.7858 20.772C94.2658 20.532 93.8538 20.16 93.5498 19.656C93.2458 19.152 93.0938 18.508 93.0938 17.724C93.0938 16.924 93.2298 16.268 93.5018 15.756C93.7818 15.244 94.1658 14.864 94.6538 14.616C95.1498 14.368 95.7218 14.244 96.3698 14.244ZM96.4538 15.804C96.1818 15.804 95.9538 15.888 95.7698 16.056C95.5938 16.224 95.4898 16.492 95.4578 16.86H97.4258C97.4178 16.564 97.3298 16.316 97.1618 16.116C97.0018 15.908 96.7658 15.804 96.4538 15.804Z" fill="#D381C9"/>
<path d="M88.2008 12.432C90.5288 12.432 91.6928 13.276 91.6928 14.964C91.6928 15.484 91.5608 15.936 91.2968 16.32C91.0408 16.696 90.6888 17.012 90.2408 17.268L92.7368 21H90.1088L88.2968 17.88H87.7088V21H85.3928V12.432H88.2008ZM88.1648 14.184H87.7088V16.14H88.1408C88.4928 16.14 88.7808 16.064 89.0048 15.912C89.2368 15.752 89.3528 15.472 89.3528 15.072C89.3528 14.792 89.2608 14.576 89.0768 14.424C88.8928 14.264 88.5888 14.184 88.1648 14.184Z" fill="#D381C9"/>
</svg>

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@@ -0,0 +1,2 @@
sample:
filter: true

View File

@@ -0,0 +1,26 @@
<svg width="256" height="32" viewBox="0 0 256 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.3599 9.76624C10.2014 9.63414 10.0876 9.45694 10.0342 9.25865C9.98074 9.06037 9.99014 8.8506 10.0611 8.65779C10.1321 8.46498 10.2612 8.29845 10.431 8.18078C10.6008 8.06311 10.803 8 11.0102 8H15.99C16.0972 8 16.2 8.04216 16.2757 8.11722C16.3515 8.19227 16.3941 8.29407 16.3941 8.40021V14.793L10.3599 9.76624ZM23.4014 8H18.0385C17.9035 8 17.7739 8.05081 17.6784 8.14124C17.5829 8.23168 17.5293 8.35434 17.5293 8.48223V23.5178C17.5293 23.6457 17.5829 23.7683 17.6784 23.8588C17.7739 23.9492 17.9035 24 18.0385 24H22.0384C22.1735 24 22.303 23.9492 22.3985 23.8588C22.494 23.7683 22.5476 23.6457 22.5476 23.5178V15.3911L27.9868 23.7703C28.0323 23.8405 28.0961 23.8985 28.1721 23.9387C28.248 23.9789 28.3336 24 28.4206 24H33.9606C34.0956 24 34.2252 23.9492 34.3207 23.8588C34.4162 23.7683 34.4698 23.6457 34.4698 23.5178V8.48223C34.4698 8.4189 34.4566 8.3562 34.431 8.29769C34.4055 8.23918 34.3679 8.18602 34.3207 8.14124C34.2734 8.09646 34.2172 8.06094 34.1554 8.03671C34.0937 8.01247 34.0274 8 33.9606 8H29.8395C29.7044 8 29.5749 8.05081 29.4794 8.14124C29.3839 8.23168 29.3302 8.35434 29.3302 8.48223V16.695L23.8352 8.2297C23.7897 8.15951 23.7259 8.10154 23.6499 8.06133C23.574 8.02111 23.4884 8 23.4014 8ZM41.9657 22.7414C41.9122 22.5431 41.7985 22.3659 41.6399 22.2338L35.6058 17.207V23.5999C35.6058 23.6524 35.6162 23.7044 35.6366 23.753C35.6569 23.8016 35.6866 23.8457 35.7241 23.8828C35.7617 23.92 35.8062 23.9495 35.8552 23.9696C35.9043 23.9897 35.9568 24.0001 36.0099 24.0001H40.9897C41.1969 24.0001 41.3991 23.937 41.5689 23.8193C41.7386 23.7016 41.8678 23.5351 41.9387 23.3423C42.0097 23.1495 42.0191 22.9397 41.9657 22.7414Z" fill="#DE3A3A"/>
<path d="M245.892 14.244C246.652 14.244 247.232 14.436 247.632 14.82C248.032 15.204 248.232 15.824 248.232 16.68V21H245.94V17.388C245.94 16.884 245.872 16.536 245.736 16.344C245.6 16.144 245.4 16.044 245.136 16.044C244.768 16.044 244.512 16.208 244.368 16.536C244.224 16.856 244.152 17.312 244.152 17.904V21H241.86V17.388C241.86 16.908 241.796 16.564 241.668 16.356C241.54 16.148 241.348 16.044 241.092 16.044C240.7 16.044 240.432 16.22 240.288 16.572C240.152 16.924 240.084 17.432 240.084 18.096V21H237.792V14.364H239.52L239.856 15.18H239.916C240.092 14.908 240.344 14.684 240.672 14.508C241.008 14.332 241.42 14.244 241.908 14.244C242.396 14.244 242.796 14.328 243.108 14.496C243.428 14.656 243.688 14.88 243.888 15.168H243.96C244.168 14.872 244.436 14.644 244.764 14.484C245.1 14.324 245.476 14.244 245.892 14.244Z" fill="#DE3A3A"/>
<path d="M236.175 14.244C236.303 14.244 236.435 14.252 236.571 14.268C236.707 14.284 236.807 14.3 236.871 14.316L236.667 16.476C236.587 16.46 236.487 16.444 236.367 16.428C236.255 16.412 236.095 16.404 235.887 16.404C235.695 16.404 235.487 16.432 235.263 16.488C235.047 16.544 234.859 16.668 234.699 16.86C234.539 17.044 234.459 17.336 234.459 17.736V21H232.167V14.364H233.871L234.231 15.42H234.339C234.523 15.092 234.779 14.816 235.107 14.592C235.443 14.36 235.799 14.244 236.175 14.244Z" fill="#DE3A3A"/>
<path d="M230.862 17.664C230.862 18.776 230.566 19.632 229.974 20.232C229.382 20.824 228.57 21.12 227.538 21.12C226.898 21.12 226.33 20.988 225.834 20.724C225.338 20.452 224.946 20.06 224.658 19.548C224.378 19.028 224.238 18.4 224.238 17.664C224.238 16.568 224.534 15.724 225.126 15.132C225.718 14.54 226.534 14.244 227.574 14.244C228.214 14.244 228.778 14.376 229.266 14.64C229.762 14.904 230.15 15.292 230.43 15.804C230.718 16.308 230.862 16.928 230.862 17.664ZM226.566 17.664C226.566 18.232 226.642 18.668 226.794 18.972C226.946 19.268 227.202 19.416 227.562 19.416C227.914 19.416 228.162 19.268 228.306 18.972C228.458 18.668 228.534 18.232 228.534 17.664C228.534 17.096 228.458 16.668 228.306 16.38C228.162 16.092 227.91 15.948 227.55 15.948C227.206 15.948 226.954 16.092 226.794 16.38C226.642 16.668 226.566 17.096 226.566 17.664Z" fill="#DE3A3A"/>
<path d="M220.47 21H218.19V12.432H223.254V14.292H220.47V15.924H223.038V17.784H220.47V21Z" fill="#DE3A3A"/>
<path d="M211.053 14.244C211.741 14.244 212.301 14.436 212.733 14.82C213.165 15.204 213.381 15.824 213.381 16.68V21H211.089V17.376C211.089 16.936 211.025 16.604 210.897 16.38C210.769 16.156 210.565 16.044 210.285 16.044C209.853 16.044 209.561 16.22 209.409 16.572C209.265 16.924 209.193 17.432 209.193 18.096V21H206.901V14.364H208.629L208.941 15.24H209.025C209.233 14.928 209.505 14.684 209.841 14.508C210.185 14.332 210.589 14.244 211.053 14.244Z" fill="#DE3A3A"/>
<path d="M205.597 17.664C205.597 18.776 205.301 19.632 204.709 20.232C204.117 20.824 203.305 21.12 202.273 21.12C201.633 21.12 201.065 20.988 200.569 20.724C200.073 20.452 199.681 20.06 199.393 19.548C199.113 19.028 198.973 18.4 198.973 17.664C198.973 16.568 199.269 15.724 199.861 15.132C200.453 14.54 201.269 14.244 202.309 14.244C202.949 14.244 203.513 14.376 204.001 14.64C204.497 14.904 204.885 15.292 205.165 15.804C205.453 16.308 205.597 16.928 205.597 17.664ZM201.301 17.664C201.301 18.232 201.377 18.668 201.529 18.972C201.681 19.268 201.937 19.416 202.297 19.416C202.649 19.416 202.897 19.268 203.041 18.972C203.193 18.668 203.269 18.232 203.269 17.664C203.269 17.096 203.193 16.668 203.041 16.38C202.897 16.092 202.645 15.948 202.285 15.948C201.941 15.948 201.689 16.092 201.529 16.38C201.377 16.668 201.301 17.096 201.301 17.664Z" fill="#DE3A3A"/>
<path d="M196.522 11.688C196.85 11.688 197.134 11.756 197.374 11.892C197.622 12.028 197.746 12.3 197.746 12.708C197.746 13.1 197.622 13.368 197.374 13.512C197.134 13.648 196.85 13.716 196.522 13.716C196.186 13.716 195.898 13.648 195.658 13.512C195.426 13.368 195.31 13.1 195.31 12.708C195.31 12.3 195.426 12.028 195.658 11.892C195.898 11.756 196.186 11.688 196.522 11.688ZM197.662 14.364V21H195.37V14.364H197.662Z" fill="#DE3A3A"/>
<path d="M193.091 19.308C193.299 19.308 193.487 19.288 193.655 19.248C193.831 19.2 194.011 19.144 194.195 19.08V20.748C193.947 20.852 193.683 20.94 193.403 21.012C193.123 21.084 192.767 21.12 192.335 21.12C191.903 21.12 191.523 21.052 191.195 20.916C190.875 20.78 190.623 20.548 190.439 20.22C190.255 19.884 190.163 19.416 190.163 18.816V16.08H189.359V15.144L190.379 14.424L190.967 13.032H192.467V14.364H194.099V16.08H192.467V18.66C192.467 19.092 192.675 19.308 193.091 19.308Z" fill="#DE3A3A"/>
<path d="M187.101 11.688C187.429 11.688 187.713 11.756 187.953 11.892C188.201 12.028 188.325 12.3 188.325 12.708C188.325 13.1 188.201 13.368 187.953 13.512C187.713 13.648 187.429 13.716 187.101 13.716C186.765 13.716 186.477 13.648 186.237 13.512C186.005 13.368 185.889 13.1 185.889 12.708C185.889 12.3 186.005 12.028 186.237 11.892C186.477 11.756 186.765 11.688 187.101 11.688ZM188.241 14.364V21H185.949V14.364H188.241Z" fill="#DE3A3A"/>
<path d="M184.669 18.96C184.669 19.376 184.573 19.748 184.381 20.076C184.197 20.404 183.897 20.66 183.481 20.844C183.073 21.028 182.533 21.12 181.861 21.12C181.389 21.12 180.965 21.092 180.589 21.036C180.221 20.988 179.845 20.892 179.461 20.748V18.912C179.885 19.104 180.313 19.244 180.745 19.332C181.177 19.412 181.517 19.452 181.765 19.452C182.261 19.452 182.509 19.34 182.509 19.116C182.509 19.02 182.469 18.936 182.389 18.864C182.309 18.792 182.165 18.712 181.957 18.624C181.757 18.536 181.469 18.416 181.093 18.264C180.541 18.032 180.129 17.768 179.857 17.472C179.585 17.168 179.449 16.744 179.449 16.2C179.449 15.552 179.697 15.064 180.193 14.736C180.697 14.408 181.361 14.244 182.185 14.244C182.625 14.244 183.037 14.292 183.421 14.388C183.805 14.484 184.205 14.624 184.621 14.808L183.997 16.284C183.669 16.132 183.337 16.012 183.001 15.924C182.665 15.836 182.397 15.792 182.197 15.792C181.821 15.792 181.633 15.884 181.633 16.068C181.633 16.148 181.665 16.22 181.729 16.284C181.801 16.348 181.933 16.42 182.125 16.5C182.317 16.58 182.597 16.696 182.965 16.848C183.349 17 183.665 17.168 183.913 17.352C184.169 17.528 184.357 17.744 184.477 18C184.605 18.248 184.669 18.568 184.669 18.96Z" fill="#DE3A3A"/>
<path d="M176.999 11.688C177.327 11.688 177.611 11.756 177.851 11.892C178.099 12.028 178.223 12.3 178.223 12.708C178.223 13.1 178.099 13.368 177.851 13.512C177.611 13.648 177.327 13.716 176.999 13.716C176.663 13.716 176.375 13.648 176.135 13.512C175.903 13.368 175.787 13.1 175.787 12.708C175.787 12.3 175.903 12.028 176.135 11.892C176.375 11.756 176.663 11.688 176.999 11.688ZM178.139 14.364V21H175.847V14.364H178.139Z" fill="#DE3A3A"/>
<path d="M174.252 14.364V21H172.524L172.236 20.172H172.104C171.896 20.508 171.612 20.752 171.252 20.904C170.892 21.048 170.508 21.12 170.1 21.12C169.668 21.12 169.276 21.036 168.924 20.868C168.572 20.7 168.292 20.436 168.084 20.076C167.884 19.716 167.784 19.252 167.784 18.684V14.364H170.076V17.988C170.076 18.42 170.136 18.748 170.256 18.972C170.384 19.196 170.588 19.308 170.868 19.308C171.3 19.308 171.588 19.132 171.732 18.78C171.884 18.428 171.96 17.924 171.96 17.268V14.364H174.252Z" fill="#DE3A3A"/>
<path d="M163.925 21.132C163.925 20.804 163.949 20.48 163.997 20.16H163.925C163.773 20.424 163.557 20.652 163.277 20.844C162.997 21.028 162.629 21.12 162.173 21.12C161.469 21.12 160.897 20.828 160.457 20.244C160.017 19.66 159.797 18.808 159.797 17.688C159.797 16.568 160.021 15.716 160.469 15.132C160.917 14.54 161.497 14.244 162.209 14.244C162.673 14.244 163.045 14.336 163.325 14.52C163.613 14.696 163.845 14.916 164.021 15.18H164.069L164.237 14.364H166.217V23.88H163.925V21.132ZM163.109 19.344C163.485 19.344 163.745 19.228 163.889 18.996C164.033 18.756 164.105 18.4 164.105 17.928V17.652C164.105 17.132 164.033 16.732 163.889 16.452C163.753 16.164 163.481 16.02 163.073 16.02C162.441 16.02 162.125 16.588 162.125 17.724C162.125 18.3 162.205 18.716 162.365 18.972C162.525 19.22 162.773 19.344 163.109 19.344Z" fill="#DE3A3A"/>
<path d="M156.64 21.12C155.632 21.12 154.828 20.848 154.228 20.304C153.628 19.76 153.328 18.896 153.328 17.712C153.328 16.904 153.48 16.248 153.784 15.744C154.088 15.232 154.5 14.856 155.02 14.616C155.548 14.368 156.148 14.244 156.82 14.244C157.228 14.244 157.612 14.288 157.972 14.376C158.34 14.464 158.68 14.588 158.992 14.748L158.32 16.44C158.048 16.32 157.792 16.224 157.552 16.152C157.32 16.08 157.076 16.044 156.82 16.044C156.476 16.044 156.196 16.18 155.98 16.452C155.764 16.724 155.656 17.14 155.656 17.7C155.656 18.276 155.764 18.688 155.98 18.936C156.204 19.176 156.488 19.296 156.832 19.296C157.16 19.296 157.488 19.244 157.816 19.14C158.152 19.036 158.468 18.892 158.764 18.708V20.532C158.492 20.708 158.184 20.852 157.84 20.964C157.496 21.068 157.096 21.12 156.64 21.12Z" fill="#DE3A3A"/>
<path d="M150.297 21L149.877 19.392H147.093L146.661 21H144.117L146.913 12.396H149.997L152.829 21H150.297ZM149.025 16.092C148.985 15.94 148.929 15.724 148.857 15.444C148.785 15.156 148.713 14.86 148.641 14.556C148.569 14.252 148.513 14.004 148.473 13.812C148.441 14.004 148.389 14.244 148.317 14.532C148.253 14.82 148.185 15.104 148.113 15.384C148.049 15.664 147.993 15.9 147.945 16.092L147.573 17.496H149.397L149.025 16.092Z" fill="#DE3A3A"/>
<path d="M133.664 14.364H136.076L137.204 18.168C137.228 18.248 137.248 18.356 137.264 18.492C137.288 18.628 137.304 18.76 137.312 18.888H137.36C137.376 18.728 137.396 18.592 137.42 18.48C137.452 18.36 137.48 18.26 137.504 18.18L138.656 14.364H140.996L138.368 21.42C138.168 21.956 137.932 22.408 137.66 22.776C137.396 23.144 137.068 23.42 136.676 23.604C136.284 23.788 135.796 23.88 135.212 23.88C135.004 23.88 134.824 23.868 134.672 23.844C134.52 23.828 134.388 23.808 134.276 23.784V21.984C134.364 22 134.468 22.016 134.588 22.032C134.716 22.048 134.848 22.056 134.984 22.056C135.36 22.056 135.636 21.944 135.812 21.72C135.996 21.504 136.144 21.252 136.256 20.964L136.28 20.904L133.664 14.364Z" fill="#DE3A3A"/>
<path d="M132.2 19.308C132.408 19.308 132.596 19.288 132.764 19.248C132.94 19.2 133.12 19.144 133.304 19.08V20.748C133.056 20.852 132.792 20.94 132.512 21.012C132.232 21.084 131.876 21.12 131.444 21.12C131.012 21.12 130.632 21.052 130.304 20.916C129.984 20.78 129.732 20.548 129.548 20.22C129.364 19.884 129.272 19.416 129.272 18.816V16.08H128.468V15.144L129.488 14.424L130.076 13.032H131.576V14.364H133.208V16.08H131.576V18.66C131.576 19.092 131.784 19.308 132.2 19.308Z" fill="#DE3A3A"/>
<path d="M126.21 11.688C126.538 11.688 126.822 11.756 127.062 11.892C127.31 12.028 127.434 12.3 127.434 12.708C127.434 13.1 127.31 13.368 127.062 13.512C126.822 13.648 126.538 13.716 126.21 13.716C125.874 13.716 125.586 13.648 125.346 13.512C125.114 13.368 124.998 13.1 124.998 12.708C124.998 12.3 125.114 12.028 125.346 11.892C125.586 11.756 125.874 11.688 126.21 11.688ZM127.35 14.364V21H125.058V14.364H127.35Z" fill="#DE3A3A"/>
<path d="M123.429 14.244C123.557 14.244 123.689 14.252 123.825 14.268C123.961 14.284 124.061 14.3 124.125 14.316L123.921 16.476C123.841 16.46 123.741 16.444 123.621 16.428C123.509 16.412 123.349 16.404 123.141 16.404C122.949 16.404 122.741 16.432 122.517 16.488C122.301 16.544 122.113 16.668 121.953 16.86C121.793 17.044 121.713 17.336 121.713 17.736V21H119.421V14.364H121.125L121.485 15.42H121.593C121.777 15.092 122.033 14.816 122.361 14.592C122.697 14.36 123.053 14.244 123.429 14.244Z" fill="#DE3A3A"/>
<path d="M117.838 14.364V21H116.11L115.822 20.172H115.69C115.482 20.508 115.198 20.752 114.838 20.904C114.478 21.048 114.094 21.12 113.686 21.12C113.254 21.12 112.862 21.036 112.51 20.868C112.158 20.7 111.878 20.436 111.67 20.076C111.47 19.716 111.37 19.252 111.37 18.684V14.364H113.662V17.988C113.662 18.42 113.722 18.748 113.842 18.972C113.97 19.196 114.174 19.308 114.454 19.308C114.886 19.308 115.174 19.132 115.318 18.78C115.47 18.428 115.546 17.924 115.546 17.268V14.364H117.838Z" fill="#DE3A3A"/>
<path d="M107.937 21.12C106.929 21.12 106.125 20.848 105.525 20.304C104.925 19.76 104.625 18.896 104.625 17.712C104.625 16.904 104.777 16.248 105.081 15.744C105.385 15.232 105.797 14.856 106.317 14.616C106.845 14.368 107.445 14.244 108.117 14.244C108.525 14.244 108.909 14.288 109.269 14.376C109.637 14.464 109.977 14.588 110.289 14.748L109.617 16.44C109.345 16.32 109.089 16.224 108.849 16.152C108.617 16.08 108.373 16.044 108.117 16.044C107.773 16.044 107.493 16.18 107.277 16.452C107.061 16.724 106.953 17.14 106.953 17.7C106.953 18.276 107.061 18.688 107.277 18.936C107.501 19.176 107.785 19.296 108.129 19.296C108.457 19.296 108.785 19.244 109.113 19.14C109.449 19.036 109.765 18.892 110.061 18.708V20.532C109.789 20.708 109.481 20.852 109.137 20.964C108.793 21.068 108.393 21.12 107.937 21.12Z" fill="#DE3A3A"/>
<path d="M100.483 14.244C101.451 14.244 102.215 14.496 102.775 15C103.335 15.504 103.615 16.264 103.615 17.28V18.3H99.5232C99.5392 18.644 99.6672 18.928 99.9072 19.152C100.155 19.376 100.511 19.488 100.975 19.488C101.391 19.488 101.771 19.448 102.115 19.368C102.459 19.288 102.815 19.16 103.183 18.984V20.628C102.863 20.796 102.511 20.92 102.127 21C101.751 21.08 101.275 21.12 100.699 21.12C100.027 21.12 99.4272 21.004 98.8992 20.772C98.3792 20.532 97.9672 20.16 97.6632 19.656C97.3592 19.152 97.2072 18.508 97.2072 17.724C97.2072 16.924 97.3432 16.268 97.6152 15.756C97.8952 15.244 98.2792 14.864 98.7672 14.616C99.2632 14.368 99.8352 14.244 100.483 14.244ZM100.567 15.804C100.295 15.804 100.067 15.888 99.8832 16.056C99.7072 16.224 99.6032 16.492 99.5712 16.86H101.539C101.531 16.564 101.443 16.316 101.275 16.116C101.115 15.908 100.879 15.804 100.567 15.804Z" fill="#DE3A3A"/>
<path d="M96.3054 18.396C96.3054 18.86 96.1854 19.3 95.9454 19.716C95.7134 20.132 95.3494 20.472 94.8534 20.736C94.3654 20.992 93.7294 21.12 92.9454 21.12C92.5534 21.12 92.2094 21.1 91.9134 21.06C91.6254 21.028 91.3534 20.972 91.0974 20.892C90.8414 20.812 90.5774 20.708 90.3054 20.58V18.516C90.7694 18.748 91.2374 18.928 91.7094 19.056C92.1814 19.176 92.6094 19.236 92.9934 19.236C93.3374 19.236 93.5894 19.176 93.7494 19.056C93.9094 18.936 93.9894 18.784 93.9894 18.6C93.9894 18.376 93.8694 18.196 93.6294 18.06C93.3974 17.916 93.0014 17.72 92.4414 17.472C92.0174 17.272 91.6494 17.064 91.3374 16.848C91.0254 16.624 90.7854 16.352 90.6174 16.032C90.4494 15.712 90.3654 15.308 90.3654 14.82C90.3654 14.268 90.5014 13.808 90.7734 13.44C91.0454 13.064 91.4214 12.784 91.9014 12.6C92.3894 12.408 92.9534 12.312 93.5934 12.312C94.1534 12.312 94.6574 12.376 95.1054 12.504C95.5534 12.624 95.9534 12.764 96.3054 12.924L95.5974 14.712C95.2294 14.544 94.8654 14.412 94.5054 14.316C94.1534 14.212 93.8254 14.16 93.5214 14.16C93.2254 14.16 93.0054 14.212 92.8614 14.316C92.7254 14.42 92.6574 14.552 92.6574 14.712C92.6574 14.848 92.7094 14.968 92.8134 15.072C92.9174 15.176 93.0894 15.292 93.3294 15.42C93.5774 15.54 93.9134 15.696 94.3374 15.888C94.7534 16.072 95.1054 16.276 95.3934 16.5C95.6894 16.716 95.9134 16.976 96.0654 17.28C96.2254 17.576 96.3054 17.948 96.3054 18.396Z" fill="#DE3A3A"/>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@@ -0,0 +1,2 @@
sample:
filter: true

View File

@@ -0,0 +1,25 @@
<svg width="256" height="32" viewBox="0 0 256 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.3599 9.76624C10.2014 9.63414 10.0876 9.45694 10.0342 9.25865C9.98074 9.06037 9.99014 8.8506 10.0611 8.65779C10.1321 8.46498 10.2612 8.29845 10.431 8.18078C10.6008 8.06311 10.803 8 11.0102 8H15.99C16.0972 8 16.2 8.04216 16.2757 8.11722C16.3515 8.19227 16.3941 8.29407 16.3941 8.40021V14.793L10.3599 9.76624ZM23.4014 8H18.0385C17.9035 8 17.7739 8.05081 17.6784 8.14124C17.5829 8.23168 17.5293 8.35434 17.5293 8.48223V23.5178C17.5293 23.6457 17.5829 23.7683 17.6784 23.8588C17.7739 23.9492 17.9035 24 18.0385 24H22.0384C22.1735 24 22.303 23.9492 22.3985 23.8588C22.494 23.7683 22.5476 23.6457 22.5476 23.5178V15.3911L27.9868 23.7703C28.0323 23.8405 28.0961 23.8985 28.1721 23.9387C28.248 23.9789 28.3336 24 28.4206 24H33.9606C34.0956 24 34.2252 23.9492 34.3207 23.8588C34.4162 23.7683 34.4698 23.6457 34.4698 23.5178V8.48223C34.4698 8.4189 34.4566 8.3562 34.431 8.29769C34.4055 8.23918 34.3679 8.18602 34.3207 8.14124C34.2734 8.09646 34.2172 8.06094 34.1554 8.03671C34.0937 8.01247 34.0274 8 33.9606 8H29.8395C29.7044 8 29.5749 8.05081 29.4794 8.14124C29.3839 8.23168 29.3302 8.35434 29.3302 8.48223V16.695L23.8352 8.2297C23.7897 8.15951 23.7259 8.10154 23.6499 8.06133C23.574 8.02111 23.4884 8 23.4014 8ZM41.9657 22.7414C41.9122 22.5431 41.7985 22.3659 41.6399 22.2338L35.6058 17.207V23.5999C35.6058 23.6524 35.6162 23.7044 35.6366 23.753C35.6569 23.8016 35.6866 23.8457 35.7241 23.8828C35.7617 23.92 35.8062 23.9495 35.8552 23.9696C35.9043 23.9897 35.9568 24.0001 36.0099 24.0001H40.9897C41.1969 24.0001 41.3991 23.937 41.5689 23.8193C41.7386 23.7016 41.8678 23.5351 41.9387 23.3423C42.0097 23.1495 42.0191 22.9397 41.9657 22.7414Z" fill="#539C00"/>
<path d="M245.892 14.244C246.652 14.244 247.232 14.436 247.632 14.82C248.032 15.204 248.232 15.824 248.232 16.68V21H245.94V17.388C245.94 16.884 245.872 16.536 245.736 16.344C245.6 16.144 245.4 16.044 245.136 16.044C244.768 16.044 244.512 16.208 244.368 16.536C244.224 16.856 244.152 17.312 244.152 17.904V21H241.86V17.388C241.86 16.908 241.796 16.564 241.668 16.356C241.54 16.148 241.348 16.044 241.092 16.044C240.7 16.044 240.432 16.22 240.288 16.572C240.152 16.924 240.084 17.432 240.084 18.096V21H237.792V14.364H239.52L239.856 15.18H239.916C240.092 14.908 240.344 14.684 240.672 14.508C241.008 14.332 241.42 14.244 241.908 14.244C242.396 14.244 242.796 14.328 243.108 14.496C243.428 14.656 243.688 14.88 243.888 15.168H243.96C244.168 14.872 244.436 14.644 244.764 14.484C245.1 14.324 245.476 14.244 245.892 14.244Z" fill="#539C00"/>
<path d="M236.175 14.244C236.303 14.244 236.435 14.252 236.571 14.268C236.707 14.284 236.807 14.3 236.871 14.316L236.667 16.476C236.587 16.46 236.487 16.444 236.367 16.428C236.255 16.412 236.095 16.404 235.887 16.404C235.695 16.404 235.487 16.432 235.263 16.488C235.047 16.544 234.859 16.668 234.699 16.86C234.539 17.044 234.459 17.336 234.459 17.736V21H232.167V14.364H233.871L234.231 15.42H234.339C234.523 15.092 234.779 14.816 235.107 14.592C235.443 14.36 235.799 14.244 236.175 14.244Z" fill="#539C00"/>
<path d="M230.862 17.664C230.862 18.776 230.566 19.632 229.974 20.232C229.382 20.824 228.57 21.12 227.538 21.12C226.898 21.12 226.33 20.988 225.834 20.724C225.338 20.452 224.946 20.06 224.658 19.548C224.378 19.028 224.238 18.4 224.238 17.664C224.238 16.568 224.534 15.724 225.126 15.132C225.718 14.54 226.534 14.244 227.574 14.244C228.214 14.244 228.778 14.376 229.266 14.64C229.762 14.904 230.15 15.292 230.43 15.804C230.718 16.308 230.862 16.928 230.862 17.664ZM226.566 17.664C226.566 18.232 226.642 18.668 226.794 18.972C226.946 19.268 227.202 19.416 227.562 19.416C227.914 19.416 228.162 19.268 228.306 18.972C228.458 18.668 228.534 18.232 228.534 17.664C228.534 17.096 228.458 16.668 228.306 16.38C228.162 16.092 227.91 15.948 227.55 15.948C227.206 15.948 226.954 16.092 226.794 16.38C226.642 16.668 226.566 17.096 226.566 17.664Z" fill="#539C00"/>
<path d="M220.47 21H218.19V12.432H223.254V14.292H220.47V15.924H223.038V17.784H220.47V21Z" fill="#539C00"/>
<path d="M211.053 14.244C211.741 14.244 212.301 14.436 212.733 14.82C213.165 15.204 213.381 15.824 213.381 16.68V21H211.089V17.376C211.089 16.936 211.025 16.604 210.897 16.38C210.769 16.156 210.565 16.044 210.285 16.044C209.853 16.044 209.561 16.22 209.409 16.572C209.265 16.924 209.193 17.432 209.193 18.096V21H206.901V14.364H208.629L208.941 15.24H209.025C209.233 14.928 209.505 14.684 209.841 14.508C210.185 14.332 210.589 14.244 211.053 14.244Z" fill="#539C00"/>
<path d="M205.597 17.664C205.597 18.776 205.301 19.632 204.709 20.232C204.117 20.824 203.305 21.12 202.273 21.12C201.633 21.12 201.065 20.988 200.569 20.724C200.073 20.452 199.681 20.06 199.393 19.548C199.113 19.028 198.973 18.4 198.973 17.664C198.973 16.568 199.269 15.724 199.861 15.132C200.453 14.54 201.269 14.244 202.309 14.244C202.949 14.244 203.513 14.376 204.001 14.64C204.497 14.904 204.885 15.292 205.165 15.804C205.453 16.308 205.597 16.928 205.597 17.664ZM201.301 17.664C201.301 18.232 201.377 18.668 201.529 18.972C201.681 19.268 201.937 19.416 202.297 19.416C202.649 19.416 202.897 19.268 203.041 18.972C203.193 18.668 203.269 18.232 203.269 17.664C203.269 17.096 203.193 16.668 203.041 16.38C202.897 16.092 202.645 15.948 202.285 15.948C201.941 15.948 201.689 16.092 201.529 16.38C201.377 16.668 201.301 17.096 201.301 17.664Z" fill="#539C00"/>
<path d="M196.522 11.688C196.85 11.688 197.134 11.756 197.374 11.892C197.622 12.028 197.746 12.3 197.746 12.708C197.746 13.1 197.622 13.368 197.374 13.512C197.134 13.648 196.85 13.716 196.522 13.716C196.186 13.716 195.898 13.648 195.658 13.512C195.426 13.368 195.31 13.1 195.31 12.708C195.31 12.3 195.426 12.028 195.658 11.892C195.898 11.756 196.186 11.688 196.522 11.688ZM197.662 14.364V21H195.37V14.364H197.662Z" fill="#539C00"/>
<path d="M193.091 19.308C193.299 19.308 193.487 19.288 193.655 19.248C193.831 19.2 194.011 19.144 194.195 19.08V20.748C193.947 20.852 193.683 20.94 193.403 21.012C193.123 21.084 192.767 21.12 192.335 21.12C191.903 21.12 191.523 21.052 191.195 20.916C190.875 20.78 190.623 20.548 190.439 20.22C190.255 19.884 190.163 19.416 190.163 18.816V16.08H189.359V15.144L190.379 14.424L190.967 13.032H192.467V14.364H194.099V16.08H192.467V18.66C192.467 19.092 192.675 19.308 193.091 19.308Z" fill="#539C00"/>
<path d="M187.101 11.688C187.429 11.688 187.713 11.756 187.953 11.892C188.201 12.028 188.325 12.3 188.325 12.708C188.325 13.1 188.201 13.368 187.953 13.512C187.713 13.648 187.429 13.716 187.101 13.716C186.765 13.716 186.477 13.648 186.237 13.512C186.005 13.368 185.889 13.1 185.889 12.708C185.889 12.3 186.005 12.028 186.237 11.892C186.477 11.756 186.765 11.688 187.101 11.688ZM188.241 14.364V21H185.949V14.364H188.241Z" fill="#539C00"/>
<path d="M184.669 18.96C184.669 19.376 184.573 19.748 184.381 20.076C184.197 20.404 183.897 20.66 183.481 20.844C183.073 21.028 182.533 21.12 181.861 21.12C181.389 21.12 180.965 21.092 180.589 21.036C180.221 20.988 179.845 20.892 179.461 20.748V18.912C179.885 19.104 180.313 19.244 180.745 19.332C181.177 19.412 181.517 19.452 181.765 19.452C182.261 19.452 182.509 19.34 182.509 19.116C182.509 19.02 182.469 18.936 182.389 18.864C182.309 18.792 182.165 18.712 181.957 18.624C181.757 18.536 181.469 18.416 181.093 18.264C180.541 18.032 180.129 17.768 179.857 17.472C179.585 17.168 179.449 16.744 179.449 16.2C179.449 15.552 179.697 15.064 180.193 14.736C180.697 14.408 181.361 14.244 182.185 14.244C182.625 14.244 183.037 14.292 183.421 14.388C183.805 14.484 184.205 14.624 184.621 14.808L183.997 16.284C183.669 16.132 183.337 16.012 183.001 15.924C182.665 15.836 182.397 15.792 182.197 15.792C181.821 15.792 181.633 15.884 181.633 16.068C181.633 16.148 181.665 16.22 181.729 16.284C181.801 16.348 181.933 16.42 182.125 16.5C182.317 16.58 182.597 16.696 182.965 16.848C183.349 17 183.665 17.168 183.913 17.352C184.169 17.528 184.357 17.744 184.477 18C184.605 18.248 184.669 18.568 184.669 18.96Z" fill="#539C00"/>
<path d="M176.999 11.688C177.327 11.688 177.611 11.756 177.851 11.892C178.099 12.028 178.223 12.3 178.223 12.708C178.223 13.1 178.099 13.368 177.851 13.512C177.611 13.648 177.327 13.716 176.999 13.716C176.663 13.716 176.375 13.648 176.135 13.512C175.903 13.368 175.787 13.1 175.787 12.708C175.787 12.3 175.903 12.028 176.135 11.892C176.375 11.756 176.663 11.688 176.999 11.688ZM178.139 14.364V21H175.847V14.364H178.139Z" fill="#539C00"/>
<path d="M174.252 14.364V21H172.524L172.236 20.172H172.104C171.896 20.508 171.612 20.752 171.252 20.904C170.892 21.048 170.508 21.12 170.1 21.12C169.668 21.12 169.276 21.036 168.924 20.868C168.572 20.7 168.292 20.436 168.084 20.076C167.884 19.716 167.784 19.252 167.784 18.684V14.364H170.076V17.988C170.076 18.42 170.136 18.748 170.256 18.972C170.384 19.196 170.588 19.308 170.868 19.308C171.3 19.308 171.588 19.132 171.732 18.78C171.884 18.428 171.96 17.924 171.96 17.268V14.364H174.252Z" fill="#539C00"/>
<path d="M163.925 21.132C163.925 20.804 163.949 20.48 163.997 20.16H163.925C163.773 20.424 163.557 20.652 163.277 20.844C162.997 21.028 162.629 21.12 162.173 21.12C161.469 21.12 160.897 20.828 160.457 20.244C160.017 19.66 159.797 18.808 159.797 17.688C159.797 16.568 160.021 15.716 160.469 15.132C160.917 14.54 161.497 14.244 162.209 14.244C162.673 14.244 163.045 14.336 163.325 14.52C163.613 14.696 163.845 14.916 164.021 15.18H164.069L164.237 14.364H166.217V23.88H163.925V21.132ZM163.109 19.344C163.485 19.344 163.745 19.228 163.889 18.996C164.033 18.756 164.105 18.4 164.105 17.928V17.652C164.105 17.132 164.033 16.732 163.889 16.452C163.753 16.164 163.481 16.02 163.073 16.02C162.441 16.02 162.125 16.588 162.125 17.724C162.125 18.3 162.205 18.716 162.365 18.972C162.525 19.22 162.773 19.344 163.109 19.344Z" fill="#539C00"/>
<path d="M156.64 21.12C155.632 21.12 154.828 20.848 154.228 20.304C153.628 19.76 153.328 18.896 153.328 17.712C153.328 16.904 153.48 16.248 153.784 15.744C154.088 15.232 154.5 14.856 155.02 14.616C155.548 14.368 156.148 14.244 156.82 14.244C157.228 14.244 157.612 14.288 157.972 14.376C158.34 14.464 158.68 14.588 158.992 14.748L158.32 16.44C158.048 16.32 157.792 16.224 157.552 16.152C157.32 16.08 157.076 16.044 156.82 16.044C156.476 16.044 156.196 16.18 155.98 16.452C155.764 16.724 155.656 17.14 155.656 17.7C155.656 18.276 155.764 18.688 155.98 18.936C156.204 19.176 156.488 19.296 156.832 19.296C157.16 19.296 157.488 19.244 157.816 19.14C158.152 19.036 158.468 18.892 158.764 18.708V20.532C158.492 20.708 158.184 20.852 157.84 20.964C157.496 21.068 157.096 21.12 156.64 21.12Z" fill="#539C00"/>
<path d="M150.297 21L149.877 19.392H147.093L146.661 21H144.117L146.913 12.396H149.997L152.829 21H150.297ZM149.025 16.092C148.985 15.94 148.929 15.724 148.857 15.444C148.785 15.156 148.713 14.86 148.641 14.556C148.569 14.252 148.513 14.004 148.473 13.812C148.441 14.004 148.389 14.244 148.317 14.532C148.253 14.82 148.185 15.104 148.113 15.384C148.049 15.664 147.993 15.9 147.945 16.092L147.573 17.496H149.397L149.025 16.092Z" fill="#539C00"/>
<path d="M137.362 14.244C138.33 14.244 139.094 14.496 139.654 15C140.214 15.504 140.494 16.264 140.494 17.28V18.3H136.402C136.418 18.644 136.546 18.928 136.786 19.152C137.034 19.376 137.39 19.488 137.854 19.488C138.27 19.488 138.65 19.448 138.994 19.368C139.338 19.288 139.694 19.16 140.062 18.984V20.628C139.742 20.796 139.39 20.92 139.006 21C138.63 21.08 138.154 21.12 137.578 21.12C136.906 21.12 136.306 21.004 135.778 20.772C135.258 20.532 134.846 20.16 134.542 19.656C134.238 19.152 134.086 18.508 134.086 17.724C134.086 16.924 134.222 16.268 134.494 15.756C134.774 15.244 135.158 14.864 135.646 14.616C136.142 14.368 136.714 14.244 137.362 14.244ZM137.446 15.804C137.174 15.804 136.946 15.888 136.762 16.056C136.586 16.224 136.482 16.492 136.45 16.86H138.418C138.41 16.564 138.322 16.316 138.154 16.116C137.994 15.908 137.758 15.804 137.446 15.804Z" fill="#539C00"/>
<path d="M130.929 21.12C129.921 21.12 129.117 20.848 128.517 20.304C127.917 19.76 127.617 18.896 127.617 17.712C127.617 16.904 127.769 16.248 128.073 15.744C128.377 15.232 128.789 14.856 129.309 14.616C129.837 14.368 130.437 14.244 131.109 14.244C131.517 14.244 131.901 14.288 132.261 14.376C132.629 14.464 132.969 14.588 133.281 14.748L132.609 16.44C132.337 16.32 132.081 16.224 131.841 16.152C131.609 16.08 131.365 16.044 131.109 16.044C130.765 16.044 130.485 16.18 130.269 16.452C130.053 16.724 129.945 17.14 129.945 17.7C129.945 18.276 130.053 18.688 130.269 18.936C130.493 19.176 130.777 19.296 131.121 19.296C131.449 19.296 131.777 19.244 132.105 19.14C132.441 19.036 132.757 18.892 133.053 18.708V20.532C132.781 20.708 132.473 20.852 132.129 20.964C131.785 21.068 131.385 21.12 130.929 21.12Z" fill="#539C00"/>
<path d="M125.167 11.688C125.495 11.688 125.779 11.756 126.019 11.892C126.267 12.028 126.391 12.3 126.391 12.708C126.391 13.1 126.267 13.368 126.019 13.512C125.779 13.648 125.495 13.716 125.167 13.716C124.831 13.716 124.543 13.648 124.303 13.512C124.071 13.368 123.955 13.1 123.955 12.708C123.955 12.3 124.071 12.028 124.303 11.892C124.543 11.756 124.831 11.688 125.167 11.688ZM126.307 14.364V21H124.015V14.364H126.307Z" fill="#539C00"/>
<path d="M118.407 21L115.875 14.364H118.263L119.391 18.288C119.407 18.32 119.427 18.408 119.451 18.552C119.483 18.696 119.499 18.832 119.499 18.96H119.535C119.535 18.824 119.547 18.696 119.571 18.576C119.603 18.456 119.627 18.364 119.643 18.3L120.819 14.364H123.207L120.675 21H118.407Z" fill="#539C00"/>
<path d="M115.05 14.244C115.178 14.244 115.31 14.252 115.446 14.268C115.582 14.284 115.682 14.3 115.746 14.316L115.542 16.476C115.462 16.46 115.362 16.444 115.242 16.428C115.13 16.412 114.97 16.404 114.762 16.404C114.57 16.404 114.362 16.432 114.138 16.488C113.922 16.544 113.734 16.668 113.574 16.86C113.414 17.044 113.334 17.336 113.334 17.736V21H111.042V14.364H112.746L113.106 15.42H113.214C113.398 15.092 113.654 14.816 113.982 14.592C114.318 14.36 114.674 14.244 115.05 14.244Z" fill="#539C00"/>
<path d="M106.612 14.244C107.58 14.244 108.344 14.496 108.904 15C109.464 15.504 109.744 16.264 109.744 17.28V18.3H105.652C105.668 18.644 105.796 18.928 106.036 19.152C106.284 19.376 106.64 19.488 107.104 19.488C107.52 19.488 107.9 19.448 108.244 19.368C108.588 19.288 108.944 19.16 109.312 18.984V20.628C108.992 20.796 108.64 20.92 108.256 21C107.88 21.08 107.404 21.12 106.828 21.12C106.156 21.12 105.556 21.004 105.028 20.772C104.508 20.532 104.096 20.16 103.792 19.656C103.488 19.152 103.336 18.508 103.336 17.724C103.336 16.924 103.472 16.268 103.744 15.756C104.024 15.244 104.408 14.864 104.896 14.616C105.392 14.368 105.964 14.244 106.612 14.244ZM106.696 15.804C106.424 15.804 106.196 15.888 106.012 16.056C105.836 16.224 105.732 16.492 105.7 16.86H107.668C107.66 16.564 107.572 16.316 107.404 16.116C107.244 15.908 107.008 15.804 106.696 15.804Z" fill="#539C00"/>
<path d="M102.434 18.396C102.434 18.86 102.314 19.3 102.074 19.716C101.842 20.132 101.478 20.472 100.982 20.736C100.494 20.992 99.8583 21.12 99.0743 21.12C98.6823 21.12 98.3383 21.1 98.0423 21.06C97.7543 21.028 97.4823 20.972 97.2263 20.892C96.9703 20.812 96.7063 20.708 96.4343 20.58V18.516C96.8983 18.748 97.3663 18.928 97.8383 19.056C98.3103 19.176 98.7383 19.236 99.1223 19.236C99.4663 19.236 99.7183 19.176 99.8783 19.056C100.038 18.936 100.118 18.784 100.118 18.6C100.118 18.376 99.9983 18.196 99.7583 18.06C99.5263 17.916 99.1303 17.72 98.5703 17.472C98.1463 17.272 97.7783 17.064 97.4663 16.848C97.1543 16.624 96.9143 16.352 96.7463 16.032C96.5783 15.712 96.4943 15.308 96.4943 14.82C96.4943 14.268 96.6303 13.808 96.9023 13.44C97.1743 13.064 97.5503 12.784 98.0303 12.6C98.5183 12.408 99.0823 12.312 99.7223 12.312C100.282 12.312 100.786 12.376 101.234 12.504C101.682 12.624 102.082 12.764 102.434 12.924L101.726 14.712C101.358 14.544 100.994 14.412 100.634 14.316C100.282 14.212 99.9543 14.16 99.6503 14.16C99.3543 14.16 99.1343 14.212 98.9903 14.316C98.8543 14.42 98.7863 14.552 98.7863 14.712C98.7863 14.848 98.8383 14.968 98.9423 15.072C99.0463 15.176 99.2183 15.292 99.4583 15.42C99.7063 15.54 100.042 15.696 100.466 15.888C100.882 16.072 101.234 16.276 101.522 16.5C101.818 16.716 102.042 16.976 102.194 17.28C102.354 17.576 102.434 17.948 102.434 18.396Z" fill="#539C00"/>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@@ -0,0 +1,2 @@
sample:
filter: true

Binary file not shown.

After

Width:  |  Height:  |  Size: 225 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 304 B

View File

@@ -1,12 +1,21 @@
{ {
"version": 1, "version": 1,
"license": "CC-BY-SA-3.0", "license": "CC-BY-SA-3.0",
"copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432. paper_stamp-syndicate by Veritius. paper_receipt, paper_receipt_horizontal by eoineoineoin. paper_stamp-greytide by ubaser. paper_stamp-psychologist by clinux. syndicate_card by Aserovich. paper_stamp_wizard by brassicaprime69 (Discord)", "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432. paper_stamp-syndicate by Veritius. paper_receipt, paper_receipt_horizontal by eoineoineoin. paper_stamp-greytide by ubaser. paper_stamp-psychologist by clinux. syndicate_card by Aserovich. paper_stamp_wizard by brassicaprime69 (Discord), acquisition_form acquisition_form_words and acquisition_form_header by sowelipililimute (GitHub)",
"size": { "size": {
"x": 32, "x": 32,
"y": 32 "y": 32
}, },
"states": [ "states": [
{
"name": "acquisition_form"
},
{
"name": "acquisition_form_words"
},
{
"name": "acquisition_form_header"
},
{ {
"name": "envelope_closed" "name": "envelope_closed"
}, },