2021-11-05 pre-Highcharts

This commit is contained in:
Steve 2025-01-05 18:18:39 +00:00
parent 18468be006
commit 59143c145e
288 changed files with 14864 additions and 773 deletions

BIN
.vs/Steves_Code/v17/.wsuo Normal file

Binary file not shown.

View File

@ -0,0 +1,12 @@
{
"Version": 1,
"WorkspaceRootPath": "C:\\Users\\Steve.OZDOMAIN\\source\\repos\\Steves_Code\\",
"Documents": [],
"DocumentGroupContainers": [
{
"Orientation": 0,
"VerticalTabListWidth": 256,
"DocumentGroups": []
}
]
}

View File

@ -0,0 +1,7 @@
{
"ExpandedNodes": [
""
],
"SelectedNode": "\\C:\\Users\\Steve.OZDOMAIN\\Source\\Repos\\Steves_Code",
"PreviewInSolutionExplorer": false
}

Binary file not shown.

View File

@ -0,0 +1,12 @@
{
"Version": 1,
"WorkspaceRootPath": "C:\\Users\\Steve.OZDOMAIN\\source\\repos\\Steves_Code\\Websites\\SharePrices\\",
"Documents": [],
"DocumentGroupContainers": [
{
"Orientation": 0,
"VerticalTabListWidth": 256,
"DocumentGroups": []
}
]
}

View File

@ -0,0 +1,12 @@
{
"Version": 1,
"WorkspaceRootPath": "C:\\Users\\Steve.OZDOMAIN\\source\\repos\\Steves_Code\\Websites\\SharePrices\\",
"Documents": [],
"DocumentGroupContainers": [
{
"Orientation": 0,
"VerticalTabListWidth": 256,
"DocumentGroups": []
}
]
}

View File

@ -33,7 +33,21 @@ Public Class DataAccessLayer
DisposeSQLCommand(c)
End Function
Public Shared Function AddHolding(AccountName As String, Symbol As String, NoUnits As Integer, PurchasePricePerUnit As Double, PurchaseDate As Int64) As String
Public Shared Sub UpdateInstrument(Symbol As String, GMTOffset As Integer, Currency As String, CurrentPrice As Double, InstrumentType As String, TradeDayStart As DateTime, TradeDayEnd As DateTime)
'@Symbol varchar(8), @GMTOffset int, @Currency varchar(3), @CurrentPrice money, @InstrumentType varchar(10)
Dim c As SqlCommand = GetSQLCommand("usp_UpdateInstrument")
c.Parameters.AddWithValue("Symbol", Symbol)
c.Parameters.AddWithValue("GMTOffset", GMTOffset)
c.Parameters.AddWithValue("Currency", Currency)
c.Parameters.AddWithValue("CurrentPrice", CurrentPrice)
c.Parameters.AddWithValue("InstrumentType", InstrumentType)
c.Parameters.AddWithValue("TradeDayStart", TradeDayStart)
c.Parameters.AddWithValue("TradeDayEnd", TradeDayEnd)
c.ExecuteNonQuery()
DisposeSQLCommand(c)
End Sub
Public Shared Function AddHolding(AccountName As String, Symbol As String, NoUnits As Double, PurchasePricePerUnit As Double, PurchaseDate As Int64) As String
Dim c As SqlCommand = GetSQLCommand("usp_InsertHolding")
c.Parameters.AddWithValue("Account", AccountName)
c.Parameters.AddWithValue("Symbol", Symbol)
@ -160,10 +174,25 @@ Public Class DataAccessLayer
DisposeSQLCommand(c)
End Function
Public Shared Function DeleteHolding(HoldingID) As String
Dim c As SqlCommand = GetSQLCommand("usp_DeleteHolding")
'Public Shared Function DeleteHolding(HoldingID) As String
' Dim c As SqlCommand = GetSQLCommand("usp_DeleteHolding")
' c.Parameters.AddWithValue("HoldingID", HoldingID)
' DeleteHolding = DataReaderToJSONString(c.ExecuteReader())
' DisposeSQLCommand(c)
'End Function
Public Shared Function SoldHolding(HoldingID As Integer, SoldDate As DateTime) As String
Dim c As SqlCommand = GetSQLCommand("usp_SoldHolding")
c.Parameters.AddWithValue("HoldingID", HoldingID)
DeleteHolding = DataReaderToJSONString(c.ExecuteReader())
c.Parameters.AddWithValue("SoldDate", SoldDate)
SoldHolding = DataReaderToJSONString(c.ExecuteReader())
DisposeSQLCommand(c)
End Function
Public Shared Function SwapInstrumentDisplayOrders(Symbol1 As String, Symbol2 As String) As String
Dim c As SqlCommand = GetSQLCommand("usp_SwapDisplayOrder")
c.Parameters.AddWithValue("Symbol1", Symbol1)
c.Parameters.AddWithValue("Symbol2", Symbol2)
SwapInstrumentDisplayOrders = DataReaderToJSONString(c.ExecuteReader())
DisposeSQLCommand(c)
End Function
@ -210,7 +239,7 @@ Public Class DataAccessLayer
End While
If result <> "" Then result = result.Substring(1)
If noRows > 1 Then result = "[" + result + "]"
'Debug.Print("Result: " + result)
'Debug.Print(" DataReaderToJSONString Result: " + result)
Return result
End Function
End Class

View File

@ -2,9 +2,13 @@ USE SharePrices
GO
/*
DROP VIEW vErroneousPrices_Intraday
DROP VIEW vErroneousPrices_Daily
DROP VIEW vHolding
DROP PROCEDURE usp_SwapDisplayOrder
DROP PROCEDURE usp_GetHoldingsHistory
DROP PROCEDURE usp_DeleteHolding
--DROP PROCEDURE usp_DeleteHolding
DROP PROCEDURE usp_SoldHolding
DROP PROCEDURE usp_GetAccounts
DROP PROCEDURE usp_GetHoldings
DROP PROCEDURE usp_InsertHolding
@ -12,6 +16,7 @@ DROP PROCEDURE usp_InsertIntradayData
DROP PROCEDURE usp_InsertDailyData
DROP PROCEDURE usp_GetDailyData
DROP PROCEDURE usp_GetIntradayData
DROP PROCEDURE usp_UpdateInstrument
DROP PROCEDURE usp_InsertInstrument
DROP PROCEDURE usp_GetInstruments
DROP TYPE PriceDataType
@ -53,23 +58,39 @@ CREATE TABLE Instrument (
--ExchangeID tinyint NOT NULL,
Symbol VARCHAR(8) NOT NULL,
FullName VARCHAR(100) NULL,
DisplayName VARCHAR(30) NULL,
DisplayOrder TINYINT NULL,
PostPandemicDilution money NOT NULL,
GMTOffset INT NULL,
Currency VARCHAR(3) NULL,
--CurrentPrice money NULL,
CurrentPrice real NULL,
InstrumentType VARCHAR(15) NULL,
ShowInMarquee CHAR(1) NULL, -- A = Always, O = Only when open, NULL = Never
TradeDayStart datetime NULL,
TradeDayEnd datetime NULL,
LastUpdated datetime NULL,
CONSTRAINT PK_Instrument PRIMARY KEY CLUSTERED (InstrumentID),
CONSTRAINT UC_Instrument_Symbol UNIQUE NONCLUSTERED (Symbol),
--CONSTRAINT FK_Instrument_Exchange FOREIGN KEY (ExchangeID) REFERENCES Exchange (ExchangeID)
)
GO
--CREATE NONCLUSTERED INDEX IDX_Instrument_ExchangeID_Symbol ON Instrument (ExchangeID, Symbol)
CREATE NONCLUSTERED INDEX IDX_Instrument_Symbol ON Instrument (Symbol)
--CREATE NONCLUSTERED INDEX IDX_Instrument_Symbol ON Instrument (Symbol)
CREATE NONCLUSTERED INDEX IDX_Instrument_DisplayOrder ON Instrument (DisplayOrder)
GO
CREATE TABLE InstrumentHistory_Daily (
InstrumentID smallint NOT NULL,
HistoryDT date NOT NULL,
OpenPrice money NULL,
HighPrice money NULL,
LowPrice money NULL,
ClosePrice money NULL,
--OpenPrice money NULL,
--HighPrice money NULL,
--LowPrice money NULL,
--ClosePrice money NULL,
OpenPrice real NULL,
HighPrice real NULL,
LowPrice real NULL,
ClosePrice real NULL,
Volume bigint NULL,
CONSTRAINT PK_InstrumentHistory_Daily PRIMARY KEY CLUSTERED (InstrumentID, HistoryDT),
CONSTRAINT FK_InstrumentHistory_Daily_Instrument FOREIGN KEY (InstrumentID) REFERENCES Instrument (InstrumentID)
@ -79,10 +100,14 @@ GO
CREATE TABLE InstrumentHistory_Intraday (
InstrumentID smallint NOT NULL,
HistoryDT smalldatetime NOT NULL,
OpenPrice money NULL,
HighPrice money NULL,
LowPrice money NULL,
ClosePrice money NULL,
--OpenPrice money NULL,
--HighPrice money NULL,
--LowPrice money NULL,
--ClosePrice money NULL,
OpenPrice real NULL,
HighPrice real NULL,
LowPrice real NULL,
ClosePrice real NULL,
Volume bigint NULL,
CONSTRAINT PK_InstrumentHistory_Intraday PRIMARY KEY CLUSTERED (InstrumentID, HistoryDT),
CONSTRAINT FK_InstrumentHistory_Intraday_Instrument FOREIGN KEY (InstrumentID) REFERENCES Instrument (InstrumentID)
@ -103,16 +128,20 @@ INSERT Account (ShortName) VALUES
('Steph ii ISA'),
('Steph ii Trd'),
('Steve ii Trd'),
('Steve ii ISA'),
('Steve AJB'),
('Steph AJB')
('Steph AJB'),
('Steve Crypto')
GO
CREATE TABLE Holding (
HoldingID int IDENTITY NOT NULL,
AccountID tinyint NOT NULL,
InstrumentID smallint NOT NULL,
NoUnits int NOT NULL,
PurchasePricePerUnit money NOT NULL,
--NoUnits int NOT NULL,
NoUnits real NOT NULL,
--PurchasePricePerUnit money NOT NULL,
PurchasePricePerUnit real NOT NULL,
PurchaseDate datetime NOT NULL,
SoldDate datetime NULL,
CONSTRAINT PK_Holding PRIMARY KEY CLUSTERED (HoldingID),
@ -124,10 +153,14 @@ GO
CREATE TYPE PriceDataType
AS TABLE (
PriceDT datetime NOT NULL,
OpenPrice money NULL,
HighPrice money NULL,
LowPrice money NULL,
ClosePrice money NULL,
--OpenPrice money NULL,
--HighPrice money NULL,
--LowPrice money NULL,
--ClosePrice money NULL,
OpenPrice real NULL,
HighPrice real NULL,
LowPrice real NULL,
ClosePrice real NULL,
Volume bigint NULL
)
GO
@ -147,7 +180,7 @@ BEGIN
SELECT @DisplayOrder = ISNULL(@DisplayOrder, 1)
--INSERT Instrument (ExchangeID, Symbol, FullName, DisplayOrder) SELECT @ExchangeID, @Symbol, @FullName, @DisplayOrder WHERE NOT EXISTS (SELECT NULL FROM Instrument WHERE ExchangeID = @ExchangeID AND Symbol = @Symbol)
INSERT Instrument (Symbol, FullName, DisplayOrder) SELECT @Symbol, @FullName, @DisplayOrder
INSERT Instrument (Symbol, FullName, DisplayOrder, PostPandemicDilution) SELECT @Symbol, @FullName, @DisplayOrder, 1
SELECT
i.DisplayOrder,
i.FullName as [InstrumentName],
@ -165,6 +198,7 @@ END
GO
GRANT EXECUTE ON usp_InsertInstrument TO WebApp_Role
GO
/*
EXEC usp_InsertInstrument '^AXJO', 'S&P ASX 200'
EXEC usp_InsertInstrument 'QAN.AX', 'Qantas'
EXEC usp_InsertInstrument 'WEB.AX', 'Webjet'
@ -197,6 +231,7 @@ EXEC usp_InsertInstrument 'EBAY', 'E-bay'
EXEC usp_InsertInstrument 'GBPUSD=X', 'GBP/USD'
EXEC usp_InsertInstrument 'GBPAUD=X', 'GBP/AUD'
GO
*/
/*
@ -206,6 +241,33 @@ delete Instrument where InstrumentID>31
*/
--CREATE PROCEDURE usp_UpdateInstrument (@Symbol varchar(8), @GMTOffset int, @Currency varchar(3), @CurrentPrice money, @InstrumentType varchar(15), @TradeDayStart datetime, @TradeDayEnd datetime)
CREATE PROCEDURE usp_UpdateInstrument (@Symbol varchar(8), @GMTOffset int, @Currency varchar(3), @CurrentPrice real, @InstrumentType varchar(15), @TradeDayStart datetime, @TradeDayEnd datetime)
AS
BEGIN
SET NOCOUNT ON
DECLARE @DisplayOrder tinyint
UPDATE
Instrument
SET
--DisplayName VARCHAR(30) NULL,
--PostPandemicDilution money NOT NULL,
--ShowInMarquee CHAR(1) NULL, -- A = Always, O = Only when open, NULL = Never
GMTOffset = @GMTOffset,
Currency = @Currency,
CurrentPrice = @CurrentPrice,
InstrumentType = @InstrumentType,
TradeDayStart = @TradeDayStart,
TradeDayEnd = @TradeDayEnd,
LastUpdated = CURRENT_TIMESTAMP
WHERE
Symbol = @Symbol
END
GO
GRANT EXECUTE ON usp_UpdateInstrument TO WebApp_Role
GO
CREATE PROCEDURE usp_GetAccounts
AS
BEGIN
@ -231,7 +293,16 @@ BEGIN
i.DisplayOrder,
--e.ShortName as [Exchange],
i.FullName as [InstrumentName],
ISNULL(i.DisplayName, LEFT(i.FullName, 30)) as [DisplayName],
i.Symbol as [Symbol],
i.PostPandemicDilution as [PostPandemicDilution],
i.GMTOffset as [GMTOffset],
i.Currency as [Currency],
i.CurrentPrice as [CurrentPrice],
i.InstrumentType as [InstrumentType],
i.ShowInMarquee as [ShowInMarquee],
i.TradeDayStart as [SingleDayStartDate],
i.TradeDayEnd as [SingleDayEndDate],
ISNULL((SELECT MIN(dd.HistoryDT) FROM InstrumentHistory_Daily dd WHERE dd.InstrumentID = i.InstrumentID), CONVERT(DATETIME, '2030-12-31')) as [MinDailyDate],
ISNULL((SELECT MAX(dd.HistoryDT) FROM InstrumentHistory_Daily dd WHERE dd.InstrumentID = i.InstrumentID), CONVERT(DATETIME, '1970-01-01')) as [MaxDailyDate],
ISNULL((SELECT MIN(id.HistoryDT) FROM InstrumentHistory_Intraday id WHERE id.InstrumentID = i.InstrumentID), CONVERT(DATETIME, '2030-12-31')) as [MinIntradayDate],
@ -309,13 +380,14 @@ AS
BEGIN
SET NOCOUNT ON
DECLARE @InstrumentID int
DECLARE @NoUpdated int
--DECLARE @NoUpdated int
DECLARE @NoInserted int
SELECT @InstrumentID = InstrumentID FROM Instrument WHERE Symbol = @Symbol
IF @InstrumentID IS NOT NULL
BEGIN
/*
UPDATE
h
SET
@ -331,6 +403,7 @@ BEGIN
AND h.HistoryDT = CONVERT(date, d.PriceDT)
SET @NoUpdated = @@ROWCOUNT
*/
INSERT InstrumentHistory_Daily (
InstrumentID,
@ -342,7 +415,7 @@ BEGIN
Volume)
SELECT
@InstrumentID,
CONVERT(date, PriceDT),
CONVERT(date, DATEADD(hour, 1, PriceDT)), --Add an hour to the input datetime before converting to date to allow for changes in daylight savings
OpenPrice,
HighPrice,
LowPrice,
@ -351,11 +424,11 @@ BEGIN
FROM
@PriceData d
WHERE
NOT EXISTS (SELECT NULL FROM InstrumentHistory_Daily h WHERE h.InstrumentID = @InstrumentID AND h.HistoryDT = CONVERT(date, d.PriceDT))
NOT EXISTS (SELECT NULL FROM InstrumentHistory_Daily h WHERE h.InstrumentID = @InstrumentID AND h.HistoryDT = CONVERT(date, DATEADD(hour, 1, PriceDT)))
SET @NoInserted = @@ROWCOUNT
SELECT @NoInserted as [NoInserted], @NoUpdated as [NoUpdated]
SELECT @NoInserted as [NoInserted] /*, @NoUpdated as [NoUpdated]*/
END
ELSE
BEGIN
@ -428,7 +501,8 @@ GO
GRANT EXECUTE ON usp_InsertIntradayData TO WebApp_Role
GO
CREATE PROCEDURE usp_InsertHolding (@Account varchar(20), @Symbol varchar(8), @NoUnits int, @PurchasePricePerUnit money, @PurchaseDate datetime, @Solddate datetime = NULL)
--CREATE PROCEDURE usp_InsertHolding (@Account varchar(20), @Symbol varchar(8), @NoUnits int, @PurchasePricePerUnit money, @PurchaseDate datetime, @Solddate datetime = NULL)
CREATE PROCEDURE usp_InsertHolding (@Account varchar(20), @Symbol varchar(8), @NoUnits real, @PurchasePricePerUnit real, @PurchaseDate datetime, @Solddate datetime = NULL)
AS
BEGIN
DECLARE @AccountID tinyint
@ -473,76 +547,77 @@ END
GO
GRANT EXECUTE ON usp_InsertHolding TO WebApp_Role
GO
-- EXEC usp_InsertHolding 'Steve ii Trd', 'QAN.AX', 15700, 3.63, '2020-04-28', '2020-06-12'
-- EXEC usp_InsertHolding 'Steve ii Trd', 'WEB.AX', 17000, 2.55, '2020-04-28', '2020-06-12'
-- EXEC usp_InsertHolding 'Steve ii Trd', 'WBC.AX', 2240, 15.07, '2020-05-13', '2020-06-12'
-- EXEC usp_InsertHolding 'Steve ii Trd', 'FLT.AX', 3500, 13.813, '2020-06-03', '2020-06-12'
-- EXEC usp_InsertHolding 'Steve ii Trd', 'WEB.AX', 20618, 3.0359, '2020-07-22 05:37', NULL
-- EXEC usp_InsertHolding 'Steph AJB', 'TMPL.L', 2372, 708, '2020-05-13'
-- EXEC usp_InsertHolding 'Steph AJB', 'SDV.L', 2000, 127, '2020-05-17', '2020-06-12'
-- EXEC usp_InsertHolding 'Steph AJB', 'BP.L', 5787, 311, '2020-05-13'
-- EXEC usp_InsertHolding 'Steph AJB', 'RDSB.L', 1897, 1264.88, '2020-05-11'
-- EXEC usp_InsertHolding 'Steph AJB', 'LLOY.L', 59170, 30.42, '2020-05-11'
-- EXEC usp_InsertHolding 'Steph AJB', 'BARC.L', 17261, 104.28, '2020-05-11'
-- EXEC usp_InsertHolding 'Steph HL Trd', 'EBAY', 949, 39.35, '2020-04-29', '2020-06-11'
-- EXEC usp_InsertHolding 'Steph HL Trd', 'NCLH', 1696, 21.72, '2020-06-10', '2020-06-11'
-- EXEC usp_InsertHolding 'Steph HL Trd', 'AMZN', 15, 2375.18, '2020-04-29', '2020-06-05'
-- EXEC usp_InsertHolding 'Steph HL Trd', 'IAG.L', 6644, 325.1, '2020-06-05'
-- EXEC usp_InsertHolding 'Steph HL Trd', 'RR.L', 5783, 335.08, '2020-06-05'
-- EXEC usp_InsertHolding 'Steph HL Trd', 'RR.L', 19276, 32.00, '2020-11-09'
-- EXEC usp_InsertHolding 'Steph ii ISA', 'AAL', 2170, 11.5245, '2020-07-21 12:13', NULL
-- EXEC usp_InsertHolding 'Steph ii ISA', 'FLT.AX', 2705, 11.63, '2020-08-20 01:10', NULL
-- EXEC usp_InsertHolding 'Steph ii ISA', 'RCL', 1050, 54.15 , '2020-05-27', '2020-06-11'
-- EXEC usp_InsertHolding 'Steph ii ISA', 'GME', 125, 125.033296, '2021-02-25 15:01', NULL
-- EXEC usp_InsertHolding 'Steph ii ISA', 'AAL', 1840, 20.845949, '2021-02-26 14:13', NULL
-- EXEC usp_InsertHolding 'Steph ii Trd', 'NCLH', 2650, 17.8, '2020-05-27', '2020-06-11'
-- EXEC usp_InsertHolding 'Steph ii Trd', 'AML.L', 9985, 67.1, '2020-06-04', '2020-06-12'
-- EXEC usp_InsertHolding 'Steph ii Trd', 'CBA.AX', 580, 59.00, '2020-05-13', '2020-06-12'
-- EXEC usp_InsertHolding 'Steph ii Trd', 'NCLH', 2580, 19.037, '2020-07-21 11:55', NULL
-- EXEC usp_InsertHolding 'Steph ii Trd', 'NCLH', 2580, 15.1690, '2020-07-21 11:55', NULL
-- EXEC usp_InsertHolding 'Steph ii Trd', 'RCL', 1071, 53.7053, '2020-07-21 12:01', NULL
-- EXEC usp_InsertHolding 'Steph ii Trd', 'RCL', 1078, 53.192, '2020-07-21 12:18', NULL
-- EXEC usp_InsertHolding 'Steph ii ISA', 'AAL', 2170, 11.5245, '2020-07-21 12:13', NULL
-- EXEC usp_InsertHolding 'Steph ii ISA', 'FLT.AX', 2705, 11.63, '2020-08-20 01:10', NULL
-- EXEC usp_InsertHolding 'Steph ii Trd', 'MKS.L', 33546, 138.59, '2021-02-22 14:58', NULL
-- EXEC usp_InsertHolding 'Steph ii Trd', 'CUK', 3250, 21.54336, '2021-02-22 15:04', NULL
-- EXEC usp_InsertHolding 'Steph ii Trd', 'AAL', 1700, 20.42657, '2021-02-22 15:11', NULL
-- EXEC usp_InsertHolding 'Steph ii Trd', 'RR.L', 28762, 100.8243, '2021-02-22 15:15', NULL
-- EXEC usp_InsertHolding 'Steph ii Trd', 'TUI.L', 5119, 376.9953, '2021-02-22 15:17', NULL
-- EXEC usp_InsertHolding 'Steph ii Trd', 'RCL', 2149, 80.8007, '2021-02-22 14:44', NULL
-- EXEC usp_InsertHolding 'Steph ii Trd', 'NCLH', 2100, 27.5428, '2021-02-22 14:51', NULL
-- EXEC usp_InsertHolding 'Steph ii Trd', 'WEB.AX', 14500, 5.42542, '2021-02-23 00:17', NULL
-- EXEC usp_InsertHolding 'Steph ii Trd', 'NCLH', 960, 21.1690, '2020-11-18 15:55', NULL
-- EXEC usp_InsertHolding 'Steph ii Trd', 'NCLH', 40, 21.08, '2020-11-18 15:58', NULL
EXEC usp_InsertHolding 'Steve AJB', 'TMPL.L', 5623, 708, '2020-05-13'
EXEC usp_InsertHolding 'Steve AJB', 'MKS.L', 33546, 89, '2020-05-11'
-- EXEC usp_InsertHolding 'Steve AJB', 'TMPL.L', 5623, 708, '2020-05-13'
-- EXEC usp_InsertHolding 'Steve AJB', 'MKS.L', 33546, 89, '2020-05-11'
-- EXEC usp_InsertHolding 'Steve AJB', 'CCL', 2334, 17.44, '2020-06-03', '2020-06-11'
EXEC usp_InsertHolding 'Steph AJB', 'TMPL.L', 2372, 708, '2020-05-13'
-- EXEC usp_InsertHolding 'Steph AJB', 'SDV.L', 2000, 127, '2020-05-17', '2020-06-12'
EXEC usp_InsertHolding 'Steph AJB', 'BP.L', 5787, 311, '2020-05-13'
EXEC usp_InsertHolding 'Steph AJB', 'RDSB.L', 1897, 1264.88, '2020-05-11'
EXEC usp_InsertHolding 'Steph AJB', 'LLOY.L', 59170, 30.42, '2020-05-11'
EXEC usp_InsertHolding 'Steph AJB', 'BARC.L', 17261, 104.28, '2020-05-11'
-- EXEC usp_InsertHolding 'Steph ii ISA', 'RCL', 1050, 54.15 , '2020-05-27', '2020-06-11'
-- EXEC usp_InsertHolding 'Steph ii Trd', 'NCLH', 2650, 17.8, '2020-05-27', '2020-06-11'
-- EXEC usp_InsertHolding 'Steph ii Trd', 'AML.L', 9985, 67.1, '2020-06-04', '2020-06-12'
-- EXEC usp_InsertHolding 'Steve AJB', 'NCLH', 2322, 27.9475, '2021-02-22 14:55', NULL
-- EXEC usp_InsertHolding 'Steve HL ISA', 'NCLH', 3053, 17.27, '2020-05-27', '2020-06-11'
-- EXEC usp_InsertHolding 'Steve HL ISA', 'NCLH', 3053, 17.27, '2020-05-17', '2020-06-24 18:24'
-- EXEC usp_InsertHolding 'Steve HL ISA', 'CCL', 2667, 15.451, '2020-07-21 17:10', NULL
-- EXEC usp_InsertHolding 'Steve HL ISA', 'GME', 617, 119.986797, '2021-02-25 14:55', NULL
-- EXEC usp_InsertHolding 'Steve HL ISA', 'GME', 527, 124.422968, '2021-02-25 15:01', NULL
-- EXEC usp_InsertHolding 'Steve HL Trd', 'AAL', 2994, 12.35, '2020-05-27', '2020-06-11'
EXEC usp_InsertHolding 'Steph HL Trd', 'IAG.L', 6644, 325.1, '2020-06-05'
EXEC usp_InsertHolding 'Steve HL Trd', 'TUI.L', 4010, 490.93, '2020-06-05'
-- EXEC usp_InsertHolding 'Steph HL Trd', 'EBAY', 949, 39.35, '2020-04-29', '2020-06-11'
-- EXEC usp_InsertHolding 'Steph HL Trd', 'NCLH', 1696, 21.72, '2020-06-10', '2020-06-11'
-- EXEC usp_InsertHolding 'Steph HL Trd', 'AMZN', 15, 2375.18, '2020-04-29', '2020-06-05'
EXEC usp_InsertHolding 'Steph HL Trd', 'RR.L', 5783, 335.08, '2020-06-05'
EXEC usp_InsertHolding 'Steph HL Trd', 'RR.L', 19276, 32.00, '2020-11-09'
EXEC usp_InsertHolding 'Steve ii Trd', 'MAB.L', 9044, 227.2204, '2020-06-22 10:38', '2020-11-16 09:42'
EXEC usp_InsertHolding 'Steve ii Trd', 'JDW.L', 824, 11.3962, '2020-06-22 10:40', '2020-11-25 12:47'
EXEC usp_InsertHolding 'Steve ii Trd', 'RTN.L', 39894, 0.70936, '2020-06-22 10:34', '2020-12-02 10:50'
EXEC usp_InsertHolding 'Steve ii Trd', 'AML.L', 1078, 1854.724, '2020-12-24 09:22', NULL
EXEC usp_InsertHolding 'Steve ii Trd', 'IAG.L', 10911, 166.3459, '2020-12-24 09:28', NULL
EXEC usp_InsertHolding 'Steve ii Trd', 'CCL.L', 2576, 1203.112, '2020-11-16 12:56', NULL
EXEC usp_InsertHolding 'Steph ii Trd', 'NCLH', 960, 21.1690, '2020-11-18 15:55', NULL
EXEC usp_InsertHolding 'Steph ii Trd', 'NCLH', 40, 21.08, '2020-11-18 15:58', NULL
-- EXEC usp_InsertHolding 'Steve HL Trd', 'TUI.L', 4010, 490.93, '2020-06-05'
-- EXEC usp_InsertHolding 'Steve HL Trd', 'TUI.L', 3456, 95.745, '2021-01-21', NULL
-- EXEC usp_InsertHolding 'Steve ii Trd', 'QAN.AX', 15700, 3.63, '2020-04-28', '2020-06-12'
-- EXEC usp_InsertHolding 'Steve ii Trd', 'WEB.AX', 17000, 2.55, '2020-04-28', '2020-06-12'
-- EXEC usp_InsertHolding 'Steve ii Trd', 'WBC.AX', 2240, 15.07, '2020-05-13', '2020-06-12'
-- EXEC usp_InsertHolding 'Steve ii Trd', 'FLT.AX', 3500, 13.813, '2020-06-03', '2020-06-12'
-- EXEC usp_InsertHolding 'Steve ii Trd', 'WEB.AX', 20618, 3.0359, '2020-07-22 05:37', NULL
-- EXEC usp_InsertHolding 'Steve ii Trd', 'GME', 512, 54.17987, '2021-02-24 20:05', NULL
-- EXEC usp_InsertHolding 'Steve ii Trd', 'MAB.L', 9044, 227.2204, '2020-06-22 10:38', '2020-11-16 09:42'
-- EXEC usp_InsertHolding 'Steve ii Trd', 'JDW.L', 824, 11.3962, '2020-06-22 10:40', '2020-11-25 12:47'
-- EXEC usp_InsertHolding 'Steve ii Trd', 'RTN.L', 39894, 0.70936, '2020-06-22 10:34', '2020-12-02 10:50'
-- EXEC usp_InsertHolding 'Steve ii Trd', 'AML.L', 1078, 1854.724, '2020-12-24 09:22', NULL
-- EXEC usp_InsertHolding 'Steve ii Trd', 'IAG.L', 10911, 166.3459, '2020-12-24 09:28', NULL
-- EXEC usp_InsertHolding 'Steve ii Trd', 'CCL.L', 2576, 1203.112, '2020-11-16 12:56', NULL
-- EXEC usp_InsertHolding 'Steve ii Trd', 'ARB.L', 11459, 261.7805, '2021-03-01 11:25', NULL
GO
CREATE VIEW vHolding
AS
SELECT
h.HoldingID,
a.ShortName as [AccountName],
i.Symbol,
i.FullName as [InstrumentName],
h.PurchaseDate,
h.NoUnits,
h.PurchasePricePerUnit,
h.SoldDate
FROM
Holding h
INNER JOIN Instrument i
ON i.InstrumentId = h.InstrumentId
INNER JOIN Account a
ON a.AccountID = h.AccountID
GO
-- select * from vholding where instrumentname like '%caribb%'
-- update holding set solddate = '2020-06-24 18:27' where holdingid = 34
CREATE PROCEDURE usp_GetHoldings
AS
BEGIN
@ -613,6 +688,7 @@ GO
GRANT EXECUTE ON usp_GetHoldingsHistory TO WebApp_Role
GO
/*
CREATE PROCEDURE usp_DeleteHolding (@HoldingID int)
AS
BEGIN
@ -622,6 +698,173 @@ END
GO
GRANT EXECUTE ON usp_DeleteHolding TO WebApp_Role
GO
*/
CREATE PROCEDURE usp_SoldHolding (@HoldingID int, @SoldDate datetime)
AS
BEGIN
UPDATE Holding SET SoldDate = @SoldDate WHERE HoldingID = @HoldingID
SELECT @@ROWCOUNT AS [RecordsUpdated]
END
GO
GRANT EXECUTE ON usp_SoldHolding TO WebApp_Role
GO
CREATE PROCEDURE usp_SwapDisplayOrder (@Symbol1 varchar(8), @Symbol2 varchar(8))
AS
BEGIN
DECLARE @OldDisplayOrder1 TINYINT
DECLARE @OldDisplayOrder2 TINYINT
SELECT @OldDisplayOrder1 = DisplayOrder FROM Instrument WHERE Symbol = @Symbol1
SELECT @OldDisplayOrder2 = DisplayOrder FROM Instrument WHERE Symbol = @Symbol2
UPDATE
Instrument
SET
DisplayOrder = CASE
WHEN Symbol = @Symbol1 THEN @OldDisplayOrder2
WHEN Symbol = @Symbol2 THEN @OldDisplayOrder1
END
WHERE
Symbol IN (@Symbol1, @Symbol2)
SELECT
@Symbol1 as [Symbol1],
@OldDisplayOrder2 as [Symbol1NewDisplayOrder],
@Symbol2 as [Symbol2],
@OldDisplayOrder1 as [Symbol2NewDisplayOrder]
END
GO
GRANT EXECUTE ON usp_SwapDisplayOrder TO WebApp_Role
GO
CREATE VIEW vHolding
AS
SELECT
h.HoldingID,
a.ShortName as [AccountName],
i.Symbol,
i.FullName as [InstrumentName],
h.PurchaseDate,
h.NoUnits,
h.PurchasePricePerUnit,
h.SoldDate
FROM
Holding h
INNER JOIN Instrument i
ON i.InstrumentId = h.InstrumentId
INNER JOIN Account a
ON a.AccountID = h.AccountID
GO
CREATE VIEW vErroneousPrices_Daily
AS
SELECT
i.InstrumentID,
i.Symbol,
i.FullName,
p.HistoryDT as [PreviousHistoryDT],
d1.HistoryDT as [HistoryDT],
n.HistoryDT as [NextHistoryDT],
p.OpenPrice as [PreviousOpen],
d1.OpenPrice as [Open],
n.OpenPrice as [NextOpen],
p.HighPrice as [PreviousHigh],
d1.HighPrice as [High],
n.HighPrice as [NextHigh],
p.LowPrice as [PreviousLow],
d1.LowPrice as [Low],
n.LowPrice as [NextLow],
p.ClosePrice as [PreviousClose],
d1.ClosePrice as [Close],
n.ClosePrice as [NextClose]
FROM
Instrument i
INNER JOIN InstrumentHistory_Daily d1
ON d1.InstrumentID = i.InstrumentID
INNER JOIN InstrumentHistory_Daily p
ON p.InstrumentID = d1.InstrumentID
AND p.HistoryDT = (SELECT MAX(HistoryDT) FROM InstrumentHistory_Daily WHERE InstrumentID = d1.InstrumentID AND HistoryDT < d1.HistoryDT)
INNER JOIN InstrumentHistory_Daily n
ON n.InstrumentID = d1.InstrumentID
AND n.HistoryDT = (SELECT MIN(HistoryDT) FROM InstrumentHistory_Daily WHERE InstrumentID = d1.InstrumentID AND HistoryDT > d1.HistoryDT)
WHERE
(p.OpenPrice/CASE WHEN d1.OpenPrice = 0 THEN 0.0000001 ELSE d1.OpenPrice END > 90 AND n.OpenPrice/CASE WHEN d1.OpenPrice = 0 THEN 0.0000001 ELSE d1.OpenPrice END > 90)
OR (p.HighPrice/CASE WHEN d1.HighPrice = 0 THEN 0.0000001 ELSE d1.HighPrice END > 90 AND n.HighPrice/CASE WHEN d1.HighPrice = 0 THEN 0.0000001 ELSE d1.HighPrice END > 90)
OR (p.LowPrice/CASE WHEN d1.LowPrice = 0 THEN 0.0000001 ELSE d1.LowPrice END > 90 AND n.LowPrice/CASE WHEN d1.LowPrice = 0 THEN 0.0000001 ELSE d1.LowPrice END > 90)
OR (p.ClosePrice/CASE WHEN d1.ClosePrice = 0 THEN 0.0000001 ELSE d1.ClosePrice END > 90 AND n.ClosePrice/CASE WHEN d1.ClosePrice = 0 THEN 0.0000001 ELSE d1.ClosePrice END > 90)
GO
CREATE VIEW vErroneousPrices_Intraday
AS
SELECT
i.InstrumentID,
i.Symbol,
i.FullName,
p.HistoryDT as [PreviousHistoryDT],
d1.HistoryDT as [HistoryDT],
n.HistoryDT as [NextHistoryDT],
p.OpenPrice as [PreviousOpen],
d1.OpenPrice as [Open],
n.OpenPrice as [NextOpen],
p.HighPrice as [PreviousHigh],
d1.HighPrice as [High],
n.HighPrice as [NextHigh],
p.LowPrice as [PreviousLow],
d1.LowPrice as [Low],
n.LowPrice as [NextLow],
p.ClosePrice as [PreviousClose],
d1.ClosePrice as [Close],
n.ClosePrice as [NextClose]
FROM
Instrument i
INNER JOIN InstrumentHistory_Intraday d1
ON d1.InstrumentID = i.InstrumentID
INNER JOIN InstrumentHistory_Intraday p
ON p.InstrumentID = d1.InstrumentID
AND p.HistoryDT = (SELECT MAX(HistoryDT) FROM InstrumentHistory_Daily WHERE InstrumentID = d1.InstrumentID AND HistoryDT < d1.HistoryDT)
INNER JOIN InstrumentHistory_Intraday n
ON n.InstrumentID = d1.InstrumentID
AND n.HistoryDT = (SELECT MIN(HistoryDT) FROM InstrumentHistory_Daily WHERE InstrumentID = d1.InstrumentID AND HistoryDT > d1.HistoryDT)
WHERE
(p.OpenPrice/CASE WHEN d1.OpenPrice = 0 THEN 0.0000001 ELSE d1.OpenPrice END > 90 AND n.OpenPrice/CASE WHEN d1.OpenPrice = 0 THEN 0.0000001 ELSE d1.OpenPrice END > 90)
OR (p.HighPrice/CASE WHEN d1.HighPrice = 0 THEN 0.0000001 ELSE d1.HighPrice END > 90 AND n.HighPrice/CASE WHEN d1.HighPrice = 0 THEN 0.0000001 ELSE d1.HighPrice END > 90)
OR (p.LowPrice/CASE WHEN d1.LowPrice = 0 THEN 0.0000001 ELSE d1.LowPrice END > 90 AND n.LowPrice/CASE WHEN d1.LowPrice = 0 THEN 0.0000001 ELSE d1.LowPrice END > 90)
OR (p.ClosePrice/CASE WHEN d1.ClosePrice = 0 THEN 0.0000001 ELSE d1.ClosePrice END > 90 AND n.ClosePrice/CASE WHEN d1.ClosePrice = 0 THEN 0.0000001 ELSE d1.ClosePrice END > 90)
GO
CREATE VIEW vDataQuality_Prices
AS
SELECT
i.InstrumentID,
i.Symbol,
i.FullName,
p.HistoryDT as [PreviousHistoryDT],
d1.HistoryDT as [HistoryDT],
n.HistoryDT as [NextHistoryDT],
p.OpenPrice as [PreviousOpen],
d1.OpenPrice as [Open],
n.OpenPrice as [NextOpen],
p.HighPrice as [PreviousHigh],
d1.HighPrice as [High],
n.HighPrice as [NextHigh],
p.LowPrice as [PreviousLow],
d1.LowPrice as [Low],
n.LowPrice as [NextLow],
p.ClosePrice as [PreviousClose],
d1.ClosePrice as [Close],
n.ClosePrice as [NextClose]
FROM
Instrument i
INNER JOIN InstrumentHistory_Daily d1
ON d1.InstrumentID = i.InstrumentID
INNER JOIN InstrumentHistory_Daily p
ON p.InstrumentID = d1.InstrumentID
AND p.HistoryDT = (SELECT MAX(HistoryDT) FROM InstrumentHistory_Daily WHERE InstrumentID = d1.InstrumentID AND HistoryDT < d1.HistoryDT)
INNER JOIN InstrumentHistory_Daily n
ON n.InstrumentID = d1.InstrumentID
AND n.HistoryDT = (SELECT MIN(HistoryDT) FROM InstrumentHistory_Daily WHERE InstrumentID = d1.InstrumentID AND HistoryDT > d1.HistoryDT)
GO
/*
@ -634,8 +877,35 @@ select * from InstrumentHistory_Intraday where InstrumentID = 18 order by Histor
--Delete daily prices that are 90% less than previous and next daily prices
DELETE d1
select *
FROM
InstrumentHistory_Daily d1
Instrument i
INNER JOIN InstrumentHistory_Daily d1
ON d1.InstrumentID = i.InstrumentID
INNER JOIN InstrumentHistory_Daily p
ON p.InstrumentID = d1.InstrumentID
AND p.HistoryDT = (SELECT MAX(HistoryDT) FROM InstrumentHistory_Daily WHERE InstrumentID = d1.InstrumentID AND HistoryDT < d1.HistoryDT)
INNER JOIN InstrumentHistory_Daily n
ON n.InstrumentID = d1.InstrumentID
AND n.HistoryDT = (SELECT MIN(HistoryDT) FROM InstrumentHistory_Daily WHERE InstrumentID = d1.InstrumentID AND HistoryDT > d1.HistoryDT)
WHERE
(p.ClosePrice/d1.ClosePrice > 90
AND n.ClosePrice/d1.ClosePrice > 90)
OR
(p.OpenPrice/d1.OpenPrice > 90
AND n.OpenPrice/d1.OpenPrice > 90)
OR
(p.HighPrice/d1.HighPrice > 90
AND n.HighPrice/d1.HighPrice > 90)
OR
(p.LowPrice/d1.LowPrice > 90
AND n.LowPrice/d1.LowPrice > 90)
SELECT *
FROM
Instrument i
INNER JOIN InstrumentHistory_Daily d1
ON d1.InstrumentID = i.InstrumentID
INNER JOIN InstrumentHistory_Daily p
ON p.InstrumentID = d1.InstrumentID
AND p.HistoryDT = (SELECT MAX(HistoryDT) FROM InstrumentHistory_Daily WHERE InstrumentID = d1.InstrumentID AND HistoryDT < d1.HistoryDT)
@ -646,4 +916,8 @@ WHERE
p.ClosePrice/d1.ClosePrice > 90
AND n.ClosePrice/d1.ClosePrice > 90
select * from Instrument i inner join InstrumentHistory_Daily d on d.InstrumentID = i.InstrumentID
where i.Symbol = 'IAG.L' and d.HistoryDT between '2020-10-05' and '2020-10-07' order by d.HistoryDT
*/

View File

@ -6,8 +6,87 @@
<script src="scripts/jquery.flot.js" type="text/javascript"></script>
<script src="scripts/jquery.flot.time.min.js" type="text/javascript"></script>
<script src="scripts/FlotGaps.js" type="text/javascript"></script>
<style>
table {
border-collapse: collapse;
}
td {
border: 1px solid black;
border-spacing: 1px;
padding: 0;
}
.pcLabel {
/*position: absolute;*/
width: 100px;
background-color: transparent;
text-align: center;
/*border: 1px solid green;*/
}
.pcBackground {
position: absolute;
background-color: lightgrey;
z-index:-1;
}
</style>
</head>
<body>
<div>
<table>
<tr>
<td>Col1</td>
<td>Col2</td>
<td>Col3</td>
<td>Col4</td>
<td>Col5</td>
<td>Col6</td>
<td>Col7</td>
<td>Col8</td>
<td>Col9</td>
</tr>
<tr>
<td>Value Col 1</td>
<td>Value Col 2</td>
<td>Value Col 3</td>
<td>Value Col 4</td>
<td>Value Col 5</td>
<td>Value Col 6</td>
<td>Value Col 7</td>
<td>Value Col 8</td>
<td>Value Col 9</td>
</tr>
<tr>
<td>Value Col 1</td>
<td>
<div class="pcBackground" style="width:30px;">&nbsp;</div>
<div class="pcLabel">30%</div>
</td>
<td>
<div class="pcBackground" style="width:60px;">&nbsp;</div>
<div class="pcLabel">60%</div>
</td>
<td>
<div class="pcBackground" style="width:90px;">&nbsp;</div>
<div class="pcLabel">90%</div>
</td>
<td>Value Col 5</td>
<td>Value Col 6</td>
<td>Value Col 7</td>
<td>Value Col 8</td>
<td>Value Col 9</td>
</tr>
<tr>
<td>Value Col 1</td>
<td>Value Col 2</td>
<td>Value Col 3</td>
<td>Value Col 4</td>
<td>Value Col 5</td>
<td>Value Col 6</td>
<td>Value Col 7</td>
<td>Value Col 8</td>
<td>Value Col 9</td>
</tr>
</table>
</div>
<div id="chartDiv" style="width:800px; height: 200px;"></div>
<div id="chartDiv2" style="width:800px; height: 200px;"></div>

View File

@ -0,0 +1 @@
<%@ Application Codebehind="Global.asax.vb" Inherits="SharePrices.Global_asax" Language="vb" %>

View File

@ -0,0 +1,42 @@
Imports System.Diagnostics
Imports System.Web.SessionState
Public Class Global_asax
Inherits System.Web.HttpApplication
Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs)
' Fires when the application is started
Debug.Print("Global.asx:Application_Start")
End Sub
Sub Session_Start(ByVal sender As Object, ByVal e As EventArgs)
' Fires when the session is started
Debug.Print("Global.asx:Session_Start")
End Sub
Sub Application_BeginRequest(ByVal sender As Object, ByVal e As EventArgs)
' Fires at the beginning of each request
Debug.Print("Global.asx:Application_BeginRequest")
End Sub
Sub Application_AuthenticateRequest(ByVal sender As Object, ByVal e As EventArgs)
' Fires upon attempting to authenticate the use
Debug.Print("Global.asx:Application_AuthenticateRequest")
End Sub
Sub Application_Error(ByVal sender As Object, ByVal e As EventArgs)
' Fires when an error occurs
Debug.Print("Global.asx:Application_Error")
End Sub
Sub Session_End(ByVal sender As Object, ByVal e As EventArgs)
' Fires when the session ends
Debug.Print("Global.asx:Session_End")
End Sub
Sub Application_End(ByVal sender As Object, ByVal e As EventArgs)
' Fires when the application ends
Debug.Print("Global.asx:Application_End")
End Sub
End Class

View File

@ -0,0 +1,63 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style>
.header {
position: fixed;
top: 0px;
left: 0px;
height: 50px;
width: 100%;
z-index: 100;
}
.tabParent {
position: absolute;
top: 0px;
height: 100%;
width: 100%;
overflow: auto;
}
.activeTab {
z-index: 1;
}
.tabContainer {
padding-top: 50px;
}
</style>
</head>
<body style="margin:0px; background-color:yellow;">
<div class="header" style="background-color:blue;">
<font color="white">Header div</font>
</div>
<div class="tabParent" style=" background-color: gray;">
<div class="tabContainer" style="background-color: lightseagreen;">
<font color="red">
Tab 1<br />
<span style="height:100px;width:300px;display:inline-block;background-color:pink;">Line1</span><br />
<span style="height: 100px; width: 300px; display: inline-block; background-color: orange; ">Line2</span><br />
<span style="height: 100px; display: inline-block;">Line3</span><br />
<span style="height: 100px; display: inline-block;">Line4</span><br />
<span style="height: 100px; display: inline-block;">Line5</span><br />
</font>
</div>
</div>
<div class="tabParent activeTab" style="background-color: gray; ">
<div class="tabContainer" style="background-color: green;">
<font color="red">
Tab 2<br />
<span style="height:100px;width:300px;display:inline-block;background-color:lightblue;">Line1</span><br />
<span style="height: 100px; width: 300px; display: inline-block; background-color:wheat; ">Line2</span><br />
<span style="height: 100px; display: inline-block;">Line3</span><br />
<span style="height: 100px; display: inline-block;">Line4</span><br />
<span style="height: 100px; display: inline-block;">Line5</span><br />
<span style="height: 100px; display: inline-block;">Line6</span><br />
<span style="height: 100px; display: inline-block;">Line7</span><br />
<span style="height: 100px; display: inline-block;">Line8</span><br />
<span style="height: 100px; display: inline-block;">Line9</span><br />
<span style="height: 100px; display: inline-block;">Line10</span><br />
</font>
</div>
</div>
</body>
</html>

View File

@ -5,35 +5,95 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Steve's share prices</title>
<link href="SharePricesStyles.css" rel="stylesheet" type="text/css" />
<link href="SharePricesModal.css" rel="stylesheet" type="text/css" />
<link href="jquery-ui.css" rel="stylesheet" type="text/css" />
<link rel="shortcut icon" href="icons/favicon.ico" type="image/x-icon"/>
<link rel="stylesheet" href="SharePricesStyles.css" type="text/css" />
<link rel="stylesheet" href="SharePricesModal.css" type="text/css" />
<link rel="stylesheet" href="jquery-ui.css" type="text/css" />
<script src="scripts/jquery-3.5.1.min.js" type="text/javascript"></script>
<script src="scripts/jquery-ui.min.js" type="text/javascript"></script>
<script src="scripts/jquery.flot.js" type="text/javascript"></script>
<script src="scripts/jquery.flot.axislabels.js" type="text/javascript"></script>
<script src="scripts/jquery.flot.downsample.js" type="text/javascript"></script>
<script src="scripts/jquery.flot.crosshair.js" type="text/javascript"></script>
<script src="scripts/jquery.flot.selection.min.js" type="text/javascript"></script>
<script src="scripts/jquery.flot.time.min.js" type="text/javascript"></script>
<script src="scripts/jquery.flot.tooltip.js" type="text/javascript"></script>
<script src="scripts/jquery.flot.pie.js" type="text/javascript"></script>
<script src="scripts/js.cookie-2.2.1.min.js" type="text/javascript"></script>
<script src="scripts/tablesorter/jquery.tablesorter.js" type="text/javascript"></script>
<script src="scripts/tablesorter/jquery.tablesorter.widgets.js" type="text/javascript"></script>
<script src="scripts/jquery.marquee.min.js" type="text/javascript"></script>
<script src="scripts/SharePrices.js" type="text/javascript"></script>
<script src="scripts/FlotGaps.js" type="text/javascript"></script>
</head>
<body>
<div class="navbar">
<a id="navCharts" class="activenav" onclick="showTab(this)" data-div="chartDiv">Charts</a>
<a id="navCurrentHoldings" onclick="showTab(this);" data-div="holdingsDiv">Current Holdings</a>
<a id="navAnal" onclick="showTab(this);" data-div="analDiv">Share Analysis</a>
<label for="showBreakevenLine">Show breakeven line</label><input type="checkbox" name="showBreakevenLine" id="showBreakevenLine" onclick="handleClick(this)"/>
<label for="displayAsPercent">Display as percent</label><input type="checkbox" name="displayAsPercent" id="displayAsPercent" onclick="handleClick(this)"/>
<label for="showPreviousHoldings">Show previous holdings</label><input type="checkbox" name="showPreviousHoldings" id="showPreviousHoldings" onclick="handleClick(this)"/>
<button onclick="showModalDialog_AddInstrument()">Add Instrument</button>
<table>
<tr>
<td style="width: 40%;">
<a id="navCharts" class="activenav" onclick="showTab(this)" data-div="chartDiv">Charts</a>
<a id="navCurrentHoldings" onclick="showTab(this);" data-div="holdingsDiv">Holdings</a>
<a id="navAccounts" onclick="showTab(this);" data-div="accoountsDiv">Accounts</a>
<a id="navAnal" onclick="showTab(this);" data-div="analDiv">Analysis</a>
<a id="navLog" onclick="showTab(this);" data-div="logDiv">Log</a>
</td>
<td style="width: 20%; text-align: center;">
<span id="spnTotalHoldings"></span>
</td>
<td style="width: 40%; text-align: right;">
<span id="spnCurrencies"></span>
</td>
</tr>
<!--
<tr>
<td colspan="2" class="marquee" style="width: 100%;"> < !--id="tdIndexTicker" style="width: 600px;"!-- >
<div class="marquee" id="divIndexMarquee" style="width: 100%;"></div>
</td>
</tr>
!-->
</table>
<div class="marquee" id="divIndexMarquee" style="width: 100%;"></div>
</div>
<div class="main" id="mainDiv">
<div id="chartDiv">Charts</div>
<div id="holdingsDiv">Current Holdings</div>
<div id="analDiv">Share Analysis</div>
<div class="tabParent">
<div class="tabContainer" id="chartDiv">
<div>
<label for="displayAsPercent">Display as percent</label><input type="checkbox" name="displayAsPercent" id="displayAsPercent" onclick="handleClick(this)"/>
<label for="excludeNoHoldings">Hide shares with no holdings</label><input type="checkbox" name="excludeNoHoldings" id="excludeNoHoldings" onclick="handleClick(this)"/>
<button onclick="showModalDialog_AddInstrument()">Add Instrument</button>
</div>
<div id="chartsDiv">Charts</div>
</div>
</div>
<div class="tabParent">
<div class="tabContainer" id="holdingsDiv">
<div>
<label for="groupBySymbol">Group By Symbol</label><input type="checkbox" name="groupBySymbol" id="groupBySymbol" onclick="handleClick(this)"/>
</div>
<div id="holdingsTableDiv">Holdings table</div>
<br />
<table>
<tr>
<td>Book Cost currencies<div id="divHoldingCurrenciesChart" class="HoldingCurrenciesChart"></div></td>
<td style="width:50px"></td>
<td>Current Value currencies<div id="divHoldingCurrenciesChartCurrentValue" class="HoldingCurrenciesChart"></div></td>
<td style="width:50px"></td>
<td>Book Cost per Account<div id="divAccountBookCost" class="HoldingCurrenciesChart"></div></td>
<td style="width:50px"></td>
<td>Current Value per Account<div id="divAccountValue" class="HoldingCurrenciesChart"></div></td>
</tr>
</table>
</div>
</div>
<div class="tabParent">
<div class="tabContainer" id="accoountsDiv">
<div id="accoutsSummaryDiv"></div>
</div>
</div>
<div class="tabParent">
<div class="tabContainer" id="analDiv">Analysis</div>
</div>
<div class="tabParent">
<div class="tabContainer" id="logDiv">Log</div>
</div>
<div id="modalDialog" class="modal">
<div class="modal-content">
@ -45,6 +105,22 @@
<div id="modalContentDiv"></div>
</div>
</div>
<div id="modalChart" class="modal-chart">
<div class="modal-chart-content">
<table style="height: 100%; width:100%; border-collapse: collapse;">
<tr>
<td>
<table class="modal-title"><tr><td id="modalChartTitle">Title</td><td><span id="spnCompareInstruments">Compare</span></td><td class="close">&times;</td></tr></table>
</td>
</tr>
<tr>
<td>
<div id="divFullScreenChart" class="FullScreenChart"></div>
</td>
</tr>
</table>
</div>
</div>
<div id="chartTooltip" class="chart-tooltip"></div>
<script>
function initPage() {
@ -56,39 +132,56 @@
showTab($('#navCharts')[0]);
}
c = Cookies.get('showBreakevenLine');
$("#showBreakevenLine").prop('checked', (c == 'true') ? true : false);
/*c = Cookies.get('showBreakevenLine');
$("#showBreakevenLine").prop('checked', (c == 'true') ? true : false);*/
c = Cookies.get('displayAsPercent');
$("#displayAsPercent").prop('checked', (c == 'true') ? true : false);
c = Cookies.get('showPreviousHoldings');
$("#showPreviousHoldings").prop('checked', (c == 'true') ? true : false);
c = Cookies.get('excludeNoHoldings');
$("#excludeNoHoldings").prop('checked', (c == 'true') ? true : false);
/*c = Cookies.get('showPreviousHoldings');
$("#showPreviousHoldings").prop('checked', (c == 'true') ? true : false);*/
c = Cookies.get('groupBySymbol');
$("#groupBySymbol").prop('checked', (c == 'true') ? true : false);
getInstruments();
}
function showTab(tab) {
$('.navbar>a').removeClass('activenav');
//$('.navbar>a').removeClass('activenav');
$('.navbar').find('.activenav').removeClass('activenav');
$('#' + tab.id).addClass('activenav');
$('#mainDiv>div').removeClass('activetab').addClass('inactivetab');
$('#' + $(tab).attr('data-div')).removeClass('inactivetab').addClass('activetab');
//$('#mainDiv>div').removeClass('activetab').addClass('inactivetab');
$('.tabParent.activeTab').removeClass('activeTab');
//$('#' + $(tab).attr('data-div')).removeClass('inactivetab').addClass('activetab');
$('#' + $(tab).attr('data-div')).parent().addClass('activeTab');
//Cookies.set('activeTab', tab.id);
Cookies.set('activeTab', tab.id, {'sameSite': 'strict'});
}
function handleClick(checkbox) {
//Cookies.set(checkbox.id, checkbox.checked);
Cookies.set(checkbox.id, checkbox.checked, {'sameSite': 'strict'});
switch (checkbox.id) {
case 'showBreakevenLine':
/*case 'showBreakevenLine':
redrawAllSharesCharts();
break;
break;*/
case 'displayAsPercent':
redrawAllSharesCharts();
break;
case 'showPreviousHoldings':
case 'excludeNoHoldings':
createSharesTable();
redrawAllSharesCharts();
break;
/*case 'showPreviousHoldings':
redrawAllSharesCharts();
break;*/
case 'groupBySymbol':
$("#tbMainHoldings").html(''); //Empty the table body to make sure no duplicate rows are created
//updateHoldingsTable();
tablesUpdateTimings.updateNeeded = true;
tablesUpdateTimings.lastUpdate = 0;
break;
}
}
$(document).ready(initPage());

View File

@ -5,12 +5,12 @@ Public Class SharePrices
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Debug.Print("SharePrices - Page load - " + Now().ToString("yyyy-MM-dd HH:mm:ss"))
Debug.Print("SharePrices - Page load - " + Now().ToString("yyyy-MM-dd HH:mm:ss") + ", IP: " + Request.UserHostAddress + ", HostName: " + Request.UserHostName)
End Sub
<WebMethod()>
Public Shared Sub GetInstruments()
Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - SharePrices.GetInstruments webmethod")
Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - SharePrices.GetInstruments" + ", IP: " + HttpContext.Current.Request.UserHostAddress + ", HostName: " + HttpContext.Current.Request.UserHostName)
Dim responseText As String = DataAccessLayer.GetInstruments()
SetResponseAndCompleteRequest(HttpContext.Current, "application/json", responseText)
@ -18,15 +18,23 @@ Public Class SharePrices
<WebMethod()>
Public Shared Sub AddInstrument(Symbol As String, FullName As String)
Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - SharePrices.AddInstrument webmethod: " + Symbol + ", " + FullName)
'Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - SharePrices.AddInstrument webmethod: " + Symbol + ", " + FullName)
Dim responseText As String = DataAccessLayer.AddInstrument(Symbol, FullName)
SetResponseAndCompleteRequest(HttpContext.Current, "application/json", responseText)
End Sub
'<WebMethod()>
'Public Shared Sub UpdateInstrument(Symbol As String, GMTOffset As Integer, Currency As String, CurrentPrice As Double, InstrumentType As String)
' Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - SharePrices.UpdateInstrument webmethod: " + Symbol)
' DataAccessLayer.UpdateInstrument(Symbol, GMTOffset, Currency, CurrentPrice, InstrumentType)
'End Sub
<WebMethod()>
Public Shared Sub AddHolding(AccountName As String, Symbol As String, NoUnits As Integer, PurchasePricePerUnit As Double, PurchaseDate As Int64)
Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - SharePrices.AddHolding webmethod: " + AccountName + ", " + Symbol)
Public Shared Sub AddHolding(AccountName As String, Symbol As String, NoUnits As Double, PurchasePricePerUnit As Double, PurchaseDate As Int64)
'Public Shared Sub AddHolding(AccountName As String, Symbol As String, NoUnits As Integer, PurchasePricePerUnit As Double, PurchaseDate As Int64)
'Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - SharePrices.AddHolding webmethod: " + AccountName + ", " + Symbol)
Dim responseText As String = DataAccessLayer.AddHolding(AccountName, Symbol, NoUnits, PurchasePricePerUnit, PurchaseDate)
SetResponseAndCompleteRequest(HttpContext.Current, "application/json", responseText)
@ -39,6 +47,7 @@ Public Class SharePrices
Dim responseText As String = DataAccessLayer.GetAllDailyData(FromEpochTime(startDate), FromEpochTime(endDate))
If responseText = "" Then responseText = "[]"
SetResponseAndCompleteRequest(HttpContext.Current, "application/json", responseText)
Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - SharePrices.GetAllDailyData finished")
End Sub
<WebMethod()>
@ -48,6 +57,7 @@ Public Class SharePrices
Dim responseText As String = DataAccessLayer.GetDailyData(Symbol, FromEpochTime(startDate), FromEpochTime(endDate))
If responseText = "" Then responseText = "[]"
SetResponseAndCompleteRequest(HttpContext.Current, "application/json", responseText)
Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - SharePrices.GetDailyData finished")
End Sub
<WebMethod()>
@ -59,12 +69,12 @@ Public Class SharePrices
If responseText = "" Then responseText = "[]"
SetResponseAndCompleteRequest(HttpContext.Current, "application/json", responseText)
Dim endDT As Date = Now()
Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - SharePrices.GetAllIntradayData completed. Duration = " + DateDiff(DateInterval.Second, startDate, endDT).ToString())
Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - SharePrices.GetAllIntradayData completed. Duration = " + DateDiff(DateInterval.Second, startDT, endDT).ToString())
End Sub
<WebMethod()>
Public Shared Sub GetIntradayData(Symbol As String, startDate As Int64, endDate As Int64)
Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - SharePrices.GetIntradayData webmethod: """ + Symbol + """, """ + FromEpochTime(startDate).ToString("yyyy-MM-dd HH:mm:ss") + """, """ + FromEpochTime(endDate).ToString("yyyy-MM-dd HH:mm:ss") + """")
'Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - SharePrices.GetIntradayData webmethod: """ + Symbol + """, """ + FromEpochTime(startDate).ToString("yyyy-MM-dd HH:mm:ss") + """, """ + FromEpochTime(endDate).ToString("yyyy-MM-dd HH:mm:ss") + """")
Dim responseText As String = DataAccessLayer.GetIntradayData(Symbol, FromEpochTime(startDate), FromEpochTime(endDate))
If responseText = "" Then responseText = "[]"
@ -73,27 +83,60 @@ Public Class SharePrices
<WebMethod()>
Public Shared Sub SubmitDailyData(Symbol As String, DailyPrices As List(Of DataAccessLayer.PriceData))
Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - SharePrices.SubmitDailyData webmethod: " + Symbol)
Dim startDT As Date = Now()
'Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - SharePrices.SubmitDailyData webmethod: " + Symbol)
Dim responseText As String = DataAccessLayer.InsertDailyData(Symbol, DailyPrices)
If responseText = "" Then responseText = "[]"
SetResponseAndCompleteRequest(HttpContext.Current, "application/json", responseText)
Try
Dim responseText As String = DataAccessLayer.InsertDailyData(Symbol, DailyPrices)
If responseText = "" Then responseText = "[]"
SetResponseAndCompleteRequest(HttpContext.Current, "application/json", responseText)
'If Symbol = "RYA.L" Then
' For Each pd As DataAccessLayer.PriceData In DailyPrices
' Debug.Print(" " + FromEpochTime(pd.DT))
' Next
' Debug.Print(" Response: " + responseText)
'End If
Catch ex As Exception
SetResponseAndCompleteRequest(HttpContext.Current, "application/json", "{""Result"":""Error""}")
End Try
Dim endDT As Date = Now()
'Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - SharePrices.SubmitDailyData(" + Symbol + ") completed. Duration = " + DateDiff(DateInterval.Second, startDT, endDT).ToString())
End Sub
<WebMethod()>
Public Shared Sub SubmitIntradayData(Symbol As String, DailyPrices As List(Of DataAccessLayer.PriceData))
Public Shared Sub SubmitIntradayData(Symbol As String, DailyPrices As List(Of DataAccessLayer.PriceData), GMTOffset As Integer, Currency As String, CurrentPrice As Double, InstrumentType As String, TradeDayStart As Long, TradeDayEnd As Long)
'Public Shared Sub SubmitIntradayData(Symbol As String, DailyPrices As List(Of DataAccessLayer.PriceData))
Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - SharePrices.SubmitIntradayData webmethod: " + Symbol)
DataAccessLayer.UpdateInstrument(Symbol, GMTOffset, Currency, CurrentPrice, InstrumentType, FromEpochTime(TradeDayStart), FromEpochTime(TradeDayEnd))
Dim responseText As String = DataAccessLayer.InsertIntradayData(Symbol, DailyPrices)
If responseText = "" Then responseText = "[]"
SetResponseAndCompleteRequest(HttpContext.Current, "application/json", responseText)
End Sub
<WebMethod()>
Public Shared Sub DeleteHolding(HoldingID As Integer)
Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - SharePrices.DeleteHolding webmethod: " + HoldingID.ToString())
Public Shared Sub SwapInstrumentDisplayOrders(Symbol1 As String, Symbol2 As String)
Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - SharePrices.SwapInstrumentDisplayOrders webmethod: " + Symbol1 + ", " + Symbol2)
Dim responseText As String = DataAccessLayer.DeleteHolding(HoldingID)
Dim responseText As String = DataAccessLayer.SwapInstrumentDisplayOrders(Symbol1, Symbol2)
SetResponseAndCompleteRequest(HttpContext.Current, "application/json", responseText)
End Sub
'<WebMethod()>
'Public Shared Sub DeleteHolding(HoldingID As Integer)
' 'Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - SharePrices.DeleteHolding webmethod: " + HoldingID.ToString())
' Dim responseText As String = DataAccessLayer.DeleteHolding(HoldingID)
' SetResponseAndCompleteRequest(HttpContext.Current, "application/json", responseText)
'End Sub
<WebMethod()>
Public Shared Sub SoldHolding(HoldingID As Integer, SoldDate As Int64)
'Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - SharePrices.SoldHolding webmethod: " + HoldingID.ToString() + ". " + SoldDate.TYoString())
Dim responseText As String = DataAccessLayer.SoldHolding(HoldingID, FromEpochTime(SoldDate))
SetResponseAndCompleteRequest(HttpContext.Current, "application/json", responseText)
End Sub
@ -105,23 +148,109 @@ Public Class SharePrices
Dim responseText As String = webClient.DownloadString("https://query1.finance.yahoo.com/v8/finance/chart/" + Symbol + "?region=GB&lang=en-GB&includePrePost=false&interval=1h&range=1mo&.tsrc=finance")
SetResponseAndCompleteRequest(HttpContext.Current, "application/json", responseText)
End Sub
<WebMethod()>
Public Shared Sub FetchYahooFinanceIntraday(Symbol As String, MinIntradayDT As Long)
Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - SharePrices.FetchYahooFinanceIntraday webmethod: " + Symbol + ", " + MinIntradayDT.ToString() + " (" + FromEpochTime(MinIntradayDT).ToString("yyyy-MM-dd HH:mm") + ")")
'Dim webClient As New System.Net.WebClient
'Dim responseText As String = webClient.DownloadString("https://query1.finance.yahoo.com/v8/finance/chart/" + Symbol + "?region=GB&lang=en-GB&includePrePost=false&interval=1h&range=1mo&.tsrc=finance")
'SetResponseAndCompleteRequest(HttpContext.Current, "application/json", responseText)
Try
Dim queryString As String
'If Symbol = "BTC-USD" Or Symbol = "ARB.L" Then 'Request 15min interval data for Bitcoin/USD and Argo Blockchain
If MinIntradayDT <= ToEpochTime(Now().AddDays(-59)) Then 'Yahoo finance only provides 15min data for previous 60 days
queryString = "https://query1.finance.yahoo.com/v8/finance/chart/" + Symbol + "?region=GB&lang=en-GB&includePrePost=false&interval=15m&range=1mo&.tsrc=finance"
Else
Dim dateTo As Long
If MinIntradayDT > 9999999999 Then
dateTo = Math.Ceiling(MinIntradayDT / 1000)
Else
dateTo = MinIntradayDT
End If
Dim dateFrom As Long = dateTo - (15 * (60 * 60 * 24)) '15 days
'Need to make sure dateFrom is no more than 60 days ago
Dim minAllowableDate = Math.Floor(ToEpochTime(Now().AddDays(-59)) / 1000) - 60
If dateFrom < minAllowableDate Then
dateFrom = minAllowableDate
End If
queryString = "https://query1.finance.yahoo.com/v8/finance/chart/" + Symbol + "?period1=" + dateFrom.ToString() + "&period2=" + dateTo.ToString() + "&interval=15m&includePrePost=true&events=div|split|earn"
End If
'Else
'If MinIntradayDT <= ToEpochTime(Now().AddYears(-1)) Then
' queryString = "https://query1.finance.yahoo.com/v8/finance/chart/" + Symbol + "?region=GB&lang=en-GB&includePrePost=false&interval=1d&range=6mo&.tsrc=finance"
'Else
' queryString = "https://query1.finance.yahoo.com/v8/finance/chart/" + Symbol + "?region=GB&lang=en-GB&includePrePost=false&interval=1d&range=2y&.tsrc=finance"
'End If
'End If
Debug.Print(Strings.StrDup(22, " ") + queryString)
Dim responseText As String = New System.Net.WebClient().DownloadString(queryString)
SetResponseAndCompleteRequest(HttpContext.Current, "application/json", responseText)
Catch ex As Exception
Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - ERROR - SharePrices.FetchYahooFinanceIntraday webmethod: " + Symbol + ", " + MinIntradayDT.ToString() + " (" + FromEpochTime(MinIntradayDT).ToString("yyyy-MM-dd") + "): " + ex.Message)
SetResponseAndCompleteRequest(HttpContext.Current, "application/json", "{""Result"":""Error"", ""MSG"":""" + ex.Message.Replace("""", "'") + """}")
End Try
End Sub
<WebMethod()>
Public Shared Sub FetchYahooFinanceDaily(Symbol As String)
Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - SharePrices.FetchYahooFinanceDaily webmethod: " + Symbol)
'Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - SharePrices.FetchYahooFinanceDaily webmethod: " + Symbol)
Dim webClient As New System.Net.WebClient
Dim responseText As String = webClient.DownloadString("https://query1.finance.yahoo.com/v8/finance/chart/" + Symbol + "?region=GB&lang=en-GB&includePrePost=false&interval=1d&range=6mo&.tsrc=finance")
SetResponseAndCompleteRequest(HttpContext.Current, "application/json", responseText)
'If Symbol = "RYA.L" Then
' Debug.Print(" FetchYahooFinanceDaily")
'End If
Try
Dim webClient As New System.Net.WebClient
Dim responseText As String = webClient.DownloadString("https://query1.finance.yahoo.com/v8/finance/chart/" + Symbol + "?region=GB&lang=en-GB&includePrePost=false&interval=1d&range=6mo&.tsrc=finance")
'Dim responseText As String = webClient.DownloadString("https://query1.finance.yahoo.com/v8/finance/chart/" + Symbol + "?region=GB&lang=en-GB&includePrePost=false&interval=1d&range=2y&.tsrc=finance")
'If Symbol = "RYA.L" Then
' Debug.Print(" FetchYahooFinanceDaily result: " + responseText)
'End If
SetResponseAndCompleteRequest(HttpContext.Current, "application/json", responseText)
Catch ex As Exception
SetResponseAndCompleteRequest(HttpContext.Current, "application/json", "{""Result"":""Error""}")
End Try
End Sub
<WebMethod()>
Public Shared Sub FetchYahooFinanceDaily(Symbol As String, MinDailyDT As Long)
'Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - SharePrices.FetchYahooFinanceDaily webmethod: " + Symbol + ", " + MinDailyDT.ToString() + " (" + FromEpochTime(MinDailyDT).ToString("yyyy-MM-dd") + ")")
Try
Dim queryString As String
If MinDailyDT <= ToEpochTime(Now().AddYears(-2)) Then
queryString = "https://query1.finance.yahoo.com/v8/finance/chart/" + Symbol + "?region=GB&lang=en-GB&includePrePost=false&interval=1d&range=6mo&.tsrc=finance"
Else
queryString = "https://query1.finance.yahoo.com/v8/finance/chart/" + Symbol + "?region=GB&lang=en-GB&includePrePost=false&interval=1d&range=2y&.tsrc=finance"
End If
Dim responseText As String = New System.Net.WebClient().DownloadString(queryString)
SetResponseAndCompleteRequest(HttpContext.Current, "application/json", responseText)
Catch ex As Exception
'Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - ERROR - SharePrices.FetchYahooFinanceDaily webmethod: " + Symbol + ", " + MinDailyDT.ToString() + " (" + FromEpochTime(MinDailyDT).ToString("yyyy-MM-dd") + "): " + ex.Message)
SetResponseAndCompleteRequest(HttpContext.Current, "application/json", "{""Result"":""Error"", ""MSG"":""" + ex.Message.Replace("""", "'") + """}")
End Try
End Sub
<WebMethod()>
Public Shared Sub FetchYahooFinanceSingleDay(Symbol As String)
Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - SharePrices.FetchYahooFinanceSingleDay webmethod: " + Symbol)
'Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - SharePrices.FetchYahooFinanceSingleDay webmethod: " + Symbol)
Dim webClient As New System.Net.WebClient
Dim responseText As String = webClient.DownloadString("https://query1.finance.yahoo.com/v8/finance/chart/" + Symbol + "?region=GB&lang=en-GB&includePrePost=false&interval=2m&range=1d&corsDomain=uk.finance.yahoo.com&.tsrc=finance")
SetResponseAndCompleteRequest(HttpContext.Current, "application/json", responseText)
Try
Dim webClient As New System.Net.WebClient
Dim responseText As String = webClient.DownloadString("https://query1.finance.yahoo.com/v8/finance/chart/" + Symbol + "?region=GB&lang=en-GB&includePrePost=false&interval=2m&range=1d&corsDomain=uk.finance.yahoo.com&.tsrc=finance")
SetResponseAndCompleteRequest(HttpContext.Current, "application/json", responseText)
Catch ex As Exception
Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - ERROR - SharePrices.FetchYahooFinanceSingleDay webmethod: " + Symbol + "): " + ex.Message)
SetResponseAndCompleteRequest(HttpContext.Current, "application/json", "{""Result"":""Error"", ""MSG"":""" + ex.Message.Replace("""", "'") + """}")
End Try
End Sub
<WebMethod()>
@ -133,4 +262,22 @@ Public Class SharePrices
SetResponseAndCompleteRequest(HttpContext.Current, "application/json", responseText)
End Sub
<WebMethod()>
Public Shared Sub TestWebMethod(Symbol As String, DailyPrices As List(Of DataAccessLayer.PriceData))
Dim startDT As Date = Now()
Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - SharePrices.TestWebMethod: " + Symbol)
While startDT.AddSeconds(1) > Now()
System.Threading.Thread.Sleep(100)
End While
SetResponseAndCompleteRequest(HttpContext.Current, "application/json", "{""Result"": ""OK - " + Symbol + """}")
Dim endDT As Date = Now()
Debug.Print(Now().ToString("yyyy-MM-dd HH:mm:ss") + " - SharePrices.TestWebMethod(" + Symbol + ") completed. Duration = " + DateDiff(DateInterval.Second, startDT, endDT).ToString())
End Sub
End Class

View File

@ -82,15 +82,40 @@
<Import Include="System.Web.UI.HtmlControls" />
</ItemGroup>
<ItemGroup>
<Content Include="Global.asax" />
<Content Include="icons\Breakeven_Off.png" />
<Content Include="icons\Breakeven.png" />
<Content Include="icons\favicon.ico" />
<Content Include="FlotTest.html" />
<Content Include="HtmlPage1.html" />
<Content Include="icons\Bin.png" />
<Content Include="icons\Cog.png" />
<Content Include="icons\Cross.png" />
<Content Include="icons\DownArrow.png" />
<Content Include="icons\Elipsis.png" />
<Content Include="icons\History_Off.png" />
<Content Include="icons\History.png" />
<Content Include="icons\LeftArrow.png" />
<Content Include="icons\Minus.png" />
<Content Include="icons\Plus.png" />
<Content Include="icons\Profits.png" />
<Content Include="icons\RightArrow.png" />
<Content Include="icons\Tick.png" />
<Content Include="icons\UpArrow.png" />
<Content Include="jquery-ui.css" />
<Content Include="LayoutTest.html" />
<Content Include="scripts\FlotGaps.js" />
<Content Include="scripts\jquery-3.5.1.min.js" />
<Content Include="scripts\jquery-ui.min.js" />
<Content Include="scripts\jquery.flot.axislabels.js" />
<Content Include="scripts\jquery.flot.crosshair.js" />
<Content Include="scripts\jquery.flot.downsample.js" />
<Content Include="scripts\jquery.flot.js" />
<Content Include="scripts\jquery.flot.pie.js" />
<Content Include="scripts\jquery.flot.selection.min.js" />
<Content Include="scripts\jquery.flot.time.min.js" />
<Content Include="scripts\jquery.flot.tooltip.js" />
<Content Include="scripts\jquery.marquee.min.js" />
<Content Include="scripts\js.cookie-2.2.1.min.js" />
<Content Include="scripts\SharePrices.js" />
<Content Include="scripts\tablesorter\dragtable.mod.css" />
@ -121,6 +146,9 @@
</ItemGroup>
<ItemGroup>
<Compile Include="App_Code\DataAccessLayer.vb" />
<Compile Include="Global.asax.vb">
<DependentUpon>Global.asax</DependentUpon>
</Compile>
<Compile Include="My Project\AssemblyInfo.vb" />
<Compile Include="My Project\Application.Designer.vb">
<AutoGen>True</AutoGen>

View File

@ -2,8 +2,8 @@
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
padding-top: 100px; /* Location of the box */
z-index: 10; /* Sit on top */
padding-top: 40px; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
@ -14,24 +14,46 @@
}
.modal-title {
background-color: #3279ea;
background-color: #404040;
margin: auto;
padding: 5px;
border: 1px solid #888;
/*padding: 5px;*/
/*border: 1px solid #888;*/
/*display: block;*/
width: 100%;
vertical-align: central;
}
/* Modal Content */
.modal-content {
background-color: #fefefe;
background-color: #2d2d2d;
margin: auto;
padding: 15px;
border: 1px solid #888;
width: 50%;
}
.modal-chart {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 6; /* Sit on top */
padding-top: 40px; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
.modal-chart-content {
background-color: #222;
margin: auto;
padding: 10px;
border: 1px solid #888;
width: 95%;
height: 85%;
}
/* The Close Button */
.close {
color: #aaaaaa;
@ -39,7 +61,7 @@
font-size: 24px;
font-weight: bold;
text-align: right;
vertical-align: central;
vertical-align: middle;
}
.close:hover,

View File

@ -1,35 +1,69 @@
html, body { min-height: 100% !important; height: 100%; width: 100%; }
body { font-family: Verdana, Arial, Helvetica, sans-serif; margin-left: 0px; }
body { font-family: Verdana, Arial, Helvetica, sans-serif; margin: 0px; /*margin-left: 0px; margin-top: 0px;*/ background-color: black; color: #B0B0B0; }
/*.header { position: fixed; top: 0px; left: 0px; height: 36px; width: 100%; z-index: 100; }*/
.tabParent { position: absolute; top: 0px; height: 100%; width: 100%; overflow: auto; background-color: black; }
.tabContainer { padding-top: 60px; /*36px;*/ }
.activeTab { z-index: 3; }
/* The navigation bar */
.navbar { overflow: hidden; background-color: #333; position: fixed; top: 0; width: 100%; z-index: 100; }
.navbar a { float: left; display: block; color: #f2f2f2; text-align: center; padding: 7px 16px; text-decoration: none; }
.navbar { /*overflow: hidden; */background-color: #333; position: fixed; top: 0; /*height: 28px;*/ width: 100%; z-index: 100; /*padding-top: 6px;*/ }
.navbar table { border-collapse: collapse; width: 100%; }
.navbar td { padding: 7px 0px 7px 0px }
.navbar a { /*float: left; display: block;*/ color: #f2f2f2; text-align: center; padding: 7px 12px 7px 12px; text-decoration: none; }
.navbar a:hover { background: #ddd; color: white; }
.navbar label { color: #f2f2f2; }
.navbar a:hover { background: #ddd; color: black; }
.activenav { float: left; display: block; color: #f2f2f2 !important; background-color: #307D30 !important; text-align: center; padding: 7px 16px; text-decoration: none; }
.main { height: 100%; width: 100%; margin-top: 34px; /* Add a top margin to avoid content overlay */ }
.activenav { /*float: left; display: block;*/ color: #f2f2f2 !important; background-color: #307D30 !important; text-align: center; /*padding: 7px 16px;*/ text-decoration: none; }
.main { height: 100%; width: 100%; /*margin-top: 34px;*/ /* Add a top margin to avoid content overlay */ }
/* #chartDiv { height: 100%; overflow: scroll; } */
/*
#chartDiv { margin-top: 34px; }
#holdingsDiv { margin-top: 34px; }
#accoountsDiv { margin-top: 34px; }
#analDiv { margin-top: 34px; }
*/
div.activetab {position: absolute; top: 0; height: 100%; width: 100%; z-index: 1; background-color: white; overflow: scroll; /*display: inline;*/}
div.inactivetab {position: absolute; top: 0; height:100%; width: 100%; z-index: 0; overflow: scroll; /*display: none;*/}
div.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx_activetab {/*position: absolute; top: 0;*/ height: 100%; width: 100%; z-index: 2; background-color: black; overflow: scroll; /*display: inline;*/}
div.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx_inactivetab {/*position: absolute; top: 0;*/ height: 100%; width: 100%; z-index: 0; overflow: scroll; /*display: none;*/}
td {vertical-align: top;}
.shareRow { /*background-color: #ffffff;*/ }
.altShareRow { background-color: #f4f4f4; }
.altShareRow { background-color: #212121; /*#2a2a2a;*/ }
.instrumentName { color: white; }
#spnTotalHoldings { color: white; /*padding-left: 50px;*/ }
#spnCurrencies { color: white; font-size: small; padding-right: 10px; }
a:link { color: #f473ff; }
a:visited { color: #9a34b7; }
.miniHoldings { border-collapse: collapse; border-spacing: 0; }
.miniHoldings td { font-size: x-small; border: 1px solid black; }
.miniHoldings th { font-size: x-small; border: 1px solid black; }
.miniHoldings td { font-size: x-small; border: 1px solid #505050; }
.miniHoldings th { font-size: x-small; border: 1px solid #505050; }
.soldHolding { text-decoration: line-through; }
/*tr.highlighted, td.highlighted { background-color: gold; }*/
.highlighted { background-color: gold; }
.mainHoldings { font-size: small; }
table.mainHoldings { width: 100%; }
table.mainHoldings th, table.mainHoldings td { padding-left: 5px; padding-right: 5px; }
table.mainHoldings tr:hover { background-color: #acc9e4; }
table.mainHoldings tr:hover { background-color: #404090; }
.accounts { font-size: small; }
/*table.accounts { width: 100%; }*/
table.accounts th, table.accounts td { padding-left: 5px; padding-right: 5px; }
table.accounts tr:hover { background-color: #404090; }
.analysis { font-size: small; }
table.analysis { width: 100%; }
table.analysis th, table.analysis td { padding-left: 5px; padding-right: 5px; }
table.analysis tbody tr { white-space: nowrap; }
table.analysis tr:hover { background-color: #404090; }
.pcLabel { position: relative; background-color: transparent; text-align: center; z-index: 2; }
.pcBackground { position: absolute; z-index: 1; }
.price-summary { font-size: x-small; }
@ -41,11 +75,142 @@ table.mainHoldings tr:hover { background-color: #acc9e4; }
.spacer { padding-top: 6px; }
.profit { color: #07b200; /*limegreen*/}
.loss { color: firebrick; }
.profit { color: #07b200; /* limegreen */}
.loss { color: #ff4141; /*#ee2727;*/ /*red;*/ /* firebrick */}
.open { color: white; /*#cacaca*/ }
.closed { color: #757575 }
td.no-border { border: 0px; text-align: right; }
.flot-tick-label { color: #b0b0b0 }
.LongSummary { font-size: x-small; }
.LongChart { height: 150px; width: 320px; }
.MidSummary { font-size: x-small; }
.MidChart { height: 150px; width: 320px; }
.ShortSummary { font-size: x-small; }
.ShortChart { height: 150px; width: 320px; }
.DaySummary { font-size: x-small; }
.DayChart { height: 136px; width: 320px; }
.FullScreenChart { height: 300px; width: 400px; }
.HoldingCurrenciesChart { height: 250px; width: 250px; }
/*#divHoldingCurrenciesChart .pieLabel { color: red !important; background-color: black; }*/
#divHoldingCurrenciesChart div.pieLabel { font-size: x-small; text-align: center; padding: 2px; color: white; background-color: black }
#divHoldingCurrenciesChartCurrentValue div.pieLabel { font-size: x-small; text-align: center; padding: 2px; color: white; background-color: black }
#divAccountBookCost div.pieLabel { font-size: x-small; text-align: center; padding: 2px; color: white; background-color: black }
#divAccountValue div.pieLabel { font-size: x-small; text-align: center; padding: 2px; color: white; background-color: black }
.flotTip
{
padding: 3px 5px;
background-color: #000;
z-index: 101;
color: #fff;
box-shadow: 0 0 10px #555;
opacity: .7;
filter: alpha(opacity=70);
border: 2px solid #fff;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.deletebutton { color: red; cursor: pointer; }
span.addHolding { cursor: pointer; }
.flot-text { font-size: x-small !important; }
.chart-tooltip { position: absolute; border: 1px solid #fdd; padding: 2px; background-color: transparent/*#fee*/; opacity: 0.80; display: none; z-index: 6; font-size: x-small; color: white; }
#selectInstrument2 { width: 100%; }
.marquee { width: 600px; overflow: hidden; font-size: small; /*border: 1px solid #ccc;*/ /*background: #ccc;*/ }
.marquee div { padding: 1px 0px 1px 0px; }
/*
html, body { min-height: 100% !important; height: 100%; width: 100%; }
body { font-family: Verdana, Arial, Helvetica, sans-serif; margin-left: 0px; background-color: black; color: #B0B0B0; }
/ * The navigation bar * /
.navbar { overflow: hidden; background-color: #333; position: fixed; top: 0; width: 100%; z-index: 100; }
.navbar a { float: left; display: block; color: #f2f2f2; text-align: center; padding: 7px 16px; text-decoration: none; }
.navbar label { color: #f2f2f2; }
.navbar a:hover { background: #ddd; color: white; }
.activenav { float: left; display: block; color: #f2f2f2 !important; background-color: #307D30 !important; text-align: center; padding: 7px 16px; text-decoration: none; }
.main { height: 100%; width: 100%; margin-top: 34px; / * Add a top margin to avoid content overlay * / }
/ * #chartDiv { height: 100%; overflow: scroll; } * /
#chartDiv { margin-top: 34px; }
#holdingsDiv { margin-top: 34px; }
#accoountsDiv { margin-top: 34px; }
#analDiv { margin-top: 34px; }
div.activetab {position: absolute; top: 0; height: 100%; width: 100%; z-index: 2; background-color: black; overflow: scroll; / *display: inline;* /}
div.inactivetab {position: absolute; top: 0; height:100%; width: 100%; z-index: 0; overflow: scroll; / *display: none;* /}
td {vertical-align: top;}
.shareRow { / *background-color: #ffffff;* / }
.altShareRow { background-color: #212121; / *#2a2a2a;* / }
.instrumentName { color: white; }
#spnTotalHoldings { color: white; padding-left: 50px; }
a:link { color: #f473ff; }
a:visited { color: #9a34b7; }
.miniHoldings { border-collapse: collapse; border-spacing: 0; }
.miniHoldings td { font-size: x-small; border: 1px solid #505050; }
.miniHoldings th { font-size: x-small; border: 1px solid #505050; }
.soldHolding { text-decoration: line-through; }
tr.highlighted, td.highlighted { background-color: gold; }
.mainHoldings { font-size: small; }
table.mainHoldings { width: 100%; }
table.mainHoldings th, table.mainHoldings td { padding-left: 5px; padding-right: 5px; }
table.mainHoldings tr:hover { background-color: #404090; }
.accounts { font-size: small; }
/ *table.accounts { width: 100%; }* /
table.accounts th, table.accounts td { padding-left: 5px; padding-right: 5px; }
table.accounts tr:hover { background-color: #404090; }
.analysis { font-size: small; }
table.analysis { width: 100%; }
table.analysis th, table.analysis td { padding-left: 5px; padding-right: 5px; }
table.analysis tbody tr { white-space: nowrap; }
table.analysis tr:hover { background-color: #404090; }
.pcLabel { position: relative; background-color: transparent; text-align: center; z-index: 2; }
.pcBackground { position: absolute; z-index: 1; }
.price-summary { font-size: x-small; }
.current-value { font-size: medium; }
.num {text-align: right;}
.summary { width: 100%; border-collapse: collapse; }
.spacer { padding-top: 6px; }
.profit { color: #07b200; / * limegreen * /}
.loss { color: #ee2727; / *red;* / / * firebrick * /}
td.no-border { border: 0px; text-align: right; }
.flot-tick-label { color: #b0b0b0 }
.LongSummary { font-size: x-small; }
.LongChart { height: 150px; width: 300px; }
@ -58,13 +223,37 @@ td.no-border { border: 0px; text-align: right; }
.DaySummary { font-size: x-small; }
.DayChart { height: 136px; width: 300px; }
.HoldingCurrenciesChart { height: 160px; width: 160px; }
/*#divHoldingCurrenciesChart .pieLabel { color: red !important; background-color: black; }*/
*#divHoldingCurrenciesChart div.pieLabel { font-size: x-small; text-align: center; padding: 2px; color: white; background-color: black }
.FullScreenChart { height: 300px; width: 400px; }
.HoldingCurrenciesChart { height: 250px; width: 250px; }
/ *#divHoldingCurrenciesChart .pieLabel { color: red !important; background-color: black; }* /
#divHoldingCurrenciesChart div.pieLabel { font-size: x-small; text-align: center; padding: 2px; color: white; background-color: black }
#divHoldingCurrenciesChartCurrentValue div.pieLabel { font-size: x-small; text-align: center; padding: 2px; color: white; background-color: black }
#divAccountBookCost div.pieLabel { font-size: x-small; text-align: center; padding: 2px; color: white; background-color: black }
#divAccountValue div.pieLabel { font-size: x-small; text-align: center; padding: 2px; color: white; background-color: black }
.flotTip
{
padding: 3px 5px;
background-color: #000;
z-index: 101;
color: #fff;
box-shadow: 0 0 10px #555;
opacity: .7;
filter: alpha(opacity=70);
border: 2px solid #fff;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.deletebutton { color: red; cursor: pointer; }
span.addHolding { cursor: pointer; }
.flot-text { font-size: x-small !important; }
.chart-tooltip { position: absolute; border: 1px solid #fdd; padding: 2px; background-color: #fee; opacity: 0.80; display: none; z-index: 2; }
.chart-tooltip { position: absolute; border: 1px solid #fdd; padding: 2px; background-color: #fee; opacity: 0.80; display: none; z-index: 6; }
#selectInstrument2 { width: 100%; }
*/

View File

@ -1,4 +1,4 @@
<?xml version="1.0"?>
<?xml version="1.0" encoding="UTF-8"?>
<!--
For more information on how to configure your ASP.NET application, please visit
@ -8,8 +8,8 @@
<configuration>
<system.web>
<compilation debug="true" strict="false" explicit="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" />
<customErrors mode="Off"/>
<httpRuntime targetFramework="4.5" />
<customErrors mode="Off" />
</system.web>
<system.web.extensions>
<scripting>
@ -21,4 +21,7 @@
</webServices>
</scripting>
</system.web.extensions>
<appSettings>
<add key="aspnet:MaxJsonDeserializerMembers" value="500000" />
</appSettings>
</configuration>

View File

@ -1,4 +1,4 @@
<?xml version="1.0"?>
<?xml version="1.0" encoding="UTF-8"?>
<!--
For more information on how to configure your ASP.NET application, please visit
@ -8,8 +8,8 @@
<configuration>
<system.web>
<compilation debug="true" strict="false" explicit="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" />
<customErrors mode="Off"/>
<httpRuntime targetFramework="4.5" />
<customErrors mode="Off" />
</system.web>
<system.web.extensions>
<scripting>
@ -21,4 +21,7 @@
</webServices>
</scripting>
</system.web.extensions>
<appSettings>
<add key="aspnet:MaxJsonDeserializerMembers" value="500000" />
</appSettings>
</configuration>

View File

@ -0,0 +1,96 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 66 -1 344 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 66 -1 344 410
%%EndPageSetup
q 66 -1 278 411 rectclip q
0 g
290.133 313.975 m 290.133 375.467 l 290.133 394.291 274.824 409.6 256 409.6
c 153.602 409.6 l 134.773 409.6 119.465 394.291 119.465 375.467 c 119.465
313.975 l 87.023 288.565 66.047 249.123 66.047 204.799 c 66.047 160.479
87.023 121.038 119.465 95.623 c 119.465 34.135 l 119.465 15.307 134.773
-0.002 153.602 -0.002 c 256 -0.002 l 274.824 -0.002 290.133 15.307 290.133
34.135 c 290.133 95.623 l 322.578 121.038 343.551 160.479 343.551 204.799
c 343.551 249.123 322.578 288.565 290.133 313.975 c h
256 375.467 m 256 333.635 l 240.145 339.967 222.891 343.553 204.801 343.553
c 186.711 343.553 169.457 339.967 153.582 333.635 c 153.582 375.467 l h
256 34.135 m 153.602 34.135 l 153.602 75.963 l 169.457 69.631 186.711 66.049
204.801 66.049 c 222.891 66.049 240.145 69.631 256 75.963 c h
204.801 100.182 m 147.113 100.182 100.18 147.116 100.18 204.799 c 100.18
262.487 147.113 309.42 204.801 309.42 c 262.484 309.42 309.418 262.487
309.418 204.799 c 309.418 147.116 262.484 100.182 204.801 100.182 c h
204.801 100.182 m f
252.449 185.498 m 224.992 209.733 l 221.867 216.901 l 221.867 255.998 l
221.867 265.42 214.223 273.065 204.801 273.065 c 195.379 273.065 187.734
265.42 187.734 255.998 c 187.734 204.799 l 187.734 199.901 189.832 195.241
193.504 191.998 c 229.855 159.913 l 233.098 157.065 237.125 155.647 241.137
155.647 c 245.863 155.647 250.574 157.592 253.953 161.416 c 260.199 168.483
259.516 179.268 252.449 185.498 c h
252.449 185.498 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,93 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 25 410 385
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 25 410 385
%%EndPageSetup
q 0 25 410 360 rectclip q
0 g
358.398 383.998 m 51.199 383.998 l 22.973 383.998 0 361.03 0 332.799 c
0 76.799 l 0 48.573 22.973 25.6 51.199 25.6 c 358.398 25.6 l 386.629 25.6
409.602 48.573 409.602 76.799 c 409.602 332.799 l 409.602 361.03 386.629
383.998 358.398 383.998 c h
375.465 76.799 m 375.465 67.397 367.805 59.733 358.398 59.733 c 51.199
59.733 l 41.797 59.733 34.133 67.397 34.133 76.799 c 34.133 93.866 l 375.469
93.866 l 375.469 76.799 l h
375.465 127.998 m 34.133 127.998 l 34.133 332.799 l 34.133 342.205 41.797
349.866 51.199 349.866 c 358.398 349.866 l 367.805 349.866 375.465 342.202
375.465 332.799 c h
375.465 127.998 m f
272.742 258.1 m 172.219 319.538 l 166.965 322.78 160.359 322.885 154.965
319.862 c 149.59 316.842 146.262 311.159 146.262 304.979 c 146.262 182.1
l 146.262 175.924 149.59 170.241 154.98 167.217 c 157.578 165.768 160.461
165.034 163.328 165.034 c 166.418 165.034 169.508 165.87 172.219 167.541
c 272.742 228.983 l 277.812 232.088 280.918 237.6 280.918 243.541 c 280.918
249.479 277.828 254.995 272.742 258.1 c h
180.395 212.53 m 180.395 274.553 l 231.133 243.541 l h
180.395 212.53 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,135 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 7 410 402
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 7 410 402
%%EndPageSetup
q 0 7 410 395 rectclip q
0 g
383.246 244.393 m 378.457 248.268 370.484 254.733 369.484 257.799 c 368.469
260.979 371.094 271.221 372.668 277.315 c 376.441 292.022 381.148 310.323
370.602 324.725 c 360.109 339.026 341.234 340.28 326.07 341.295 c 319.789
341.737 309.262 342.432 306.605 344.362 c 303.914 346.307 299.867 356.276
297.445 362.252 c 291.473 377.061 284.668 393.854 268.062 399.202 c 251.543
404.6 236.445 395.038 223.156 386.627 c 217.301 382.936 208.48 377.35 204.793
377.35 c 201.254 377.35 192.539 383.022 186.75 386.776 c 173.969 395.088
157.992 405.381 141.152 399.659 c 124.578 394.022 117.844 377.334 111.867
362.639 c 109.465 356.717 105.469 346.83 102.727 344.819 c 100.055 342.838
89.34 342.127 82.941 341.702 c 66.945 340.62 48.816 339.401 38.629 324.979
c 28.625 310.811 33.109 293.346 37.07 277.924 c 38.629 271.799 41.27 261.541
40.32 258.475 c 39.305 255.549 31.418 249.065 26.711 245.19 c 14.809 235.37
0 223.166 0 204.885 c 0 186.725 14.523 174.655 26.184 164.975 c 31.246
160.776 38.879 154.428 39.91 151.28 c 40.926 148.166 38.289 138.045 36.695
132.002 c 32.836 117.159 28.012 98.674 38.965 84.151 c 49.645 70.034 68.434
68.784 83.547 67.768 c 89.828 67.327 100.34 66.651 103.012 64.702 c 105.688
62.756 109.719 52.803 112.137 46.827 c 118.129 32.018 124.914 15.225 141.539
9.862 c 144.871 8.76 148.172 8.288 151.391 8.288 c 164.117 8.288 175.863
15.733 186.461 22.405 c 192.301 26.092 201.102 31.678 204.793 31.678 c
208.398 31.678 217.062 26.163 222.785 22.506 c 235.477 14.432 251.32 4.307
268.129 10.065 c 284.684 15.702 291.422 32.373 297.395 47.1 c 299.797 53.006
303.793 62.909 306.535 64.92 c 309.227 66.901 319.871 67.612 326.238 68.038
c 342.113 69.12 360.125 70.323 370.465 84.522 c 380.875 98.791 376.406
116.444 372.465 132.002 c 370.926 138.077 368.352 148.217 369.281 151.264
c 370.297 154.19 378.184 160.674 382.875 164.549 c 394.789 174.37 409.602
186.588 409.602 204.87 c 409.602 222.998 394.977 234.862 383.246 244.393
c h
361.359 190.651 m 351.457 182.51 341.219 174.065 337.188 161.959 c 333.074
149.639 336.426 136.436 339.66 123.674 c 341.234 117.444 343.875 107.034
343.52 104.885 c 340.945 102.955 330.332 102.229 323.988 101.823 c 311.41
100.975 297.16 100.026 286.547 92.241 c 276.035 84.541 270.938 71.963 266.012
59.811 c 263.609 53.819 259.547 43.78 257.871 42.256 c 254.793 42.256 246.176
47.791 241.012 51.077 c 230.367 57.846 218.297 65.549 204.809 65.549 c
191.301 65.549 179.129 57.83 168.367 51.026 c 163.152 47.741 154.418 42.19
152.559 41.784 c 149.934 43.663 145.938 53.58 143.535 59.506 c 138.559
71.811 133.414 84.522 122.801 92.155 c 112.258 99.756 98.816 100.655 85.801
101.514 c 79.691 101.924 68.297 102.686 66.234 104.088 c 65.184 107.084
67.84 117.327 69.449 123.42 c 72.578 135.487 76.152 149.163 72.125 161.655
c 68.078 174.131 57.328 183.084 47.832 190.971 c 43.195 194.83 34.547 202.026
33.82 204.631 c 34.578 207.815 43.465 215.143 48.238 219.053 c 58.141 227.209
68.383 235.659 72.41 247.76 c 76.559 260.166 73.137 273.471 69.855 286.334
c 68.262 292.545 65.59 302.94 65.793 304.92 c 68.383 306.78 78.91 307.491
85.207 307.916 c 98.426 308.795 112.121 309.725 122.73 317.495 c 133.242
325.198 138.34 337.756 143.266 349.909 c 145.668 355.916 149.746 365.94
151.305 367.444 c 154.434 367.393 163.137 361.741 168.332 358.373 c 179.062
351.397 191.25 343.495 204.809 343.495 c 218.297 343.495 230.504 351.213
241.234 357.998 c 246.445 361.299 255.18 366.834 257.043 367.241 c 259.648
365.362 263.66 355.444 266.066 349.518 c 271.039 337.229 276.188 324.518
286.801 316.885 c 297.344 309.268 310.801 308.373 323.836 307.51 c 330.266
307.069 341.047 306.342 343.062 305.123 c 344.094 302.143 341.473 291.854
339.879 285.725 c 336.781 273.604 333.262 259.877 337.309 247.354 c 341.387
234.741 352.305 225.889 361.934 218.088 c 366.336 214.498 374.445 207.948
375.695 204.799 c 374.496 201.502 365.98 194.475 361.359 190.651 c h
361.359 190.651 m f
280.488 268.647 m 273.277 274.674 262.629 273.694 256.656 266.534 c 181.18
176.299 l 149.07 208.389 l 142.453 215.006 131.754 215.006 125.137 208.389
c 118.52 201.772 118.52 191.073 125.137 184.455 c 170.332 139.264 l 173.496
136.065 177.812 134.303 182.297 134.303 c 182.535 134.303 182.789 134.303
183.027 134.338 c 187.797 134.541 192.219 136.741 195.262 140.377 c 282.602
244.815 l 288.594 251.991 287.664 262.655 280.488 268.647 c h
280.488 268.647 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,87 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 -1 410 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 -1 410 410
%%EndPageSetup
q 0 -1 410 411 rectclip q
0 g
204.801 409.6 m 91.867 409.6 0 317.733 0 204.799 c 0 91.866 91.867 -0.002
204.801 -0.002 c 317.734 -0.002 409.602 91.881 409.602 204.799 c 409.602
317.717 317.734 409.6 204.801 409.6 c h
204.801 31.729 m 109.379 31.729 31.727 109.366 31.727 204.799 c 31.727
300.237 109.379 377.873 204.801 377.873 c 300.234 377.873 377.871 300.237
377.871 204.799 c 377.871 109.366 300.219 31.729 204.801 31.729 c h
204.801 31.729 m f
295.383 182.909 m 216.062 262.225 l 209.875 268.381 199.883 268.381 193.695
262.225 c 114.375 182.909 l 109.285 176.975 109.285 168.202 114.375 162.268
c 120.07 155.623 130.098 154.846 136.746 160.541 c 204.801 228.596 l 273.012
160.541 l 279.199 154.385 289.195 154.385 295.383 160.541 c 301.535 166.729
301.535 176.721 295.383 182.909 c h
295.383 182.909 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,89 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 75 410 335
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 75 410 335
%%EndPageSetup
q 0 75 410 260 rectclip q
0 g
408.281 323.173 m 407.402 325.29 406.129 327.185 404.547 328.767 c 404.445
328.872 404.34 328.888 404.254 328.974 c 402.707 330.438 400.934 331.661
398.938 332.485 c 397.301 333.157 395.582 333.364 393.859 333.517 c 393.344
333.552 392.914 333.794 392.398 333.794 c 254.715 333.794 l 245.199 333.794
237.504 326.103 237.504 316.583 c 237.504 307.067 245.199 299.372 254.715
299.372 c 351.023 299.372 l 214.789 162.364 l 162.953 228.728 l 159.957
232.563 155.5 234.938 150.68 235.302 c 145.672 235.661 141.059 233.958
137.551 230.638 c 5.375 105.501 l -1.527 98.962 -1.816 88.067 4.703 81.165
c 8.113 77.603 12.656 75.813 17.219 75.813 c 21.469 75.813 25.719 77.38
29.039 80.513 c 147.461 192.638 l 199.66 125.81 l 202.707 121.903 207.27
119.509 212.207 119.22 c 217.145 118.942 221.949 120.767 225.441 124.263
c 375.188 274.868 l 375.188 178.903 l 375.188 169.384 382.879 161.692 392.398
161.692 c 401.914 161.692 409.605 169.384 409.605 178.903 c 409.605 316.599
l 409.59 318.853 409.141 321.075 408.281 323.173 c h
408.281 323.173 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,97 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 17 -1 393 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 17 -1 393 410
%%EndPageSetup
q 17 -1 376 411 rectclip q
0 g
375.465 341.334 m 290.133 341.334 l 290.133 392.534 l 290.133 401.955 282.504
409.6 273.066 409.6 c 136.535 409.6 l 127.098 409.6 119.469 401.955 119.469
392.534 c 119.469 341.334 l 34.133 341.334 l 24.695 341.334 17.066 333.69
17.066 324.268 c 17.066 314.846 24.695 307.202 34.133 307.202 c 51.199
307.202 l 51.199 51.202 l 51.199 22.971 74.172 -0.002 102.398 -0.002 c 307.199
-0.002 l 335.43 -0.002 358.398 22.971 358.398 51.202 c 358.398 307.202
l 375.465 307.202 l 384.902 307.202 392.531 314.846 392.531 324.268 c 392.531
333.686 384.906 341.334 375.465 341.334 c h
153.602 375.467 m 256 375.467 l 256 341.334 l 153.602 341.334 l h
324.266 51.202 m 324.266 41.795 316.621 34.135 307.199 34.135 c 102.398
34.135 l 92.98 34.135 85.332 41.795 85.332 51.202 c 85.332 307.202 l 324.266
307.202 l h
324.266 51.202 m f
153.602 273.065 m 144.164 273.065 136.535 265.42 136.535 255.998 c 136.535
102.401 l 136.535 92.979 144.164 85.334 153.602 85.334 c 163.039 85.334
170.668 92.979 170.668 102.401 c 170.668 255.998 l 170.668 265.42 163.039
273.065 153.602 273.065 c h
153.602 273.065 m f
256 273.065 m 246.562 273.065 238.934 265.42 238.934 255.998 c 238.934
102.401 l 238.934 92.979 246.562 85.334 256 85.334 c 265.438 85.334 273.066
92.979 273.066 102.401 c 273.066 255.998 l 273.066 265.42 265.438 273.065
256 273.065 c h
256 273.065 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,88 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 -1 410 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 -1 410 410
%%EndPageSetup
q 0 -1 410 411 rectclip q
0 g
277.773 168.631 m 220.664 211.463 l 220.664 298.713 l 220.664 307.487 213.57
314.577 204.801 314.577 c 196.027 314.577 188.934 307.487 188.934 298.713
c 188.934 203.53 l 188.934 198.534 191.281 193.823 195.281 190.838 c 258.734
143.248 l 261.59 141.108 264.922 140.077 268.238 140.077 c 273.074 140.077
277.836 142.248 280.945 146.436 c 286.211 153.432 284.785 163.381 277.773
168.631 c h
277.773 168.631 m f
204.801 409.6 m 91.867 409.6 0 317.733 0 204.799 c 0 91.866 91.867 -0.002
204.801 -0.002 c 317.734 -0.002 409.602 91.866 409.602 204.799 c 409.602
317.733 317.734 409.6 204.801 409.6 c h
204.801 31.729 m 109.379 31.729 31.727 109.381 31.727 204.799 c 31.727
300.221 109.379 377.873 204.801 377.873 c 300.234 377.873 377.871 300.221
377.871 204.799 c 377.871 109.381 300.219 31.729 204.801 31.729 c h
204.801 31.729 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,102 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 14 410 395
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 14 410 395
%%EndPageSetup
q 0 14 410 381 rectclip q
0 g
210.125 87.092 m 209.102 88.475 207.891 89.686 206.508 90.709 c 146.773
134.913 l 139.23 140.561 128.527 139.041 122.879 131.498 c 120.66 128.545
119.465 124.944 119.465 121.26 c 119.465 91.221 l 68.266 91.221 l 49.406
91.221 34.133 106.495 34.133 125.354 c 34.133 290.217 l 34.133 309.077
49.406 324.354 68.266 324.354 c 136.531 324.354 l 145.953 324.354 153.598
331.998 153.598 341.42 c 153.598 350.838 145.953 358.487 136.531 358.487
c 68.266 358.487 l 30.566 358.487 0 327.92 0 290.217 c 0 125.186 l 0 87.483
30.566 56.916 68.266 56.916 c 119.465 56.916 l 119.465 32.51 l 119.465
23.092 127.113 15.444 136.531 15.444 c 140.219 15.444 143.82 16.639 146.773
18.858 c 206.508 63.233 l 214.102 68.83 215.707 79.514 210.125 87.092 c
h
210.125 87.092 m f
341.332 352.682 m 290.133 352.682 l 290.133 377.088 l 290.133 386.51 282.488
394.155 273.066 394.155 c 269.379 394.155 265.781 392.959 262.828 390.741
c 203.094 346.37 l 195.5 340.772 193.895 330.088 199.477 322.51 c 200.5
321.127 201.711 319.913 203.094 318.889 c 262.828 274.518 l 270.371 268.87
281.07 270.385 286.723 277.932 c 288.938 280.881 290.133 284.483 290.133
288.17 c 290.133 318.549 l 341.336 318.549 l 360.191 318.549 375.469 303.276
375.469 284.416 c 375.469 119.381 l 375.469 100.522 360.195 85.248 341.336
85.248 c 273.066 85.248 l 263.648 85.248 256 77.6 256 68.182 c 256 58.76
263.648 51.116 273.066 51.116 c 341.336 51.116 l 379.035 51.116 409.602
81.682 409.602 119.381 c 409.602 284.416 l 409.602 322.116 379.035 352.682
341.332 352.682 c h
341.332 352.682 m f
240.98 204.811 m 240.98 189.541 228.602 177.163 213.332 177.163 c 198.062
177.163 185.684 189.541 185.684 204.811 c 185.684 220.08 198.062 232.459
213.332 232.459 c 228.602 232.459 240.98 220.08 240.98 204.811 c h
240.98 204.811 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,99 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 -1 410 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 -1 410 410
%%EndPageSetup
q 0 -1 410 411 rectclip q
0 g
409.383 239.89 m 409.297 241.374 408.887 242.773 408.41 244.206 c 408.121
245.093 407.934 245.984 407.504 246.82 c 407.367 247.074 407.387 247.347
407.23 247.605 c 406.566 248.714 405.594 249.464 404.738 250.367 c 404.227
250.933 403.957 251.648 403.359 252.144 c 375.469 274.945 l 375.469 341.335
l 375.469 350.753 367.824 358.402 358.402 358.402 c 273.48 358.402 l 215.625
405.742 l 209.328 410.898 200.281 410.898 194 405.742 c 136.145 358.402
l 51.203 358.402 l 41.781 358.402 34.137 350.753 34.137 341.335 c 34.137
274.945 l 6.27 252.128 l 5.773 251.734 5.551 251.101 5.105 250.66 c 4.152
249.687 3.094 248.831 2.375 247.605 c 2.223 247.347 2.238 247.058 2.105
246.8 c 1.66 245.98 1.508 245.113 1.199 244.242 c 0.723 242.788 0.312 241.39
0.227 239.906 c 0.211 239.566 0.004 239.273 0.004 238.933 c 0.004 17.066
l 0.004 7.628 7.652 -0.001 17.07 -0.001 c 392.57 -0.001 l 394.586 -0.001
396.547 0.476 398.441 1.179 c 398.887 1.347 399.312 1.503 399.758 1.706
c 401.5 2.527 403.137 3.535 404.535 4.933 c 404.672 5.07 404.758 5.238
404.879 5.374 c 405.746 6.296 406.566 7.253 407.234 8.398 c 407.422 8.722
407.422 9.078 407.59 9.406 c 408.121 10.429 408.41 11.519 408.719 12.663
c 409.023 13.788 409.316 14.867 409.383 15.992 c 409.418 16.367 409.605
16.675 409.605 17.066 c 409.605 238.933 l 409.605 239.277 409.418 239.566
409.383 239.89 c h
204.805 370.484 m 219.586 358.402 l 190.043 358.402 l h
68.27 324.269 m 341.336 324.269 l 341.336 228.507 l 204.82 147.831 l 68.27
228.523 l h
34.137 34.132 m 34.137 209.015 l 330.109 34.132 l h
375.473 46.984 m 238.391 127.999 l 375.469 208.999 l 375.469 46.984 l h
375.473 46.984 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,84 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 28 -1 381 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 28 -1 381 410
%%EndPageSetup
q 28 -1 353 411 rectclip q
0 g
375.594 290.041 m 261.301 404.494 l 254.508 411.303 243.512 411.287 236.723
404.51 c 229.93 397.737 229.93 386.741 236.703 379.932 c 321.574 294.959
l 147.562 294.959 l 82.355 294.959 29.152 241.912 28.926 176.655 c 28.926
17.369 l 28.926 7.764 36.688 0.002 46.293 0.002 c 55.898 0.002 63.664 7.764
63.664 17.369 c 63.664 176.6 l 63.82 222.717 101.461 260.217 147.559 260.217
c 321.227 260.217 l 236.688 175.576 l 229.91 168.768 229.91 157.787 236.703
150.998 c 240.09 147.627 244.535 145.924 248.984 145.924 c 253.43 145.924
257.895 147.627 261.281 151.014 c 375.574 265.483 l 382.367 272.272 382.367
283.268 375.594 290.041 c h
375.594 290.041 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,114 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 0 410 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 0 410 410
%%EndPageSetup
q 0 0 410 410 rectclip q
0 g
204.715 289.143 m 157.641 289.143 119.344 250.846 119.344 203.776 c 119.344
156.705 157.641 118.409 204.715 118.409 c 251.785 118.409 290.082 156.705
290.082 203.776 c 290.082 250.846 251.789 289.143 204.715 289.143 c h
204.715 152.553 m 176.473 152.553 153.492 175.538 153.492 203.776 c 153.492
232.014 176.473 254.998 204.715 254.998 c 232.973 254.998 255.938 232.014
255.938 203.776 c 255.938 175.538 232.953 152.553 204.715 152.553 c h
204.715 152.553 m f
394.949 254.791 m 346.41 262.612 l 375.434 301.198 l 380.523 307.975 379.891
317.436 373.949 323.463 c 325.441 372.651 l 319.434 378.764 309.871 379.463
303.059 374.342 c 263.398 346.479 l 255.715 394.284 l 254.383 402.565 247.246
408.643 238.863 408.643 c 170.566 408.643 l 162.062 408.643 154.859 402.393
153.664 393.995 c 145.672 345.608 l 106.215 374.463 l 99.402 379.448 90.031
378.733 84.07 372.772 c 35.754 324.623 l 29.707 318.616 29.043 309.069
34.164 302.256 c 62.457 262.663 l 14.648 255.834 l 6.25 254.639 0 247.432
0 238.932 c 0 170.635 l 0 162.131 6.25 154.928 14.648 153.768 c 63.191
145.948 l 34.164 107.362 l 29.043 100.545 29.707 91.038 35.734 85.01 c 84.055
36.694 l 90.082 30.631 99.609 30.014 106.402 35.123 c 145.98 63.413 l 152.809
15.608 l 154.004 7.205 161.211 0.955 169.715 0.955 c 238.008 0.955 l 246.512
0.955 253.719 7.19 254.91 15.557 c 262.73 64.096 l 301.32 35.069 l 308.148
29.948 317.656 30.596 323.668 36.639 c 371.988 84.959 l 378.012 90.987
378.68 100.514 373.559 107.307 c 344.82 146.834 l 394.508 152.639 l 403.113
153.631 409.602 160.92 409.602 169.592 c 409.602 237.889 l 409.602 246.393
403.352 253.596 394.949 254.791 c h
375.469 184.807 m 340.621 180.745 l 327.938 179.088 317.332 170.584 313.391
159.623 c 308.438 148.424 309.891 135.327 317.266 125.373 c 337.379 98.651
l 310.027 71.299 l 283.188 91.498 l 273.301 98.807 260.203 100.256 250.113
95.698 c 238.094 91.346 229.594 80.741 227.934 68.245 c 223.223 35.104
l 184.535 35.104 l 179.805 68.038 l 178.148 80.725 169.645 91.327 158.699
95.256 c 147.52 100.205 134.457 98.788 124.434 91.397 c 97.711 71.284 l
70.359 98.635 l 90.559 125.475 l 97.848 135.327 99.301 148.405 94.758 158.545
c 90.387 170.569 79.801 179.088 67.289 180.725 c 34.148 185.44 l 34.148
224.127 l 67.098 228.858 l 79.785 230.514 90.387 239.018 94.316 249.959
c 99.285 261.163 97.832 274.221 90.473 284.229 c 70.379 310.932 l 97.816
338.284 l 125.422 318.1 l 135.293 310.795 148.355 309.393 158.496 313.901
c 170.531 318.272 179.02 328.909 180.641 341.358 c 185.371 374.514 l 224.316
374.514 l 229.609 341.596 l 231.246 328.893 239.734 318.272 250.727 314.311
c 261.91 309.393 274.988 310.795 284.926 318.155 c 311.598 338.096 l 339.34
309.991 l 319.074 283.065 l 311.785 273.213 310.332 260.135 314.875 249.979
c 319.246 237.94 329.883 229.455 342.328 227.834 c 375.469 223.104 l h
375.469 184.807 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,91 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 1 -1 409 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 1 -1 409 410
%%EndPageSetup
q 1 -1 408 411 rectclip q
0 g
181.855 337.049 m 122.332 337.049 73.914 288.631 73.914 229.112 c 73.914
169.592 122.332 121.174 181.855 121.174 c 241.375 121.174 289.793 169.592
289.793 229.112 c 289.793 288.631 241.375 337.049 181.855 337.049 c h
181.855 155.549 m 141.289 155.549 108.289 188.549 108.289 229.112 c 108.289
269.674 141.289 302.674 181.855 302.674 c 222.418 302.674 255.418 269.674
255.418 229.112 c 255.418 188.549 222.414 155.549 181.855 155.549 c h
181.855 155.549 m f
403.195 29.358 m 319.629 112.788 l 346.234 144.221 362.359 184.803 362.359
229.127 c 362.359 328.647 281.406 409.6 181.887 409.6 c 82.371 409.6 1.383
328.627 1.383 229.112 c 1.383 129.596 82.355 48.639 181.855 48.639 c 224.688
48.639 264.043 63.713 295.02 88.741 c 378.875 5.018 l 382.227 1.686 386.629
-0.002 391.027 -0.002 c 395.43 -0.002 399.828 1.686 403.195 5.053 c 409.898
11.756 409.883 22.635 403.195 29.358 c h
181.855 83.018 m 101.297 83.018 35.758 148.553 35.758 229.112 c 35.758
309.67 101.293 375.205 181.855 375.205 c 262.414 375.205 327.949 309.67
327.949 229.112 c 327.949 148.553 262.41 83.018 181.855 83.018 c h
181.855 83.018 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,91 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 8 410 401
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 8 410 401
%%EndPageSetup
q 0 8 410 393 rectclip q
0 g
408.754 252.596 m 406.723 258.846 401.348 263.373 394.859 264.319 c 274.16
281.948 l 220.137 391.268 l 214.316 403.01 195.086 403.01 189.266 391.268
c 135.242 281.932 l 14.734 264.319 l 8.242 263.373 2.855 258.827 0.84 252.596
c -1.176 246.366 0.496 239.53 5.195 234.948 c 92.375 149.85 l 71.871 29.631
l 70.754 23.178 73.406 16.651 78.727 12.795 c 81.719 10.627 85.266 9.526
88.832 9.526 c 91.566 9.526 94.324 10.178 96.887 11.522 c 204.727 68.248
l 312.758 11.506 l 318.559 8.475 325.602 8.94 330.887 12.83 c 336.188 16.686
338.82 23.209 337.719 29.686 c 317.059 149.87 l 404.395 234.967 l 409.098
239.53 410.785 246.346 408.754 252.596 c h
286.504 168.186 m 282.457 164.225 280.598 158.53 281.562 152.932 c 297.848
58.194 l 212.699 102.936 l 210.184 104.245 207.445 104.901 204.691 104.901
c 201.922 104.901 199.168 104.245 196.672 102.92 c 111.66 58.209 l 127.824
152.967 l 128.789 158.526 126.93 164.241 122.883 168.186 c 54.141 235.276
l 149.156 249.186 l 154.75 249.979 159.586 253.506 162.102 258.569 c 204.691
344.752 l 247.285 258.584 l 249.797 253.522 254.637 249.995 260.23 249.186
c 355.367 235.276 l h
286.504 168.186 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,89 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 7 410 402
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 7 410 402
%%EndPageSetup
q 0 7 410 395 rectclip q
0 g
387.438 52.83 m 387.438 53.002 l 88.828 53.002 l 64.309 53.002 44.43 72.815
44.328 97.33 c 44.328 378.932 l 44.328 391.163 34.398 401.096 22.164 401.096
c 9.93 401.096 0 391.166 0 378.932 c 0 97.33 l 0 48.28 39.773 8.502 88.828
8.502 c 387.438 8.502 l 399.668 8.502 409.602 18.436 409.602 30.666 c 409.602
42.901 399.668 52.83 387.438 52.83 c h
387.438 52.83 m f
360.633 307.459 m 350.805 314.811 336.891 312.819 329.535 302.991 c 277.992
229.112 l 205.145 283.92 l 195.367 291.272 181.469 289.315 174.113 279.538
c 174.098 279.502 174.078 279.487 174.047 279.452 c 110.648 188.393 l 103.242
178.651 105.148 164.733 114.891 157.327 c 118.621 154.495 123.156 152.913
127.828 152.827 c 127.828 152.311 l 134.613 152.498 140.957 155.799 145.012
161.245 c 196.555 235.123 l 269.402 180.319 l 279.18 172.963 293.078 174.92
300.434 184.698 c 300.449 184.733 300.465 184.748 300.5 184.784 c 365.102
276.362 l 372.453 286.186 370.461 300.104 360.633 307.459 c h
360.633 307.459 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,91 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 34 -1 376 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 34 -1 376 410
%%EndPageSetup
q 34 -1 342 411 rectclip q
0 g
289.758 215.963 m 300.766 232.295 307.199 251.94 307.199 273.065 c 307.199
307.202 l 307.199 363.674 261.273 409.6 204.801 409.6 c 148.328 409.6 102.398
363.674 102.398 307.202 c 102.398 273.065 l 102.398 251.936 108.836 232.295
119.844 215.963 c 68.711 186.471 34.133 131.413 34.133 68.268 c 34.133
51.202 l 34.133 22.971 57.105 -0.002 85.332 -0.002 c 324.266 -0.002 l 352.496
-0.002 375.469 22.971 375.469 51.202 c 375.469 68.268 l 375.465 131.413
340.891 186.471 289.758 215.963 c h
136.535 307.202 m 136.535 344.85 167.152 375.467 204.801 375.467 c 242.449
375.467 273.066 344.85 273.066 307.202 c 273.066 273.065 l 273.066 235.416
242.449 204.799 204.801 204.799 c 167.152 204.799 136.535 235.416 136.535
273.065 c h
341.332 51.202 m 341.332 41.795 333.672 34.135 324.266 34.135 c 85.332
34.135 l 75.93 34.135 68.266 41.795 68.266 51.202 c 68.266 68.268 l 68.266
121.838 99.293 168.276 144.316 190.62 c 161.297 178.143 182.168 170.666
204.801 170.666 c 227.43 170.666 248.305 178.143 265.285 190.62 c 310.305
168.276 341.332 121.838 341.332 68.268 c h
341.332 51.202 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,97 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 25 410 385
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 25 410 385
%%EndPageSetup
q 0 25 410 360 rectclip q
0 g
358.398 298.666 m 324.266 298.666 l 324.266 332.799 l 324.266 361.03 301.293
383.998 273.066 383.998 c 51.199 383.998 l 22.973 383.998 0 361.03 0 332.799
c 0 162.135 l 0 133.905 22.973 110.932 51.199 110.932 c 85.332 110.932
l 85.332 76.799 l 85.332 48.573 108.305 25.6 136.535 25.6 c 358.398 25.6
l 386.629 25.6 409.602 48.573 409.602 76.799 c 409.602 247.467 l 409.602
275.694 386.629 298.666 358.398 298.666 c h
34.133 332.799 m 34.133 342.221 41.797 349.866 51.199 349.866 c 273.066
349.866 l 282.469 349.866 290.133 342.221 290.133 332.799 c 290.133 222.311
l 223.387 270.987 l 218.812 274.311 212.906 275.202 207.633 273.288 c 34.133
211.866 l h
51.199 145.065 m 41.797 145.065 34.133 152.713 34.133 162.131 c 34.133
175.686 l 210.551 238.131 l 290.133 180.069 l 290.133 162.135 l 290.133
152.713 282.469 145.069 273.066 145.069 c 51.199 145.069 l h
375.465 76.799 m 375.465 67.377 367.82 59.733 358.398 59.733 c 136.535
59.733 l 127.129 59.733 119.469 67.377 119.469 76.799 c 119.469 110.932
l 273.066 110.932 l 301.297 110.932 324.266 133.905 324.266 162.135 c 324.266
264.534 l 358.398 264.534 l 367.82 264.534 375.465 256.889 375.465 247.467
c h
375.465 76.799 m f
119.465 291.159 m 119.465 277.018 108.004 265.557 93.867 265.557 c 79.727
265.557 68.266 277.018 68.266 291.159 c 68.266 305.295 79.727 316.756 93.867
316.756 c 108.004 316.756 119.465 305.295 119.465 291.159 c h
119.465 291.159 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,89 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 -1 410 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 -1 410 410
%%EndPageSetup
q 0 -1 410 411 rectclip q
0 g
404.219 80.828 m 341.105 144.648 l 335.305 150.5 326.238 151.613 319.254
147.265 c 267.191 115.105 l 208.672 157.89 157.07 209.015 113.719 267.199
c 145.93 319.351 l 150.227 326.297 149.199 335.281 143.438 341.078 c 80.676
404.367 l 73.801 411.297 62.629 411.332 55.699 404.492 c 27.113 376.273
l 0.238 349.297 -7.309 307.824 8.336 273.051 c 10.973 267.285 l 63.211
151.066 156.273 58.941 273.008 7.832 c 285.062 2.582 297.703 -0 310.219
-0 c 334.121 -0 357.527 9.351 375.332 27.086 c 404.148 55.902 l 411.023
62.777 411.059 73.898 404.219 80.828 c h
350.332 52.098 m 333.609 35.43 308.84 30.762 287.168 40.219 c 178.496 87.812
91.852 173.59 43.18 281.836 c 40.566 287.617 l 30.91 309.058 35.578 334.676
52.074 351.223 c 67.984 366.941 l 108.504 326.066 l 77.285 275.504 l 73.465
269.32 73.82 261.418 78.188 255.598 c 84.496 247.203 l 130.355 185.398
185.16 131.07 247.035 86.023 c 255.344 79.66 l 261.18 75.168 269.152 74.781
275.395 78.633 c 325.848 109.785 l 366.703 68.469 l h
350.332 52.098 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,95 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 25 410 385
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 25 410 385
%%EndPageSetup
q 0 25 410 360 rectclip q
0 g
361.031 60.181 m 68.77 60.181 l 49.805 60.181 34.383 75.603 34.383 94.567
c 34.383 113.528 49.805 128.95 68.77 128.95 c 103.152 128.95 l 112.641
128.95 120.344 136.653 120.344 146.142 c 120.344 155.63 112.641 163.333
103.152 163.333 c 68.77 163.333 l 30.844 163.333 0 132.493 0 94.567 c 0
56.642 30.844 25.798 68.77 25.798 c 361.031 25.798 l 370.523 25.798 378.227
33.501 378.227 42.989 c 378.227 52.478 370.523 60.181 361.031 60.181 c
h
361.031 60.181 m f
390.398 364.583 m 364.746 390.2 323.004 390.235 297.301 364.583 c 270.996
338.278 l 270.672 338.005 270.273 337.903 269.965 337.591 c 269.656 337.282
269.555 336.888 269.277 336.56 c 181.066 248.349 l 164.082 231.329 154.727
208.704 154.727 184.653 c 154.727 146.142 l 154.727 136.653 162.43 128.95
171.922 128.95 c 210.43 128.95 l 234.48 128.95 257.105 138.302 274.16 155.306
c 390.379 271.524 l 416.012 297.173 416.012 338.935 390.398 364.583 c h
249.867 179.634 m 239.332 169.13 225.32 163.333 210.43 163.333 c 189.113
163.333 l 189.113 184.653 l 189.113 199.54 194.906 213.552 205.395 224.075
c 282.293 300.974 l 326.75 256.517 l h
366.07 295.833 m 351.062 280.825 l 306.602 325.282 l 321.594 340.274 l
333.852 352.513 353.812 352.497 366.051 340.274 c 378.293 328.017 378.293
308.075 366.07 295.833 c h
366.07 295.833 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,94 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 -1 410 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 -1 410 410
%%EndPageSetup
q 0 -1 410 411 rectclip q
0 g
294.91 409.6 m 16.383 409.6 l 7.34 409.6 0 402.26 0 393.217 c 0 114.69
l 0 105.643 7.34 98.303 16.383 98.303 c 294.91 98.303 l 303.957 98.303 311.297
105.643 311.297 114.69 c 311.297 393.217 l 311.297 402.26 303.957 409.6
294.91 409.6 c h
278.527 131.073 m 32.77 131.073 l 32.77 376.83 l 278.527 376.83 l h
278.527 131.073 m f
376.832 73.729 m 376.832 32.768 l 335.871 32.768 l 335.871 -0.002 l 393.215
-0.002 l 402.262 -0.002 409.602 7.338 409.602 16.385 c 409.602 73.729 l
h
376.832 73.729 m f
209.879 32.768 88.145 -32.77 re f
131.07 32.768 m 131.07 73.729 l 98.305 73.729 l 98.305 16.385 l 98.305
7.338 105.645 -0.002 114.688 -0.002 c 172.031 -0.002 l 172.031 32.768 l
h
131.07 32.768 m f
393.215 311.295 m 335.871 311.295 l 335.871 278.53 l 376.832 278.53 l 376.832
237.569 l 409.602 237.569 l 409.602 294.913 l 409.602 303.955 402.262 311.295
393.215 311.295 c h
393.215 311.295 m f
376.832 199.721 32.77 -88.145 re f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,113 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 -1 410 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 -1 410 410
%%EndPageSetup
q 0 -1 410 411 rectclip q
0 g
349.867 349.811 m 349.805 349.873 l 269.859 429.627 139.867 429.487 60.078
349.514 c 21.438 310.776 0.18 259.311 0.258 204.58 c 0.324 149.85 21.691
98.428 60.441 59.787 c 99.398 20.944 151.527 -0.002 205.043 -0.002 c 224.613
-0.002 244.375 2.803 263.73 8.526 c 287.129 16.057 300.086 41.209 292.566
64.643 c 290.52 70.979 287.051 76.869 282.262 81.897 c 238.766 125.85 l
226.934 138.565 227.625 158.549 240.344 170.397 c 252.398 181.619 271.309
181.604 282.922 170.776 c 327.254 126.463 l 345.188 109.6 373.473 110.498
390.285 128.432 c 394.887 133.334 398.387 139.307 400.402 145.799 c 422.418
218.037 403.035 296.217 349.867 349.811 c h
370.258 155.08 m 369.66 153.221 368.652 151.471 367.309 150.037 c 362.379
144.791 354.105 144.506 349.172 149.108 c 304.812 193.455 l 280.699 215.908
242.941 215.893 218.863 193.455 c 193.43 169.768 192.027 129.803 216.043
104.037 c 259.613 59.979 l 260.938 58.588 261.965 56.858 262.562 55.014
c 264.754 48.143 260.957 40.768 254.43 38.655 c 193.461 20.612 127.699
37.205 82.691 82.1 c 49.914 114.803 31.84 158.311 31.777 204.612 c 31.715
250.924 49.695 294.467 82.395 327.26 c 116.195 361.143 160.668 378.096
205.121 378.096 c 249.422 378.096 293.734 361.268 327.504 327.608 c 372.48
282.237 388.852 216.115 370.258 155.08 c h
370.258 155.08 m f
155.074 279.006 m 155.074 264.822 143.574 253.322 129.387 253.322 c 115.199
253.322 103.699 264.822 103.699 279.006 c 103.699 293.194 115.199 304.694
129.387 304.694 c 143.574 304.694 155.074 293.194 155.074 279.006 c h
155.074 279.006 m f
126.707 194.858 m 126.707 180.67 115.207 169.17 101.02 169.17 c 86.836
169.17 75.336 180.67 75.336 194.858 c 75.336 209.041 86.836 220.541 101.02
220.541 c 115.207 220.541 126.707 209.041 126.707 194.858 c h
126.707 194.858 m f
162.164 118.112 m 162.164 103.924 150.664 92.424 136.477 92.424 c 122.293
92.424 110.793 103.924 110.793 118.112 c 110.793 132.299 122.293 143.799
136.477 143.799 c 150.664 143.799 162.164 132.299 162.164 118.112 c h
162.164 118.112 m f
240.168 308.319 m 240.168 294.131 228.668 282.631 214.484 282.631 c 200.297
282.631 188.797 294.131 188.797 308.319 c 188.797 322.506 200.297 334.006
214.484 334.006 c 228.668 334.006 240.168 322.506 240.168 308.319 c h
240.168 308.319 m f
316.914 272.862 m 316.914 258.674 305.414 247.174 291.227 247.174 c 277.043
247.174 265.543 258.674 265.543 272.862 c 265.543 287.049 277.043 298.549
291.227 298.549 c 305.414 298.549 316.914 287.049 316.914 272.862 c h
316.914 272.862 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,108 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 -1 410 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 -1 410 410
%%EndPageSetup
q 0 -1 410 411 rectclip q
0 g
318.234 375.338 m 275.188 403.952 223.504 415.178 172.539 407.006 c 171.652
406.991 170.766 406.905 169.875 406.749 c 115.992 397.401 68.969 367.628
37.457 322.924 c 5.977 278.202 -6.227 223.909 3.109 170.01 c 4.66 161.12
6.828 152.163 9.559 143.46 c 20.836 106.827 18.055 67.569 1.742 32.913
c -1.105 26.909 -0.168 19.776 4.117 14.674 c 8.398 9.573 15.191 7.456 21.672
9.198 c 98.164 30.081 l 130.547 10.253 167.113 -0.001 204.445 -0.001 c
218.008 -0.001 231.676 1.346 245.273 4.096 c 298.902 14.897 345.105 45.917
375.375 91.456 c 437.875 185.467 412.246 312.803 318.234 375.338 c h
346.969 110.342 m 321.73 72.378 283.223 46.53 238.555 37.538 c 193.918
28.546 148.395 37.487 110.414 62.737 c 107.582 64.616 104.289 65.588 100.961
65.588 c 99.461 65.588 97.941 65.381 96.457 64.971 c 44.383 50.76 l 53.168
84.303 52.52 119.831 42.148 153.596 c 39.844 160.948 38.02 168.44 36.738
175.846 c 28.957 220.753 39.129 266.003 65.367 303.268 c 91.168 339.901
129.473 364.487 173.441 372.694 c 174.262 372.729 175.062 372.815 175.883
372.952 c 219.035 380.405 262.883 371.143 299.363 346.897 c 377.715 294.803
399.059 188.694 346.969 110.342 c h
346.969 110.342 m f
204.871 308.881 m 195.438 308.881 187.809 301.253 187.809 291.819 c 187.809
189.444 l 187.809 180.01 195.438 172.381 204.871 172.381 c 214.305 172.381
221.934 180.026 221.934 189.444 c 221.934 291.819 l 221.934 301.253 214.309
308.881 204.871 308.881 c h
204.871 308.881 m f
220.551 125.987 m 219.699 128.206 218.504 130.085 216.969 131.62 c 216.117
132.303 215.262 133.155 214.238 133.667 c 213.387 134.35 212.363 134.842
211.34 135.202 c 210.312 135.733 209.293 136.053 208.098 136.225 c 202.652
137.421 196.664 135.526 192.758 131.62 c 191.223 130.085 190.027 128.206
189.176 125.987 c 188.32 123.94 187.809 121.721 187.809 119.506 c 187.809
117.288 188.32 115.069 189.176 113.022 c 190.027 110.975 191.223 109.096
192.758 107.389 c 194.465 105.854 196.34 104.663 198.387 103.807 c 200.434
102.956 202.652 102.444 204.871 102.444 c 207.09 102.444 209.293 102.956
211.34 103.807 c 213.387 104.659 215.246 105.854 216.969 107.389 c 218.504
109.096 219.699 110.975 220.551 113.022 c 221.406 115.069 221.918 117.288
221.918 119.506 c 221.918 121.721 221.406 123.94 220.551 125.987 c h
220.551 125.987 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,113 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 -1 410 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 -1 410 410
%%EndPageSetup
q 0 -1 410 411 rectclip q
0 g
405.914 215.455 m 362.785 270.319 l 354.578 339.522 l 353.633 347.405 347.418
353.631 339.52 354.58 c 270.301 362.787 l 215.434 405.916 l 209.188 410.823
200.41 410.823 194.16 405.916 c 139.297 362.787 l 70.094 354.58 l 62.211
353.635 55.98 347.405 55.035 339.522 c 46.809 270.319 l 3.68 215.436 l
-1.223 209.19 -1.223 200.393 3.68 194.162 c 46.809 139.28 l 55.035 70.08
l 55.98 62.198 62.195 55.967 70.094 55.022 c 139.297 46.811 l 194.164 3.682
l 197.277 1.221 201.031 -0.002 204.797 -0.002 c 208.566 -0.002 212.32 1.221
215.434 3.698 c 270.301 46.826 l 339.52 55.037 l 347.418 55.967 353.633
62.198 354.578 70.096 c 362.789 139.299 l 405.914 194.182 l 410.82 200.412
410.82 209.205 405.914 215.455 c h
332.754 156.748 m 330.809 154.256 329.555 151.295 329.191 148.143 c 322.016
87.616 l 261.453 80.44 l 258.305 80.061 255.344 78.838 252.848 76.877 c
204.816 39.119 l 156.766 76.877 l 154.27 78.838 151.309 80.061 148.16 80.44
c 87.613 87.616 l 80.402 148.143 l 80.043 151.295 78.785 154.256 76.84
156.748 c 39.082 204.799 l 76.859 252.85 l 78.805 255.346 80.059 258.323
80.422 261.455 c 87.613 321.998 l 148.141 329.178 l 151.293 329.557 154.254
330.776 156.746 332.741 c 204.797 370.498 l 252.832 332.741 l 255.328 330.776
258.285 329.557 261.438 329.178 c 322 321.998 l 329.191 261.455 l 329.555
258.307 330.809 255.346 332.754 252.85 c 370.512 204.799 l h
332.754 156.748 m f
303.309 239.307 m 301.277 245.537 295.906 250.096 289.418 251.045 c 242.23
257.998 l 221.098 300.541 l 218.188 306.393 212.215 310.092 205.676 310.092
c 205.66 310.092 l 199.102 310.073 193.129 306.358 190.238 300.491 c 169.258
257.979 l 122.258 251.045 l 115.789 250.08 110.418 245.537 108.402 239.323
c 106.391 233.112 108.078 226.28 112.758 221.701 c 146.715 188.623 l 138.625
141.623 l 137.508 135.17 140.156 128.627 145.473 124.772 c 148.469 122.604
152.016 121.502 155.578 121.502 c 158.332 121.502 161.102 122.159 163.684
123.467 c 205.727 145.717 l 247.926 123.467 l 253.707 120.401 260.73 120.901
266.082 124.756 c 271.367 128.612 274.016 135.151 272.914 141.604 c 264.809
188.588 l 298.902 221.666 l 303.617 226.229 305.305 233.076 303.309 239.307
c h
234.277 207.002 m 230.199 203.045 228.324 197.33 229.305 191.721 c 233.004
170.241 l 213.695 180.432 l 211.164 181.756 208.41 182.428 205.66 182.428
c 202.887 182.428 200.133 181.756 197.57 180.397 c 178.449 170.276 l 182.133
191.701 l 183.098 197.28 181.238 202.991 177.191 206.951 c 161.652 222.096
l 183.199 225.28 l 188.773 226.104 193.609 229.635 196.105 234.694 c 205.691
254.104 l 215.363 234.659 l 217.879 229.616 222.695 226.123 228.273 225.295
c 249.855 222.112 l h
234.277 207.002 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,93 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 -1 410 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 -1 410 410
%%EndPageSetup
q 0 -1 410 411 rectclip q
0 g
236.527 204.643 m 236.527 187.12 222.324 172.913 204.801 172.913 c 187.277
172.913 173.074 187.12 173.074 204.643 c 173.074 222.163 187.277 236.37
204.801 236.37 c 222.324 236.37 236.527 222.163 236.527 204.643 c h
236.527 204.643 m f
331.711 204.643 m 331.711 187.12 317.504 172.913 299.98 172.913 c 282.461
172.913 268.254 187.12 268.254 204.643 c 268.254 222.163 282.461 236.37
299.98 236.37 c 317.504 236.37 331.711 222.163 331.711 204.643 c h
331.711 204.643 m f
141.344 204.643 m 141.344 187.12 127.141 172.913 109.617 172.913 c 92.094
172.913 77.891 187.12 77.891 204.643 c 77.891 222.163 92.094 236.37 109.617
236.37 c 127.141 236.37 141.344 222.163 141.344 204.643 c h
141.344 204.643 m f
204.801 409.6 m 91.867 409.6 0 317.733 0 204.799 c 0 91.866 91.867 -0.002
204.801 -0.002 c 317.734 -0.002 409.602 91.881 409.602 204.799 c 409.602
317.717 317.734 409.6 204.801 409.6 c h
204.801 31.729 m 109.379 31.729 31.727 109.366 31.727 204.799 c 31.727
300.237 109.379 377.873 204.801 377.873 c 300.234 377.873 377.871 300.237
377.871 204.799 c 377.871 109.366 300.219 31.729 204.801 31.729 c h
204.801 31.729 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,86 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 -1 410 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 -1 410 410
%%EndPageSetup
q 0 -1 410 411 rectclip q
0 g
204.801 409.6 m 91.883 409.6 0 317.733 0 204.799 c 0 91.866 91.883 -0.002
204.801 -0.002 c 317.734 -0.002 409.602 91.866 409.602 204.799 c 409.602
317.733 317.719 409.6 204.801 409.6 c h
204.801 31.729 m 109.363 31.729 31.727 109.366 31.727 204.799 c 31.727
300.237 109.363 377.873 204.801 377.873 c 300.234 377.873 377.871 300.237
377.871 204.799 c 377.871 109.366 300.234 31.729 204.801 31.729 c h
204.801 31.729 m f
284.117 222.092 m 125.48 222.092 l 116.727 222.092 109.617 214.983 109.617
206.229 c 109.617 197.471 116.727 190.362 125.48 190.362 c 284.117 190.362
l 292.875 190.362 299.98 197.471 299.98 206.229 c 299.98 214.983 292.875
222.092 284.117 222.092 c h
284.117 222.092 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,88 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 47 -1 363 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 47 -1 363 410
%%EndPageSetup
q 47 -1 316 411 rectclip q
0 g
306.871 175.071 m 102.734 175.071 l 72.133 175.071 47.238 150.177 47.238
119.575 c 47.238 0.001 l 362.367 0.001 l 362.367 119.575 l 362.367 150.177
337.473 175.071 306.871 175.071 c h
327.355 35.013 m 82.254 35.013 l 82.254 119.575 l 82.254 130.868 91.426
140.06 102.734 140.06 c 306.871 140.06 l 318.18 140.06 327.355 130.868
327.355 119.575 c h
327.355 35.013 m f
327.32 373.728 m 327.16 378.122 326.234 382.411 324.535 386.509 c 320.754
395.716 313.594 402.895 304.402 406.728 c 295.176 410.563 285.039 410.563
275.793 406.747 c 105.363 335.7 l 91.918 330.169 82.848 317.231 82.254
302.001 c 82.254 210.087 l 327.355 210.087 l h
292.34 245.103 m 117.266 245.103 l 117.25 301.302 l 117.285 302.192 117.844
302.981 118.754 303.349 c 290.957 374.392 l 292.34 373.079 l h
292.34 245.103 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,86 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 8 -1 402 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 8 -1 402 410
%%EndPageSetup
q 8 -1 394 411 rectclip q
0 g
393.762 406.545 m 388.352 410.299 381.289 410.608 375.535 407.366 c 17.121
202.557 l 11.281 199.229 7.938 192.76 8.602 186.053 c 9.27 179.346 13.809
173.662 20.191 171.545 c 137.41 132.479 l 145.09 15.94 l 145.566 8.721
150.535 2.596 157.48 0.651 c 159.02 0.225 160.59 0.002 162.125 0.002 c 167.57
0.002 172.793 2.612 176.051 7.201 c 240.465 98.139 l 327.406 69.159 l 329.18
68.561 330.988 68.272 332.797 68.272 c 335.871 68.272 338.91 69.108 341.605
70.729 c 345.891 73.287 348.824 77.608 349.645 82.537 c 400.844 389.752
l 401.922 396.252 399.172 402.791 393.762 406.545 c h
147.633 165.041 m 67.195 191.854 l 294.156 321.549 l h
176 66.17 m 172.398 120.819 l 206.637 109.401 l h
319.266 107.83 m 183.289 153.162 l 357.902 339.674 l h
319.266 107.83 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,91 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 0 410 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 0 410 410
%%EndPageSetup
q 0 0 410 410 rectclip q
0 g
204.121 34.702 m 51.031 34.702 l 41.641 34.702 34.02 42.323 34.02 51.709
c 34.02 357.889 l 34.02 367.28 41.641 374.901 51.031 374.901 c 204.121
374.901 l 213.527 374.901 221.129 382.502 221.129 391.909 c 221.129 401.315
213.527 408.92 204.121 408.92 c 51.031 408.92 l 22.895 408.92 0 386.026
0 357.889 c 0 51.709 l 0 23.577 22.895 0.682 51.031 0.682 c 204.121 0.682
l 213.527 0.682 221.129 8.284 221.129 17.69 c 221.129 27.096 213.527 34.702
204.121 34.702 c h
204.121 34.702 m f
404.531 216.913 m 301.109 318.971 l 294.441 325.573 283.66 325.487 277.059
318.799 c 270.457 312.116 270.527 301.35 277.23 294.748 c 351.137 221.811
l 153.09 221.811 l 143.684 221.811 136.078 214.205 136.078 204.799 c 136.078
195.393 143.684 187.791 153.09 187.791 c 351.137 187.791 l 277.23 114.854
l 270.527 108.252 270.477 97.487 277.059 90.799 c 280.391 87.432 284.781
85.733 289.168 85.733 c 293.492 85.733 297.809 87.366 301.109 90.631 c
404.531 192.69 l 407.762 195.889 409.602 200.245 409.602 204.803 c 409.602
209.358 407.781 213.698 404.531 216.913 c h
404.531 216.913 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,97 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 34 -1 376 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 34 -1 376 410
%%EndPageSetup
q 34 -1 342 411 rectclip q
0 g
324.266 273.065 m 324.266 290.131 l 324.266 355.995 270.676 409.6 204.801
409.6 c 138.922 409.6 85.332 355.995 85.332 290.135 c 85.332 273.069 l
57.105 273.069 34.133 250.096 34.133 221.866 c 34.133 51.202 l 34.133 22.971
57.105 -0.002 85.332 -0.002 c 324.266 -0.002 l 352.496 -0.002 375.469 22.971
375.469 51.202 c 375.469 221.866 l 375.465 250.096 352.496 273.065 324.266
273.065 c h
119.465 290.135 m 119.465 337.186 157.746 375.467 204.801 375.467 c 251.852
375.467 290.133 337.186 290.133 290.135 c 290.133 273.069 l 119.465 273.069
l h
341.332 51.202 m 341.332 41.78 333.672 34.135 324.266 34.135 c 85.332 34.135
l 75.93 34.135 68.266 41.78 68.266 51.202 c 68.266 221.866 l 68.266 231.288
75.93 238.932 85.332 238.932 c 324.266 238.932 l 333.672 238.932 341.332
231.288 341.332 221.866 c h
341.332 51.202 m f
204.801 213.334 m 176.57 213.334 153.602 190.362 153.602 162.135 c 153.602
139.913 167.918 121.139 187.734 114.073 c 187.734 85.334 l 187.734 75.897
195.379 68.268 204.801 68.268 c 214.223 68.268 221.867 75.897 221.867 85.334
c 221.867 114.073 l 241.68 121.139 256 139.913 256 162.135 c 256 190.362
233.027 213.334 204.801 213.334 c h
204.801 145.065 m 195.395 145.065 187.734 152.713 187.734 162.131 c 187.734
171.553 195.395 179.202 204.801 179.202 c 214.203 179.202 221.867 171.553
221.867 162.135 c 221.867 152.713 214.203 145.065 204.801 145.065 c h
204.801 145.065 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,131 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 -1 410 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 -1 410 410
%%EndPageSetup
q 0 -1 410 411 rectclip q
0 g
358.398 409.6 m 51.199 409.6 l 22.973 409.6 0 386.627 0 358.401 c 0 51.202
l 0 22.971 22.973 -0.002 51.199 -0.002 c 358.398 -0.002 l 386.629 -0.002
409.602 22.971 409.602 51.202 c 409.602 358.401 l 409.602 386.627 386.629
409.6 358.398 409.6 c h
375.465 51.202 m 375.465 41.78 367.805 34.135 358.398 34.135 c 51.199 34.135
l 41.797 34.135 34.133 41.78 34.133 51.202 c 34.133 358.401 l 34.133 367.803
41.797 375.467 51.199 375.467 c 358.398 375.467 l 367.805 375.467 375.465
367.803 375.465 358.401 c h
375.465 51.202 m f
118.102 313.686 m 117.246 315.905 116.055 317.612 114.52 319.319 c 113.664
319.998 112.812 320.682 111.957 321.366 c 110.934 322.049 109.91 322.561
108.887 322.901 c 107.863 323.413 106.836 323.756 105.812 323.924 c 102.398
324.608 98.988 324.268 95.914 322.901 c 93.867 322.049 91.988 320.854 90.281
319.319 c 88.746 317.612 87.555 315.905 86.699 313.686 c 85.844 311.639
85.332 309.42 85.332 307.202 c 85.332 304.979 85.844 302.764 86.699 300.713
c 87.555 298.495 88.746 296.788 90.281 295.08 c 93.527 292.01 97.965 290.131
102.402 290.131 c 103.426 290.131 104.621 290.303 105.812 290.475 c 106.84
290.643 107.863 290.987 108.887 291.498 c 109.91 291.838 110.934 292.354
111.957 293.034 c 112.812 293.717 113.664 294.401 114.52 295.08 c 117.59
298.327 119.469 302.764 119.469 307.202 c 119.465 309.42 118.953 311.639
118.102 313.686 c h
118.102 313.686 m f
307.199 324.268 m 170.668 324.268 l 161.246 324.268 153.602 316.62 153.602
307.202 c 153.602 297.78 161.246 290.135 170.668 290.135 c 307.199 290.135
l 316.621 290.135 324.266 297.78 324.266 307.202 c 324.266 316.62 316.621
324.268 307.199 324.268 c h
307.199 324.268 m f
119.125 208.213 m 118.957 209.237 118.613 210.26 118.102 211.288 c 117.762
212.311 117.246 213.334 116.566 214.358 c 115.883 215.209 115.199 216.065
114.52 216.916 c 112.812 218.455 110.934 219.647 108.887 220.502 c 104.789
222.209 100.012 222.209 95.914 220.502 c 93.867 219.647 91.988 218.455
90.281 216.916 c 89.602 216.065 88.918 215.209 88.234 214.358 c 87.555 213.334
87.039 212.311 86.699 211.288 c 86.188 210.26 85.844 209.237 85.676 208.213
c 85.504 207.018 85.332 205.823 85.332 204.799 c 85.332 200.362 87.211
195.924 90.281 192.682 c 93.527 189.612 97.965 187.733 102.402 187.733 c
106.84 187.733 111.273 189.612 114.52 192.682 c 117.59 195.924 119.469
200.362 119.469 204.799 c 119.465 205.823 119.297 207.018 119.125 208.213
c h
119.125 208.213 m f
307.199 221.866 m 170.668 221.866 l 161.246 221.866 153.602 214.221 153.602
204.799 c 153.602 195.377 161.246 187.733 170.668 187.733 c 307.199 187.733
l 316.621 187.733 324.266 195.377 324.266 204.799 c 324.266 214.221 316.621
221.866 307.199 221.866 c h
307.199 221.866 m f
118.102 108.885 m 117.246 111.104 116.055 112.811 114.52 114.518 c 109.738
119.143 102.23 120.663 95.914 118.1 c 93.867 117.248 91.988 116.053 90.281
114.518 c 88.746 112.811 87.555 110.932 86.699 108.885 c 85.844 106.838
85.332 104.62 85.332 102.401 c 85.332 97.791 87.039 93.526 90.281 90.284
c 93.527 87.057 97.793 85.334 102.402 85.334 c 107.008 85.334 111.273 87.057
114.52 90.284 c 117.762 93.526 119.469 97.791 119.469 102.401 c 119.465
104.62 119.125 106.838 118.102 108.885 c h
118.102 108.885 m f
307.199 119.467 m 170.668 119.467 l 161.246 119.467 153.602 111.838 153.602
102.401 c 153.602 92.963 161.246 85.334 170.668 85.334 c 307.199 85.334
l 316.621 85.334 324.266 92.963 324.266 102.401 c 324.266 111.838 316.621
119.467 307.199 119.467 c h
307.199 119.467 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,89 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 16 410 394
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 16 410 394
%%EndPageSetup
q 0 16 410 378 rectclip q
0 g
401.066 152.788 m 307.832 204.811 l 401.066 256.819 l 406.324 259.745 409.598
265.319 409.598 271.342 c 409.598 277.366 406.34 282.936 401.066 285.866
c 212.902 390.842 l 207.863 393.655 201.723 393.655 196.68 390.842 c 8.52
285.866 l 3.262 282.955 0 277.381 0 271.358 c 0 265.334 3.262 259.76 8.535
256.834 c 101.719 204.842 l 8.535 152.788 l 3.262 149.842 0 144.288 0 138.264
c 0 132.241 3.262 126.686 8.535 123.741 c 196.699 18.76 l 199.211 17.362
202.004 16.647 204.801 16.647 c 207.594 16.647 210.391 17.346 212.902 18.76
c 401.066 123.737 l 406.324 126.666 409.602 132.225 409.602 138.264 c 409.602
144.288 406.34 149.858 401.066 152.788 c h
50.777 271.358 m 204.801 357.288 l 358.824 271.358 l 204.801 185.428 l
h
204.801 52.334 m 50.758 138.28 l 135.84 185.811 l 196.68 151.873 l 199.191
150.475 201.988 149.76 204.781 149.76 c 207.578 149.76 210.371 150.459
212.887 151.873 c 273.676 185.795 l 358.793 138.28 l h
204.801 52.334 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,132 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 59 410 351
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 59 410 351
%%EndPageSetup
q 0 59 410 292 rectclip q
0 g
358.398 349.866 m 51.199 349.866 l 22.922 349.866 0 326.944 0 298.666 c
0 110.932 l 0 82.655 22.922 59.733 51.199 59.733 c 358.398 59.733 l 386.68
59.733 409.602 82.655 409.602 110.932 c 409.602 298.666 l 409.602 326.948
386.68 349.866 358.398 349.866 c h
375.465 110.932 m 375.465 101.514 367.82 93.866 358.398 93.866 c 51.199
93.866 l 41.777 93.866 34.133 101.514 34.133 110.932 c 34.133 298.666 l
34.133 308.088 41.777 315.733 51.199 315.733 c 358.398 315.733 l 367.82
315.733 375.465 308.088 375.465 298.666 c h
375.465 110.932 m f
113.836 260.268 m 107.145 266.955 96.289 266.955 89.602 260.268 c 86.477
256.768 84.941 252.143 85.332 247.467 c 85.367 245.229 85.828 243.03 86.699
240.979 c 88.254 236.698 91.633 233.319 95.914 231.764 c 97.965 230.893
100.164 230.432 102.402 230.401 c 106.805 230.725 110.898 232.756 113.836
236.03 c 120.523 242.721 120.523 253.577 113.836 260.268 c h
113.836 260.268 m f
113.836 174.932 m 108.918 179.78 101.582 181.198 95.23 178.518 c 93.117
177.733 91.203 176.522 89.602 174.932 c 89.328 174.678 89.07 174.405 88.816
174.116 c 82.57 167.049 83.219 156.264 90.281 150.014 c 91.887 148.444
93.801 147.217 95.914 146.432 c 97.965 145.561 100.164 145.1 102.402 145.065
c 106.805 145.389 110.898 147.42 113.836 150.698 c 113.938 150.799 l 120.574
157.491 120.523 168.295 113.836 174.932 c h
113.836 174.932 m f
182 260.163 m 175.359 266.854 164.559 266.905 157.867 260.268 c 154.742
256.768 153.207 252.143 153.602 247.467 c 153.637 245.229 154.098 243.03
154.965 240.979 c 155.785 238.881 156.996 236.971 158.551 235.35 c 160.207
233.846 162.117 232.635 164.184 231.764 c 166.23 230.893 168.434 230.432
170.668 230.401 c 169.984 231.08 l 174.441 231.116 178.723 232.889 181.898
236.03 c 188.586 242.67 188.637 253.475 182 260.163 c h
182 260.163 m f
250.367 260.268 m 245.453 265.112 238.113 266.53 231.766 263.85 c 229.699
262.979 227.789 261.768 226.133 260.268 c 223.012 256.768 221.473 252.143
221.867 247.467 c 221.902 245.229 222.363 243.03 223.234 240.979 c 224.051
238.881 225.266 236.971 226.816 235.35 c 228.473 233.846 230.383 232.635
232.449 231.764 c 234.496 230.893 236.699 230.432 238.934 230.401 c 243.305
230.807 247.383 232.823 250.367 236.03 c 251.922 237.655 253.133 239.565
253.953 241.663 c 254.824 243.709 255.285 245.913 255.32 248.147 c 255.352
252.69 253.559 257.041 250.367 260.268 c h
250.367 260.268 m f
319.316 260.268 m 312.441 266.955 301.434 266.803 294.742 259.924 c 288.051
253.045 288.203 242.038 295.082 235.35 c 298.309 232.159 302.66 230.366
307.199 230.401 c 309.469 230.639 311.691 231.338 313.688 232.448 c 317.969
233.998 321.348 237.377 322.902 241.663 c 323.773 243.709 324.234 245.913
324.27 248.147 c 324.301 252.69 322.508 257.041 319.316 260.268 c h
319.316 260.268 m f
318.633 174.932 m 313.719 179.78 306.379 181.198 300.031 178.518 c 297.934
177.698 296.023 176.487 294.398 174.932 c 291.48 171.334 290.082 166.741
290.473 162.135 c 290.391 160.991 290.391 159.866 290.473 158.721 c 290.664
157.643 291.004 156.62 291.5 155.647 c 291.875 154.557 292.387 153.534
293.035 152.577 c 295.082 150.014 l 296.703 148.463 298.613 147.252 300.715
146.432 c 302.762 145.561 304.965 145.1 307.199 145.065 c 306.52 145.748
l 311.109 145.733 315.512 147.541 318.738 150.799 c 325.375 157.491 325.324
168.295 318.633 174.932 c h
318.633 174.932 m f
238.934 179.202 m 170.668 179.202 l 161.246 179.202 153.602 171.553 153.602
162.135 c 153.602 152.713 161.246 145.069 170.668 145.069 c 238.934 145.069
l 248.355 145.069 256 152.713 256 162.135 c 256 171.553 248.355 179.202
238.934 179.202 c h
238.934 179.202 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,97 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 -1 410 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 -1 410 410
%%EndPageSetup
q 0 -1 410 411 rectclip q
0 g
170.668 409.6 m 114.191 409.6 68.266 363.674 68.266 307.202 c 68.266 273.065
l 68.266 251.936 74.699 232.295 85.707 215.963 c 34.578 186.471 0 131.413
0 68.268 c 0 51.202 l 0 22.971 22.973 -0.002 51.199 -0.002 c 204.801 -0.002
l 214.238 -0.002 221.867 7.647 221.867 17.065 c 221.867 26.487 214.238
34.131 204.801 34.131 c 51.199 34.131 l 41.777 34.131 34.133 41.795 34.133
51.198 c 34.133 68.264 l 34.133 121.838 65.16 168.276 110.184 190.616 c
127.164 178.139 148.035 170.666 170.668 170.666 c 227.141 170.666 273.066
216.592 273.066 273.065 c 273.066 307.202 l 273.066 363.674 227.141 409.6
170.668 409.6 c h
238.934 273.065 m 238.934 235.416 208.316 204.799 170.668 204.799 c 133.02
204.799 102.398 235.416 102.398 273.065 c 102.398 307.202 l 102.398 344.85
133.02 375.467 170.668 375.467 c 208.316 375.467 238.934 344.85 238.934
307.202 c h
238.934 273.065 m f
392.535 119.467 m 324.266 119.467 l 324.266 187.733 l 324.266 197.155 316.637
204.799 307.199 204.799 c 297.762 204.799 290.133 197.155 290.133 187.733
c 290.133 119.467 l 221.867 119.467 l 212.43 119.467 204.801 111.823 204.801
102.401 c 204.801 92.979 212.43 85.334 221.867 85.334 c 290.133 85.334
l 290.133 17.069 l 290.133 7.647 297.762 0.002 307.199 0.002 c 316.637 0.002
324.266 7.647 324.266 17.069 c 324.266 85.334 l 392.531 85.334 l 401.969
85.334 409.598 92.979 409.598 102.401 c 409.598 111.823 401.973 119.467
392.535 119.467 c h
392.535 119.467 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,108 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 72 -1 337 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 72 -1 337 410
%%EndPageSetup
q 72 -1 265 411 rectclip q
0 g
252.609 260.431 m 204.512 327.787 l 155.543 260.486 l 132.871 228.689 120.898
191.251 120.898 152.224 c 120.898 138.4 l 286.758 138.4 l 286.812 152.169
l 286.949 191.142 275.113 228.58 252.609 260.431 c h
149.145 166.048 m 151.574 194.267 161.434 221.115 177.98 244.326 c 204.305
280.505 l 230.059 244.435 l 246.539 221.087 256.285 194.24 258.605 166.048
c h
149.145 166.048 m f
277.699 110.599 m 131.961 110.599 l 110.918 110.599 93.805 93.47 93.805
72.443 c 93.805 0.001 l 315 0.001 l 315 72.666 l 314.875 93.47 298.492
110.126 277.699 110.599 c h
287.348 27.65 m 121.453 27.65 l 121.453 72.443 l 121.453 78.236 126.168
82.947 131.961 82.947 c 277.203 82.947 l 282.871 82.755 287.324 78.193
287.348 72.58 c h
287.348 27.65 m f
226.848 387.06 m 226.848 374.615 216.762 364.525 204.316 364.525 c 191.871
364.525 181.781 374.615 181.781 387.06 c 181.781 399.505 191.871 409.595
204.316 409.595 c 216.762 409.595 226.848 399.505 226.848 387.06 c h
226.848 387.06 m f
156.996 352.47 m 156.996 340.025 146.906 329.935 134.461 329.935 c 122.016
329.935 111.926 340.025 111.926 352.47 c 111.926 364.916 122.016 375.005
134.461 375.005 c 146.906 375.005 156.996 364.916 156.996 352.47 c h
156.996 352.47 m f
117.434 282.873 m 117.434 270.505 107.406 260.478 95.039 260.478 c 82.668
260.478 72.641 270.505 72.641 282.873 c 72.641 295.244 82.668 305.267 95.039
305.267 c 107.406 305.267 117.434 295.244 117.434 282.873 c h
117.434 282.873 m f
297.695 352.501 m 297.695 340.056 287.609 329.966 275.164 329.966 c 262.719
329.966 252.629 340.056 252.629 352.501 c 252.629 364.947 262.719 375.037
275.164 375.037 c 287.609 375.037 297.695 364.947 297.695 352.501 c h
297.695 352.501 m f
336.953 282.845 m 336.953 270.474 326.926 260.447 314.559 260.447 c 302.188
260.447 292.16 270.474 292.16 282.845 c 292.16 295.212 302.188 305.24 314.559
305.24 c 326.926 305.24 336.953 295.212 336.953 282.845 c h
336.953 282.845 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,96 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 -1 410 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 -1 410 410
%%EndPageSetup
q 0 -1 410 411 rectclip q
0 g
204.801 409.6 m 91.871 409.6 0 317.729 0 204.799 c 0 91.87 91.871 -0.002
204.801 -0.002 c 317.73 -0.002 409.602 91.87 409.602 204.799 c 409.602
317.729 317.73 409.6 204.801 409.6 c h
204.801 34.135 m 110.695 34.135 34.133 110.694 34.133 204.799 c 34.133
298.905 110.695 375.467 204.801 375.467 c 298.906 375.467 375.465 298.905
375.465 204.799 c 375.465 110.694 298.906 34.135 204.801 34.135 c h
204.801 34.135 m f
200.535 133.631 m 189.391 133.444 180.41 124.467 180.223 113.323 c 180.207
112.979 180.207 112.623 180.223 112.28 c 180.617 101.069 190.004 92.295
201.215 92.67 c 200.535 92.67 l 211.797 92.862 220.844 102.041 220.844
113.323 c 220.57 124.432 211.645 133.358 200.535 133.631 c h
200.535 133.631 m f
204.457 316.245 m 180.395 316.963 157.148 307.475 140.457 290.135 c 138.531
287.709 137.504 284.69 137.559 281.6 c 137.641 274.038 143.648 267.877
151.211 267.604 c 154.727 267.588 158.121 268.87 160.77 271.19 c 171.348
282.163 185.977 288.327 201.215 288.256 c 224.258 288.256 235.348 275.799
235.348 261.12 c 235.348 229.717 179.543 225.791 179.543 185.002 c 179.543
175.104 185.688 156.842 198.484 156.842 c 198.828 156.842 l 205.703 156.842
211.285 162.424 211.285 169.299 c 211.285 173.909 208.043 177.834 208.043
182.444 c 208.043 213.163 268.117 217.428 269.484 265.045 c 269.48 294.057
244.906 316.245 204.457 316.245 c h
204.457 316.245 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,90 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 18 410 391
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 18 410 391
%%EndPageSetup
q 0 18 410 373 rectclip q
0 g
374.805 364.645 m 354.168 382.747 327.676 391.739 300.328 389.907 c 272.926
388.106 247.891 375.743 229.684 354.989 c 204.855 326.114 l 180.023 355.106
l 143.477 396.79 79.172 401.723 36.719 366.087 c 15.691 348.43 2.777 323.649
0.398 296.317 c -1.984 268.985 6.406 242.356 24.148 221.204 c 191.121 25.465
l 194.355 21.665 199.102 19.454 204.102 19.454 c 204.137 19.454 l 209.117
19.454 213.863 21.63 217.133 25.43 c 385.781 221.34 l 421.418 263.798 416.488
328.087 374.805 364.645 c h
359.664 243.505 m 204.188 62.899 l 50.281 243.333 l 38.52 257.356 32.934
275.118 34.527 293.337 c 36.121 311.575 44.719 328.087 58.727 339.848 c
71.449 350.52 87.102 355.743 102.684 355.743 c 121.797 355.743 140.789
347.899 154.129 332.673 c 191.789 288.661 l 195.039 284.86 199.785 282.669
204.785 282.669 c 204.801 282.669 l 209.785 282.669 214.527 284.844 217.781
288.626 c 255.527 332.52 l 267.582 346.27 284.297 354.508 302.551 355.708
c 320.672 356.923 338.43 350.946 352.199 338.872 c 379.992 314.505 383.281
271.657 359.664 243.505 c h
359.664 243.505 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,92 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 7 410 402
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 7 410 402
%%EndPageSetup
q 0 7 410 395 rectclip q
0 g
409.09 183.33 m 364.375 362.358 l 364.375 362.393 l 358.621 385.178 338.211
401.065 314.727 401.065 c 94.891 401.065 l 71.406 401.065 50.996 385.178
45.242 362.358 c 0.527 183.33 l 0.172 181.983 0 180.6 0 179.202 c 0 59.733
l 0 31.506 22.973 8.534 51.199 8.534 c 358.398 8.534 l 386.629 8.534 409.602
31.506 409.602 59.733 c 409.602 179.202 l 409.602 180.6 409.43 181.983
409.09 183.33 c h
78.336 354.065 m 80.246 361.643 87.059 366.932 94.891 366.932 c 314.707
366.932 l 322.527 366.932 329.316 361.643 331.246 354.08 c 355.703 256.17
l 273.066 256.17 l 263.645 256.17 256 248.526 256 239.104 c 256 210.877
233.027 187.905 204.801 187.905 c 176.57 187.905 153.602 210.877 153.602
239.104 c 153.602 248.526 145.953 256.17 136.535 256.17 c 53.879 256.17
l h
375.465 59.733 m 375.465 50.33 367.805 42.666 358.398 42.666 c 51.199 42.666
l 41.797 42.666 34.133 50.33 34.133 59.733 c 34.133 177.1 l 45.363 222.038
l 121.191 222.038 l 129.109 183.143 163.602 153.772 204.801 153.772 c 246
153.772 280.492 183.143 288.41 222.038 c 364.238 222.038 l 375.465 177.1
l h
375.465 59.733 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,88 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 63 -1 347 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 63 -1 347 410
%%EndPageSetup
q 63 -1 284 411 rectclip q
0 g
345.402 210.787 m 342.977 216.693 337.211 220.552 330.832 220.552 c 255.102
220.552 l 285.379 391.087 l 286.578 397.865 283.27 404.607 277.188 407.802
c 271.109 410.97 263.672 409.884 258.789 405.048 c 67.695 216.002 l 63.141
211.513 61.77 204.72 64.195 198.814 c 66.621 192.908 72.387 189.048 78.77
189.048 c 154.496 189.048 l 124.234 18.509 l 123.035 11.736 126.344 4.994
132.426 1.795 c 134.742 0.599 137.246 0.002 139.734 0.002 c 143.785 0.002
147.785 1.56 150.812 4.552 c 341.906 193.599 l 346.457 198.087 347.828
204.88 345.402 210.787 c h
163.918 61.849 m 188.809 202.06 l 189.629 206.642 188.367 211.353 185.375
214.931 c 182.367 218.49 177.957 220.556 173.293 220.556 c 117.098 220.556
l 245.68 347.752 l 220.789 207.541 l 219.969 202.959 221.23 198.248 224.223
194.67 c 227.234 191.111 231.645 189.045 236.309 189.045 c 292.5 189.045
l h
163.918 61.849 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,88 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 72 -1 338 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 72 -1 338 410
%%EndPageSetup
q 72 -1 266 411 rectclip q
0 g
304.203 199.026 m 304.172 245.819 289.754 290.674 262.496 328.772 c 204.816
409.6 l 146.871 328.752 l 119.695 290.659 105.344 245.788 105.363 199.01
c 105.363 182.44 l 304.238 182.44 l h
139.215 215.58 m 142.098 249.401 153.93 281.577 173.848 309.467 c 204.75
352.616 l 235.539 309.498 l 255.504 281.596 267.387 249.416 270.336 215.58
c h
139.215 215.58 m f
291.629 149.131 m 117.973 149.131 l 92.754 149.131 72.238 128.62 72.238
103.397 c 72.238 -0.002 l 337.363 -0.002 l 337.363 103.397 l 337.363 128.62
316.832 149.131 291.629 149.131 c h
304.203 33.139 m 105.363 33.139 l 105.344 103.397 l 105.344 110.342 110.996
115.991 117.938 115.991 c 291.609 115.991 l 298.555 115.991 304.203 110.342
304.203 103.397 c h
304.203 33.139 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,107 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 7 410 402
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 7 410 402
%%EndPageSetup
q 0 7 410 395 rectclip q
0 g
392.535 85.334 m 347.086 85.334 l 339.695 109.928 317.098 127.998 290.133
127.998 c 263.168 127.998 240.59 109.928 233.184 85.334 c 17.066 85.334
l 7.645 85.334 0 77.686 0 68.268 c 0 58.846 7.645 51.202 17.066 51.202
c 233.18 51.202 l 240.57 26.608 263.168 8.534 290.133 8.534 c 317.098 8.534
339.676 26.608 347.086 51.202 c 392.531 51.202 l 401.969 51.202 409.598
58.846 409.598 68.268 c 409.598 77.686 401.973 85.334 392.535 85.334 c
h
290.133 42.666 m 276.02 42.666 264.535 54.151 264.535 68.268 c 264.535
82.381 276.02 93.866 290.133 93.866 c 304.246 93.866 315.734 82.381 315.734
68.268 c 315.734 54.151 304.246 42.666 290.133 42.666 c h
290.133 42.666 m f
392.535 358.401 m 347.086 358.401 l 339.676 382.995 317.098 401.065 290.133
401.065 c 263.168 401.065 240.59 382.995 233.18 358.401 c 17.066 358.401
l 7.645 358.401 0 350.756 0 341.334 c 0 331.913 7.645 324.268 17.066 324.268
c 233.18 324.268 l 240.59 299.674 263.168 281.6 290.133 281.6 c 317.098
281.6 339.68 299.674 347.086 324.268 c 392.535 324.268 l 401.973 324.268
409.602 331.913 409.602 341.334 c 409.602 350.752 401.973 358.401 392.535
358.401 c h
290.133 315.733 m 276.02 315.733 264.535 327.221 264.535 341.334 c 264.535
355.448 276.02 366.932 290.133 366.932 c 304.246 366.932 315.734 355.448
315.734 341.334 c 315.734 327.221 304.246 315.733 290.133 315.733 c h
290.133 315.733 m f
392.535 221.866 m 176.418 221.866 l 169.012 246.459 146.434 264.534 119.469
264.534 c 92.504 264.534 69.922 246.459 62.516 221.866 c 17.066 221.866
l 7.645 221.866 0 214.221 0 204.799 c 0 195.377 7.645 187.733 17.066 187.733
c 62.516 187.733 l 69.922 163.139 92.5 145.069 119.465 145.069 c 146.43
145.069 169.012 163.139 176.418 187.733 c 392.531 187.733 l 401.969 187.733
409.598 195.377 409.598 204.799 c 409.602 214.221 401.973 221.866 392.535
221.866 c h
119.465 179.202 m 105.352 179.202 93.867 190.686 93.867 204.799 c 93.867
218.913 105.352 230.401 119.465 230.401 c 133.582 230.401 145.066 218.913
145.066 204.799 c 145.066 190.686 133.582 179.202 119.465 179.202 c h
119.465 179.202 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,87 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 30 410 379
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 30 410 379
%%EndPageSetup
q 0 30 410 349 rectclip q
0 g
359.133 314.995 m 229.492 314.995 l 224.23 314.995 219.09 317.155 215.539
320.827 c 175.09 363.437 l 165.367 373.132 152.062 378.195 138.59 378.116
c 50.469 378.116 l 22.641 378.116 0 355.476 0 327.648 c 0 81.952 l 0 54.124
22.641 31.484 50.469 31.484 c 359.363 31.484 l 387.176 31.609 409.723 54.355
409.602 82.105 c 409.602 264.527 l 409.602 292.355 386.961 314.995 359.133
314.995 c h
378.734 82.042 m 378.781 71.241 370.031 62.398 359.289 62.351 c 50.469
62.351 l 39.664 62.351 30.867 71.148 30.867 81.952 c 30.867 327.648 l 30.867
338.452 39.664 347.249 50.469 347.265 c 139.5 347.265 l 144.656 347.265
149.656 345.214 153.02 341.878 c 193.254 299.468 l 202.699 289.714 215.91
284.128 229.492 284.128 c 359.133 284.128 l 369.938 284.128 378.734 275.331
378.734 264.527 c h
378.734 82.042 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,129 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 2 410 407
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 2 410 407
%%EndPageSetup
q 0 2 410 405 rectclip q
0 g
402.703 108.21 m 404.691 114.577 406.285 121.12 407.41 127.644 c 414.141
166.73 405.281 206.074 382.406 238.48 c 363.496 265.3 336.816 284.507 306.07
294.23 c 295.98 328.8 274.457 358.542 244.301 379.062 c 210.352 402.199
167.719 410.988 127.387 403.304 c 125.707 402.995 124.117 402.421 122.664
401.659 c 41.395 383.753 -11.965 304.316 3.02 221.749 c 4.074 215.972 5.441
210.261 7.203 204.464 c 15.355 178.495 13.383 150.656 1.688 126.085 c -1.238
119.945 -0.305 112.675 4.074 107.484 c 8.469 102.277 15.492 100.132 22
101.984 c 75.93 117.175 l 90.637 108.245 106.367 102.363 122.406 98.765
c 126.266 88.695 131.109 78.917 137.25 69.73 c 159.277 36.718 192.859 14.261
231.793 6.492 c 241.586 4.554 251.41 3.585 261.172 3.585 c 287.574 3.585
313.477 10.644 336.539 24.296 c 387.688 10.23 l 394.176 8.429 401.18 10.609
405.523 15.8 c 409.867 20.972 410.801 28.222 407.895 34.331 c 396.891 57.515
395.055 83.765 402.703 108.21 c h
88.473 150.257 m 85.566 152.23 82.176 153.249 78.734 153.249 c 77.16 153.249
75.586 153.042 74.043 152.593 c 43.938 144.117 l 48.68 167.421 47.484 191.628
40.27 214.656 c 38.953 219.034 37.883 223.48 37.07 227.964 c 25.129 293.675
68.887 356.831 134.602 368.769 c 136.09 369.031 137.473 369.495 138.773
370.171 c 168.617 374.601 199.762 367.523 224.801 350.48 c 280.012 312.882
294.34 237.394 256.738 182.199 c 238.539 155.464 211.008 137.417 179.227
131.382 c 147.457 125.343 115.223 132.038 88.473 150.257 c h
373.305 133.507 m 372.457 128.507 371.23 123.507 369.691 118.593 c 362.875
96.847 361.645 74.058 365.902 52.117 c 338.355 59.699 l 333.543 61.031
328.355 60.183 324.168 57.394 c 298.836 40.492 268.469 34.452 238.555 40.421
c 208.691 46.374 182.945 63.609 166.023 88.937 c 164.691 90.929 163.637
93.003 162.461 95.046 c 210.18 96.898 256.465 120.288 285.359 162.699 c
304.027 190.105 313.109 222.011 312.16 254.538 c 355.797 232.601 382.027
184.05 373.305 133.507 c h
373.305 133.507 m f
98.805 253.292 m 97.938 253.984 97.074 254.675 96.207 255.37 c 95.172 255.89
94.133 256.581 93.094 256.925 c 92.055 257.445 91.02 257.617 89.98 257.964
c 86.52 258.656 83.059 258.312 79.945 256.925 c 77.867 256.062 75.965 254.851
74.234 253.292 c 71.121 250.007 69.219 245.507 69.219 241.007 c 69.219
236.335 71.121 232.011 74.234 228.722 c 75.965 227.167 77.867 225.781 79.945
224.917 c 82.02 224.05 84.27 223.706 86.52 223.706 c 91.02 223.706 95.52
225.437 98.805 228.722 c 101.918 231.839 103.824 236.335 103.824 241.007
c 103.82 245.507 101.918 250.007 98.805 253.292 c h
98.805 253.292 m f
168.012 253.12 m 161.613 259.695 149.848 259.523 143.445 253.12 c 140.328
250.007 138.426 245.507 138.426 241.007 c 138.426 236.335 140.328 232.011
143.445 228.722 c 146.73 225.437 151.23 223.706 155.73 223.706 c 156.941
223.706 157.977 223.706 159.191 224.05 c 160.227 224.226 161.266 224.57
162.305 224.917 c 163.344 225.437 164.379 225.956 165.418 226.648 c 166.281
227.167 167.148 228.031 168.012 228.722 c 168.707 229.589 169.57 230.452
170.09 231.32 c 170.781 232.359 171.301 233.222 171.648 234.261 c 172.168
235.472 172.512 236.511 172.688 237.546 c 172.859 238.757 173.031 239.796
173.031 241.007 c 173.031 245.507 171.129 250.007 168.012 253.12 c h
168.012 253.12 m f
237.223 253.12 m 230.82 259.695 219.055 259.523 212.652 253.12 c 209.539
250.007 207.637 245.507 207.637 241.007 c 207.637 236.335 209.539 232.011
212.652 228.722 c 215.941 225.437 220.266 223.706 224.938 223.706 c 229.609
223.706 233.938 225.437 237.223 228.722 c 237.914 229.589 238.781 230.452
239.301 231.32 c 239.992 232.359 240.512 233.222 240.855 234.261 c 241.375
235.3 241.723 236.511 241.895 237.546 c 242.066 238.757 242.242 239.796
242.242 241.007 c 242.242 245.507 240.336 250.007 237.223 253.12 c h
237.223 253.12 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,85 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 57 -1 353 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 57 -1 353 410
%%EndPageSetup
q 57 -1 296 411 rectclip q
0 g
300.242 409.6 m 108.883 409.6 l 80.285 409.323 57.199 385.846 57.465 357.377
c 57.465 245.893 l 352.141 245.893 l 352.141 357.705 l 352.141 386.323
328.859 409.6 300.242 409.6 c h
319.398 278.631 m 90.203 278.631 l 90.203 357.526 l 90.105 368.084 98.637
376.76 109.031 376.858 c 300.242 376.858 l 310.82 376.858 319.398 368.264
319.398 357.377 c h
319.398 278.631 m f
57.465 114.596 m 57.465 -0.002 l 352.141 -0.002 l 352.141 114.596 l h
319.398 32.741 m 90.203 32.741 l 90.203 81.854 l 319.398 81.854 l h
319.398 32.741 m f
57.465 212.823 294.676 -65.484 re f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,97 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 2 410 407
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 2 410 407
%%EndPageSetup
q 0 2 410 405 rectclip q
0 g
318.367 145.529 m 307.363 145.529 298.469 136.635 298.469 125.631 c 298.469
63.131 l 298.469 52.146 289.555 43.232 278.574 43.232 c 59.695 43.232 l
48.711 43.232 39.797 52.146 39.797 63.131 c 39.797 321.803 l 39.797 332.787
48.711 341.701 59.695 341.701 c 175.301 341.701 l 186.305 341.701 195.199
350.595 195.199 361.599 c 195.199 372.603 186.305 381.498 175.301 381.498
c 59.695 381.498 l 26.781 381.498 0 354.717 0 321.803 c 0 63.131 l 0 30.22
26.781 3.435 59.695 3.435 c 278.57 3.435 l 311.48 3.435 338.266 30.201
338.266 63.131 c 338.266 125.631 l 338.266 136.635 329.371 145.529 318.367
145.529 c h
318.367 145.529 m f
387.355 384.025 m 372.91 398.47 354.043 405.756 335.043 406.15 c 315.043
406.588 294.93 399.345 279.805 384.205 c 145.098 249.494 l 125.438 229.756
114.613 203.572 114.613 175.752 c 114.613 131.181 l 114.613 120.178 123.508
111.283 134.508 111.283 c 179.082 111.283 l 206.898 111.283 233.086 122.111
252.844 141.787 c 387.371 276.318 l 417.023 305.986 417.023 354.338 387.355
384.025 c h
224.727 169.943 m 212.531 157.783 196.293 151.08 179.082 151.08 c 154.406
151.08 l 154.406 175.752 l 154.406 192.967 161.113 209.201 173.25 221.381
c 262.055 310.185 l 313.512 258.728 l h
359.219 304.435 m 341.648 286.865 l 290.191 338.318 l 307.762 355.888 l
321.969 370.095 345.051 370.056 359.219 355.888 c 373.387 341.701 373.387
318.619 359.219 304.435 c h
359.219 304.435 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,94 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 -1 410 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 -1 410 410
%%EndPageSetup
q 0 -1 410 411 rectclip q
0 g
271.273 212.428 m 268.371 218.213 262.469 221.866 256 221.866 c 221.867
221.866 l 221.867 392.534 l 221.867 401.955 214.238 409.6 204.801 409.6
c 195.363 409.6 187.734 401.955 187.734 392.534 c 187.734 221.866 l 153.602
221.866 l 147.133 221.866 141.227 218.213 138.324 212.428 c 135.457 206.643
136.074 199.733 139.945 194.561 c 191.148 126.295 l 191.367 126.002 191.711
125.901 191.949 125.627 c 193.074 124.299 194.406 123.272 195.891 122.334
c 196.508 121.959 196.984 121.463 197.648 121.159 c 199.836 120.135 202.223
119.467 204.801 119.467 c 207.379 119.467 209.766 120.135 211.969 121.159
c 212.617 121.463 213.113 121.959 213.711 122.334 c 215.195 123.272 216.527
124.299 217.652 125.627 c 217.875 125.901 218.23 126.002 218.453 126.295
c 269.656 194.561 l 273.543 199.733 274.16 206.643 271.273 212.428 c h
271.273 212.428 m f
392.535 153.6 m 383.098 153.6 375.469 145.955 375.469 136.534 c 375.469
85.334 l 375.469 57.104 352.496 34.135 324.266 34.135 c 85.332 34.135 l
57.105 34.135 34.133 57.104 34.133 85.334 c 34.133 136.534 l 34.133 145.955
26.504 153.6 17.066 153.6 c 7.629 153.6 0 145.955 0 136.534 c 0 85.334
l 0 38.28 38.281 -0.002 85.332 -0.002 c 324.266 -0.002 l 371.32 -0.002 409.602
38.28 409.602 85.334 c 409.602 136.534 l 409.602 145.955 401.973 153.6
392.535 153.6 c h
392.535 153.6 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,87 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 -1 410 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 -1 410 410
%%EndPageSetup
q 0 -1 410 411 rectclip q
0 g
204.801 409.6 m 91.867 409.6 0 317.733 0 204.799 c 0 91.866 91.867 -0.002
204.801 -0.002 c 317.734 -0.002 409.602 91.881 409.602 204.799 c 409.602
317.717 317.734 409.6 204.801 409.6 c h
204.801 31.729 m 109.379 31.729 31.727 109.366 31.727 204.799 c 31.727
300.237 109.379 377.873 204.801 377.873 c 300.234 377.873 377.871 300.237
377.871 204.799 c 377.871 109.366 300.219 31.729 204.801 31.729 c h
204.801 31.729 m f
294.59 247.33 m 288.895 253.979 278.867 254.756 272.219 249.061 c 204.008
181.002 l 135.953 249.061 l 129.766 255.213 119.77 255.213 113.582 249.061
c 107.43 242.873 107.43 232.877 113.582 226.69 c 192.902 147.373 l 199.09
141.217 209.082 141.217 215.27 147.373 c 294.59 226.69 l 299.68 232.623
299.68 241.397 294.59 247.33 c h
294.59 247.33 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,99 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 23 410 387
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 23 410 387
%%EndPageSetup
q 0 23 410 364 rectclip q
0 g
362.34 307.202 m 346.586 307.202 l 346.586 338.709 l 346.586 364.764 325.379
385.971 299.324 385.971 c 47.262 385.971 l 21.203 385.971 0 364.764 0 338.709
c 0 133.909 l 0 107.85 21.203 86.647 47.262 86.647 c 78.77 86.647 l 78.77
70.893 l 78.77 44.834 99.973 23.631 126.031 23.631 c 362.34 23.631 l 388.395
23.631 409.602 44.834 409.602 70.893 c 409.602 259.94 l 409.602 285.995
388.395 307.202 362.34 307.202 c h
47.262 118.155 m 38.582 118.155 31.508 125.209 31.508 133.909 c 31.508
338.705 l 31.508 347.405 38.582 354.459 47.262 354.459 c 299.324 354.459
l 308.004 354.459 315.078 347.405 315.078 338.705 c 315.078 133.909 l 315.078
125.209 308.004 118.155 299.324 118.155 c h
378.094 70.893 m 378.094 62.198 371.02 55.139 362.34 55.139 c 126.031 55.139
l 117.352 55.139 110.277 62.198 110.277 70.893 c 110.277 86.647 l 299.324
86.647 l 325.379 86.647 346.586 107.85 346.586 133.909 c 346.586 275.694
l 362.34 275.694 l 371.02 275.694 378.094 268.635 378.094 259.94 c h
378.094 70.893 m f
252.062 291.448 m 94.523 291.448 l 85.828 291.448 78.77 284.405 78.77 275.694
c 78.77 266.979 85.828 259.94 94.523 259.94 c 252.062 259.94 l 260.758
259.94 267.816 266.979 267.816 275.694 c 267.816 284.405 260.758 291.448
252.062 291.448 c h
252.062 291.448 m f
220.555 212.678 m 126.031 212.678 l 117.336 212.678 110.277 205.635 110.277
196.924 c 110.277 188.209 117.336 181.17 126.031 181.17 c 220.555 181.17
l 229.25 181.17 236.309 188.209 236.309 196.924 c 236.309 205.635 229.25
212.678 220.555 212.678 c h
220.555 212.678 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,93 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 -1 410 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 -1 410 410
%%EndPageSetup
q 0 -1 410 411 rectclip q
0 g
349.699 349.643 m 269.84 429.506 139.855 429.506 59.996 349.643 c 21.309
310.944 0 259.502 0 204.791 c 0 150.08 21.309 98.639 59.996 59.955 c 99.934
20.018 152.391 0.057 204.848 0.057 c 257.305 0.057 309.762 20.018 349.699
59.955 c 429.562 139.815 429.562 269.768 349.699 349.643 c h
327.266 82.393 m 259.766 14.893 149.93 14.893 82.43 82.393 c 49.742 115.076
31.734 158.553 31.734 204.791 c 31.734 251.03 49.742 294.506 82.43 327.209
c 149.93 394.709 259.766 394.694 327.266 327.209 c 394.746 259.709 394.746
149.873 327.266 82.393 c h
327.266 82.393 m f
273.219 160.936 m 228.301 205.791 l 273.219 250.647 l 279.406 256.834 279.406
266.881 273.234 273.084 c 267.031 279.303 256.988 279.287 250.785 273.1
c 205.832 228.213 l 160.879 273.1 l 154.676 279.287 144.633 279.303 138.43
273.084 c 132.238 266.881 132.238 256.838 138.445 250.647 c 183.363 205.791
l 138.445 160.936 l 132.238 154.748 132.238 144.701 138.43 138.498 c 141.523
135.389 145.602 133.85 149.664 133.85 c 153.727 133.85 157.785 135.405
160.879 138.483 c 205.832 183.369 l 250.785 138.483 l 253.879 135.389 257.941
133.85 262.004 133.85 c 266.066 133.85 270.145 135.405 273.238 138.498
c 279.426 144.701 279.426 154.748 273.219 160.936 c h
273.219 160.936 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,92 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 -1 410 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 -1 410 410
%%EndPageSetup
q 0 -1 410 411 rectclip q
0 g
204.801 409.6 m 91.883 409.6 0 317.733 0 204.799 c 0 132.811 37.422 69.498
93.738 32.979 c 95.402 31.284 97.5 30.108 99.781 29.299 c 130.543 10.834
166.379 -0.002 204.801 -0.002 c 317.734 -0.002 409.602 91.866 409.602 204.799
c 409.602 317.733 317.734 409.6 204.801 409.6 c h
204.801 31.709 m 174.738 31.729 146.438 39.452 121.77 52.998 c 126.195
92.834 159.398 121.022 204.48 121.022 c 249.711 121.022 282.961 92.659 287.227
52.635 c 262.703 39.295 234.625 31.709 204.801 31.709 c h
156.098 210.67 m 156.098 237.526 177.941 259.37 204.801 259.37 c 231.656
259.37 253.5 237.526 253.5 210.67 c 253.5 183.811 231.656 161.967 204.801
161.967 c 177.941 161.967 156.098 183.811 156.098 210.67 c h
316.035 72.401 m 307.199 105.62 283.086 131.827 250.312 144.471 c 271.363
158.987 285.23 183.225 285.23 210.67 c 285.23 255.026 249.156 291.1 204.801
291.1 c 160.445 291.1 124.371 255.026 124.371 210.67 c 124.371 183.303
138.156 159.159 159.098 144.612 c 126.242 132.096 102.02 106.002 93.055
72.846 c 55.602 104.635 31.727 151.959 31.727 204.799 c 31.727 300.221 109.363
377.873 204.801 377.873 c 300.234 377.873 377.871 300.221 377.871 204.799
c 377.871 151.705 353.793 104.178 316.035 72.401 c h
316.035 72.401 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,101 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 -1 410 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 -1 410 410
%%EndPageSetup
q 0 -1 410 411 rectclip q
0 g
405.512 245.233 m 394.711 298.862 363.688 345.069 318.148 375.338 c 274.637
404.26 222.34 415.401 170.789 406.753 c 170.449 406.702 170.109 406.647
169.766 406.596 c 58.516 387.264 -16.254 281.03 3.078 169.811 c 4.613 160.905
6.777 152.014 9.457 143.483 c 20.738 106.85 17.957 67.588 1.645 32.917
c -1.207 26.909 -0.27 19.776 4.016 14.674 c 8.297 9.573 15.09 7.475 21.574
9.198 c 98.051 30.085 l 130.434 10.256 167 0.003 204.336 0.003 c 217.902
0.003 231.57 1.35 245.184 4.096 c 298.812 14.897 345.02 45.917 375.293
91.46 c 405.562 137.003 416.293 191.604 405.512 245.233 c h
346.863 110.366 m 321.629 72.401 283.117 46.534 238.445 37.538 c 193.809
28.6 148.266 37.506 110.301 62.741 c 107.469 64.62 104.176 65.592 100.848
65.592 c 99.348 65.592 97.828 65.385 96.363 64.995 c 44.27 50.78 l 53.074
84.342 52.426 119.885 42.051 153.655 c 39.781 160.854 37.973 168.225 36.691
175.647 c 20.637 268.096 82.559 356.381 174.816 372.831 c 175.125 372.866
175.434 372.917 175.738 372.967 c 218.926 380.424 262.777 371.159 299.258
346.928 c 337.227 321.694 363.074 283.178 372.066 238.51 c 381.059 193.819
372.102 148.311 346.863 110.366 c h
346.863 110.366 m f
273.016 256.014 m 136.512 256.014 l 127.074 256.014 119.445 248.389 119.445
238.952 c 119.445 229.514 127.074 221.889 136.512 221.889 c 273.016 221.889
l 282.434 221.889 290.078 229.514 290.078 238.952 c 290.078 248.389 282.453
256.014 273.016 256.014 c h
273.016 256.014 m f
273.016 187.764 m 136.512 187.764 l 127.074 187.764 119.445 180.135 119.445
170.702 c 119.445 161.264 127.074 153.635 136.512 153.635 c 273.016 153.635
l 282.434 153.635 290.078 161.264 290.078 170.702 c 290.078 180.135 282.453
187.764 273.016 187.764 c h
273.016 187.764 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,83 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 -1 410 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 -1 410 410
%%EndPageSetup
q 0 -1 410 411 rectclip q
0 g
228.926 204.794 m 404.586 380.454 l 411.262 387.126 411.262 397.911 404.586
404.583 c 397.914 411.259 387.129 411.259 380.457 404.583 c 204.797 228.923
l 29.137 404.583 l 22.465 411.259 11.676 411.259 5.004 404.583 c -1.668
397.911 -1.668 387.126 5.004 380.454 c 180.664 204.794 l 5.004 29.134 l
-1.668 22.462 -1.668 11.677 5.004 5.001 c 8.332 1.673 12.703 0.001 17.07
0.001 c 21.438 0.001 25.809 1.677 29.137 5.001 c 204.797 180.661 l 380.457
5.001 l 383.785 1.673 388.152 0.001 392.523 0.001 c 396.891 0.001 401.258
1.677 404.586 5.001 c 411.262 11.677 411.262 22.462 404.586 29.134 c h
228.926 204.794 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,86 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 53 -1 357 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 53 -1 357 410
%%EndPageSetup
q 53 -1 304 411 rectclip q
0 g
308.09 409.416 m 307.281 409.534 306.441 409.6 305.602 409.6 c 103.992
409.6 l 103.152 409.6 102.312 409.534 101.492 409.416 c 73.617 405.213 53.039
380.823 53.594 352.983 c 53.594 16.967 l 53.594 10.67 57.121 4.889 62.73
2.014 c 68.324 -0.892 75.078 -0.388 80.203 3.327 c 204.695 92.791 l 329.391
3.159 l 332.312 1.057 335.742 -0.002 339.203 -0.002 c 341.824 -0.002 344.445
0.604 346.863 1.846 c 352.473 4.721 356.004 10.498 356.004 16.799 c 356.004
352.409 l 356.676 380.702 336.078 405.213 308.09 409.416 c h
322.402 49.561 m 233.477 113.487 l 322.402 177.413 l h
322.402 352.815 m 322.402 218.795 l 87.191 49.729 l 87.191 353.319 l 86.973
364.307 94.734 373.866 105.422 375.998 c 304.172 375.998 l 314.891 373.866
322.656 364.237 322.402 352.815 c h
322.402 352.815 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,96 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:11 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 16 410 393
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 16 410 393
%%EndPageSetup
q 0 16 410 377 rectclip q
0 g
358.398 392.534 m 51.199 392.534 l 22.973 392.534 0 369.561 0 341.334 c
0 273.069 l 0 263.647 7.629 255.998 17.066 255.998 c 34.133 255.998 l 34.133
68.268 l 34.133 40.038 57.105 17.065 85.332 17.065 c 324.266 17.065 l 352.496
17.065 375.465 40.038 375.465 68.268 c 375.465 255.998 l 392.531 255.998
l 401.969 255.998 409.598 263.647 409.598 273.065 c 409.598 341.334 l 409.602
369.561 386.629 392.534 358.398 392.534 c h
341.332 68.268 m 341.332 58.862 333.688 51.202 324.266 51.202 c 85.332
51.202 l 75.914 51.202 68.266 58.862 68.266 68.268 c 68.266 255.998 l 341.332
255.998 l h
375.465 290.135 m 34.133 290.135 l 34.133 341.334 l 34.133 350.737 41.777
358.401 51.199 358.401 c 358.398 358.401 l 367.82 358.401 375.465 350.737
375.465 341.334 c h
375.465 290.135 m f
247.465 221.866 m 162.133 221.866 l 138.598 221.866 119.469 202.717 119.469
179.202 c 119.469 155.682 138.598 136.534 162.133 136.534 c 247.469 136.534
l 271.004 136.534 290.133 155.682 290.133 179.202 c 290.133 202.717 271
221.866 247.465 221.866 c h
247.465 170.666 m 162.133 170.666 l 157.441 170.666 153.602 174.491 153.602
179.202 c 153.602 183.909 157.441 187.733 162.133 187.733 c 247.469 187.733
l 252.16 187.733 256 183.909 256 179.202 c 256 174.491 252.16 170.666 247.465
170.666 c h
247.465 170.666 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,81 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:10 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 42 410 368
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 42 410 368
%%EndPageSetup
q 0 42 410 326 rectclip q
0 g
403.375 363.015 m 396.07 369.039 385.355 367.965 379.363 360.695 c 152.387
85.098 l 29.137 208.332 l 22.465 215.004 11.676 215.004 5.004 208.332 c
-1.668 201.656 -1.668 190.871 5.004 184.199 c 141.531 47.672 l 144.723
44.445 149.074 42.672 153.598 42.672 c 153.871 42.672 154.145 42.672 154.418
42.687 c 159.246 42.91 163.719 45.164 166.773 48.883 c 405.695 339.004
l 411.688 346.293 410.664 357.027 403.375 363.015 c h
403.375 363.015 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,89 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:10 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 8 410 401
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 8 410 401
%%EndPageSetup
q 0 8 410 393 rectclip q
0 g
372.824 400.565 m 36.773 400.565 l 16.691 400.487 0.348 384.35 0 364.264
c 0 131.092 l 0.078 110.819 16.5 94.393 36.773 94.315 c 136.48 94.315 l
136.48 43.116 l 102.398 43.116 l 102.398 9.034 l 307.199 9.034 l 307.199
42.639 l 273.121 42.639 l 273.121 93.838 l 372.824 93.838 l 393.227 93.92
409.695 110.53 409.602 130.932 c 409.602 364.264 l 409.25 384.35 392.91
400.487 372.824 400.565 c h
238.879 42.639 m 170.719 42.639 l 170.719 93.838 l 238.879 93.838 l h
375.52 131.092 m 375.52 129.6 374.312 128.397 372.824 128.397 c 36.773
128.397 l 35.41 128.553 34.383 129.713 34.398 131.092 c 34.398 364.264 l
34.398 365.756 35.602 366.959 37.094 366.959 c 373.141 366.959 l 374.633
366.959 375.836 365.756 375.836 364.264 c h
375.52 131.092 m f
119.52 315.76 34.082 -136.641 re f
187.68 281.678 34.082 -102.398 re f
256 247.44 34.082 -68.32 re f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,87 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:10 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 18 -1 391 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 18 -1 391 410
%%EndPageSetup
q 18 -1 373 411 rectclip q
0 g
372.363 111.709 m 353.746 111.709 l 353.746 260.655 l 353.746 342.78 286.926
409.6 204.801 409.6 c 122.676 409.6 55.855 342.78 55.855 260.655 c 55.855
111.709 l 37.234 111.709 l 26.941 111.709 18.617 103.385 18.617 93.092
c 18.617 82.795 26.941 74.471 37.234 74.471 c 130.328 74.471 l 130.328 33.401
163.727 -0.002 204.801 -0.002 c 245.871 -0.002 279.273 33.401 279.273 74.471
c 372.363 74.471 l 382.66 74.471 390.98 82.795 390.98 93.092 c 390.98 103.389
382.66 111.709 372.363 111.709 c h
204.801 37.237 m 184.266 37.237 167.562 53.936 167.562 74.471 c 242.035
74.471 l 242.035 53.936 225.336 37.237 204.801 37.237 c h
316.508 111.709 m 93.09 111.709 l 93.09 260.655 l 93.09 322.26 143.191
372.362 204.801 372.362 c 266.406 372.362 316.508 322.26 316.508 260.655
c h
316.508 111.709 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,90 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:10 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 -1 410 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 -1 410 410
%%EndPageSetup
q 0 -1 410 411 rectclip q
0 g
204.801 409.6 m 91.867 409.6 0 317.733 0 204.799 c 0 91.866 91.867 -0.002
204.801 -0.002 c 317.734 -0.002 409.602 91.881 409.602 204.799 c 409.602
317.717 317.734 409.6 204.801 409.6 c h
204.801 31.729 m 109.379 31.729 31.727 109.366 31.727 204.799 c 31.727
300.237 109.379 377.873 204.801 377.873 c 300.219 377.873 377.871 300.237
377.871 204.799 c 377.871 109.366 300.234 31.729 204.801 31.729 c h
204.801 31.729 m f
284.117 222.092 m 220.664 222.092 l 220.664 285.545 l 220.664 294.303 213.574
301.409 204.801 301.409 c 196.027 301.409 188.938 294.303 188.938 285.545
c 188.938 222.092 l 125.48 222.092 l 116.707 222.092 109.617 214.983 109.617
206.229 c 109.617 197.471 116.707 190.362 125.48 190.362 c 188.938 190.362
l 188.938 126.909 l 188.938 118.151 196.027 111.045 204.801 111.045 c 213.574
111.045 220.664 118.151 220.664 126.909 c 220.664 190.362 l 284.117 190.362
l 292.891 190.362 299.98 197.471 299.98 206.229 c 299.98 214.983 292.891
222.092 284.117 222.092 c h
284.117 222.092 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,88 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.14.2 (http://cairographics.org)
%%CreationDate: Mon Jul 2 08:17:10 2018
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 -1 410 410
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%BeginSetup
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 -1 410 410
%%EndPageSetup
q 0 -1 410 411 rectclip q
0 g
204.801 409.6 m 91.867 409.6 0 317.733 0 204.799 c 0 91.866 91.867 -0.002
204.801 -0.002 c 317.734 -0.002 409.602 91.881 409.602 204.799 c 409.602
317.717 317.734 409.6 204.801 409.6 c h
204.801 31.729 m 109.379 31.729 31.727 109.366 31.727 204.799 c 31.727
300.237 109.379 377.873 204.801 377.873 c 300.234 377.873 377.871 300.237
377.871 204.799 c 377.871 109.366 300.219 31.729 204.801 31.729 c h
204.801 31.729 m f
298.762 276.03 m 292.305 281.897 282.262 281.436 276.363 274.948 c 179.594
168.393 l 132.844 215.92 l 126.672 222.17 116.645 222.264 110.41 216.112
c 104.16 209.971 104.066 199.928 110.223 193.678 c 168.742 134.19 l 171.738
131.143 175.801 129.448 180.051 129.448 c 180.148 129.448 180.258 129.448
180.355 129.432 c 184.73 129.526 188.855 131.397 191.793 134.635 c 299.84
253.612 l 305.727 260.116 305.25 270.143 298.762 276.03 c h
298.762 276.03 m f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,407 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<!--
2018-7-2: Created with FontForge (http://fontforge.org)
-->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
<metadata>
Created by FontForge 20160405 at Mon Jul 2 08:17:11 2018
By Apache
Copyright (c) 2018, Apache
</metadata>
<defs>
<font id="Flaticon" horiz-adv-x="512" >
<font-face
font-family="Flaticon"
font-weight="400"
font-stretch="normal"
units-per-em="512"
panose-1="2 0 5 3 0 0 0 0 0 0"
ascent="448"
descent="-64"
bbox="-0.000697101 -64.001 512.001 448"
underline-thickness="25.6"
underline-position="-51.2"
unicode-range="U+0020-F138"
/>
<missing-glyph />
<glyph glyph-name="space" unicode=" " horiz-adv-x="200"
/>
<glyph glyph-name="uniF119" unicode="&#xf119;"
d="M492.209 444.187c6.7627 -4.69336 10.1973 -12.8643 8.85254 -20.9932l-64.0029 -384.02c-1.02441 -6.16504 -4.69336 -11.5625 -10.0488 -14.7627c-3.36914 -2.02734 -7.16797 -3.07227 -11.0078 -3.07227c-2.26172 0 -4.52246 0.362305 -6.74219 1.10938
l-108.678 36.2256l-80.5156 -113.67c-4.0752 -5.73926 -10.6035 -9.00293 -17.4092 -9.00293c-1.91992 0 -3.88281 0.27832 -5.80371 0.810547c-8.68262 2.43262 -14.8916 10.0918 -15.4883 19.1152l-9.60059 145.672l-146.524 48.834
c-7.97949 2.64551 -13.6543 9.75098 -14.4863 18.1348s3.35059 16.4697 10.6465 20.6299l448.023 256.014c7.18945 4.05371 16.0215 3.66992 22.7852 -1.02441zM184.545 142.304l183.155 195.638l-283.704 -162.121zM220.002 18.7139l38.2959 54.0391l-42.7979 14.2734z
M399.084 70.791l48.3008 289.808l-218.272 -233.143z" />
<glyph glyph-name="uniF138" unicode="&#xf138;"
d="M256 448c141.167 0 256 -114.853 256 -256s-114.833 -256 -256 -256s-256 114.833 -256 256s114.833 256 256 256zM256 -24.3408c119.275 0 216.341 97.0459 216.341 216.341s-97.0459 216.341 -216.341 216.341c-119.275 0 -216.341 -97.0459 -216.341 -216.341
s97.0654 -216.341 216.341 -216.341zM373.451 281.035c8.10938 -7.35742 8.70508 -19.8887 1.34668 -28.0205l-135.059 -148.722c-3.66797 -4.04492 -8.82422 -6.38477 -14.2969 -6.50391c-0.119141 0.0195312 -0.258789 0.0195312 -0.376953 0.0195312
c-5.31445 0 -10.3906 2.12207 -14.1387 5.92969l-73.1504 74.3604c-7.69434 7.81348 -7.5752 20.3652 0.237305 28.0391c7.79297 7.69434 20.3252 7.5752 28.0391 -0.237305l58.4385 -59.4092l120.961 133.195c7.37598 8.11035 19.9277 8.68555 27.999 1.34863z" />
<glyph glyph-name="uniF131" unicode="&#xf131;"
d="M286.165 191.997l219.58 -219.579c8.34082 -8.3418 8.34082 -21.8232 0 -30.165c-4.16016 -4.15918 -9.62109 -6.25 -15.083 -6.25c-5.46094 0 -10.9219 2.08984 -15.082 6.25l-219.579 219.58l-219.58 -219.58c-4.16016 -4.15918 -9.62109 -6.25 -15.082 -6.25
c-5.46191 0 -10.9229 2.08984 -15.083 6.25c-8.34082 8.3418 -8.34082 21.8232 0 30.165l219.58 219.579l-219.58 219.58c-8.34082 8.34082 -8.34082 21.8232 0 30.165c8.3418 8.34082 21.8242 8.34082 30.165 0l219.58 -219.58l219.579 219.58
c8.3418 8.34082 21.8232 8.34082 30.165 0c8.34082 -8.3418 8.34082 -21.8242 0 -30.165z" />
<glyph glyph-name="uniF12B" unicode="&#xf12b;"
d="M339.093 201.536c3.60645 -7.23242 2.83789 -15.8721 -2.02441 -22.335l-64 -85.333c-0.27832 -0.363281 -0.726562 -0.491211 -1.00293 -0.832031c-1.4082 -1.66406 -3.07227 -2.94434 -4.92871 -4.11719c-0.74707 -0.46875 -1.36426 -1.08789 -2.17578 -1.47168
c-2.75195 -1.28027 -5.73828 -2.1123 -8.95996 -2.1123s-6.20801 0.832031 -8.93945 2.1123c-0.831055 0.383789 -1.42871 1.00293 -2.19629 1.47168c-1.85645 1.17285 -3.52051 2.45312 -4.92871 4.11719c-0.298828 0.34082 -0.725586 0.46875 -1.00293 0.832031
l-64 85.333c-4.84277 6.46387 -5.61035 15.1035 -2.02637 22.3359c3.62598 7.23145 11.0078 11.7969 19.0928 11.7969h42.667v213.333c0 11.7764 9.53613 21.333 21.333 21.333s21.333 -9.55664 21.333 -21.333v-213.334h42.667
c8.08496 0 15.4658 -4.56543 19.0928 -11.7969zM490.667 128c11.7969 0 21.333 -9.55664 21.333 -21.333v-64c0 -58.8164 -47.8506 -106.667 -106.666 -106.667h-298.667c-58.8164 0 -106.667 47.8506 -106.667 106.667v64c0 11.7764 9.53613 21.333 21.334 21.333
c11.7969 0 21.333 -9.55664 21.333 -21.333v-64c0 -35.2852 28.7148 -64 64 -64h298.667c35.2852 0 64 28.7148 64 64v64c0 11.7764 9.53613 21.333 21.333 21.333z" />
<glyph glyph-name="uniF11D" unicode="&#xf11d;"
d="M501.332 126.984c6.5918 -3.66113 10.668 -10.627 10.668 -18.1562c0 -7.54883 -4.0957 -14.4951 -10.668 -18.1553l-235.204 -131.223c-3.14062 -1.76855 -6.63379 -2.6416 -10.1279 -2.6416s-6.98828 0.894531 -10.1279 2.6416l-235.204 131.224
c-6.5918 3.68164 -10.668 10.627 -10.668 18.1553s4.07617 14.4736 10.668 18.1553l116.479 65.0693l-116.479 64.9883c-6.5918 3.66016 -10.668 10.626 -10.668 18.1553c0 7.52832 4.07617 14.4951 10.6484 18.1348l235.203 131.223
c6.30176 3.51562 13.9756 3.51562 20.2764 0l235.203 -131.223c6.5918 -3.66016 10.668 -10.627 10.668 -18.1553c0 -7.52734 -4.0957 -14.4951 -10.668 -18.1543l-116.541 -65.0098zM63.4697 275.197l192.53 -107.411l192.53 107.411l-192.53 107.412zM256 1.41699
l192.489 107.432l-106.394 59.3945l-75.9883 -42.4033c-3.1416 -1.76758 -6.63477 -2.64062 -10.1289 -2.64062c-3.49316 0 -6.9873 0.893555 -10.1279 2.64062l-76.0508 42.4238l-106.351 -59.415z" />
<glyph glyph-name="uniF12D" unicode="&#xf12d;"
d="M452.923 320c32.5713 0 59.0771 -26.5059 59.0781 -59.0771v-236.307c0 -32.5713 -26.5059 -59.0771 -59.0771 -59.0771h-295.385c-32.5713 0 -59.0771 26.5059 -59.0771 59.0771v19.6914h-39.3848c-32.5713 0 -59.0771 26.5068 -59.0771 59.0771v256
c0 32.5713 26.5059 59.0771 59.0771 59.0771h315.077c32.5703 0 59.0771 -26.5059 59.0771 -59.0771v-39.3848h19.6914zM59.0771 83.6924h315.077c10.8496 0 19.6914 8.82129 19.6914 19.6914v256c0 10.8701 -8.8418 19.6924 -19.6914 19.6924h-315.077
c-10.8506 0 -19.6924 -8.82227 -19.6924 -19.6924v-256c0 -10.8701 8.8418 -19.6914 19.6924 -19.6914zM472.615 24.6152v236.308c0 10.8701 -8.8418 19.6924 -19.6924 19.6924h-19.6914v-177.231c0 -32.5703 -26.5068 -59.0771 -59.0771 -59.0771h-236.309v-19.6914
c0 -10.8701 8.84277 -19.6924 19.6924 -19.6924h295.385c10.8506 0 19.6924 8.82227 19.6924 19.6924zM315.077 300.308c10.8701 0 19.6914 -8.80273 19.6914 -19.6914c0 -10.8906 -8.82129 -19.6924 -19.6914 -19.6924h-196.923
c-10.8701 0 -19.6924 8.80176 -19.6924 19.6924c0 10.8896 8.82227 19.6914 19.6924 19.6914h196.923zM275.692 201.846c10.8711 0 19.6924 -8.80176 19.6914 -19.6914c0 -10.8906 -8.82227 -19.6924 -19.6914 -19.6924h-118.154
c-10.8701 0 -19.6924 8.80176 -19.6924 19.6924c0 10.8896 8.82227 19.6914 19.6924 19.6914h118.154z" />
<glyph glyph-name="uniF10E" unicode="&#xf10e;"
d="M362.197 205.952c63.915 -36.8643 107.136 -105.686 107.137 -184.619v-21.333c0 -35.2852 -28.7148 -64 -64 -64h-298.667c-35.2852 0 -64 28.7148 -64 64v21.333c0 78.9336 43.2207 147.755 107.136 184.619c-13.7598 20.416 -21.8027 44.9697 -21.8027 71.3809v42.667
c0 70.5918 57.4082 128 128 128s128 -57.4082 128 -128v-42.667c0 -26.4102 -8.04297 -50.9648 -21.8027 -71.3809zM170.667 320v-42.667c0 -47.0605 38.2725 -85.333 85.333 -85.333s85.333 38.2725 85.333 85.333v42.667c0 47.0605 -38.2725 85.333 -85.333 85.333
s-85.333 -38.2725 -85.333 -85.333zM426.667 0h-0.000976562v21.333c0 66.9658 -38.7842 125.014 -95.0605 152.939c-21.2266 -15.5957 -47.3174 -24.9395 -75.6055 -24.9395s-54.3779 9.34375 -75.6055 24.9395c-56.2764 -27.9268 -95.0605 -85.9746 -95.0605 -152.939
v-21.333c0 -11.7539 9.57812 -21.333 21.333 -21.333h298.667c11.7539 0 21.333 9.57812 21.333 21.333z" />
<glyph glyph-name="uniF10D" unicode="&#xf10d;"
d="M484.295 2.04004c15.292 0 27.7061 -12.4131 27.7061 -27.7051s-12.4141 -27.7051 -27.7051 -27.7051h-373.262c-61.3164 0 -111.034 49.7188 -111.034 111.034v352c0 15.292 12.4131 27.7051 27.7051 27.7051s27.7051 -12.4141 27.7051 -27.7051v-352
c0.128906 -30.6475 24.9766 -55.4092 55.624 -55.4092h373.261v-0.214844zM450.792 320.322c12.2852 -9.19238 14.7764 -26.5879 5.58594 -38.8721l-80.752 -114.47c-0.0429688 -0.0439453 -0.0654297 -0.0644531 -0.0859375 -0.107422
c-9.19238 -12.2207 -26.5674 -14.6689 -38.7871 -5.47656l-91.0596 68.5098l-64.4307 -92.3496c-5.06836 -6.80762 -12.9941 -10.9316 -21.4766 -11.168v0.644531c-5.8418 0.107422 -11.5117 2.08301 -16.1719 5.62695c-12.1777 9.25684 -14.5615 26.6533 -5.30566 38.8301
l79.248 113.825c0.0429688 0.0429688 0.0644531 0.0634766 0.0859375 0.106445c9.19238 12.2207 26.5674 14.6689 38.7871 5.47754l91.0605 -68.5107l64.4297 92.3496c9.19141 12.2852 26.5869 14.7754 38.8721 5.58398z" />
<glyph glyph-name="uniF107" unicode="&#xf107;"
d="M262.656 44.8643c6.97559 -9.47266 4.9707 -22.8271 -4.52344 -29.8232l-74.667 -55.4668c-3.69043 -2.77441 -8.19141 -4.26758 -12.7998 -4.26758c-11.7764 0 -21.333 9.55762 -21.333 21.333v30.5078h-64c-47.125 0 -85.333 38.208 -85.333 85.333v206.293
c0 47.126 38.208 85.334 85.333 85.333h85.332c11.7764 0 21.333 -9.55762 21.333 -21.333c0 -11.7764 -9.55664 -21.333 -21.333 -21.333h-85.333c-23.5742 0 -42.667 -19.0947 -42.667 -42.667v-206.08c0 -23.5742 19.0938 -42.667 42.667 -42.667h64v37.5469
c0 4.60742 1.49414 9.1084 4.2666 12.7998c7.0625 9.42969 20.4385 11.3281 29.8672 4.2666l74.667 -55.2529c1.72852 -1.2793 3.24316 -2.79492 4.52344 -4.52246zM426.667 376.853c47.125 0 85.333 -38.208 85.334 -85.333v-206.294
c0 -47.125 -38.208 -85.333 -85.333 -85.333h-85.333c-11.7764 0 -21.333 9.55762 -21.333 21.333c0 11.7764 9.55664 21.333 21.333 21.333h85.333c23.5742 0 42.667 19.0947 42.667 42.667v206.293c0 23.5742 -19.0938 42.667 -42.667 42.667h-64v-37.9727
c0 -4.60742 -1.49414 -9.10938 -4.2666 -12.7998c-7.0625 -9.42969 -20.4385 -11.3281 -29.8672 -4.2666l-74.667 55.4668c-1.72852 1.2793 -3.24316 2.79492 -4.52344 4.52246c-6.97559 9.47266 -4.96973 22.8271 4.52344 29.8242l74.667 55.4658
c3.69043 2.77441 8.19141 4.26758 12.7998 4.26758c11.7764 0 21.333 -9.55762 21.333 -21.333v-30.5078h64zM232.106 192.012c0 19.0869 15.4727 34.5605 34.5596 34.5605s34.5596 -15.4736 34.5596 -34.5605s-15.4727 -34.5596 -34.5596 -34.5596
s-34.5596 15.4727 -34.5596 34.5596z" />
<glyph glyph-name="uniF136" unicode="&#xf136;"
d="M465.455 75.6357c12.8691 0 23.2725 -10.4014 23.2725 -23.2715s-10.4023 -23.2734 -23.2725 -23.2734h-23.2734h-93.0908c0 -51.3398 -41.751 -93.0908 -93.0908 -93.0908s-93.0908 41.751 -93.0908 93.0898h-93.0908h-23.2734
c-12.8701 0 -23.2725 10.4033 -23.2725 23.2734s10.4023 23.2725 23.2725 23.2725h23.2734v186.183c0 102.655 83.5254 186.182 186.182 186.182s186.182 -83.5264 186.182 -186.182v-186.183h23.2734zM256 -17.4551c25.6699 0 46.5449 20.876 46.5459 46.5449h-93.0908
c0 -25.6689 20.875 -46.5449 46.5449 -46.5449zM395.636 75.6357v186.183c0 77.0088 -62.627 139.636 -139.636 139.636s-139.636 -62.627 -139.636 -139.636v-186.183h46.5449h186.182h46.5449z" />
<glyph glyph-name="uniF10B" unicode="&#xf10b;"
d="M227.317 357.313c74.4004 0 134.923 -60.5225 134.923 -134.924c0 -74.4004 -60.5225 -134.923 -134.923 -134.923c-74.4014 0 -134.924 60.5225 -134.924 134.923c0 74.4014 60.5225 134.924 134.924 134.924zM227.317 130.436c50.7021 0 91.9541 41.25 91.9541 91.9541
s-41.25 91.9541 -91.9541 91.9541s-91.9541 -41.25 -91.9541 -91.9541s41.25 -91.9541 91.9541 -91.9541zM503.996 -27.3037c8.35645 -8.40137 8.37891 -22.001 0 -30.3799c-4.21094 -4.21094 -9.71094 -6.31641 -15.2109 -6.31641s-11.001 2.10547 -15.1904 6.27344
l-104.822 104.651c-38.7168 -31.2822 -87.915 -50.124 -141.455 -50.124c-124.375 0 -225.59 101.193 -225.59 225.589c0 124.396 101.236 225.61 225.633 225.61c124.396 0 225.588 -101.193 225.588 -225.589c0 -55.4082 -20.1533 -106.134 -53.4111 -145.429z
M227.317 39.7715c100.697 0 182.618 81.9209 182.618 182.618c0 100.698 -81.9199 182.619 -182.618 182.619c-100.699 0 -182.619 -81.9209 -182.619 -182.619c0 -100.697 81.9209 -182.618 182.619 -182.618z" />
<glyph glyph-name="uniF109" unicode="&#xf109;"
d="M469.495 298.558c8.46875 -8.46777 8.46875 -22.2119 -0.0205078 -30.7012l-142.869 -143.087c-4.23438 -4.2334 -9.81445 -6.36133 -15.3721 -6.36133c-5.55957 0 -11.1172 2.12793 -15.3516 6.33984c-8.49023 8.48926 -8.49023 22.2119 -0.0214844 30.7227
l105.675 105.806h-217.083c-57.626 0 -104.678 -46.8779 -104.872 -104.524v-199.039c0 -12.0068 -9.70508 -21.7119 -21.7129 -21.7119c-12.0068 0 -21.7119 9.70508 -21.7119 21.7119v199.105c0.283203 81.5732 66.7891 147.884 148.298 147.884h217.517l-106.088 106.219
c-8.46777 8.51074 -8.46777 22.2549 0.0224609 30.7227c8.48828 8.46875 22.2324 8.48926 30.7227 -0.0214844z" />
<glyph glyph-name="uniF120" unicode="&#xf120;"
d="M315.764 261.543c28.1338 -39.8164 42.9268 -86.6133 42.7549 -135.329l-0.0693359 -17.2119h-207.322v17.2812c0 48.7842 14.9648 95.582 43.3066 135.328l61.209 84.125zM186.432 143.564h136.831c-2.90332 35.2363 -15.0859 68.7959 -35.6855 97.9844
l-32.1943 45.0859l-32.9033 -45.2246c-20.6855 -29.0146 -33.0068 -62.5752 -36.0479 -97.8457zM347.129 74.25c25.9912 -0.588867 46.4697 -21.4121 46.625 -47.4189v-90.8301h-276.498v90.5527c0 26.2842 21.3926 47.6963 47.6953 47.6963h182.178zM359.191 -29.4375
v56.1621c-0.0341797 7.0166 -5.59961 12.7197 -12.6846 12.9619h-181.556c-7.24023 0 -13.1338 -5.89258 -13.1338 -13.1338v-55.9902h207.374zM227.229 419.832c0 15.5566 12.6113 28.168 28.1689 28.168c15.5566 0 28.168 -12.6113 28.168 -28.168
c0 -15.5576 -12.6113 -28.1689 -28.168 -28.1689c-15.5576 0 -28.1689 12.6113 -28.1689 28.1689zM139.908 376.594c0 15.5576 12.6123 28.1689 28.1689 28.1689s28.168 -12.6113 28.168 -28.1689c0 -15.5566 -12.6113 -28.168 -28.168 -28.168
s-28.1689 12.6113 -28.1689 28.168zM90.8027 289.595c0 15.4619 12.5342 27.9961 27.9961 27.9961c15.4609 0 27.9951 -12.5342 27.9951 -27.9961c0 -15.4609 -12.5342 -27.9951 -27.9951 -27.9951c-15.4619 0 -27.9961 12.5342 -27.9961 27.9951zM315.789 376.631
c0 15.5576 12.6113 28.1689 28.168 28.1689s28.168 -12.6113 28.168 -28.1689c0 -15.5566 -12.6113 -28.168 -28.168 -28.168s-28.168 12.6113 -28.168 28.168zM365.206 289.56c0 15.4609 12.5342 27.9951 27.9951 27.9951c15.4619 0 27.9961 -12.5342 27.9961 -27.9951
c0 -15.4619 -12.5342 -27.9961 -27.9961 -27.9961c-15.4609 0 -27.9951 12.5342 -27.9951 27.9961z" />
<glyph glyph-name="uniF117" unicode="&#xf117;"
d="M256 448c141.147 0 256 -114.833 256 -256s-114.833 -256 -256 -256c-141.147 0 -256 114.833 -256 256s114.853 256 256 256zM256 -24.3408c119.295 0 216.341 97.0459 216.341 216.341s-97.0459 216.341 -216.341 216.341s-216.341 -97.0459 -216.341 -216.341
s97.0459 -216.341 216.341 -216.341zM355.148 213.614c10.9453 0 19.8291 -8.88379 19.8291 -19.8301s-8.88379 -19.8301 -19.8291 -19.8301h-198.297c-10.9453 0 -19.8291 8.88379 -19.8291 19.8301s8.88379 19.8301 19.8291 19.8301h198.297z" />
<glyph glyph-name="uniF133" unicode="&#xf133;"
d="M448 426.667c35.2852 0 64 -28.7148 63.999 -64v-85.334c0 -11.7764 -9.53613 -21.333 -21.333 -21.333h-21.333v-234.667c0 -35.2852 -28.7148 -64 -64 -64h-298.667c-35.2852 0 -64 28.7148 -64 64v234.667h-21.333c-11.7969 0 -21.333 9.55664 -21.333 21.334v85.333
c0 35.2852 28.7148 64 64 64h384zM426.667 21.333v234.667h-341.333v-234.667c0 -11.7539 9.55664 -21.333 21.333 -21.333h298.667c11.7764 0 21.333 9.57812 21.333 21.333zM469.333 298.667v64c0 11.7539 -9.55664 21.333 -21.333 21.333h-384
c-11.7764 0 -21.333 -9.5791 -21.333 -21.333v-64h21.333h384h21.333zM309.333 213.333c29.4189 0 53.334 -23.9355 53.334 -53.333s-23.9141 -53.333 -53.333 -53.333h-106.667c-29.418 0 -53.333 23.9355 -53.333 53.333s23.9141 53.333 53.333 53.333h106.666z
M309.333 149.333c5.86719 0 10.667 4.7793 10.667 10.667s-4.7998 10.667 -10.666 10.667h-106.667c-5.86719 0 -10.667 -4.7793 -10.667 -10.667s4.7998 -10.667 10.667 -10.667h106.666z" />
<glyph glyph-name="uniF130" unicode="&#xf130;"
d="M506.878 242.533c13.4795 -67.0352 0.0644531 -135.285 -37.7734 -192.212c-37.8369 -56.9258 -95.5938 -95.7002 -162.63 -109.201c-17.0195 -3.43457 -34.1035 -5.11914 -51.0596 -5.11914c-46.667 0 -92.374 12.8184 -132.855 37.6025l-95.5938 -26.1064
c-8.10547 -2.1543 -16.5928 0.469727 -21.9473 6.84668c-5.35352 6.37793 -6.52637 15.293 -2.96484 22.8008c20.3906 43.3389 23.8672 92.416 9.76953 138.208c-3.34961 10.6641 -6.05762 21.7754 -7.97754 32.9092c-24.1641 139.019 69.2969 271.81 208.358 295.976
c0.426758 0.0634766 0.852539 0.12793 1.2793 0.191406c64.4346 10.8135 129.806 -3.11426 184.192 -39.2656c56.9268 -37.8379 95.7012 -95.5947 109.202 -162.63zM433.572 73.9531c31.5449 47.4346 42.7422 104.317 31.5029 160.177
c-11.2402 55.8379 -43.5527 103.978 -91.0088 135.521c-45.5996 30.2861 -100.415 41.8682 -154.396 32.5479c-0.383789 -0.0644531 -0.768555 -0.12793 -1.15234 -0.170898c-115.323 -20.5605 -192.724 -130.915 -172.653 -246.473
c1.59863 -9.27734 3.85938 -18.4912 6.69629 -27.4922c12.9678 -42.209 13.7793 -86.6367 2.77344 -128.59l65.1152 17.7666c1.83398 0.491211 3.73242 0.74707 5.60938 0.74707c4.15918 0 8.27441 -1.21582 11.8154 -3.56152
c47.4561 -31.5459 104.382 -42.6787 160.177 -31.5029c55.8379 11.2412 103.978 43.5742 135.521 91.0303zM341.263 256.013c11.7939 0 21.3281 -9.53418 21.3281 -21.3281c0 -11.7949 -9.55469 -21.3291 -21.3281 -21.3291h-170.628
c-11.7949 0 -21.3291 9.53418 -21.3291 21.3291c0 11.7939 9.53418 21.3281 21.3291 21.3281h170.628zM341.263 170.699c11.7939 0 21.3281 -9.5332 21.3281 -21.3281s-9.55469 -21.3291 -21.3281 -21.3291h-170.628c-11.7949 0 -21.3291 9.53418 -21.3291 21.3291
s9.53418 21.3281 21.3291 21.3281h170.628z" />
<glyph glyph-name="uniF106" unicode="&#xf106;"
d="M347.216 146.789c8.76562 -6.56445 10.5498 -18.9971 3.96484 -27.7432c-3.88672 -5.23535 -9.83594 -7.95215 -15.8838 -7.95215c-4.14355 0 -8.30859 1.28906 -11.8779 3.96582l-79.3184 59.4893c-4.99707 3.72852 -7.93164 9.61816 -7.93164 15.8643v118.978
c0 10.9668 8.86426 19.8301 19.8301 19.8301s19.8301 -8.86328 19.8301 -19.8301v-109.062zM256 448c141.167 0 256 -114.833 256 -256s-114.833 -256 -256 -256s-256 114.833 -256 256s114.833 256 256 256zM256 -24.3408c119.275 0 216.341 97.0654 216.341 216.341
s-97.0459 216.341 -216.341 216.341c-119.275 0 -216.341 -97.0654 -216.341 -216.341s97.0654 -216.341 216.341 -216.341z" />
<glyph glyph-name="uniF12F" unicode="&#xf12f;"
d="M256 448c141.167 0 256 -114.833 256 -256s-114.833 -256 -256 -256c-48.0273 0 -92.8223 13.5439 -131.272 36.625c-2.85449 1.01172 -5.47266 2.47852 -7.55469 4.60059c-70.3945 45.6475 -117.173 124.787 -117.173 214.774c0 141.167 114.853 256 256 256z
M256 -24.3613c37.2803 0 72.3779 9.47949 103.034 26.1553c-5.33398 50.0303 -46.8975 85.4854 -103.432 85.4854c-56.3545 0 -97.8584 -35.2373 -103.391 -85.0293c30.835 -16.9336 66.2109 -26.5908 103.788 -26.6113zM195.123 199.337
c0 -33.5723 27.3047 -60.877 60.877 -60.877s60.877 27.3057 60.877 60.877c0 33.5723 -27.3047 60.877 -60.877 60.877s-60.877 -27.3047 -60.877 -60.877zM395.045 26.502c47.1953 39.7188 77.2959 99.1279 77.2959 165.498c0 119.275 -97.0459 216.341 -216.341 216.341
s-216.341 -97.0654 -216.341 -216.341c0 -66.0518 29.8438 -125.204 76.6611 -164.942c11.2041 41.4443 41.4834 74.0635 82.5508 89.709c-26.1748 18.1836 -43.4072 48.3643 -43.4072 82.5703c0 55.4443 45.0918 100.536 100.536 100.536
c55.4434 0 100.536 -45.0918 100.536 -100.536c0 -34.3047 -17.3311 -64.6045 -43.6455 -82.749c40.9688 -15.8037 71.1094 -48.5625 82.1543 -90.0859z" />
<glyph glyph-name="uniF122" unicode="&#xf122;"
d="M468.512 391.814c52.1045 -45.7031 58.2695 -126.063 13.7217 -179.133l-210.813 -244.894c-4.08789 -4.75195 -10.0186 -7.4707 -16.2471 -7.4707h-0.0429688c-6.25195 0 -12.1807 2.76172 -16.2266 7.51367l-208.716 244.68
c-22.1777 26.4375 -32.668 59.7246 -29.6914 93.8906c2.97461 34.165 19.1162 65.1406 45.4033 87.2109c53.0674 44.5479 133.45 38.3828 179.132 -13.7217l31.0391 -36.2412l31.04 36.0918c22.7549 25.9453 54.0527 41.4004 88.3027 43.6484
c34.1865 2.29004 67.3027 -8.94824 93.0986 -31.5752zM449.588 240.383c29.5205 35.1924 25.4102 88.7529 -9.33496 119.213c-17.21 15.0928 -39.4092 22.5635 -62.0576 21.043c-22.8193 -1.49805 -43.7129 -11.7949 -58.7832 -28.9844l-47.1807 -54.8652
c-4.06641 -4.73047 -9.99707 -7.44922 -16.2256 -7.44922h-0.0214844c-6.25 0 -12.1797 2.74023 -16.2471 7.49219l-47.0732 55.0156c-16.6768 19.0312 -40.416 28.835 -64.3066 28.835c-19.4785 0 -39.0449 -6.52832 -54.9502 -19.8652
c-17.5107 -14.7061 -28.2568 -35.3418 -30.248 -58.1406c-1.99023 -22.7773 4.98828 -44.9756 19.6943 -62.5078l192.383 -225.542z" />
<glyph glyph-name="uniF102" unicode="&#xf102;"
d="M479.057 241.491c14.6631 -11.9121 32.9434 -26.7441 32.9434 -49.4043c0 -22.8506 -18.5127 -38.127 -33.4082 -50.3984c-5.86035 -4.8457 -15.7207 -12.9492 -16.9902 -16.6094c-1.16211 -3.80957 2.05371 -16.4824 3.97852 -24.0781
c4.92871 -19.4443 10.5146 -41.5117 -2.49707 -59.3477c-12.9277 -17.752 -35.4404 -19.2539 -55.2861 -20.6084c-7.95605 -0.529297 -21.2637 -1.41797 -24.6279 -3.89258c-3.42676 -2.51855 -8.4209 -14.8955 -11.4248 -22.2793
c-7.46875 -18.4072 -15.8906 -39.2471 -36.582 -46.293c-21.0098 -7.19434 -40.8145 5.45898 -56.6816 15.5508c-7.15234 4.57031 -17.9844 11.4678 -22.4912 11.4678c-4.6123 0 -15.6152 -6.98242 -22.9141 -11.5947
c-13.2451 -8.33691 -27.9277 -17.6455 -43.8389 -17.6455c-4.02051 0 -8.14648 0.592773 -12.3145 1.96777c-20.7773 6.70703 -29.2607 27.6963 -36.751 46.209c-3.02441 7.46875 -8.06055 19.9092 -11.4043 22.3428c-3.34277 2.43359 -16.4814 3.28027 -24.332 3.83008
c-18.8936 1.26953 -42.3789 2.83496 -55.7295 20.4814c-13.6895 18.1523 -7.65918 41.2578 -2.83496 59.8125c1.98926 7.55371 5.28906 20.2061 4.01953 24.0986c-1.29102 3.93652 -10.833 11.8701 -17.1582 17.1172c-14.5771 12.1025 -32.7314 27.1885 -32.7314 49.8906
c0 22.8506 18.5127 38.1045 33.3887 50.3789c5.88281 4.84473 15.7422 12.9482 17.0117 16.6084c1.18457 3.8291 -2.11523 16.6514 -4.0625 24.3105c-4.95117 19.2744 -10.5566 41.1094 1.94727 58.8184c12.7373 18.0264 35.3965 19.5508 55.3906 20.9043
c7.99805 0.529297 21.3916 1.41797 24.7344 3.89355c3.42676 2.51758 8.4209 14.874 11.4248 22.2783c7.46875 18.3652 15.8887 39.2266 36.6035 46.2725c21.0518 7.15137 41.0244 -5.71191 56.998 -16.1016c7.23633 -4.69629 18.1328 -11.7852 22.5547 -11.7852
c4.61133 0 15.6348 6.9834 22.9561 11.5957c16.6084 10.5146 35.4814 22.4688 56.1318 15.7197c20.7559 -6.68555 29.2607 -27.6748 36.7295 -46.1875c3.02539 -7.46973 8.08203 -19.9316 11.4463 -22.3643c3.32227 -2.41211 16.4824 -3.28027 24.332 -3.83008
c18.957 -1.27051 42.5479 -2.83594 55.666 -20.7139c13.1807 -18.0049 7.29883 -40.877 2.58105 -59.2637c-1.96777 -7.61621 -5.24707 -20.417 -3.97754 -24.3945c1.24707 -3.83008 11.2129 -11.9121 17.2002 -16.7568zM451.7 174.314
c5.77539 4.78125 16.4189 13.5615 17.9199 17.6855c-1.56543 3.93457 -11.7002 12.124 -17.2012 16.6094c-12.0391 9.75391 -25.6855 20.8184 -30.7852 36.582c-5.05664 15.6562 -0.65625 32.8154 3.21582 47.9648c1.98926 7.65918 5.26953 20.5225 3.97852 24.2471
c-2.51758 1.52246 -15.9951 2.43262 -24.0352 2.98242c-16.292 1.0791 -33.1133 2.2002 -46.2939 11.7217c-13.2656 9.54199 -19.6982 25.4307 -25.918 40.792c-3.00391 7.4043 -8.01953 19.8027 -11.2773 22.1514c-2.32812 -0.507812 -13.2451 -7.42578 -19.7617 -11.5518
c-13.4141 -8.48438 -28.6689 -18.1318 -45.5322 -18.1318c-16.9463 0 -32.1807 9.88086 -45.5947 18.5977c-6.49609 4.21094 -17.3711 11.2783 -21.2852 11.3408c-1.94629 -1.88281 -7.0459 -14.4082 -10.0498 -21.9199
c-6.15723 -15.1904 -12.5264 -30.8896 -25.665 -40.5166c-13.2656 -9.71094 -30.3828 -10.875 -46.9072 -11.9756c-7.87109 -0.52832 -21.0312 -1.41797 -24.2676 -3.74414c-0.253906 -2.47559 3.08887 -15.4668 5.07812 -23.2314
c4.10449 -16.0801 8.37891 -32.71 3.19434 -48.2188c-5.03613 -15.1279 -17.8369 -25.6865 -30.2139 -35.8838c-5.96582 -4.8877 -17.0742 -14.0488 -18.0254 -18.0264c0.90918 -3.25781 11.7217 -12.25 17.5186 -17.0742
c11.8701 -9.85938 25.3047 -21.0527 30.3623 -36.6455c5.03613 -15.6152 0.570312 -32.71 -3.34375 -47.7959c-2.00977 -7.61719 -5.33203 -20.417 -4.01953 -24.1621c2.58203 -1.75586 16.8213 -2.70801 24.459 -3.2168c16.2695 -1.07812 33.0703 -2.19922 46.251 -11.6992
c13.2656 -9.54297 19.6982 -25.4326 25.918 -40.8145c3.00391 -7.40527 7.99805 -19.8027 11.2773 -22.1523c2.32715 0.508789 13.2441 7.44727 19.7607 11.5527c13.4561 8.50586 28.6689 18.1533 45.5527 18.1533c16.8633 0 31.9492 -9.62695 45.2568 -18.0898
c6.45312 -4.10352 17.2227 -11.0225 21.0732 -11.0225c2.09473 1.9043 7.17285 14.4512 10.1768 21.9404c6.15723 15.1924 12.5264 30.9121 25.665 40.5391c13.2666 9.73242 31.0811 10.917 46.8018 11.9756c7.93359 0.507812 21.1992 1.41797 24.416 3.83008
c0.443359 2.68652 -2.85645 15.6982 -4.82422 23.4844c-4.04102 15.9531 -8.23047 32.4561 -3.08887 47.8594c5.03613 15.1279 17.8369 25.6855 30.2139 35.8633zM350.608 271.81c8.9707 -7.48926 10.1338 -20.8193 2.64355 -29.79l-109.173 -130.546
c-3.80762 -4.54883 -9.33105 -7.29883 -15.2969 -7.55273c-0.295898 -0.0419922 -0.614258 -0.0419922 -0.910156 -0.0419922c-5.60742 0 -11.0029 2.2002 -14.959 6.19922l-56.4922 56.4922c-8.27246 8.27148 -8.27246 21.6436 0 29.917
c8.27246 8.27246 21.6445 8.27246 29.917 0l40.1367 -40.1152l94.3438 112.793c7.46777 8.9502 20.7764 10.1768 29.79 2.64453z" />
<glyph glyph-name="uniF103" unicode="&#xf103;"
d="M256 448c141.167 0 256 -114.853 256 -256s-114.833 -256 -256 -256s-256 114.833 -256 256s114.833 256 256 256zM256 -24.3408c119.275 0 216.341 97.0459 216.341 216.341s-97.0459 216.341 -216.341 216.341c-119.275 0 -216.341 -97.0459 -216.341 -216.341
s97.0654 -216.341 216.341 -216.341zM369.227 164.635c7.69434 -7.73242 7.69434 -20.2256 0 -27.96c-7.7334 -7.69336 -20.2256 -7.69336 -27.96 0l-85.2666 85.0693l-85.0693 -85.0684c-8.30859 -7.11914 -20.8408 -6.14746 -27.96 2.16113
c-6.36426 7.41602 -6.36426 18.3818 0 25.7979l99.1484 99.1484c7.7334 7.69336 20.2256 7.69336 27.96 0z" />
<glyph glyph-name="uniF108" unicode="&#xf108;"
d="M511.717 235.855c0.0429688 -0.40625 0.277344 -0.767578 0.27832 -1.19531v-277.326c0 -0.491211 -0.234375 -0.875 -0.277344 -1.34473c-0.0849609 -1.40723 -0.448242 -2.75195 -0.832031 -4.15918c-0.383789 -1.43066 -0.74707 -2.79492 -1.40723 -4.0752
c-0.213867 -0.40625 -0.213867 -0.854492 -0.448242 -1.25879c-0.832031 -1.42969 -1.85645 -2.62402 -2.94434 -3.77637c-0.149414 -0.170898 -0.255859 -0.383789 -0.426758 -0.554688c-1.74902 -1.74902 -3.79688 -3.00781 -5.97266 -4.03223
c-0.555664 -0.255859 -1.08789 -0.448242 -1.64355 -0.661133c-2.36719 -0.875 -4.82129 -1.47168 -7.33887 -1.47168h-0.0429688h-469.322c-11.7764 0 -21.333 9.53613 -21.333 21.333v277.326c0 0.427734 0.255859 0.789062 0.277344 1.2168
c0.106445 1.85547 0.619141 3.60547 1.21582 5.41895c0.383789 1.08789 0.576172 2.17578 1.13086 3.19922c0.169922 0.320312 0.149414 0.683594 0.34082 1.00293c0.896484 1.53613 2.21777 2.60352 3.41309 3.81934c0.554688 0.554688 0.832031 1.34375 1.45117 1.83496
l34.8359 28.5215v82.9854c0 11.7754 9.55664 21.332 21.333 21.332h106.175l72.3184 59.1777c7.84961 6.44336 19.1562 6.44336 27.0283 0l72.3184 -59.1777h106.151c11.7764 0 21.333 -9.55664 21.333 -21.332v-82.9854l34.8584 -28.501
c0.74707 -0.618164 1.08789 -1.51465 1.72754 -2.21875c1.06738 -1.13086 2.2832 -2.06836 3.11523 -3.45605c0.191406 -0.319336 0.169922 -0.661133 0.34082 -0.980469c0.53418 -1.04492 0.767578 -2.15527 1.13086 -3.26367
c0.59668 -1.79199 1.10938 -3.54102 1.21582 -5.39746zM255.999 399.094l-18.4521 -15.1035h36.9268zM85.3369 341.325v-119.678l170.685 -100.861l170.642 100.841v119.698h-341.326zM42.6709 -21.334h369.955l-369.955 218.599v-218.599zM469.329 -5.27051h-0.000976562
v202.513l-171.346 -101.246z" />
<glyph glyph-name="uniF12A" unicode="&#xf12a;"
d="M397.953 117.907c13.7539 0 24.8711 -11.1182 24.8701 -24.873v-78.123c0 -41.1631 -33.4775 -74.6152 -74.6152 -74.6152h-273.593c-41.1377 0 -74.6152 33.4775 -74.6152 74.6152v323.337c0 41.1377 33.4775 74.6162 74.6152 74.6143h144.507
c13.7539 0 24.8721 -11.1172 24.8721 -24.8711s-11.1182 -24.8721 -24.8721 -24.8721h-144.507c-13.7285 0 -24.8711 -11.1416 -24.8711 -24.8711v-323.337c0 -13.7285 11.1416 -24.8711 24.8711 -24.8711h273.595c13.7285 0 24.8711 11.1416 24.8711 24.8711v78.124
c0 13.7539 11.1172 24.8721 24.8721 24.8721zM484.185 416.023c37.083 -37.1094 37.083 -97.5479 0.0224609 -134.631l-168.159 -168.16c-24.6982 -24.5977 -57.4297 -38.1289 -92.2012 -38.1289h-55.7129c-13.7539 0 -24.8711 11.1182 -24.8711 24.8721v55.7129
c0 34.7705 13.5303 67.502 38.1045 92.1748l168.384 168.384c18.9023 18.9277 44.0479 27.9814 69.0449 27.4336c23.752 -0.496094 47.332 -9.60059 65.3887 -27.6572zM280.905 148.424l110.978 110.98l-64.3184 64.3193l-111.004 -111.005
c-15.1719 -15.2217 -23.5537 -35.5166 -23.5537 -57.0312v-30.8418h30.8418c21.5137 0 41.8096 8.38184 57.0566 23.5781zM449.015 316.535c17.709 17.7334 17.709 46.585 -0.000976562 64.3184c-17.708 17.708 -46.5596 17.7588 -64.3184 0l-21.9619 -21.9619
l64.3193 -64.3193z" />
<glyph glyph-name="uniF116" unicode="&#xf116;"
d="M216.341 191.802c0 21.9033 17.7559 39.6592 39.6592 39.6592s39.6592 -17.7559 39.6592 -39.6592c0 -21.9023 -17.7559 -39.6592 -39.6592 -39.6592s-39.6592 17.7568 -39.6592 39.6592zM335.319 191.802c0 21.9033 17.7559 39.6592 39.6582 39.6592
c21.9033 0 39.6592 -17.7559 39.6592 -39.6592c0 -21.9023 -17.7559 -39.6592 -39.6592 -39.6592c-21.9023 0 -39.6582 17.7568 -39.6582 39.6592zM97.3633 191.802c0 21.9033 17.7559 39.6592 39.6592 39.6592c21.9023 0 39.6582 -17.7559 39.6582 -39.6592
c0 -21.9023 -17.7559 -39.6592 -39.6582 -39.6592c-21.9033 0 -39.6592 17.7568 -39.6592 39.6592zM256 448c141.167 0 256 -114.853 256 -256s-114.833 -256 -256 -256s-256 114.833 -256 256s114.833 256 256 256zM256 -24.3408
c119.275 0 216.341 97.0459 216.341 216.341s-97.0459 216.341 -216.341 216.341c-119.275 0 -216.341 -97.0459 -216.341 -216.341s97.0654 -216.341 216.341 -216.341z" />
<glyph glyph-name="uniF11E" unicode="&#xf11e;"
d="M448 373.333c35.3486 0 64 -28.6504 64 -64v-234.667c0 -35.3486 -28.6514 -64 -64 -64h-384c-35.3486 0 -64 28.6514 -64 64v234.667c0 35.3486 28.6514 64 64 64h384zM469.333 74.667v234.666c0 11.7764 -9.55664 21.333 -21.333 21.333h-384
c-11.7764 0 -21.333 -9.55664 -21.333 -21.333v-234.666c0 -11.7764 9.55664 -21.333 21.333 -21.333h384c11.7764 0 21.333 9.55664 21.333 21.333zM142.293 261.333c8.36328 -8.3623 8.36328 -21.9297 0.000976562 -30.2939
c-3.66895 -4.0957 -8.78906 -6.63477 -14.293 -7.04004c-2.79492 0.0429688 -5.54688 0.619141 -8.10742 1.70703c-5.35449 1.94141 -9.57812 6.16504 -11.5195 11.5195c-1.08789 2.56055 -1.66406 5.3125 -1.70703 8.10742c-0.491211 5.84473 1.42871 11.627 5.33301 16
c8.3623 8.36328 21.9297 8.36328 30.293 0zM142.293 154.667c8.36328 -8.29883 8.42676 -21.8027 0.128906 -30.166l-0.12793 -0.12793c-3.66895 -4.0957 -8.78906 -6.63477 -14.293 -7.04004c-2.79492 0.0429688 -5.54688 0.619141 -8.10742 1.70703
c-2.64453 0.981445 -5.03418 2.5166 -7.04004 4.47949c-8.83105 7.80859 -9.64258 21.291 -1.83496 30.123c0.320312 0.363281 0.640625 0.704102 0.981445 1.02441c2.00488 1.98438 4.39453 3.49902 7.04004 4.48047c7.93555 3.34863 17.1094 1.57812 23.2529 -4.48047z
M227.499 261.205c8.29785 -8.3623 8.23438 -21.8662 -0.125977 -30.166c-3.96777 -3.92578 -9.32324 -6.14453 -14.8906 -6.1875l0.852539 -0.852539c-2.79492 0.0429688 -5.54688 0.619141 -8.10742 1.70703c-2.58008 1.08789 -4.9707 2.60254 -7.03906 4.47949
c-1.94141 2.02734 -3.45605 4.41602 -4.48047 7.04004c-1.08789 2.56055 -1.66406 5.3125 -1.70703 8.10742c-0.491211 5.84473 1.42871 11.627 5.33301 16c8.3623 8.29883 21.8662 8.23535 30.165 -0.12793zM312.96 261.333
c3.98926 -4.03223 6.22949 -9.47168 6.18848 -15.1475c-0.0429688 -2.79492 -0.619141 -5.54688 -1.70703 -8.10645c-1.02441 -2.62402 -2.53906 -5.0127 -4.48047 -7.04004c-3.7334 -4.01074 -8.83203 -6.52832 -14.293 -7.04004
c-2.79492 0.0429688 -5.54688 0.619141 -8.10742 1.70703c-2.58008 1.08789 -4.9707 2.60254 -7.03906 4.47949c-1.94141 2.02734 -3.45605 4.41602 -4.48047 7.04004c-1.08789 2.56055 -1.66406 5.3125 -1.70703 8.10742c-0.491211 5.84473 1.42871 11.627 5.33301 16
c2.06934 1.87695 4.45898 3.3916 7.04004 4.48047c7.93555 3.34863 17.1094 1.57812 23.2529 -4.48047zM399.147 261.333c3.98828 -4.03223 6.22852 -9.47168 6.1875 -15.1475c-0.0429688 -2.79492 -0.619141 -5.54688 -1.70703 -8.10645
c-1.94141 -5.35547 -6.16504 -9.5791 -11.5195 -11.5205c-2.49609 -1.38672 -5.27051 -2.26074 -8.10742 -2.55957c-5.6748 -0.0419922 -11.1152 2.19824 -15.1475 6.18652c-8.59766 8.36328 -8.78906 22.123 -0.426758 30.7207
c8.36328 8.59766 22.123 8.79004 30.7207 0.426758zM398.293 154.667c8.36328 -8.29883 8.42676 -21.8027 0.128906 -30.166c-4.03223 -4.0752 -9.53613 -6.33594 -15.2744 -6.31543l0.852539 -0.852539c-2.79492 0.0429688 -5.54688 0.619141 -8.10742 1.70703
c-2.62402 1.02441 -5.0127 2.53906 -7.04004 4.47949l-2.55957 3.2002c-0.810547 1.19531 -1.45117 2.47559 -1.91992 3.83984c-0.619141 1.2168 -1.04492 2.49609 -1.28027 3.84082c-0.106445 1.42969 -0.106445 2.83789 0 4.2666
c-0.490234 5.75977 1.25879 11.499 4.90723 16c2.02734 1.94141 4.41602 3.45605 7.04004 4.48047c7.93555 3.34863 17.1094 1.57812 23.2529 -4.48047zM298.667 160c11.7764 0 21.332 -9.55664 21.332 -21.333s-9.55664 -21.333 -21.333 -21.333h-85.333
c-11.7764 0 -21.333 9.55664 -21.333 21.333s9.55664 21.333 21.334 21.333h85.333z" />
<glyph glyph-name="uniF123" unicode="&#xf123;"
d="M511.36 165.163c0.426758 -1.68652 0.639648 -3.41406 0.639648 -5.16309v-149.333c0 -35.2852 -28.7148 -64 -64 -64h-384c-35.2852 0 -64 28.7148 -64 64v149.333c0 1.74902 0.212891 3.47656 0.661133 5.16309l55.8936 223.786
c7.19043 28.5225 32.7041 48.3838 62.0596 48.3838h0.0205078h274.752h0.0214844c29.3545 0 54.8701 -19.8613 62.0586 -48.3408v-0.0429688zM97.9199 378.581l-30.5713 -122.368h103.318c11.7764 0 21.333 -9.55664 21.333 -21.333c0 -35.2852 28.7148 -64 64 -64
s64 28.7148 64 64c0 11.7764 9.55664 21.333 21.333 21.333h103.296l-30.5713 122.389c-2.41016 9.45117 -10.9004 16.0645 -20.6719 16.0645h-274.772c-9.79199 0 -18.3047 -6.61328 -20.6934 -16.085zM469.333 10.667v146.709l-14.0371 56.1709h-94.7842
c-9.89844 -48.6182 -53.0127 -85.333 -104.512 -85.333s-94.6133 36.7139 -104.512 85.333h-94.7842l-14.0371 -56.1709v-146.709c0 -11.7539 9.57812 -21.333 21.333 -21.333h384c11.7539 0 21.333 9.57812 21.333 21.333z" />
<glyph glyph-name="uniF135" unicode="&#xf135;"
d="M466.031 436.706c25.1045 -0.0986328 45.5332 -20.2705 45.9688 -45.375v-291.468v-0.198242c0.119141 -25.501 -20.4678 -46.2656 -45.9688 -46.3652h-124.632v-64h42.6006v-42.0068h-256v42.6006h42.6006v64h-124.632
c-25.3418 0.0996094 -45.8701 20.6279 -45.9688 45.9697v291.468c0.435547 25.1045 20.8643 45.2764 45.9688 45.375h420.062zM298.601 -10.7002v64h-85.2002v-64h85.2002zM469.399 99.8633l0.395508 291.468c0 1.8623 -1.50488 3.36816 -3.36816 3.36816h-420.062
c-1.8623 0 -3.36816 -1.50586 -3.36816 -3.36816v-291.468c-0.0205078 -1.72363 1.26758 -3.16992 2.97168 -3.36816h420.062c1.86133 0 3.36816 1.50488 3.36816 3.36816zM149.399 159.9v170.799h42.6006v-170.799h-42.6006zM234.601 160.099v128h42.6016v-128h-42.6016z
M320 159.901v85.3984h42.6006v-85.3984h-42.6006z" />
<glyph glyph-name="uniF132" unicode="&#xf132;"
d="M385.11 447.769c34.9863 -5.25 60.7334 -35.8896 59.8926 -71.2559v-177.31v-0.923828v-241.278c0 -7.87598 -4.41016 -15.0996 -11.4238 -18.6914c-3.02441 -1.55371 -6.2998 -2.30957 -9.57617 -2.30957c-4.32617 0 -8.61035 1.32324 -12.2637 3.94824
l-155.868 112.039l-155.616 -111.829c-6.40527 -4.6416 -14.8477 -5.27148 -21.8408 -1.63867c-7.01367 3.5918 -11.4238 10.8164 -11.4238 18.6914v420.016c-0.693359 34.7998 25.0332 65.292 59.873 70.542c1.02832 0.147461 2.0791 0.231445 3.12891 0.231445h252.01
c1.0498 0 2.09961 -0.0839844 3.1084 -0.231445zM403.003 -2.04785v159.815l-111.157 -79.9072zM403.003 377.017c0.31543 14.2812 -9.3877 26.3145 -22.7861 28.9814h-248.439c-13.3574 -2.66699 -23.0596 -14.6162 -22.7861 -28.3506v-379.485l294.012 211.331v167.523z
" />
<glyph glyph-name="uniF104" unicode="&#xf104;"
d="M510.344 339.962c1.0752 -2.625 1.63477 -5.40039 1.65723 -8.21777v-0.0224609v-172.098c0 -11.8965 -9.61719 -21.5117 -21.5127 -21.5117c-11.8965 0 -21.5127 9.61621 -21.5127 21.5117v119.953l-187.178 -188.254
c-4.36719 -4.36621 -10.3691 -6.64648 -16.543 -6.30273c-6.17383 0.365234 -11.875 3.35645 -15.6826 8.23926l-65.2471 83.5312l-148.025 -140.152c-4.15234 -3.91504 -9.46484 -5.87305 -14.7793 -5.87305c-5.70117 0 -11.3799 2.2373 -15.6396 6.68945
c-8.15234 8.62695 -7.78809 22.2441 0.838867 30.4189l165.215 156.416c4.3877 4.15234 10.1533 6.28223 16.4131 5.83008c6.02344 -0.452148 11.5957 -3.4209 15.3379 -8.21777l64.7949 -82.9512l170.293 171.259h-120.384c-11.8965 0 -21.5127 9.61621 -21.5127 21.5127
c0 11.8975 9.61719 21.5127 21.5127 21.5127h172.099c0.646484 0 1.18359 -0.300781 1.8291 -0.34375c2.15137 -0.194336 4.30176 -0.452148 6.3457 -1.29102c2.49512 -1.0332 4.71094 -2.55957 6.64746 -4.38867c0.107422 -0.107422 0.236328 -0.128906 0.365234 -0.258789
c1.97949 -1.97949 3.57129 -4.3457 4.66797 -6.99121z" />
<glyph glyph-name="uniF113" unicode="&#xf113;"
d="M437.342 373.272c66.4629 -66.9951 90.6924 -164.721 63.1719 -255.02c-2.52051 -8.11621 -6.89355 -15.583 -12.6465 -21.709c-21.0186 -22.416 -56.377 -23.5391 -78.7939 -2.46191l-55.4121 55.3936c-14.5186 13.5332 -38.1572 13.5518 -53.2266 -0.473633
c-15.8975 -14.8135 -16.7627 -39.791 -1.96973 -55.6875l54.3682 -54.9404c5.98926 -6.28418 10.3223 -13.6514 12.8828 -21.5703c9.39648 -29.293 -6.7959 -60.7314 -36.0488 -70.1475c-24.1904 -7.15137 -48.8926 -10.6572 -73.3584 -10.6572
c-66.8955 0 -132.061 26.1797 -180.755 74.7373c-48.4395 48.3018 -75.1504 112.579 -75.2295 180.992c-0.0996094 68.415 26.4756 132.75 74.7764 181.17c99.7344 99.9707 262.23 100.148 362.162 0.453125zM462.831 129.854
c23.2441 76.2939 2.77832 158.949 -53.4424 215.661c-42.2148 42.0771 -97.6074 63.1152 -152.98 63.1152c-55.5703 0 -111.16 -21.1953 -153.414 -63.5479c-40.875 -40.9932 -63.3516 -95.4209 -63.2725 -153.315c0.0791016 -57.874 22.6738 -112.263 63.6465 -153.139
c56.2598 -56.1211 138.463 -76.8643 214.677 -54.3086c8.15527 2.63965 12.9023 11.8574 10.1641 20.4473c-0.749023 2.30469 -2.02832 4.4707 -3.68359 6.20508l-54.4668 55.0781c-30.0205 32.207 -28.2676 82.1631 3.52539 111.771
c30.0996 28.0508 77.2979 28.0713 107.438 0l55.4521 -55.4316c6.16602 -5.75195 16.5068 -5.39844 22.6729 1.16211c1.67578 1.79199 2.93555 3.97852 3.68457 6.30273zM129.628 284.766c0 17.7334 14.375 32.1084 32.1084 32.1084s32.1084 -14.375 32.1084 -32.1084
s-14.375 -32.1084 -32.1084 -32.1084s-32.1084 14.375 -32.1084 32.1084zM94.1699 179.575c0 17.7324 14.375 32.1084 32.1084 32.1084s32.1084 -14.376 32.1084 -32.1084c0 -17.7334 -14.375 -32.1094 -32.1084 -32.1094s-32.1084 14.376 -32.1084 32.1094z
M138.492 83.6416c0 17.7334 14.375 32.1094 32.1084 32.1094c17.7324 0 32.1084 -14.376 32.1084 -32.1094c0 -17.7324 -14.376 -32.1084 -32.1084 -32.1084c-17.7334 0 -32.1084 14.376 -32.1084 32.1084zM236.001 321.405c0 17.7334 14.375 32.1084 32.1084 32.1084
s32.1084 -14.375 32.1084 -32.1084c0 -17.7324 -14.375 -32.1084 -32.1084 -32.1084s-32.1084 14.376 -32.1084 32.1084zM331.934 277.084c0 17.7324 14.375 32.1084 32.1084 32.1084s32.1084 -14.376 32.1084 -32.1084c0 -17.7334 -14.375 -32.1094 -32.1084 -32.1094
s-32.1084 14.376 -32.1084 32.1094z" />
<glyph glyph-name="uniF12E" unicode="&#xf12e;"
d="M437.13 373.061c99.8262 -99.8467 99.8262 -262.29 -0.000976562 -362.117c-49.9219 -49.9229 -115.496 -74.874 -181.067 -74.874s-131.145 24.9512 -181.067 74.874c-48.3564 48.3564 -74.9941 112.66 -74.9941 181.049s26.6377 132.692 74.9941 181.068
c99.8262 99.8271 262.31 99.8271 362.136 0zM409.084 38.9902c84.3555 84.3555 84.3555 221.649 0 306.024c-84.376 84.3564 -221.669 84.376 -306.045 0c-40.8584 -40.8779 -63.3711 -95.2246 -63.3711 -153.022c0 -57.7969 22.5127 -112.144 63.3711 -153.002
c84.376 -84.376 221.669 -84.376 306.045 0zM341.528 137.17c7.75488 -7.73535 7.75488 -20.29 0.0224609 -28.0459c-3.86816 -3.86719 -8.96582 -5.81152 -14.0439 -5.81152s-10.1543 1.92383 -14.0225 5.79199l-56.1904 56.1113l-56.1914 -56.1113
c-3.86719 -3.84766 -8.94434 -5.79199 -14.0225 -5.79199s-10.1758 1.92383 -14.043 5.81152c-7.73535 7.75586 -7.73535 20.3105 0.0195312 28.0459l56.1514 56.0713l-56.1514 56.0723c-7.75488 7.73535 -7.75488 20.291 -0.0195312 28.0459
c7.75488 7.77539 20.3096 7.75488 28.0645 0.0195312l56.1914 -56.1113l56.1904 56.1113c7.75488 7.73535 20.3096 7.75586 28.0645 -0.0195312c7.71582 -7.75586 7.71582 -20.3115 -0.0195312 -28.0459l-56.1514 -56.0723z" />
<glyph glyph-name="uniF114" unicode="&#xf114;"
d="M397.785 405.164c117.515 -78.166 149.549 -237.334 71.4258 -354.849c-37.835 -56.9229 -95.5898 -95.6953 -162.623 -109.196c-16.999 -3.43457 -34.0811 -5.11914 -51.0371 -5.11914c-46.665 0 -92.3691 12.8174 -132.85 37.6006l-95.6104 -26.1045
c-8.10449 -2.17676 -16.5928 0.46875 -21.9463 6.8457s-6.52637 15.293 -2.96484 22.7998c20.3887 43.3154 23.8662 92.3906 9.76855 138.181c-3.41309 10.877 -6.12109 22.0742 -8.0625 33.1855c-11.667 67.375 3.58301 135.238 42.9326 191.139
c39.3916 55.8779 98.1709 93.0947 165.523 104.781c1.10938 0.192383 2.21777 0.299805 3.32715 0.320312c63.7061 10.2158 128.307 -3.81836 182.116 -39.584zM433.7 73.9258c65.1133 97.9355 38.4326 230.572 -59.5039 295.686
c-45.5986 30.3066 -100.409 41.8877 -154.348 32.5674c-1.02344 -0.170898 -2.02637 -0.276367 -3.0498 -0.319336c-54.9619 -10.2588 -102.842 -40.9922 -135.09 -86.7832c-32.8008 -46.5801 -45.5127 -103.141 -35.7871 -159.274
c1.60059 -9.25684 3.88184 -18.6201 6.76074 -27.8115c12.9668 -42.207 13.7783 -86.6113 2.79395 -128.541l65.0918 17.7656c1.85645 0.511719 3.75391 0.767578 5.63086 0.767578c4.15918 0 8.27637 -1.21582 11.8164 -3.56152
c47.4746 -31.5645 104.377 -42.7402 160.17 -31.501c55.8359 11.2402 103.972 43.5518 135.515 91.0059zM256.084 322.094c11.7949 0 21.3271 -9.53418 21.3271 -21.3281v-127.965c0 -11.7734 -9.5332 -21.3281 -21.3271 -21.3281s-21.3271 9.53418 -21.3271 21.3281
v127.965c0 11.7939 9.5332 21.3281 21.3271 21.3281zM275.685 93.4834c1.06641 -2.55957 1.70605 -5.33203 1.70605 -8.10547c0 -2.77246 -0.639648 -5.5459 -1.70605 -8.10449c-1.06738 -2.55957 -2.55859 -4.90527 -4.47852 -7.03809
c-2.1543 -1.91992 -4.47949 -3.41309 -7.03809 -4.47852c-2.55859 -1.06641 -5.30957 -1.70605 -8.08301 -1.70605c-2.77246 0 -5.5459 0.639648 -8.10449 1.70605c-2.55957 1.06641 -4.90527 2.55957 -7.03809 4.47852c-1.91992 2.13281 -3.41309 4.47852 -4.47852 7.03809
c-1.06641 2.55957 -1.70605 5.33203 -1.70605 8.10449c0 2.77344 0.639648 5.5459 1.70605 8.10547c1.06641 2.77148 2.55859 5.11816 4.47852 7.03711c4.88379 4.88477 12.3701 7.25195 19.1738 5.75879c1.49316 -0.213867 2.77148 -0.618164 4.05176 -1.2793
c1.28027 -0.448242 2.55957 -1.06738 3.62598 -1.91992c1.27832 -0.639648 2.3457 -1.70605 3.41211 -2.55957c1.91992 -1.91895 3.41211 -4.26465 4.47852 -7.03711z" />
<glyph glyph-name="uniF110" unicode="&#xf110;"
d="M505.281 37.0352c8.55176 -8.66211 8.50684 -22.5615 -0.0878906 -31.1582l-36.0225 -36.0215c-22.2529 -22.165 -51.5127 -33.8555 -81.3896 -33.8555c-15.6455 0 -31.4463 3.22656 -46.5176 9.79004c-145.92 63.8867 -262.247 179.045 -327.55 324.322l-3.29297 7.2041
c-19.5566 43.4688 -10.1211 95.3125 23.4697 129.035l35.7334 35.2705c8.66211 8.55176 22.6299 8.50781 31.2246 -0.154297l78.4512 -79.1143c7.2041 -7.24805 8.48633 -18.4746 3.11621 -27.1592l-40.2637 -65.1924c54.1865 -72.7266 118.692 -136.637 191.84 -190.115
l65.0811 40.1973c8.72949 5.43555 20.0664 4.04395 27.3145 -3.27148zM437.923 1.125l20.4639 20.4619l-51.0703 51.6455l-63.0703 -38.9385c-7.80078 -4.81738 -17.7666 -4.33105 -25.0605 1.28125l-10.3857 7.95605c-77.3457 56.3086 -145.854 124.219 -203.177 201.476
l-7.88965 10.4971c-5.45801 7.27148 -5.90039 17.1494 -1.12695 24.8838l39.0264 63.2031l-50.6504 51.0928l-19.8896 -19.6465c-20.6182 -20.6846 -26.4521 -52.7061 -14.3857 -79.5117l3.27051 -7.22559c60.8379 -135.312 169.145 -242.535 304.986 -302.025
c27.0928 -11.8232 58.0537 -5.98828 78.959 14.8506z" />
<glyph glyph-name="uniF105" unicode="&#xf105;"
d="M469.333 362.667c11.7979 0 21.333 -9.55762 21.333 -21.334s-9.53613 -21.333 -21.333 -21.333h-21.333v-320c0 -35.2852 -28.7148 -64 -64 -64h-256c-35.2852 0 -64 28.7148 -64 64v320h-21.333c-11.7979 0 -21.333 9.55762 -21.333 21.334
s9.53613 21.333 21.333 21.333h42.667h64v64c0 11.7764 9.53613 21.333 21.333 21.333h170.666c11.7979 0 21.334 -9.55664 21.333 -21.333v-64h64h42.667zM192 405.333v-42.667h128v42.667h-128zM405.333 0h0.000976562v320h-64h-170.667h-64v-320
c0 -11.7539 9.55664 -21.333 21.333 -21.333h256c11.7764 0 21.333 9.57812 21.333 21.333zM192 277.333c11.7969 0 21.333 -9.55664 21.333 -21.333v-192c0 -11.7764 -9.53613 -21.333 -21.333 -21.333s-21.333 9.55664 -21.333 21.333v192
c0 11.7764 9.53613 21.333 21.333 21.333zM320 277.333c11.7969 0 21.333 -9.55664 21.333 -21.333v-192c0 -11.7764 -9.53613 -21.333 -21.333 -21.333s-21.333 9.55664 -21.333 21.333v192c0 11.7764 9.53613 21.333 21.333 21.333z" />
<glyph glyph-name="uniF11B" unicode="&#xf11b;"
d="M405.333 277.333c35.2861 0 64 -28.7139 64.001 -64v-213.333c0 -35.2852 -28.7148 -64 -64 -64h-298.667c-35.2852 0 -64 28.7148 -64 64v213.334c0 35.2852 28.7148 64 64 64v21.333c0 82.3252 66.9863 149.333 149.333 149.333s149.333 -67.0078 149.333 -149.334
v-21.333zM149.333 298.667v-21.333h213.334v21.333c0 58.8164 -47.8506 106.667 -106.667 106.667s-106.667 -47.8506 -106.667 -106.667zM426.667 0v213.333c0 11.7764 -9.57812 21.333 -21.333 21.333h-298.667c-11.7539 0 -21.333 -9.55664 -21.333 -21.333v-213.333
c0 -11.7764 9.57812 -21.333 21.333 -21.333h298.667c11.7539 0 21.333 9.55664 21.333 21.333zM256 202.667c35.2852 0 64 -28.7148 64 -64c0 -27.7764 -17.8994 -51.2432 -42.667 -60.0752v-35.9248c0 -11.7969 -9.55664 -21.333 -21.333 -21.333
s-21.333 9.53613 -21.333 21.333v35.9248c-24.7676 8.83203 -42.667 32.2988 -42.667 60.0752c0 35.2852 28.7148 64 64 64zM256 117.333c11.7549 0 21.333 9.55762 21.333 21.334s-9.57812 21.333 -21.333 21.333s-21.333 -9.55762 -21.333 -21.334
s9.57812 -21.333 21.333 -21.333z" />
<glyph glyph-name="uniF10A" unicode="&#xf10a;"
d="M255.893 297.431c58.8418 0 106.711 -47.8711 106.711 -106.711s-47.8701 -106.711 -106.711 -106.711c-58.8398 0 -106.711 47.8711 -106.711 106.711s47.8701 106.711 106.711 106.711zM255.893 126.693c35.3008 0 64.0273 28.7266 64.0273 64.0264
s-28.7061 64.0273 -64.0273 64.0273c-35.2998 0 -64.0264 -28.7275 -64.0264 -64.0273s28.7266 -64.0264 64.0264 -64.0264zM493.688 254.49c10.501 -1.49414 18.3115 -10.5 18.3115 -21.1289v-85.3691c0 -10.8418 -8.11035 -19.9551 -18.8672 -21.1934l-62.1055 -7.25586
l35.9189 -49.4072c6.40234 -8.49414 5.57031 -20.4023 -1.96289 -27.9365l-60.3984 -60.3984c-7.5127 -7.55469 -19.4004 -8.36621 -27.9365 -1.96289l-48.2334 36.2822l-9.77539 -60.6758c-1.49316 -10.458 -10.501 -18.248 -21.1289 -18.248h-85.3691
c-10.6289 0 -19.6348 7.81152 -21.1289 18.3115l-8.53711 59.7578l-49.4707 -35.3633c-8.49414 -6.38281 -20.4033 -5.61328 -27.9365 1.96289l-60.3984 60.3975c-7.53418 7.53418 -8.36719 19.4209 -1.96387 27.9375l36.2822 48.2324l-60.6768 9.77539
c-10.501 1.45117 -18.3115 10.458 -18.3115 21.0859v85.3691c0 10.6279 7.81055 19.6348 18.3115 21.1289l59.7588 8.53711l-35.3643 49.4932c-6.40332 8.51465 -5.57031 20.4453 1.98535 27.958l60.3975 60.1846c7.44922 7.44922 19.165 8.34473 27.6807 2.11328
l49.3213 -36.0703l9.98828 60.4844c1.49414 10.501 10.501 18.3115 21.1289 18.3115h85.3691c10.4785 0 19.3994 -7.59766 21.0645 -17.9482l9.60449 -59.7588l49.5781 34.8311c8.51562 6.40332 20.4668 5.52832 27.9795 -2.1123l60.6328 -61.4873
c7.42773 -7.53418 8.21777 -19.3574 1.85742 -27.8301l-36.2822 -48.2334zM469.337 167.008h-0.000976562v47.8711l-41.4248 5.91211c-15.5586 2.02832 -28.8545 12.6348 -34.3184 27.6807c-5.67676 12.6982 -3.8623 29.0459 5.25 41.3613l25.333 33.6572l-34.6807 35.1289
l-33.3369 -24.9277c-12.4209 -9.19824 -28.7695 -10.9492 -42.748 -4.80273c-13.7441 4.95215 -24.3516 18.2266 -26.4004 34.1055l-6.61621 41.1475h-48.6816l-5.91211 -41.4463c-2.02734 -15.5586 -12.6348 -28.8545 -27.6807 -34.3184
c-12.6768 -5.63477 -29.0039 -3.88379 -41.3398 5.25l-34.5107 25.2266l-34.2969 -34.1895l25.1201 -33.3789c9.19824 -12.5068 11.0137 -28.834 4.80176 -42.834c-4.9082 -13.6797 -18.1621 -24.3096 -34.0195 -26.3789l-41.1904 -5.91211v-48.3623l41.4258 -5.88965
c15.6436 -2.04883 28.876 -12.6992 34.3398 -27.7246c5.67676 -12.6768 3.8623 -29.0254 -5.25 -41.3398l-25.248 -33.5498l34.1895 -34.1904l33.4014 25.1416c12.5283 9.24121 28.8555 11.0117 42.834 4.82324c13.6797 -4.9082 24.3086 -18.1621 26.3789 -34.0195
l5.91211 -41.1689h48.3623l5.88965 41.4248c2.07129 15.6221 12.6992 28.876 27.7236 34.3184c12.6133 5.69922 28.9834 3.88379 41.3408 -5.25l33.5498 -25.248l34.1895 34.1904l-25.1406 33.4004c-9.21973 12.4434 -11.0342 28.8135 -4.84473 42.8135
c4.92969 13.7012 18.1836 24.3301 34.041 26.3994z" />
<glyph glyph-name="uniF129" unicode="&#xf129;"
d="M375.304 448c35.7715 0 64.8701 -29.0986 64.8701 -64.8701v-139.766h-368.345v139.356c-0.328125 35.5859 28.5264 64.9316 64.2764 65.2793h239.198zM399.247 284.291h-0.000976562v98.4297c0 13.6094 -10.7227 24.3525 -23.9424 24.3525h-239.015
c-12.9941 -0.123047 -23.6562 -10.9697 -23.5332 -24.168v-98.6143h286.491zM71.8291 79.2451h368.345v-143.245h-368.345v143.245zM399.247 -23.0732v61.3916h-286.491v-61.3916h286.491zM71.8291 120.173v81.8545h368.345v-81.8545h-368.345z" />
<glyph glyph-name="uniF101" unicode="&#xf101;"
d="M448 416c35.2852 0 64 -28.7148 64 -64v-320c0 -35.2852 -28.7148 -64 -64 -64h-384c-35.2852 0 -64 28.7148 -64 64v320c0 35.2852 28.7148 64 64 64h384zM469.333 32h0.000976562v21.333h-426.667v-21.333c0 -11.7539 9.57812 -21.333 21.333 -21.333h384
c11.7539 0 21.333 9.57812 21.333 21.333zM469.333 96v256c0 11.7539 -9.57812 21.333 -21.333 21.333h-384c-11.7539 0 -21.333 -9.57812 -21.333 -21.333v-256h426.666zM340.928 258.624c6.35742 -3.88281 10.2197 -10.7734 10.2197 -18.1992
c0 -7.42383 -3.88379 -14.3135 -10.2197 -18.1973l-125.652 -76.7998c-3.39258 -2.09082 -7.25391 -3.13574 -11.1152 -3.13574c-3.58398 0 -7.18945 0.917969 -10.4326 2.73145c-6.74023 3.77539 -10.9004 10.8799 -10.9004 18.6025v153.6
c0 7.72363 4.16016 14.8271 10.8799 18.6035c6.74121 3.77637 14.9971 3.64746 21.5684 -0.405273zM225.493 201.664l63.4238 38.7617l-63.4238 38.7637v-77.5254z" />
<glyph glyph-name="uniF121" unicode="&#xf121;"
d="M256 448c141.163 0 256 -114.837 256 -256s-114.837 -256 -256 -256s-256 114.837 -256 256s114.837 256 256 256zM256 -21.333c117.632 0 213.333 95.7012 213.333 213.333s-95.7012 213.333 -213.333 213.333s-213.333 -95.7012 -213.333 -213.333
s95.7012 -213.333 213.333 -213.333zM250.667 103.04c13.8877 -0.34082 25.0449 -11.499 25.3867 -25.3867c0 -14.1016 -11.3066 -25.5781 -25.3867 -25.8135h0.852539c-14.0156 -0.46875 -25.748 10.4961 -26.2393 24.5117
c-0.0214844 0.426758 -0.0214844 0.874023 0 1.30176c0.234375 13.9307 11.4561 25.1514 25.3867 25.3867zM255.573 331.307c50.5596 0 81.2793 -27.7334 81.2803 -64.001c-1.70605 -59.5195 -76.7998 -64.8525 -76.7998 -103.253
c0 -5.75977 4.05371 -10.667 4.05371 -16.4268c0 -8.59668 -6.97656 -15.5732 -15.5732 -15.5732h-0.426758c-16 0 -23.6807 22.8271 -23.6807 35.2002c0 50.9873 69.7598 55.8945 69.7598 95.1475c0 18.3467 -13.8662 33.9199 -42.667 33.9199
c-19.0508 0.0859375 -37.333 -7.61621 -50.5596 -21.333c-3.30664 -2.90137 -7.55176 -4.50098 -11.9473 -4.48047c-9.45117 0.34082 -16.96 8.04199 -17.0664 17.4932c-0.0644531 3.8623 1.21582 7.6377 3.62695 10.667c20.8633 21.6748 49.9199 33.5361 80 32.6396z" />
<glyph glyph-name="uniF112" unicode="&#xf112;"
d="M368.64 448c11.3057 0 20.4805 -9.1748 20.4805 -20.4805v-348.159c0 -11.3057 -9.1748 -20.4805 -20.4805 -20.4805h-348.159c-11.3057 0 -20.4805 9.1748 -20.4805 20.4805v348.159c0 11.3057 9.1748 20.4805 20.4805 20.4805h348.159zM348.16 99.8398v307.2h-307.2
v-307.2h307.2zM471.04 28.1602h40.96v-71.6797c0 -11.3057 -9.1748 -20.4805 -20.4805 -20.4805h-71.6797v40.96h51.2002v51.2002zM262.349 -64v40.96h110.183v-40.96h-110.183zM163.84 -23.04h51.2002v-40.96h-71.6797c-11.3057 0 -20.4805 9.1748 -20.4805 20.4805
v71.6797h40.96v-51.2002zM491.52 325.12c11.3057 0 20.4805 -9.1748 20.4805 -20.4805v-71.6797h-40.96v51.2002h-51.2002v40.96h71.6797zM471.04 75.4688v110.183h40.96v-110.183h-40.96z" />
<glyph glyph-name="uniF11A" unicode="&#xf11a;"
d="M255.15 -20.625c11.7578 0 21.2617 -9.50391 21.2617 -21.2617s-9.50391 -21.2627 -21.2617 -21.2627h-191.363c-35.168 0 -63.7871 28.6191 -63.7871 63.7871v382.725c0 35.168 28.6191 63.7881 63.7871 63.7881h191.363c11.7578 0 21.2617 -9.50684 21.2617 -21.2646
s-9.50391 -21.2617 -21.2617 -21.2617h-191.363c-11.7363 0 -21.2617 -9.52539 -21.2617 -21.2617v-382.726c0 -11.7354 9.52441 -21.2617 21.2617 -21.2617h191.363zM505.664 207.139c4.06055 -4.01855 6.33594 -9.44043 6.33594 -15.1367
c0 -5.69824 -2.2959 -11.1416 -6.33594 -15.1387l-129.276 -127.575c-4.125 -4.08301 -9.52441 -6.12402 -14.9258 -6.12402c-5.48633 0 -10.9717 2.12598 -15.1387 6.33594c-8.22852 8.35645 -8.16406 21.8154 0.212891 30.0654l92.3848 91.1729h-247.559
c-11.7588 0 -21.2627 9.50488 -21.2627 21.2627s9.50391 21.2617 21.2627 21.2617h247.559l-92.3848 91.1729c-8.37793 8.25 -8.46289 21.709 -0.212891 30.0654s21.7295 8.46289 30.0645 0.212891z" />
<glyph glyph-name="uniF127" unicode="&#xf127;"
d="M448.915 329.741c34.7832 0 63.084 -28.2998 63.084 -63.083v-228.026c0.155273 -34.6865 -28.0303 -63.123 -62.7939 -63.2773h-0.0576172h-386.063c-34.7832 0 -63.084 28.3018 -63.084 63.084v307.123c0 34.7812 28.3008 63.083 63.084 63.082h110.153
c16.8428 0.0966797 33.4717 -6.23145 45.625 -18.3467l50.5635 -53.2637c4.43652 -4.59082 10.8613 -7.29199 17.4395 -7.29199h162.05zM473.416 38.5537h-0.000976562v228.105c0 13.5039 -10.9961 24.5 -24.5 24.5h-162.05c-16.9766 0 -33.4912 6.98438 -45.2969 19.1758
l-50.293 53.0137c-4.20508 4.16699 -10.4561 6.73242 -16.8984 6.73242h-0.637695h-110.655c-13.5039 -0.0195312 -24.5 -11.0156 -24.5 -24.5195v-307.124c0 -13.5039 10.9961 -24.5 24.5 -24.5h386.025c13.4268 0.0585938 24.3643 11.1123 24.3066 24.6162z" />
<glyph glyph-name="uniF11C" unicode="&#xf11c;"
d="M448 448c35.2852 0 64 -28.7148 64 -64v-384c0 -35.2852 -28.7148 -64 -64 -64h-384c-35.2852 0 -64 28.7148 -64 64v384c0 35.2852 28.7148 64 64 64h384zM469.333 0v384c0 11.7539 -9.57812 21.333 -21.333 21.333h-384c-11.7539 0 -21.333 -9.57812 -21.333 -21.333
v-384c0 -11.7764 9.57812 -21.333 21.333 -21.333h384c11.7539 0 21.333 9.55664 21.333 21.333zM147.627 328.107c1.06641 -2.56055 1.70605 -5.33398 1.70801 -8.10742c0 -5.54688 -2.34668 -11.0938 -6.18652 -15.1475
c-1.06738 -0.852539 -2.13379 -1.70605 -3.2002 -2.55957c-1.28027 -0.852539 -2.56055 -1.49316 -3.83984 -1.91992c-1.28027 -0.639648 -2.56055 -1.06738 -3.84082 -1.28027c-1.49316 -0.213867 -2.98633 -0.426758 -4.2666 -0.426758
c-5.54688 0 -11.0938 2.34668 -15.1475 6.18652c-1.91992 2.13379 -3.41211 4.26758 -4.47949 7.04004c-1.06738 2.56055 -1.70703 5.33301 -1.70703 8.10742s0.639648 5.54688 1.70703 8.10742c1.06738 2.77246 2.55957 4.90625 4.47949 7.04004
c2.13379 1.91992 4.48047 3.41211 7.04004 4.47949c3.84082 1.70703 8.10645 2.13281 12.373 1.28027c1.28027 -0.212891 2.56055 -0.640625 3.84082 -1.28027c1.2793 -0.426758 2.55957 -1.06738 3.83984 -1.91992c1.06641 -0.853516 2.13281 -1.70703 3.2002 -2.55957
c1.91992 -2.13379 3.41211 -4.26758 4.47949 -7.04004zM384 341.333c11.7764 0 21.333 -9.55664 21.333 -21.333s-9.55664 -21.333 -21.333 -21.333h-170.667c-11.7764 0 -21.333 9.55664 -21.333 21.333s9.55664 21.333 21.333 21.333h170.667zM148.907 196.267
c0.212891 -1.49316 0.425781 -2.98633 0.427734 -4.2666c0 -5.54688 -2.34668 -11.0938 -6.18652 -15.1475c-4.05469 -3.83984 -9.60059 -6.18652 -15.1475 -6.18652s-11.0938 2.34668 -15.1475 6.18652c-3.83984 4.05469 -6.18652 9.60059 -6.18652 15.1475
c0 1.28027 0.213867 2.77441 0.426758 4.2666c0.212891 1.28027 0.640625 2.56055 1.28027 3.84082c0.426758 1.2793 1.06738 2.55957 1.91992 3.83984c0.853516 1.06641 1.70703 2.13281 2.55957 3.2002c2.13379 1.91992 4.48047 3.41211 7.04004 4.47949
c5.12012 2.13281 11.0938 2.13281 16.2139 0c2.55957 -1.06738 4.90625 -2.55957 7.04004 -4.47949c0.852539 -1.06738 1.70605 -2.13379 2.55957 -3.2002c0.852539 -1.28027 1.49316 -2.56055 1.91992 -3.83984c0.639648 -1.28027 1.06738 -2.56055 1.28027 -3.84082z
M384 213.333c11.7764 0 21.333 -9.55664 21.333 -21.333s-9.55664 -21.333 -21.333 -21.333h-170.667c-11.7764 0 -21.333 9.55664 -21.333 21.333s9.55664 21.333 21.333 21.333h170.667zM147.627 72.1074c1.28027 -2.56055 1.70605 -5.33398 1.70801 -8.10742
c0 -5.75977 -2.13379 -11.0938 -6.18652 -15.1475c-4.05469 -4.03125 -9.3877 -6.18652 -15.1475 -6.18652s-11.0938 2.15527 -15.1475 6.18652c-4.05371 4.05469 -6.18652 9.3877 -6.18652 15.1475c0 2.77441 0.639648 5.54688 1.70703 8.10742
c1.06738 2.55957 2.55957 4.90625 4.47949 7.04004c2.13379 1.91992 4.48047 3.41211 7.04004 4.47949c7.89355 3.2002 17.2803 1.30078 23.2539 -4.47949c1.91992 -2.13379 3.41211 -4.26758 4.47949 -7.04004zM384 85.333c11.7764 0 21.333 -9.53613 21.333 -21.333
s-9.55664 -21.333 -21.333 -21.333h-170.667c-11.7764 0 -21.333 9.53613 -21.333 21.333s9.55664 21.333 21.333 21.333h170.667z" />
<glyph glyph-name="uniF126" unicode="&#xf126;"
d="M490.667 42.667c11.7969 0 21.332 -9.55762 21.332 -21.334s-9.53613 -21.333 -21.333 -21.333h-56.8105c-9.25879 -30.7412 -37.4834 -53.333 -71.1895 -53.333s-61.9521 22.5918 -71.1895 53.333h-270.144c-11.7764 0 -21.333 9.55664 -21.333 21.333
s9.55664 21.334 21.333 21.334h270.145c9.25879 30.7412 37.4834 53.333 71.1895 53.333s61.9521 -22.5918 71.1895 -53.333h56.8105zM362.667 -10.667c17.6416 0 32 14.3574 32 32s-14.3574 32 -32 32s-32 -14.3574 -32 -32s14.3574 -32 32 -32zM490.667 384
c11.7969 0 21.333 -9.55762 21.333 -21.334s-9.53613 -21.333 -21.333 -21.333h-56.8105c-9.25879 -30.7412 -37.4824 -53.333 -71.1895 -53.333s-61.9307 22.5918 -71.1904 53.334h-270.144c-11.7764 0 -21.333 9.55664 -21.333 21.333s9.55664 21.333 21.333 21.333
h270.144c9.25977 30.7412 37.4844 53.333 71.1904 53.333s61.9297 -22.5918 71.1895 -53.333h56.8105zM362.667 330.667c17.6416 0 32 14.3574 32 32s-14.3574 32 -32 32s-32 -14.3574 -32 -32s14.3574 -32 32 -32zM490.667 213.333
c11.7969 0 21.333 -9.55664 21.332 -21.333c0 -11.7764 -9.53613 -21.333 -21.333 -21.333h-270.144c-9.25879 -30.7412 -37.4834 -53.333 -71.1895 -53.333s-61.9297 22.5918 -71.1895 53.333h-56.8105c-11.7764 0 -21.333 9.55664 -21.333 21.333
s9.55664 21.333 21.333 21.333h56.8115c9.25879 30.7412 37.4834 53.333 71.1895 53.333s61.9297 -22.5918 71.1895 -53.333h270.144zM149.333 160c17.6426 0 32 14.3574 32 32s-14.3574 32 -32 32s-32 -14.3574 -32 -32s14.3574 -32 32 -32z" />
<glyph glyph-name="uniF115" unicode="&#xf115;"
d="M507.399 205.319c6.13086 -7.80859 6.13086 -18.8018 0.000976562 -26.5908l-53.9121 -68.6045l-10.2607 -86.5029c-1.18457 -9.87402 -8.9502 -17.6611 -18.8242 -18.8232l-86.5254 -10.2627l-68.582 -53.9111c-3.89453 -3.09766 -8.58398 -4.625 -13.2949 -4.625
c-4.71191 0 -9.40137 1.52832 -13.2959 4.60449l-68.582 53.9111l-86.5029 10.2607c-9.875 1.18457 -17.6416 8.97168 -18.8242 18.8242l-10.2832 86.5029l-53.9121 68.6045c-6.13086 7.78809 -6.13086 18.7812 0 26.5908l53.9111 68.6045l10.2832 86.5029
c1.18359 9.85254 8.9707 17.6406 18.8242 18.8242l86.5029 10.2607l68.582 53.9121c7.80957 6.13086 18.7812 6.13086 26.5908 0l68.582 -53.9121l86.5254 -10.2617c9.875 -1.18359 17.6406 -8.9707 18.8242 -18.8232l10.2607 -86.5029zM415.948 131.938l47.1982 60.0645
l-47.1992 60.0635c-2.43164 3.11914 -4.00098 6.81836 -4.45312 10.7559l-8.99219 75.6816l-75.7041 8.9707c-3.93652 0.473633 -7.63672 2.00098 -10.7559 4.45312l-60.043 47.2002l-60.0635 -47.2002c-3.11914 -2.45215 -6.81836 -3.97949 -10.7559 -4.45312
l-75.6602 -8.9707l-8.99219 -75.6816c-0.452148 -3.91504 -2.02246 -7.63672 -4.45312 -10.7559l-47.2207 -60.0635l47.1992 -60.0645c2.43164 -3.11816 4.00098 -6.81836 4.45312 -10.7559l9.01465 -75.6602l75.6816 -8.97168
c3.93652 -0.472656 7.63672 -2.00098 10.7559 -4.45312l60.0635 -47.1992l60.043 47.1992c3.11914 2.45215 6.81836 3.98047 10.7559 4.45312l75.7041 8.97168l8.9707 75.6602c0.452148 3.93652 2.02148 7.6377 4.45312 10.7559zM379.139 235.136
c2.49609 -7.78711 0.387695 -16.3486 -5.50586 -22.0508l-42.6172 -41.3477l10.1318 -58.7295c1.37598 -8.06738 -1.9375 -16.2422 -8.54102 -21.0615c-6.69141 -4.81738 -15.4688 -5.44141 -22.6963 -1.6123l-52.75 27.8154l-52.5547 -27.8154
c-3.22656 -1.63477 -6.69043 -2.45215 -10.1328 -2.45215c-4.45312 0 -8.88477 1.37598 -12.6279 4.08691c-6.64746 4.81836 -9.95996 12.9941 -8.5625 21.0605l10.1113 58.752l-42.4443 41.3477c-5.85156 5.72168 -7.95996 14.2627 -5.44336 22.0293
c2.51758 7.76562 9.22949 13.4453 17.3184 14.6494l58.752 8.6709l26.2246 53.1357c3.61328 7.33691 11.0791 11.9824 19.2744 12.0049h0.0224609c8.1748 0 15.6387 -4.62598 19.2754 -11.9404l26.416 -53.1797l58.9883 -8.69141
c8.11133 -1.18359 14.8232 -6.88379 17.3613 -14.6719zM292.851 194.757l19.4697 18.8857l-26.9775 3.98047c-6.96973 1.03223 -12.9932 5.39941 -16.1338 11.7031l-12.0908 24.3086l-11.9824 -24.2656c-3.11914 -6.32422 -9.16406 -10.7344 -16.1348 -11.7676
l-26.9336 -3.97949l19.4258 -18.9316c5.05469 -4.94824 7.37891 -12.0898 6.17383 -19.0605l-4.60352 -26.7832l23.9014 12.6494c3.20508 1.7002 6.64648 2.53906 10.1104 2.53906c3.44238 0 6.88477 -0.838867 10.0469 -2.49512l24.1367 -12.7354l-4.625 26.8486
c-1.22559 7.0127 1.11914 14.1553 6.2168 19.1035z" />
<glyph glyph-name="uniF111" unicode="&#xf111;"
d="M451.284 11.2256c11.8613 0 21.4893 -9.62793 21.4893 -21.4893c0 -11.8623 -9.62793 -21.4902 -21.4893 -21.4902h-365.325c-47.4062 0 -85.959 38.5527 -85.959 85.959s38.5527 85.959 85.959 85.959h42.9785c11.8623 0 21.4902 -9.62793 21.4902 -21.4902
c0 -11.8613 -9.62793 -21.4893 -21.4902 -21.4893h-42.9785c-23.7031 0 -42.9795 -19.2764 -42.9795 -42.9795c0 -23.7021 19.2754 -42.9795 42.9795 -42.9795h365.325zM487.988 391.723c32.0195 -32.0625 32.0195 -84.2617 -0.0205078 -116.324l-145.271 -145.271
c-21.3184 -21.2529 -49.5977 -32.9434 -79.6621 -32.9434h-48.1377c-11.8613 0 -21.4893 9.62793 -21.4893 21.4893v48.1377c0 30.0645 11.6904 58.3447 32.9219 79.6191l110.264 110.264c0.34375 0.408203 0.473633 0.902344 0.860352 1.28906
c0.385742 0.386719 0.880859 0.515625 1.28906 0.860352l32.8789 32.8789c32.1279 32.0625 84.3047 32.0195 116.367 0zM312.331 160.536l96.1016 96.1025l-55.5723 55.5723l-96.123 -96.123c-13.1094 -13.1523 -20.3506 -30.667 -20.3506 -49.2764v-26.6475h26.6475
c18.6094 0 36.124 7.24219 49.2969 20.3721zM457.58 305.785c15.2793 15.3008 15.2793 40.2285 -0.0224609 55.5498c-15.3008 15.2793 -40.25 15.3008 -55.5723 0l-18.7383 -18.7383l55.5723 -55.5723z" />
<glyph glyph-name="uniF118" unicode="&#xf118;"
d="M383.582 154.838c38.2529 0 69.3721 -31.1201 69.3721 -69.3721v-149.466h-393.907v149.466c0 38.2529 31.1191 69.3721 69.3711 69.3721h255.164zM409.187 -20.2324h-0.000976562v105.698c0 14.1143 -11.4668 25.6035 -25.6035 25.6035h-255.164
c-14.1367 0 -25.6035 -11.4893 -25.6035 -25.6035v-105.698h306.372zM409.143 403.151l0.0439453 -204.547h-306.372v114.89c0.744141 19.0391 12.0801 35.2109 28.8867 42.126l213.036 88.8037c11.5547 4.77148 24.2256 4.77148 35.7588 -0.0214844
c11.4893 -4.79199 20.4395 -13.7646 25.167 -25.2764c2.12207 -5.12012 3.28223 -10.4814 3.47949 -15.9746zM365.419 242.372v159.971l-1.72852 1.64062l-215.249 -88.8047c-1.1377 -0.458984 -1.83789 -1.44336 -1.88184 -2.55957l0.0224609 -70.2471h218.837z" />
<glyph glyph-name="uniF128" unicode="&#xf128;"
d="M503.373 71.2637c-9.55859 -30.5596 -7.2666 -63.3691 6.49023 -92.3506c3.63379 -7.63477 2.46582 -16.6963 -2.96289 -23.1631c-5.42969 -6.48828 -14.1885 -9.21289 -22.2988 -6.96387l-63.9316 17.584c-28.8291 -17.0654 -61.207 -25.8896 -94.2109 -25.8896
c-12.1973 0 -24.4824 1.21191 -36.7236 3.63379c-48.6621 9.71094 -90.6416 37.7832 -118.174 79.0488c-7.67773 11.4844 -13.7334 23.7041 -18.5566 36.291c-20.0488 4.49805 -39.708 11.8525 -58.0918 23.0117l-67.4141 -18.9883
c-8.13281 -2.31445 -16.9131 0.368164 -22.4072 6.87793c-5.47168 6.48828 -6.63965 15.5713 -2.98438 23.25c14.6191 30.7109 17.085 65.5098 6.89844 97.9736c-2.20605 7.24512 -3.91504 14.3818 -5.23438 21.6055c-18.7295 103.208 47.9707 202.502 149.557 224.886
c1.81641 0.952148 3.80566 1.66602 5.9043 2.05469c50.4141 9.60254 103.705 -1.38379 146.139 -30.3018c37.6982 -25.6504 64.6025 -62.8281 77.2109 -106.041c38.4326 -12.1533 71.7832 -36.1611 95.4229 -69.6836c28.5908 -40.5088 39.6641 -89.6904 31.251 -138.548
c-1.40625 -8.15234 -3.39551 -16.3281 -5.88281 -24.2871zM110.592 123.819c33.4365 -22.7744 73.7295 -31.1445 113.437 -23.5957c39.7305 7.54883 74.1406 30.1064 96.8926 63.5205c46.998 68.9922 29.0898 163.354 -39.9238 210.352
c-31.2959 21.3037 -70.2266 30.1494 -107.534 24.6133c-1.62207 -0.844727 -3.35156 -1.42871 -5.21191 -1.75195c-82.1416 -14.9238 -136.838 -93.8652 -121.915 -176.008c1.01562 -5.60156 2.35645 -11.1592 4 -16.6318
c9.01953 -28.7852 10.5117 -59.043 4.58496 -88.1758l37.6328 10.5986c1.9248 0.561523 3.89355 0.821289 5.86133 0.821289c4.30371 0 8.54395 -1.27539 12.1768 -3.74219zM466.628 102.884c10.9004 63.1748 -21.8867 123.861 -76.4326 151.287
c1.18945 -40.6602 -10.165 -80.542 -33.502 -114.8c-36.1182 -53.0107 -93.9727 -82.252 -153.622 -84.5654c1.4707 -2.55176 2.79004 -5.14844 4.45508 -7.63477c21.1533 -31.6631 53.335 -53.2041 90.6641 -60.6445c37.3936 -7.46191 75.3516 0.0859375 107.014 21.2168
c5.23438 3.4834 11.7217 4.54199 17.7354 2.87695l34.4316 -9.47266c-5.32031 27.4248 -3.78418 55.9082 4.73633 83.0938c1.9248 6.1416 3.45996 12.3916 4.52051 18.6426zM123.504 252.612c3.89258 -4.10938 6.27148 -9.73145 6.27246 -15.3555
c0 -5.83984 -2.37891 -11.4629 -6.27148 -15.3564c-4.10938 -4.1084 -9.7334 -6.27148 -15.3564 -6.27148c-2.81152 0 -5.62402 0.432617 -8.21875 1.51367s-4.97363 2.81152 -7.13672 4.75781c-3.89258 4.10938 -6.27246 9.5166 -6.27246 15.3564
c0 5.62305 2.37988 11.2461 6.27246 15.3555c2.16309 1.94727 4.54199 3.46094 7.13672 4.54199c3.89355 1.73047 8.21777 2.16309 12.5439 1.29785c1.29785 -0.432617 2.59473 -0.648438 3.89258 -1.29785c1.29883 -0.432617 2.5957 -1.29785 3.89355 -1.94727
c1.08105 -0.865234 2.16309 -1.72949 3.24414 -2.59473zM210.015 252.396c3.89258 -3.89355 6.27148 -9.51562 6.27246 -15.1396c0 -1.51465 -0.216797 -2.8125 -0.432617 -4.32617c-0.216797 -1.29688 -0.649414 -2.59473 -1.29785 -4.10938
c-0.433594 -1.29785 -1.08203 -2.37891 -1.94727 -3.67676c-0.648438 -1.08105 -1.72949 -2.16309 -2.59473 -3.24414c-1.08105 -0.864258 -2.16309 -1.94531 -3.24414 -2.59473c-1.29785 -0.865234 -2.59473 -1.51367 -3.89258 -2.16309
c-1.29785 -0.431641 -2.5957 -0.865234 -3.89355 -1.08105c-1.51367 -0.432617 -2.81152 -0.432617 -4.3252 -0.432617c-5.62305 0 -11.2471 2.16309 -15.3564 6.27148c-3.89258 4.10938 -6.27148 9.5166 -6.27148 15.3564c0 5.62402 2.37891 11.2461 6.27148 15.1396
c8.00293 8.00195 22.71 8.21875 30.7119 0zM296.525 252.396c3.89355 -3.89355 6.27246 -9.51562 6.27246 -15.1396c0 -1.51465 -0.217773 -2.8125 -0.433594 -4.32617c-0.216797 -1.29688 -0.648438 -2.81152 -1.29785 -4.10938
c-0.431641 -1.29785 -1.08105 -2.37891 -1.94629 -3.67676c-0.647461 -1.08105 -1.72949 -2.16309 -2.59473 -3.24414c-4.1084 -4.1084 -9.51562 -6.27148 -15.3555 -6.27148s-11.2471 2.16309 -15.3564 6.27148c-3.89258 4.10938 -6.27148 9.5166 -6.27148 15.3564
c0 5.62402 2.37891 11.2461 6.27148 15.1396c8.00293 8.00195 22.71 8.21875 30.7119 0z" />
<glyph glyph-name="uniF10F" unicode="&#xf10f;"
d="M448 309.333c35.2852 0 64 -28.7139 64 -64v-213.333c0 -35.2852 -28.7148 -64 -64 -64h-277.333c-35.2852 0 -64 28.7148 -64 64v42.667h-42.667c-35.2852 0 -64 28.7148 -64 64v213.333c0 35.2852 28.7148 64 64 64h277.333c35.2852 0 64 -28.7148 64 -64v-42.667
h42.667zM42.667 352v-151.168l216.873 76.7793c6.5918 2.38867 13.9736 1.2793 19.6914 -2.87988l83.4346 -60.8438v138.112c0 11.7764 -9.57812 21.333 -21.333 21.333h-277.333c-11.7539 0 -21.333 -9.55664 -21.333 -21.333zM64 117.333v0.000976562h277.334
c11.7539 0 21.333 9.55664 21.333 21.333v22.4209l-99.4766 72.5762l-220.523 -78.0586v-16.9395c0 -11.7764 9.57812 -21.333 21.333 -21.333zM469.333 32v213.334c0 11.7764 -9.55664 21.333 -21.333 21.333h-42.666v-128c0 -35.2852 -28.7148 -64 -64 -64h-192v-42.667
c0 -11.7764 9.57812 -21.333 21.333 -21.333h277.333c11.7764 0 21.333 9.55664 21.333 21.333zM85.333 299.947c0 17.6729 14.3271 32 32 32s32 -14.3271 32 -32c0 -17.6738 -14.3271 -32 -32 -32s-32 14.3262 -32 32z" />
<glyph glyph-name="uniF100" unicode="&#xf100;"
d="M362.667 328.469c40.5537 -31.7646 66.7734 -81.0654 66.7734 -136.469s-26.2197 -104.704 -66.7734 -136.469v-76.8643c0 -23.5312 -19.1357 -42.667 -42.667 -42.667h-128c-23.5312 0 -42.667 19.1357 -42.667 42.667v76.8643
c-40.5537 31.7646 -66.7734 81.0654 -66.7734 136.469s26.2197 104.704 66.7734 136.469v76.8643c0 23.5312 19.1357 42.667 42.667 42.667h128c23.5312 0 42.667 -19.1357 42.667 -42.667v-76.8643zM320 405.333h-128.021v-52.2881
c19.8408 7.91504 41.4082 12.3955 64.0215 12.3955s44.1807 -4.48047 64 -12.3955v52.2881zM320 -21.333v52.2881c-19.8193 -7.91504 -41.3867 -12.3955 -64 -12.3955s-44.1807 4.48047 -64 12.3955v-52.2881h128zM256 61.2266c72.1074 0 130.773 58.666 130.773 130.773
s-58.666 130.773 -130.773 130.773s-130.773 -58.667 -130.773 -130.773s58.666 -130.773 130.773 -130.773zM315.563 167.872c8.83105 -7.78711 9.68457 -21.2695 1.87793 -30.1006c-4.22461 -4.7793 -10.1123 -7.21191 -16.0215 -7.21191
c-5.0127 0 -10.0479 1.77051 -14.1006 5.33301l-45.4404 40.1074c-4.58691 4.05273 -7.21094 9.87695 -7.21094 16v64c0 11.7764 9.55664 21.333 21.333 21.333s21.333 -9.55664 21.333 -21.333v-48.875l3.9043 -8.95996z" />
<glyph glyph-name="uniF137" unicode="&#xf137;"
d="M256 448c141.167 0 256 -114.853 256 -256s-114.833 -256 -256 -256s-256 114.833 -256 256s114.833 256 256 256zM256 -24.3408c119.295 0 216.341 97.0459 216.341 216.341s-97.0654 216.341 -216.341 216.341s-216.341 -97.0459 -216.341 -216.341
s97.0654 -216.341 216.341 -216.341zM355.148 213.614c10.9658 0 19.8291 -8.88379 19.8291 -19.8301s-8.86328 -19.8301 -19.8291 -19.8301h-79.3184v-79.3184c0 -10.9453 -8.86426 -19.8301 -19.8301 -19.8301s-19.8301 8.88477 -19.8301 19.8301v79.3184h-79.3184
c-10.9658 0 -19.8291 8.88379 -19.8291 19.8301s8.86328 19.8301 19.8291 19.8301h79.3184v79.3174c0 10.9463 8.86426 19.8301 19.8301 19.8301s19.8301 -8.88379 19.8301 -19.8301v-79.3174h79.3184z" />
<glyph glyph-name="uniF12C" unicode="&#xf12c;"
d="M256 448c141.167 0 256 -114.853 256 -256s-114.833 -256 -256 -256s-256 114.833 -256 256s114.833 256 256 256zM256 -24.3408c119.275 0 216.341 97.0459 216.341 216.341s-97.0459 216.341 -216.341 216.341c-119.275 0 -216.341 -97.0459 -216.341 -216.341
s97.0654 -216.341 216.341 -216.341zM368.235 245.163c6.36523 -7.41602 6.36523 -18.3818 0 -25.7988l-99.1484 -99.1484c-7.73438 -7.69336 -20.2256 -7.69336 -27.96 0l-99.1484 99.1484c-7.69336 7.7334 -7.69336 20.2256 0 27.96
c7.73438 7.69336 20.2266 7.69336 27.9609 0l85.0684 -85.0693l85.2676 85.0693c8.30859 7.11914 20.8408 6.14746 27.96 -2.16113z" />
<glyph glyph-name="uniF134" unicode="&#xf134;"
d="M504.227 389.777c9.10938 -7.4873 10.3896 -20.9053 2.90137 -30.0146l-298.657 -362.658c-3.81934 -4.65039 -9.4082 -7.4668 -15.4453 -7.74414c-0.341797 -0.0205078 -0.683594 -0.0205078 -1.02441 -0.0205078c-5.65332 0 -11.0928 2.21777 -15.082 6.25
l-170.663 170.663c-8.34082 8.34082 -8.34082 21.8232 0 30.1641c8.3418 8.34082 21.8232 8.34082 30.165 0l154.065 -154.043l283.725 344.502c7.48828 9.08691 20.8857 10.4316 30.0156 2.90137z" />
<glyph glyph-name="uniF125" unicode="&#xf125;"
d="M380.256 184.782l0.0410156 -20.7344h-248.595v20.7129c-0.0205078 58.4727 17.917 114.562 51.8857 162.182l72.4336 101.058l72.1006 -101.037c34.0723 -47.6182 52.0928 -103.688 52.1338 -162.181zM174.019 205.474h163.9
c-3.68652 42.2949 -18.5381 82.5205 -43.4971 117.4l-38.4834 53.8945l-38.6299 -53.9355c-24.8965 -34.8604 -39.6855 -75.084 -43.29 -117.359zM364.535 122.415c31.5039 0 57.168 -25.6416 57.168 -57.167v-129.248h-331.405v129.248
c0 31.5254 25.6426 57.167 57.167 57.167h217.07zM380.256 -22.5742v87.8223c0 8.67871 -7.0625 15.7422 -15.7422 15.7422h-217.091c-8.67871 0 -15.7422 -7.06348 -15.7422 -15.7422l0.0214844 -87.8223h248.554z" />
<glyph glyph-name="uniF11F" unicode="&#xf11f;"
d="M213.333 448c70.5918 0 128 -57.4082 128 -128v-42.668c0 -70.5918 -57.4082 -128 -128 -128c-28.2881 0 -54.3779 9.34375 -75.6055 24.9395c-56.2764 -27.9268 -95.0605 -85.9746 -95.0605 -152.939v-21.333c0 -11.7539 9.55664 -21.333 21.333 -21.333h192
c11.7969 0 21.333 -9.55664 21.333 -21.333s-9.53613 -21.333 -21.333 -21.333h-192c-35.2852 0 -64 28.7148 -64 64v21.333c0 78.9336 43.2207 147.755 107.136 184.619c-13.7598 20.416 -21.8027 44.9697 -21.8027 71.3809v42.667c0 70.5918 57.4082 128 128 128z
M298.667 277.333h-0.000976562v42.667c0 47.0605 -38.2725 85.333 -85.333 85.333s-85.333 -38.2725 -85.333 -85.333v-42.667c0 -47.0605 38.2734 -85.333 85.334 -85.333s85.333 38.2725 85.333 85.333zM490.667 85.333c11.7969 0 21.3311 -9.55664 21.3311 -21.333
s-9.53613 -21.333 -21.333 -21.333h-85.333v-85.333c0 -11.7764 -9.53613 -21.333 -21.333 -21.333s-21.333 9.55664 -21.333 21.333v85.333h-85.333c-11.7969 0 -21.333 9.55664 -21.333 21.333s9.53613 21.333 21.335 21.333h85.333v85.333
c0 11.7764 9.53613 21.333 21.333 21.333s21.333 -9.55664 21.333 -21.333v-85.333h85.333z" />
<glyph glyph-name="uniF124" unicode="&#xf124;"
d="M431.754 199.483c3.0332 -7.38379 1.32031 -15.8721 -4.37207 -21.4844l-238.867 -236.308c-3.78125 -3.74121 -8.7832 -5.69141 -13.8447 -5.69141c-3.11035 0 -6.24121 0.748047 -9.13672 2.24512c-7.60059 3.99805 -11.7373 12.4258 -10.2402 20.8936l37.8281 213.171
h-94.6611c-7.97461 0 -15.1816 4.82422 -18.2148 12.209c-3.03223 7.38379 -1.31934 15.8721 4.37207 21.4844l238.868 236.307c6.10547 6.0459 15.4004 7.4043 23.001 3.44629c7.60156 -3.99805 11.7373 -12.4258 10.2402 -20.8936l-37.8486 -213.17h94.6611
c7.97461 0 15.1816 -4.82422 18.2148 -12.209zM204.898 13.3125l160.729 158.995h-70.2422c-5.8291 0 -11.3428 2.58008 -15.1045 7.03027c-3.74219 4.4707 -5.31641 10.3584 -4.29297 16.0889l31.1143 175.262l-160.729 -158.995h70.2422
c5.8291 0 11.3428 -2.5791 15.1045 -7.03027c3.74219 -4.4707 5.31641 -10.3584 4.29297 -16.0889z" />
<glyph glyph-name="uniF10C" unicode="&#xf10c;"
d="M510.941 251.744c2.53906 -7.81152 0.429688 -16.333 -5.44629 -22.0352l-109.17 -106.373l25.8242 -150.229c1.37793 -8.09277 -1.91504 -16.248 -8.54297 -21.0684c-6.60645 -4.86328 -15.4082 -5.44434 -22.6602 -1.65723l-135.037 70.9287l-134.8 -70.9072
c-3.20605 -1.67871 -6.64941 -2.49609 -10.0713 -2.49609c-4.4541 0 -8.8877 1.37695 -12.6318 4.08887c-6.65039 4.82031 -9.96387 12.9756 -8.56543 21.0459l25.6299 150.273l-108.977 106.372c-5.875 5.72461 -7.96289 14.2686 -5.44531 22.0586
c2.51855 7.79004 9.25391 13.4707 17.3672 14.6553l150.639 22.0146l67.5293 136.672c7.27441 14.6768 31.3105 14.6768 38.585 0l67.5293 -136.652l150.876 -22.0352c8.1123 -1.18457 14.8281 -6.84375 17.3672 -14.6553zM358.128 146.233l86.0801 83.8594
l-118.919 17.3887c-6.99414 1.01172 -13.041 5.42285 -16.1826 11.75l-53.2402 107.707l-53.2402 -107.729c-3.1416 -6.32715 -9.18945 -10.7383 -16.1826 -11.7275l-118.769 -17.3887l85.9287 -83.8623c5.05762 -4.92871 7.38184 -12.0723 6.17676 -19.0234
l-20.207 -118.445l106.265 55.8877c3.12012 1.65625 6.56348 2.47461 10.0283 2.47461c3.44238 0 6.86523 -0.818359 10.0068 -2.45312l106.437 -55.9297l-20.3574 118.424c-1.20508 6.99414 1.11914 14.1172 6.17578 19.0674z" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 72 KiB

View File

@ -0,0 +1,153 @@
/*
Flaticon icon font: Flaticon
Creation date: 02/07/2018 08:17
*/
@font-face {
font-family: "Flaticon";
src: url("./Flaticon.eot");
src: url("./Flaticon.eot?#iefix") format("embedded-opentype"),
url("./Flaticon.woff") format("woff"),
url("./Flaticon.ttf") format("truetype"),
url("./Flaticon.svg#Flaticon") format("svg");
font-weight: normal;
font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: "Flaticon";
src: url("./Flaticon.svg#Flaticon") format("svg");
}
}
.fi:before{
display: inline-block;
font-family: "Flaticon";
font-style: normal;
font-weight: normal;
font-variant: normal;
line-height: 1;
text-decoration: inherit;
text-rendering: optimizeLegibility;
text-transform: none;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-smoothing: antialiased;
}
.flaticon-001-watch:before { content: "\f100"; }
.flaticon-002-video-player:before { content: "\f101"; }
.flaticon-003-checked:before { content: "\f102"; }
.flaticon-004-up-arrow:before { content: "\f103"; }
.flaticon-005-profits:before { content: "\f104"; }
.flaticon-006-trash:before { content: "\f105"; }
.flaticon-007-clock:before { content: "\f106"; }
.flaticon-008-sync:before { content: "\f107"; }
.flaticon-009-mail:before { content: "\f108"; }
.flaticon-010-curve-arrow:before { content: "\f109"; }
.flaticon-011-settings-1:before { content: "\f10a"; }
.flaticon-012-search:before { content: "\f10b"; }
.flaticon-013-review:before { content: "\f10c"; }
.flaticon-014-line-chart:before { content: "\f10d"; }
.flaticon-015-user-1:before { content: "\f10e"; }
.flaticon-016-image:before { content: "\f10f"; }
.flaticon-017-phone-call:before { content: "\f110"; }
.flaticon-018-signature:before { content: "\f111"; }
.flaticon-019-paste:before { content: "\f112"; }
.flaticon-020-paint-palette:before { content: "\f113"; }
.flaticon-021-chat-2:before { content: "\f114"; }
.flaticon-022-new:before { content: "\f115"; }
.flaticon-023-more:before { content: "\f116"; }
.flaticon-024-minus:before { content: "\f117"; }
.flaticon-025-marker-1:before { content: "\f118"; }
.flaticon-026-send:before { content: "\f119"; }
.flaticon-027-logout:before { content: "\f11a"; }
.flaticon-028-padlock:before { content: "\f11b"; }
.flaticon-029-list:before { content: "\f11c"; }
.flaticon-030-layer:before { content: "\f11d"; }
.flaticon-031-keyboard:before { content: "\f11e"; }
.flaticon-032-add-user:before { content: "\f11f"; }
.flaticon-033-highlighter:before { content: "\f120"; }
.flaticon-034-help:before { content: "\f121"; }
.flaticon-035-heart:before { content: "\f122"; }
.flaticon-036-inbox:before { content: "\f123"; }
.flaticon-037-flash:before { content: "\f124"; }
.flaticon-038-marker:before { content: "\f125"; }
.flaticon-039-settings:before { content: "\f126"; }
.flaticon-040-folder:before { content: "\f127"; }
.flaticon-041-chat-1:before { content: "\f128"; }
.flaticon-042-eraser:before { content: "\f129"; }
.flaticon-043-edit:before { content: "\f12a"; }
.flaticon-044-download:before { content: "\f12b"; }
.flaticon-045-check-1:before { content: "\f12c"; }
.flaticon-046-file:before { content: "\f12d"; }
.flaticon-047-cancel-1:before { content: "\f12e"; }
.flaticon-048-user:before { content: "\f12f"; }
.flaticon-049-chat:before { content: "\f130"; }
.flaticon-050-cancel:before { content: "\f131"; }
.flaticon-051-bookmark:before { content: "\f132"; }
.flaticon-052-package:before { content: "\f133"; }
.flaticon-053-approved:before { content: "\f134"; }
.flaticon-054-analytics:before { content: "\f135"; }
.flaticon-055-notification:before { content: "\f136"; }
.flaticon-056-add:before { content: "\f137"; }
.flaticon-057-check:before { content: "\f138"; }
$font-Flaticon-001-watch: "\f100";
$font-Flaticon-002-video-player: "\f101";
$font-Flaticon-003-checked: "\f102";
$font-Flaticon-004-up-arrow: "\f103";
$font-Flaticon-005-profits: "\f104";
$font-Flaticon-006-trash: "\f105";
$font-Flaticon-007-clock: "\f106";
$font-Flaticon-008-sync: "\f107";
$font-Flaticon-009-mail: "\f108";
$font-Flaticon-010-curve-arrow: "\f109";
$font-Flaticon-011-settings-1: "\f10a";
$font-Flaticon-012-search: "\f10b";
$font-Flaticon-013-review: "\f10c";
$font-Flaticon-014-line-chart: "\f10d";
$font-Flaticon-015-user-1: "\f10e";
$font-Flaticon-016-image: "\f10f";
$font-Flaticon-017-phone-call: "\f110";
$font-Flaticon-018-signature: "\f111";
$font-Flaticon-019-paste: "\f112";
$font-Flaticon-020-paint-palette: "\f113";
$font-Flaticon-021-chat-2: "\f114";
$font-Flaticon-022-new: "\f115";
$font-Flaticon-023-more: "\f116";
$font-Flaticon-024-minus: "\f117";
$font-Flaticon-025-marker-1: "\f118";
$font-Flaticon-026-send: "\f119";
$font-Flaticon-027-logout: "\f11a";
$font-Flaticon-028-padlock: "\f11b";
$font-Flaticon-029-list: "\f11c";
$font-Flaticon-030-layer: "\f11d";
$font-Flaticon-031-keyboard: "\f11e";
$font-Flaticon-032-add-user: "\f11f";
$font-Flaticon-033-highlighter: "\f120";
$font-Flaticon-034-help: "\f121";
$font-Flaticon-035-heart: "\f122";
$font-Flaticon-036-inbox: "\f123";
$font-Flaticon-037-flash: "\f124";
$font-Flaticon-038-marker: "\f125";
$font-Flaticon-039-settings: "\f126";
$font-Flaticon-040-folder: "\f127";
$font-Flaticon-041-chat-1: "\f128";
$font-Flaticon-042-eraser: "\f129";
$font-Flaticon-043-edit: "\f12a";
$font-Flaticon-044-download: "\f12b";
$font-Flaticon-045-check-1: "\f12c";
$font-Flaticon-046-file: "\f12d";
$font-Flaticon-047-cancel-1: "\f12e";
$font-Flaticon-048-user: "\f12f";
$font-Flaticon-049-chat: "\f130";
$font-Flaticon-050-cancel: "\f131";
$font-Flaticon-051-bookmark: "\f132";
$font-Flaticon-052-package: "\f133";
$font-Flaticon-053-approved: "\f134";
$font-Flaticon-054-analytics: "\f135";
$font-Flaticon-055-notification: "\f136";
$font-Flaticon-056-add: "\f137";
$font-Flaticon-057-check: "\f138";

View File

@ -0,0 +1,88 @@
/*
Flaticon icon font: Flaticon
Creation date: 02/07/2018 08:17
*/
@font-face {
font-family: "Flaticon";
src: url("./Flaticon.eot");
src: url("./Flaticon.eot?#iefix") format("embedded-opentype"),
url("./Flaticon.woff") format("woff"),
url("./Flaticon.ttf") format("truetype"),
url("./Flaticon.svg#Flaticon") format("svg");
font-weight: normal;
font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: "Flaticon";
src: url("./Flaticon.svg#Flaticon") format("svg");
}
}
[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {
font-family: Flaticon;
font-size: 20px;
font-style: normal;
margin-left: 20px;
}
.flaticon-001-watch:before { content: "\f100"; }
.flaticon-002-video-player:before { content: "\f101"; }
.flaticon-003-checked:before { content: "\f102"; }
.flaticon-004-up-arrow:before { content: "\f103"; }
.flaticon-005-profits:before { content: "\f104"; }
.flaticon-006-trash:before { content: "\f105"; }
.flaticon-007-clock:before { content: "\f106"; }
.flaticon-008-sync:before { content: "\f107"; }
.flaticon-009-mail:before { content: "\f108"; }
.flaticon-010-curve-arrow:before { content: "\f109"; }
.flaticon-011-settings-1:before { content: "\f10a"; }
.flaticon-012-search:before { content: "\f10b"; }
.flaticon-013-review:before { content: "\f10c"; }
.flaticon-014-line-chart:before { content: "\f10d"; }
.flaticon-015-user-1:before { content: "\f10e"; }
.flaticon-016-image:before { content: "\f10f"; }
.flaticon-017-phone-call:before { content: "\f110"; }
.flaticon-018-signature:before { content: "\f111"; }
.flaticon-019-paste:before { content: "\f112"; }
.flaticon-020-paint-palette:before { content: "\f113"; }
.flaticon-021-chat-2:before { content: "\f114"; }
.flaticon-022-new:before { content: "\f115"; }
.flaticon-023-more:before { content: "\f116"; }
.flaticon-024-minus:before { content: "\f117"; }
.flaticon-025-marker-1:before { content: "\f118"; }
.flaticon-026-send:before { content: "\f119"; }
.flaticon-027-logout:before { content: "\f11a"; }
.flaticon-028-padlock:before { content: "\f11b"; }
.flaticon-029-list:before { content: "\f11c"; }
.flaticon-030-layer:before { content: "\f11d"; }
.flaticon-031-keyboard:before { content: "\f11e"; }
.flaticon-032-add-user:before { content: "\f11f"; }
.flaticon-033-highlighter:before { content: "\f120"; }
.flaticon-034-help:before { content: "\f121"; }
.flaticon-035-heart:before { content: "\f122"; }
.flaticon-036-inbox:before { content: "\f123"; }
.flaticon-037-flash:before { content: "\f124"; }
.flaticon-038-marker:before { content: "\f125"; }
.flaticon-039-settings:before { content: "\f126"; }
.flaticon-040-folder:before { content: "\f127"; }
.flaticon-041-chat-1:before { content: "\f128"; }
.flaticon-042-eraser:before { content: "\f129"; }
.flaticon-043-edit:before { content: "\f12a"; }
.flaticon-044-download:before { content: "\f12b"; }
.flaticon-045-check-1:before { content: "\f12c"; }
.flaticon-046-file:before { content: "\f12d"; }
.flaticon-047-cancel-1:before { content: "\f12e"; }
.flaticon-048-user:before { content: "\f12f"; }
.flaticon-049-chat:before { content: "\f130"; }
.flaticon-050-cancel:before { content: "\f131"; }
.flaticon-051-bookmark:before { content: "\f132"; }
.flaticon-052-package:before { content: "\f133"; }
.flaticon-053-approved:before { content: "\f134"; }
.flaticon-054-analytics:before { content: "\f135"; }
.flaticon-055-notification:before { content: "\f136"; }
.flaticon-056-add:before { content: "\f137"; }
.flaticon-057-check:before { content: "\f138"; }

View File

@ -0,0 +1,740 @@
<!DOCTYPE html>
<!--
Flaticon icon font: Flaticon
Creation date: 02/07/2018 08:17
-->
<html>
<!DOCTYPE html>
<html>
<head>
<title>Flaticon WebFont</title>
<link href="http://fonts.googleapis.com/css?family=Varela+Round" rel="stylesheet" type="text/css" />
<link rel="stylesheet" type="text/css" href="flaticon.css">
<meta charset="UTF-8">
<style>
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
body {
font-family: 'Varela Round', Helvetica, Arial, sans-serif;
font-size: 16px;
color: #222;
}
a {
color: #333;
border-bottom: 1px solid #a9fd00;
font-weight: bold;
text-decoration: none;
}
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
padding: 0;
}
[class^="flaticon-"]:before, [class*=" flaticon-"]:before, [class^="flaticon-"]:after, [class*=" flaticon-"]:after {
font-family: Flaticon;
font-size: 30px;
font-style: normal;
margin-left: 20px;
color: #333;
}
.wrapper {
max-width: 600px;
margin: auto;
padding: 0 1em;
}
.title {
font-size: 1.25em;
text-align: center;
margin-bottom: 1em;
text-transform: uppercase;
}
header {
text-align: center;
background-color: #222;
color: #fff;
padding: 1em;
}
header .logo {
width: 210px;
height: 38px;
display: inline-block;
vertical-align: middle;
margin-right: 1em;
border: none;
}
header strong {
font-size: 1.95em;
font-weight: bold;
vertical-align: middle;
margin-top: 5px;
display: inline-block;
}
.demo {
margin: 2em auto;
line-height: 1.25em;
}
.demo ul li {
margin-bottom: 1em;
}
.demo ul li .num {
color: #222;
border-radius: 20px;
display: inline-block;
width: 26px;
padding: 3px;
height: 26px;
text-align: center;
margin-right: 0.5em;
border: 1px solid #222;
}
.demo ul li code {
background-color: #222;
border-radius: 4px;
padding: 0.25em 0.5em;
display: inline-block;
color: #fff;
font-family: Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;
font-weight: lighter;
margin-top: 1em;
font-size: 0.8em;
word-break: break-all;
}
.demo ul li code.big {
padding: 1em;
font-size: 0.9em;
}
.demo ul li code .red {
color: #EF3159;
}
.demo ul li code .green {
color: #ACFF65;
}
.demo ul li code .yellow {
color: #FFFF99;
}
.demo ul li code .blue {
color: #99D3FF;
}
.demo ul li code .purple {
color: #A295FF;
}
.demo ul li code .dots {
margin-top: 0.5em;
display: block;
}
#glyphs {
border-bottom: 1px solid #ccc;
padding: 2em 0;
text-align: center;
}
.glyph {
display: inline-block;
width: 9em;
margin: 1em;
text-align: center;
vertical-align: top;
background: #FFF;
}
.glyph .glyph-icon {
padding: 10px;
display: block;
font-family:"Flaticon";
font-size: 64px;
line-height: 1;
}
.glyph .glyph-icon:before {
font-size: 64px;
color: #222;
margin-left: 0;
}
.class-name {
font-size: 0.65em;
background-color: #222;
color: #fff;
border-radius: 4px 4px 0 0;
padding: 0.5em;
color: #FFFF99;
font-family: Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;
}
.author-name {
font-size: 0.6em;
background-color: #fcfcfd;
border: 1px solid #DEDEE4;
border-top: 0;
border-radius: 0 0 4px 4px;
padding: 0.5em;
}
.class-name:last-child {
font-size: 10px;
color:#888;
}
.class-name:last-child a {
font-size: 10px;
color:#555;
}
.class-name:last-child a:hover {
color:#a9fd00;
}
.glyph > input {
display: block;
width: 100px;
margin: 5px auto;
text-align: center;
font-size: 12px;
cursor: text;
}
.glyph > input.icon-input {
font-family:"Flaticon";
font-size: 16px;
margin-bottom: 10px;
}
.attribution .title {
margin-top: 2em;
}
.attribution textarea {
background-color: #fcfcfd;
padding: 1em;
border: none;
box-shadow: none;
border: 1px solid #DEDEE4;
border-radius: 4px;
resize: none;
width: 100%;
height: 150px;
font-size: 0.8em;
font-family: Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;
-webkit-appearance: none;
}
.iconsuse {
margin: 2em auto;
text-align: center;
max-width: 1200px;
}
.iconsuse:after {
content: '';
display: table;
clear: both;
}
.iconsuse .image {
float: left;
width: 25%;
padding: 0 1em;
}
.iconsuse .image p {
margin-bottom: 1em;
}
.iconsuse .image span {
display: block;
font-size: 0.65em;
background-color: #222;
color: #fff;
border-radius: 4px;
padding: 0.5em;
color: #FFFF99;
margin-top: 1em;
font-family: Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;
}
#footer {
text-align: center;
background-color: #4C5B5C;
color: #7c9192;
padding: 1em;
}
#footer a {
border: none;
color: #a9fd00;
font-weight: normal;
}
@media (max-width: 960px) {
.iconsuse .image {
width: 50%;
}
}
@media (max-width: 560px) {
.iconsuse .image {
width: 100%;
}
}
</style>
</head>
<body class="characters-off">
<header>
<a href="https://www.flaticon.com" target="_blank" class="logo">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/" viewBox="0 0 560.875 102.036" enable-background="new 0 0 560.875 102.036" xml:space="preserve">
<defs>
</defs>
<g>
<g class="letters">
<path fill="#ffffff" d="M141.596,29.675c0-3.777,2.985-6.767,6.764-6.767h34.438c3.426,0,6.15,2.728,6.15,6.15
c0,3.43-2.724,6.149-6.15,6.149h-27.674v13.091h23.719c3.429,0,6.151,2.724,6.151,6.15c0,3.43-2.723,6.149-6.151,6.149h-23.719
v17.574c0,3.773-2.986,6.761-6.764,6.761c-3.779,0-6.764-2.989-6.764-6.761V29.675z"></path>
<path fill="#ffffff" d="M193.844,29.149c0-3.781,2.985-6.767,6.764-6.767c3.776,0,6.763,2.985,6.763,6.767v42.957h25.039
c3.426,0,6.149,2.726,6.149,6.153c0,3.425-2.723,6.15-6.149,6.15h-31.802c-3.779,0-6.764-2.986-6.764-6.768V29.149z"></path>
<path fill="#ffffff" d="M241.891,75.71l21.438-48.407c1.492-3.341,4.215-5.357,7.906-5.357h0.792
c3.686,0,6.323,2.017,7.815,5.357l21.439,48.407c0.436,0.967,0.701,1.845,0.701,2.723c0,3.602-2.809,6.501-6.414,6.501
c-3.161,0-5.269-1.845-6.499-4.655l-4.132-9.661h-27.059l-4.301,10.102c-1.144,2.631-3.426,4.214-6.237,4.214
c-3.517,0-6.24-2.81-6.24-6.325C241.1,77.64,241.451,76.677,241.891,75.71z M279.932,58.666l-8.521-20.297l-8.526,20.297H279.932
z"></path>
<path fill="#ffffff" d="M314.864,35.387H301.86c-3.429,0-6.239-2.813-6.239-6.238c0-3.429,2.811-6.24,6.239-6.24h39.533
c3.426,0,6.237,2.811,6.237,6.24c0,3.425-2.811,6.238-6.237,6.238h-13.001v42.785c0,3.773-2.99,6.761-6.764,6.761
c-3.779,0-6.764-2.989-6.764-6.761V35.387z"></path>
<path fill="#A9FD00" d="M352.615,29.149c0-3.781,2.985-6.767,6.767-6.767c3.774,0,6.761,2.985,6.761,6.767v49.024
c0,3.773-2.987,6.761-6.761,6.761c-3.781,0-6.767-2.989-6.767-6.761V29.149z"></path>
<path fill="#A9FD00" d="M374.132,53.836v-0.179c0-17.481,13.178-31.801,32.065-31.801c9.22,0,15.459,2.458,20.557,6.238
c1.402,1.054,2.637,2.985,2.637,5.357c0,3.692-2.985,6.59-6.681,6.59c-1.845,0-3.071-0.702-4.044-1.319
c-3.776-2.813-7.729-4.393-12.562-4.393c-10.364,0-17.831,8.611-17.831,19.154v0.173c0,10.542,7.291,19.329,17.831,19.329
c5.715,0,9.492-1.756,13.359-4.834c1.049-0.874,2.458-1.491,4.039-1.491c3.429,0,6.325,2.813,6.325,6.236
c0,2.106-1.056,3.78-2.282,4.834c-5.539,4.834-12.036,7.733-21.878,7.733C387.572,85.464,374.132,71.493,374.132,53.836z"></path>
<path fill="#A9FD00" d="M433.009,53.836v-0.179c0-17.481,13.79-31.801,32.766-31.801c18.981,0,32.592,14.143,32.592,31.628v0.173
c0,17.483-13.785,31.807-32.769,31.807C446.625,85.464,433.009,71.32,433.009,53.836z M484.224,53.836v-0.179
c0-10.539-7.725-19.326-18.626-19.326c-10.893,0-18.449,8.611-18.449,19.154v0.173c0,10.542,7.73,19.329,18.626,19.329
C476.676,72.986,484.224,64.378,484.224,53.836z"></path>
<path fill="#A9FD00" d="M506.233,29.321c0-3.774,2.99-6.763,6.767-6.763h1.401c3.252,0,5.183,1.583,7.029,3.953l26.093,34.265
V29.059c0-3.692,2.99-6.677,6.681-6.677c3.683,0,6.671,2.985,6.671,6.677v48.934c0,3.78-2.987,6.765-6.764,6.765h-0.436
c-3.257,0-5.188-1.581-7.034-3.953l-27.056-35.492v32.944c0,3.687-2.985,6.676-6.678,6.676c-3.683,0-6.673-2.989-6.673-6.676
V29.321z"></path>
</g>
<g class="insignia">
<path fill="#ffffff" d="M48.372,56.137h12.517l11.156-18.537H37.186L25.688,18.539h57.825L94.668,0H9.271
C5.925,0,2.842,1.801,1.198,4.716c-1.644,2.907-1.593,6.482,0.134,9.343l50.38,83.501c1.678,2.781,4.689,4.476,7.938,4.476
c3.246,0,6.257-1.695,7.935-4.476l2.898-4.804L48.372,56.137z"></path>
<g class="i">
<path fill="#A9FD00" d="M93.575,18.539h0.031v0.004l21.652,0.004l2.705-4.488c1.727-2.861,1.778-6.436,0.133-9.343
C116.454,1.801,113.371,0,110.026,0h-5.294L93.575,18.539z"></path>
<polygon fill="#A9FD00" points="88.291,27.356 64.725,66.486 75.519,84.404 109.942,27.356"></polygon>
</g>
</g>
</g>
</svg>
</a>
<strong>Font Demo</strong>
</header>
<section class="demo wrapper">
<p class="title">Instructions</p>
<ul>
<li>
<span class="num">1</span>Copy the "Fonts" files and CSS files to your website CSS folder.
</li>
<li>
<span class="num">2</span>Add the CSS link to your website source code on header.
<code class="big">
&lt;<span class="red">head</span>&gt;
<br/><span class="dots">...</span>
<br/>&lt;<span class="red">link</span> <span class="green">rel</span>=<span class="yellow">"stylesheet"</span> <span class="green">type</span>=<span class="yellow">"text/css"</span> <span class="green">href</span>=<span class="yellow">"your_website_domain/css_root/flaticon.css"</span>&gt;
<br/><span class="dots">...</span>
<br/>&lt;/<span class="red">head</span>&gt;
</code>
</li>
<li>
<p>
<span class="num">3</span>Use the icon class on <code>"<span class="blue">display</span>:<span class="purple"> inline</span>"</code> elements:
<br />
Use example: <code>&lt;<span class="red">i</span> <span class="green">class</span>=<span class="yellow">&quot;flaticon-airplane49&quot;</span>&gt;&lt;/<span class="red">i</span>&gt;</code> or <code>&lt;<span class="red">span</span> <span class="green">class</span>=<span class="yellow">&quot;flaticon-airplane49&quot;</span>&gt;&lt;/<span class="red">span</span>&gt;</code>
</li>
</ul>
</section>
<section id="glyphs">
<div class="glyph"><div class="glyph-icon flaticon-001-watch"></div>
<div class="class-name">.flaticon-001-watch</div>
<div class="author-name">Author: <a data-file="001-watch" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-002-video-player"></div>
<div class="class-name">.flaticon-002-video-player</div>
<div class="author-name">Author: <a data-file="002-video-player" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-003-checked"></div>
<div class="class-name">.flaticon-003-checked</div>
<div class="author-name">Author: <a data-file="003-checked" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-004-up-arrow"></div>
<div class="class-name">.flaticon-004-up-arrow</div>
<div class="author-name">Author: <a data-file="004-up-arrow" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-005-profits"></div>
<div class="class-name">.flaticon-005-profits</div>
<div class="author-name">Author: <a data-file="005-profits" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-006-trash"></div>
<div class="class-name">.flaticon-006-trash</div>
<div class="author-name">Author: <a data-file="006-trash" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-007-clock"></div>
<div class="class-name">.flaticon-007-clock</div>
<div class="author-name">Author: <a data-file="007-clock" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-008-sync"></div>
<div class="class-name">.flaticon-008-sync</div>
<div class="author-name">Author: <a data-file="008-sync" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-009-mail"></div>
<div class="class-name">.flaticon-009-mail</div>
<div class="author-name">Author: <a data-file="009-mail" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-010-curve-arrow"></div>
<div class="class-name">.flaticon-010-curve-arrow</div>
<div class="author-name">Author: <a data-file="010-curve-arrow" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-011-settings-1"></div>
<div class="class-name">.flaticon-011-settings-1</div>
<div class="author-name">Author: <a data-file="011-settings-1" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-012-search"></div>
<div class="class-name">.flaticon-012-search</div>
<div class="author-name">Author: <a data-file="012-search" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-013-review"></div>
<div class="class-name">.flaticon-013-review</div>
<div class="author-name">Author: <a data-file="013-review" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-014-line-chart"></div>
<div class="class-name">.flaticon-014-line-chart</div>
<div class="author-name">Author: <a data-file="014-line-chart" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-015-user-1"></div>
<div class="class-name">.flaticon-015-user-1</div>
<div class="author-name">Author: <a data-file="015-user-1" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-016-image"></div>
<div class="class-name">.flaticon-016-image</div>
<div class="author-name">Author: <a data-file="016-image" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-017-phone-call"></div>
<div class="class-name">.flaticon-017-phone-call</div>
<div class="author-name">Author: <a data-file="017-phone-call" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-018-signature"></div>
<div class="class-name">.flaticon-018-signature</div>
<div class="author-name">Author: <a data-file="018-signature" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-019-paste"></div>
<div class="class-name">.flaticon-019-paste</div>
<div class="author-name">Author: <a data-file="019-paste" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-020-paint-palette"></div>
<div class="class-name">.flaticon-020-paint-palette</div>
<div class="author-name">Author: <a data-file="020-paint-palette" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-021-chat-2"></div>
<div class="class-name">.flaticon-021-chat-2</div>
<div class="author-name">Author: <a data-file="021-chat-2" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-022-new"></div>
<div class="class-name">.flaticon-022-new</div>
<div class="author-name">Author: <a data-file="022-new" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-023-more"></div>
<div class="class-name">.flaticon-023-more</div>
<div class="author-name">Author: <a data-file="023-more" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-024-minus"></div>
<div class="class-name">.flaticon-024-minus</div>
<div class="author-name">Author: <a data-file="024-minus" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-025-marker-1"></div>
<div class="class-name">.flaticon-025-marker-1</div>
<div class="author-name">Author: <a data-file="025-marker-1" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-026-send"></div>
<div class="class-name">.flaticon-026-send</div>
<div class="author-name">Author: <a data-file="026-send" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-027-logout"></div>
<div class="class-name">.flaticon-027-logout</div>
<div class="author-name">Author: <a data-file="027-logout" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-028-padlock"></div>
<div class="class-name">.flaticon-028-padlock</div>
<div class="author-name">Author: <a data-file="028-padlock" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-029-list"></div>
<div class="class-name">.flaticon-029-list</div>
<div class="author-name">Author: <a data-file="029-list" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-030-layer"></div>
<div class="class-name">.flaticon-030-layer</div>
<div class="author-name">Author: <a data-file="030-layer" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-031-keyboard"></div>
<div class="class-name">.flaticon-031-keyboard</div>
<div class="author-name">Author: <a data-file="031-keyboard" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-032-add-user"></div>
<div class="class-name">.flaticon-032-add-user</div>
<div class="author-name">Author: <a data-file="032-add-user" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-033-highlighter"></div>
<div class="class-name">.flaticon-033-highlighter</div>
<div class="author-name">Author: <a data-file="033-highlighter" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-034-help"></div>
<div class="class-name">.flaticon-034-help</div>
<div class="author-name">Author: <a data-file="034-help" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-035-heart"></div>
<div class="class-name">.flaticon-035-heart</div>
<div class="author-name">Author: <a data-file="035-heart" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-036-inbox"></div>
<div class="class-name">.flaticon-036-inbox</div>
<div class="author-name">Author: <a data-file="036-inbox" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-037-flash"></div>
<div class="class-name">.flaticon-037-flash</div>
<div class="author-name">Author: <a data-file="037-flash" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-038-marker"></div>
<div class="class-name">.flaticon-038-marker</div>
<div class="author-name">Author: <a data-file="038-marker" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-039-settings"></div>
<div class="class-name">.flaticon-039-settings</div>
<div class="author-name">Author: <a data-file="039-settings" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-040-folder"></div>
<div class="class-name">.flaticon-040-folder</div>
<div class="author-name">Author: <a data-file="040-folder" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-041-chat-1"></div>
<div class="class-name">.flaticon-041-chat-1</div>
<div class="author-name">Author: <a data-file="041-chat-1" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-042-eraser"></div>
<div class="class-name">.flaticon-042-eraser</div>
<div class="author-name">Author: <a data-file="042-eraser" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-043-edit"></div>
<div class="class-name">.flaticon-043-edit</div>
<div class="author-name">Author: <a data-file="043-edit" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-044-download"></div>
<div class="class-name">.flaticon-044-download</div>
<div class="author-name">Author: <a data-file="044-download" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-045-check-1"></div>
<div class="class-name">.flaticon-045-check-1</div>
<div class="author-name">Author: <a data-file="045-check-1" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-046-file"></div>
<div class="class-name">.flaticon-046-file</div>
<div class="author-name">Author: <a data-file="046-file" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-047-cancel-1"></div>
<div class="class-name">.flaticon-047-cancel-1</div>
<div class="author-name">Author: <a data-file="047-cancel-1" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-048-user"></div>
<div class="class-name">.flaticon-048-user</div>
<div class="author-name">Author: <a data-file="048-user" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-049-chat"></div>
<div class="class-name">.flaticon-049-chat</div>
<div class="author-name">Author: <a data-file="049-chat" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-050-cancel"></div>
<div class="class-name">.flaticon-050-cancel</div>
<div class="author-name">Author: <a data-file="050-cancel" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-051-bookmark"></div>
<div class="class-name">.flaticon-051-bookmark</div>
<div class="author-name">Author: <a data-file="051-bookmark" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-052-package"></div>
<div class="class-name">.flaticon-052-package</div>
<div class="author-name">Author: <a data-file="052-package" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-053-approved"></div>
<div class="class-name">.flaticon-053-approved</div>
<div class="author-name">Author: <a data-file="053-approved" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-054-analytics"></div>
<div class="class-name">.flaticon-054-analytics</div>
<div class="author-name">Author: <a data-file="054-analytics" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-055-notification"></div>
<div class="class-name">.flaticon-055-notification</div>
<div class="author-name">Author: <a data-file="055-notification" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-056-add"></div>
<div class="class-name">.flaticon-056-add</div>
<div class="author-name">Author: <a data-file="056-add" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
<div class="glyph"><div class="glyph-icon flaticon-057-check"></div>
<div class="class-name">.flaticon-057-check</div>
<div class="author-name">Author: <a data-file="057-check" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a> </div>
</div>
</section>
<section class="attribution wrapper" style="text-align:center;">
<div class="title">License and attribution:</div><div class="attrDiv">Font generated by <a href="https://www.flaticon.com">flaticon.com</a>. <div><p>Under <a href="http://creativecommons.org/licenses/by/3.0/">CC</a>: <a data-file="001-watch" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a></p> </div>
</div>
<div class="title">Copy the Attribution License:</div>
<textarea onclick="this.focus();this.select();">Font generated by &lt;a href=&quot;https://www.flaticon.com&quot;&gt;flaticon.com&lt;/a&gt;. <p>Under <a href="http://creativecommons.org/licenses/by/3.0/">CC</a>: <a data-file="001-watch" href="https://www.flaticon.com/authors/dmitri13">dmitri13</a></p>
</textarea>
</section>
<section class="iconsuse">
<div class="title">Examples:</div>
<div class="image">
<p>
<i class="glyph-icon flaticon-001-watch"></i>
<span>&lt;i class=&quot;flaticon-001-watch&quot;&gt;&lt;/i&gt;</span>
</p>
</div>
<div class="image">
<p>
<i class="glyph-icon flaticon-002-video-player"></i>
<span>&lt;i class=&quot;flaticon-002-video-player&quot;&gt;&lt;/i&gt;</span>
</p>
</div>
<div class="image">
<p>
<i class="glyph-icon flaticon-003-checked"></i>
<span>&lt;i class=&quot;flaticon-003-checked&quot;&gt;&lt;/i&gt;</span>
</p>
</div>
<div class="image">
<p>
<i class="glyph-icon flaticon-004-up-arrow"></i>
<span>&lt;i class=&quot;flaticon-004-up-arrow&quot;&gt;&lt;/i&gt;</span>
</p>
</div>
</div>
</section>
<div id="footer">
<div>Generated by <a href="https://www.flaticon.com">flaticon.com</a>
</div>
</div>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Some files were not shown because too many files have changed in this diff Show More