Improve Paper UI, allow an to entity configure how it's UI looks (#13494)

Co-authored-by: Eoin Mcloughlin <helloworld@eoinrul.es>
This commit is contained in:
eoineoineoin
2023-01-17 08:32:46 +00:00
committed by GitHub
parent 741991602f
commit bda5f8248f
48 changed files with 2212 additions and 47 deletions

View File

@@ -19,14 +19,18 @@ namespace Content.Client.Paper.UI
protected override void Open()
{
base.Open();
_window = new PaperWindow
{
Title = IoCManager.Resolve<IEntityManager>().GetComponent<MetaDataComponent>(Owner.Owner).EntityName,
};
var entityMgr = IoCManager.Resolve<IEntityManager>();
_window = new PaperWindow();
_window.OnClose += Close;
_window.Input.OnTextEntered += Input_OnTextEntered;
_window.OpenCentered();
if (entityMgr.TryGetComponent<PaperVisualsComponent>(Owner.Owner, out var visuals))
{
_window.InitVisuals(visuals);
}
_window.OpenCentered();
}
protected override void UpdateState(BoundUserInterfaceState state)

View File

@@ -1,6 +1,99 @@
namespace Content.Client.Paper;
namespace Content.Client.Paper;
[RegisterComponent]
public sealed class PaperVisualsComponent : Component
{
/// <summary>
/// The path to the image which will be used as a background for the paper itself
/// </summary>
[DataField("backgroundImagePath")]
public string? BackgroundImagePath;
/// <summary>
/// An optional patch to configure tiling stretching of the background. Used to set
/// the PatchMargin in a <code>StyleBoxTexture</code>
/// </summary>
[DataField("backgroundPatchMargin")]
public Box2 BackgroundPatchMargin = default;
/// <summary>
/// Modulate the background image by this color. Can be used to add colorful
/// variants of images, without having to create new textures.
/// </summary>
[DataField("backgroundModulate")]
public Color BackgroundModulate = Color.White;
/// <summary>
/// Should the background image tile, or be streched? Sets <code>StyleBoxTexture.StrechMode</code>
/// </summary>
[DataField("backgroundImageTile")]
public bool BackgroundImageTile = false;
/// <summary>
/// An additional scale to apply to the background image
/// </summary>
[DataField("backgroundScale")]
public Vector2 BackgroundScale = Vector2.One;
/// <summary>
/// A path to an image which will be used as a header on the paper
/// </summary>
[DataField("headerImagePath")]
public string? HeaderImagePath;
/// <summary>
/// Modulate the header image by this color
/// </summary>
[DataField("headerImageModulate")]
public Color HeaderImageModulate = Color.White;
/// <summary>
/// Any additional margin to add around the header
/// </summary>
[DataField("headerMargin")]
public Box2 HeaderMargin = default;
/// <summary>
/// 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
/// image will be tiled vertically with the property that the bottom of the
/// written text will line up with the bottom of this image.
/// </summary>
[DataField("contentImagePath")]
public string? ContentImagePath;
/// <summary>
/// Modulate the content image by this color
/// </summary>
[DataField("contentImageModulate")]
public Color ContentImageModulate = Color.White;
/// <summary>
/// An additional margin around the content (including header)
/// </summary>
[DataField("contentMargin")]
public Box2 ContentMargin = default;
/// <summary>
/// The number of lines that the content image represents. The
/// content image will be vertically tiled after this many lines
/// of text.
/// </summary>
[DataField("contentImageNumLines")]
public int ContentImageNumLines = 1;
/// <summary>
/// Modulate the style's font by this color
/// </summary>
[DataField("fontAccentColor")]
public Color FontAccentColor = new Color(0x25, 0x25, 0x2a);
/// <summary>
/// This can enforce that your paper has a limited area to write in.
/// If you wish to constrain only one direction, the other direction
/// can be unlimited by specifying a value of zero.
/// This will be scaled according to UI scale.
/// </summary>
[DataField("maxWritableArea")]
public Vector2? MaxWritableArea = null;
}

View File

@@ -1,10 +1,31 @@
<DefaultWindow xmlns="https://spacestation14.io"
MinSize="300 300"
SetSize="300 300">
<BoxContainer Orientation="Vertical">
<RichTextLabel Name="Label" />
<LineEdit Name="Input"
Access="Public"
Visible="False" />
<paper:PaperWindow xmlns="https://spacestation14.io"
xmlns:paper="clr-namespace:Content.Client.Paper.UI"
xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
xmlns:gfx="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client"
MouseFilter="Stop" Resizable="True" MinSize="150 150"
SetSize="300 400"> <!-- Provide some reasonable sizes by default. Can be changed by the component -->
<BoxContainer Name="ContentsRoot" Orientation="Vertical">
<PanelContainer StyleClasses="AngleRect" VerticalAlignment="Top" HorizontalAlignment="Right" Margin="6">
<TextureButton Name="CloseButton" StyleClasses="windowCloseButton"/>
</PanelContainer>
<PanelContainer Name="PaperBackground" StyleClasses="PaperDefaultBorder" VerticalExpand="True" HorizontalExpand="True">
<ScrollContainer Name="ScrollingContents" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" HorizontalExpand="True" VerticalExpand="True" HScrollEnabled="False">
<PanelContainer Name="PaperContent" VerticalExpand="True" HorizontalExpand="True" MaxWidth="600">
<BoxContainer Orientation="Vertical" VerticalAlignment="Top">
<TextureButton Name="HeaderImage" HorizontalAlignment="Center" VerticalAlignment="Top" MouseFilter="Ignore"/>
<Control Name="TextAlignmentPadding" VerticalAlignment="Top" />
<RichTextLabel Name="BlankPaperIndicator" StyleClasses="LabelSecondaryColor"
VerticalAlignment="Top" HorizontalAlignment="Center"/>
<RichTextLabel StyleClasses="PaperWrittenText" Name="WrittenTextLabel" VerticalAlignment="Top"/>
<PanelContainer Name="InputContainer" StyleClasses="TransparentBorderedWindowPanel"
VerticalAlignment="Top" HorizontalExpand="True">
<LineEdit Name="Input" StyleClasses="PaperLineEdit" Access="Public" />
</PanelContainer>
</BoxContainer>
</DefaultWindow>
<BoxContainer Name="StampDisplay" Orientation="Vertical" VerticalAlignment="Bottom" Margin="6"/>
</PanelContainer>
</ScrollContainer>
</PanelContainer>
</BoxContainer>
</paper:PaperWindow>

View File

@@ -1,6 +1,7 @@
using Content.Shared.Paper;
using Content.Shared.Paper;
using Robust.Client.AutoGenerated;
using Robust.Client.UserInterface.Controls;
using Robust.Client.Graphics;
using Robust.Client.ResourceManagement;
using Robust.Client.UserInterface.CustomControls;
using Robust.Client.UserInterface.XAML;
using Robust.Shared.Utility;
@@ -8,22 +9,223 @@ using Robust.Shared.Utility;
namespace Content.Client.Paper.UI
{
[GenerateTypedNameReferences]
public sealed partial class PaperWindow : DefaultWindow
public sealed partial class PaperWindow : BaseWindow
{
// <summary>
// Size of resize handles around the paper
private const int DRAG_MARGIN_SIZE = 16;
// We keep a reference to the paper content texture that we create
// so that we can modify it later.
private StyleBoxTexture _paperContentTex = new();
// The number of lines that the content image represents.
// See PaperVisualsComponent.ContentImageNumLines.
private float _paperContentLineScale = 1.0f;
// If paper limits the size in one or both axes, it'll affect whether
// we're able to resize this UI or not. Default to everything enabled:
private DragMode _allowedResizeModes = ~DragMode.None;
public PaperWindow()
{
RobustXamlLoader.Load(this);
// We can't configure the RichTextLabel contents from xaml, so do it here:
BlankPaperIndicator.SetMessage(Loc.GetString("paper-ui-blank-page-message"));
// Hook up the close button:
CloseButton.OnPressed += _ => Close();
}
/// <summary>
/// Initialize this UI according to <code>visuals</code> Initializes
/// textures, recalculates sizes, and applies some layout rules.
/// </summary>
public void InitVisuals(PaperVisualsComponent visuals)
{
var resCache = IoCManager.Resolve<IResourceCache>();
/// Initialize the background:
PaperBackground.ModulateSelfOverride = visuals.BackgroundModulate;
var backgroundImage = visuals.BackgroundImagePath != null? resCache.GetResource<TextureResource>(visuals.BackgroundImagePath) : null;
if (backgroundImage != null)
{
var backgroundImageMode = visuals.BackgroundImageTile ? StyleBoxTexture.StretchMode.Tile : StyleBoxTexture.StretchMode.Stretch;
var backgroundPatchMargin = visuals.BackgroundPatchMargin;
PaperBackground.PanelOverride = new StyleBoxTexture
{
Texture = backgroundImage,
TextureScale = visuals.BackgroundScale,
Mode = backgroundImageMode,
PatchMarginLeft = backgroundPatchMargin.Left,
PatchMarginBottom = backgroundPatchMargin.Bottom,
PatchMarginRight = backgroundPatchMargin.Right,
PatchMarginTop = backgroundPatchMargin.Top
};
}
else
{
PaperBackground.PanelOverride = null;
}
// Then the header:
if (visuals.HeaderImagePath != null)
{
HeaderImage.TexturePath = visuals.HeaderImagePath;
HeaderImage.MinSize = HeaderImage.TextureNormal?.Size ?? Vector2.Zero;
}
HeaderImage.ModulateSelfOverride = visuals.HeaderImageModulate;
HeaderImage.Margin = new Thickness(visuals.HeaderMargin.Left, visuals.HeaderMargin.Top,
visuals.HeaderMargin.Right, visuals.HeaderMargin.Bottom);
PaperContent.ModulateSelfOverride = visuals.ContentImageModulate;
WrittenTextLabel.ModulateSelfOverride = visuals.FontAccentColor;
var contentImage = visuals.ContentImagePath != null ? resCache.GetResource<TextureResource>(visuals.ContentImagePath) : null;
if (contentImage != null)
{
// Setup the paper content texture, but keep a reference to it, as we can't set
// some font-related properties here. We'll fix those up later, in Draw()
_paperContentTex = new StyleBoxTexture
{
Texture = contentImage,
Mode = StyleBoxTexture.StretchMode.Tile,
};
PaperContent.PanelOverride = _paperContentTex;
_paperContentLineScale = visuals.ContentImageNumLines;
}
PaperContent.Margin = new Thickness(
visuals.ContentMargin.Left, visuals.ContentMargin.Top,
visuals.ContentMargin.Right, visuals.ContentMargin.Bottom);
if (visuals.MaxWritableArea != null)
{
var a = (Vector2)visuals.MaxWritableArea;
// Paper has requested that this has a maximum area that you can write on.
// So, we'll make the window non-resizable and fix the size of the content.
// Ideally, would like to be able to allow resizing only one direction.
ScrollingContents.MinSize = Vector2.Zero;
ScrollingContents.MinSize = (Vector2)(a);
if (a.X > 0.0f)
{
ScrollingContents.MaxWidth = a.X;
_allowedResizeModes &= ~(DragMode.Left | DragMode.Right);
// Since this dimension has been specified by the user, we
// need to undo the SetSize which was configured in the xaml.
// Controls use NaNs to indicate unset for this value.
// This is leaky - there should be a method for this
SetWidth = float.NaN;
}
if (a.Y > 0.0f)
{
ScrollingContents.MaxHeight = a.Y;
_allowedResizeModes &= ~(DragMode.Top | DragMode.Bottom);
SetHeight = float.NaN;
}
}
}
/// <summary>
/// Control interface. We'll mostly rely on the children to do the drawing
/// but in order to get lines on paper to match up with the rich text labels,
/// we need to do a small calculation to sync them up.
/// </summary>
protected override void Draw(DrawingHandleScreen handle)
{
// Now do the deferred setup of the written area. At the point
// that InitVisuals runs, the label hasn't had it's style initialized
// so we need to get some info out now:
if (WrittenTextLabel.TryGetStyleProperty<Font>("font", out var font))
{
float fontLineHeight = font.GetLineHeight(UIScale);
// This positions the texture so the font baseline is on the bottom:
_paperContentTex.ExpandMarginTop = font.GetDescent(UIScale);
// And this scales the texture so that it's a single text line:
var scaleY = (_paperContentLineScale * fontLineHeight) / _paperContentTex.Texture?.Height ?? fontLineHeight;
_paperContentTex.TextureScale = new Vector2(1, scaleY);
// Now, we might need to add some padding to the text to ensure
// that, even if a header is specified, the text will line up with
// where the content image expects the font to be rendered (i.e.,
// adjusting the height of the header image shouldn't cause the
// text to be offset from a line)
{
var headerHeight = HeaderImage.Size.Y + HeaderImage.Margin.Top + HeaderImage.Margin.Bottom;
var headerInLines = headerHeight / (fontLineHeight * _paperContentLineScale);
var paddingRequiredInLines = (float)Math.Ceiling(headerInLines) - headerInLines;
var verticalMargin = fontLineHeight * paddingRequiredInLines * _paperContentLineScale;
TextAlignmentPadding.Margin = new Thickness(0.0f, verticalMargin, 0.0f, 0.0f);
}
}
base.Draw(handle);
}
/// <summary>
/// Initialize the paper contents, i.e. the text typed by the
/// user and any stamps that have peen put on the page.
/// </summary>
public void Populate(SharedPaperComponent.PaperBoundUserInterfaceState state)
{
if (state.Mode == SharedPaperComponent.PaperAction.Write)
{
Input.Visible = true;
}
bool isEditing = state.Mode == SharedPaperComponent.PaperAction.Write;
InputContainer.Visible = isEditing;
var msg = new FormattedMessage();
msg.AddMarkupPermissive(state.Text);
Label.SetMessage(msg);
// Remove any newlines from the end of the message. There can be a trailing
// new line at the end of user input, and we would like to display the input
// box immediately on the next line.
msg.AddMarkupPermissive(state.Text.TrimEnd('\r', '\n'));
WrittenTextLabel.SetMessage(msg);
WrittenTextLabel.Visible = state.Text.Length > 0;
BlankPaperIndicator.Visible = !isEditing && state.Text.Length == 0;
StampDisplay.RemoveAllChildren();
foreach(var stamper in state.StampedBy)
{
StampDisplay.AddChild(new StampWidget{ Stamper = stamper });
}
}
/// <summary>
/// BaseWindow interface. Allow users to drag UI around by grabbing
/// anywhere on the page (like FancyWindow) but try to calculate
/// reasonable dragging bounds because this UI can have round corners,
/// and it can be hard to judge where to click to resize.
/// </summary>
protected override DragMode GetDragModeFor(Vector2 relativeMousePos)
{
var mode = DragMode.Move;
// Be quite generous with resize margins:
if (relativeMousePos.Y < DRAG_MARGIN_SIZE)
{
mode |= DragMode.Top;
}
else if (relativeMousePos.Y > Size.Y - DRAG_MARGIN_SIZE)
{
mode |= DragMode.Bottom;
}
if (relativeMousePos.X < DRAG_MARGIN_SIZE)
{
mode |= DragMode.Left;
}
else if (relativeMousePos.X > Size.X - DRAG_MARGIN_SIZE)
{
mode |= DragMode.Right;
}
return mode & _allowedResizeModes;
}
}
}

View File

@@ -0,0 +1,31 @@
<paper:StampWidget xmlns="https://spacestation14.io"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
xmlns:style="clr-namespace:Content.Client.Stylesheets"
xmlns:gfx="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client"
xmlns:paper="clr-namespace:Content.Client.Paper.UI" HorizontalAlignment="Center" Margin="6">
<!--
<TextureButton Margin="6 6 6 2" MinSize="24 12"
TexturePath="/Textures/Interface/Nano/nano_stamp.192dpi.png">
-->
<BoxContainer Orientation="Vertical">
<PanelContainer>
<PanelContainer.PanelOverride>
<gfx:StyleBoxFlat BackgroundColor="{x:Static style:StyleNano.DangerousRedFore}" />
</PanelContainer.PanelOverride>
<Control MinSize="3 3" />
</PanelContainer>
<Label Name="StampedByLabel" StyleClasses="LabelHeadingBigger" FontColorOverride="{x:Static style:StyleNano.DangerousRedFore}" Margin="12 6 12 6"/>
<PanelContainer>
<PanelContainer.PanelOverride>
<gfx:StyleBoxFlat BackgroundColor="{x:Static style:StyleNano.DangerousRedFore}" />
</PanelContainer.PanelOverride>
<Control MinSize="3 3" />
</PanelContainer>
</BoxContainer>
</paper:StampWidget>

View File

@@ -0,0 +1,23 @@
using Content.Shared.Paper;
using Robust.Client.AutoGenerated;
using Robust.Client.UserInterface.Controls;
using Robust.Client.UserInterface.CustomControls;
using Robust.Client.UserInterface.XAML;
using Robust.Shared.Utility;
namespace Content.Client.Paper.UI
{
[GenerateTypedNameReferences]
public sealed partial class StampWidget : Container
{
public string? Stamper {
get => StampedByLabel.Text;
set => StampedByLabel.Text = value;
}
public StampWidget()
{
RobustXamlLoader.Load(this);
}
}
}

View File

@@ -485,6 +485,14 @@ namespace Content.Client.Stylesheets
};
insetBack.SetPatchMargin(StyleBox.Margin.All, 10);
// Default paper background:
var paperBackground = new StyleBoxTexture
{
Texture = resCache.GetTexture("/Textures/Interface/Paper/paper_background_default.svg.96dpi.png"),
Modulate = Color.FromHex("#eaedde"), // A light cream
};
paperBackground.SetPatchMargin(StyleBox.Margin.All, 16.0f);
var contextMenuExpansionTexture = resCache.GetTexture("/Textures/Interface/VerbIcons/group.svg.192dpi.png");
var verbMenuConfirmationTexture = resCache.GetTexture("/Textures/Interface/VerbIcons/group.svg.192dpi.png");
@@ -1323,6 +1331,16 @@ namespace Content.Client.Stylesheets
.Prop(Control.StylePropertyModulateSelf, Color.FromHex("#753131")),
// ---
// The default look of paper in UIs. Pages can have components which override this
Element<PanelContainer>().Class("PaperDefaultBorder")
.Prop(PanelContainer.StylePropertyPanel, paperBackground),
Element<RichTextLabel>().Class("PaperWrittenText")
.Prop(Label.StylePropertyFont, notoSans12)
.Prop(Control.StylePropertyModulateSelf, Color.FromHex("#111111")),
Element<LineEdit>().Class("PaperLineEdit")
.Prop(LineEdit.StylePropertyStyleBox, new StyleBoxEmpty()),
// Red Button ---
Element<Button>().Class("ButtonColorRed")
.Prop(Control.StylePropertyModulateSelf, ButtonColorDefaultRed),

View File

@@ -32,7 +32,7 @@ namespace Content.Server.Cargo.Components
/// The paper-type prototype to spawn with the order information.
/// </summary>
[DataField("printerOutput", customTypeSerializer: typeof(PrototypeIdSerializer<EntityPrototype>))]
public string PrinterOutput = "Paper";
public string PrinterOutput = "PaperCargoInvoice";
[DataField("receiverPort", customTypeSerializer: typeof(PrototypeIdSerializer<ReceiverPortPrototype>))]
public string ReceiverPort = "OrderReceiver";

View File

@@ -465,7 +465,7 @@ public sealed partial class CargoSystem
return;
// spawn a piece of paper.
var printed = EntityManager.SpawnEntity("Paper", coordinates);
var printed = EntityManager.SpawnEntity(component.PrinterOutput, coordinates);
if (!TryComp<PaperComponent>(printed, out var paper))
return;

View File

@@ -1,4 +1,4 @@
namespace Content.Server.Fax;
namespace Content.Server.Fax;
public static class FaxConstants
{
@@ -23,6 +23,7 @@ public static class FaxConstants
public const string FaxNameData = "fax_data_name";
public const string FaxPaperNameData = "fax_data_title";
public const string FaxPaperPrototypeData = "fax_data_prototype";
public const string FaxPaperContentData = "fax_data_content";
public const string FaxPaperStampStateData = "fax_data_stamp_state";
public const string FaxPaperStampedByData = "fax_data_stamped_by";

View File

@@ -1,5 +1,7 @@
using Content.Shared.Containers.ItemSlots;
using Robust.Shared.Audio;
using Robust.Shared.Prototypes;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
namespace Content.Server.Fax;
@@ -134,16 +136,20 @@ public sealed class FaxPrintout
[DataField("content")]
public string Content { get; }
[DataField("prototypeId", customTypeSerializer: typeof(PrototypeIdSerializer<EntityPrototype>))]
public string PrototypeId { get; }
[DataField("stampState")]
public string? StampState { get; }
[DataField("stampedBy")]
public List<string> StampedBy { get; }
public FaxPrintout(string content, string name, string? stampState = null, List<string>? stampedBy = null)
public FaxPrintout(string content, string name, string? prototypeId, string? stampState = null, List<string>? stampedBy = null)
{
Content = content;
Name = name;
PrototypeId = prototypeId ?? "";
StampState = stampState;
StampedBy = stampedBy ?? new List<string>();
}

View File

@@ -1,4 +1,4 @@
using Content.Server.Administration;
using Content.Server.Administration;
using Content.Server.Administration.Managers;
using Content.Server.Chat.Managers;
using Content.Server.DeviceNetwork;
@@ -275,8 +275,9 @@ public sealed class FaxSystem : EntitySystem
args.Data.TryGetValue(FaxConstants.FaxPaperStampStateData, out string? stampState);
args.Data.TryGetValue(FaxConstants.FaxPaperStampedByData, out List<string>? stampedBy);
args.Data.TryGetValue(FaxConstants.FaxPaperPrototypeData, out string? prototypeId);
var printout = new FaxPrintout(content, name, stampState, stampedBy);
var printout = new FaxPrintout(content, name, prototypeId, stampState, stampedBy);
Receive(uid, printout, args.SenderAddress);
break;
@@ -397,6 +398,15 @@ public sealed class FaxSystem : EntitySystem
{ FaxConstants.FaxPaperContentData, paper.Content },
};
if (metadata.EntityPrototype != null)
{
/// todo: Ideally, we could just make a copy of the whole entity when it's
/// faxed, in order to preserve visuals, etc.. This functionality isn't
/// available yet, so we'll pass along the originating prototypeId and fall
/// back to "Paper" in SpawnPaperFromQueue if we can't find one here.
payload[FaxConstants.FaxPaperPrototypeData] = metadata.EntityPrototype.ID;
}
if (paper.StampState != null)
{
payload[FaxConstants.FaxPaperStampStateData] = paper.StampState;
@@ -442,7 +452,9 @@ public sealed class FaxSystem : EntitySystem
return;
var printout = component.PrintingQueue.Dequeue();
var printed = EntityManager.SpawnEntity("Paper", Transform(uid).Coordinates);
var entityToSpawn = printout.PrototypeId.Length == 0 ? "Paper" : printout.PrototypeId;
var printed = EntityManager.SpawnEntity(entityToSpawn, Transform(uid).Coordinates);
if (TryComp<PaperComponent>(printed, out var paper))
{

View File

@@ -57,6 +57,7 @@ namespace Content.Server.Nuke
var printout = new FaxPrintout(
paperContent,
Loc.GetString("nuke-codes-fax-paper-name"),
null,
"paper_stamp-cent",
new() { Loc.GetString("stamp-component-stamped-name-centcom") });
_faxSystem.Receive(fax.Owner, printout, null, fax);

View File

@@ -166,7 +166,7 @@ namespace Content.Server.Paper
if (!Resolve(uid, ref paperComp))
return;
_uiSystem.GetUiOrNull(uid, PaperUiKey.Key)?.SetState(new PaperBoundUserInterfaceState(paperComp.Content, paperComp.Mode));
_uiSystem.GetUiOrNull(uid, PaperUiKey.Key)?.SetState(new PaperBoundUserInterfaceState(paperComp.Content, paperComp.StampedBy, paperComp.Mode));
}
}
}

View File

@@ -1,4 +1,6 @@
using Robust.Shared.Map;
using Robust.Shared.Prototypes;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
namespace Content.Shared.Cargo.Components;
@@ -28,4 +30,11 @@ public sealed class CargoShuttleComponent : Component
/// </summary>
[DataField("station")]
public EntityUid? Station;
/// <summary>
/// The paper-type prototype to spawn with the order information.
/// </summary>
[DataField("printerOutput", customTypeSerializer: typeof(PrototypeIdSerializer<EntityPrototype>))]
public string PrinterOutput = "PaperCargoInvoice";
}

View File

@@ -8,11 +8,13 @@ namespace Content.Shared.Paper
public sealed class PaperBoundUserInterfaceState : BoundUserInterfaceState
{
public readonly string Text;
public readonly List<string> StampedBy;
public readonly PaperAction Mode;
public PaperBoundUserInterfaceState(string text, PaperAction mode = PaperAction.Read)
public PaperBoundUserInterfaceState(string text, List<string> stampedBy, PaperAction mode = PaperAction.Read)
{
Text = text;
StampedBy = stampedBy;
Mode = mode;
}
}

View File

@@ -1,6 +1,8 @@
### UI
paper-ui-blank-page-message = This page intentionally left blank
# Shown when paper with words examined details
paper-component-examine-detail-has-words = {CAPITALIZE(THE($paper))} has something written on it.
# Shown when paper with stamps examined

View File

@@ -1,4 +1,4 @@
- type: entity
- type: entity
name: book
parent: BaseItem
id: BookBase
@@ -21,6 +21,10 @@
- type: Tag
tags:
- Book
- type: PaperVisuals
backgroundImagePath: "/Textures/Interface/Paper/paper_background_book.svg.96dpi.png"
backgroundPatchMargin: 23.0, 16.0, 14.0, 15.0
contentMargin: 20.0, 20.0, 20.0, 20.0
- type: entity
parent: BookBase

View File

@@ -32,6 +32,102 @@
- type: PaperVisuals
- type: Recyclable
- type: entity
name: office paper
parent: Paper
id: PaperOffice
description: 'A plain sheet of office paper.'
components:
- type: PaperVisuals
backgroundImagePath: "/Textures/Interface/Paper/paper_background_default.svg.96dpi.png"
contentImagePath: "/Textures/Interface/Paper/paper_content_lined.svg.96dpi.png"
backgroundPatchMargin: 16.0, 16.0, 16.0, 16.0
contentMargin: 16.0, 16.0, 16.0, 16.0
- type: entity
name: artifact analyzer printout
parent: Paper
id: PaperArtifactAnalyzer
description: 'The readout of a device forgotten to time'
components:
- type: Sprite
sprite: Objects/Misc/bureaucracy.rsi
netsync: false
layers:
- state: paper_dotmatrix
- state: paper_dotmatrix_words
map: ["enum.PaperVisualLayers.Writing"]
visible: false
- state: paper_stamp-generic
map: ["enum.PaperVisualLayers.Stamp"]
visible: false
- type: PaperVisuals
headerImagePath: "/Textures/Interface/Paper/paper_heading_artifact_analyzer.svg.96dpi.png"
headerMargin: 0.0, 0.0, 0.0, 16.0
backgroundImagePath: "/Textures/Interface/Paper/paper_background_dotmatrix.svg.96dpi.png"
backgroundImageTile: true
backgroundPatchMargin: 37.0, 0.0, 37.0, 0.0
contentImagePath: "/Textures/Interface/Paper/paper_content_dotmatrix.svg.96dpi.png"
contentImageNumLines: 2
contentMargin: 16.0, 16.0, 16.0, 0.0
# Make this a wide dot-matrix printer
maxWritableArea: 400.0, 0.0
- type: entity
name: captain's thoughts
parent: Paper
id: PaperCaptainsThoughts
description: "A page of the captain's journal. In luxurious lavender."
components:
- type: Sprite
sprite: Objects/Misc/bureaucracy.rsi
netsync: false
layers:
- state: paper
color: "#e6e6fa"
- state: paper_words
map: ["enum.PaperVisualLayers.Writing"]
color: "#e6e6fa"
visible: false
- state: paper_stamp-generic
map: ["enum.PaperVisualLayers.Stamp"]
visible: false
- type: PaperVisuals
headerImagePath: "/Textures/Interface/Paper/paper_heading_captains_thoughts.svg.96dpi.png"
backgroundImagePath: "/Textures/Interface/Paper/paper_background_default.svg.96dpi.png"
backgroundModulate: "#e6e6fa"
backgroundPatchMargin: 16.0, 16.0, 16.0, 16.0
contentMargin: 32.0, 16.0, 32.0, 0.0
- type: entity
name: cargo invoice
parent: Paper
id: PaperCargoInvoice
description: 'A single unit of bureaucracy.'
components:
- type: Sprite
sprite: Objects/Misc/bureaucracy.rsi
netsync: false
layers:
- state: paper
color: "#f7e574"
- state: paper_words
map: ["enum.PaperVisualLayers.Writing"]
color: "#f7e574"
visible: false
- state: paper_stamp-generic
map: ["enum.PaperVisualLayers.Stamp"]
visible: false
- type: PaperVisuals
backgroundImagePath: "/Textures/Interface/Paper/paper_background_default.svg.96dpi.png"
contentImagePath: "/Textures/Interface/Paper/paper_content_lined.svg.96dpi.png"
backgroundModulate: "#f7e574"
contentImageModulate: "#f7e574"
backgroundPatchMargin: 16.0, 16.0, 16.0, 16.0
contentMargin: 16.0, 16.0, 16.0, 16.0
headerImagePath: "/Textures/Interface/Paper/paper_heading_cargo_invoice.svg.96dpi.png"
headerMargin: 0.0, 12.0, 0.0, 0.0
- type: entity
parent: Paper
id: PaperWritten
@@ -171,11 +267,11 @@
contents:
- id: Paper
prob: 0.5
- id: Paper
- id: PaperOffice
prob: 0.4
- id: Paper
prob: 0.3
- id: Paper
- id: PaperOffice
prob: 0.2
- id: Paper
prob: 0.2

View File

@@ -370,6 +370,7 @@
state: tech_key
- type: ResearchClient
- type: AnalysisConsole
reportEntityId: PaperArtifactAnalyzer
- type: DeviceList
- type: DeviceNetwork
deviceNetId: Wired

View File

@@ -17,10 +17,39 @@
netsync: false
- type: DiseaseDiagnoser
- type: DiseaseMachine
machineOutput: Paper
machineOutput: DiagnosisReportPaper
- type: Appearance
- type: DiseaseMachineVisuals
idleState: icon
runningState: running
- type: Machine
board: DiagnoserMachineCircuitboard
- type: entity
name: disease diagnoser report
parent: Paper
id: DiagnosisReportPaper
description: 'A chilling medical receipt.'
components:
- type: Sprite
sprite: Objects/Misc/bureaucracy.rsi
netsync: false
layers:
- state: paper_receipt
- state: paper_receipt_words
map: ["enum.PaperVisualLayers.Writing"]
visible: false
- state: paper_stamp-generic
map: ["enum.PaperVisualLayers.Stamp"]
visible: false
- type: PaperVisuals
backgroundImagePath: "/Textures/Interface/Paper/paper_background_perforated.svg.96dpi.png"
headerImagePath: "/Textures/Interface/Paper/paper_heading_virus.svg.96dpi.png"
headerMargin: 0.0, 0.0, 0.0, 6.0
backgroundImageTile: true
backgroundPatchMargin: 0.0, 6.0, 0.0, 6.0
contentMargin: 12.0, 0.0, 12.0, 0.0
# This is a narrow piece of paper
maxWritableArea: 128.0, 0.0

View File

@@ -0,0 +1,77 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="12"
height="16"
viewBox="0 0 12 16"
fill="none"
version="1.1"
id="svg4"
sodipodi:docname="lined_paper.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
inkscape:export-filename="lined_paper.svg.96dpi.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<metadata
id="metadata10">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1916"
inkscape:window-height="1034"
id="namedview6"
showgrid="false"
inkscape:snap-bbox="true"
inkscape:bbox-paths="false"
inkscape:bbox-nodes="true"
inkscape:snap-object-midpoints="false"
inkscape:snap-nodes="false"
inkscape:snap-page="true"
inkscape:zoom="34.643064"
inkscape:cx="4.1422433"
inkscape:cy="9.3380886"
inkscape:window-x="0"
inkscape:window-y="44"
inkscape:window-maximized="1"
inkscape:current-layer="svg4"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<rect
style="mix-blend-mode:normal;fill:#f5f5ea;fill-opacity:1;stroke:none;stroke-width:1.49485;stroke-linejoin:round;stroke-opacity:1"
id="rect983"
width="12"
height="16"
x="0"
y="0" />
<rect
style="mix-blend-mode:normal;fill:#2f3cf1;fill-opacity:0.176471;stroke:none;stroke-width:1.51926;stroke-linejoin:round;stroke-opacity:0.175122"
id="rect925"
width="12"
height="1"
x="0"
y="1" />
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 152 B

View File

@@ -0,0 +1,143 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="38"
height="32"
viewBox="0 0 38 31.999999"
fill="none"
version="1.1"
id="svg4"
sodipodi:docname="paper_background_book.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
inkscape:export-filename="paper_background_book.svg.96dpi.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<metadata
id="metadata10">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8">
<inkscape:path-effect
effect="powerclip"
id="path-effect1116"
is_visible="true"
lpeversion="1"
inverse="true"
flatten="false"
hide_clip="false"
message="Use fill-rule evenodd on &lt;b&gt;fill and stroke&lt;/b&gt; dialog if no flatten result after convert clip to paths." />
<linearGradient
inkscape:collect="always"
id="linearGradient997">
<stop
style="stop-color:#999999;stop-opacity:1;"
offset="0"
id="stop993" />
<stop
style="stop-color:#999999;stop-opacity:0;"
offset="1"
id="stop995" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient997"
id="linearGradient999"
x1="0"
y1="15.75"
x2="31"
y2="15.75"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,-4.75)" />
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1916"
inkscape:window-height="1034"
id="namedview6"
showgrid="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="false"
inkscape:bbox-nodes="true"
inkscape:snap-object-midpoints="false"
inkscape:snap-nodes="false"
inkscape:snap-page="true"
inkscape:zoom="11.313708"
inkscape:cx="3.0052038"
inkscape:cy="12.860505"
inkscape:window-x="0"
inkscape:window-y="44"
inkscape:window-maximized="1"
inkscape:current-layer="svg4"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid453"
originx="0"
originy="0" />
</sodipodi:namedview>
<rect
style="opacity:1;fill:#808080;fill-opacity:1;stroke-width:2.17427;stroke-linejoin:round"
id="rect296"
width="38"
height="32"
x="0"
y="0"
ry="13.270285" />
<rect
style="fill:#44525a;fill-opacity:1;stroke-width:2.17427;stroke-linejoin:round"
id="rect350"
width="16"
height="32"
x="0"
y="0"
ry="0" />
<rect
style="opacity:1;fill:#000000;fill-opacity:0.322916;stroke-width:2.17427;stroke-linejoin:round"
id="rect1038"
width="37"
height="14"
x="-4"
y="10"
ry="4"
clip-path="none" />
<rect
style="opacity:1;fill:#e3dbdb;fill-opacity:1;stroke-width:2.17427;stroke-linejoin:round"
id="rect346"
width="36"
height="14"
x="-5"
y="9"
ry="4.25" />
<rect
style="opacity:1;fill:url(#linearGradient999);fill-opacity:1;stroke-width:2.17427;stroke-linejoin:round"
id="rect377"
width="31"
height="14"
x="0"
y="9"
ry="0" />
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 635 B

View File

@@ -0,0 +1,70 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="32"
height="32"
viewBox="0 0 32 32"
fill="none"
version="1.1"
id="svg4"
sodipodi:docname="paper_background_default.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
inkscape:export-filename="paper_background_default.svg.96dpi.png"
inkscape:export-xdpi="400"
inkscape:export-ydpi="400"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<metadata
id="metadata10">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1916"
inkscape:window-height="1034"
id="namedview6"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="11.136932"
inkscape:cx="5.3425845"
inkscape:cy="17.015458"
inkscape:window-x="0"
inkscape:window-y="44"
inkscape:window-maximized="0"
inkscape:current-layer="svg4"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<rect
x="0"
y="0"
width="32"
height="32"
rx="5"
fill="#ffffff"
id="rect2" />
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,214 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="76"
height="32"
viewBox="0 0 76 32"
fill="none"
version="1.1"
id="svg4"
sodipodi:docname="paper_background_dotmatrix.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
inkscape:export-filename="paper_background_dotmatrix.svg.96dpi.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<metadata
id="metadata10">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8">
<inkscape:path-effect
effect="powermask"
id="path-effect2519"
is_visible="true"
lpeversion="1"
uri="#mask-powermask-path-effect2519"
invert="false"
hide_mask="false"
background="true"
background_color="#ffffffff" />
<filter
id="mask-powermask-path-effect1163_inverse"
inkscape:label="filtermask-powermask-path-effect1163"
style="color-interpolation-filters:sRGB"
height="100"
width="100"
x="-50"
y="-50">
<feColorMatrix
id="mask-powermask-path-effect1163_primitive1"
values="1"
type="saturate"
result="fbSourceGraphic" />
<feColorMatrix
id="mask-powermask-path-effect1163_primitive2"
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0 "
in="fbSourceGraphic" />
</filter>
<mask
maskUnits="userSpaceOnUse"
id="mask2602">
<path
id="mask-powermask-path-effect2634_box"
style="fill:#ffffff;fill-opacity:1"
d="M -1,-0.96563349 H 77 V 33 H -1 Z" />
<g
id="g2632"
style="">
<g
id="g2612">
<circle
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.0923076;stroke-linejoin:round;stroke-opacity:1"
id="circle2604"
cx="16"
cy="0"
r="12" />
<circle
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.0923076;stroke-linejoin:round;stroke-opacity:1"
id="circle2606"
cx="60"
cy="0"
r="12" />
<circle
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.0923076;stroke-linejoin:round;stroke-opacity:1"
id="circle2608"
cx="16"
cy="32"
r="12" />
<circle
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.0923076;stroke-linejoin:round;stroke-opacity:1"
id="circle2610"
cx="60"
cy="32"
r="12" />
</g>
<g
id="g2630"
style="fill:#000000;fill-opacity:0.797456;stroke:none;stroke-opacity:1">
<circle
style="fill:#000000;fill-opacity:0.797456;stroke:none;stroke-width:0.133333;stroke-linejoin:round;stroke-opacity:1"
id="circle2614"
cx="34"
cy="4"
r="2" />
<circle
style="fill:#000000;fill-opacity:0.797456;stroke:none;stroke-width:0.133333;stroke-linejoin:round;stroke-opacity:1"
id="circle2616"
cx="42"
cy="4"
r="2" />
<circle
style="fill:#000000;fill-opacity:0.797456;stroke:none;stroke-width:0.133333;stroke-linejoin:round;stroke-opacity:1"
id="circle2618"
cx="34"
cy="28"
r="2" />
<circle
style="fill:#000000;fill-opacity:0.797456;stroke:none;stroke-width:0.133333;stroke-linejoin:round;stroke-opacity:1"
id="circle2620"
cx="42"
cy="28"
r="2" />
<circle
style="fill:#000000;fill-opacity:0.797456;stroke:none;stroke-width:0.133333;stroke-linejoin:round;stroke-opacity:1"
id="circle2622"
cx="34"
cy="20"
r="2" />
<circle
style="fill:#000000;fill-opacity:0.797456;stroke:none;stroke-width:0.133333;stroke-linejoin:round;stroke-opacity:1"
id="circle2624"
cx="42"
cy="20"
r="2" />
<circle
style="fill:#000000;fill-opacity:0.797456;stroke:none;stroke-width:0.133333;stroke-linejoin:round;stroke-opacity:1"
id="circle2626"
cx="34"
cy="12"
r="2" />
<circle
style="fill:#000000;fill-opacity:0.797456;stroke:none;stroke-width:0.133333;stroke-linejoin:round;stroke-opacity:1"
id="circle2628"
cx="42"
cy="12"
r="2" />
</g>
</g>
</mask>
<filter
id="mask-powermask-path-effect2634_inverse"
inkscape:label="filtermask-powermask-path-effect2634"
style="color-interpolation-filters:sRGB"
height="100"
width="100"
x="-50"
y="-50">
<feColorMatrix
id="mask-powermask-path-effect2634_primitive1"
values="1"
type="saturate"
result="fbSourceGraphic" />
<feColorMatrix
id="mask-powermask-path-effect2634_primitive2"
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0 "
in="fbSourceGraphic" />
</filter>
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1916"
inkscape:window-height="1034"
id="namedview6"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="8.4422326"
inkscape:cx="37.667761"
inkscape:cy="19.130011"
inkscape:window-x="0"
inkscape:window-y="44"
inkscape:window-maximized="0"
inkscape:current-layer="svg4"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showguides="false">
<inkscape:grid
type="xygrid"
id="grid233"
originx="0"
originy="0" />
</sodipodi:namedview>
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-linejoin:round;stroke-opacity:1"
id="rect1200"
width="76"
height="31.965633"
x="0"
y="0.034366511"
mask="url(#mask2602)" />
</svg>

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 702 B

View File

@@ -0,0 +1,73 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="13"
height="13"
viewBox="0 0 13 12.999999"
fill="none"
version="1.1"
id="svg4"
sodipodi:docname="paper_background_perforated.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
inkscape:export-filename="paper_background_perforated.svg.96dpi.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<metadata
id="metadata10">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1916"
inkscape:window-height="1034"
id="namedview6"
showgrid="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="false"
inkscape:bbox-nodes="true"
inkscape:snap-object-midpoints="false"
inkscape:snap-nodes="false"
inkscape:snap-page="true"
inkscape:zoom="31.979925"
inkscape:cx="5.3627393"
inkscape:cy="7.9268478"
inkscape:window-x="0"
inkscape:window-y="44"
inkscape:window-maximized="1"
inkscape:current-layer="svg4"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid453"
originx="0"
originy="0" />
</sodipodi:namedview>
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 7,0 6,6 V 7 L 7,13 H 6 L 0,7 V 6 L 6,0 Z"
id="path457" />
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 206 B

View File

@@ -0,0 +1,91 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="12"
height="32"
viewBox="0 0 12 32"
fill="none"
version="1.1"
id="svg4"
sodipodi:docname="paper_content_dotmatrix.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
inkscape:export-filename="paper_content_dotmatrix.svg.96dpi.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<metadata
id="metadata10">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1916"
inkscape:window-height="1034"
id="namedview6"
showgrid="false"
inkscape:snap-bbox="true"
inkscape:bbox-paths="false"
inkscape:bbox-nodes="true"
inkscape:snap-object-midpoints="false"
inkscape:snap-nodes="false"
inkscape:snap-page="true"
inkscape:zoom="25.462146"
inkscape:cx="7.7958863"
inkscape:cy="16.200519"
inkscape:window-x="0"
inkscape:window-y="44"
inkscape:window-maximized="1"
inkscape:current-layer="svg4"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<rect
style="mix-blend-mode:normal;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.49485;stroke-linejoin:round;stroke-opacity:1"
id="rect983"
width="12"
height="16"
x="0"
y="0" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke-width:3.47338;stroke-linejoin:round"
id="rect231"
width="12"
height="16"
x="0"
y="0.21811378" />
<rect
style="fill:#c6fbb6;fill-opacity:0.300671;stroke-width:3.13086;stroke-linejoin:round"
id="rect339"
width="12"
height="12.999999"
x="0"
y="19" />
<rect
style="fill:#c6fbb6;fill-opacity:0.300671;stroke-width:1.50402;stroke-linejoin:round"
id="rect1539"
width="12"
height="3"
x="0"
y="0" />
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 176 B

View File

@@ -0,0 +1,77 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="12"
height="16"
viewBox="0 0 12 16"
fill="none"
version="1.1"
id="svg4"
sodipodi:docname="paper_content_lined.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
inkscape:export-filename="paper_content_lined.svg.96dpi.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<metadata
id="metadata10">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1916"
inkscape:window-height="1034"
id="namedview6"
showgrid="false"
inkscape:snap-bbox="true"
inkscape:bbox-paths="false"
inkscape:bbox-nodes="true"
inkscape:snap-object-midpoints="false"
inkscape:snap-nodes="false"
inkscape:snap-page="true"
inkscape:zoom="34.643064"
inkscape:cx="-2.6123555"
inkscape:cy="9.3958202"
inkscape:window-x="0"
inkscape:window-y="44"
inkscape:window-maximized="1"
inkscape:current-layer="svg4"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<rect
style="mix-blend-mode:normal;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.49485;stroke-linejoin:round;stroke-opacity:1"
id="rect983"
width="12"
height="16"
x="0"
y="0" />
<rect
style="mix-blend-mode:normal;fill:#2f3cf1;fill-opacity:0.176471;stroke:none;stroke-width:1.51926;stroke-linejoin:round;stroke-opacity:0.175122"
id="rect925"
width="12"
height="1"
x="0"
y="1" />
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 153 B

View File

@@ -0,0 +1,256 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="211"
height="60"
viewBox="0 0 211 60"
fill="none"
version="1.1"
id="svg4"
sodipodi:docname="paper_heading_artifact_analyzer.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
inkscape:export-filename="paper_heading_artifact_analyzer.svg.96dpi.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<metadata
id="metadata10">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8">
<rect
x="-30.967747"
y="-32.336391"
width="277.27594"
height="150.43042"
id="rect462" />
<rect
x="12.500253"
y="14.598581"
width="334.51892"
height="47.488827"
id="rect348" />
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1398">
<g
id="g1414"
transform="skewX(-0.64194233)">
<rect
style="fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:1.418;stroke-linejoin:round"
id="rect1400"
width="193.3102"
height="4.4629641"
x="0"
y="10.397732" />
<rect
style="fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:1.418;stroke-linejoin:round"
id="rect1402"
width="193.3102"
height="4.4629641"
x="0"
y="19.308941" />
<rect
style="fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:1.418;stroke-linejoin:round"
id="rect1404"
width="193.3102"
height="4.4629641"
x="0"
y="28.220152" />
<rect
style="fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:1.418;stroke-linejoin:round"
id="rect1406"
width="193.3102"
height="4.4629641"
x="0"
y="37.131363" />
<rect
style="fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:1.418;stroke-linejoin:round"
id="rect1408"
width="193.3102"
height="4.4629641"
x="0"
y="46.042572" />
<rect
style="fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:1.418;stroke-linejoin:round"
id="rect1410"
width="193.3102"
height="4.4629641"
x="0"
y="54.953781" />
<rect
style="fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:1.418;stroke-linejoin:round"
id="rect1412"
width="27.770258"
height="8.9112129"
x="52.285023"
y="30.451633" />
</g>
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1608">
<g
id="g1630"
transform="scale(0.96824607,1.0327953)">
<rect
style="fill:#00a700;fill-opacity:1;stroke-width:0.0886665;stroke-linejoin:round"
id="rect1610"
width="145.43811"
height="3.8830388"
x="0"
y="1.1368795e-05" />
<rect
style="fill:#00a700;fill-opacity:1;stroke-width:0.0886665;stroke-linejoin:round"
id="rect1612"
width="145.43811"
height="3.8830388"
x="0"
y="6.207139" />
<rect
style="fill:#00a700;fill-opacity:1;stroke-width:0.0886665;stroke-linejoin:round"
id="rect1614"
width="145.43811"
height="3.8830388"
x="0"
y="12.414267" />
<rect
style="fill:#00a700;fill-opacity:1;stroke-width:0.0886665;stroke-linejoin:round"
id="rect1616"
width="145.43811"
height="3.8830388"
x="0"
y="18.621393" />
<rect
style="fill:#00a700;fill-opacity:1;stroke-width:0.0886665;stroke-linejoin:round"
id="rect1618"
width="145.43811"
height="3.8830388"
x="0"
y="24.828522" />
<rect
style="fill:#00a700;fill-opacity:1;stroke-width:0.0886665;stroke-linejoin:round"
id="rect1620"
width="145.43811"
height="3.8830388"
x="0"
y="31.035648" />
<rect
style="fill:#00a700;fill-opacity:1;stroke-width:0.0886665;stroke-linejoin:round"
id="rect1622"
width="145.43811"
height="3.8830388"
x="0"
y="37.242775" />
<rect
style="fill:#00a700;fill-opacity:1;stroke-width:0.0886665;stroke-linejoin:round"
id="rect1624"
width="145.43811"
height="3.8830388"
x="0"
y="43.449905" />
<rect
style="fill:#00a700;fill-opacity:1;stroke-width:0.0886665;stroke-linejoin:round"
id="rect1626"
width="145.43811"
height="3.8830388"
x="0"
y="55.864159" />
<rect
style="fill:#00a700;fill-opacity:1;stroke-width:0.0886665;stroke-linejoin:round"
id="rect1628"
width="145.43811"
height="3.8830388"
x="0"
y="49.657032" />
</g>
</clipPath>
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1916"
inkscape:window-height="1034"
id="namedview6"
showgrid="false"
inkscape:snap-bbox="true"
inkscape:bbox-paths="false"
inkscape:bbox-nodes="true"
inkscape:snap-object-midpoints="false"
inkscape:snap-nodes="false"
inkscape:snap-page="true"
inkscape:zoom="2.1111586"
inkscape:cx="131.91808"
inkscape:cy="129.54972"
inkscape:window-x="0"
inkscape:window-y="44"
inkscape:window-maximized="1"
inkscape:current-layer="svg4"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showguides="true" />
<g
aria-label="NTX"
transform="scale(1.0327953,0.96824607)"
id="text1677"
clip-path="url(#clipPath1608)"
style="font-size:87.0333px;line-height:1.25;display:inline;fill:#2c3b8c;stroke-width:2.17583">
<path
d="M 53.264381,8.4422421 H 48.129416 V 61.706623 H 38.990919 Q 36.292887,57.006825 34.378154,53.264393 30.722756,45.866562 24.108225,32.8986 19.49546,24.021203 15.578961,14.621607 V 61.706623 H 1.8276993 v -8.18113 H 6.9626642 V 8.9644419 H 1.8276993 V 0.26111165 H 17.580727 Q 22.976792,11.836541 28.19879,22.193504 36.205854,38.207631 39.426086,46.127662 V 0.26111165 h 13.838295 z"
style="font-family:City;-inkscape-font-specification:City"
id="path315" />
<path
d="M 90.6887,17.493706 V 8.4422421 H 81.898337 V 53.525493 h 5.047931 v 8.18113 H 67.015642 v -8.18113 H 72.23764 V 8.4422421 H 63.447276 V 17.493706 H 54.395813 V 0.26111165 h 45.34435 V 17.493706 Z"
style="font-family:City;-inkscape-font-specification:City"
id="path317" />
<path
d="m 142.73461,8.4422421 h -4.87387 l -10.96619,22.1064589 11.48839,22.976792 h 4.78684 v 8.18113 h -11.4884 L 121.49848,39.600164 110.88042,61.706623 H 99.740158 v -8.18113 h 4.873862 L 116.18945,30.548701 105.13622,8.4422421 h -4.78683 V 0.26111165 h 11.66246 l 9.48663,21.06205935 10.1829,-21.06205935 h 11.05323 z"
style="font-family:City;-inkscape-font-specification:City"
id="path319" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Bars" />
<g
aria-label="Labs"
id="text2013"
style="font-size:41.0143px;line-height:1.25;fill:#5e975b;stroke-width:1.02536">
<path
d="m 135.21715,31.07382 h 2.50187 v 20.055993 h 14.84718 v 2.460859 h -17.34905 z"
style="font-family:'IBM 3270 Semi-Narrow';-inkscape-font-specification:'IBM 3270 Semi-Narrow'"
id="path418" />
<path
d="m 167.82354,51.129813 v -5.331859 h -8.24387 l -1.76362,1.80463 v 1.7226 l 1.7226,1.845644 z m 2.46086,0.04102 h 2.50187 v 2.378829 h -13.7808 q -0.49217,0 -0.8613,-0.369128 l -2.37883,-2.542887 q -0.36913,-0.369129 -0.36913,-0.8613 v -2.66593 q 0,-0.492172 0.36913,-0.8613 l 2.41984,-2.501873 q 0.32812,-0.328114 0.8613,-0.328114 h 8.77706 v -3.199116 l -1.68158,-1.7226 h -8.36692 v -2.419844 h 8.85909 q 0.49217,0 0.8613,0.369129 l 2.41984,2.460858 q 0.36913,0.369128 0.36913,0.820286 z"
style="font-family:'IBM 3270 Semi-Narrow';-inkscape-font-specification:'IBM 3270 Semi-Narrow'"
id="path420" />
<path
d="M 175.57527,53.467629 V 28.571948 h 2.46086 v 7.546631 h 6.39823 q 0.49217,0 0.8613,0.369129 l 4.8807,4.96273 q 0.36913,0.369129 0.36913,0.861301 v 5.044759 q 0,0.492171 -0.36913,0.8613 l -5.04476,4.962731 q -0.2871,0.2871 -0.8613,0.2871 z m 2.46086,-2.337816 h 5.742 l 4.34751,-4.265487 V 42.80391 l -4.18345,-4.265487 h -5.90606 z"
style="font-family:'IBM 3270 Semi-Narrow';-inkscape-font-specification:'IBM 3270 Semi-Narrow'"
id="path422" />
<path
d="m 208.14065,40.343052 -1.80463,-1.804629 h -6.31621 l -1.18941,1.230429 11.44299,9.064161 q 0.45116,0.369128 0.45116,0.902314 0,0.5742 -0.36913,0.943329 l -2.5839,2.542887 q -0.36913,0.369129 -0.8613,0.369129 l -7.38258,-0.04101 q -0.53318,0 -0.8613,-0.328114 l -2.54288,-2.460858 q -0.36913,-0.369129 -0.36913,-0.902315 v -1.1484 h 2.46085 v 0.615214 l 1.80463,1.763615 6.39824,0.04101 1.23042,-1.230429 -11.40197,-9.023146 q -0.36913,-0.2871 -0.45116,-0.902314 -0.082,-0.533186 0.32812,-0.943329 l 2.46085,-2.583901 q 0.36913,-0.369129 0.90232,-0.369129 h 7.34156 q 0.49217,0 0.8613,0.369129 l 2.54289,2.501872 q 0.36912,0.369129 0.36912,0.8613 v 1.312458 h -2.46085 z"
style="font-family:'IBM 3270 Semi-Narrow';-inkscape-font-specification:'IBM 3270 Semi-Narrow'"
id="path424" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@@ -0,0 +1,187 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="256"
height="64"
viewBox="0 0 256 64"
fill="none"
version="1.1"
id="svg4"
sodipodi:docname="paper_heading_captains_thoughts.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
inkscape:export-filename="paper_heading_captains_thoughts.svg.96dpi.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<metadata
id="metadata10">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8">
<rect
x="12.500253"
y="14.598581"
width="334.51892"
height="47.488827"
id="rect348" />
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1916"
inkscape:window-height="1034"
id="namedview6"
showgrid="false"
inkscape:snap-bbox="true"
inkscape:bbox-paths="false"
inkscape:bbox-nodes="true"
inkscape:snap-object-midpoints="false"
inkscape:snap-nodes="false"
inkscape:snap-page="true"
inkscape:zoom="1.6214301"
inkscape:cx="-37.92948"
inkscape:cy="94.052775"
inkscape:window-x="0"
inkscape:window-y="44"
inkscape:window-maximized="1"
inkscape:current-layer="layer2"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<g
inkscape:groupmode="layer"
id="layer1"
inkscape:label="Decoration"
style="display:inline">
<circle
style="fill:#2c4597;fill-opacity:1;stroke:none;stroke-width:1.418;stroke-linejoin:round"
id="path1117"
cx="128"
cy="54.980602"
r="2.8490536" />
<path
style="fill:#2c4597;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 121.76153,57.829655 V 52.131549 L 27.172269,54.980602 Z"
id="path1863"
sodipodi:nodetypes="cccc" />
<path
style="fill:#2c4597;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 134.23847,57.829656 V 52.13155 l 94.58926,2.849053 z"
id="path2192"
sodipodi:nodetypes="cccc" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Text">
<g
aria-label="Thoughts of..."
transform="matrix(0.54169298,0,0,0.54169298,1.6702018,-2.3409923)"
id="text346"
style="font-size:40px;line-height:1.25;white-space:pre;shape-inside:url(#rect348);display:inline;fill:#a5b4e5">
<path
d="m 25.42,50.992664 h -3.6 v -25.4 H 12.9 v -3.16 h 21.4 v 3.16 h -8.88 z"
id="path297" />
<path
d="m 41.65999,29.512664 q 0,1.6 -0.2,3 h 0.24 q 1.04,-1.64 2.8,-2.48 1.8,-0.84 3.88,-0.84 3.92,0 5.88,1.88 1.96,1.84 1.96,5.96 v 13.96 h -3.48 v -13.72 q 0,-5.16 -4.8,-5.16 -3.6,0 -4.96,2.04 -1.32,2 -1.32,5.76 v 11.08 h -3.52 v -30.4 h 3.52 z"
id="path299" />
<path
d="m 81.499991,40.232664 q 0,5.32 -2.72,8.24 -2.68,2.92 -7.28,2.92 -2.84,0 -5.08,-1.28 -2.2,-1.32 -3.48,-3.8 -1.28,-2.52 -1.28,-6.08 0,-5.32 2.68,-8.2 2.68,-2.88 7.28,-2.88 2.92,0 5.12,1.32 2.24,1.28 3.48,3.76 1.28,2.44 1.28,6 z m -16.2,0 q 0,3.8 1.48,6.04 1.52,2.2 4.8,2.2 3.24,0 4.76,-2.2 1.52,-2.24 1.52,-6.04 0,-3.8 -1.52,-5.96 -1.52,-2.16 -4.8,-2.16 -3.28,0 -4.76,2.16 -1.48,2.16 -1.48,5.96 z"
id="path301" />
<path
d="m 104.97997,29.552664 v 21.44 h -2.88 l -0.52,-2.84 h -0.16 q -1.04,1.68 -2.879997,2.48 -1.84,0.76 -3.92,0.76 -3.88,0 -5.84,-1.84 -1.96,-1.88 -1.96,-5.96 v -14.04 h 3.56 v 13.8 q 0,5.12 4.76,5.12 3.56,0 4.919997,-2 1.4,-2 1.4,-5.76 v -11.16 z"
id="path303" />
<path
d="m 119.37997,29.152664 q 2.12,0 3.8,0.8 1.72,0.8 2.92,2.44 h 0.2 l 0.48,-2.84 h 2.8 v 21.8 q 0,4.6 -2.36,6.92 -2.32,2.32 -7.24,2.32 -4.72,0 -7.72,-1.36 v -3.24 q 3.16,1.68 7.92,1.68 2.76,0 4.32,-1.64 1.6,-1.6 1.6,-4.4 v -0.84 q 0,-0.48 0.04,-1.36 0.04,-0.92 0.08,-1.28 h -0.16 q -2.16,3.24 -6.64,3.24 -4.16,0 -6.52,-2.92 -2.32,-2.92 -2.32,-8.16 0,-5.12 2.32,-8.12 2.36,-3.04 6.48,-3.04 z m 0.48,2.96 q -2.68,0 -4.16,2.16 -1.48,2.12 -1.48,6.08 0,3.96 1.44,6.08 1.48,2.08 4.28,2.08 3.24,0 4.72,-1.72 1.48,-1.76 1.48,-5.64 v -0.84 q 0,-4.4 -1.52,-6.28 -1.52,-1.92 -4.76,-1.92 z"
id="path305" />
<path
d="m 139.89997,29.512664 q 0,1.6 -0.2,3 h 0.24 q 1.04,-1.64 2.8,-2.48 1.8,-0.84 3.88,-0.84 3.92,0 5.88,1.88 1.96,1.84 1.96,5.96 v 13.96 h -3.48 v -13.72 q 0,-5.16 -4.8,-5.16 -3.6,0 -4.96,2.04 -1.32,2 -1.32,5.76 v 11.08 h -3.52 v -30.4 h 3.52 z"
id="path307" />
<path
d="m 168.25997,48.512664 q 0.8,0 1.64,-0.12 0.84,-0.16 1.36,-0.32 v 2.68 q -0.56,0.28 -1.6,0.44 -1.04,0.2 -2,0.2 -1.68,0 -3.12,-0.56 -1.4,-0.6 -2.28,-2.04 -0.88,-1.44 -0.88,-4.04 v -12.48 h -3.04 v -1.68 l 3.08,-1.4 1.4,-4.56 h 2.08 v 4.92 h 6.2 v 2.72 h -6.2 v 12.4 q 0,1.96 0.92,2.92 0.96,0.92 2.44,0.92 z"
id="path309" />
<path
d="m 189.49997,45.072664 q 0,3.12 -2.32,4.72 -2.32,1.6 -6.24,1.6 -2.24,0 -3.88,-0.36 -1.6,-0.36 -2.84,-1 v -3.2 q 1.28,0.64 3.08,1.2 1.84,0.52 3.72,0.52 2.68,0 3.88,-0.84 1.2,-0.88 1.2,-2.32 0,-0.8 -0.44,-1.44 -0.44,-0.64 -1.6,-1.28 -1.12,-0.64 -3.24,-1.44 -2.08,-0.8 -3.56,-1.6 -1.48,-0.8 -2.28,-1.92 -0.8,-1.12 -0.8,-2.88 0,-2.72 2.2,-4.2 2.24,-1.48 5.84,-1.48 1.96,0 3.64,0.4 1.72,0.36 3.2,1.04 l -1.2,2.8 q -1.36,-0.56 -2.84,-0.96 -1.48,-0.4 -3.04,-0.4 -2.16,0 -3.32,0.72 -1.12,0.68 -1.12,1.88 0,0.88 0.52,1.52 0.52,0.6 1.72,1.2 1.24,0.56 3.28,1.36 2.04,0.76 3.48,1.56 1.44,0.8 2.2,1.96 0.76,1.12 0.76,2.84 z"
id="path311" />
<path
d="m 223.73998,40.232664 q 0,5.32 -2.72,8.24 -2.68,2.92 -7.28,2.92 -2.84,0 -5.08,-1.28 -2.2,-1.32 -3.48,-3.8 -1.28,-2.52 -1.28,-6.08 0,-5.32 2.68,-8.2 2.68,-2.88 7.28,-2.88 2.92,0 5.12,1.32 2.24,1.28 3.48,3.76 1.28,2.44 1.28,6 z m -16.2,0 q 0,3.8 1.48,6.04 1.52,2.2 4.8,2.2 3.24,0 4.76,-2.2 1.52,-2.24 1.52,-6.04 0,-3.8 -1.52,-5.96 -1.52,-2.16 -4.8,-2.16 -3.28,0 -4.76,2.16 -1.48,2.16 -1.48,5.96 z"
id="path313" />
<path
d="m 239.17996,32.272664 h -5.4 v 18.72 h -3.52 v -18.72 h -3.76 v -1.64 l 3.76,-1.2 v -1.24 q 0,-4.16 1.84,-5.96 1.84,-1.84 5.12,-1.84 1.28,0 2.32,0.24 1.08,0.2 1.84,0.48 l -0.92,2.76 q -0.64,-0.2 -1.48,-0.4 -0.84,-0.2 -1.72,-0.2 -1.76,0 -2.64,1.2 -0.84,1.16 -0.84,3.68 v 1.4 h 5.4 z"
id="path315" />
<path
d="m 241.73994,48.832664 q 0,-1.48 0.72,-2.08 0.72,-0.6 1.72,-0.6 1.04,0 1.76,0.6 0.76,0.6 0.76,2.08 0,1.44 -0.76,2.08 -0.72,0.64 -1.76,0.64 -1,0 -1.72,-0.64 -0.72,-0.64 -0.72,-2.08 z"
id="path317" />
<path
d="m 252.45993,48.832664 q 0,-1.48 0.72,-2.08 0.72,-0.6 1.72,-0.6 1.04,0 1.76,0.6 0.76,0.6 0.76,2.08 0,1.44 -0.76,2.08 -0.72,0.64 -1.76,0.64 -1,0 -1.72,-0.64 -0.72,-0.64 -0.72,-2.08 z"
id="path319" />
<path
d="m 263.17991,48.832664 q 0,-1.48 0.72,-2.08 0.72,-0.6 1.72,-0.6 1.04,0 1.76,0.6 0.76,0.6 0.76,2.08 0,1.44 -0.76,2.08 -0.72,0.64 -1.76,0.64 -1,0 -1.72,-0.64 -0.72,-0.64 -0.72,-2.08 z"
id="path321" />
</g>
<g
aria-label="The Captain"
id="text1437"
style="font-size:40px;line-height:1.25;fill:#000000">
<path
d="m 77.339812,39.081627 c 9.64,0 10.24,-0.08 13.48,-1.88 l 0.08,-0.32 c -1.8,0.24 -4.28,0.4 -6.48,0.4 -0.32,0 -1,-0.04 -1.84,-0.08 3.08,-2.6 4.08,-4.04 4.76,-7.08 l 3.12,-12.52 c 5.2,0.44 5.24,0.44 6.08,0.44 1.88,0 2.16,-0.4 3.12,-4.32 l -0.52,-0.6 c -1.64,2.8 -1.84,3 -3.28,3 -0.4,0 -1.28,-0.04 -2.52,-0.08 -5.84,-0.28 -6.48,-0.32 -7.88,-0.32 -7,0 -12.2,3.8 -12.2,8.92 0,1.32 0.28,2.4 1,3.8 l 3,-1.96 c -0.76,-1.92 -0.92,-2.56 -0.92,-3.68 0,-2.28 1.04,-3.96 3,-4.88 1.04,-0.48 2.4,-0.68 4.64,-0.68 0.88,0 1.04,0 3.6,0.2 l -3.24,13.04 c -1.44,5.88 -2.2,6.88 -5.6,7.04 z"
style="font-family:Z003;-inkscape-font-specification:Z003"
id="path324" />
<path
d="m 94.579842,39.441627 2.84,-1.16 2.36,-9.32 c 0.399998,-0.28 0.759998,-0.48 0.959998,-0.6 1.04,-0.68 1.76,-1.12 1.92,-1.2 2.64,-1.44 2.64,-1.44 3,-1.44 0.24,0 0.44,0.24 0.44,0.6 0,0.56 -0.16,1.32 -0.72,3.44 -1.16,4.52 -1.72,7.12 -1.72,8.2 0,0.52 0.16,0.96 0.6,1.72 2.2,-1.12 5.12,-2.96 7.28,-4.56 l 0.28,-1.16 c -3.32,1.96 -3.96,2.28 -4.48,2.28 -0.36,0 -0.6,-0.4 -0.6,-1.04 0,-1.08 0.2,-1.88 1.8,-7.76 1.04,-3.88 1.04,-3.88 1.04,-4.12 0,-0.4 -0.32,-0.68 -0.84,-0.68 -0.88,0 -3.48,1.44 -8.6,4.76 l 1.36,-5.36 c 0.96,-3.92 1.36,-5.16 1.88,-6.16 0.56,-1.12 1.4,-1.64 2.48,-1.64 0.52,0 0.84,0.04 2.4,0.36 l 1.72,-2.44 c -0.72,-0.16 -1.04,-0.2 -1.68,-0.2 -2.16,0 -3.32,0.6 -6.24,3.16 -2.079998,1.84 -2.399998,2.52 -3.639998,7.8 z"
style="font-family:Z003;-inkscape-font-specification:Z003"
id="path326" />
<path
d="m 124.37986,33.601627 c -3.2,2.72 -4.92,3.72 -6.44,3.72 -1.04,0 -1.84,-0.68 -2.12,-1.72 -0.16,-0.64 -0.2,-1.08 -0.2,-2.24 1.84,-1.16 2.96,-1.96 5.32,-3.72 2.2,-1.64 3,-2.96 3,-4.76 0,-1.4 -0.84,-2.24 -2.28,-2.24 -0.88,0 -1.48,0.2 -2.44,0.72 -1.52,0.88 -2.88,1.96 -3.68,2.92 -1.52,1.84 -2.88,6.24 -2.88,9.48 0,2.36 1.24,3.84 3.28,3.84 2.36,0 5.4,-1.76 8.4,-4.84 z m -8.64,-1.68 c 0.68,-4.32 2.48,-7.6 4.24,-7.6 0.64,0 1.08,0.64 1.08,1.64 0,2 -1.16,3.28 -5.32,5.96 z"
style="font-family:Z003;-inkscape-font-specification:Z003"
id="path328" />
<path
d="m 152.73984,36.561627 c -3.68,2.52 -6.4,3.56 -9.2,3.56 -3.16,0 -5.16,-2.4 -5.16,-6.2 0,-8.32 5.88,-16.6 11.8,-16.6 2.4,0 3.6,1.48 3.84,4.64 l 2.96,-2.52 c -0.16,-1.28 -0.4,-1.92 -0.88,-2.52 -0.76,-0.92 -2.2,-1.48 -3.8,-1.48 -3.48,0 -7.52,2.04 -11.04,5.56 -3.88,3.88 -6.16,9.2 -6.16,14.4 0,4.12 2.28,6.6 6.08,6.6 3.48,0 7.8,-1.6 11.28,-4.24 z"
style="font-family:Z003;-inkscape-font-specification:Z003"
id="path330" />
<path
d="m 171.33987,33.841627 c -2.92,2 -3.6,2.4 -4,2.4 -0.28,0 -0.48,-0.32 -0.48,-0.8 0,-1.08 0.92,-5.28 2.4,-10.76 0.44,-0.64 0.52,-0.72 1.16,-1.44 -1.92,-0.44 -3.28,-0.6 -5.04,-0.6 -1.64,0 -2.44,0.16 -3.44,0.8 -1.44,0.84 -3.12,2.08 -3.64,2.64 -1.52,1.68 -3.16,7.08 -3.16,10.32 0,1.92 0.64,3.2 1.64,3.2 0.88,0 2.2,-0.8 7.2,-4.4 -0.44,2.04 -0.6,3.04 -0.6,3.56 0,0.56 0.24,0.84 0.64,0.84 0.52,0 0.84,-0.16 3.68,-2.04 1.36,-0.92 2.12,-1.44 3.6,-2.52 z m -7.04,-0.28 c -1.4,1.04 -2.12,1.56 -2.16,1.6 -1.32,0.84 -2.36,1.36 -2.88,1.36 -0.68,0 -1.04,-0.72 -1.04,-2 0,-2.04 0.6,-4.68 1.64,-7 0.96,-2.2 1.84,-3.04 3.2,-3.04 0.72,0 2.08,0.2 3.4,0.52 -0.8,2.88 -1.08,3.96 -1.12,4.16 -0.24,1 -0.44,2 -0.68,3.04 -0.04,0.2 -0.16,0.68 -0.36,1.36 z"
style="font-family:Z003;-inkscape-font-specification:Z003"
id="path332" />
<path
d="m 169.33988,47.601627 -1.2,1.28 c 0.72,0.04 1.2,0.04 1.36,0.04 l 2.88,0.04 2.56,0.04 c 0.32,0 0.88,0 1.88,-0.04 l 1.24,-1 -4.48,-0.24 c 0.52,-2.44 0.76,-3.6 0.92,-4.24 0.2,-0.84 0.36,-1.68 0.56,-2.56 l 0.44,-1.72 c 0.8,0.16 1.24,0.2 1.92,0.2 2.2,0 2.64,-0.2 5.76,-2.8 1.36,-1.08 1.84,-1.64 2.44,-2.8 1.28,-2.6 2.12,-5.72 2.12,-8 0,-1.92 -0.84,-3.16 -2.16,-3.16 -0.96,0 -2.32,0.6 -3.96,1.8 -1.76,1.28 -2.84,2.08 -3.28,2.36 0.56,-2.36 0.84,-3.56 0.84,-3.64 0,-0.24 -0.28,-0.52 -0.56,-0.52 -0.4,0 -3.64,1.72 -6.6,3.48 l -0.24,1.04 c 0.28,-0.12 0.84,-0.36 1.64,-0.68 0.76,-0.36 0.92,-0.4 1.24,-0.4 0.48,0 0.76,0.4 0.76,1.12 0,1.44 -2.36,11.72 -4.64,20.32 z m 7.12,-12.44 0.6,-2.72 0.6,-2.6 c 0.04,-0.2 0.16,-0.72 0.32,-1.44 3.24,-2.4 4.52,-3.08 5.56,-3.08 0.8,0 1.32,0.84 1.32,2.2 0,1.8 -0.56,4.08 -1.56,6.24 -1.08,2.4 -2.44,3.56 -4.08,3.56 -1,0 -2.08,-0.32 -3.04,-0.88 z"
style="font-family:Z003;-inkscape-font-specification:Z003"
id="path334" />
<path
d="m 200.25992,34.041627 c -3.04,1.84 -4.32,2.48 -4.88,2.48 -0.52,0 -1.16,-1 -1.16,-1.88 0,-0.56 0.04,-0.68 0.92,-4.48 0.2,-0.72 0.36,-1.48 0.52,-2.24 0.04,-0.12 0.2,-0.76 0.28,-1.12 1.36,-0.04 2.6,-0.12 3.96,-0.2 l 1.52,-1.16 h -5.12 c 0.2,-0.92 0.28,-1.2 0.4,-1.8 0.12,-0.4 0.4,-1.48 0.96,-3.64 l 0.24,-1.04 -0.68,0.36 c -0.24,0.08 -0.56,0.24 -1,0.44 -0.28,0.16 -0.6,0.28 -0.92,0.44 -0.16,0.08 -0.32,0.16 -0.56,0.24 l -0.36,1.64 -0.44,1.92 -0.32,1.44 c -0.36,0.04 -0.6,0.04 -0.72,0.04 h -0.96 c -0.08,0 -0.28,0 -0.6,0.04 -0.2,0.12 -0.36,0.24 -0.4,0.24 -0.12,0.08 -0.36,0.28 -0.76,0.6 -0.08,0.04 -0.28,0.24 -0.6,0.44 h 0.96 1.84 0.88 l -0.4,1.76 c -1.72,7.08 -1.72,7.08 -1.72,8.36 0,1.28 0.84,2.68 1.6,2.68 0.88,0 3.6,-1.64 7.44,-4.56 z"
style="font-family:Z003;-inkscape-font-specification:Z003"
id="path336" />
<path
d="m 218.29994,33.841627 c -2.92,2 -3.6,2.4 -4,2.4 -0.28,0 -0.48,-0.32 -0.48,-0.8 0,-1.08 0.92,-5.28 2.4,-10.76 0.44,-0.64 0.52,-0.72 1.16,-1.44 -1.92,-0.44 -3.28,-0.6 -5.04,-0.6 -1.64,0 -2.44,0.16 -3.44,0.8 -1.44,0.84 -3.12,2.08 -3.64,2.64 -1.52,1.68 -3.16,7.08 -3.16,10.32 0,1.92 0.64,3.2 1.64,3.2 0.88,0 2.2,-0.8 7.2,-4.4 -0.44,2.04 -0.6,3.04 -0.6,3.56 0,0.56 0.24,0.84 0.64,0.84 0.52,0 0.84,-0.16 3.68,-2.04 1.36,-0.92 2.12,-1.44 3.6,-2.52 z m -7.04,-0.28 c -1.4,1.04 -2.12,1.56 -2.16,1.6 -1.32,0.84 -2.36,1.36 -2.88,1.36 -0.68,0 -1.04,-0.72 -1.04,-2 0,-2.04 0.6,-4.68 1.64,-7 0.96,-2.2 1.84,-3.04 3.2,-3.04 0.72,0 2.08,0.2 3.4,0.52 -0.8,2.88 -1.08,3.96 -1.12,4.16 -0.24,1 -0.44,2 -0.68,3.04 -0.04,0.2 -0.16,0.68 -0.36,1.36 z"
style="font-family:Z003;-inkscape-font-specification:Z003"
id="path338" />
<path
d="m 226.33994,14.441627 c -1.12,0.88 -2.04,1.6 -2.76,2.08 0.28,0.84 0.64,1.52 1.52,2.8 1.12,-1 1.24,-1.12 2.6,-2.16 -0.12,-0.24 -0.2,-0.4 -0.52,-0.92 -0.24,-0.48 -0.28,-0.48 -0.6,-1.28 z m 1.52,20 -0.68,0.36 c -2.76,1.52 -3.24,1.72 -3.72,1.72 -0.44,0 -0.72,-0.44 -0.72,-1.12 0,-0.68 0,-0.68 1.32,-5.96 1.48,-6.08 1.48,-6.08 1.48,-6.4 0,-0.24 -0.2,-0.4 -0.48,-0.4 -0.68,0 -3.04,1.32 -6.32,3.52 l -0.08,1.12 c 2.44,-1.32 2.56,-1.36 2.92,-1.36 0.32,0 0.48,0.24 0.48,0.68 0,0.56 -0.12,1.12 -0.72,3.4 -1.88,6.96 -1.88,6.96 -1.88,8 0,0.96 0.36,1.6 0.96,1.6 0.68,0 1.76,-0.52 3.88,-1.88 0.76,-0.48 1.52,-0.96 2.28,-1.48 0.36,-0.2 0.64,-0.4 1.12,-0.68 z"
style="font-family:Z003;-inkscape-font-specification:Z003"
id="path340" />
<path
d="m 231.57994,38.321627 2.36,-9.4 1,-0.64 c 3.72,-2.32 4.16,-2.56 4.72,-2.56 0.24,0 0.4,0.2 0.4,0.52 0,0.64 -0.28,1.8 -1.48,6.68 -0.88,3.52 -1.04,4.24 -1.04,5 0,0.56 0.16,1.04 0.6,1.8 1.8,-0.8 4.6,-2.56 7.4,-4.64 l 0.28,-1.12 c -3.88,2.24 -4.16,2.36 -4.56,2.36 -0.4,0 -0.64,-0.4 -0.64,-1.08 0,-1.08 0.16,-1.76 1.92,-8.12 1,-3.56 1,-3.56 1,-3.8 0,-0.44 -0.28,-0.68 -0.76,-0.68 -0.88,0 -1,0.08 -5.32,2.72 -1.6,1 -2.64,1.64 -3.12,1.96 0.4,-1.4 0.96,-3.84 0.96,-4.16 0,-0.32 -0.2,-0.52 -0.52,-0.52 -0.44,0 -3.16,1.4 -6.28,3.24 l -0.24,1.04 c 2.56,-1.16 2.72,-1.2 3.08,-1.2 0.28,0 0.48,0.24 0.48,0.56 0,0.88 -0.72,4.08 -1.76,7.8 l -0.92,3.24 c -0.08,0.28 -0.28,1.04 -0.56,2.16 z"
style="font-family:Z003;-inkscape-font-specification:Z003"
id="path342" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

View File

@@ -0,0 +1,233 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="256"
height="64"
viewBox="0 0 256 64"
fill="none"
version="1.1"
id="svg4"
sodipodi:docname="paper_heading_cargo_invoice.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
inkscape:export-filename="paper_heading_cargo_invoice.svg.96dpi.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><metadata
id="metadata10"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
id="defs8"><inkscape:path-effect
effect="powermask"
id="path-effect537"
is_visible="true"
lpeversion="1"
uri="#mask-powermask-path-effect537"
invert="false"
hide_mask="false"
background="true"
background_color="#ffffffff" /><rect
x="-696.29968"
y="-43.388832"
width="637.4054"
height="131.45215"
id="rect3263" /><inkscape:path-effect
effect="powermask"
id="path-effect1533"
is_visible="true"
lpeversion="1"
uri="#mask-powermask-path-effect1533"
invert="false"
hide_mask="false"
background="true"
background_color="#ffffffff" /><rect
x="-111.73019"
y="-119.49218"
width="354.099"
height="119.49218"
id="rect452" /><rect
x="12.500253"
y="14.598581"
width="334.51892"
height="47.488827"
id="rect348" /><mask
maskUnits="userSpaceOnUse"
id="mask-powermask-path-effect537"><path
id="mask-powermask-path-effect537_box"
style="fill:#ffffff;fill-opacity:1"
d="m -156.82688,-214.98718 h 376.0737 V 28.676595 h -376.0737 z" /><g
id="g535"
transform="matrix(1.0402092,0,0,1.0402092,-2.8656518,12.311957)"
style="fill:#552200"><g
aria-label="Cargo"
transform="matrix(2.6010044,0,0,2.6010044,161.5879,145.13955)"
id="g487"
style="font-size:40px;line-height:1.25;white-space:pre;shape-inside:url(#rect452);fill:#552200"><path
d="m -84.210469,-90.85718 c -1.24,1.56 -1.96,2.36 -2.96,3.12 -2,1.56 -4.64,2.44 -7.32,2.44 -6.880001,0 -12.480001,-5.64 -12.480001,-12.6 0,-7.12 5.36,-12.56 12.440001,-12.56 2.56,0 4.96,0.68 6.92,2 1.32,0.84 2.12,1.72 3.24,3.48 h 3.32 c -2.28,-5.08 -7.48,-8.2 -13.6,-8.2 -8.800001,0 -15.320001,6.56 -15.320001,15.4 0,8.68 6.68,15.2 15.520001,15.2 6,0 10.56,-2.8 13.52,-8.28 z"
style="font-family:'URW Gothic';-inkscape-font-specification:'URW Gothic';fill:#552200"
id="path477" /><path
d="m -54.570468,-104.97718 h -2.96 v 3.88 c -2.2,-3.04 -4.84,-4.4 -8.64,-4.4 -6.56,0 -11.52,4.96 -11.52,11.52 0,6.56 5,11.4 11.76,11.4 3.72,0 6.04,-1.2 8.4,-4.36 v 3.84 h 2.96 z m -11.52,2.2 c 4.84,0 8.56,3.76 8.56,8.64 0,5 -3.68,8.84 -8.4,8.84 -4.96,0 -8.76,-3.88 -8.76,-8.88 0,-4.76 3.84,-8.6 8.6,-8.6 z"
style="font-family:'URW Gothic';-inkscape-font-specification:'URW Gothic';fill:#552200"
id="path479" /><path
d="m -49.530446,-83.09718 h 2.96 v -12.76 c -0.04,-3.96 2.16,-6.4 6.2,-6.72 v -2.92 c -3.16,0.16 -5.04,1.24 -6.2,3.64 v -3.12 h -2.96 z"
style="font-family:'URW Gothic';-inkscape-font-specification:'URW Gothic';fill:#552200"
id="path481" /><path
d="m -16.490396,-104.97718 h -2.96 v 3.88 c -2.2,-3.04 -4.88,-4.4 -8.6,-4.4 -6.4,0 -11.16,4.96 -11.16,11.56 0,6.4 4.96,11.36 11.4,11.36 3.96,0 6.64,-1.6 8.36,-4.96 v 1.48 c 0,2.16 -0.24,3.52 -0.88,4.88 -1.16,2.52 -3.76,3.96 -7.16,3.96 -2.44,0 -4.32,-0.72 -5.88,-2.2 -0.76,-0.68 -1.24,-1.36 -2.16,-3 h -2.88 c 1.6,5.12 5.48,7.92 11,7.92 3.8,0 7,-1.44 8.88,-3.92 1.48,-2 2.04,-4.32 2.04,-8.6 z m -11.36,2.2 c 4.72,0 8.4,3.72 8.4,8.48 0,5.12 -3.6,9 -8.36,9 -4.8,0 -8.4,-3.8 -8.4,-8.88 0,-5 3.52,-8.6 8.36,-8.6 z"
style="font-family:'URW Gothic';-inkscape-font-specification:'URW Gothic';fill:#552200"
id="path483" /><path
d="m -0.53038391,-105.49718 c -6.51999999,0 -11.48000009,4.92 -11.48000009,11.32 0,6.76 4.9200001,11.6 11.72000009,11.6 6.40000001,0 11.11999991,-4.84 11.11999991,-11.4 0,-6.68 -4.7599999,-11.52 -11.35999991,-11.52 z m 0,2.72 c 4.84000001,0 8.36000001,3.72 8.36000001,8.84 0,5.04 -3.44,8.64 -8.20000001,8.64 -5.03999999,0 -8.63999999,-3.64 -8.63999999,-8.8 0,-4.96 3.64,-8.68 8.47999999,-8.68 z"
style="font-family:'URW Gothic';-inkscape-font-specification:'URW Gothic';fill:#552200"
id="path485" /></g><g
aria-label="Your crates, our business"
id="g533"
style="font-size:32.6668px;line-height:1.25;fill:#552200;stroke-width:0.816671"><path
d="m -118.78331,-35.723892 6.63544,-11.627977 h 3.36558 l -9.04399,14.738342 -1.46745,8.485712 h -2.85516 l 1.54721,-8.836625 -3.84409,-14.387429 h 3.09441 z"
style="font-style:italic;font-family:'Roboto Condensed';-inkscape-font-specification:'Roboto Condensed, ';fill:#552200"
id="path489" /><path
d="m -110.10619,-33.522711 q 0.52637,-3.716486 2.53614,-5.98147 2.02572,-2.280934 5.10419,-2.201181 1.91407,0.04785 3.190115,1.116541 1.276047,1.052739 1.818366,2.918958 0.558271,1.866218 0.303062,4.115251 l -0.191407,1.62696 q -0.52637,3.700536 -2.552094,5.949569 -2.025722,2.249032 -5.088242,2.169279 -1.91407,-0.04785 -3.19011,-1.10059 -1.27605,-1.052739 -1.83432,-2.918957 -0.54232,-1.866219 -0.28711,-4.099301 z m 2.47234,2.759452 q -0.0479,2.137378 0.65397,3.317722 0.71778,1.180343 2.15333,1.244145 1.85027,0.07975 3.06251,-1.307948 1.21225,-1.403651 1.62696,-4.195004 l 0.239262,-1.866219 0.07975,-1.148442 q 0.04785,-2.153329 -0.685872,-3.333672 -0.71778,-1.180344 -2.13738,-1.244146 -1.88217,-0.07975 -3.14226,1.563157 -1.24415,1.62696 -1.61101,4.529967 l -0.19141,1.579108 z"
style="font-style:italic;font-family:'Roboto Condensed';-inkscape-font-specification:'Roboto Condensed, ';fill:#552200"
id="path491" /><path
d="m -86.228166,-25.643121 q -1.674811,1.91407 -4.131202,1.850268 -1.834317,-0.0319 -2.823253,-1.339849 -0.972986,-1.307948 -0.972986,-3.652685 l 0.07975,-1.451503 1.866218,-11.14946 h 2.727551 l -1.850268,11.197312 -0.0638,1.164393 q -0.0638,1.164392 0.366864,1.930021 0.446616,0.749677 1.323898,0.781578 2.312836,0.111654 3.79624,-2.280934 l 2.201181,-12.79237 h 2.759452 l -2.98276,17.258535 h -2.599946 z"
style="font-style:italic;font-family:'Roboto Condensed';-inkscape-font-specification:'Roboto Condensed, ';fill:#552200"
id="path493" /><path
d="m -70.134024,-38.754503 q -0.685875,-0.143555 -1.228195,-0.143555 -2.089527,0 -3.445327,2.408538 l -2.137378,12.361705 h -2.759452 l 2.99871,-17.258535 2.663748,-0.01595 -0.382814,1.770516 q 1.515306,-2.15333 3.413426,-2.105478 0.382814,0.01595 1.180343,0.239259 z"
style="font-style:italic;font-family:'Roboto Condensed';-inkscape-font-specification:'Roboto Condensed, ';fill:#552200"
id="path495" /><path
d="m -56.257015,-26.185441 q 1.3558,0.04785 2.280934,-0.845381 0.925134,-0.893233 1.291998,-2.520193 l 2.599945,-0.01595 q -0.366863,2.552094 -2.153329,4.195004 -1.786466,1.64291 -4.179054,1.579108 -2.280933,-0.04785 -3.636733,-1.37175 -1.3558,-1.323899 -1.62696,-3.716487 -0.159506,-1.435553 0.01595,-2.887056 l 0.223309,-1.738614 q 0.526369,-4.035499 2.45639,-6.156927 1.945972,-2.121428 5.056336,-2.041675 2.392588,0.0638 3.700536,1.754565 1.323899,1.690762 1.212245,4.514016 l -2.599946,-0.01595 q 0.0957,-3.748388 -2.472341,-3.844091 -3.748388,-0.143555 -4.529967,5.343446 -0.494468,3.397475 -0.398764,4.625671 0.159506,3.094413 2.759451,3.142265 z"
style="font-style:italic;font-family:'Roboto Condensed';-inkscape-font-specification:'Roboto Condensed, ';fill:#552200"
id="path497" /><path
d="m -38.121195,-38.754503 q -0.685875,-0.143555 -1.228195,-0.143555 -2.089527,0 -3.445327,2.408538 l -2.137379,12.361705 h -2.759451 l 2.99871,-17.258535 2.663748,-0.01595 -0.382814,1.770516 q 1.515306,-2.15333 3.413426,-2.105478 0.382814,0.01595 1.180343,0.239259 z"
style="font-style:italic;font-family:'Roboto Condensed';-inkscape-font-specification:'Roboto Condensed, ';fill:#552200"
id="path499" /><path
d="m -29.68334,-24.127815 q -0.0957,-0.478518 -0.07975,-0.941085 l 0.0638,-0.941084 q -1.834318,2.217131 -3.955746,2.217131 -2.073576,0 -3.237969,-1.339849 -1.148442,-1.3558 -1.020837,-3.572932 0.175456,-2.679698 2.201181,-4.290707 2.041675,-1.61101 5.343446,-1.61101 h 1.914071 l 0.27116,-1.834317 q 0.28711,-2.855155 -2.15333,-2.855155 -1.260096,0 -2.105477,0.749677 -0.829431,0.733727 -1.052739,1.930021 l -2.72755,0.01595 q 0.207358,-2.18523 1.977873,-3.668635 1.786465,-1.483404 4.195004,-1.451503 2.328786,0.0319 3.572931,1.435552 1.260097,1.387702 1.020838,3.891944 l -1.403652,8.501662 q -0.143555,0.909184 -0.111654,1.738614 l 0.0957,1.754565 -0.0319,0.27116 z m -3.397474,-2.217132 q 2.073576,0 3.572931,-2.025724 l 0.717776,-4.131202 -1.260096,-0.01595 q -1.62696,0 -2.887056,0.606122 -1.260097,0.590172 -1.786466,1.658861 -0.510419,1.052739 -0.350913,2.296885 0.207358,1.611009 1.993824,1.611009 z"
style="font-style:italic;font-family:'Roboto Condensed';-inkscape-font-specification:'Roboto Condensed, ';fill:#552200"
id="path501" /><path
d="m -15.854178,-45.565404 -0.733727,4.179054 h 2.536143 l -0.398764,2.280934 h -2.520193 l -1.818367,10.734745 -0.0319,0.638023 q -0.0638,1.3558 0.972986,1.3558 0.382814,0.01595 1.148442,-0.159506 l -0.239259,2.408539 q -0.893233,0.319011 -1.802416,0.28711 -1.451504,0 -2.185231,-1.196294 -0.733727,-1.196294 -0.54232,-3.381524 l 1.754565,-10.686893 h -2.568045 l 0.414716,-2.280934 h 2.536143 l 0.733727,-4.179054 z"
style="font-style:italic;font-family:'Roboto Condensed';-inkscape-font-specification:'Roboto Condensed, ';fill:#552200"
id="path503" /><path
d="m -7.2249119,-23.808804 q -2.9030071,-0.0319 -4.3385591,-2.089526 -1.435553,-2.057626 -1.052739,-5.614607 l 0.207357,-1.706713 q 0.494469,-4.019547 2.4404402,-6.284531 1.9619222,-2.280934 4.9765831,-2.201181 2.4563903,0.0638 3.6845855,1.690762 1.24414572,1.61101 1.18034338,4.545918 l -0.14355528,1.91407 -0.2392588,1.64291 -9.2513403,-0.01595 q -0.2073576,1.435553 -0.191407,2.249033 0.031901,1.611009 0.7975293,2.536143 0.7656282,0.909183 2.1852304,0.925134 1.0208376,0.0319 2.0097739,-0.398765 1.004887,-0.446616 2.1054775,-1.547207 l 1.2919975,1.802417 q -1.0208376,1.339849 -2.5201927,1.961922 -1.4993552,0.622073 -3.1422656,0.590171 z m 2.0576257,-15.488019 q -2.8232538,-0.127605 -3.9557455,3.413425 l -0.4306658,1.547207 6.6194934,0.01595 0.079753,-0.414715 q 0.095703,-0.733727 0.095703,-1.531257 -0.063802,-2.903006 -2.4085386,-3.030611 z"
style="font-style:italic;font-family:'Roboto Condensed';-inkscape-font-specification:'Roboto Condensed, ';fill:#552200"
id="path505" /><path
d="m 10.320735,-28.673732 q 0.207358,-1.515306 -1.690762,-2.520193 l -2.1373786,-1.116541 q -1.6588611,-0.925134 -2.3287857,-1.961922 -0.6539741,-1.036788 -0.5742211,-2.408539 0.1276047,-2.18523 1.7864657,-3.620783 1.658861,-1.435553 4.051449,-1.403652 2.3128347,0.0638 3.6207827,1.531257 1.307949,1.451503 1.212245,3.716486 h -2.72755 q 0.0319,-1.291997 -0.574221,-2.025724 -0.606123,-0.749678 -1.6907626,-0.781579 -1.2281951,0 -2.0257245,0.701826 -0.7975293,0.685875 -0.9570352,1.786466 -0.191407,1.291997 1.2600964,2.121428 l 2.6956489,1.37175 q 2.98276,1.658861 2.823254,4.402362 -0.159506,2.344736 -1.882169,3.748388 -1.7226635,1.387701 -4.1950045,1.323898 -2.3766374,-0.0319 -3.8600419,-1.547206 -1.4834046,-1.531257 -1.3877011,-3.939795 l 2.7754021,0.01595 q -0.031901,1.499355 0.6539741,2.280934 0.6858752,0.765628 1.9459715,0.765628 1.3238987,0 2.1852304,-0.669924 0.8772824,-0.669925 1.0208374,-1.770515 z"
style="font-style:italic;font-family:'Roboto Condensed';-inkscape-font-specification:'Roboto Condensed, ';fill:#552200"
id="path507" /><path
d="m 15.408973,-19.486195 -1.658861,-1.196294 q 1.850268,-2.280933 2.296885,-4.529966 l 0.414715,-2.408539 h 2.823254 l -0.334963,2.153329 q -0.574221,3.636734 -3.54103,5.98147 z"
style="font-style:italic;font-family:'Roboto Condensed';-inkscape-font-specification:'Roboto Condensed, ';fill:#552200"
id="path509" /><path
d="m 30.84914,-33.522711 q 0.526369,-3.716486 2.536143,-5.98147 2.025725,-2.280934 5.104188,-2.201181 1.91407,0.04785 3.190117,1.116541 1.276047,1.052739 1.818367,2.918958 0.558271,1.866218 0.303061,4.115251 l -0.191407,1.62696 q -0.526369,3.700536 -2.552094,5.949569 -2.025724,2.249032 -5.088237,2.169279 -1.91407,-0.04785 -3.190117,-1.10059 -1.276047,-1.052739 -1.834317,-2.918957 -0.54232,-1.866219 -0.287111,-4.099301 z m 2.472341,2.759452 q -0.04785,2.137378 0.653974,3.317722 0.717776,1.180343 2.153329,1.244145 1.850268,0.07975 3.062513,-1.307948 1.212244,-1.403651 1.62696,-4.195004 l 0.239258,-1.866219 0.07975,-1.148442 q 0.04785,-2.153329 -0.685875,-3.333672 -0.717776,-1.180344 -2.137378,-1.244146 -1.88217,-0.07975 -3.142266,1.563157 -1.244146,1.62696 -1.611009,4.529967 l -0.191407,1.579108 z"
style="font-style:italic;font-family:'Roboto Condensed';-inkscape-font-specification:'Roboto Condensed, ';fill:#552200"
id="path511" /><path
d="m 54.727168,-25.643121 q -1.674812,1.91407 -4.131202,1.850268 -1.834317,-0.0319 -2.823254,-1.339849 -0.972986,-1.307948 -0.972986,-3.652685 l 0.07975,-1.451503 1.866219,-11.14946 h 2.72755 l -1.850268,11.197312 -0.0638,1.164393 q -0.0638,1.164392 0.366863,1.930021 0.446617,0.749677 1.323899,0.781578 2.312835,0.111654 3.79624,-2.280934 l 2.201181,-12.79237 h 2.759451 l -2.982759,17.258535 h -2.599946 z"
style="font-style:italic;font-family:'Roboto Condensed';-inkscape-font-specification:'Roboto Condensed, ';fill:#552200"
id="path513" /><path
d="m 70.821302,-38.754503 q -0.685875,-0.143555 -1.228195,-0.143555 -2.089527,0 -3.445327,2.408538 l -2.137378,12.361705 H 61.25095 l 2.99871,-17.258535 2.663748,-0.01595 -0.382814,1.770516 q 1.515306,-2.15333 3.413426,-2.105478 0.382814,0.01595 1.180343,0.239259 z"
style="font-style:italic;font-family:'Roboto Condensed';-inkscape-font-specification:'Roboto Condensed, ';fill:#552200"
id="path515" /><path
d="m 85.352297,-23.808804 q -2.647797,-0.0957 -3.748388,-2.376637 l -0.590172,2.057626 h -2.536143 l 4.258807,-24.500101 h 2.743501 l -1.738614,9.139686 q 1.706712,-2.280934 4.115251,-2.217132 2.249033,0.0319 3.381524,1.658861 1.148443,1.61101 1.08464,4.705423 -0.0638,1.706713 -0.382814,3.812191 -0.319012,2.105477 -0.941084,3.604832 -1.738614,4.226906 -5.646508,4.115251 z m 4.258807,-12.186248 q -0.07975,-1.674811 -0.733727,-2.440439 -0.653975,-0.765629 -1.89812,-0.79753 -2.025725,-0.04785 -3.556981,2.376638 l -1.403652,8.246453 q 0.749678,2.249033 2.775402,2.328786 1.866219,0.07975 2.998711,-1.307949 1.132491,-1.403651 1.483404,-4.418312 0.366864,-3.030612 0.334963,-3.987647 z"
style="font-style:italic;font-family:'Roboto Condensed';-inkscape-font-specification:'Roboto Condensed, ';fill:#552200"
id="path517" /><path
d="m 103.201,-25.643121 q -1.67481,1.91407 -4.131203,1.850268 -1.834317,-0.0319 -2.823254,-1.339849 -0.972985,-1.307948 -0.972985,-3.652685 l 0.07975,-1.451503 1.866218,-11.14946 h 2.727551 l -1.850268,11.197312 -0.0638,1.164393 q -0.0638,1.164392 0.366864,1.930021 0.446616,0.749677 1.323898,0.781578 2.312839,0.111654 3.796239,-2.280934 l 2.20118,-12.79237 h 2.75945 l -2.98276,17.258535 h -2.59994 z"
style="font-style:italic;font-family:'Roboto Condensed';-inkscape-font-specification:'Roboto Condensed, ';fill:#552200"
id="path519" /><path
d="m 118.72091,-28.673732 q 0.20736,-1.515306 -1.69076,-2.520193 l -2.13738,-1.116541 q -1.65886,-0.925134 -2.32878,-1.961922 -0.65398,-1.036788 -0.57423,-2.408539 0.12761,-2.18523 1.78647,-3.620783 1.65886,-1.435553 4.05145,-1.403652 2.31283,0.0638 3.62078,1.531257 1.30795,1.451503 1.21225,3.716486 h -2.72755 q 0.0319,-1.291997 -0.57422,-2.025724 -0.60613,-0.749678 -1.69077,-0.781579 -1.22819,0 -2.02572,0.701826 -0.79753,0.685875 -0.95704,1.786466 -0.1914,1.291997 1.2601,2.121428 l 2.69565,1.37175 q 2.98276,1.658861 2.82325,4.402362 -0.1595,2.344736 -1.88217,3.748388 -1.72266,1.387701 -4.195,1.323898 -2.37664,-0.0319 -3.86004,-1.547206 -1.48341,-1.531257 -1.3877,-3.939795 l 2.7754,0.01595 q -0.0319,1.499355 0.65397,2.280934 0.68588,0.765628 1.94597,0.765628 1.3239,0 2.18523,-0.669924 0.87729,-0.669925 1.02084,-1.770515 z"
style="font-style:italic;font-family:'Roboto Condensed';-inkscape-font-specification:'Roboto Condensed, ';fill:#552200"
id="path521" /><path
d="m 127.30233,-24.127815 h -2.75945 l 2.99871,-17.258535 h 2.75945 z m 0.87728,-21.820403 q 0.0319,-0.685875 0.44662,-1.196294 0.41471,-0.510419 1.13249,-0.54232 0.68587,-0.0319 1.13249,0.462567 0.44662,0.494468 0.41472,1.228195 -0.0319,0.701826 -0.46257,1.212245 -0.41472,0.494468 -1.13249,0.510419 -0.70183,0.0319 -1.13249,-0.462567 -0.43067,-0.494468 -0.39877,-1.212245 z"
style="font-style:italic;font-family:'Roboto Condensed';-inkscape-font-specification:'Roboto Condensed, ';fill:#552200"
id="path523" /><path
d="m 137.3193,-41.402301 -0.36687,1.88217 q 1.88217,-2.217132 4.27476,-2.185231 1.64291,0.01595 2.59995,1.116541 0.97298,1.100591 1.10059,2.998711 0.0638,1.10059 -0.0479,2.153329 l -1.88216,11.308966 h -2.74351 l 1.89812,-11.356818 0.0638,-1.260096 q 0,-2.44044 -2.00978,-2.488292 -1.64291,-0.04785 -3.06251,1.866219 l -0.47852,0.685875 -2.16928,12.553112 h -2.75945 l 2.99871,-17.258535 z"
style="font-style:italic;font-family:'Roboto Condensed';-inkscape-font-specification:'Roboto Condensed, ';fill:#552200"
id="path525" /><path
d="m 153.66867,-23.808804 q -2.90301,-0.0319 -4.33856,-2.089526 -1.43556,-2.057626 -1.05274,-5.614607 l 0.20736,-1.706713 q 0.49446,-4.019547 2.44043,-6.284531 1.96193,-2.280934 4.97659,-2.201181 2.45639,0.0638 3.68458,1.690762 1.24415,1.61101 1.18035,4.545918 l -0.14356,1.91407 -0.23926,1.64291 -9.25134,-0.01595 q -0.20736,1.435553 -0.1914,2.249033 0.0319,1.611009 0.79752,2.536143 0.76563,0.909183 2.18524,0.925134 1.02083,0.0319 2.00977,-0.398765 1.00489,-0.446616 2.10548,-1.547207 l 1.29199,1.802417 q -1.02083,1.339849 -2.52019,1.961922 -1.49935,0.622073 -3.14226,0.590171 z m 2.05762,-15.488019 q -2.82325,-0.127605 -3.95574,3.413425 l -0.43067,1.547207 6.61949,0.01595 0.0798,-0.414715 q 0.0957,-0.733727 0.0957,-1.531257 -0.0638,-2.903006 -2.40854,-3.030611 z"
style="font-style:italic;font-family:'Roboto Condensed';-inkscape-font-specification:'Roboto Condensed, ';fill:#552200"
id="path527" /><path
d="m 171.21429,-28.673732 q 0.20736,-1.515306 -1.69076,-2.520193 l -2.13738,-1.116541 q -1.65886,-0.925134 -2.32879,-1.961922 -0.65397,-1.036788 -0.57422,-2.408539 0.12761,-2.18523 1.78647,-3.620783 1.65886,-1.435553 4.05145,-1.403652 2.31283,0.0638 3.62078,1.531257 1.30795,1.451503 1.21224,3.716486 h -2.72755 q 0.0319,-1.291997 -0.57422,-2.025724 -0.60612,-0.749678 -1.69076,-0.781579 -1.22819,0 -2.02572,0.701826 -0.79753,0.685875 -0.95704,1.786466 -0.19141,1.291997 1.2601,2.121428 l 2.69565,1.37175 q 2.98276,1.658861 2.82325,4.402362 -0.15951,2.344736 -1.88217,3.748388 -1.72266,1.387701 -4.195,1.323898 -2.37664,-0.0319 -3.86004,-1.547206 -1.48341,-1.531257 -1.38771,-3.939795 l 2.77541,0.01595 q -0.0319,1.499355 0.65397,2.280934 0.68588,0.765628 1.94597,0.765628 1.3239,0 2.18523,-0.669924 0.87728,-0.669925 1.02084,-1.770515 z"
style="font-style:italic;font-family:'Roboto Condensed';-inkscape-font-specification:'Roboto Condensed, ';fill:#552200"
id="path529" /><path
d="m 185.80908,-28.673732 q 0.20736,-1.515306 -1.69076,-2.520193 l -2.13738,-1.116541 q -1.65886,-0.925134 -2.32879,-1.961922 -0.65397,-1.036788 -0.57422,-2.408539 0.1276,-2.18523 1.78647,-3.620783 1.65886,-1.435553 4.05144,-1.403652 2.31284,0.0638 3.62079,1.531257 1.30795,1.451503 1.21224,3.716486 h -2.72755 q 0.0319,-1.291997 -0.57422,-2.025724 -0.60612,-0.749678 -1.69076,-0.781579 -1.2282,0 -2.02573,0.701826 -0.79753,0.685875 -0.95703,1.786466 -0.19141,1.291997 1.2601,2.121428 l 2.69564,1.37175 q 2.98276,1.658861 2.82326,4.402362 -0.15951,2.344736 -1.88217,3.748388 -1.72266,1.387701 -4.19501,1.323898 -2.37663,-0.0319 -3.86004,-1.547206 -1.4834,-1.531257 -1.3877,-3.939795 l 2.7754,0.01595 q -0.0319,1.499355 0.65398,2.280934 0.68587,0.765628 1.94597,0.765628 1.3239,0 2.18523,-0.669924 0.87728,-0.669925 1.02084,-1.770515 z"
style="font-style:italic;font-family:'Roboto Condensed';-inkscape-font-specification:'Roboto Condensed, ';fill:#552200"
id="path531" /></g></g></mask><filter
id="mask-powermask-path-effect537_inverse"
inkscape:label="filtermask-powermask-path-effect537"
style="color-interpolation-filters:sRGB"
height="100"
width="100"
x="-50"
y="-50"><feColorMatrix
id="mask-powermask-path-effect537_primitive1"
values="1"
type="saturate"
result="fbSourceGraphic" /><feColorMatrix
id="mask-powermask-path-effect537_primitive2"
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0 "
in="fbSourceGraphic" /></filter></defs><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1916"
inkscape:window-height="1034"
id="namedview6"
showgrid="false"
inkscape:snap-bbox="true"
inkscape:bbox-paths="false"
inkscape:bbox-nodes="true"
inkscape:snap-object-midpoints="false"
inkscape:snap-nodes="false"
inkscape:snap-page="true"
inkscape:zoom="2.2404672"
inkscape:cx="41.286032"
inkscape:cy="17.183916"
inkscape:window-x="0"
inkscape:window-y="44"
inkscape:window-maximized="1"
inkscape:current-layer="layer5"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" /><g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="CrateOutline"
style="display:inline"><path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -152.55184,-4.363046 -2.77138,-192.393534 c 32.08165,-23.54884 37.94494,-20.39987 70.181666,-1.97398 v 26.35103 h 38.369683 l 0.101774,-24.38476 c 28.031691,-19.12674 31.877355,-18.83635 57.882657,-0.71018 l -0.220178,27.44372 41.563279,-1.73147 -0.0073,-25.83142 c 23.634357,-20.05435 28.953925,-14.5283 55.697839,-3.67578 l 0.25171,29.73174 39.1726,0.19951 0.27543,-23.59013 c 32.54024,-21.4184 38.80957,-23.26862 69.80088,-4.29013 V 0 c 0,0 -1.17348,13.967569 -5.59744,18.768595 -5.23122,5.677087 -21.57916,8.408 -21.57916,8.408 H -116.4823 c 0,0 -15.68693,-5.766264 -21.85036,-11.13669 -6.24993,-5.445799 -14.21918,-20.402951 -14.21918,-20.402951 z"
id="path637"
sodipodi:nodetypes="ccccccccccccccccaccac"
mask="url(#mask-powermask-path-effect537)"
transform="matrix(0.26286097,0,0,0.26286097,40.960805,56.724903)"
clip-path="none"
inkscape:path-effect="#path-effect537"
inkscape:original-d="m -152.55184,-4.363046 -2.77138,-192.393534 c 32.08165,-23.54884 37.94494,-20.39987 70.181666,-1.97398 v 26.35103 h 38.369683 l 0.101774,-24.38476 c 28.031691,-19.12674 31.877355,-18.83635 57.882657,-0.71018 l -0.220178,27.44372 41.563279,-1.73147 -0.0073,-25.83142 c 23.634357,-20.05435 28.953925,-14.5283 55.697839,-3.67578 l 0.25171,29.73174 39.1726,0.19951 0.27543,-23.59013 c 32.54024,-21.4184 38.80957,-23.26862 69.80088,-4.29013 V 0 c 0,0 -1.17348,13.967569 -5.59744,18.768595 -5.23122,5.677087 -21.57916,8.408 -21.57916,8.408 H -116.4823 c 0,0 -15.68693,-5.766264 -21.85036,-11.13669 -6.24993,-5.445799 -14.21918,-20.402951 -14.21918,-20.402951 z" /><g
aria-label="Invoice"
id="text3535"
style="font-size:40px;line-height:1.25;fill:#000000"><path
d="m 126.09766,39.921188 q 0,0.820313 -1.09375,0.820313 h -4.41407 q -1.09375,0 -1.09375,-0.820313 0,-0.839843 1.09375,-0.839843 h 1.38672 V 19.511032 h -1.38672 q -1.09375,0 -1.09375,-0.839844 0,-0.820312 1.09375,-0.820312 h 4.41407 q 1.09375,0 1.09375,0.820312 0,0.839844 -1.09375,0.839844 h -1.38672 v 19.570313 h 1.38672 q 1.09375,0 1.09375,0.839843 z"
style="font-family:'East Syriac Ctesiphon';-inkscape-font-specification:'East Syriac Ctesiphon'"
id="path335" /><path
d="m 151.13672,39.921188 q 0,0.820313 -1.09375,0.820313 h -4.41406 q -1.09375,0 -1.09375,-0.820313 0,-0.839843 1.09375,-0.839843 h 1.38671 l -0.0195,-8.027344 q 0,-1.914063 -1.40625,-3.066406 -1.30859,-1.074219 -3.26172,-1.074219 -1.99218,0 -3.53515,1.152344 -0.89844,0.664062 -2.67578,2.753906 l 0.0195,8.261719 h 1.38672 q 1.09375,0 1.09375,0.839843 0,0.820313 -1.09375,0.820313 h -4.41407 q -1.09375,0 -1.09375,-0.820313 0,-0.839843 1.09375,-0.839843 h 1.38672 l -0.0195,-11.582032 h -1.38672 q -1.09375,0 -1.09375,-0.839843 0,-0.820313 1.09375,-0.820313 h 3.02735 v 2.480469 q 3.02734,-3.066406 6.23047,-3.066406 2.5,0 4.33593,1.484375 1.95313,1.582031 1.95313,4.042968 l 0.0195,8.300782 h 1.38672 q 1.09375,0 1.09375,0.839843 z"
style="font-family:'East Syriac Ctesiphon';-inkscape-font-specification:'East Syriac Ctesiphon'"
id="path337" /><path
d="m 177.09375,26.073532 q 0.25391,0.234375 0.25391,0.585938 0,0.742187 -0.9961,0.859375 0.17578,-0.01953 -1.48437,-0.01953 z m -13.63281,0 q 0.2539,0.234375 0.2539,0.585938 0,0.742187 -0.99609,0.859375 0.17578,-0.01953 -1.48438,-0.01953 z m 13.88672,0.585938 q 0,0.742187 -0.9961,0.859375 0.17578,-0.01953 -1.48437,-0.01953 l -6.26953,13.222657 h -2.77344 l -6.34766,-13.222657 q -1.66015,0 -1.48437,0.01953 -0.9961,-0.117188 -0.9961,-0.859375 0,-0.820313 1.03516,-0.820313 h 4.64844 q 1.03515,0 1.03515,0.820313 0,0.742187 -0.99609,0.859375 0.17578,-0.01953 -1.48438,-0.01953 l 5.625,11.582032 h 0.72266 l 5.50781,-11.582032 q -1.66015,0 -1.48437,0.01953 -0.9961,-0.117188 -0.9961,-0.859375 0,-0.820313 1.03516,-0.820313 h 4.66797 q 1.03516,0 1.03516,0.820313 z"
style="font-family:'East Syriac Ctesiphon';-inkscape-font-specification:'East Syriac Ctesiphon'"
id="path339" /><path
d="m 199.71094,33.163376 q 0,3.417969 -2.42188,5.800781 -2.40234,2.382813 -5.83984,2.382813 -3.4375,0 -5.85938,-2.363282 -2.42187,-2.382812 -2.42187,-5.820312 0,-3.4375 2.42187,-5.820313 2.42188,-2.382812 5.85938,-2.382812 3.4375,0 5.83984,2.382812 2.42188,2.382813 2.42188,5.820313 z m -1.48438,0 q 0,-2.8125 -1.99219,-4.746094 -1.97265,-1.953125 -4.80468,-1.953125 -2.8125,0 -4.80469,1.953125 -1.97266,1.933594 -1.97266,4.746094 0,2.792969 1.99219,4.746094 1.99219,1.953125 4.78516,1.953125 2.8125,0 4.80468,-1.933594 1.99219,-1.953125 1.99219,-4.765625 z"
style="font-family:'East Syriac Ctesiphon';-inkscape-font-specification:'East Syriac Ctesiphon'"
id="path341" /><path
d="m 209.69141,21.932907 h -2.42188 v -4.238281 h 2.42188 z m -1.64063,17.148438 V 27.499313 h -1.38672 q -1.09375,0 -1.09375,-0.839843 0,-0.820313 1.09375,-0.820313 h 3.02735 v 13.242188 z m 3.06641,0 q 1.09375,0 1.09375,0.839843 0,0.820313 -1.09375,0.820313 h -4.41407 q -1.09375,0 -1.09375,-0.820313 0,-0.839843 1.09375,-0.839843 z"
style="font-family:'East Syriac Ctesiphon';-inkscape-font-specification:'East Syriac Ctesiphon'"
id="path343" /><path
d="m 234.37891,37.616501 q 0,0.761719 -1.79688,1.933594 -2.85156,1.875 -6.38672,1.875 -3.57422,0 -5.8789,-2.246094 -2.30469,-2.265625 -2.30469,-5.820313 0,-3.59375 2.34375,-5.9375 2.34375,-2.363281 5.9375,-2.363281 3.39844,0 5.72265,2.03125 v -0.644531 q 0.0195,-0.859375 0.72266,-0.859375 0.76172,0 0.76172,0.996094 v 3.359375 q 0,0.996093 -0.76172,0.996093 -0.29297,0 -0.48828,-0.195312 l -0.35156,-1.152344 q -0.29297,-0.996094 -1.54297,-1.914062 -1.52344,-1.113282 -4.14063,-1.113282 -3.00781,0 -4.86328,1.894532 -1.85547,1.875 -1.85547,4.882812 0,2.949219 1.89453,4.785156 1.91407,1.835938 4.86329,1.835938 3.71093,0 6.75781,-2.695313 0.41015,-0.351562 0.64453,-0.351562 0.72266,0 0.72266,0.703125 z"
style="font-family:'East Syriac Ctesiphon';-inkscape-font-specification:'East Syriac Ctesiphon'"
id="path345" /><path
d="m 256,38.280563 q 0,1.074219 -3.28125,2.246094 -2.16797,0.761719 -4.43359,0.761719 -3.71094,0 -6.3086,-2.421875 -2.59765,-2.421875 -2.59765,-6.113281 0,-3.378907 2.48046,-5.644532 2.42188,-2.207031 5.82032,-2.207031 3.71093,0 6.01562,2.402344 2.30469,2.402344 2.26563,6.113281 h -15.07813 q 0.39063,2.929688 2.40235,4.667969 2.03125,1.71875 5,1.71875 3.65234,0 6.42578,-1.992188 0.37109,-0.273437 0.58593,-0.273437 0.70313,0 0.70313,0.742187 z m -1.52344,-6.347656 q -0.44922,-2.5 -2.34375,-4.003906 -1.89453,-1.523438 -4.45312,-1.523438 -2.57813,0 -4.45313,1.503907 -1.875,1.503906 -2.32422,4.023437 z"
style="font-family:'East Syriac Ctesiphon';-inkscape-font-specification:'East Syriac Ctesiphon'"
id="path347" /></g></g></svg>

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@@ -0,0 +1,177 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="115"
height="72"
viewBox="0 0 115 72"
fill="none"
version="1.1"
id="svg4"
sodipodi:docname="paper_heading_virus.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
inkscape:export-filename="paper_heading_virus.svg.96dpi.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<metadata
id="metadata10">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8">
<rect
x="3"
y="2"
width="142.92"
height="136.91501"
id="rect1196" />
<rect
x="12.500253"
y="14.598581"
width="334.51892"
height="47.488827"
id="rect348" />
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1916"
inkscape:window-height="1034"
id="namedview6"
showgrid="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="false"
inkscape:bbox-nodes="true"
inkscape:snap-object-midpoints="false"
inkscape:snap-nodes="false"
inkscape:snap-page="true"
inkscape:zoom="1.9062837"
inkscape:cx="147.14494"
inkscape:cy="104.1293"
inkscape:window-x="0"
inkscape:window-y="44"
inkscape:window-maximized="1"
inkscape:current-layer="layer1"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid472"
originx="0"
originy="0" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
id="layer1"
inkscape:label="Decoration"
style="display:inline">
<g
id="g1206"
transform="matrix(5.8873975,-1.3221777,1.4995494,5.1910162,60.395318,-19.909491)"
style="opacity:0.503157">
<path
style="fill:#2c4597;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 7.7837679,5.8541227 -0.7320508,2.7320508 -5.1961524,2.9999995 -2.73205082,-0.73205 0.73205081,-2.7320511 5.19615241,-3 2.7320508,0.7320508"
id="path474"
sodipodi:nodetypes="ccccccc" />
<circle
style="fill:#2c4597;fill-opacity:1;stroke:none;stroke-width:1.418;stroke-linejoin:round"
id="path1132"
cx="8.9617033"
cy="6.1861205"
r="1"
transform="rotate(60)" />
<path
style="fill:#2c4597;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -0.87648612,10.854123 3.23205082,1.598076 -1.46410162,5.464102 -0.5,-0.866026 1.09807622,-4.098076 -3.2320508,-1.598076"
id="path1134"
sodipodi:nodetypes="cccccc" />
<path
style="fill:#2c4597;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -0.87648612,10.854123 0.23205081,-3.5980765 -5.21410159,-1.0310889 0.5,0.8660254 3.8480762,0.6650635 -0.2320508,3.5980765"
id="path1136"
sodipodi:nodetypes="cccccc" />
<path
style="fill:#2c4597;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M -0.87648612,10.854123 -1.8764861,9.1220719 -4.6085369,8.3900211 l 0.5,0.8660254 1.3660254,0.3660254 1.0838622,1.7833241"
id="path1138"
sodipodi:nodetypes="cccccc"
inkscape:transform-center-x="2.5645765"
inkscape:transform-center-y="-1.5023443" />
<path
style="fill:#2c4597;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -1.0544211,10.54593 0.99999998,1.732051 -0.7320508,2.732051 -0.49999998,-0.866026 0.36602538,-1.366025 -1.00247318,-1.830314"
id="path1140"
sodipodi:nodetypes="cccccc"
inkscape:transform-center-x="-0.18926459"
inkscape:transform-center-y="3.1099789" />
</g>
<path
d="m 5.2873607,16.125208 v 4.295034 l -1.517667,2.899147 H 3.4025162 V 19.0512 L 4.9446617,16.125208 Z M 0.75883825,25.332686 4.741476e-6,24.500524 V 14.246131 H 0.90570926 l 0.22030634,0.26844 1.1504896,1.234822 v 5.449324 2.120672 0.375816 z M 11.358029,3.9380517 h 0.367177 V 8.2062413 L 10.18306,11.132232 H 9.8403616 V 6.8371992 Z M 2.2765052,11.508048 0.90570926,13.011309 H 4.741476e-6 V 2.7569175 L 0.75883825,1.9247548 2.2765052,3.5622363 v 0.3758154 2.1206727 z"
style="font-size:21.3333px;line-height:1.25;font-family:'DSEG14 Classic Mini';-inkscape-font-specification:'DSEG14 Classic Mini';white-space:pre;fill:#000000;stroke-width:1.20159"
id="path606" />
<path
d="m 28.664328,22.836198 v 0.483191 h -2.252022 v -5.046664 -1.234822 l 1.126011,-2.147517 1.126011,2.174361 v 1.207978 z M 21.541084,1.0389042 22.299917,0.20674166 H 32.776716 L 33.53555,1.0389042 32.042361,2.7032296 h -0.04896 -3.329076 -2.252021 -3.329076 -0.04896 z m 4.871222,2.8991475 h 2.252022 v 5.0466635 1.2348228 l -1.126011,2.17436 -1.126011,-2.120672 V 8.9847152 Z M 33.53555,26.218537 32.776716,27.050699 H 22.299917 l -0.758833,-0.832162 1.493188,-1.664326 h 0.04896 3.329077 2.252021 3.329076 0.04896 z"
style="font-size:21.3333px;line-height:1.25;font-family:'DSEG14 Classic Mini';-inkscape-font-specification:'DSEG14 Classic Mini';white-space:pre;fill:#000000;stroke-width:1.20159"
id="path608" />
<path
d="m 43.008729,14.863542 -1.126011,-1.234822 1.126011,-1.234822 h 2.545764 0.636441 l 0.66092,1.261667 -0.66092,1.207977 H 43.351428 Z M 41.515541,1.0389042 42.274374,0.20674166 h 10.476798 l 0.758833,0.83216254 -1.493188,1.6643254 h -0.04896 -3.329075 -2.252023 -3.329076 -0.04896 z m 8.273733,15.0863038 h 0.342698 l 1.542146,2.925992 v 4.268189 H 51.30694 L 49.789274,20.420242 Z M 40.70775,25.332686 39.948916,24.500524 V 14.246131 h 0.905704 l 0.220307,0.26844 1.15049,1.234822 v 5.449324 2.120672 0.375816 z M 54.317796,1.9247548 55.07663,2.7569175 V 13.011309 H 54.170924 L 52.800129,11.508048 V 10.756417 6.0587244 3.9380517 3.5890802 Z M 42.225417,11.508048 40.85462,13.011309 H 39.948916 V 2.7569175 l 0.758834,-0.8321627 1.517667,1.6374815 v 0.3758154 2.1206727 z m 9.7914,0.88585 1.126011,1.234822 -1.126011,1.234822 h -0.342699 -1.884844 -0.97914 l -0.66092,-1.207977 0.685398,-1.261667 h 0.636441 z"
style="font-size:21.3333px;line-height:1.25;font-family:'DSEG14 Classic Mini';-inkscape-font-specification:'DSEG14 Classic Mini';white-space:pre;fill:#000000;stroke-width:1.20159"
id="path610" />
<path
d="M 60.682203,25.332686 59.92337,24.500524 V 14.246131 h 0.905705 l 0.220306,0.26844 1.15049,1.234822 v 5.449324 2.120672 0.375816 z m 12.802256,0.885851 -0.758834,0.832162 H 62.248827 l -0.758833,-0.832162 1.493188,-1.664326 h 0.04896 3.329076 2.252022 3.329076 0.04896 z m -0.709877,-10.469144 1.370797,-1.503262 h 0.905704 V 24.500524 L 74.29225,25.332686 72.774582,23.695205 V 23.319389 21.198717 Z M 74.29225,1.9247548 75.051083,2.7569175 V 13.011309 H 74.145379 L 72.774582,11.508048 V 10.756417 6.0587244 3.9380517 3.5890802 Z M 62.199871,11.508048 60.829075,13.011309 H 59.92337 V 2.7569175 l 0.758833,-0.8321627 1.517668,1.6374815 v 0.3758154 2.1206727 z"
style="font-size:21.3333px;line-height:1.25;font-family:'DSEG14 Classic Mini';-inkscape-font-specification:'DSEG14 Classic Mini';white-space:pre;fill:#000000;stroke-width:1.20159"
id="path612" />
<path
d="m 82.95764,14.863542 -1.12601,-1.234822 1.12601,-1.234822 h 2.545765 0.63644 l 0.660921,1.261667 -0.660921,1.207977 H 83.30034 Z m 2.227544,-3.73131 H 84.842485 L 83.30034,8.2062413 V 3.9380517 h 0.367177 l 1.517667,2.8991475 z M 81.464452,1.0389042 82.223285,0.20674166 h 10.476799 l 0.758833,0.83216254 -1.493188,1.6643254 h -0.04896 -3.329076 -2.252022 -3.329076 -0.04896 z m 8.273732,15.0863038 h 0.3427 L 91.62303,19.0512 v 4.268189 h -0.367178 l -1.517668,-2.899147 z m 3.720733,10.093329 -0.758833,0.832162 H 82.223285 l -0.758833,-0.832162 1.493188,-1.664326 h 0.04896 3.329076 2.252021 3.329077 0.04896 z M 92.74904,15.749393 94.119836,14.246131 h 0.905705 V 24.500524 L 94.266708,25.332686 92.74904,23.695205 V 23.319389 21.198717 Z M 82.174329,11.508048 80.803532,13.011309 H 79.897828 V 2.7569175 l 0.758833,-0.8321627 1.517668,1.6374815 v 0.3758154 2.1206727 z m 9.7914,0.88585 1.126011,1.234822 -1.126011,1.234822 h -0.342699 -1.884846 -0.97914 l -0.660919,-1.207977 0.685399,-1.261667 h 0.636441 z"
style="font-size:21.3333px;line-height:1.25;font-family:'DSEG14 Classic Mini';-inkscape-font-specification:'DSEG14 Classic Mini';white-space:pre;fill:#000000;stroke-width:1.20159"
id="path614" />
<path
d="m 3.0598172,54.193291 -1.126011,-1.234822 1.126011,-1.234821 h 2.545764 0.6364409 l 0.6609194,1.261666 -0.6609194,1.207977 H 3.4025162 Z M 5.2873607,50.461982 H 4.9446617 L 3.4025162,47.53599 V 43.2678 h 0.3671775 l 1.517667,2.899149 z M 1.5666287,40.368653 2.3254622,39.536491 H 12.80226 l 0.758834,0.832162 -1.493189,1.664325 H 12.018944 8.6898676 6.4378451 3.1087696 3.0598121 Z M 9.8403616,55.454957 H 10.18306 l 1.542146,2.925992 v 4.26819 H 11.358029 L 9.8403616,59.74999 Z M 13.561094,65.548286 12.80226,66.380448 H 2.3254622 L 1.5666287,65.548286 3.0598172,63.88396 h 0.048957 3.3290751 2.2520225 3.3290762 0.04896 z M 12.851217,55.079142 14.222013,53.57588 h 0.905705 v 10.254393 l -0.758833,0.832162 -1.517668,-1.637481 V 62.649139 60.528466 Z M 2.2765052,50.837797 0.90570926,52.341058 H 4.741476e-6 V 42.086666 L 0.75883825,41.254504 2.2765052,42.891985 v 0.375815 2.120673 z m 9.7913998,0.885851 1.126011,1.234821 -1.126011,1.234822 H 11.725206 9.8403616 8.8612215 L 8.2003022,52.985314 8.8856997,51.723648 h 0.6364412 z"
style="font-size:21.3333px;line-height:1.25;font-family:'DSEG14 Classic Mini';-inkscape-font-specification:'DSEG14 Classic Mini';white-space:pre;fill:#000000;stroke-width:1.20159"
id="path618" />
<path
d="m 21.541084,40.368653 0.758833,-0.832162 h 10.476799 l 0.758834,0.832162 -1.493189,1.664325 h -0.04896 -3.329076 -2.252021 -3.329076 -0.04896 z m -0.80779,24.293782 -0.758833,-0.832162 V 53.57588 h 0.905704 l 0.220307,0.26844 1.150489,1.234822 v 5.449324 2.120673 0.375815 z m 12.802256,0.885851 -0.758834,0.832162 H 22.299917 l -0.758833,-0.832162 1.493188,-1.664326 h 0.04896 3.329077 2.252021 3.329076 0.04896 z M 22.250961,50.837797 20.880165,52.341058 H 19.974461 V 42.086666 l 0.758833,-0.832162 1.517667,1.637481 v 0.375815 2.120673 z"
style="font-size:21.3333px;line-height:1.25;font-family:'DSEG14 Classic Mini';-inkscape-font-specification:'DSEG14 Classic Mini';white-space:pre;fill:#000000;stroke-width:1.20159"
id="path620" />
<path
d="m 43.008729,54.193291 -1.126011,-1.234822 1.126011,-1.234821 h 2.545764 0.636441 l 0.66092,1.261666 -0.66092,1.207977 h -2.839506 z m -1.493188,-13.824638 0.758833,-0.832162 h 10.476798 l 0.758833,0.832162 -1.493188,1.664325 h -0.04896 -3.329075 -2.252023 -3.329076 -0.04896 z M 40.70775,64.662435 39.948916,63.830273 V 53.57588 h 0.905704 l 0.220307,0.26844 1.15049,1.234822 v 5.449324 2.120673 0.375815 z m 12.092379,-9.583293 1.370795,-1.503262 h 0.905706 v 10.254393 l -0.758834,0.832162 -1.517667,-1.637481 v -0.375815 -2.120673 z m 1.517667,-13.824638 0.758834,0.832162 V 52.341058 H 54.170924 L 52.800129,50.837797 V 50.086165 45.388473 43.2678 42.918829 Z M 42.225417,50.837797 40.85462,52.341058 H 39.948916 V 42.086666 l 0.758834,-0.832162 1.517667,1.637481 v 0.375815 2.120673 z m 9.7914,0.885851 1.126011,1.234821 -1.126011,1.234822 h -0.342699 -1.884844 -0.97914 l -0.66092,-1.207977 0.685398,-1.261666 h 0.636441 z"
style="font-size:21.3333px;line-height:1.25;font-family:'DSEG14 Classic Mini';-inkscape-font-specification:'DSEG14 Classic Mini';white-space:pre;fill:#000000;stroke-width:1.20159"
id="path622" />
<path
d="M 65.210725,50.461982 H 64.868027 L 63.325881,47.53599 V 43.2678 h 0.367178 l 1.517666,2.899149 z m 4.553002,4.992975 h 0.342698 l 1.542146,2.925992 v 4.26819 H 71.281394 L 69.763727,59.74999 Z M 60.682203,64.662435 59.92337,63.830273 V 53.57588 h 0.905705 l 0.220306,0.26844 1.15049,1.234822 v 5.449324 2.120673 0.375815 z m 12.092379,-9.583293 1.370797,-1.503262 h 0.905704 v 10.254393 l -0.758833,0.832162 -1.517668,-1.637481 v -0.375815 -2.120673 z m 1.517668,-13.824638 0.758833,0.832162 V 52.341058 H 74.145379 L 72.774582,50.837797 V 50.086165 45.388473 43.2678 42.918829 Z m -12.092379,9.583293 -1.370796,1.503261 H 59.92337 V 42.086666 l 0.758833,-0.832162 1.517668,1.637481 v 0.375815 2.120673 z"
style="font-size:21.3333px;line-height:1.25;font-family:'DSEG14 Classic Mini';-inkscape-font-specification:'DSEG14 Classic Mini';white-space:pre;fill:#000000;stroke-width:1.20159"
id="path624" />
<path
d="m 82.95764,54.193291 -1.12601,-1.234822 1.12601,-1.234821 h 2.545765 0.63644 l 0.660921,1.261666 -0.660921,1.207977 H 83.30034 Z m -1.493188,-13.824638 0.758833,-0.832162 h 10.476799 l 0.758833,0.832162 -1.493188,1.664325 h -0.04896 -3.329076 -2.252022 -3.329076 -0.04896 z m 11.994465,25.179633 -0.758833,0.832162 H 82.223285 L 81.464452,65.548286 82.95764,63.88396 h 0.04896 3.329076 2.252021 3.329077 0.04896 z M 92.74904,55.079142 94.119836,53.57588 h 0.905705 v 10.254393 l -0.758833,0.832162 -1.517668,-1.637481 v -0.375815 -2.120673 z m 1.517668,-13.824638 0.758833,0.832162 V 52.341058 H 94.119836 L 92.74904,50.837797 V 50.086165 45.388473 43.2678 42.918829 Z m -12.092379,9.583293 -1.370797,1.503261 H 79.897828 V 42.086666 l 0.758833,-0.832162 1.517668,1.637481 v 0.375815 2.120673 z m 9.7914,0.885851 1.126011,1.234821 -1.126011,1.234822 h -0.342699 -1.884846 -0.97914 l -0.660919,-1.207977 0.685399,-1.261666 h 0.636441 z"
style="font-size:21.3333px;line-height:1.25;font-family:'DSEG14 Classic Mini';-inkscape-font-specification:'DSEG14 Classic Mini';white-space:pre;fill:#000000;stroke-width:1.20159"
id="path626" />
<path
d="m 102.9321,54.193291 -1.12601,-1.234822 1.12601,-1.234821 h 2.54576 0.63644 l 0.66092,1.261666 -0.66092,1.207977 h -2.8395 z m -1.49319,-13.824638 0.75883,-0.832162 h 10.47681 l 0.75883,0.832162 -1.49319,1.664325 h -0.049 -3.32907 -2.25202 -3.32908 -0.049 z m 11.99447,25.179633 -0.75883,0.832162 h -10.47681 l -0.75883,-0.832162 1.49319,-1.664326 h 0.049 3.32908 2.25202 3.32907 0.049 z M 112.7235,55.079142 114.0943,53.57588 H 115 v 10.254393 l -0.75883,0.832162 -1.51767,-1.637481 V 62.649139 60.528466 Z M 114.24117,41.254504 115,42.086666 v 10.254392 h -0.9057 l -1.3708,-1.503261 V 50.086165 45.388473 43.2678 42.918829 Z m -12.09238,9.583293 -1.3708,1.503261 H 99.872286 V 42.086666 l 0.758834,-0.832162 1.51767,1.637481 v 0.375815 2.120673 z m 9.7914,0.885851 1.12601,1.234821 -1.12601,1.234822 h -0.3427 -1.88484 -0.97915 l -0.66092,-1.207977 0.6854,-1.261666 h 0.63644 z"
style="font-size:21.3333px;line-height:1.25;font-family:'DSEG14 Classic Mini';-inkscape-font-specification:'DSEG14 Classic Mini';white-space:pre;fill:#000000;stroke-width:1.20159"
id="path628" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Text" />
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432. stamp-syndicate is a modified version of stamp-warden. paper_stamp-syndicate by Veritius.",
"copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432. stamp-syndicate is a modified version of stamp-warden. paper_stamp-syndicate by Veritius. paper_receipt by eoineoineoin",
"size": {
"x": 32,
"y": 32
@@ -201,6 +201,18 @@
{
"name": "paper_words-blood"
},
{
"name": "paper_receipt"
},
{
"name": "paper_receipt_words"
},
{
"name": "paper_dotmatrix"
},
{
"name": "paper_dotmatrix_words"
},
{
"name": "pen"
},

Binary file not shown.

After

Width:  |  Height:  |  Size: 215 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 321 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 202 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 264 B