commit: | c99b3fda5f19bb0d09b1514d5374f4c7a92bf5bd |
author: | Chip |
committer: | Chip |
date: | Wed Apr 30 19:43:13 2025 -0500 |
parents: |
diff --git a/.gitignore b/.gitignore line changes: +6/-0 index 0000000..af14ec7 --- /dev/null +++ b/.gitignore
@@ -0,0 +1,6 @@ +*.TPU +*.EXE +*.MAP +*.img +*.imd +pkg/
diff --git a/Makefile b/Makefile line changes: +31/-0 index 0000000..2c10b73 --- /dev/null +++ b/Makefile
@@ -0,0 +1,31 @@ +where.exe: apricot.tpu util.tpu gfxmanag.tpu gfxtext.tpu cbi.tpu music.tpu gamedata.tpu +imgview.exe: apricot.tpu util.tpu gfxmanag.tpu cbi.tpu +mplay.exe: apricot.tpu util.tpu music.tpu + +images = airplane chicago manchest hamburg yokohama delhi melbourn beijing \ + riodejan mombasa stpeters person0 person1 person2 person3 person4 \ + person5 person6 person7 person8 person9 placehol owl1 title desk \ + ending +cbi_images = $(addsuffix .cbi,$(addprefix img/,$(images))) + +music = quickie soshunfu gavotte elise lisztwal fndngio polkatim funk \ + song3 stomp btlboog fly2moon +sn_songs = $(addsuffix .sn,$(addprefix music/,$(music))) + +flags = -$R+ + +.pas.tpu: + tpc $(flags) $*.pas + +.pas.exe: + tpc $(flags) -GD $*.pas + +disk.img: where.exe imgview.exe mplay.exe font/font.bin $(cbi_images) $(sn_songs) + dd if=/dev/zero of=disk.img bs=1K count=720 + mformat -i disk.img + mcopy -i disk.img $^ :: + apriboot disk.img + +clean: + del *.tpu + del where.exe
diff --git a/apricot.pas b/apricot.pas line changes: +78/-0 index 0000000..6d96217 --- /dev/null +++ b/apricot.pas
@@ -0,0 +1,78 @@ +unit Apricot; +interface + type + ScreenModeT = (ScreenModeText, ScreenModeGfx); + + { Standard Crt-like functions } + function ReadKey: Char; + function KeyPressed: Boolean; + procedure Delay(const ms: Word); + + { Screen } + { true if screen is on; false otherwise } + function ScreenIsOn: Boolean; + { Mode 0: Text, Mode 1: Graphics } + procedure ScreenMode(const mode: ScreenModeT); + procedure ScreenOn(const on: Boolean); + + var CurrentScreenMode: ScreenModeT; + +implementation + uses Dos; + + function IntDos1(cmd: Byte): Byte; + var r: Registers; + begin + r.AX := cmd shl 8; + Intr($21, r); + IntDos1 := Byte(r.AX); + end; + + function ReadKey: Char; + begin + ReadKey := Char(IntDos1(8)); + end; + + function KeyPressed: Boolean; + begin + KeyPressed := Boolean(IntDos1($0B)); + end; + + procedure Delay(const ms: Word); + var t0, t1: Longint; + h, m, s, t: Word; + begin + GetTime(h, m, s, t); + t1 := h * 360000 + m * 6000 + s * 100 + t + Longint(ms div 10); + repeat + GetTime(h, m, s, t); + t0 := h * 360000 + m * 6000 + s * 100 + t; + until t0 >= t1; + end; + + function Control(dev, com, dat: Word): Word; + var r: Registers; + begin + r.BX := dev; + r.CX := com; + r.DX := dat; + Intr($FC, r); + Control := r.AX; + end; + + function ScreenIsOn: Boolean; + begin + ScreenIsOn := not Boolean(Control($31, 0, 0)); + end; + + procedure ScreenMode(const mode: ScreenModeT); + begin + Control($31, 1, Word(mode)); + CurrentScreenMode := mode; + end; + + procedure ScreenOn(const on: Boolean); + begin + Control($31, 2, Word(not on)); + end; +end.
diff --git a/cbi.pas b/cbi.pas line changes: +229/-0 index 0000000..e8af6e3 --- /dev/null +++ b/cbi.pas
@@ -0,0 +1,229 @@ +unit CBI; +interface + +uses GfxManager; + +type + PWord = ^Word; + IndexArray = array[0..1249] of Word; + PIndexArray = ^IndexArray; + ChunkArray = array[0..1249] of Chunk; + PChunkArray = ^ChunkArray; + ChunkLocation = (locVram, locRam); + SubImage = record + num_chunks: Word; + num_indexes: Word; + indexes: PIndexArray; + case loc: ChunkLocation of + locVram: (chunk_char_start: Word); + locRam: (chunk_address: PChunkArray); + end; + PSubImage = ^SubImage; + ChunkedBitmapImage = record + width: Byte; + height: Byte; + image: SubImage; + mask: PSubImage; + end; + +procedure LoadCBI(const filename: string; var out: ChunkedBitmapImage); +procedure DisposeCBI(var cbi: ChunkedBitmapImage); +procedure DisplayCBI(const cbi: ChunkedBitmapImage; x, y: Byte); + +implementation + +uses Util, Apricot; + +type PackedIndexArray = array[0..1874] of Byte; + +const MAGIC: array[0..3] of Byte = ($A7, $63, $69, $00); + +var tmp: String; + +procedure LoadChunkList(var f: File; var out: SubImage; chunk_location: ChunkLocation); +var count, byte_len, actualRead: Word; + chunk: array[0..15] of Word; + chunkPtr: PChunkArray; +begin + BlockRead(f, count, 2, actualRead); + if actualRead = 0 then + Die('could not read chunk count'); + + out.loc := chunk_location; + byte_len := count * 32; + case chunk_location of + locVram: + { AllocChars counts characters, not bytes } + gfxman.AllocChars(count, Pointer(chunkPtr), out.chunk_char_start); + locRam: + GetMem(chunkPtr, byte_len); + end; + + BlockRead(f, chunkPtr^, byte_len, actualRead); + if actualRead < byte_len then + Die('short read loading chunks'); + + if chunk_location = locRam then + out.chunk_address := chunkPtr; + out.num_chunks := count; +end; + +procedure LoadIndexes(var f: File; var out: SubImage; count: Word); +var i, j, packedCount, actualRead: Word; + buf: array[0..1] of Byte; + tmpIndexes: ^PackedIndexArray; + unpackedIndexes: PIndexArray; +begin + { Indexes are packed as 12-bit values across three bytes: LH1 UH2UH1 LH2 } + packedCount := ((count + 1) div 2) * 3; + + out.num_indexes := count; + GetMem(unpackedIndexes, count * 2); + GetMem(tmpIndexes, packedCount); + BlockRead(f, tmpIndexes^, packedCount, actualRead); + if actualRead < packedCount then + Die('could not read indexes'); + + i := 0; + j := 0; + while i < count do begin + unpackedIndexes^[i] := Word(tmpIndexes^[j]) OR (Word(tmpIndexes^[j+1] AND $0F) SHL 8); + if i < count then + unpackedIndexes^[i + 1] := Word(tmpIndexes^[j+2]) OR (Word(tmpIndexes^[j+1] AND $F0) SHL 4); + i := i + 2; + j := j + 3; + end; + FreeMem(tmpIndexes, packedCount); + out.indexes := unpackedIndexes; +end; + +procedure LoadCBI(const filename: string; var out: ChunkedBitmapImage); +var f: File; + char_count, actualRead: Word; + buf: array[0..3] of Byte; +begin + Assign(f, filename); + Reset(f, 1); + BlockRead(f, buf, 4, actualRead); + if not CompareArray(buf, MAGIC, 4) then + Die('Invalid Magic in CBI: ' + filename); + + BlockRead(f, buf, 2, actualRead); + if actualRead < 2 then + Die('could not read header'); + out.width := buf[0]; + out.height := buf[1]; + out.mask := nil; + char_count := out.width * out.height; + + repeat + BlockRead(f, buf, 1, actualRead); + case buf[0] of + 8: begin + LoadChunkList(f, out.image, locVram); + end; + 9: LoadIndexes(f, out.image, char_count); + 16: begin + New(out.mask); + LoadChunkList(f, out.mask^, locRam); + end; + 17: LoadIndexes(f, out.mask^, char_count); + else + begin + Writeln('unknown chunk type: ', buf[0]); + Halt(1); + end; + end; + until Eof(f); + Close(f); +end; + +procedure DisposeSubimage(var img: SubImage); +begin + FreeMem(img.indexes, img.num_indexes * 2); + if img.loc = locRam then + FreeMem(img.chunk_address, img.num_chunks * 32); +end; + +procedure DisposeCBI(var cbi: ChunkedBitmapImage); +begin + DisposeSubimage(cbi.image); + if cbi.mask <> nil then begin + DisposeSubimage(cbi.mask^); + Dispose(cbi.mask); + end; +end; + +procedure DisplayCBI(const cbi: ChunkedBitmapImage; x, y: Byte); +var i, j, k, max_x, max_y: Byte; + src_idx, mask: Word; + iptr, mptr: PWord; + char_data, sdata, idata, mdata: PChunk; +begin + max_x := x + cbi.width - 1; + if max_x >= 50 then + max_x := 49; + max_y := y + cbi.height - 1; + if max_y >= 25 then + max_y := 24; + + if cbi.mask = nil then begin + for j := y to max_y do begin + iptr := @cbi.image.indexes^[(j - y) * cbi.width]; + for i := x to max_x do begin + case iptr^ of + $FFE: src_idx := CHAR_BLACK; + $FFF: src_idx := CHAR_WHITE; + else + src_idx := cbi.image.chunk_char_start + iptr^; + end; + charTable[j * 50 + i] := src_idx; + Inc(iptr); + end; + end; + end + else begin + for j := y to max_y do begin + { image pointer - pointer to index array for image } + iptr := @cbi.image.indexes^[(j - y) * cbi.width]; + { mask pointer - pointer to index array for mask } + mptr := @cbi.mask^.indexes^[(j - y) * cbi.width]; + for i := x to max_x do begin + case iptr^ of + $FFE: src_idx := CHAR_BLACK; + $FFF: src_idx := CHAR_WHITE; + else + src_idx := cbi.image.chunk_char_start + iptr^; + end; + case mptr^ of + $FFE: ; { zero mask - no data copied } + $FFF: { full mask - all data copied } + charTable[j * 50 + i] := src_idx; + else + begin { composite screen data into the character } + { clone the source data } + gfxman.CloneChar(src_idx, src_idx); + iptr^ := src_idx; + { screen data - what is already displayed } + sdata := Ptr($0000, charTable[j * 50 + i] SHL 5); + { image data - new data being added } + idata := Ptr($0000, src_idx SHL 5); + { mask data - 0 is screen data, 1 is image data } + mdata := @cbi.mask^.chunk_address^[mptr^]; + for k := 0 to 15 do begin + mask := mdata^[k]; + idata^[k] := + (sdata^[k] AND (NOT mask)) OR + (idata^[k] AND mask); + end; + charTable[j * 50 + i] := src_idx; + end; + end; + Inc(iptr); + Inc(mptr); + end; + end; + end; +end; + +end.
diff --git a/font/font.aseprite b/font/font.aseprite line changes: +0/-0 index 0000000..e5165c5 --- /dev/null +++ b/font/font.aseprite
diff --git a/font/font.bin b/font/font.bin line changes: +0/-0 index 0000000..c5bbefa --- /dev/null +++ b/font/font.bin
diff --git a/font/font.png b/font/font.png line changes: +0/-0 index 0000000..73c3edb --- /dev/null +++ b/font/font.png
diff --git a/gamedata.pas b/gamedata.pas line changes: +382/-0 index 0000000..4b05c61 --- /dev/null +++ b/gamedata.pas
@@ -0,0 +1,382 @@ +unit GameData; +interface + +type + City = (Chicago, Manchester, Hamburg, Yokohama, Delhi, Melbourne, + Beijing, RioDeJaneiro, Mombasa, StPetersburg); + CityParam = record + city: City; + person: Byte; { 'personN.cbi' } + talkClue: Byte; { index into talkClues } + researchClue: Byte; { index into researchClues } + lookClue: Byte; { index into lookClues } + end; + GameState = record + game: Byte; { index into gameName } + currentCity: City; { current city } + totalCities: Byte; { total number of cities in session } + progress: Byte; { index into cities; increments when successfully guessed } + hours: Word; { just for fun } + path: array[0..9] of CityParam; { list of cities to visit } + end; + ClueList = array[0..2] of String; + PClueStr = ^String; + +const days: array[0..6] of String = ('Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'); + +const cityName: array[City] of String = ( + 'Chicago', + 'Manchester', + 'Hamburg', + 'Yokohama', + 'Delhi', + 'Melbourne', + 'Beijing', + 'Rio de Janeiro', + 'Mombasa', + 'St. Petersburg' +); + +const cityDetail: array[City] of String = ( + 'Wrigley Field', + 'Old Trafford', + 'St. Pauli Piers', + 'Minato Mirai 21', + 'Jama Masjid', + 'Williamstown Park', + 'The Palace Museum', + 'Botafogo Bay', + 'Old Town', + 'Church of the Savior' +); + +const cityCountry: array[City] of String = ( + 'USA', + 'UK', + 'Germany', + 'Japan', + 'India', + 'Australia', + 'China', + 'Brazil', + 'Kenya', + 'Russia' +); + +const cityBackgrounds: array[City] of String = ( + 'chicago', + 'manchest', + 'hamburg', + 'yokohama', + 'delhi', + 'melbourn', + 'beijing', + 'riodejan', + 'mombasa', + 'stpeters' +); + +const citySongs: array[City] of String = ( + 'funk', + 'elise', + 'polkatim', + 'soshunfu', + 'lisztwal', + 'btlboog', + 'gavotte', + 'song3', + 'stomp', + 'fndngio' +); + +const gameName: array[0..9] of String = ( + 'Return to Castle Wolfenstein', + 'Corncob 3D', + 'Elite', + 'Thexder', + 'Altered Beast', + 'Shufflepuck Cafe', + 'Prince of Persia', + 'Adventure', + 'Oregon Trail', + 'Where in the World is Carmen Sandiego' +); + +const talkClues: array[City] of ClueList = ( + { Chicago } ( + 'He hooted about getting a hot dog without ketchup.', + 'It''s weird that an owl wants to hang out with bears and cubs.', + 'He seemed excited about visiting the birthplace of House music.' + ), + { Manchester } ( + 'He seemed excited to see a football match.', + 'I guess he''s a big fan of Oasis? Wanted to see where they''re from.', + 'That owl said he was going to the city where both Jane Eyre and The Communist Manifesto were started.' + ), + { Hamburg } ( + 'He wanted to take a walk through the Planten un Blomen park. Do owls even walk?', + 'He said he was in for a long night of museums.', + 'I guess he was hungry because he kept talking about hamburgers.' + ), + { Yokohama } ( + 'I forget where he said he was going but I think it was a kind of car tire?', + 'He went on and on about his favorite pro wrestler, Natsupoi.', + 'He said he was excited to see the CupNoodles Museum.' + ), + { Delhi } ( + 'He said he had a hankerin'' for some butter chicken.', + 'He said he was going to meet a Dilliwalla friend', + 'He was excited to meet other birds in this city''s many ponds' + ), + { Melbourne } ( + 'He''s a big fan of the movie Mad Max. He went to see where it was filmed.', + 'He said to "Meet me under the clocks". Plural. More than one clock.', + 'He said he wanted to get an espresso at ST. ALi.' + ), + { Beijing } ( + 'He said they were famous for their ducks. Maybe he has a cousin there?', + 'He told me about how he was there for the Olympics in 2008.', + 'He was going to a forbidden city? Don''t know how he expects to get in.' + ), + { Rio } ( + 'He said it was nothing like the movie with all the birds.', + 'He says you have to make it out for Carnival at least once in your life.', + 'I don''t think I''d want to live somewhere where a statue of Jesus is always looking down on me.' + ), + { Mombasa } ( + 'He said he was headed for the white and blue city.', + 'He said he wanted to listen to safari sound and them mushrooms. Whatever that means.', + 'I didn''t peg him for a religious owl, but he said he was going to Fort Jesus.' + ), + { St. Petersburg } ( + 'He said he was on his way to the "Venice of the North".', + 'I forget where he said he was going. Petrograd? Leningrad? Something like that.', + 'He said he was headed north but I think it was a city in Florida?' + ) +); + +const researchClues: array[City] of ClueList = ( + { Chicago } ( + 'This city is known for its elevated rail.', + 'It had the tallest building in the world from 1973 to 1998.', + 'It''s famous for fires despite being built on a swamp.' + ), + { Manchester } ( + 'This city is the sister city to Los Angeles and Amsterdam.', + 'It was the world''s first industrialized city.', + 'It''s the home of the largest theater in the round in its country.' + ), + { Hamburg } ( + 'It''s probably named after a castle ordered to be built by Empereror Charlemagne in 808.', + 'It is a major port on the River Elbe.', + 'It houses the headquarters of the world''s oldest merchant bank.' + ), + { Yokohama } ( + 'It has the global headquarters of Nissan.', + 'It was the site of its country''s first global port, opened in 1859.', + 'It was featured in Around the World in Eighty Days even though Jules Verne had never been there.' + ), + { Delhi } ( + 'It is situated on the Yamuna River.', + 'It is home of the International Mango Festival.', + 'It is the second largest metropolitan area in the world.' + ), + { Melbourne } ( + 'It was founded by John Batman.', + 'It is the birthplace of Chris Hemsworth and Cate Blanchett.', + 'This city grew hugely due to the Victorian gold rush.' + ), + { Beijing } ( + 'This city used to be home to the emperor', + 'Like a tree, this city''s growth is marked by rings - six roads spreading out from its center.', + 'This city has several rivers flowing through it, which flow into the Bohai Sea.' + ), + { Rio } ( + 'This city was founded by the Portugese in 1565.', + 'This city is known for both samba and bossa nova.', + 'You''ve arrived when you pass Sugarloaf Mountain.' + ), + { Mombasa } ( + 'This city is centered on an island and is separated from the mainland by Port Reitz and Tudor Creek.', + 'It is the sister city of Seattle and Long Beach.', + 'It is the birthplace of Mercedes Iman Diamond.' + ), + { St. Petersburg } ( + 'It is situated on the Neva River.', + 'The city was founded by Peter the Great', + 'This was the birthplace of Anton Yelchin.' + ) +); + +const lookClues: array[City] of ClueList = ( + { Chicago } ( + 'a peeled off label for Green River soda', + 'a half eaten pizza puff', + 'an old ticket for a game at Wrigley Field' + ), + { Manchester } ( + 'a newspaper clipping from The Guardian, 1959', + 'a ticket for the Metrolink', + 'a piece of letterhead for THG plc' + ), + { Hamburg } ( + 'a ripped cover from an issue of Der Spiegel', + 'a ticket for the U-Bahn', + 'a photo of a half-assembled Airbus A320' + ), + { Yokohama } ( + 'a biography of journalist Lily Abegg', + 'an old ticket for Stardom Mid Summer Champions 2023', + 'a copy of Pokemon Green with a note that says "Vermilion City"' + ), + { Delhi } ( + 'a ticket for a cricket match at Arun Jaitley Stadium', + 'an advertisement for the Jantar Mantar', + 'a map showing directions to Gali Paranthe Wali' + ), + { Melbourne } ( + 'a jar of Vegemite', + 'the original black box flight recorder', + 'a flyer from the Midsumma Festival' + ), + { Beijing } ( + 'a flyer for the gardens at Beihai Park', + 'a ticket for the Temple of Heaven', + 'a cassette tape for a band called Black Panther' + ), + { Rio } ( + 'a signed portrait of Nelson Piquet, dated March 21, 1982', + 'a copy of A Moreninha checked out from the National Library', + 'a ferry ticket to Charitas' + ), + { Mombasa } ( + 'a ticket for Mbaraki Sports Grounds', + 'a picture of two pairs of tusks arcing over a roadway', + 'a copy of Halo 3: ODST' + ), + { St. Petersburg } ( + 'Mendeleev''s periodic table of elements', + 'a very old theremin', + 'a ticket for The State Hermitage Museum' + ) +); + +const Dunno: array[0..4] of String = ( + 'An owl took your floppy disk? Are you feeling alright?', + 'I haven''t seen any owls, man.', + 'Sure is a nice day, huh?', + 'You seem kinda lost, buddy.', + 'How about that local sports team?' +); + +var gs: GameState; + +procedure RandomizeGame; +procedure DumpGameState; +procedure ProcessGameLogic; +function EndGame: boolean; +function GetTalkClue: PClueStr; +function GetResearchClue: PClueStr; +function GetLookClue: PClueStr; + +implementation + +uses GfxText; + +procedure RandomizeGame; +var i, j, k: Integer; + p: ^Byte; +label restart; +begin + Randomize; + gs.game := Random(10); + gs.totalCities := 5; + gs.progress := 0; + gs.hours := 16 + Random(5); + for i := 0 to gs.totalCities do begin + restart: + gs.path[i].city := City(Random(Word(High(City)) + 1)); { yikes } + if i > 0 then + for j := 0 to i - 1 do + if gs.path[j].city = gs.path[i].city then + Goto restart; + with gs.path[i] do begin + person := Random(10); + talkClue := Random(3); + researchClue := Random(3); + lookClue := Random(3); + end; + end; + gs.currentCity := gs.path[0].city; +end; + +procedure DumpGameState; +var i: Integer; + s1, s2: String; + c: City; +begin + WriteLine(0, 0, 'Lost game: ' + gameName[gs.game], 50); + Str(gs.progress + 1, s1); + Str(gs.totalCities, s2); + WriteLine(0, 1, 'Currently in ' + cityName[gs.currentCity] + '. Completed ' + s1 + ' of ' + s2 + ' cities', 50); + for i := 0 to gs.totalCities - 1 do begin + c := gs.path[i].city; + WriteLine(0, i * 4 + 2, cityName[c] + ':', 50); + WriteLine(2, i * 4 + 3, 't:' + talkClues[c, gs.path[i].talkClue], 50); + WriteLine(2, i * 4 + 4, 'r:' + researchClues[c, gs.path[i].researchClue], 50); + WriteLine(2, i * 4 + 5, 'l:' + lookClues[c, gs.path[i].lookClue], 50); + end; +end; + +procedure ProcessGameLogic; +begin + if (gs.progress < gs.totalCities) AND (gs.currentCity = gs.path[gs.progress + 1].city) then begin + Inc(gs.progress); + gs.hours := gs.hours + 5 + Random(20); + end; +end; + +function OnPath: boolean; +begin + OnPath := gs.currentCity = gs.path[gs.progress].city; +end; + +function EndGame: boolean; +begin + EndGame := gs.progress = gs.totalCities - 1; +end; + +function GetTalkClue: PClueStr; +var c: City; +begin + if OnPath then begin + c := gs.path[Succ(gs.progress)].city; + GetTalkClue := @talkClues[c, gs.path[Succ(gs.progress)].talkClue]; + end + else + GetTalkClue := @Dunno[Random(5)]; +end; + +function GetResearchClue: PClueStr; +var c: City; +begin + if OnPath then begin + c := gs.path[Succ(gs.progress)].city; + GetResearchClue := @researchClues[c, gs.path[Succ(gs.progress)].researchClue]; + end + else + GetResearchClue := nil; +end; + +function GetLookClue: PClueStr; +var c: City; +begin + if OnPath then begin + c := gs.path[Succ(gs.progress)].city; + GetLookClue := @lookClues[c, gs.path[Succ(gs.progress)].researchClue] + end + else + GetLookClue := nil +end; + +end.
diff --git a/gfxmanag.pas b/gfxmanag.pas line changes: +116/-0 index 0000000..86607dd --- /dev/null +++ b/gfxmanag.pas
@@ -0,0 +1,116 @@ +unit GfxManager; +interface + +type + Chunk = array[0..15] of Word; + PChunk = ^Chunk; + { An array that can hold all character memory from 0x800 to 0xC800 } + ScreenCharArray = array[0..1535] of Chunk; + ScreenTableArray = array[0..2047] of Word; + GfxTableArray = array[0..1249] of Word; { smaller for gfx mode } + PGfxTableArray = ^GfxTableArray; + GfxManagerObj = object + top: Word; { in 32 byte chunks; starts at $2800 } + procedure Reset; + procedure Init; + procedure AllocSingle(var p: Pointer; var index: Word); + procedure CloneChar(const from_index: Word; var to_index: Word); + procedure AllocChars(const n: Word; var p: Pointer; var index_start: Word); + function SaveTop: Word; + procedure RestoreTop(rtop: Word); + end; + +const CHAR_BLACK: Word = $18; +const CHAR_WHITE: Word = $19; +var gfxman: GfxManagerObj; + charTable: ScreenTableArray absolute $F000:0000; + charmem: ScreenCharArray absolute $0080:0000; + +function SaveScreen: PGfxTableArray; +procedure RestoreScreen(const savedTable: PGfxTableArray); + +implementation + +uses Util; + +procedure GfxManagerObj.Reset; +begin + top := 192; { 0000:1800 - we're using the top half of the first font area for gfx chunks } +end; + +procedure GfxManagerObj.Init; +var i: Integer; + p: ^Word; +begin + Reset; + { Create known characters in the top of vector space } + p := Ptr(0, $300); + for i := 0 to 15 do begin + p^ := $0000; + Inc(p); + end; + for i := 0 to 15 do begin + p^ := $FFFF; + Inc(p); + end; +end; + +procedure GfxManagerObj.AllocSingle(var p: Pointer; var index: Word); +begin + if top + 1 > 1600 then + Die('cannot allocate graphics character'); + index := top; + p := Ptr($0000, index SHL 5); + Inc(top); +end; + +procedure GfxManagerObj.CloneChar(const from_index: Word; var to_index: Word); +var a, b: PChunk; + i: Integer; +begin + a := Ptr($0000, from_index SHL 5); + AllocSingle(Pointer(b), to_index); + for i := 0 to 15 do + b^[i] := a^[i]; +end; + +{ Allocate a block of characters and return a pointer to it } +procedure GfxManagerObj.AllocChars(const n: Word; var p: Pointer; var index_start: Word); +var str1, str2: string[5]; +begin + if top + n >= 1600 then begin + Str(n, str1); + Str(n - (1600 - top), str2); + Die('character memory overflow allocating ' + str1 + ' characters (overflow by ' + str2 + ')'); + end; + index_start := top; + p := Ptr($0000, index_start SHL 5); + top := top + n; +end; + +function GfxManagerObj.SaveTop: Word; +begin + SaveTop := top; +end; + +procedure GfxManagerObj.RestoreTop(rtop: Word); +begin + top := rtop; +end; + +function SaveScreen: PGfxTableArray; +var savedTable: PGfxTableArray; +begin + New(savedTable); + Move(charTable, savedTable^, SizeOf(GfxTableArray)); + SaveScreen := savedTable; +end; + +procedure RestoreScreen(const savedTable: PGfxTableArray); +begin + Move(savedTable^, charTable, SizeOf(GfxTableArray)); +end; + +begin + gfxman.Init; +end.
diff --git a/gfxtext.pas b/gfxtext.pas line changes: +143/-0 index 0000000..28608a4 --- /dev/null +++ b/gfxtext.pas
@@ -0,0 +1,143 @@ +unit GfxText; +interface + +procedure LoadFont(const filename: String); +procedure WriteLine(const x, y: Byte; const s: String; w: Byte); +procedure Box(const x1, y1, x2, y2: Byte); +procedure TextRegion(const x1, y1, x2, y2: Byte; const s: String); +procedure TextBox(const x1, y1, x2, y2: Byte; const s: String); + +implementation + +uses Apricot, GfxManager, Util; + +type PWord = ^Word; + +procedure LoadFont(const filename: String); +var actualRead: Integer; + f: File; +begin + Assign(f, filename); + Reset(f, $1000); + BlockRead(f, charmem, 1, actualRead); + if actualRead < 1 then + Die('could not read font ' + filename); + Close(f); +end; + +function NextBreak(const s: String; const start, width: Byte): Byte; +var i: Byte; +begin + { first check for a newline } + for i := start to start + width - 1 do + if s[i] = #$0D then begin + NextBreak := i; + Exit; + end; + + { If the remaining characters aren't long enough, we won't find a break } + if Length(s) - start < width - 1 then begin + NextBreak := 0; + Exit; + end; + + { And finally, look for the last whitespace before the width limit } + for i := start + width - 1 downto start do + if s[i] = #$20 then begin + NextBreak := i; + Exit; + end; + + { And if we didn't find anything, break at the last character } + NextBreak := start + width; +end; + +procedure WriteLine(const x, y: Byte; const s: String; w: Byte); +var i: Byte; + p: PWord; +begin + if x + w > 50 then + w := 50 - x; + if w > Length(s) then + w := Length(s); + p := @charTable[y * 50 + x]; + for i:= 1 to w do begin + p^ := $40 + Word(s[i]); + Inc(p); + end; +end; + +procedure Box(const x1, y1, x2, y2: Byte); +var i, j, w, h: Byte; + p: PWord; +begin + w := x2 - x1 - 2; + h := y2 - y1 - 2; + p := @charTable[y1 * 50 + x1]; + p^ := Word($40 + $10); + for i := 0 to w do begin + Inc(p); + p^ := Word($40 + $15); + end; + Inc(p); + p^ := Word($40 + $11); + for i := 0 to h do begin + p := PWord(PChar(p) + (48 - w) * 2); { Advance to next line } + p^ := Word($40 + $14); + for j := 0 to w do begin + Inc(p); + p^ := Word($40 + $20); + end; + Inc(p); + p^ := Word($40 + $14); + end; + p := PWord(PChar(p) + (48 - w) * 2); + p^ := Word($40 + $13); + for i := 0 to w do begin + Inc(p); + p^ := Word($40 + $15); + end; + Inc(p); + p^ := Word($40 + $12); +end; + +procedure TextRegion(const x1, y1, x2, y2: Byte; const s: String); +var b, i, j, w, h, x: Byte; + p: PWord; +begin + w := x2 - x1; + h := y2 - y1; + p := @charTable[y1 * 50 + x1]; + + j := 0; + x := 0; + b := NextBreak(s, 1, w); + for i := 1 to Length(s) do begin + if i = b then begin + j := j + 1; + if j = h + 1 then + Exit; { out of space } + { calculate the next break } + b := NextBreak(s, i + 1, w); + { and skip pointer to the next line } + p := PWord(PChar(p) + (50 - x) * 2); + x := 0; + Continue; + end; + p^ := $40 + Word(s[i]); + Inc(p); + x := x + 1; + if (i AND 3) = 0 then + Delay50(1); + end; +end; + +procedure TextBox(const x1, y1, x2, y2: Byte; const s: String); +var b, i, j, w, h, x: Byte; + p: PWord; +begin + Box(x1, y1, x2, y2); + TextRegion(x1+1, y1+1, x2-1, y2-1, s); +end; + +end.
diff --git a/img/airplane.cbi b/img/airplane.cbi line changes: +0/-0 index 0000000..37d9e0d --- /dev/null +++ b/img/airplane.cbi
diff --git a/img/beijing.cbi b/img/beijing.cbi line changes: +0/-0 index 0000000..f97947f --- /dev/null +++ b/img/beijing.cbi
diff --git a/img/chicago.cbi b/img/chicago.cbi line changes: +0/-0 index 0000000..b5e3dc6 --- /dev/null +++ b/img/chicago.cbi
diff --git a/img/delhi.cbi b/img/delhi.cbi line changes: +0/-0 index 0000000..41b10e9 --- /dev/null +++ b/img/delhi.cbi
diff --git a/img/desk.cbi b/img/desk.cbi line changes: +0/-0 index 0000000..9c30d3a --- /dev/null +++ b/img/desk.cbi
diff --git a/img/eiffel.cbi b/img/eiffel.cbi line changes: +0/-0 index 0000000..4a0318d --- /dev/null +++ b/img/eiffel.cbi
diff --git a/img/ending.cbi b/img/ending.cbi line changes: +0/-0 index 0000000..79222ec --- /dev/null +++ b/img/ending.cbi
diff --git a/img/goose.cbi b/img/goose.cbi line changes: +0/-0 index 0000000..3856f8a --- /dev/null +++ b/img/goose.cbi
diff --git a/img/hamburg.cbi b/img/hamburg.cbi line changes: +0/-0 index 0000000..1e334eb --- /dev/null +++ b/img/hamburg.cbi
diff --git a/img/manchest.cbi b/img/manchest.cbi line changes: +0/-0 index 0000000..20b032a --- /dev/null +++ b/img/manchest.cbi
diff --git a/img/melbourn.cbi b/img/melbourn.cbi line changes: +0/-0 index 0000000..a3fe325 --- /dev/null +++ b/img/melbourn.cbi
diff --git a/img/mombasa.cbi b/img/mombasa.cbi line changes: +0/-0 index 0000000..64cea89 --- /dev/null +++ b/img/mombasa.cbi
diff --git a/img/owl1.cbi b/img/owl1.cbi line changes: +0/-0 index 0000000..2e5a078 --- /dev/null +++ b/img/owl1.cbi
diff --git a/img/person0.cbi b/img/person0.cbi line changes: +0/-0 index 0000000..02ea860 --- /dev/null +++ b/img/person0.cbi
diff --git a/img/person1.cbi b/img/person1.cbi line changes: +0/-0 index 0000000..08875cc --- /dev/null +++ b/img/person1.cbi
diff --git a/img/person2.cbi b/img/person2.cbi line changes: +0/-0 index 0000000..64231d2 --- /dev/null +++ b/img/person2.cbi
diff --git a/img/person3.cbi b/img/person3.cbi line changes: +0/-0 index 0000000..09a069c --- /dev/null +++ b/img/person3.cbi
diff --git a/img/person4.cbi b/img/person4.cbi line changes: +0/-0 index 0000000..a59f3f0 --- /dev/null +++ b/img/person4.cbi
diff --git a/img/person5.cbi b/img/person5.cbi line changes: +0/-0 index 0000000..3b8602e --- /dev/null +++ b/img/person5.cbi
diff --git a/img/person6.cbi b/img/person6.cbi line changes: +0/-0 index 0000000..70dd581 --- /dev/null +++ b/img/person6.cbi
diff --git a/img/person7.cbi b/img/person7.cbi line changes: +0/-0 index 0000000..ccf0689 --- /dev/null +++ b/img/person7.cbi
diff --git a/img/person8.cbi b/img/person8.cbi line changes: +0/-0 index 0000000..7188be2 --- /dev/null +++ b/img/person8.cbi
diff --git a/img/person9.cbi b/img/person9.cbi line changes: +0/-0 index 0000000..a9976c6 --- /dev/null +++ b/img/person9.cbi
diff --git a/img/placehol.cbi b/img/placehol.cbi line changes: +0/-0 index 0000000..adbead1 --- /dev/null +++ b/img/placehol.cbi
diff --git a/img/riodejan.cbi b/img/riodejan.cbi line changes: +0/-0 index 0000000..11b01d2 --- /dev/null +++ b/img/riodejan.cbi
diff --git a/img/shrine-p.cbi b/img/shrine-p.cbi line changes: +0/-0 index 0000000..990ddcc --- /dev/null +++ b/img/shrine-p.cbi
diff --git a/img/shrine.cbi b/img/shrine.cbi line changes: +0/-0 index 0000000..8a4db46 --- /dev/null +++ b/img/shrine.cbi
diff --git a/img/stpeters.cbi b/img/stpeters.cbi line changes: +0/-0 index 0000000..ebcde4a --- /dev/null +++ b/img/stpeters.cbi
diff --git a/img/title.cbi b/img/title.cbi line changes: +0/-0 index 0000000..5ba090b --- /dev/null +++ b/img/title.cbi
diff --git a/img/yokohama.cbi b/img/yokohama.cbi line changes: +0/-0 index 0000000..9ac446c --- /dev/null +++ b/img/yokohama.cbi
diff --git a/imgview.pas b/imgview.pas line changes: +47/-0 index 0000000..668f408 --- /dev/null +++ b/imgview.pas
@@ -0,0 +1,47 @@ +program ImgView; +uses Apricot, GfxManager, CBI, Util, Strings; + +var img: ChunkedBitmapImage; + i, cc: Integer; + xpos, ypos: Byte; + p1, p2: PChar; + arg: String; + +begin + if ParamCount < 1 then begin + Writeln('Specify one or more files'); + Halt(1); + end; + + Writeln('Loading... press any key to proceed/exit.'); + for i := 1 to ParamCount do begin + xpos := 0; + ypos := 0; + arg := ParamStr(i); + p1:= StrScan(@arg[1], '+'); + if p1 <> nil then begin + arg[0] := Char(p1 - @arg[1]); + Inc(p1); + p2 := StrScan(p1, ','); + if p2 <> nil then begin + p2^ := Char(0); + Val(p1, xpos, cc); + if cc <> 0 then + Die('invalid Y coordinate'); + Inc(p2); + Val(p2, ypos, cc); + if cc <> 0 then + Die('invalid Y coordinate'); + end + else + Die('coordinates must be +X,Y'); + end; + + LoadCBI(arg, img); + if i = 1 then + ScreenMode(ScreenModeGfx); + DisplayCBI(img, xpos, ypos); + ReadKey; + end; + ScreenMode(ScreenModeText); +end.
diff --git a/intermediate/airplane (orig).png b/intermediate/airplane (orig).png line changes: +0/-0 index 0000000..83ff6ad --- /dev/null +++ b/intermediate/airplane (orig).png
diff --git a/intermediate/airplane.png b/intermediate/airplane.png line changes: +0/-0 index 0000000..32e05fe --- /dev/null +++ b/intermediate/airplane.png
diff --git a/intermediate/beijing.png b/intermediate/beijing.png line changes: +0/-0 index 0000000..4f66552 --- /dev/null +++ b/intermediate/beijing.png
diff --git a/intermediate/chicago.png b/intermediate/chicago.png line changes: +0/-0 index 0000000..6da6516 --- /dev/null +++ b/intermediate/chicago.png
diff --git a/intermediate/delhi.png b/intermediate/delhi.png line changes: +0/-0 index 0000000..e8237bc --- /dev/null +++ b/intermediate/delhi.png
diff --git a/intermediate/desk.png b/intermediate/desk.png line changes: +0/-0 index 0000000..77ee340 --- /dev/null +++ b/intermediate/desk.png
diff --git a/intermediate/eiffel.png b/intermediate/eiffel.png line changes: +0/-0 index 0000000..96d0c42 --- /dev/null +++ b/intermediate/eiffel.png
diff --git a/intermediate/ending.png b/intermediate/ending.png line changes: +0/-0 index 0000000..2e2b361 --- /dev/null +++ b/intermediate/ending.png
diff --git a/intermediate/ending.xcf b/intermediate/ending.xcf line changes: +0/-0 index 0000000..65f0dc4 --- /dev/null +++ b/intermediate/ending.xcf
diff --git a/intermediate/g4581.png b/intermediate/g4581.png line changes: +0/-0 index 0000000..3cc1f30 --- /dev/null +++ b/intermediate/g4581.png
diff --git a/intermediate/goose-mask.png b/intermediate/goose-mask.png line changes: +0/-0 index 0000000..a4d7c02 --- /dev/null +++ b/intermediate/goose-mask.png
diff --git a/intermediate/goose.png b/intermediate/goose.png line changes: +0/-0 index 0000000..d943b1a --- /dev/null +++ b/intermediate/goose.png
diff --git a/intermediate/hamburg.png b/intermediate/hamburg.png line changes: +0/-0 index 0000000..423d191 --- /dev/null +++ b/intermediate/hamburg.png
diff --git a/intermediate/manchest.png b/intermediate/manchest.png line changes: +0/-0 index 0000000..01bffa3 --- /dev/null +++ b/intermediate/manchest.png
diff --git a/intermediate/manchester.png b/intermediate/manchester.png line changes: +0/-0 index 0000000..bad5acc --- /dev/null +++ b/intermediate/manchester.png
diff --git a/intermediate/marseill.png b/intermediate/marseill.png line changes: +0/-0 index 0000000..4afe7cc --- /dev/null +++ b/intermediate/marseill.png
diff --git a/intermediate/melbourn.png b/intermediate/melbourn.png line changes: +0/-0 index 0000000..d919292 --- /dev/null +++ b/intermediate/melbourn.png
diff --git a/intermediate/mombasa.png b/intermediate/mombasa.png line changes: +0/-0 index 0000000..85b4756 --- /dev/null +++ b/intermediate/mombasa.png
diff --git a/intermediate/owl1-mask.png b/intermediate/owl1-mask.png line changes: +0/-0 index 0000000..e20121c --- /dev/null +++ b/intermediate/owl1-mask.png
diff --git a/intermediate/owl1.png b/intermediate/owl1.png line changes: +0/-0 index 0000000..7792d7a --- /dev/null +++ b/intermediate/owl1.png
diff --git a/intermediate/owl1.xcf b/intermediate/owl1.xcf line changes: +0/-0 index 0000000..b5240eb --- /dev/null +++ b/intermediate/owl1.xcf
diff --git a/intermediate/person0.png b/intermediate/person0.png line changes: +0/-0 index 0000000..f3f862b --- /dev/null +++ b/intermediate/person0.png
diff --git a/intermediate/person1.png b/intermediate/person1.png line changes: +0/-0 index 0000000..e0c4aa8 --- /dev/null +++ b/intermediate/person1.png
diff --git a/intermediate/person2.png b/intermediate/person2.png line changes: +0/-0 index 0000000..f0c2f07 --- /dev/null +++ b/intermediate/person2.png
diff --git a/intermediate/person3.png b/intermediate/person3.png line changes: +0/-0 index 0000000..e9a6270 --- /dev/null +++ b/intermediate/person3.png
diff --git a/intermediate/person4.png b/intermediate/person4.png line changes: +0/-0 index 0000000..f1cb688 --- /dev/null +++ b/intermediate/person4.png
diff --git a/intermediate/person5.png b/intermediate/person5.png line changes: +0/-0 index 0000000..07dd2bc --- /dev/null +++ b/intermediate/person5.png
diff --git a/intermediate/person6.png b/intermediate/person6.png line changes: +0/-0 index 0000000..606e414 --- /dev/null +++ b/intermediate/person6.png
diff --git a/intermediate/person7.png b/intermediate/person7.png line changes: +0/-0 index 0000000..b745893 --- /dev/null +++ b/intermediate/person7.png
diff --git a/intermediate/person8.png b/intermediate/person8.png line changes: +0/-0 index 0000000..34a48a0 --- /dev/null +++ b/intermediate/person8.png
diff --git a/intermediate/person9.png b/intermediate/person9.png line changes: +0/-0 index 0000000..ae2404c --- /dev/null +++ b/intermediate/person9.png
diff --git a/intermediate/placeholder.png b/intermediate/placeholder.png line changes: +0/-0 index 0000000..ca93b01 --- /dev/null +++ b/intermediate/placeholder.png
diff --git a/intermediate/riodejan.png b/intermediate/riodejan.png line changes: +0/-0 index 0000000..cd03aba --- /dev/null +++ b/intermediate/riodejan.png
diff --git a/intermediate/shrine-p.png b/intermediate/shrine-p.png line changes: +0/-0 index 0000000..b314f0f --- /dev/null +++ b/intermediate/shrine-p.png
diff --git a/intermediate/shrine.png b/intermediate/shrine.png line changes: +0/-0 index 0000000..aabc326 --- /dev/null +++ b/intermediate/shrine.png
diff --git a/intermediate/stpeters.png b/intermediate/stpeters.png line changes: +0/-0 index 0000000..6e33689 --- /dev/null +++ b/intermediate/stpeters.png
diff --git a/intermediate/title.svg b/intermediate/title.svg line changes: +1012/-0 index 0000000..5fcdfb1 --- /dev/null +++ b/intermediate/title.svg
@@ -0,0 +1,1012 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + width="800" + height="600" + viewBox="0 0 211.66666 158.75" + version="1.1" + id="svg5" + xml:space="preserve" + inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)" + sodipodi:docname="title.svg" + inkscape:export-filename="title.png" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview + id="namedview7" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:showpageshadow="2" + inkscape:pageopacity="0.0" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1" + inkscape:document-units="mm" + showgrid="false" + inkscape:zoom="1.104894" + inkscape:cx="376.5067" + inkscape:cy="275.59204" + inkscape:window-width="1838" + inkscape:window-height="1058" + inkscape:window-x="1913" + inkscape:window-y="-6" + inkscape:window-maximized="1" + inkscape:current-layer="layer1" /><defs + id="defs2"><clipPath + id="a" + clipPathUnits="userSpaceOnUse"><path + d="M 150.551,5129.14 H 3960.79 V 3190.9 H 150.551 Z" + clip-rule="evenodd" + id="path132" /></clipPath><clipPath + id="b" + clipPathUnits="userSpaceOnUse"><path + d="M 150.551,5129.14 H 3960.79 V 3190.9 H 150.551 Z" + clip-rule="evenodd" + id="path135" /></clipPath><clipPath + id="c" + clipPathUnits="userSpaceOnUse"><path + d="M 440.949,5052.1 H 3661.6 V 3264.34 H 440.949 Z" + clip-rule="evenodd" + id="path138" /></clipPath><clipPath + id="d" + clipPathUnits="userSpaceOnUse"><path + d="M 440.949,5047.06 H 1935.43 V 3272.98 H 440.949 Z" + clip-rule="evenodd" + id="path141" /></clipPath><clipPath + id="e" + clipPathUnits="userSpaceOnUse"><path + d="M 440.949,5047.06 H 1935.43 V 3272.98 H 440.949 Z" + clip-rule="evenodd" + id="path144" /></clipPath><clipPath + id="f" + clipPathUnits="userSpaceOnUse"><path + d="M 440.949,5047.06 H 1935.43 V 3272.98 H 440.949 Z" + clip-rule="evenodd" + id="path147" /></clipPath><clipPath + id="g" + clipPathUnits="userSpaceOnUse"><path + d="M 440.949,5047.06 H 1935.43 V 3272.98 H 440.949 Z" + clip-rule="evenodd" + id="path150" /></clipPath><clipPath + id="h" + clipPathUnits="userSpaceOnUse"><path + d="M 440.949,5047.06 H 1935.43 V 3272.98 H 440.949 Z" + clip-rule="evenodd" + id="path153" /></clipPath><clipPath + id="i" + clipPathUnits="userSpaceOnUse"><path + d="M 440.949,5052.1 H 3661.6 V 3264.34 H 440.949 Z" + clip-rule="evenodd" + id="path156" /></clipPath><clipPath + id="j" + clipPathUnits="userSpaceOnUse"><path + d="M 440.949,5052.1 H 3661.6 V 3264.34 H 440.949 Z" + clip-rule="evenodd" + id="path159" /></clipPath><clipPath + id="k" + clipPathUnits="userSpaceOnUse"><path + d="M 440.949,5052.1 H 3661.6 V 3264.34 H 440.949 Z" + clip-rule="evenodd" + id="path162" /></clipPath><clipPath + id="l" + clipPathUnits="userSpaceOnUse"><path + d="M 440.949,5052.1 H 3661.6 V 3264.34 H 440.949 Z" + clip-rule="evenodd" + id="path165" /></clipPath><clipPath + id="m" + clipPathUnits="userSpaceOnUse"><path + d="M 440.949,5052.1 H 3661.6 V 3264.34 H 440.949 Z" + clip-rule="evenodd" + id="path168" /></clipPath><clipPath + id="n" + clipPathUnits="userSpaceOnUse"><path + d="M 150.551,5129.14 H 3960.79 V 3190.9 H 150.551 Z" + clip-rule="evenodd" + id="path171" /></clipPath><clipPath + id="o" + clipPathUnits="userSpaceOnUse"><path + d="M 150.551,5129.14 H 3960.79 V 3190.9 H 150.551 Z" + clip-rule="evenodd" + id="path174" /></clipPath><clipPath + id="p" + clipPathUnits="userSpaceOnUse"><path + d="M 150.551,5129.14 H 3960.79 V 3190.9 H 150.551 Z" + clip-rule="evenodd" + id="path177" /></clipPath><clipPath + id="q" + clipPathUnits="userSpaceOnUse"><path + d="M 150.551,5129.14 H 3960.79 V 3190.9 H 150.551 Z" + clip-rule="evenodd" + id="path180" /></clipPath><clipPath + id="r" + clipPathUnits="userSpaceOnUse"><path + d="M 150.551,5129.14 H 3960.79 V 3190.9 H 150.551 Z" + clip-rule="evenodd" + id="path183" /></clipPath><clipPath + id="s" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path186" /></clipPath><clipPath + id="t" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path189" /></clipPath><clipPath + id="u" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path192" /></clipPath><clipPath + id="v" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path195" /></clipPath><clipPath + id="w" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path198" /></clipPath><clipPath + id="x" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path201" /></clipPath><clipPath + id="y" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path204" /></clipPath><clipPath + id="z" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path207" /></clipPath><clipPath + id="A" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path210" /></clipPath><clipPath + id="B" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path213" /></clipPath><clipPath + id="C" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path216" /></clipPath><clipPath + id="D" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path219" /></clipPath><clipPath + id="E" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path222" /></clipPath><clipPath + id="F" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path225" /></clipPath><clipPath + id="G" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path228" /></clipPath><clipPath + id="H" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path231" /></clipPath><clipPath + id="I" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path234" /></clipPath><clipPath + id="J" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path237" /></clipPath><clipPath + id="K" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path240" /></clipPath><clipPath + id="L" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path243" /></clipPath><clipPath + id="M" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path246" /></clipPath><clipPath + id="N" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path249" /></clipPath><clipPath + id="O" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path252" /></clipPath><clipPath + id="P" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path255" /></clipPath><clipPath + id="Q" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path258" /></clipPath><clipPath + id="R" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path261" /></clipPath><clipPath + id="S" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path264" /></clipPath><clipPath + id="T" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path267" /></clipPath><clipPath + id="U" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path270" /></clipPath><clipPath + id="V" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path273" /></clipPath><clipPath + id="W" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path276" /></clipPath><clipPath + id="X" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path279" /></clipPath><clipPath + id="Y" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path282" /></clipPath><clipPath + id="Z" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path285" /></clipPath><clipPath + id="aa" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path288" /></clipPath><clipPath + id="ab" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path291" /></clipPath><clipPath + id="ac" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path294" /></clipPath><clipPath + id="ad" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path297" /></clipPath><clipPath + id="ae" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path300" /></clipPath><clipPath + id="af" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path303" /></clipPath><clipPath + id="ag" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path306" /></clipPath><clipPath + id="ah" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path309" /></clipPath><clipPath + id="ai" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path312" /></clipPath><clipPath + id="aj" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path315" /></clipPath><clipPath + id="ak" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path318" /></clipPath><clipPath + id="al" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path321" /></clipPath><clipPath + id="am" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path324" /></clipPath><clipPath + id="an" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path327" /></clipPath><clipPath + id="ao" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path330" /></clipPath><clipPath + id="ap" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path333" /></clipPath><clipPath + id="aq" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path336" /></clipPath><clipPath + id="ar" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path339" /></clipPath><clipPath + id="as" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path342" /></clipPath><clipPath + id="at" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path345" /></clipPath><clipPath + id="au" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path348" /></clipPath><clipPath + id="av" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path351" /></clipPath><clipPath + id="aw" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path354" /></clipPath><clipPath + id="ax" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path357" /></clipPath><clipPath + id="ay" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path360" /></clipPath><clipPath + id="az" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path363" /></clipPath><clipPath + id="aA" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path366" /></clipPath><clipPath + id="aB" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path369" /></clipPath><clipPath + id="aC" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path372" /></clipPath><clipPath + id="aD" + clipPathUnits="userSpaceOnUse"><path + d="M 790.898,5086.39 H 3694.93 V 3214.53 H 790.898 Z" + clip-rule="evenodd" + id="path375" /></clipPath><clipPath + id="aE" + clipPathUnits="userSpaceOnUse"><path + d="M 150.551,5129.14 H 3960.79 V 3190.9 H 150.551 Z" + clip-rule="evenodd" + id="path378" /></clipPath></defs><g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"><g + id="g802" + transform="matrix(0.40105838,0,0,0.40105838,3.9606764,28.36268)"><path + d="m 2055.67,3200.98 c 1046.88,0 1895.04,429.12 1895.04,959.04 0,529.92 -848.16,959.04 -1895.04,959.04 -1046.16,0 -1895.041,-429.12 -1895.041,-959.04 0,-529.92 848.881,-959.04 1895.041,-959.04" + clip-path="url(#a)" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path383" /><path + d="m 2055.67,3200.98 c 1046.88,0 1895.04,429.12 1895.04,959.04 0,529.92 -848.16,959.04 -1895.04,959.04 -1046.16,0 -1895.041,-429.12 -1895.041,-959.04 0,-529.92 848.881,-959.04 1895.041,-959.04 z" + clip-path="url(#b)" + style="fill:none;stroke:#191818;stroke-width:20.16;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path385" /><path + d="M 2059.99,5042.02 V 3274.42" + clip-path="url(#c)" + style="fill:none;stroke:#191818;stroke-width:20.16;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path387" /><path + d="m 1930.39,5038.42 c -174.96,-150.48 -308.16,-1263.6 -10.8,-1760.4" + clip-path="url(#d)" + style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path389" /><path + d="m 1723.75,4979.38 c -91.44,-10.8 -644.4,-738.72 -3.6,-1656" + clip-path="url(#e)" + style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path391" /><path + d="m 1660.39,5042.02 c -378,-167.76 -1049.757,-1015.2 0,-1753.2" + clip-path="url(#f)" + style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path393" /><path + d="M 1485.43,5038.42 C 894.309,4828.9 249.91,3918.82 1489.03,3295.3" + clip-path="url(#g)" + style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path395" /><path + d="m 1321.27,5021.14 c -426.961,-56.16 -1739.52,-979.92 7.2,-1711.44" + clip-path="url(#h)" + style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path397" /><path + d="m 2188.87,5038.42 c 174.96,-150.48 308.16,-1263.6 10.8,-1760.4" + clip-path="url(#i)" + style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path399" /><path + d="m 2342.95,5034.82 c 133.2,-59.04 696.96,-794.16 56.16,-1711.44" + clip-path="url(#j)" + style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path401" /><path + d="m 2458.87,5042.02 c 378,-167.76 1049.76,-1015.2 0,-1753.2" + clip-path="url(#k)" + style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path403" /><path + d="m 2633.83,5038.42 c 591.12,-209.52 1235.52,-1119.6 -3.6,-1743.12" + clip-path="url(#l)" + style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path405" /><path + d="m 2759.83,5034.82 c 408.96,-62.64 1777.68,-993.6 30.96,-1725.12" + clip-path="url(#m)" + style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path407" /><path + d="M 1601.35,4884.34 H 2797.99" + clip-path="url(#n)" + style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path409" /><path + d="M 355.031,4558.9 H 3760.63" + clip-path="url(#o)" + style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path411" /><path + d="M 159.191,4180.9 H 3949.27" + clip-path="url(#p)" + style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path413" /><path + d="M 285.191,3799.3 H 3823.27" + clip-path="url(#q)" + style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path415" /><path + d="M 759.531,3460.18 H 3353.88" + clip-path="url(#r)" + style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path417" /><path + d="m 1453.03,4270.9 c 12.96,-5.76 23.76,-12.96 33.84,-22.32 21.6,-19.44 46.8,-44.64 76.32,-55.44 23.04,-8.64 30.24,-39.6 46.8,-55.44 27.36,-25.92 102.24,-31.68 87.84,-80.64 -3.6,-12.24 -13.68,-25.2 -18,-36.72 -8.64,-18.72 -18.72,-37.44 -23.76,-58.32 -3.6,-17.28 0.72,-34.56 -2.16,-52.56 -2.16,-18.72 -16.56,-33.12 -37.44,-28.08 -0.72,-6.48 -8.64,-2.88 -10.08,-7.2 -7.92,-23.76 -15.84,-47.52 -29.52,-70.56 -6.48,-10.08 1.44,-26.64 -4.32,-36.72 -2.16,-3.6 -11.52,-6.48 -14.4,-11.52 -17.28,-26.64 -38.88,-35.28 -59.04,-56.88 -30.96,-35.28 -23.04,-83.52 -13.68,-128.16 1.44,-5.76 12.24,-10.08 13.68,-14.4 6.48,-16.56 13.68,-33.84 12.96,-51.84 -20.16,10.8 -48.96,5.04 -58.32,28.08 -9.36,24.48 -18.72,48.96 -30.24,71.28 -23.04,46.08 -56.88,82.8 -83.52,127.44 1.44,-2.16 2.88,-0.72 3.6,-2.88 -12.24,41.04 15.12,80.64 -0.72,116.64 -12.24,28.8 -5.76,64.08 -32.4,84.24 -7.92,6.48 -25.2,2.16 -30.96,7.92 -32.4,28.8 -53.28,69.12 -65.52,110.16 -2.88,9.36 -5.76,22.32 -3.6,33.84 -2.16,-4.32 -4.32,-8.64 -6.48,-13.68 -10.08,11.52 -12.24,25.92 -20.16,38.88 -9.36,17.28 -9.36,40.32 -4.32,54 4.32,11.52 26.64,20.88 31.68,34.56 5.04,10.8 20.88,22.32 12.96,36.72 -3.6,5.76 -13.68,8.64 -15.84,14.4 -2.16,7.92 -2.88,17.28 -4.32,25.2 h 249.12" + clip-path="url(#s)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path419" /><path + d="m 1453.03,4270.9 c 12.96,-5.76 23.76,-12.96 33.84,-22.32 21.6,-19.44 46.8,-44.64 76.32,-55.44 23.04,-8.64 30.24,-39.6 46.8,-55.44 27.36,-25.92 102.24,-31.68 87.84,-80.64 -3.6,-12.24 -13.68,-25.2 -18,-36.72 -8.64,-18.72 -18.72,-37.44 -23.76,-58.32 -3.6,-17.28 0.72,-34.56 -2.16,-52.56 -2.16,-18.72 -16.56,-33.12 -37.44,-28.08 -0.72,-6.48 -8.64,-2.88 -10.08,-7.2 -7.92,-23.76 -15.84,-47.52 -29.52,-70.56 -6.48,-10.08 1.44,-26.64 -4.32,-36.72 -2.16,-3.6 -11.52,-6.48 -14.4,-11.52 -17.28,-26.64 -38.88,-35.28 -59.04,-56.88 -30.96,-35.28 -23.04,-83.52 -13.68,-128.16 1.44,-5.76 12.24,-10.08 13.68,-14.4 6.48,-16.56 13.68,-33.84 12.96,-51.84 -20.16,10.8 -48.96,5.04 -58.32,28.08 -9.36,24.48 -18.72,48.96 -30.24,71.28 -23.04,46.08 -56.88,82.8 -83.52,127.44 1.44,-2.16 2.88,-0.72 3.6,-2.88 -12.24,41.04 15.12,80.64 -0.72,116.64 -12.24,28.8 -5.76,64.08 -32.4,84.24 -7.92,6.48 -25.2,2.16 -30.96,7.92 -32.4,28.8 -53.28,69.12 -65.52,110.16 -2.88,9.36 -5.76,22.32 -3.6,33.84 -2.16,-4.32 -4.32,-8.64 -6.48,-13.68 -10.08,11.52 -12.24,25.92 -20.16,38.88 -9.36,17.28 -9.36,40.32 -4.32,54 4.32,11.52 26.64,20.88 31.68,34.56 5.04,10.8 20.88,22.32 12.96,36.72 -3.6,5.76 -13.68,8.64 -15.84,14.4 -2.16,7.92 -2.88,17.28 -4.32,25.2 z" + clip-path="url(#t)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path421" /><path + d="m 1203.91,4270.9 c -1.44,7.2 -4.32,13.68 -9.36,18 -17.28,15.84 -37.44,29.52 -58.32,38.16 -15.12,5.76 -30.96,15.84 -48.24,16.56 3.6,0 -8.64,6.48 -14.4,8.64 -41.04,14.4 -72,44.64 -103.68,72.72 -7.199,7.2 -4.32,20.16 -4.32,30.96 -3.598,-7.2 -4.32,-14.4 -7.199,-21.6 -20.879,16.56 -22.321,42.48 -37.442,64.08 -5.758,7.92 -3.597,18 -6.48,27.36 -5.758,23.76 10.082,46.08 4.32,69.84 0,0.72 -5.758,0 -9.359,0 2.16,29.52 -10.078,60.48 -0.719,86.4 4.32,11.52 23.758,18.72 33.121,28.8 15.117,15.12 38.16,19.44 48.238,38.88 5.762,13.68 1.442,29.52 11.52,41.04 2.16,2.88 10.08,-2.16 12.24,4.32 2.16,5.76 1.44,15.84 -2.16,21.6 19.44,5.76 48.96,23.04 35.28,43.2 -5.04,7.92 -20.88,18 -35.28,11.52 -16.561,-7.2 -32.4,-12.96 -46.799,-25.92 -6.48,-5.76 -9.359,10.08 -16.562,8.64 -25.2,-5.76 -44.637,-20.88 -66.957,-33.12 -10.082,-5.04 -25.204,-3.6 -33.122,3.6 -11.519,11.52 -23.039,22.32 -22.32,41.04 21.602,-1.44 52.559,-4.32 56.16,24.48 -28.078,-13.68 -63.359,-10.8 -87.84,6.48 46.801,2.88 88.559,23.04 132.481,37.44 21.598,7.2 41.758,20.16 64.078,28.8 46.081,18 95.041,26.64 140.401,46.8 11.52,5.04 41.04,12.24 37.44,12.96 5.04,-0.72 -1.44,-10.08 0.72,-12.96 7.2,-11.52 16.56,-21.6 25.2,-25.92 12.24,-5.76 20.88,17.28 33.84,19.44 23.76,5.04 48.96,0 68.4,11.52 10.08,5.76 23.76,-0.72 29.52,11.52 -2.16,-12.24 -25.2,-24.48 -9.36,-32.4 10.08,-5.04 18,-15.84 30.24,-16.56 -4.32,12.96 -5.76,26.64 -2.16,38.16 4.32,12.96 20.88,17.28 31.68,22.32 8.64,4.32 14.4,-16.56 21.6,-23.76 14.4,-14.4 46.8,-4.32 56.16,-26.64 2.16,-5.76 8.64,-10.08 8.64,-17.28 6.48,0 13.68,-0.72 20.88,0.72 2.88,0.72 4.32,2.88 3.6,6.48 10.8,2.16 12.96,-8.64 20.88,-13.68 2.88,-1.44 8.64,-1.44 9.36,0 5.04,9.36 12.96,13.68 19.44,19.44 16.56,12.96 31.68,36.72 54,27.36 32.4,-13.68 59.76,-35.28 87.84,-58.32 7.2,-5.76 6.48,-17.28 5.04,-23.04 -1.44,-12.24 -18.72,-18.72 -31.68,-23.04 -13.68,-5.76 -5.76,-21.6 -10.08,-32.4 -3.6,-9.36 -5.04,-15.84 -12.24,-25.2 -1.44,-2.16 -8.64,1.44 -9.36,-4.32 -1.44,-7.2 7.2,-16.56 2.16,-18.72 -7.92,-3.6 -13.68,-6.48 -13.68,-15.84 0,-8.64 -5.76,-4.32 -5.76,-3.6 -2.88,-5.76 6.48,-15.12 2.16,-20.88 -0.72,-1.44 -4.32,0 -6.48,0 32.4,-55.44 12.24,-39.6 7.92,-43.2 -19.44,-15.84 -48.96,-1.44 -74.88,-2.88 2.16,-2.88 5.76,-6.48 3.6,-10.08 -1.44,-0.72 -4.32,0 -6.48,0 2.88,0 8.64,0.72 9.36,-0.72 5.04,-11.52 -1.44,-23.76 -13.68,-25.92 -23.04,-4.32 -45.36,-20.16 -65.52,-4.32 -2.88,2.88 1.44,19.44 -6.48,15.12 -7.2,-2.88 0,-15.84 -5.04,-22.32 -12.24,-15.12 -33.12,-17.28 -43.2,-38.16 -8.64,-15.84 -36.72,-0.72 -45.36,-15.84 -5.76,-10.8 0.72,-33.12 -9.36,-33.84 -25.2,-2.88 -25.2,-19.44 -24.48,-38.88 0,-5.04 -11.52,-1.44 -10.08,-10.08 -13.68,3.6 -28.08,-5.04 -36.72,-10.08 -11.52,-7.2 -5.04,-25.2 -21.6,-36.72 -2.88,-1.44 0.72,-10.08 -2.16,-12.24 -10.8,-8.64 -28.08,-17.28 -35.28,-2.88 -7.2,12.96 -19.44,22.32 -23.04,37.44 -30.96,-15.84 -70.56,-2.16 -95.04,-21.6 -7.92,-5.76 -7.92,-25.92 -13.68,-39.6 -3.6,-7.92 -1.44,-24.48 0,-36.72 12.24,13.68 32.4,5.04 46.8,19.44 10.08,10.08 29.52,14.4 38.88,3.6 15.84,-18.72 -9.36,-41.76 -2.88,-61.2 3.6,-10.8 15.84,-7.92 25.92,-6.48 5.76,0 0,-15.12 7.2,-22.32 h -7.2 c 0,-10.8 -3.6,-19.44 -4.32,-28.08 -1.44,-18.72 22.32,-46.8 45.36,-39.6 11.52,3.6 21.6,18.72 35.28,13.68 4.32,-1.44 2.16,-12.96 7.92,-15.12 7.92,-2.88 14.4,2.88 22.32,7.2 25.2,16.56 59.04,15.84 84.24,0 21.6,-12.96 44.64,-20.88 65.52,-31.68 h -249.12" + clip-path="url(#u)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path423" /><path + d="m 1203.91,4270.9 c -1.44,7.2 -4.32,13.68 -9.36,18 -17.28,15.84 -37.44,29.52 -58.32,38.16 -15.12,5.76 -30.96,15.84 -48.24,16.56 3.6,0 -8.64,6.48 -14.4,8.64 -41.04,14.4 -72,44.64 -103.68,72.72 -7.199,7.2 -4.32,20.16 -4.32,30.96 -3.598,-7.2 -4.32,-14.4 -7.199,-21.6 -20.879,16.56 -22.321,42.48 -37.442,64.08 -5.758,7.92 -3.597,18 -6.48,27.36 -5.758,23.76 10.082,46.08 4.32,69.84 0,0.72 -5.758,0 -9.359,0 2.16,29.52 -10.078,60.48 -0.719,86.4 4.32,11.52 23.758,18.72 33.121,28.8 15.117,15.12 38.16,19.44 48.238,38.88 5.762,13.68 1.442,29.52 11.52,41.04 2.16,2.88 10.08,-2.16 12.24,4.32 2.16,5.76 1.44,15.84 -2.16,21.6 19.44,5.76 48.96,23.04 35.28,43.2 -5.04,7.92 -20.88,18 -35.28,11.52 -16.561,-7.2 -32.4,-12.96 -46.799,-25.92 -6.48,-5.76 -9.359,10.08 -16.562,8.64 -25.2,-5.76 -44.637,-20.88 -66.957,-33.12 -10.082,-5.04 -25.204,-3.6 -33.122,3.6 -11.519,11.52 -23.039,22.32 -22.32,41.04 21.602,-1.44 52.559,-4.32 56.16,24.48 -28.078,-13.68 -63.359,-10.8 -87.84,6.48 46.801,2.88 88.559,23.04 132.481,37.44 21.598,7.2 41.758,20.16 64.078,28.8 46.081,18 95.041,26.64 140.401,46.8 11.52,5.04 41.04,12.24 37.44,12.96 5.04,-0.72 -1.44,-10.08 0.72,-12.96 7.2,-11.52 16.56,-21.6 25.2,-25.92 12.24,-5.76 20.88,17.28 33.84,19.44 23.76,5.04 48.96,0 68.4,11.52 10.08,5.76 23.76,-0.72 29.52,11.52 -2.16,-12.24 -25.2,-24.48 -9.36,-32.4 10.08,-5.04 18,-15.84 30.24,-16.56 -4.32,12.96 -5.76,26.64 -2.16,38.16 4.32,12.96 20.88,17.28 31.68,22.32 8.64,4.32 14.4,-16.56 21.6,-23.76 14.4,-14.4 46.8,-4.32 56.16,-26.64 2.16,-5.76 8.64,-10.08 8.64,-17.28 6.48,0 13.68,-0.72 20.88,0.72 2.88,0.72 4.32,2.88 3.6,6.48 10.8,2.16 12.96,-8.64 20.88,-13.68 2.88,-1.44 8.64,-1.44 9.36,0 5.04,9.36 12.96,13.68 19.44,19.44 16.56,12.96 31.68,36.72 54,27.36 32.4,-13.68 59.76,-35.28 87.84,-58.32 7.2,-5.76 6.48,-17.28 5.04,-23.04 -1.44,-12.24 -18.72,-18.72 -31.68,-23.04 -13.68,-5.76 -5.76,-21.6 -10.08,-32.4 -3.6,-9.36 -5.04,-15.84 -12.24,-25.2 -1.44,-2.16 -8.64,1.44 -9.36,-4.32 -1.44,-7.2 7.2,-16.56 2.16,-18.72 -7.92,-3.6 -13.68,-6.48 -13.68,-15.84 0,-8.64 -5.76,-4.32 -5.76,-3.6 -2.88,-5.76 6.48,-15.12 2.16,-20.88 -0.72,-1.44 -4.32,0 -6.48,0 32.4,-55.44 12.24,-39.6 7.92,-43.2 -19.44,-15.84 -48.96,-1.44 -74.88,-2.88 2.16,-2.88 5.76,-6.48 3.6,-10.08 -1.44,-0.72 -4.32,0 -6.48,0 2.88,0 8.64,0.72 9.36,-0.72 5.04,-11.52 -1.44,-23.76 -13.68,-25.92 -23.04,-4.32 -45.36,-20.16 -65.52,-4.32 -2.88,2.88 1.44,19.44 -6.48,15.12 -7.2,-2.88 0,-15.84 -5.04,-22.32 -12.24,-15.12 -33.12,-17.28 -43.2,-38.16 -8.64,-15.84 -36.72,-0.72 -45.36,-15.84 -5.76,-10.8 0.72,-33.12 -9.36,-33.84 -25.2,-2.88 -25.2,-19.44 -24.48,-38.88 0,-5.04 -11.52,-1.44 -10.08,-10.08 -13.68,3.6 -28.08,-5.04 -36.72,-10.08 -11.52,-7.2 -5.04,-25.2 -21.6,-36.72 -2.88,-1.44 0.72,-10.08 -2.16,-12.24 -10.8,-8.64 -28.08,-17.28 -35.28,-2.88 -7.2,12.96 -19.44,22.32 -23.04,37.44 -30.96,-15.84 -70.56,-2.16 -95.04,-21.6 -7.92,-5.76 -7.92,-25.92 -13.68,-39.6 -3.6,-7.92 -1.44,-24.48 0,-36.72 12.24,13.68 32.4,5.04 46.8,19.44 10.08,10.08 29.52,14.4 38.88,3.6 15.84,-18.72 -9.36,-41.76 -2.88,-61.2 3.6,-10.8 15.84,-7.92 25.92,-6.48 5.76,0 0,-15.12 7.2,-22.32 h -7.2 c 0,-10.8 -3.6,-19.44 -4.32,-28.08 -1.44,-18.72 22.32,-46.8 45.36,-39.6 11.52,3.6 21.6,18.72 35.28,13.68 4.32,-1.44 2.16,-12.96 7.92,-15.12 7.92,-2.88 14.4,2.88 22.32,7.2 25.2,16.56 59.04,15.84 84.24,0 21.6,-12.96 44.64,-20.88 65.52,-31.68 z" + clip-path="url(#v)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path425" /><path + d="m 2948.47,3337.78 c 2.16,-2.16 -72.72,56.16 -79.2,59.04 -12.24,5.76 -28.08,2.88 -41.76,-5.04 -18,-9.36 -36,-17.28 -55.44,-20.88 0.72,-1.44 4.32,0 0,0 h -3.6 7.2 c -33.84,10.8 -67.68,20.16 -102.96,1.44 -12.24,-6.48 -27.36,1.44 -41.04,8.64 -13.68,7.92 -28.08,5.76 -41.04,2.16 -22.32,-5.04 -46.08,-15.12 -66.96,-12.24 -17.28,2.16 -37.44,-2.88 -51.84,11.52 -20.88,20.88 -56.88,12.96 -84.24,6.48 -71.28,-18.72 -138.96,0 -201.6,35.28 -13.68,7.92 -35.28,6.48 -50.4,0.72 -24.48,-10.8 -48.24,-20.88 -74.16,-28.8 -30.24,-7.92 -61.2,11.52 -90.72,-1.44 -21.6,-10.08 -45.36,-9.36 -65.52,-16.56 -35.28,-13.68 -67.68,-48.24 -109.44,-37.44 -37.44,10.08 -69.12,32.4 -101.52,53.28 -30.96,20.16 -72,0.72 -108.72,-10.8 -4.32,-1.44 -10.08,-7.92 -13.68,-7.2 -26.64,3.6 -51.84,-3.6 -49.68,-33.12 -34.56,-1.44 -66.24,6.48 -101.52,3.6 1.44,3.6 -0.72,5.76 -3.6,6.48 -4.32,1.44 -10.8,2.16 -12.24,0 -6.48,-10.8 -5.76,-25.92 -22.32,-20.16 -15.12,4.32 -31.68,12.96 -44.64,7.92 -10.08,-3.6 -17.28,-17.28 -26.64,-24.48 -3.6,-2.88 -10.08,-7.2 -16.56,-5.04 282.24,-89.28 621.36,-90 740.16,-92.88 353.52,-6.48 782.64,68.4 913.68,119.52" + clip-path="url(#w)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path427" /><path + d="m 2948.47,3337.78 c 2.16,-2.16 -72.72,56.16 -79.2,59.04 -12.24,5.76 -28.08,2.88 -41.76,-5.04 -18,-9.36 -36,-17.28 -55.44,-20.88 0.72,-1.44 4.32,0 0,0 h -3.6 7.2 c -33.84,10.8 -67.68,20.16 -102.96,1.44 -12.24,-6.48 -27.36,1.44 -41.04,8.64 -13.68,7.92 -28.08,5.76 -41.04,2.16 -22.32,-5.04 -46.08,-15.12 -66.96,-12.24 -17.28,2.16 -37.44,-2.88 -51.84,11.52 -20.88,20.88 -56.88,12.96 -84.24,6.48 -71.28,-18.72 -138.96,0 -201.6,35.28 -13.68,7.92 -35.28,6.48 -50.4,0.72 -24.48,-10.8 -48.24,-20.88 -74.16,-28.8 -30.24,-7.92 -61.2,11.52 -90.72,-1.44 -21.6,-10.08 -45.36,-9.36 -65.52,-16.56 -35.28,-13.68 -67.68,-48.24 -109.44,-37.44 -37.44,10.08 -69.12,32.4 -101.52,53.28 -30.96,20.16 -72,0.72 -108.72,-10.8 -4.32,-1.44 -10.08,-7.92 -13.68,-7.2 -26.64,3.6 -51.84,-3.6 -49.68,-33.12 -34.56,-1.44 -66.24,6.48 -101.52,3.6 1.44,3.6 -0.72,5.76 -3.6,6.48 -4.32,1.44 -10.8,2.16 -12.24,0 -6.48,-10.8 -5.76,-25.92 -22.32,-20.16 -15.12,4.32 -31.68,12.96 -44.64,7.92 -10.08,-3.6 -17.28,-17.28 -26.64,-24.48 -3.6,-2.88 -10.08,-7.2 -16.56,-5.04 282.24,-89.28 621.36,-90 740.16,-92.88 353.52,-6.48 782.64,68.4 913.68,119.52 z" + clip-path="url(#x)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path429" /><path + d="m 1651.75,5036.26 c 10.08,-1.44 22.32,1.44 25.92,5.76 15.12,15.12 31.68,24.48 51.12,30.96 5.04,1.44 7.92,7.92 14.4,9.36 4.32,0.72 10.08,1.44 12.96,-0.72 21.6,-16.56 46.8,-22.32 69.84,-15.12 23.76,7.2 44.64,-2.88 66.96,2.88 20.16,5.76 41.04,16.56 59.04,10.08 5.76,-2.16 8.64,-20.16 15.84,-23.04 25.2,-8.64 48.24,-46.08 45.36,-20.16 1.44,-12.96 -19.44,-1.44 -28.8,-10.08 -23.76,-21.6 -48.24,-36.72 -76.32,-50.4 -1.44,-0.72 0,-9.36 -4.32,-11.52 -28.8,-16.56 -57.6,-24.48 -86.4,-38.16 -19.44,-10.08 -21.6,-41.76 -43.92,-52.56 -14.4,-6.48 -30.96,-1.44 -40.32,13.68 -8.64,14.4 -3.6,31.68 -16.56,46.08 -3.6,4.32 3.6,14.4 2.16,23.04 -7.92,-2.88 0,10.08 -7.2,7.2 -1.44,11.52 5.76,33.12 26.64,44.64 4.32,2.88 15.84,19.44 4.32,22.32 -31.68,7.92 -64.8,-2.16 -97.2,5.04 -2.16,0.72 3.6,1.44 6.48,0.72" + clip-path="url(#y)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path431" /><path + d="m 1651.75,5036.26 c 10.08,-1.44 22.32,1.44 25.92,5.76 15.12,15.12 31.68,24.48 51.12,30.96 5.04,1.44 7.92,7.92 14.4,9.36 4.32,0.72 10.08,1.44 12.96,-0.72 21.6,-16.56 46.8,-22.32 69.84,-15.12 23.76,7.2 44.64,-2.88 66.96,2.88 20.16,5.76 41.04,16.56 59.04,10.08 5.76,-2.16 8.64,-20.16 15.84,-23.04 25.2,-8.64 48.24,-46.08 45.36,-20.16 1.44,-12.96 -19.44,-1.44 -28.8,-10.08 -23.76,-21.6 -48.24,-36.72 -76.32,-50.4 -1.44,-0.72 0,-9.36 -4.32,-11.52 -28.8,-16.56 -57.6,-24.48 -86.4,-38.16 -19.44,-10.08 -21.6,-41.76 -43.92,-52.56 -14.4,-6.48 -30.96,-1.44 -40.32,13.68 -8.64,14.4 -3.6,31.68 -16.56,46.08 -3.6,4.32 3.6,14.4 2.16,23.04 -7.92,-2.88 0,10.08 -7.2,7.2 -1.44,11.52 5.76,33.12 26.64,44.64 4.32,2.88 15.84,19.44 4.32,22.32 -31.68,7.92 -64.8,-2.16 -97.2,5.04 -2.16,0.72 3.6,1.44 6.48,0.72 z" + clip-path="url(#z)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path433" /><path + d="m 1963.5,4935.46 c -7.2,0 -15.11,2.16 -20.15,-1.44 -7.92,-5.04 -10.08,-13.68 -7.92,-23.04 20.16,7.92 15.84,-2.16 34.55,11.52 1.45,0.72 0.73,5.76 0,9.36 -0.71,2.16 -7.91,-4.32 -6.48,3.6" + clip-path="url(#A)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path435" /><path + d="m 1963.5,4935.46 c -7.2,0 -15.11,2.16 -20.15,-1.44 -7.92,-5.04 -10.08,-13.68 -7.92,-23.04 20.16,7.92 15.84,-2.16 34.55,11.52 1.45,0.72 0.73,5.76 0,9.36 -0.71,2.16 -7.91,-4.32 -6.48,3.6 z" + clip-path="url(#B)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path437" /><path + d="m 1980.8,4816.66 c -13.69,-2.88 -25.21,-10.8 -15.85,-23.76 2.89,-4.32 17.28,-28.8 25.21,-29.52 0,10.8 -9.36,42.48 -9.36,53.28" + clip-path="url(#C)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path439" /><path + d="m 1980.8,4816.66 c -13.69,-2.88 -25.21,-10.8 -15.85,-23.76 2.89,-4.32 17.28,-28.8 25.21,-29.52 0,10.8 -9.36,42.48 -9.36,53.28 z" + clip-path="url(#D)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path441" /><path + d="m 2012.46,4830.34 c 0,12.24 -7.91,0.72 -10.79,3.6 -6.48,-17.28 0,-38.88 1.44,-56.16 0.72,-5.76 24.48,-26.64 26.64,-20.88 7.2,17.28 -7.92,59.04 -13.68,77.04 -1.44,-1.44 -2.88,-2.16 -3.61,-3.6" + clip-path="url(#E)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path443" /><path + d="m 2012.46,4830.34 c 0,12.24 -7.91,0.72 -10.79,3.6 -6.48,-17.28 0,-38.88 1.44,-56.16 0.72,-5.76 24.48,-26.64 26.64,-20.88 7.2,17.28 -7.92,59.04 -13.68,77.04 -1.44,-1.44 -2.88,-2.16 -3.61,-3.6 z" + clip-path="url(#F)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path445" /><path + d="m 2911.75,4262.98 c -15.12,-10.09 0.72,-27.36 -3.6,-41.77 43.2,0 2.16,-18.71 23.04,1.45 7.2,6.48 20.16,5.75 10.8,14.39 -11.52,10.81 -23.04,20.88 -35.28,31.68 -1.44,1.45 -2.16,-5.03 -2.16,-9.35 2.16,1.44 4.32,2.87 7.2,3.6" + clip-path="url(#G)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path447" /><path + d="m 2911.75,4262.98 c -15.12,-10.09 0.72,-27.36 -3.6,-41.77 43.2,0 2.16,-18.71 23.04,1.45 7.2,6.48 20.16,5.75 10.8,14.39 -11.52,10.81 -23.04,20.88 -35.28,31.68 -1.44,1.45 -2.16,-5.03 -2.16,-9.35 2.16,1.44 4.32,2.87 7.2,3.6 z" + clip-path="url(#H)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path449" /><path + d="m 3278.95,4584.82 c 3.6,31.68 -33.84,36.72 -46.8,62.64 -5.04,9.36 0,15.12 2.16,21.6 0,0.72 5.04,-0.72 5.76,0.72 1.44,3.6 -0.72,9.36 1.44,12.96 4.32,5.76 7.2,10.8 5.76,18 15.84,-2.88 24.48,10.08 15.84,19.44 -12.24,15.12 -21.6,31.68 -34.56,46.08 -17.28,20.16 -42.48,30.24 -65.52,45.36 -5.04,3.6 -13.68,0 -20.16,2.16 -7.2,2.16 -10.08,11.52 -5.76,15.12 27.36,25.2 69.12,15.84 98.64,-4.32 15.84,-10.8 31.68,-20.16 48.24,-30.96 10.08,-7.2 25.2,-10.8 36.72,-7.2 3.6,1.44 0,15.12 -3.6,18.72 -17.28,18 -48.24,17.28 -64.08,43.92 -8.64,15.12 9.36,30.24 13.68,44.64 8.64,28.08 -37.44,23.76 -58.32,31.68 -23.04,9.36 -50.4,7.92 -75.6,15.12 -60.48,18 -121.68,28.08 -178.56,55.44 -5.76,2.88 -11.52,8.64 -18,12.96 -0.72,-6.48 7.2,-12.96 2.88,-16.56 -35.28,-25.92 -64.8,12.24 -100.8,12.96 1.44,-3.6 7.92,-8.64 6.48,-9.36 -28.08,-14.4 -68.4,-6.48 -95.76,10.08 -23.76,14.4 -56.16,-12.96 -81.36,1.44 -19.44,10.8 -35.28,25.92 -56.88,31.68 -34.56,9.36 -63.36,-15.12 -93.6,-28.08 -2.16,-0.72 0.72,-10.08 -1.44,-11.52 -30.24,-25.92 -66.96,-25.2 -103.68,-34.56 -19.44,-4.32 -36.72,-15.12 -53.28,-25.92 h 3.6 c -9.36,0 -27.36,2.16 -31.68,-14.4 -24.48,9.36 -33.84,41.04 -59.76,43.92 -19.44,2.16 -32.4,14.4 -48.24,23.04 0,-2.88 0.72,-4.32 -3.6,-3.6 -15.84,0.72 -31.68,-6.48 -43.92,-15.12 -13.68,-8.64 -31.68,-13.68 -38.16,-28.08 -14.4,-30.96 -33.12,-57.6 -68.4,-66.24 -4.32,-1.44 -7.92,-7.2 -7.2,-12.96 -2.16,0 -5.76,0.72 -6.48,-0.72 -2.16,-2.88 0.72,-7.92 2.88,-9.36 14.4,-5.76 30.96,-3.6 45.36,-11.52 -4.32,5.04 7.92,2.16 3.6,7.2 2.16,0 6.48,0.72 6.48,0 10.08,-38.88 13.68,-55.44 5.04,-44.64 2.16,-2.16 9.36,-2.16 12.24,0 9.36,6.48 19.44,11.52 21.6,23.76 3.6,14.4 4.32,31.68 12.96,43.92 15.12,20.16 36,-8.64 43.2,-26.64 -24.48,0.72 -41.04,-18 -62.64,-25.2 -0.72,-0.72 0.72,-7.92 -0.72,-8.64 -15.84,-5.76 -35.28,-7.2 -48.24,-19.44 -2.16,-2.16 0.72,-10.8 -1.44,-12.24 -20.16,-11.52 -59.04,-3.6 -60.48,-22.32 -4.32,-41.76 -51.12,-42.48 -68.4,-68.4 -10.08,-16.56 -4.32,-41.76 -2.88,-64.08 0.72,-10.8 17.28,-11.52 17.28,-24.48 18.72,1.44 37.44,-8.64 55.44,0.72 2.88,1.44 3.6,7.92 4.32,8.64 23.04,10.8 37.44,27.36 49.68,48.96 1.44,2.16 8.64,0 12.96,1.44 18,7.92 37.44,30.96 48.96,18 10.8,-11.52 28.8,-18 34.56,-38.88 3.6,-12.24 24.48,1.44 40.32,-8.64 7.92,-4.32 8.64,-14.4 15.84,-15.84 10.08,-2.16 18.72,-8.64 28.08,-6.48 6.48,0.72 2.16,8.64 4.32,12.24 0.72,1.44 4.32,0 6.48,0.72 2.16,1.44 4.32,3.6 3.6,7.2 4.32,0 10.08,1.44 12.96,-0.72 6.48,-5.04 12.96,-5.04 17.28,-7.92 11.52,-8.64 15.12,-25.92 24.48,-34.56 10.8,-10.8 40.32,9.36 46.08,-4.32 10.08,-23.76 -0.72,-57.6 14.4,-79.92 28.08,-40.32 56.16,-82.08 105.12,-97.2 5.04,-2.16 5.04,-10.08 5.04,-13.68 1.44,-21.6 -3.6,-43.92 20.16,-50.4 26.64,-7.92 56.88,-15.12 82.08,0 5.76,4.32 14.4,13.68 20.16,16.56 17.28,7.92 35.28,15.84 43.92,29.52 12.24,18.72 0,46.8 -7.2,70.56 25.92,1.44 47.52,-15.84 73.44,-13.68 l 10.8,-3.6 c 10.08,-6.48 24.48,-5.04 30.24,-14.4 30.96,-51.84 43.92,-107.28 73.44,-159.12 2.16,-3.6 14.4,-1.44 22.32,-1.44 -2.16,6.48 2.88,12.24 5.04,16.56 12.96,26.64 14.4,56.16 31.68,79.92 5.04,5.76 15.12,12.96 25.92,12.24 -0.72,9.36 8.64,15.12 12.96,18.72 10.08,10.08 14.4,-8.64 25.92,-15.12 8.64,-5.76 21.6,-1.44 26.64,-8.64 10.08,-12.96 28.08,-11.52 34.56,-23.76 16.56,-36 28.8,-72 39.6,-110.88 0.72,-2.16 15.84,2.88 20.88,-4.32 10.08,-17.28 25.2,-30.24 42.48,-39.6 3.6,-2.16 9.36,-6.48 10.8,-12.24 9.36,4.32 3.6,12.24 2.16,16.56 -8.64,24.48 -18,48.24 -19.44,74.16 21.6,-5.76 43.2,-12.24 66.24,-10.8 -1.44,31.68 9.36,65.52 -6.48,93.6 -6.48,11.52 -23.76,18.72 -31.68,33.12 -5.04,8.64 -7.2,21.6 -2.16,25.92 17.28,13.68 41.76,1.44 61.2,2.16 7.92,0 14.4,23.04 19.44,32.4 10.08,18.72 19.44,63.36 8.64,91.44 -12.24,30.24 -68.4,32.4 -62.64,71.28 2.16,12.96 26.64,6.48 39.6,-4.32 6.48,-5.04 15.84,-12.24 23.76,-15.12 4.32,-1.44 8.64,-5.04 13.68,-5.04 h 10.08" + clip-path="url(#I)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path451" /><path + d="m 3278.95,4584.82 c 3.6,31.68 -33.84,36.72 -46.8,62.64 -5.04,9.36 0,15.12 2.16,21.6 0,0.72 5.04,-0.72 5.76,0.72 1.44,3.6 -0.72,9.36 1.44,12.96 4.32,5.76 7.2,10.8 5.76,18 15.84,-2.88 24.48,10.08 15.84,19.44 -12.24,15.12 -21.6,31.68 -34.56,46.08 -17.28,20.16 -42.48,30.24 -65.52,45.36 -5.04,3.6 -13.68,0 -20.16,2.16 -7.2,2.16 -10.08,11.52 -5.76,15.12 27.36,25.2 69.12,15.84 98.64,-4.32 15.84,-10.8 31.68,-20.16 48.24,-30.96 10.08,-7.2 25.2,-10.8 36.72,-7.2 3.6,1.44 0,15.12 -3.6,18.72 -17.28,18 -48.24,17.28 -64.08,43.92 -8.64,15.12 9.36,30.24 13.68,44.64 8.64,28.08 -37.44,23.76 -58.32,31.68 -23.04,9.36 -50.4,7.92 -75.6,15.12 -60.48,18 -121.68,28.08 -178.56,55.44 -5.76,2.88 -11.52,8.64 -18,12.96 -0.72,-6.48 7.2,-12.96 2.88,-16.56 -35.28,-25.92 -64.8,12.24 -100.8,12.96 1.44,-3.6 7.92,-8.64 6.48,-9.36 -28.08,-14.4 -68.4,-6.48 -95.76,10.08 -23.76,14.4 -56.16,-12.96 -81.36,1.44 -19.44,10.8 -35.28,25.92 -56.88,31.68 -34.56,9.36 -63.36,-15.12 -93.6,-28.08 -2.16,-0.72 0.72,-10.08 -1.44,-11.52 -30.24,-25.92 -66.96,-25.2 -103.68,-34.56 -19.44,-4.32 -36.72,-15.12 -53.28,-25.92 h 3.6 c -9.36,0 -27.36,2.16 -31.68,-14.4 -24.48,9.36 -33.84,41.04 -59.76,43.92 -19.44,2.16 -32.4,14.4 -48.24,23.04 0,-2.88 0.72,-4.32 -3.6,-3.6 -15.84,0.72 -31.68,-6.48 -43.92,-15.12 -13.68,-8.64 -31.68,-13.68 -38.16,-28.08 -14.4,-30.96 -33.12,-57.6 -68.4,-66.24 -4.32,-1.44 -7.92,-7.2 -7.2,-12.96 -2.16,0 -5.76,0.72 -6.48,-0.72 -2.16,-2.88 0.72,-7.92 2.88,-9.36 14.4,-5.76 30.96,-3.6 45.36,-11.52 -4.32,5.04 7.92,2.16 3.6,7.2 2.16,0 6.48,0.72 6.48,0 10.08,-38.88 13.68,-55.44 5.04,-44.64 2.16,-2.16 9.36,-2.16 12.24,0 9.36,6.48 19.44,11.52 21.6,23.76 3.6,14.4 4.32,31.68 12.96,43.92 15.12,20.16 36,-8.64 43.2,-26.64 -24.48,0.72 -41.04,-18 -62.64,-25.2 -0.72,-0.72 0.72,-7.92 -0.72,-8.64 -15.84,-5.76 -35.28,-7.2 -48.24,-19.44 -2.16,-2.16 0.72,-10.8 -1.44,-12.24 -20.16,-11.52 -59.04,-3.6 -60.48,-22.32 -4.32,-41.76 -51.12,-42.48 -68.4,-68.4 -10.08,-16.56 -4.32,-41.76 -2.88,-64.08 0.72,-10.8 17.28,-11.52 17.28,-24.48 18.72,1.44 37.44,-8.64 55.44,0.72 2.88,1.44 3.6,7.92 4.32,8.64 23.04,10.8 37.44,27.36 49.68,48.96 1.44,2.16 8.64,0 12.96,1.44 18,7.92 37.44,30.96 48.96,18 10.8,-11.52 28.8,-18 34.56,-38.88 3.6,-12.24 24.48,1.44 40.32,-8.64 7.92,-4.32 8.64,-14.4 15.84,-15.84 10.08,-2.16 18.72,-8.64 28.08,-6.48 6.48,0.72 2.16,8.64 4.32,12.24 0.72,1.44 4.32,0 6.48,0.72 2.16,1.44 4.32,3.6 3.6,7.2 4.32,0 10.08,1.44 12.96,-0.72 6.48,-5.04 12.96,-5.04 17.28,-7.92 11.52,-8.64 15.12,-25.92 24.48,-34.56 10.8,-10.8 40.32,9.36 46.08,-4.32 10.08,-23.76 -0.72,-57.6 14.4,-79.92 28.08,-40.32 56.16,-82.08 105.12,-97.2 5.04,-2.16 5.04,-10.08 5.04,-13.68 1.44,-21.6 -3.6,-43.92 20.16,-50.4 26.64,-7.92 56.88,-15.12 82.08,0 5.76,4.32 14.4,13.68 20.16,16.56 17.28,7.92 35.28,15.84 43.92,29.52 12.24,18.72 0,46.8 -7.2,70.56 25.92,1.44 47.52,-15.84 73.44,-13.68 l 10.8,-3.6 c 10.08,-6.48 24.48,-5.04 30.24,-14.4 30.96,-51.84 43.92,-107.28 73.44,-159.12 2.16,-3.6 14.4,-1.44 22.32,-1.44 -2.16,6.48 2.88,12.24 5.04,16.56 12.96,26.64 14.4,56.16 31.68,79.92 5.04,5.76 15.12,12.96 25.92,12.24 -0.72,9.36 8.64,15.12 12.96,18.72 10.08,10.08 14.4,-8.64 25.92,-15.12 8.64,-5.76 21.6,-1.44 26.64,-8.64 10.08,-12.96 28.08,-11.52 34.56,-23.76 16.56,-36 28.8,-72 39.6,-110.88 0.72,-2.16 15.84,2.88 20.88,-4.32 10.08,-17.28 25.2,-30.24 42.48,-39.6 3.6,-2.16 9.36,-6.48 10.8,-12.24 9.36,4.32 3.6,12.24 2.16,16.56 -8.64,24.48 -18,48.24 -19.44,74.16 21.6,-5.76 43.2,-12.24 66.24,-10.8 -1.44,31.68 9.36,65.52 -6.48,93.6 -6.48,11.52 -23.76,18.72 -31.68,33.12 -5.04,8.64 -7.2,21.6 -2.16,25.92 17.28,13.68 41.76,1.44 61.2,2.16 7.92,0 14.4,23.04 19.44,32.4 10.08,18.72 19.44,63.36 8.64,91.44 -12.24,30.24 -68.4,32.4 -62.64,71.28 2.16,12.96 26.64,6.48 39.6,-4.32 6.48,-5.04 15.84,-12.24 23.76,-15.12 4.32,-1.44 8.64,-5.04 13.68,-5.04 z" + clip-path="url(#J)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path453" /><path + d="m 2043.43,4595.61 c -23.75,7.2 -50.39,5.04 -72.72,-11.52 -19.44,-14.39 -30.23,-33.84 -44.64,-52.55 -29.52,-40.33 -23.75,-92.16 -46.8,-133.2 -10.07,-17.29 -30.23,-36 -23.75,-57.61 4.32,-16.55 23.03,-23.76 29.52,-41.76 5.03,-14.4 2.87,-31.68 10.8,-41.04 28.07,-34.55 72,-48.23 116.64,-55.43 30.23,-5.05 55.43,14.39 81.36,30.95 13.68,7.93 33.84,-1.43 39.59,-16.56 3.61,-10.8 -1.43,-25.92 2.16,-37.44 12.25,-36 20.16,-71.27 38.89,-106.56 15.11,-27.35 10.07,-60.48 2.16,-88.55 -6.48,-23.05 -20.16,-43.93 -15.12,-66.96 4.32,-22.33 23.03,-34.57 28.07,-56.88 8.64,-37.45 -1.43,-74.16 16.57,-107.29 8.64,-15.83 18,-28.8 34.55,-38.16 15.84,-9.35 33.84,-7.19 51.84,-7.92 -2.16,4.32 5.04,5.76 3.61,10.08 9.36,-2.16 12.95,5.04 19.43,8.65 22.32,15.11 40.32,33.84 61.93,50.39 10.8,7.93 19.44,24.48 25.91,38.88 3.61,10.08 -2.88,21.6 4.32,31.68 8.64,11.53 5.77,24.48 15.13,33.84 15.83,16.56 37.44,28.08 46.8,50.4 12.96,28.81 11.52,59.76 5.75,90 -1.43,6.49 -1.43,15.84 -5.75,23.04 -7.93,13.68 -2.88,33.84 -2.88,51.12 10.08,-2.87 15.84,6.49 20.16,11.52 20.15,25.93 48.24,43.92 58.31,73.45 7.21,21.59 26.64,36 36,55.43 2.16,5.04 1.44,13.68 5.77,15.84 18.71,12.25 28.07,33.12 23.76,48.96 -3.6,13.68 -26.64,7.93 -41.76,12.25 -18.72,5.75 -31.68,19.43 -48.24,29.52 -33.12,21.59 -64.8,47.52 -79.21,82.79 -9.36,23.76 -23.75,41.76 -38.88,61.21 -4.32,5.75 -7.19,14.39 -15.83,15.11 4.32,0.73 9.35,2.16 13.67,3.6 -7.19,21.61 -11.51,43.92 -17.28,66.24 -36,-25.92 -81.36,3.6 -122.39,-1.43 -2.88,0 4.32,-10.09 -0.72,-11.52 -6.48,-2.16 -12.25,2.87 -18.73,7.91 -11.52,7.93 -30.95,-5.75 -43.2,5.77 -2.87,2.87 0.73,11.52 -1.43,16.55 -5.05,10.09 -6.48,12.24 -14.41,21.61 -6.48,7.91 -20.16,23.75 -30.23,26.63 -10.8,2.89 -23.05,4.32 -30.25,-0.72 -21.59,-14.39 -38.87,-30.23 -61.2,-43.2 -3.6,-2.16 -9.35,0.72 -17.28,2.88" + clip-path="url(#K)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path455" /><path + d="m 2043.43,4595.61 c -23.75,7.2 -50.39,5.04 -72.72,-11.52 -19.44,-14.39 -30.23,-33.84 -44.64,-52.55 -29.52,-40.33 -23.75,-92.16 -46.8,-133.2 -10.07,-17.29 -30.23,-36 -23.75,-57.61 4.32,-16.55 23.03,-23.76 29.52,-41.76 5.03,-14.4 2.87,-31.68 10.8,-41.04 28.07,-34.55 72,-48.23 116.64,-55.43 30.23,-5.05 55.43,14.39 81.36,30.95 13.68,7.93 33.84,-1.43 39.59,-16.56 3.61,-10.8 -1.43,-25.92 2.16,-37.44 12.25,-36 20.16,-71.27 38.89,-106.56 15.11,-27.35 10.07,-60.48 2.16,-88.55 -6.48,-23.05 -20.16,-43.93 -15.12,-66.96 4.32,-22.33 23.03,-34.57 28.07,-56.88 8.64,-37.45 -1.43,-74.16 16.57,-107.29 8.64,-15.83 18,-28.8 34.55,-38.16 15.84,-9.35 33.84,-7.19 51.84,-7.92 -2.16,4.32 5.04,5.76 3.61,10.08 9.36,-2.16 12.95,5.04 19.43,8.65 22.32,15.11 40.32,33.84 61.93,50.39 10.8,7.93 19.44,24.48 25.91,38.88 3.61,10.08 -2.88,21.6 4.32,31.68 8.64,11.53 5.77,24.48 15.13,33.84 15.83,16.56 37.44,28.08 46.8,50.4 12.96,28.81 11.52,59.76 5.75,90 -1.43,6.49 -1.43,15.84 -5.75,23.04 -7.93,13.68 -2.88,33.84 -2.88,51.12 10.08,-2.87 15.84,6.49 20.16,11.52 20.15,25.93 48.24,43.92 58.31,73.45 7.21,21.59 26.64,36 36,55.43 2.16,5.04 1.44,13.68 5.77,15.84 18.71,12.25 28.07,33.12 23.76,48.96 -3.6,13.68 -26.64,7.93 -41.76,12.25 -18.72,5.75 -31.68,19.43 -48.24,29.52 -33.12,21.59 -64.8,47.52 -79.21,82.79 -9.36,23.76 -23.75,41.76 -38.88,61.21 -4.32,5.75 -7.19,14.39 -15.83,15.11 4.32,0.73 9.35,2.16 13.67,3.6 -7.19,21.61 -11.51,43.92 -17.28,66.24 -36,-25.92 -81.36,3.6 -122.39,-1.43 -2.88,0 4.32,-10.09 -0.72,-11.52 -6.48,-2.16 -12.25,2.87 -18.73,7.91 -11.52,7.93 -30.95,-5.75 -43.2,5.77 -2.87,2.87 0.73,11.52 -1.43,16.55 -5.05,10.09 -6.48,12.24 -14.41,21.61 -6.48,7.91 -20.16,23.75 -30.23,26.63 -10.8,2.89 -23.05,4.32 -30.25,-0.72 -21.59,-14.39 -38.87,-30.23 -61.2,-43.2 -3.6,-2.16 -9.35,0.72 -17.28,2.88 z" + clip-path="url(#L)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path457" /><path + d="m 2575.52,3980.02 c -2.89,7.92 -9.36,1.44 -13.68,2.88 -5.77,-23.04 -26.64,-33.84 -48.96,-30.96 5.03,-20.88 1.44,-29.52 -16.56,-43.2 -2.89,-2.88 0.72,-12.96 -2.16,-15.84 -26.64,-23.76 -12.96,-65.52 10.07,-82.08 15.13,-11.52 29.52,6.48 30.24,21.6 1.44,30.24 25.92,47.52 31.69,77.04 0.72,5.04 3.59,13.68 12.95,10.8 -7.2,16.56 0.73,31.68 -3.59,62.64 v -2.88" + clip-path="url(#M)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path459" /><path + d="m 2575.52,3980.02 c -2.89,7.92 -9.36,1.44 -13.68,2.88 -5.77,-23.04 -26.64,-33.84 -48.96,-30.96 5.03,-20.88 1.44,-29.52 -16.56,-43.2 -2.89,-2.88 0.72,-12.96 -2.16,-15.84 -26.64,-23.76 -12.96,-65.52 10.07,-82.08 15.13,-11.52 29.52,6.48 30.24,21.6 1.44,30.24 25.92,47.52 31.69,77.04 0.72,5.04 3.59,13.68 12.95,10.8 -7.2,16.56 0.73,31.68 -3.59,62.64 z" + clip-path="url(#N)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path461" /><path + d="m 1197.43,4461.7 c 17.28,13.68 41.76,13.68 56.88,4.32 21.6,-13.68 45.36,-31.68 55.44,-56.89 2.88,-7.2 -12.24,-7.2 -18,-5.04 -12.24,5.04 -20.88,12.25 -29.52,22.32 -2.88,2.88 -10.8,1.45 -16.56,1.45 1.44,9.35 0,16.55 -7.92,19.43 -10.08,4.32 -23.76,-1.43 -33.12,2.89 -2.88,1.43 -12.24,7.2 -7.2,11.52" + clip-path="url(#O)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path463" /><path + d="m 1197.43,4461.7 c 17.28,13.68 41.76,13.68 56.88,4.32 21.6,-13.68 45.36,-31.68 55.44,-56.89 2.88,-7.2 -12.24,-7.2 -18,-5.04 -12.24,5.04 -20.88,12.25 -29.52,22.32 -2.88,2.88 -10.8,1.45 -16.56,1.45 1.44,9.35 0,16.55 -7.92,19.43 -10.08,4.32 -23.76,-1.43 -33.12,2.89 -2.88,1.43 -12.24,7.2 -7.2,11.52 z" + clip-path="url(#P)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path465" /><path + d="m 3295.52,4692.09 c -10.09,7.2 -12.25,-11.52 -8.64,-14.39 61.91,-41.05 0,-17.29 27.35,-15.84 -2.16,12.95 -8.64,23.75 -18.71,30.23" + clip-path="url(#Q)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path467" /><path + d="m 3295.52,4692.09 c -10.09,7.2 -12.25,-11.52 -8.64,-14.39 61.91,-41.05 0,-17.29 27.35,-15.84 -2.16,12.95 -8.64,23.75 -18.71,30.23 z" + clip-path="url(#R)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path469" /><path + d="m 3348.79,4630.89 c 78.48,48.25 -48.24,-84.96 -5.76,-0.71 -2.16,-3.61 -1.44,-8.64 -0.73,-13.68 0.73,-2.89 5.05,-2.89 5.77,-4.32 5.04,-5.77 -9.36,-14.41 1.43,-19.45 2.89,-1.44 8.64,-1.44 8.64,0 3.61,12.97 3.61,28.09 -2.87,41.04 -1.45,2.16 -4.32,-1.43 -6.48,-2.88" + clip-path="url(#S)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path471" /><path + d="m 3348.79,4630.89 c 78.48,48.25 -48.24,-84.96 -5.76,-0.71 -2.16,-3.61 -1.44,-8.64 -0.73,-13.68 0.73,-2.89 5.05,-2.89 5.77,-4.32 5.04,-5.77 -9.36,-14.41 1.43,-19.45 2.89,-1.44 8.64,-1.44 8.64,0 3.61,12.97 3.61,28.09 -2.87,41.04 -1.45,2.16 -4.32,-1.43 -6.48,-2.88 z" + clip-path="url(#T)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path473" /><path + d="m 3327.91,4571.14 c -3.6,0 -6.48,-3.6 -10.08,-4.32 -3.6,-1.44 13.68,-20.88 17.28,-23.04 2.16,-0.72 -7.92,12.96 -7.92,13.68 2.16,3.6 0.72,9.36 0.72,13.68" + clip-path="url(#U)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path475" /><path + d="m 3327.91,4571.14 c -3.6,0 -6.48,-3.6 -10.08,-4.32 -3.6,-1.44 13.68,-20.88 17.28,-23.04 2.16,-0.72 -7.92,12.96 -7.92,13.68 2.16,3.6 0.72,9.36 0.72,13.68 z" + clip-path="url(#V)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path477" /><path + d="m 3299.11,4388.26 c -1.44,2.16 -7.92,1.44 -8.64,0.72 -3.6,-9.36 -2.16,-25.2 12.96,-24.48 -3.6,-19.44 6.48,-36.72 9.36,-55.44 1.44,-7.2 13.68,-18.72 20.88,-12.24 1.44,1.44 1.44,-7.2 1.44,25.92 -7.2,-2.88 -5.04,7.92 -10.8,7.2 4.32,23.76 -10.08,41.76 -25.2,58.32" + clip-path="url(#W)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path479" /><path + d="m 3299.11,4388.26 c -1.44,2.16 -7.92,1.44 -8.64,0.72 -3.6,-9.36 -2.16,-25.2 12.96,-24.48 -3.6,-19.44 6.48,-36.72 9.36,-55.44 1.44,-7.2 13.68,-18.72 20.88,-12.24 1.44,1.44 1.44,-7.2 1.44,25.92 -7.2,-2.88 -5.04,7.92 -10.8,7.2 4.32,23.76 -10.08,41.76 -25.2,58.32 z" + clip-path="url(#X)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path481" /><path + d="m 3366.79,4291.06 c -5.04,5.04 -2.16,-7.92 -7.2,-3.6 -8.64,-31.68 7.92,-18 3.61,-13.68 1.43,-0.72 4.31,0 7.19,0 -0.72,5.76 1.44,12.24 -3.6,17.28" + clip-path="url(#Y)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path483" /><path + d="m 3366.79,4291.06 c -5.04,5.04 -2.16,-7.92 -7.2,-3.6 -8.64,-31.68 7.92,-18 3.61,-13.68 1.43,-0.72 4.31,0 7.19,0 -0.72,5.76 1.44,12.24 -3.6,17.28 z" + clip-path="url(#Z)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path485" /><path + d="m 3307.03,4270.9 c -5.04,-2.88 -9.36,8.64 -12.96,2.16 -2.88,-3.6 -2.88,-10.8 0,-12.24 18.72,-12.96 8.64,-0.72 20.16,5.76 -5.04,-4.32 -1.44,7.2 -7.2,4.32" + clip-path="url(#aa)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path487" /><path + d="m 3307.03,4270.9 c -5.04,-2.88 -9.36,8.64 -12.96,2.16 -2.88,-3.6 -2.88,-10.8 0,-12.24 18.72,-12.96 8.64,-0.72 20.16,5.76 -5.04,-4.32 -1.44,7.2 -7.2,4.32 z" + clip-path="url(#ab)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path489" /><path + d="m 3347.35,4280.26 c -1.44,2.88 0,19.44 3.6,23.04 l -3.6,-23.04" + clip-path="url(#ac)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path491" /><path + d="m 3347.35,4280.26 c -1.44,2.88 0,19.44 3.6,23.04 z" + clip-path="url(#ad)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path493" /><path + d="m 3342.31,4269.46 c 5.04,-0.72 -6.48,-9.36 -6.48,-10.08 0.72,-5.04 5.76,-2.88 10.08,-2.88 -4.32,3.6 5.04,12.24 -3.6,12.96" + clip-path="url(#ae)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path495" /><path + d="m 3342.31,4269.46 c 5.04,-0.72 -6.48,-9.36 -6.48,-10.08 0.72,-5.04 5.76,-2.88 10.08,-2.88 -4.32,3.6 5.04,12.24 -3.6,12.96 z" + clip-path="url(#af)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path497" /><path + d="m 3381.2,4252.18 c -8.65,-5.04 -20.88,-7.2 -13.68,-15.84 4.32,-5.76 16.55,2.88 24.48,0 0,3.6 -3.61,10.08 -5.05,12.24 -0.72,2.16 -5.04,4.32 -5.75,3.6" + clip-path="url(#ag)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path499" /><path + d="m 3381.2,4252.18 c -8.65,-5.04 -20.88,-7.2 -13.68,-15.84 4.32,-5.76 16.55,2.88 24.48,0 0,3.6 -3.61,10.08 -5.05,12.24 -0.72,2.16 -5.04,4.32 -5.75,3.6 z" + clip-path="url(#ah)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path501" /><path + d="m 3299.83,4247.14 c -18,-5.76 -18.72,-23.76 -20.88,-40.32 -5.76,2.88 -8.64,-5.77 -13.68,-2.88 0,-3.6 0.72,-9.37 -0.72,-10.08 -23.04,-7.92 -38.88,-23.76 -54,-40.32 -1.44,-2.16 -8.64,-10.08 -4.32,-11.52 21.6,-9.36 43.92,-18 64.08,-33.84 15.12,-12.25 25.92,13.68 38.88,8.64 7.2,-2.89 1.44,-24.48 7.2,-29.52 13.68,-12.25 30.24,3.59 38.16,18.72 13.68,26.64 5.04,55.44 -0.72,82.8 -2.88,12.96 -20.16,15.84 -15.12,32.39 1.44,-6.48 -2.88,-10.07 -7.2,-14.39 -8.64,17.28 -1.44,48.96 -31.68,40.32" + clip-path="url(#ai)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path503" /><path + d="m 3299.83,4247.14 c -18,-5.76 -18.72,-23.76 -20.88,-40.32 -5.76,2.88 -8.64,-5.77 -13.68,-2.88 0,-3.6 0.72,-9.37 -0.72,-10.08 -23.04,-7.92 -38.88,-23.76 -54,-40.32 -1.44,-2.16 -8.64,-10.08 -4.32,-11.52 21.6,-9.36 43.92,-18 64.08,-33.84 15.12,-12.25 25.92,13.68 38.88,8.64 7.2,-2.89 1.44,-24.48 7.2,-29.52 13.68,-12.25 30.24,3.59 38.16,18.72 13.68,26.64 5.04,55.44 -0.72,82.8 -2.88,12.96 -20.16,15.84 -15.12,32.39 1.44,-6.48 -2.88,-10.07 -7.2,-14.39 -8.64,17.28 -1.44,48.96 -31.68,40.32 z" + clip-path="url(#aj)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path505" /><path + d="m 3139.27,4157.86 c -5.04,12.96 -17.28,18.72 -27.36,12.96 -7.2,-3.6 -12.24,-11.52 -6.48,-18.72 20.88,-30.24 23.76,-39.6 32.4,-51.84 7.2,-11.52 18,-17.28 32.4,-19.44 -7.92,9.36 5.76,19.44 0,28.08 -10.8,18 -13.68,39.6 -30.96,52.56 v -3.6" + clip-path="url(#ak)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path507" /><path + d="m 3139.27,4157.86 c -5.04,12.96 -17.28,18.72 -27.36,12.96 -7.2,-3.6 -12.24,-11.52 -6.48,-18.72 20.88,-30.24 23.76,-39.6 32.4,-51.84 7.2,-11.52 18,-17.28 32.4,-19.44 -7.92,9.36 5.76,19.44 0,28.08 -10.8,18 -13.68,39.6 -30.96,52.56 z" + clip-path="url(#al)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path509" /><path + d="m 3233.59,4067.14 c -12.24,-2.16 -25.2,5.04 -34.56,-4.32 -1.44,-1.44 -1.44,-7.92 0,-8.64 26.64,-10.08 26.64,-20.88 40.32,-9.36 6.48,5.04 15.12,7.2 21.6,12.24 1.44,0.72 0.72,5.76 0.72,5.76 -9.36,2.88 -18,6.48 -28.08,4.32" + clip-path="url(#am)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path511" /><path + d="m 3233.59,4067.14 c -12.24,-2.16 -25.2,5.04 -34.56,-4.32 -1.44,-1.44 -1.44,-7.92 0,-8.64 26.64,-10.08 26.64,-20.88 40.32,-9.36 6.48,5.04 15.12,7.2 21.6,12.24 1.44,0.72 0.72,5.76 0.72,5.76 -9.36,2.88 -18,6.48 -28.08,4.32 z" + clip-path="url(#an)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path513" /><path + d="m 3384.07,4052.74 c 11.52,5.04 -59.03,-59.76 -26.64,-25.2 -4.32,-4.32 12.24,-20.16 13.68,-15.12 5.04,12.96 23.04,23.76 15.84,40.32 0,0.72 -2.16,0.72 -2.88,0" + clip-path="url(#ao)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path515" /><path + d="m 3384.07,4052.74 c 11.52,5.04 -59.03,-59.76 -26.64,-25.2 -4.32,-4.32 12.24,-20.16 13.68,-15.12 5.04,12.96 23.04,23.76 15.84,40.32 0,0.72 -2.16,0.72 -2.88,0 z" + clip-path="url(#ap)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path517" /><path + d="m 3408.55,4182.34 c 0,-6.48 -7.92,-26.64 -5.76,-33.12 0,-0.72 11.52,12.24 12.24,12.96 2.16,7.2 1.44,15.84 -6.48,20.16" + clip-path="url(#aq)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path519" /><path + d="m 3408.55,4182.34 c 0,-6.48 -7.92,-26.64 -5.76,-33.12 0,-0.72 11.52,12.24 12.24,12.96 2.16,7.2 1.44,15.84 -6.48,20.16 z" + clip-path="url(#ar)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path521" /><path + d="m 3430.15,4093.06 c -5.04,0 -3.6,14.4 -7.2,11.52 -1.44,-0.72 -1.44,-7.92 0,-8.64 8.64,-3.6 17.28,2.16 23.76,10.08 -2.88,0 -12.96,-12.96 -16.56,-12.96" + clip-path="url(#as)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path523" /><path + d="m 3430.15,4093.06 c -5.04,0 -3.6,14.4 -7.2,11.52 -1.44,-0.72 -1.44,-7.92 0,-8.64 8.64,-3.6 17.28,2.16 23.76,10.08 -2.88,0 -12.96,-12.96 -16.56,-12.96 z" + clip-path="url(#at)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path525" /><path + d="m 3496.39,4138.42 c -13.68,1.44 -17.28,-10.08 -23.76,-19.44 -5.76,-9.36 -0.72,-16.56 7.2,-22.32 5.76,-4.32 16.56,0.72 23.04,-2.16 17.28,-9.36 3.6,-26.64 15.84,-35.28 10.8,-7.2 26.64,-5.04 40.32,-7.2 15.12,-2.88 17.28,-30.24 34.56,-24.48 6.48,1.44 5.76,14.4 3.6,22.32 0,0.72 -5.76,-0.72 -5.76,0 -2.16,10.8 2.88,23.04 -2.16,30.24 -12.96,15.84 -26.64,30.96 -44.64,42.48 -14.4,9.36 -30.24,13.68 -48.24,15.84" + clip-path="url(#au)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path527" /><path + d="m 3496.39,4138.42 c -13.68,1.44 -17.28,-10.08 -23.76,-19.44 -5.76,-9.36 -0.72,-16.56 7.2,-22.32 5.76,-4.32 16.56,0.72 23.04,-2.16 17.28,-9.36 3.6,-26.64 15.84,-35.28 10.8,-7.2 26.64,-5.04 40.32,-7.2 15.12,-2.88 17.28,-30.24 34.56,-24.48 6.48,1.44 5.76,14.4 3.6,22.32 0,0.72 -5.76,-0.72 -5.76,0 -2.16,10.8 2.88,23.04 -2.16,30.24 -12.96,15.84 -26.64,30.96 -44.64,42.48 -14.4,9.36 -30.24,13.68 -48.24,15.84 z" + clip-path="url(#av)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path529" /><path + d="m 3562.63,4008.1 c -18.72,-7.92 -24.48,-28.8 -31.68,-45.36 -22.32,-49.68 -28.8,-18.72 -36.72,-12.24 -14.4,11.52 -12.24,33.12 -27.36,45.36 -9.36,7.2 -20.88,-6.48 -28.8,-11.52 -25.92,-17.28 -51.84,-27.36 -77.76,-43.92 -5.04,-2.88 -10.08,-10.08 -12.24,-10.8 -43.2,-16.56 -78.48,-45.36 -120.96,-64.08 -13.68,-5.76 -31.68,-12.96 -37.44,-26.64 -4.32,-10.8 5.76,-25.92 0.72,-37.44 -2.16,-4.32 -0.72,-12.24 -5.76,-13.68 -18.72,-5.76 -18,-22.32 -23.04,-36 -2.88,-7.92 -7.2,-18 2.88,-22.32 18,-8.64 38.88,-7.2 59.04,-4.32 28.08,3.6 47.52,29.52 76.32,24.48 8.64,-1.44 15.12,-13.68 23.04,-20.16 25.2,-20.88 28.8,-72.72 68.4,-67.68 10.8,1.44 12.96,15.12 21.6,20.16 41.04,23.04 77.04,47.52 117.36,72.72 21.6,13.68 36.72,33.84 41.76,61.2 6.48,29.52 5.04,59.04 3.6,86.4 -1.44,34.56 -4.32,71.28 -12.96,105.84" + clip-path="url(#aw)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path531" /><path + d="m 3562.63,4008.1 c -18.72,-7.92 -24.48,-28.8 -31.68,-45.36 -22.32,-49.68 -28.8,-18.72 -36.72,-12.24 -14.4,11.52 -12.24,33.12 -27.36,45.36 -9.36,7.2 -20.88,-6.48 -28.8,-11.52 -25.92,-17.28 -51.84,-27.36 -77.76,-43.92 -5.04,-2.88 -10.08,-10.08 -12.24,-10.8 -43.2,-16.56 -78.48,-45.36 -120.96,-64.08 -13.68,-5.76 -31.68,-12.96 -37.44,-26.64 -4.32,-10.8 5.76,-25.92 0.72,-37.44 -2.16,-4.32 -0.72,-12.24 -5.76,-13.68 -18.72,-5.76 -18,-22.32 -23.04,-36 -2.88,-7.92 -7.2,-18 2.88,-22.32 18,-8.64 38.88,-7.2 59.04,-4.32 28.08,3.6 47.52,29.52 76.32,24.48 8.64,-1.44 15.12,-13.68 23.04,-20.16 25.2,-20.88 28.8,-72.72 68.4,-67.68 10.8,1.44 12.96,15.12 21.6,20.16 41.04,23.04 77.04,47.52 117.36,72.72 21.6,13.68 36.72,33.84 41.76,61.2 6.48,29.52 5.04,59.04 3.6,86.4 -1.44,34.56 -4.32,71.28 -12.96,105.84 z" + clip-path="url(#ax)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path533" /><path + d="m 3359.59,3634.42 c -5.76,-2.88 -14.4,0 -20.16,-1.44 -0.72,-0.72 -0.72,-4.32 -0.72,-6.48 4.32,0 4.32,-4.32 9.36,-8.64 14.4,-12.96 41.76,-6.48 24.48,18 -1.44,2.16 -7.92,1.44 -12.96,-1.44" + clip-path="url(#ay)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path535" /><path + d="m 3359.59,3634.42 c -5.76,-2.88 -14.4,0 -20.16,-1.44 -0.72,-0.72 -0.72,-4.32 -0.72,-6.48 4.32,0 4.32,-4.32 9.36,-8.64 14.4,-12.96 41.76,-6.48 24.48,18 -1.44,2.16 -7.92,1.44 -12.96,-1.44 z" + clip-path="url(#az)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path537" /><path + d="m 3597.91,3647.38 c -25.2,-18 -54,-26.64 -83.52,-37.44 -5.04,-1.44 -14.4,-8.64 -14.4,-18.72 29.52,0 48.96,23.04 90.72,36 7.2,2.88 10.08,11.52 10.8,20.16 h -7.2 3.6" + clip-path="url(#aA)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path539" /><path + d="m 3597.91,3647.38 c -25.2,-18 -54,-26.64 -83.52,-37.44 -5.04,-1.44 -14.4,-8.64 -14.4,-18.72 29.52,0 48.96,23.04 90.72,36 7.2,2.88 10.08,11.52 10.8,20.16 h -7.2 z" + clip-path="url(#aB)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path541" /><path + d="m 3685.04,3703.54 c 0,-2.88 1.44,-5.76 0,-6.48 -1.45,-1.44 -5.77,-0.72 -5.77,-0.72 -5.75,-28.08 -28.07,-38.88 -20.88,-28.8 -8.64,-11.52 19.45,-24.48 25.2,-12.24 6.48,13.68 7.2,31.68 7.93,48.24 0.71,2.16 -3.61,5.04 -5.77,2.88 -1.43,-1.44 -0.71,-4.32 -0.71,-6.48 v 3.6" + clip-path="url(#aC)" + style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path543" /><path + d="m 3685.04,3703.54 c 0,-2.88 1.44,-5.76 0,-6.48 -1.45,-1.44 -5.77,-0.72 -5.77,-0.72 -5.75,-28.08 -28.07,-38.88 -20.88,-28.8 -8.64,-11.52 19.45,-24.48 25.2,-12.24 6.48,13.68 7.2,31.68 7.93,48.24 0.71,2.16 -3.61,5.04 -5.77,2.88 -1.43,-1.44 -0.71,-4.32 -0.71,-6.48 z" + clip-path="url(#aD)" + style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path545" /><path + d="m 1254.31,3306.1 c 252,-73.44 528.48,-94.32 805.68,-94.32 335.52,0 780.48,59.04 944.64,132.48" + clip-path="url(#aE)" + style="fill:none;stroke:#ffffff;stroke-width:20.16;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.13333,0,0,-0.13333,-20.073,683.885)" + id="path547" /></g><text + xml:space="preserve" + style="font-weight:bold;font-size:19.7556px;line-height:1.25;font-family:Calibri;-inkscape-font-specification:'Calibri Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583" + id="text1016"><textPath + xlink:href="#path1183" + startOffset="50%" + id="textPath1835" + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:19.7556px;font-family:Brunine;-inkscape-font-specification:'Brunine Bold'">Where In The World</textPath></text><path + style="fill:none;stroke:none;stroke-width:0.401058;stroke-dasharray:none;stroke-opacity:1" + d="m 14.710377,47.140922 c 37.986886,-34.393533 140.654143,-34.906868 183.774393,0" + id="path1183" + sodipodi:nodetypes="cc" /><path + style="fill:none;stroke:none;stroke-width:0.401058;stroke-opacity:1" + d="m 18.303732,126.70857 c 46.713603,28.74683 130.900758,28.2335 175.561018,0.51333" + id="path712" + sodipodi:nodetypes="cc" /><text + xml:space="preserve" + style="font-weight:bold;font-size:16.9333px;line-height:1.25;font-family:Brunine;-inkscape-font-specification:'Brunine Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583" + id="text1366"><textPath + xlink:href="#path712" + startOffset="50%" + id="textPath1368" + style="font-size:16.9333px">Is That #@*% Owl!?</textPath></text><path + id="path6577" + style="fill-rule:evenodd;stroke-width:0.0237856;stroke-linecap:round" + class="pen1 brush0" + d="m 93.337891,43.628906 c -2.204006,0.193599 -4.61617,0.445889 -6.328125,1.998047 1.631792,0.526672 3.417151,0.714805 4.882812,1.640625 0.158163,0.330561 0.322385,0.660956 0.07126,0.974821 -0.07286,0.373746 0.205597,0.691707 0.42679,0.958773 -0.870414,-0.06454 -1.915303,0.301756 -2.330078,1.066406 0.417271,0.52734 1.214752,0.50099 1.787144,0.786696 0.474345,0.152903 0.981095,0.25845 1.394497,0.551195 -0.310363,0.308213 -0.102739,0.924847 -0.600875,1.080335 -0.855605,0.63214 -1.830502,1.416321 -1.928422,2.544665 -0.174617,0.36596 -0.568712,0.810383 -0.273438,1.21875 -0.07463,0.684565 -0.296893,1.414725 -0.998023,1.693798 -2.040978,1.282253 -4.718562,1.727862 -6.144441,3.845754 -6.047768,7.698755 -9.265814,17.224791 -10.905086,26.781353 -0.804083,4.637302 -1.216509,9.331836 -1.335262,14.034566 -0.87786,-0.25352 -1.561074,0.79532 -1.304009,1.56958 -0.03096,0.46283 0.130277,1.09655 -0.429996,1.28691 -0.762943,0.78274 -0.09254,1.93506 -0.310917,2.86616 -0.08025,0.71393 -0.298937,1.40718 -0.517578,2.08399 0.281926,1.23614 1.803162,1.36583 2.822265,1.32226 0.574003,0.19444 0.509379,1.19997 1.236501,1.16676 0.495897,-0.1107 0.773975,0.30628 0.624827,0.76879 -0.132408,0.47087 -0.40176,1.17522 0.214844,1.43555 0.793187,0.54283 1.701394,1.0197 2.135472,1.92523 0.514764,0.75606 1.599264,1.54038 2.493434,0.93219 0.366121,-0.34412 -0.112145,-1.21603 0.572266,-1.22266 0.86943,-0.19095 1.476791,1.05252 2.370779,0.5689 0.687081,-0.11064 1.451788,-0.70725 2.105783,-0.37358 0.351875,0.36967 1.119899,0.0279 0.976563,-0.49805 0.391798,-0.786 1.433328,-0.32721 2.071394,-0.18169 1.176241,0.34478 2.448162,-0.25195 3.031718,-1.30589 0.284203,-0.52075 0.77748,-0.85659 1.350935,-0.94505 0.384535,-0.0671 0.316795,-0.7432 0.716174,-0.48399 0.784441,0.17499 1.58607,0.50583 2.392279,0.41662 0.274372,-0.21543 0.174777,-0.98811 0.702479,-0.65678 0.876404,0.65232 1.914782,0.99501 2.821145,1.58752 0.656447,0.61553 1.562455,0.90288 2.071856,1.68218 0.746759,0.84419 1.311295,1.81805 1.967225,2.72143 0.27928,0.49409 0.83306,-0.0364 1.18925,0.2594 0.99904,0.23433 1.5197,-0.89887 2.12695,-1.45703 0.72425,-0.78495 1.50817,-1.76545 2.69302,-1.70082 0.64731,0.009 1.21007,-0.32598 1.74449,-0.60197 0.85017,-0.13584 1.69058,-0.41856 2.28319,-1.07417 0.3566,-0.34405 0.4939,0.29384 0.85547,0.30664 0.75731,0.22502 1.39886,-0.38382 1.83789,-0.91601 1.12488,-0.83322 2.61435,-0.7542 3.91016,-1.11523 0.46143,-0.0932 1.09973,-0.50409 1.43289,0.0288 1.30824,1.28748 3.21951,1.76525 4.48056,3.11901 2.58588,1.62391 6.12442,0.8059 8.46546,2.94005 0.79809,0.78251 0.78059,2.36098 2.05664,2.62304 1.56414,0.46552 3.00689,-1.45576 2.30851,-2.87345 -0.24489,-1.39759 0.92597,-2.45647 1.28064,-3.72739 0.23134,-0.47907 0.1691,-1.23759 0.68229,-1.4944 0.6842,0.021 1.73594,0.0912 1.94926,-0.78562 0.0894,-0.64982 0.47784,-1.30361 0.29912,-1.96093 -0.16365,-0.49508 -0.63532,-0.85394 -1.14287,-0.94141 -0.0588,-0.80559 0.38149,-1.80358 1.3055,-1.8074 0.67413,-0.0973 1.3475,-0.59947 1.24452,-1.35314 0.0787,-0.41606 -0.31839,-0.76028 -0.3215,-1.09532 0.14427,-0.80334 -0.90732,-1.42257 -1.58204,-1.03906 -0.5838,-5.152178 -1.235,-10.301463 -2.10074,-15.414694 -1.22785,-7.251043 -3.79825,-14.197835 -6.72933,-20.913434 -0.68794,-1.422629 -1.23822,-2.931965 -2.05106,-4.283476 -1.69545,-2.204626 -4.4105,-3.154969 -6.76144,-4.466524 -0.46582,-0.535506 -0.69081,-1.231039 -0.59766,-1.927734 -0.16109,-0.362519 -0.33249,-0.739869 -0.125,-1.123047 0.0885,-0.752144 -1.11942,-1.190041 -0.61133,-1.945312 0.27463,-0.862197 -0.65848,-1.393804 -1.07422,-2.003907 0.13243,-0.49133 0.0476,-1.048618 -0.27539,-1.449218 0.32995,-0.780799 1.41746,-0.438443 1.92774,-1.039063 0.66645,-0.477252 0.62665,-1.67799 -0.22461,-1.929687 -0.20276,-0.07355 -0.65688,-0.462662 -0.40955,-0.533109 1.5427,-0.547639 3.13987,-1.034738 4.48181,-2.004001 -3.1122,-1.890403 -7.01142,-1.654274 -10.39382,-0.705535 -0.63214,0.24634 -1.29836,0.563547 -1.99485,0.424285 -0.20847,-0.726636 -1.15235,-1.010675 -1.80078,-0.714843 -0.57061,-0.507221 -1.44631,-0.116698 -2.02148,-0.603516 -0.61651,-0.166446 -1.28434,0.273779 -1.85547,-0.130859 -0.63792,-0.127792 -1.26708,0.409458 -1.86133,-0.0039 -0.75411,-0.265603 -1.37689,0.44892 -2.12963,0.225774 -1.30088,-0.147198 -2.56087,0.550095 -3.842438,0.338387 -0.941188,-0.118748 -1.772542,-0.648573 -2.731119,-0.723705 -1.23716,-0.216989 -2.497546,-0.260675 -3.751892,-0.248659 z" /><g + style="fill-rule:evenodd;stroke-linecap:round" + id="g2804" + transform="matrix(0.02378547,0,0,0.02378578,69.256325,44.375097)"><path + d="m 1993,2661 428,-42 h 1 l 1,-1 h 7 l 5,-1 h 5 l 7,-1 8,-1 h 8 l 9,-1 h 10 l 10,-1 h 45 l 13,1 12,1 13,1 13,1 13,2 13,2 13,3 13,3 12,3 13,3 12,5 12,4 12,6 11,5 10,7 10,7 h 54 l 123,-42 18,30 -177,96 v 3 l 1,2 2,3 4,3 6,3 8,4 10,4 13,5 17,4 20,5 25,5 28,5 34,5 39,5 1,1 1,1 2,1 3,1 2,3 3,3 3,3 2,4 1,5 v 5 l -1,6 -3,7 -5,7 -6,8 -10,8 -11,10 -93,-7 v 1 l -1,2 -1,3 -1,4 -2,6 -2,6 -3,7 -3,9 -2,8 -4,10 -3,10 -3,10 -4,11 -3,11 -4,12 -3,11 -4,12 -4,12 -3,12 -3,11 -3,12 -2,11 -3,10 -2,10 -2,10 -1,9 -2,9 v 20 l 1,5 1,3 7,11 5,10 4,8 3,6 2,4 2,4 1,1 v 2 l -1,2 -2,3 -2,4 -3,5 -3,5 -4,5 -5,5 -5,5 -5,3 -6,2 -6,1 h -6 l -6,-2 -8,-5 -7,-7 -4,-5 -4,-6 -5,-7 -6,-9 -5,-9 -6,-10 -7,-11 -7,-11 -7,-12 -7,-13 -7,-13 -8,-13 -7,-14 -8,-14 -7,-13 -8,-14 -7,-14 -7,-13 -7,-13 -7,-13 -6,-12 -6,-12 -6,-11 -5,-10 -5,-9 -5,-8 -3,-8 -3,-6 -3,-5 -2,-3 -1,-3 v -1 l -96,-143 -114,-3 -375,41 z M 58,2502 l 54,30 21,30 78,45 161,9 h 153 l 17,1 h 53 l 17,1 h 17 l 16,1 h 16 l 15,1 13,1 13,1 12,1 10,1 8,1 8,1 5,2 3,1 2,2 v 12 l 1,9 v 12 l -1,12 v 28 l -1,14 v 28 l -1,13 v 11 l -1,9 v 13 l -264,-21 h -50 l -8,1 h -8 l -7,1 -7,1 -5,1 -5,1 -3,1 -3,3 -4,4 -6,6 -6,6 -7,8 -7,8 -8,8 -8,9 -8,8 -7,8 -7,8 -6,7 -6,5 -3,5 -3,2 -1,1 -65,90 -1,1 h -2 l -2,2 h -3 l -4,1 -4,1 h -4 l -4,-1 -3,-1 -4,-3 -3,-3 -2,-5 -1,-8 v -8 l 1,-11 2,-13 3,-13 1,-13 v -12 l -1,-11 -1,-10 -3,-9 -3,-8 -4,-7 -3,-6 -4,-6 -4,-5 -3,-4 -3,-2 -2,-3 -2,-1 h -1 l -161,-24 12,-57 v -117 l 63,-3 -36,-33 z" + class="pen1 brush0" + id="path2722" /><path + d="m 215,1616 3,-12 3,-12 3,-13 4,-12 3,-12 3,-12 3,-12 4,-13 3,-12 3,-12 4,-12 4,-12 3,-13 4,-12 3,-12 4,-12 8,-24 9,-23 9,-24 9,-24 9,-23 9,-24 10,-24 10,-23 10,-23 10,-24 10,-23 10,-23 11,-23 11,-23 12,-22 11,-23 12,-23 12,-22 12,-22 13,-22 13,-22 13,-21 14,-22 14,-21 15,-21 14,-21 16,-20 15,-20 16,-20 17,-20 17,-19 17,-19 8,-6 8,-6 8,-6 9,-5 8,-5 9,-4 9,-5 9,-4 10,-4 9,-4 9,-4 10,-3 9,-4 10,-4 9,-4 10,-4 9,-4 9,-4 9,-4 9,-5 9,-4 9,-5 8,-5 9,-5 8,-6 8,-6 8,-7 7,-7 7,-7 7,-8 6,-9 6,-9 -17,-3 v -5 l 4,-6 6,-5 7,-6 5,-6 3,-7 -2,-7 -8,-9 -2,2 -1,1 -1,1 h -2 l -1,1 h -4 v -5 l 2,-4 3,-4 5,-4 3,-4 4,-4 3,-4 1,-4 3,1 h 2 l 2,-1 2,-2 2,-2 1,-2 1,-2 2,-2 -4,-2 -2,-1 -2,-1 -2,-2 -2,-2 -1,-2 -2,-3 -3,-2 5,-7 5,-6 5,-6 7,-6 6,-6 6,-6 7,-6 7,-6 7,-6 7,-5 7,-6 7,-5 7,-5 7,-5 7,-5 6,-4 5,8 5,3 5,-1 5,-3 6,-5 6,-5 7,-3 h 8 v -5 l -4,-1 -3,-1 h -4 l -5,1 -4,1 -5,1 -5,1 -5,1 -4,1 h -4 l -4,-1 -3,-1 -2,-3 -2,-4 -1,-6 1,-7 58,-10 -8,-7 -9,-7 -9,-6 -10,-5 -10,-5 -9,-4 -11,-4 -10,-4 -10,-3 -10,-4 -11,-3 -10,-3 -11,-3 -10,-4 -11,-3 -10,-4 6,-3 6,-2 6,-1 6,-1 h 13 l 6,1 h 7 l 6,1 7,1 6,1 7,1 h 19 l 6,-1 -3,-1 -3,-2 -3,-2 -2,-2 -2,-2 -2,-3 -2,-3 -1,-3 v -8 l 22,-3 -6,-5 -6,-5 -7,-5 -7,-5 -6,-5 -7,-6 -6,-6 -6,-6 33,15 2,-5 1,-5 v -9 l -2,-4 -2,-4 -3,-4 -4,-4 -3,-3 -4,-4 -4,-3 -4,-4 -4,-3 -3,-3 -3,-3 -2,-3 2,-1 h 2 l 2,1 h 3 l 2,-1 2,-1 3,-1 1,-2 -2,-2 -3,-1 h -5 v -10 l -10,-6 -9,-5 -10,-5 -10,-5 -10,-5 -11,-4 -10,-4 -10,-4 -11,-3 -10,-4 -11,-3 -11,-3 -10,-3 -12,-3 -10,-2 -11,-3 9,-5 10,-5 11,-4 10,-4 10,-2 11,-3 11,-3 11,-2 11,-1 11,-2 11,-2 11,-1 12,-1 11,-1 11,-1 11,-2 h 10 l 10,-1 h 67 l 10,1 h 9 l 10,1 9,1 10,1 9,1 9,1 9,1 9,2 9,2 9,1 9,2 9,2 9,3 9,2 8,3 9,3 8,3 9,3 8,3 9,4 8,4 8,4 10,-2 9,-2 10,-1 10,-2 10,-1 10,-1 10,-1 9,-1 10,-2 10,-1 10,-2 9,-2 10,-2 9,-2 9,-4 9,-3 1,4 2,3 3,2 3,2 3,1 h 17 l 4,-1 4,-1 h 5 l 4,-2 h 4 l 4,-1 3,-1 2,-1 3,-1 3,-1 3,-1 2,-2 3,-2 1,-2 1,-3 h 4 l 5,1 4,2 4,2 4,2 4,3 5,2 4,3 4,2 5,1 4,1 h 5 l 4,-1 5,-2 5,-4 5,-5 5,-2 6,-1 6,-1 6,1 6,3 5,3 5,5 2,6 h 4 l 5,-1 h 4 l 4,-1 3,-1 4,-2 4,-1 4,-2 3,-1 4,-2 4,-1 h 4 l 4,-1 h 4 l 5,1 4,1 2,6 2,5 3,3 3,3 4,1 4,1 5,-1 h 5 l 5,-1 5,-1 5,-1 4,-1 5,-1 h 5 l 4,1 4,1 v 3 l -1,2 -1,1 -1,2 -1,2 v 1 l 1,3 4,1 5,1 h 11 l 5,-2 5,-1 5,-2 6,-2 5,-1 5,-1 h 8 l 4,2 4,2 3,4 2,6 -8,8 11,7 11,5 11,3 12,1 h 11 l 12,-1 11,-3 12,-4 12,-4 12,-5 11,-5 12,-4 11,-5 12,-4 11,-4 11,-3 h 9 l 10,-1 h 9 l 10,-1 10,-1 10,-1 10,-1 h 10 l 10,-1 10,-1 10,-1 h 10 l 10,-1 h 20 l 11,-1 h 10 l 10,1 h 10 l 10,1 h 9 l 10,2 10,1 9,1 10,2 9,2 10,3 9,3 9,3 9,3 8,5 9,4 -14,7 -14,7 -14,6 -15,6 -15,5 -15,5 -16,5 -15,5 -15,5 -15,5 -14,6 -14,7 -14,8 -12,8 -13,9 -11,11 5,2 h 5 l 5,-2 5,-4 5,-3 5,-1 6,1 6,4 v 18 l 33,-12 -1,6 -2,4 -2,4 -2,4 -3,4 -4,3 -3,4 -4,4 3,1 h 11 l 3,-1 4,-1 3,-1 4,-1 4,-2 3,-1 4,-1 4,-1 4,-1 h 4 l 5,1 h 4 l 2,10 v 8 l -2,6 -3,5 -5,3 -5,3 -6,2 -7,1 -8,1 -8,1 -7,1 -8,1 -7,1 -7,2 -6,3 -6,3 -3,3 -4,1 -3,2 -4,1 -3,1 -4,1 -4,1 -4,2 -3,1 -4,1 -4,1 -3,2 -4,1 -3,2 -4,3 -3,3 7,1 h 6 l 7,-3 6,-2 6,-3 7,-2 h 7 l 8,1 -4,4 -5,3 -6,3 -6,4 -7,3 -6,3 -7,4 -5,5 7,5 8,3 8,4 9,3 7,5 6,5 4,8 v 10 l -4,1 -5,-1 -3,-2 -4,-3 -4,-2 -3,-2 -4,1 -4,4 4,7 5,6 4,6 6,6 5,6 5,6 6,6 5,5 5,6 6,5 5,5 5,6 5,6 4,6 4,6 4,6 -54,-29 2,4 3,4 2,4 3,3 3,4 3,4 2,4 3,4 3,3 3,4 3,3 3,4 4,3 3,3 4,4 4,3 -12,10 40,54 -4,3 -4,-1 -4,-3 -4,-5 -4,-3 -4,-2 -4,2 -5,6 1,5 3,5 2,4 3,4 4,5 3,4 4,4 4,4 4,5 3,4 3,4 2,4 1,5 1,5 v 5 l -2,5 h -6 l -3,-1 -2,-1 -2,-2 -2,-2 -2,-2 -1,-3 v 10 l 1,4 2,4 2,4 2,4 3,3 3,3 3,4 4,4 3,3 3,4 3,4 3,5 2,4 2,5 v 7 l -8,-1 -6,-4 -5,-6 -4,-7 -4,-8 -4,-8 -5,-8 -7,-6 v 14 l 2,7 2,6 3,6 3,6 3,5 4,6 5,6 4,5 4,6 5,5 4,6 4,5 4,6 4,6 -21,3 2,4 v 1 l 1,-1 -1,-2 -1,-3 -1,-5 -1,-5 -2,-6 -1,-6 -2,-6 v -5 l -1,-3 v -3 l 1,-1 h 2 l 2,3 7,2 8,2 7,3 8,2 9,4 8,4 9,4 9,3 9,5 9,5 10,4 9,5 10,6 9,5 10,5 10,6 9,5 10,6 9,6 10,5 9,6 9,5 9,5 8,6 9,5 8,5 8,5 8,4 7,5 8,3 6,4 6,4 13,14 11,13 11,14 9,14 9,13 8,14 8,14 7,14 6,15 7,14 6,14 5,15 6,15 6,15 5,15 6,15 8,18 8,17 8,18 8,18 7,18 8,18 7,18 8,18 7,18 8,18 7,18 7,18 7,18 7,19 7,18 7,18 7,18 7,18 6,19 7,18 7,18 6,19 6,19 6,18 7,18 6,19 5,19 6,18 6,19 5,19 6,18 5,19 z m 2589,0 5,17 5,17 4,17 5,17 4,17 4,17 5,17 4,17 4,17 4,17 3,17 4,17 4,18 3,17 4,17 3,18 3,17 3,18 3,17 3,18 3,18 2,18 3,17 2,18 2,18 2,18 3,18 2,18 2,18 1,18 2,18 1,18 2,13 2,13 2,13 2,12 2,13 2,13 2,13 3,13 1,13 3,12 2,13 1,13 3,13 1,13 3,12 1,13 2,14 2,12 1,13 2,13 2,13 1,13 1,13 2,13 1,13 1,13 1,13 1,13 v 13 l 1,13 1,14 v 13 l 57,-22 2,1 2,2 1,2 1,2 1,3 1,2 v 3 l -1,2 -5,4 -6,4 -5,3 -6,3 -6,2 -7,3 -6,2 -6,2 -6,2 -6,3 -6,2 -6,3 -5,3 -6,3 -5,4 -5,4 6,1 7,-1 h 6 l 6,-1 6,-2 6,-1 7,-2 6,-2 6,-3 7,-2 6,-2 7,-2 6,-1 7,-2 7,-1 h 7 l -1,6 v 7 l 2,7 v 14 l -2,5 -5,5 -8,2 -5,-1 -5,-1 h -5 l -4,1 -5,1 -4,2 -4,1 -4,2 -3,2 -4,2 -4,2 -4,1 -4,2 -4,1 h -10 l -1,8 -2,7 -3,8 -2,8 -3,7 -3,8 -2,8 -3,8 -2,7 -3,8 -1,7 -1,8 -1,7 v 8 l 1,7 1,7 6,3 8,1 h 23 l 6,2 5,3 3,6 v 11 l -8,-1 -8,-2 -8,-1 -8,-1 -8,-1 -8,-2 -9,-1 h -9 l -8,-2 -9,-1 -8,-1 -9,-1 -9,-1 -9,-1 -8,-1 -9,-2 -9,-1 -8,-2 -9,-1 -8,-3 -9,-1 -8,-2 -8,-3 -8,-2 -8,-3 -8,-4 -8,-3 -8,-3 -7,-4 -7,-4 -7,-5 -7,-4 9,-11 11,-10 11,-9 11,-8 12,-7 13,-6 13,-7 13,-6 13,-5 13,-6 14,-5 13,-6 13,-5 13,-6 13,-7 12,-7 -5,-1 h -6 l -6,1 -5,2 -6,2 -5,2 -6,3 -5,3 -6,3 -5,2 -6,3 -5,2 -6,2 -6,1 h -5 l -6,-1 -5,6 -6,4 -6,1 h -21 l -7,2 -6,5 -7,3 -7,2 -5,1 -6,-1 -5,-1 -5,-2 -5,-2 -4,-3 -5,-4 -4,-3 -4,-4 -5,-3 -5,-4 -5,-3 -5,-3 -6,-2 -6,-4 -7,-3 -7,-4 -7,-3 -8,-2 -7,-3 -8,-2 -7,-2 -8,-2 -8,-1 -8,-2 -7,-1 -8,-1 -8,-1 h -8 l -9,-1 h -40 l -8,1 h -17 l -7,1 -9,1 h -7 l -8,1 -8,1 h -8 l -8,1 -7,1 -14,2 -13,1 -13,1 -13,2 -13,1 -14,2 -13,1 -14,1 -14,1 -13,2 -14,1 -14,1 -13,1 -14,1 -14,1 -14,1 -14,1 -13,1 -14,1 -14,1 -14,1 -14,1 -14,1 -14,1 -14,1 h -14 l -14,2 -14,1 -14,1 -13,1 -14,1 -14,1 -1,6 v 7 l -1,6 v 7 l -1,6 v 7 l -1,6 -1,7 v 6 l -1,6 -1,7 -1,6 -1,6 -1,6 -2,7 -1,6 h 1 l 2,-1 h 5 l 7,-1 8,-1 9,-1 11,-1 12,-2 13,-1 15,-2 15,-1 16,-2 17,-2 17,-2 18,-2 18,-2 18,-2 18,-1 19,-2 18,-2 18,-1 18,-2 17,-1 17,-1 16,-1 15,-1 14,-1 h 14 l 12,-1 h 20 l 8,1 5,-1 h 29 l 6,1 h 6 l 6,1 6,1 6,1 6,2 6,1 5,2 5,3 4,2 -13,15 10,-1 h 9 l 9,2 7,3 7,4 6,4 6,5 5,6 4,7 5,7 3,7 4,8 4,8 4,8 3,7 4,8 2,8 2,10 3,9 2,9 3,9 2,9 3,9 3,9 2,9 3,9 4,9 3,9 3,9 4,8 3,9 4,9 3,9 4,8 4,8 4,9 5,8 4,8 5,8 5,8 5,7 5,8 6,7 5,8 6,7 6,7 6,7 6,6 3,8 2,7 3,8 4,7 3,8 3,7 4,8 3,7 3,8 4,7 3,8 3,7 3,8 2,7 2,8 2,8 h -8 l -7,-1 -6,-3 -5,-4 -5,-5 -4,-6 -4,-6 -3,-7 -4,-8 -3,-7 -2,-8 -4,-7 -3,-8 -3,-7 -4,-6 -4,-6 -8,-11 -8,-9 -9,-8 -9,-7 -10,-7 -10,-5 -11,-5 -11,-5 -10,-5 -11,-3 -11,-5 -11,-4 -11,-4 -11,-5 -11,-5 -10,-5 -10,-1 h -10 l -9,-1 h -10 l -10,-1 -9,-1 -10,-1 -10,-1 -9,-2 -10,-1 -9,-2 -10,-1 -8,-3 -10,-2 -9,-2 -9,-3 -8,-3 -9,-3 -9,-3 -8,-4 -9,-4 -8,-4 -8,-5 -8,-5 -7,-5 -8,-5 -7,-7 -8,-6 -6,-7 -7,-7 -7,-7 -6,-8 -9,-5 -8,-4 -9,-4 -8,-4 -9,-4 -9,-3 -9,-4 -9,-4 -8,-4 -8,-5 -8,-5 -7,-5 -6,-7 -7,-7 -5,-8 -4,-10 -2,1 -1,1 v 3 l -1,2 1,1 v 3 l -15,-26 -13,2 -13,2 -13,3 -13,2 -14,3 -13,3 -13,3 -13,3 -12,3 -13,3 -13,3 -12,3 -12,3 -13,3 -11,3 -12,3 -7,-1 -6,1 -6,2 -6,4 -6,4 -5,5 -6,5 -5,6 -6,6 -5,5 -6,6 -5,5 -6,4 -7,4 -6,3 -7,1 -3,-6 1,-6 3,-7 3,-6 2,-6 v -5 l -4,-5 -10,-2 -10,2 -10,3 -9,5 -8,6 -9,7 -8,7 -8,7 -8,8 -8,7 -9,6 -8,5 -10,3 -10,2 h -11 l -12,-2 -13,-5 -7,13 -8,9 -9,7 -9,4 -10,2 -10,2 h -42 l -10,1 -9,3 -9,4 -8,7 -7,10 -6,13 -7,4 -7,4 -6,6 -7,6 -7,6 -6,7 -7,7 -6,8 -7,7 -6,8 -6,7 -6,7 -7,7 -6,5 -6,6 -6,4 -18,-58 -24,52 -3,-7 -3,-8 -3,-7 -4,-7 -4,-6 -3,-7 -4,-6 -4,-6 -4,-6 -4,-6 -4,-6 -4,-6 -5,-5 -4,-5 -5,-6 -5,-5 -6,-3 -6,-4 -4,-5 -4,-5 -3,-6 -3,-6 -3,-6 -2,-6 -3,-6 -3,-5 -3,-4 -4,-3 -5,-2 -6,-1 -8,1 -8,3 -6,-6 -7,-7 -6,-6 -6,-6 -7,-7 -7,-5 -6,-6 -8,-6 -7,-5 -7,-4 -8,-4 -8,-3 -8,-3 -9,-2 -9,-2 h -10 l -51,-49 -3,2 -3,3 -3,2 -4,2 -3,3 -4,2 -3,2 -4,2 -4,2 -4,2 -4,1 -4,2 -4,1 -5,1 -5,1 h -4 l 1,-6 2,-5 2,-6 2,-5 3,-5 2,-5 2,-5 1,-6 -7,-2 -7,-1 -7,-1 -8,-1 h -7 l -7,2 -6,4 -5,6 5,5 4,5 3,7 3,6 2,7 3,6 2,5 4,5 -4,-1 -3,-1 -4,-2 -4,-1 -5,-1 -4,-1 -5,-1 -5,-1 -5,-1 h -4 l -5,-1 h -5 l -4,-1 -5,-1 -3,-1 -4,-1 -2,-8 -4,-6 -7,-4 -7,-4 -8,-3 -8,-4 -6,-5 -5,-7 -3,5 -1,5 -1,4 v 5 l 1,4 1,4 2,4 2,4 3,5 2,4 3,4 2,4 2,5 1,4 1,5 v 5 l -5,-1 -5,-3 -4,-2 -5,-3 -4,-2 h -5 l -4,2 -4,5 -51,76 -6,2 -6,2 -7,3 -7,2 -7,4 -8,3 -6,4 -7,4 -8,-5 -9,-4 -8,-3 -10,-3 -9,-2 -10,-2 -9,-1 h -20 l -10,1 -10,2 -9,2 -9,3 -9,4 -8,4 -8,4 -3,2 -1,1 -1,2 v 10 l -5,-4 -6,-2 -5,-1 -6,1 -6,1 -7,2 -6,3 -7,3 -6,3 -7,4 -7,3 -7,2 -7,2 -7,1 -7,-1 -7,-2 h -10 l -2,1 -2,2 -2,2 -2,3 v 3 l -7,-6 -6,-6 -7,-4 -7,-5 -7,-3 -7,-4 -7,-4 -6,-4 -5,1 -5,1 -5,1 -5,2 -5,1 -5,2 -5,2 -5,2 -4,2 -5,2 -5,3 -4,2 -5,3 -5,2 -4,3 -5,2 2,5 1,5 2,5 1,5 1,5 1,5 1,5 -1,6 -11,-4 -10,-5 -9,-6 -8,-6 -7,-7 -7,-8 -6,-8 -6,-9 -6,-8 -5,-9 -7,-8 -6,-8 -6,-8 -8,-7 -7,-6 -9,-6 -2,2 -1,2 -2,2 v 2 h -6 l 4,-12 5,-11 5,-11 6,-11 7,-10 7,-10 7,-10 8,-10 8,-10 9,-9 8,-9 9,-8 9,-9 9,-8 9,-8 8,-8 -1,-5 v -4 l 2,-3 3,-3 4,-2 4,-3 5,-2 4,-2 5,-2 4,-2 3,-2 2,-4 1,-3 -1,-4 -2,-5 -4,-5 18,-11 h 11 l 11,-1 11,-1 h 10 l 11,-1 h 23 l 11,-1 h 34 l 11,1 h 34 l 11,1 h 12 l 11,1 h 12 l 11,1 h 11 l 11,1 h 12 l 11,1 12,1 h 11 l 11,1 12,1 h 11 l 11,1 11,1 h 11 v -128 h -33 l -11,-1 h -11 l -12,-2 -11,-1 -12,-1 -11,-1 -12,-1 -11,-1 -12,-2 -12,-1 -12,-2 -11,-1 -12,-1 -12,-1 -12,-1 -12,-1 h -11 l -12,-1 h -35 l -12,1 h -12 l -11,2 -12,1 -12,2 -11,3 -11,2 -12,3 -8,-4 -9,-4 -9,-3 -10,-2 -10,-1 h -91 l -11,-2 -11,-2 -10,-3 -4,-3 -4,-2 -4,-3 -5,-2 -5,-2 -4,-2 -5,-1 -5,-2 -4,-2 -5,-2 -4,-2 -5,-2 -4,-3 -4,-4 -3,-4 -4,-4 -25,-21 v -10 l -1,-8 -3,-6 -4,-4 -5,-3 -6,-2 -7,-1 -6,-1 -6,-1 -5,-1 -5,-2 -4,-3 -2,-5 -1,-6 2,-8 3,-11 7,2 7,3 6,4 6,4 6,5 6,5 7,5 6,5 v -30 l 1,-30 v -29 l 1,-30 1,-29 1,-29 1,-29 2,-29 2,-29 2,-29 2,-28 3,-28 2,-29 3,-28 3,-28 3,-28 4,-28 3,-27 4,-28 4,-28 5,-28 4,-27 5,-28 5,-27 5,-27 5,-27 6,-28 6,-27 6,-27 6,-28 6,-27 7,-27 z" + class="pen1 brush1" + id="path2724" /><path + d="m 1353,120 -1,-2 -3,-1 -2,-1 h -3 l -3,-1 h -9 l 6,8 6,9 7,9 7,9 8,9 7,9 8,10 8,9 8,9 8,9 8,9 8,10 7,9 7,9 6,8 6,9 -13,-12 -12,-12 -13,-11 -13,-12 -13,-11 -14,-10 -13,-11 -13,-10 -13,-10 -14,-9 -14,-9 -15,-9 -14,-8 -15,-8 -15,-8 -16,-7 v 5 l 2,5 1,5 3,4 3,3 4,3 4,3 5,2 5,3 5,2 5,3 5,2 4,3 5,3 4,4 4,4 -4,1 -5,1 h -4 l -5,-1 -5,-1 -4,-2 -5,-2 -5,-2 -4,-1 -5,-1 h -7 l -3,3 -3,3 -1,5 -1,7 12,2 12,3 12,3 11,4 11,4 12,5 11,5 10,6 11,6 10,7 10,7 10,8 9,8 10,8 8,8 9,9 -10,-4 -10,-5 -10,-6 -10,-6 -11,-6 -10,-6 -10,-7 -10,-6 -10,-5 -10,-5 -10,-4 -10,-2 -10,-1 h -10 l -10,2 -10,4 v 6 l 3,4 4,1 h 16 l 5,1 4,3 -4,2 -4,2 -2,2 -3,3 -2,2 -3,3 -3,3 -3,4 3,2 3,1 4,2 4,1 3,1 h 4 l 4,1 4,1 h 12 l 4,1 h 15 l 5,4 5,2 6,3 6,2 5,3 6,2 6,3 6,2 5,2 6,3 5,2 5,3 6,4 5,3 4,4 5,5 -2,-2 -3,-1 -4,-1 -4,-1 -5,-1 -6,-1 -6,-2 -6,-1 -7,-1 -6,-2 -7,-1 -7,-2 -6,-2 -6,-2 -6,-2 -5,-2 -19,4 -17,2 -16,-2 -14,-4 -13,-6 -12,-8 -11,-10 -11,-11 -10,-12 -10,-12 -9,-13 -10,-12 -11,-13 -11,-11 -12,-10 -12,-8 -6,-5 -5,-4 -6,-5 -6,-4 -6,-4 -6,-5 -6,-3 -6,-5 -6,-4 -7,-4 -6,-5 -6,-4 -6,-5 -5,-5 -5,-5 -5,-5 -6,-1 -6,-1 -7,-2 -6,-1 -6,-2 -6,-1 -5,-2 -6,-2 -6,-2 -6,-2 -6,-2 -5,-2 -6,-3 -5,-2 -6,-2 -5,-3 11,-4 12,-3 11,-3 12,-3 12,-2 12,-2 12,-1 12,-1 12,-1 12,-1 h 25 l 12,1 12,1 12,1 13,1 12,1 12,2 12,2 12,3 12,2 11,3 12,3 11,3 12,3 11,3 11,4 11,3 11,4 10,3 11,4 10,4 z" + class="pen1 brush0" + id="path2726" /><path + d="m 1232,73 -36,3 4,1 4,2 3,1 3,2 4,1 3,2 4,1 4,1 v 4 l -69,-4 V 76 h 33 l 5,-1 5,-2 -10,-3 -11,-4 -10,-2 -10,-3 -11,-2 -10,-2 -11,-1 -10,-2 -11,-1 -10,-1 -11,-1 -10,-1 h -11 l -11,-1 -11,-1 h -11 v -5 l 14,-1 h 40 l 13,1 13,2 13,1 12,2 13,2 12,3 12,3 12,3 12,3 12,4 12,3 z" + class="pen1 brush1" + id="path2728" /><path + d="m 1601,51 -3,4 -3,5 -4,3 -5,3 -5,2 -5,2 -6,2 -5,1 -6,2 -6,1 -6,1 -5,1 -7,1 -5,1 -6,2 -5,1 -18,-7 4,-7 5,-6 5,-3 5,-3 6,-2 6,-1 6,-1 h 7 l 7,1 h 7 l 6,1 h 7 l 7,-1 7,-1 6,-2 7,-3 z m -107,4 -6,3 -5,3 -6,3 -6,3 -6,3 -6,3 -7,4 -6,2 -7,3 -6,1 -7,1 h -6 l -7,-1 -6,-2 -7,-3 -7,-5 -7,-15 7,-2 6,-2 7,-1 7,-1 6,-1 h 7 l 6,-1 h 6 l 6,1 h 14 l 6,1 8,1 h 7 l 7,2 z m 190,18 -4,4 -5,4 -6,4 -5,3 -7,2 -6,2 -7,1 -6,1 -37,-11 3,-6 5,-7 5,-6 6,-6 6,-4 7,-2 h 8 l 7,3 1,6 3,3 5,3 5,1 6,1 6,1 5,1 z m 482,-12 44,5 -12,6 -13,6 -12,6 -13,6 -12,6 -12,6 -12,6 -12,7 -12,6 -11,8 -10,8 -10,9 -8,10 -8,11 -7,11 -6,13 -17,-4 -8,9 -8,9 -9,9 -8,8 -9,8 -9,7 -9,7 -10,8 -10,6 -10,6 -10,6 -10,6 -10,6 -11,5 -10,5 -11,4 -12,4 -11,5 -11,4 -11,3 -11,3 -12,4 -12,3 -11,2 -12,3 -12,2 -12,2 -12,2 -12,1 -12,2 -12,1 -12,1 12,-11 14,-11 13,-10 13,-9 14,-9 15,-8 14,-8 15,-7 14,-7 15,-7 15,-7 16,-6 15,-6 15,-7 15,-6 15,-7 h -2 l -3,-1 -3,-1 -4,-1 h -8 l -4,-1 h -4 l -4,1 h -4 l -4,1 -4,1 -4,1 -3,1 -4,2 -3,2 -15,5 -14,6 -15,6 -15,6 -15,7 -14,7 -15,7 -14,8 -14,8 -14,9 -13,9 -13,9 -13,10 -13,10 -12,11 -12,11 6,-8 6,-8 6,-7 7,-7 6,-7 7,-7 7,-7 7,-7 7,-6 7,-7 7,-6 8,-6 7,-6 8,-7 8,-5 8,-6 8,-6 7,-5 9,-6 7,-5 9,-6 8,-5 8,-5 9,-5 8,-5 8,-5 9,-5 8,-6 8,-4 9,-5 8,-5 9,-5 v -4 l -1,-1 v -3 l -1,-1 -1,-1 -2,-1 -8,3 -8,3 -8,3 -8,3 -8,4 -8,4 -8,4 -7,4 -8,5 -7,4 -8,5 -7,4 -8,5 -6,5 -7,4 -7,4 49,-36 -13,-15 7,-3 8,-4 8,-3 7,-4 8,-3 7,-4 8,-4 8,-3 8,-4 7,-4 8,-4 8,-4 7,-4 8,-4 7,-5 7,-4 25,-3 h -6 l -4,2 -4,3 -3,4 -3,4 -3,5 -3,4 -5,4 14,17 6,-5 6,-5 7,-5 7,-5 8,-4 8,-3 9,-4 9,-3 9,-3 8,-4 9,-3 9,-3 9,-3 9,-4 9,-3 8,-4 1,1 -1,2 -3,2 -2,3 -3,3 -3,3 -1,3 v 4 l 4,-1 4,-1 5,-1 5,-1 5,-1 5,-1 5,-2 5,-1 5,-2 4,-1 5,-2 5,-3 4,-2 4,-3 4,-3 3,-4 -3,-2 1,-1 2,-1 3,-1 3,-1 4,-1 4,-1 4,-1 5,-2 5,-1 h 5 l 5,-1 h 20 z m -752,41 -5,3 -5,1 -6,1 h -5 l -6,-1 -5,-3 -6,-2 -6,-3 -6,-3 -5,-4 -6,-4 -6,-4 -6,-4 -5,-4 -6,-3 -5,-4 h -10 l 7,-4 8,-3 6,-1 h 7 l 7,1 6,2 6,2 6,4 5,4 6,4 6,5 6,4 6,5 5,4 6,3 z m 331,-19 3,-3 5,-3 4,-1 h 10 l 5,1 5,1 4,1 2,6 -2,5 -3,3 -5,4 -5,4 -5,3 -4,4 -3,4 h -7 l -7,-1 -6,-4 -6,-5 -5,-5 -5,-7 -4,-7 -4,-7 h -2 V 66 h 2 l 2,6 3,4 5,1 h 16 l 4,2 z m -218,32 -6,4 -5,4 -6,3 -5,1 -5,2 -6,1 h -5 l -6,-1 -5,-1 -6,-1 -5,-1 -5,-3 -6,-1 -5,-2 -6,-3 -5,-2 -5,-8 v -5 l 4,-2 5,-2 h 8 l 7,-1 5,-2 4,-4 4,2 3,2 4,1 4,1 5,1 h 8 l 4,1 4,1 h 4 l 4,1 3,2 4,2 3,2 2,4 z m 103,0 v 5 l 1,2 v 1 l 1,2 1,1 2,1 -4,1 -5,2 -3,1 -5,1 -4,1 -4,1 -5,2 h -4 l -5,1 h -17 l -5,-1 -4,-2 -4,-1 -21,-28 6,-3 7,-2 6,-3 7,-1 7,-1 7,-1 7,1 7,2 4,3 3,3 4,3 3,3 4,2 3,2 5,2 z m 133,18 -5,3 -5,2 -5,2 -5,2 -6,2 -5,1 -6,1 -6,1 h -6 l -5,1 h -12 l -6,-1 h -6 l -6,-1 -5,-1 -11,-30 26,-13 3,3 5,3 4,4 4,3 5,3 4,3 5,3 5,2 5,2 5,3 4,1 5,1 5,1 h 10 z m -744,0 -18,-13 11,2 z m 418,4 -23,-7 5,3 2,-1 1,-2 v -4 l 1,-3 1,-1 h 5 l 1,3 1,2 v 2 l 1,2 v 1 l 1,2 2,2 z m -295,90 -108,-86 8,4 7,5 8,5 7,5 8,4 7,5 8,6 7,5 8,5 7,6 6,5 7,6 6,6 5,6 5,7 z m 421,-61 -1,4 -2,4 -3,4 -4,3 -5,2 -5,2 -5,1 -5,1 h -6 l -7,1 -6,-1 -5,-1 -5,-1 -5,-3 -5,-4 -3,-5 2,-6 4,-5 6,-4 7,-2 8,-2 8,-1 7,-2 7,-3 z m 111,11 -4,2 -4,3 -4,2 -5,2 -4,1 -4,1 -5,1 -5,1 -5,1 h -14 l -5,-1 -4,-1 -5,-1 -5,-1 -3,-3 -2,-3 -2,-3 -1,-4 -2,-3 v -13 h 7 l 6,-1 5,-3 6,-2 5,-3 6,-2 h 7 l 7,1 z m -152,154 -5,-10 -6,-10 -6,-11 -6,-11 -7,-11 -6,-11 -7,-11 -7,-12 -8,-11 -8,-11 -8,-11 -8,-11 -9,-11 -9,-11 -9,-10 -9,-10 10,10 10,9 9,10 9,10 8,10 8,10 7,11 8,11 6,11 7,11 7,12 6,11 6,12 6,11 6,12 z m 148,-90 -3,-2 87,-68 2,2 -46,36 z m -50,-32 -2,5 -3,5 -2,3 -4,3 -4,2 -4,1 -5,1 -5,1 h -5 l -5,1 h -11 l -5,1 h -5 l -5,1 -4,2 h -11 l -5,-2 -5,-2 -4,-3 -3,-4 -3,-3 -1,-4 1,-3 -1,-2 -2,-1 -2,-2 h 7 l 7,-1 6,-2 7,-2 7,-1 7,-2 6,-1 7,-1 6,-1 7,-1 6,1 h 7 l 6,2 6,2 7,3 z m -496,26 -6,-3 -5,-3 -3,-3 -3,-4 -3,-4 -3,-3 -4,-3 -6,-3 z m -696,1214 -3,6 -4,5 -3,6 -4,6 -4,6 -3,6 -4,6 -4,7 -3,6 -4,6 -4,7 -3,6 -3,6 -4,7 -3,6 -3,6 v 4 l -1,3 -1,4 -2,4 -2,4 -2,4 -2,4 -2,4 -3,4 -1,4 -1,3 -1,4 v 3 l 1,4 1,3 3,3 -12,12 -4,17 -3,17 -4,16 -4,16 -3,17 -4,17 -4,16 -4,17 -3,16 -4,17 -4,16 -4,17 -3,17 -4,16 -4,17 -3,17 -4,16 -3,17 -4,16 -3,17 -4,17 -3,16 -3,17 -3,17 -4,17 -2,17 -3,17 -3,17 -3,17 -2,17 -3,17 -2,17 h 7 l -2,112 21,-120 2,1 2,1 2,2 1,1 -1,14 -1,15 -1,14 v 14 l -1,14 -1,14 v 14 l -1,14 v 13 l -1,14 v 41 l -1,13 v 41 l -1,13 v 14 l -1,14 v 14 l -1,13 v 14 l -1,14 -1,13 v 15 l -2,14 -1,14 -1,14 -1,15 -2,14 -1,15 h 10 l 1,-12 1,-12 1,-12 1,-12 v -24 l 1,-12 v -13 l 1,-11 1,-12 1,-12 2,-12 1,-12 2,-12 3,-11 3,-11 10,10 -8,169 11,8 4,-144 3,-2 2,-3 3,-2 h 3 l 3,9 2,9 1,9 1,10 v 20 l -1,10 -1,9 -1,10 v 10 l -1,9 v 9 l 1,9 1,9 2,8 4,8 2,-6 2,-6 1,-8 1,-8 v -8 l -1,-9 -1,-9 v -9 l -1,-9 v -19 l 1,-8 2,-9 3,-8 3,-8 5,-7 1,8 v 31 l -1,9 v 25 l 1,8 v 17 l 1,8 1,9 1,8 1,8 h 10 v -67 l 1,-6 1,-5 2,-6 2,-5 2,-6 2,6 2,6 1,6 1,6 1,7 v 52 l 1,6 1,6 1,6 h 8 v -22 l -1,-5 v -21 l 1,-5 1,-4 1,-4 2,-3 2,-4 2,6 1,4 1,5 v 25 l 3,5 1,6 -1,7 v 14 l 2,5 5,3 h 8 l 8,-72 3,3 3,4 2,4 1,5 1,4 v 4 l 1,4 v 4 l -1,5 v 9 l -1,4 v 13 l 1,4 2,1 h 3 l 2,-1 h 2 l 2,-1 3,-1 h 2 l 2,-1 -4,-87 h 12 l 10,83 h 14 v -4 l -1,-4 v -5 l -1,-4 -1,-5 -1,-5 -1,-4 -1,-5 -1,-4 -1,-4 v -8 l 1,-4 2,-3 2,-3 3,-2 15,64 8,3 5,-1 2,-3 2,-4 1,-5 1,-6 2,-5 4,-3 7,6 v 7 l 2,6 3,3 4,2 h 23 v -6 l 1,-2 1,-1 2,-1 h 3 l 1,-1 h 3 l 2,3 2,2 v 6 l 5,2 5,1 5,1 h 4 l 4,-2 4,-3 3,-4 2,-6 1,4 2,3 1,4 2,4 1,3 3,3 3,2 h 4 l 5,3 h 5 l 3,-1 3,-2 2,-3 3,-4 2,-3 3,-2 2,2 1,1 2,2 2,2 1,2 v 4 l -1,2 h 8 l 1,-15 v -28 l -2,-14 -2,-15 -4,-14 -3,-13 -4,-14 -4,-14 -4,-14 -4,-14 -4,-14 -4,-14 -3,-14 -2,-15 -2,-14 7,-5 4,-4 3,-2 h 2 l 2,1 v 24 l 1,4 1,5 3,3 3,3 4,2 11,-21 -7,-7 -7,-7 -8,-7 -7,-7 -7,-7 -7,-8 -7,-7 -7,-7 -7,-8 -6,-7 -6,-8 -6,-8 -5,-8 -5,-9 -5,-9 -3,-9 -1,-4 -1,-4 -2,-5 -1,-5 -2,-4 -2,-5 -2,-5 -2,-5 -1,-4 -1,-5 v -14 l 2,-5 2,-5 3,-4 6,11 6,11 6,11 6,12 6,11 6,12 7,11 7,12 7,11 7,10 8,11 8,10 9,10 9,9 10,8 11,9 20,3 9,7 9,6 10,6 9,6 10,5 10,5 11,4 10,5 11,4 11,3 11,4 11,3 11,3 11,3 11,2 12,3 10,-2 10,-2 10,-2 10,-1 10,-2 9,-2 10,-1 9,-2 9,-1 9,-1 9,-1 8,-1 9,-1 8,-1 h 17 l 8,1 8,1 8,1 8,1 8,2 8,2 7,3 8,3 8,4 7,4 8,5 7,5 8,6 8,6 7,7 8,8 22,37 -24,-41 36,39 4,6 4,5 2,5 2,6 2,5 1,5 2,5 1,6 1,5 1,5 2,5 2,5 3,5 3,5 4,5 5,5 10,9 11,6 11,4 11,3 h 11 l 11,-1 11,-2 11,-2 11,-4 12,-4 11,-5 11,-4 11,-3 11,-4 11,-2 12,-2 10,-17 4,4 5,5 5,3 6,3 5,3 6,3 5,2 6,3 6,2 6,3 6,2 6,3 5,3 6,3 5,4 5,4 9,1 8,1 9,-1 8,-1 7,-2 8,-2 7,-3 8,-3 7,-4 6,-4 7,-5 7,-4 6,-5 7,-5 6,-5 7,-6 6,-5 6,-5 7,-6 6,-5 7,-5 7,-5 6,-4 7,-5 8,-3 7,-4 8,-3 7,-2 8,-3 9,-1 8,-1 h 9 l 14,2 13,1 14,2 14,1 14,1 15,2 14,1 15,1 15,1 15,1 h 15 l 15,1 h 15 l 15,-1 15,-1 15,-1 15,-1 14,-3 15,-2 14,-3 14,-4 13,-4 14,-5 13,-5 12,-7 12,-7 12,-7 11,-9 11,-10 10,-10 10,-11 9,-12 11,-6 12,-5 11,-6 12,-5 11,-5 12,-5 11,-6 12,-5 11,-5 12,-6 11,-5 12,-6 11,-6 11,-6 11,-6 12,-7 5,4 2,4 -1,4 -2,4 -3,4 -3,4 -2,4 v 5 l -15,7 -15,7 -14,7 -15,8 -15,7 -14,8 -14,8 -14,8 -14,9 -14,9 -13,9 -14,9 -13,10 -13,11 -13,10 -13,12 14,18 54,-39 22,8 12,-10 11,-10 12,-10 12,-10 11,-9 13,-10 11,-9 12,-9 12,-10 12,-9 12,-9 12,-8 12,-9 12,-9 12,-9 12,-9 3,6 1,5 v 6 l -1,5 -1,5 -3,6 -2,5 -4,6 7,2 5,2 5,1 h 4 l 4,2 4,1 5,3 6,4 2,13 3,13 2,14 3,13 3,14 4,13 3,13 4,13 4,13 5,13 4,13 5,12 5,12 6,12 6,12 6,12 -2,-9 -3,-10 -3,-9 -3,-10 -3,-10 -3,-10 -3,-10 -3,-10 -3,-11 -3,-10 -2,-10 -2,-11 -2,-10 -1,-11 -1,-10 1,-11 8,8 7,10 6,10 3,11 4,12 2,11 2,12 2,12 1,12 2,11 3,11 4,11 4,9 6,8 8,8 10,6 -2,-12 -2,-11 -1,-12 -1,-11 -2,-12 -1,-12 -1,-11 -2,-12 -1,-11 -1,-12 -2,-11 -1,-12 -2,-11 -2,-12 -2,-11 -3,-11 8,-8 5,11 4,11 4,12 3,12 4,11 2,12 2,12 2,12 2,12 2,13 1,12 2,12 1,13 1,12 2,12 2,13 h 15 l -1,-7 -2,-8 -1,-7 -1,-7 -1,-7 -2,-8 -1,-7 -1,-7 -1,-7 -1,-8 -1,-7 v -21 l 1,-7 1,-7 4,3 4,3 2,5 2,5 2,5 1,5 1,6 v 6 l 1,6 v 12 l 1,6 1,5 1,6 2,4 2,5 3,4 1,6 v 18 l 2,3 5,3 7,-1 -1,-9 -1,-9 -1,-8 -2,-9 -1,-9 -2,-9 -1,-9 -1,-9 -2,-8 -1,-9 -1,-9 v -8 l -1,-9 v -8 l 1,-8 v -8 h 14 l 22,138 h 5 l 3,-1 h 5 l 2,1 2,1 2,2 -1,-10 v -10 l -1,-9 -2,-10 -2,-10 -1,-9 -2,-10 -2,-10 -2,-9 -2,-9 -1,-10 -1,-9 v -28 l 2,-9 5,9 5,9 3,9 3,9 2,10 1,10 1,11 1,11 v 10 l 1,11 1,11 1,10 2,10 2,10 3,10 4,9 h 15 l -2,-13 -2,-13 -2,-13 -2,-12 -2,-14 -2,-13 -2,-12 -2,-14 -2,-12 -2,-13 -2,-13 -3,-13 -2,-12 -3,-13 -2,-12 -3,-13 7,-10 6,10 4,11 4,12 4,12 3,11 2,13 2,12 2,12 2,12 2,13 2,12 2,12 2,13 3,11 3,12 4,12 -1,7 v 6 l 1,6 3,5 3,4 4,4 3,2 4,2 -1,-8 -1,-8 -2,-8 -1,-8 -1,-8 -1,-8 -2,-8 -1,-8 -2,-8 -1,-8 -2,-9 -1,-7 -1,-9 -2,-7 -1,-9 -1,-8 -2,-8 -1,-8 -2,-8 -1,-8 -1,-7 -1,-8 -2,-9 -1,-7 -1,-8 -1,-8 -1,-8 -1,-8 -1,-8 -1,-7 -1,-8 -1,-8 h 3 l 2,1 1,1 2,1 -1,-10 -2,-10 -1,-10 -1,-10 -2,-10 -1,-11 -2,-10 -1,-10 -2,-10 -1,-10 v -10 l -1,-10 v -31 l 1,-10 14,15 v 10 l 1,9 1,9 v 9 l 1,10 1,9 1,10 v 9 l 1,10 1,9 v 9 l 1,10 1,10 1,9 1,10 1,9 1,10 1,10 1,9 1,10 1,9 2,10 1,9 1,10 2,9 1,10 2,9 1,9 2,9 2,9 2,10 2,9 -31,-302 6,-7 3,13 2,13 3,14 3,13 2,14 2,13 2,14 3,13 2,14 2,13 2,14 2,14 2,13 2,14 1,14 2,13 2,14 2,14 1,14 2,13 1,14 2,14 1,13 2,14 1,14 2,14 1,13 1,14 2,13 1,13 1,14 1,13 h 3 v -12 l -1,-13 v -13 l -1,-13 -1,-12 -1,-13 -1,-12 -1,-13 -2,-12 -1,-13 -2,-12 -2,-12 -3,-12 -3,-12 -2,-12 -4,-12 -1,-29 -2,-29 -2,-30 -2,-29 -2,-29 -3,-29 -3,-29 -3,-29 -4,-29 -4,-29 -4,-28 -4,-29 -4,-28 -5,-29 -5,-28 -5,-28 -5,-28 -5,-28 -6,-28 -5,-28 -6,-28 -6,-27 -6,-28 -6,-27 -6,-28 -6,-27 -6,-27 -6,-28 -6,-27 -7,-27 -6,-27 -6,-27 1,11 2,11 1,11 2,10 1,11 2,10 2,10 2,10 2,11 1,11 2,11 2,13 2,13 2,13 2,15 3,16 -3,-9 -2,-9 -3,-9 -2,-9 -3,-9 -2,-10 -2,-9 -2,-9 -2,-9 -2,-10 -2,-9 -2,-9 -2,-10 -2,-9 -2,-9 -2,-9 -2,-10 -2,-9 -2,-10 -2,-9 -2,-9 -2,-9 -2,-10 -3,-9 -2,-9 -2,-10 -2,-8 -2,-10 -3,-9 -2,-9 -3,-9 -2,-9 h -3 v 7 l 1,9 1,8 1,9 2,9 1,9 3,10 1,9 3,10 1,10 2,9 2,10 v 10 l 1,9 v 19 h -3 l -3,-9 -3,-9 -2,-10 -3,-9 -2,-9 -3,-9 -2,-10 -3,-9 -3,-9 -2,-9 -3,-9 -2,-10 -3,-9 -2,-9 -3,-9 -3,-9 h -18 v 3 l 1,2 v 9 l -1,-2 -2,-1 -1,-2 -1,-2 v -1 l -2,-3 v -1 l -1,-2 h -14 l -2,88 -7,-85 h -2 l -1,-1 v -1 l -1,-1 h -2 l -3,34 -1,-4 -1,-4 -1,-4 -1,-5 -1,-4 -2,-4 -1,-5 -1,-4 h -30 v 6 l 1,5 1,6 1,6 v 5 l 1,6 v 6 l 1,6 v 6 l 1,6 v 12 l 1,6 v 12 l 1,6 -19,-62 -1,-4 -1,-4 -1,-5 -1,-3 -1,-4 -1,-4 -1,-4 -1,-4 H 532 l -2,4 -2,4 -2,4 -2,4 -2,4 -3,4 -2,4 -2,4 -2,4 -2,4 -2,4 -2,4 -3,4 -2,4 -2,5 -2,3 -7,-7 v -4 l 1,-4 1,-3 1,-4 1,-4 1,-3 1,-4 1,-4 1,-3 1,-3 1,-4 2,-4 1,-3 1,-3 2,-4 1,-3 h -15 l -52,75 h -3 l -2,1 -1,-1 h -2 l -1,-1 -1,-1 v -1 l 2,-5 2,-4 2,-5 2,-5 2,-4 3,-5 2,-4 2,-5 2,-4 3,-5 2,-4 2,-5 2,-4 3,-4 2,-5 3,-4 h -12 l -2,5 -2,5 -2,5 -2,5 -2,6 -2,5 -2,5 -3,4 -2,5 -3,4 -4,4 -3,4 -4,4 -4,2 -5,3 -5,2 v -9 l 1,-5 1,-4 1,-4 1,-4 2,-5 2,-4 2,-4 2,-4 3,-4 2,-4 2,-5 3,-4 2,-4 3,-4 z m 2131,0 10,36 9,37 9,36 10,37 9,37 9,36 9,37 8,37 8,37 8,37 8,37 8,37 7,38 8,37 6,38 7,37 6,38 7,38 6,38 5,38 6,38 5,38 4,38 5,39 4,38 4,39 3,39 3,38 3,39 2,40 2,39 2,39 11,-3 10,-4 11,-3 10,-3 11,-4 10,-3 11,-3 10,-4 11,-3 10,-4 10,-4 10,-4 11,-4 9,-5 10,-5 10,-5 2,-13 2,-13 1,-13 v -12 l 1,-13 v -25 l -1,-12 -1,-13 -1,-12 -2,-12 -1,-13 -2,-12 -2,-12 -2,-12 -2,-13 -3,-12 -2,-12 -3,-12 -2,-12 -3,-12 -2,-13 -3,-12 -2,-12 -3,-12 -2,-12 -2,-13 -2,-12 -2,-12 -2,-13 -1,-12 -2,-13 -2,5 -3,-69 -3,-15 -3,-16 -3,-15 -3,-16 -3,-15 -3,-16 -2,-15 -3,-16 -2,-15 -3,-16 -2,-15 -2,-16 -3,-16 -2,-15 -3,-16 -2,-15 -3,-16 -3,-15 -3,-16 -2,-15 -3,-15 -3,-16 -3,-15 -4,-15 -3,-15 -4,-15 -4,-15 -4,-15 -4,-15 -4,-14 -5,-15 -5,-15 -3,-12 -4,-13 -3,-12 -4,-13 -3,-12 -4,-13 -3,-12 -4,-12 -3,-13 -4,-12 -4,-12 -4,-12 -4,-12 -4,-12 -4,-12 -4,-12 z m -2124,0 2,-4 2,-4 2,-4 2,-4 1,-4 2,-4 2,-4 1,-5 -2,4 -3,4 -2,3 -3,4 -2,5 -3,4 -3,4 -3,5 z m 32,0 4,-9 5,-9 5,-9 5,-8 5,-9 5,-8 6,-9 5,-8 5,-9 6,-8 5,-8 6,-9 5,-8 6,-8 6,-9 6,-8 -90,122 -1,1 -1,2 -1,2 -1,1 -1,2 v 2 l -1,2 -1,2 z" + class="pen1 brush0" + id="path2730" /><path + d="m 508,1449 2,-5 3,-5 2,-6 2,-5 3,-5 2,-5 3,-5 3,-6 2,-5 3,-5 2,-5 3,-5 3,-5 3,-5 2,-5 3,-5 -56,82 z m 1861,0 -2,-8 -2,-8 -1,-8 -2,-8 -1,-7 -2,-8 -1,-8 -2,-8 -1,-8 -1,-8 -2,-8 -1,-8 -2,-8 -1,-8 -1,-8 -2,-8 -1,-8 -2,-8 -2,-7 -2,-8 -1,-8 -3,-8 -2,-7 -2,-8 -2,-8 -3,-7 -3,-8 -3,-7 -3,-7 -3,-8 -4,-7 -3,-7 -4,-11 -4,-11 -5,-11 -5,-11 -5,-10 -5,-11 -6,-10 -6,-10 -6,-10 -7,-10 -6,-10 -7,-10 -7,-10 -7,-10 -7,-10 -7,-9 -6,-10 -7,-10 -7,-10 -6,-10 -7,-10 -6,-10 -6,-11 -6,-10 -5,-11 -5,-10 -4,-11 -5,-11 -3,-11 -4,-12 -3,-11 -2,-12 v -5 l -1,-5 -1,-6 -1,-5 v -5 l -1,-5 v -5 l -1,-5 -1,-5 v -5 l -2,-5 -1,-5 -1,-5 -1,-4 -2,-5 -2,-4 -6,1 -5,1 -5,3 -4,4 -4,4 -3,4 -3,5 -3,5 -3,5 -3,6 -3,5 -3,5 -4,4 -3,5 -4,4 -5,3 -3,-3 2,-6 2,-6 1,-6 3,-7 2,-6 2,-6 2,-7 3,-6 2,-5 3,-6 3,-5 4,-5 3,-4 5,-3 4,-3 5,-1 h -10 l 1,-5 v -4 l -1,-3 -2,-3 -1,-3 -1,-4 v -3 l 1,-4 1,-2 1,-2 2,-2 1,-3 1,-2 2,-1 2,-1 3,1 h -3 l -2,-2 -2,-2 -1,-3 -1,-3 -2,-1 -3,1 -4,4 -3,-5 -1,-5 v -6 l 1,-6 3,-5 2,-6 3,-5 3,-5 4,-14 4,-12 3,-14 2,-13 1,-13 2,-13 v -39 l -1,-13 -2,-13 -1,-12 -3,-13 -3,-13 -3,-12 -4,-12 -5,-13 -4,-12 -5,-12 -6,-12 -5,-11 -7,-12 -6,-11 -7,-12 -7,-11 -8,-10 -7,-11 -8,-10 -8,-10 -9,-10 -9,-10 -9,-9 -13,7 -13,6 -13,6 -14,5 -14,5 -13,5 -14,5 -14,4 -14,4 -14,4 -14,4 -14,4 -14,4 -14,5 -14,4 -14,4 -15,2 -15,2 -14,4 -14,5 -13,6 -12,8 -12,8 -12,9 -10,9 -11,11 -10,11 -10,11 -9,12 -9,11 -9,12 -8,13 -4,-1 h -9 l -5,1 h -5 l -4,-1 -3,-3 -3,-4 -5,-12 -5,-11 -6,-12 -7,-11 -7,-10 -7,-11 -8,-9 -8,-10 -8,-9 -9,-9 -10,-8 -9,-8 -10,-8 -10,-7 -10,-7 -10,-6 -11,-6 -11,-6 -11,-6 -12,-5 -11,-4 -12,-4 -11,-4 -12,-4 -12,-3 -12,-3 -12,-2 -12,-3 -12,-1 -12,-2 -12,-1 h -11 l -6,-2 -5,-3 -5,-3 -5,-3 -5,-4 -4,-4 -5,-3 -5,-5 -4,-4 -5,-4 -4,-3 -4,-4 -5,-4 -4,-3 -5,-3 -4,-2 v 4 l 3,4 3,3 4,3 4,3 4,3 2,4 1,6 -3,2 -3,1 h -9 l -4,-1 h -3 l -4,1 -4,1 -3,3 -3,2 -1,3 -2,2 -2,3 -2,4 -4,3 h 14 l -6,8 -6,6 -5,6 -5,5 -5,4 -6,5 -6,4 -8,5 v 5 h 33 v -5 l -1,5 -1,3 -2,4 -2,4 -3,3 -2,3 -2,3 -2,4 h 10 l 2,1 2,1 1,2 -6,11 -6,10 -7,11 -7,10 -7,11 -6,11 -6,10 -6,11 -6,11 -5,11 -4,12 -3,11 -3,12 -1,12 v 13 l 1,13 -2,8 -1,9 -2,8 -1,9 -1,8 v 9 l -1,9 v 27 l 1,9 v 9 l 1,9 1,9 2,9 1,9 2,9 2,9 2,9 2,9 2,9 3,8 3,9 3,9 3,9 3,8 4,8 4,8 3,8 4,9 4,7 5,8 2,3 3,4 4,5 3,4 5,4 4,4 4,5 5,4 4,5 3,5 4,5 3,5 1,5 2,6 v 5 l -1,6 -9,-6 -8,-7 -8,-7 -8,-8 -7,-9 -7,-8 -7,-9 -6,-10 -6,-9 -6,-10 -5,-10 -5,-10 -4,-10 -4,-11 -4,-10 -3,-10 -6,4 -6,3 -6,4 -6,5 -6,4 -5,5 -4,6 -3,5 28,15 -2,1 -2,2 h -3 l -5,-3 -5,-2 -7,-3 -6,-1 -6,-1 -5,-1 -3,1 -2,2 6,4 5,4 6,4 5,4 5,4 5,5 5,4 5,5 5,4 5,5 5,4 5,5 5,4 5,5 5,4 5,4 v 15 l -1,2 -1,3 -2,1 -6,-6 -6,-6 -5,-7 -6,-6 -5,-6 -5,-6 -6,-5 -6,-5 -6,-5 -6,-5 -6,-4 -7,-4 -7,-3 -7,-3 -8,-2 -8,-2 1,1 4,2 5,1 6,2 5,2 5,4 2,4 v 5 l -6,-4 -6,-4 -7,-2 -8,-2 -7,-2 -7,-1 -7,-1 -6,-1 -9,8 -8,9 -7,9 -5,11 -5,10 -4,12 -4,11 -3,11 -3,12 -3,12 -3,11 -4,11 -4,11 -5,11 -5,10 -6,10 -4,5 -5,4 -5,3 -5,2 -5,3 -4,3 -2,5 v 8 l -7,7 -7,8 -6,7 -7,8 -7,8 -6,8 -7,8 -6,8 -7,8 -6,8 -6,8 -6,8 -6,9 -6,8 -6,9 -5,8 -6,8 -5,9 -5,9 -5,9 -5,9 -5,9 -4,8 -4,10 -4,9 -4,9 -3,10 -3,9 -3,10 -3,9 -2,10 -2,10 -5,7 -5,7 -4,8 -3,7 -3,8 -4,8 -3,8 -3,8 -4,8 -4,7 -4,7 -4,7 -5,6 -6,6 -6,6 -6,5 1,-11 2,-11 2,-10 2,-11 3,-12 3,-11 3,-11 4,-11 3,-11 4,-10 3,-11 4,-9 3,-10 4,-8 3,-8 3,-7 -8,11 -8,12 -8,11 -8,12 -7,12 -7,13 -8,12 -7,12 -7,13 -6,12 -7,13 -7,13 -6,13 -7,12 -6,13 -7,13 z" + class="pen1 brush0" + id="path2732" /><path + d="m 2717,1449 -6,-19 -7,-19 -7,-19 -7,-19 -7,-19 -7,-19 -7,-18 -8,-19 -7,-19 -8,-18 -8,-18 -8,-19 -8,-18 -8,-18 -8,-19 -9,-18 -8,-18 -8,-18 -9,-18 -8,-19 -9,-18 -9,-18 -9,-18 -9,-18 -9,-18 -10,-18 -9,-18 -9,-18 -10,-19 -9,-18 -10,-18 -10,-18 -4,-5 -5,-5 -4,-5 -5,-5 -4,-4 -5,-5 -5,-4 -5,-4 -5,-5 -5,-4 -6,-4 -6,-4 -6,-4 -7,-4 -7,-4 -7,-3 -15,-8 -5,-3 -5,-4 -6,-5 -5,-4 -6,-4 -6,-3 -6,-2 h -6 l -6,-2 -6,-3 -6,-3 -6,-4 -7,-3 -6,-4 -7,-3 -6,-4 -7,-3 -7,-3 -6,-2 -6,-2 -7,-1 h -6 l -5,1 -5,2 -33,5 4,5 3,4 3,5 2,5 1,5 2,5 1,5 1,5 1,4 2,5 2,4 3,4 3,4 5,3 6,3 7,2 -1,1 -1,2 h -2 l -1,1 h -2 l -1,1 h -2 l 3,2 1,3 1,2 1,3 v 2 l -1,3 -1,2 -2,2 -2,2 -4,-7 -6,-5 -6,-4 -7,-3 -6,-4 -7,-3 -7,-5 -5,-5 3,4 4,4 5,4 3,4 5,4 4,3 4,4 5,3 4,3 4,4 4,4 4,4 3,4 3,4 3,5 3,6 -6,6 -7,2 -6,-1 -6,-3 -6,-4 -6,-3 -5,-3 h -4 v 24 l 2,13 1,11 3,12 3,11 3,11 4,11 4,11 5,10 5,11 5,10 6,10 7,10 6,10 7,10 6,11 6,12 6,12 5,11 6,12 6,12 6,12 6,13 5,12 6,13 5,12 6,13 5,12 5,13 6,13 5,14 5,13 5,13 4,14 5,14 4,14 5,14 3,14 4,14 4,15 4,15 3,14 3,15 3,15 3,16 3,15 2,16 h 30 l -3,-10 -3,-11 -3,-11 -3,-11 -3,-11 -4,-11 -3,-11 -3,-12 -4,-11 -3,-11 -4,-11 -4,-12 -4,-11 -4,-12 -4,-11 -4,-11 -4,-11 -4,-12 -4,-11 -4,-10 -4,-12 -4,-10 -5,-11 -4,-10 -4,-10 -4,-10 -5,-10 -4,-10 -4,-9 -5,-9 -4,-9 -4,-9 -5,-5 -5,-6 -4,-6 -5,-6 -4,-6 -4,-7 -3,-6 -3,-8 -3,-6 -2,-8 -2,-7 -2,-7 -1,-8 v -7 l -1,-7 1,-8 4,-3 5,-1 h 4 l 5,1 4,2 4,2 5,1 4,1 v -10 l 5,-2 h 4 l 4,1 4,1 5,3 4,4 5,4 4,4 4,5 5,4 4,5 4,4 5,5 4,3 4,3 4,2 2,3 1,3 1,3 v 3 l -1,3 -1,3 -2,3 -3,2 -5,-5 -6,-4 -7,-4 -7,-4 -6,-5 -6,-5 -6,-7 -4,-7 9,13 11,13 12,12 13,12 12,12 14,12 14,12 13,11 14,13 13,12 13,13 13,13 11,14 11,15 10,15 8,16 4,14 4,14 4,13 4,14 4,14 4,13 4,14 4,14 3,14 4,13 4,14 4,14 4,13 3,14 4,14 4,14 z" + class="pen1 brush0" + id="path2734" /><path + d="m 2432,1449 v -2 l -1,-2 v -1 l 1,-2 v -6 l -1,-1 -1,14 z m 27,0 -1,-5 -1,-5 -2,-5 -1,-5 -1,-4 -2,-5 -2,-3 -3,-3 -1,35 z m 25,0 -2,-10 -3,-10 -3,-10 -3,-10 -3,-9 -3,-10 -3,-10 -3,-10 -3,-10 -3,-10 -3,-9 -4,-10 -3,-10 -3,-9 -4,-10 -3,-9 -4,-10 -3,-10 -4,-9 -4,-10 -4,-9 -4,-10 -4,-9 -4,-9 -4,-9 -4,-10 -5,-9 -5,-9 -4,-9 -5,-9 -5,-9 -5,-9 h -9 l -1,2 -1,1 5,9 5,9 5,9 4,9 5,9 4,9 5,9 5,9 4,9 4,10 5,9 3,9 4,9 4,10 4,9 4,10 4,9 3,10 4,9 3,10 3,9 2,10 3,10 3,9 2,10 3,10 2,10 2,9 2,10 1,10 2,10 1,10 z m 29,0 -1,-2 v -2 l -1,-1 v -2 l -1,2 v 5 z m -968,-1132 -36,-64 3,4 4,3 4,4 4,4 4,4 4,3 3,4 4,4 3,4 3,3 2,4 1,5 1,4 -1,5 -1,4 z" + class="pen1 brush0" + id="path2736" /><path + d="m 1199,338 10,12 11,11 12,8 13,6 14,5 13,4 15,3 14,2 15,1 15,2 14,1 15,2 14,3 14,2 14,5 12,5 8,7 7,8 7,7 7,9 5,8 6,10 5,9 4,9 4,10 3,11 3,11 2,10 1,11 1,11 v 12 l -1,11 -6,2 -5,2 -5,3 -5,4 -5,5 -5,5 -5,5 -5,5 -5,5 -5,5 -6,4 -5,5 -6,4 -6,3 -6,3 -7,2 -8,5 -7,5 -8,2 -8,2 -8,1 h -8 l -8,-2 -8,-1 -9,-3 -7,-3 -9,-3 -8,-3 -7,-4 -8,-3 -7,-3 -7,-4 -5,-4 -5,-4 -5,-5 -4,-5 -4,-5 -3,-5 -3,-6 -4,-5 -2,-6 -3,-6 -2,-6 -3,-6 -1,-6 -3,-6 -1,-6 -2,-6 -2,-8 v -21 l 1,-7 2,-7 1,-6 2,-7 2,-6 3,-6 2,-7 2,-6 3,-5 1,-7 3,-5 1,-6 -6,6 -5,7 -5,8 -4,8 -4,9 -4,8 -2,10 -3,9 -2,10 -1,10 v 20 l 1,10 1,9 3,10 2,9 5,6 4,6 4,6 3,6 4,6 3,6 3,6 3,6 -5,-1 -5,-2 -4,-2 -4,-3 -4,-3 -3,-4 -3,-5 -3,-4 -3,-5 -2,-6 -2,-5 -2,-5 -2,-5 -2,-6 -1,-5 -1,-5 -1,-4 v -4 l 1,-4 v -8 l -1,-4 -1,-4 -1,-3 -2,8 -2,8 -1,8 v 17 l 1,8 1,9 2,8 2,9 2,8 3,8 3,8 3,8 4,7 3,8 5,7 15,15 h -10 l -4,-2 -4,-2 -3,-3 -3,-4 -3,-4 -3,-5 -3,-4 -2,-6 -2,-5 -2,-5 -2,-5 -2,-5 -2,-4 -2,-5 -3,-14 -3,-14 -2,-14 -1,-15 v -29 l 2,-15 2,-14 3,-14 5,-15 5,-13 6,-14 7,-13 7,-12 9,-11 10,-12 -4,-4 -5,-4 -4,-4 -4,-4 -4,-5 -5,-4 -4,-4 -4,-4 -4,-4 -3,-5 -3,-4 -2,-5 -3,-6 -1,-5 -1,-6 v -6 l 5,1 4,3 3,4 3,4 2,5 3,5 2,5 z" + class="pen1 brush1" + id="path2738" /><path + d="m 1954,343 1,5 -1,6 -2,5 -4,5 -4,5 -4,5 -5,5 -4,5 -4,5 -3,5 -1,5 v 5 l 2,5 4,6 7,5 10,5 3,9 4,10 3,9 3,9 4,10 3,10 3,9 3,10 3,10 2,11 2,10 1,10 2,11 v 11 l 1,11 -1,12 v 16 l -2,17 -3,17 -4,16 -5,16 -6,17 -8,14 -8,15 -9,14 -11,14 -11,12 -12,12 -14,11 -13,9 -15,8 -15,8 -6,-2 h -5 l -5,1 -5,1 -5,2 -4,2 -5,3 -4,2 -4,2 -5,2 -4,1 -4,1 h -5 l -4,-2 -5,-2 -5,-4 h -6 l -7,1 -6,-1 h -14 l -7,-1 h -7 l -7,-1 -7,-1 -6,-1 -7,-1 h -7 l -6,-1 -6,-1 h -12 l 7,7 8,8 8,7 9,8 9,7 9,7 10,7 10,6 11,6 11,6 11,6 11,4 11,4 11,3 11,2 12,1 11,-2 11,-2 11,-4 11,-4 11,-4 11,-5 10,-6 10,-6 9,-7 9,-7 9,-8 7,-9 8,-9 6,-10 5,-10 5,-11 v -12 l -1,-7 1,-7 1,-7 3,-6 5,-4 9,-1 v -10 h 7 l -2,13 -4,12 -4,13 -4,13 -6,13 -6,12 -6,12 -8,12 -8,11 -9,10 -10,10 -11,9 -12,8 -12,7 -14,6 -14,5 -17,5 -16,4 -16,1 -15,-1 -15,-3 -14,-3 -15,-5 -14,-6 -13,-7 -13,-7 -13,-9 -13,-8 -13,-8 -12,-9 -13,-8 -12,-8 -7,3 -7,4 -7,5 -6,6 -6,7 -5,7 -4,9 -4,9 12,8 11,9 11,11 11,11 10,12 11,12 11,12 11,12 11,12 12,10 13,10 13,8 15,6 15,5 17,2 h 18 l 16,-1 15,-2 16,-3 15,-3 15,-4 15,-4 15,-5 14,-6 14,-7 13,-8 13,-8 11,-10 11,-10 11,-11 9,-12 9,-14 3,-1 3,-2 4,-1 3,-2 3,-3 2,-2 3,-3 1,-4 -4,15 -6,13 -7,13 -9,12 -10,11 -10,10 -12,9 -12,9 -13,8 -14,8 -14,7 -13,6 -15,7 -14,5 -13,6 -14,5 -8,1 h -8 l -8,1 h -8 l -8,1 h -17 l -8,-1 h -8 l -8,-1 -8,-2 -7,-2 -7,-3 -7,-3 -6,-4 -7,-5 h -12 l -6,-2 -5,-3 -5,-3 -5,-4 -5,-4 -4,-5 -5,-5 -5,-5 -4,-5 -5,-5 -5,-5 -5,-5 -5,-4 -6,-3 -5,4 -2,-3 -2,-4 -2,-4 -2,-4 -3,-5 -2,-5 -3,-5 -3,-5 -3,-4 -3,-5 -3,-4 -4,-5 -4,-3 -4,-3 -4,-3 -5,-2 -4,1 -4,2 -3,2 -3,3 -2,4 -3,4 -2,4 -2,5 -2,5 -2,4 -3,5 -2,5 -3,4 -3,4 -4,4 -4,4 -4,-9 -4,-8 -3,-9 -4,-9 -2,-10 -3,-9 -3,-10 -3,-9 -3,-10 -3,-9 -4,-9 -4,-10 -4,-8 -4,-9 -5,-8 -6,-8 -11,5 -12,6 -10,6 -11,7 -11,8 -10,7 -11,8 -11,7 -11,7 -11,6 -11,6 -12,5 -13,3 -13,3 -14,1 -14,-1 -13,-2 -13,-2 -13,-4 -12,-5 -12,-5 -11,-7 -12,-7 -10,-8 -10,-9 -10,-9 -8,-10 -8,-11 -7,-11 -7,-11 -5,-12 -4,-13 -1,-5 -2,-6 -2,-5 -1,-5 -2,-5 -2,-6 -2,-5 -2,-5 -1,-5 -1,-6 -1,-6 v -16 l 2,-6 2,-6 4,13 4,12 5,13 5,13 5,12 5,13 6,12 6,12 7,11 8,12 8,10 9,10 10,10 11,9 12,8 13,7 10,4 11,3 11,2 11,1 11,1 11,-1 12,-1 11,-2 11,-2 11,-3 10,-4 11,-4 10,-5 10,-6 9,-6 9,-7 4,-6 5,-6 5,-6 6,-6 7,-6 6,-6 6,-6 5,-7 5,-6 5,-7 3,-7 2,-8 1,-8 v -8 l -2,-9 -4,-9 -9,8 -9,7 -10,7 -10,7 -11,6 -10,6 -11,5 -12,4 -11,4 -12,2 -12,2 -12,1 h -12 l -12,-2 -12,-2 -12,-4 -14,-4 -14,-5 -13,-7 -14,-8 -12,-8 -12,-10 -11,-10 -11,-12 -10,-12 -9,-12 -8,-13 -8,-13 -7,-14 -6,-14 -5,-13 -4,-14 -3,-8 -1,-8 -2,-8 -2,-8 -1,-8 -1,-8 v -8 l -1,-8 v -17 l 1,-8 v -8 l 1,-8 1,-8 1,-8 2,-8 2,-8 2,-8 3,-8 2,-7 3,-7 3,-7 4,-7 4,-7 4,-7 4,-6 5,-6 5,-6 5,-6 5,-5 6,-5 6,-5 2,3 h 8 l -1,7 -4,8 -4,6 -5,6 -6,7 -5,6 -4,7 -3,7 -4,7 -3,7 -3,8 -3,8 -2,7 -3,8 -1,8 -2,9 -2,8 -1,8 -1,8 -1,9 v 8 l -1,9 v 8 l 1,9 v 8 l 1,8 1,9 1,8 2,8 1,9 2,7 3,8 2,8 4,8 3,8 3,7 4,7 4,7 5,6 5,7 7,9 9,9 9,9 8,9 10,8 10,8 10,8 11,6 11,6 11,5 12,3 11,3 13,1 h 12 l 12,-2 13,-3 10,1 10,-1 9,-1 10,-2 8,-3 8,-4 8,-5 8,-5 7,-6 7,-6 6,-7 7,-7 6,-7 6,-7 5,-7 6,-8 v -7 l 1,-8 3,-7 2,-6 4,-7 4,-6 4,-6 5,-6 5,-5 6,-5 5,-5 6,-5 6,-5 6,-4 6,-4 6,-4 4,-2 4,-2 4,-2 4,-1 4,-1 h 7 l 4,1 h 3 l 4,2 3,2 3,2 3,2 4,3 2,3 4,4 9,11 6,11 6,12 4,12 3,12 3,12 2,12 2,12 2,12 4,11 4,11 5,11 7,10 8,9 11,9 14,8 11,5 13,4 12,3 12,2 13,1 h 13 l 13,-1 12,-1 13,-2 13,-3 12,-4 11,-4 12,-5 11,-6 10,-6 10,-7 7,-8 7,-9 6,-9 6,-9 6,-9 5,-9 5,-10 5,-10 4,-10 4,-10 3,-10 3,-11 2,-10 3,-12 1,-11 1,-12 h -9 l -6,4 -5,5 -3,8 -4,8 -3,8 -4,8 -6,6 -3,3 -4,4 -4,4 -4,4 -4,4 -4,4 -5,4 -4,3 -5,3 -4,3 -5,2 -5,2 -4,2 -5,1 -4,1 -4,-1 9,-6 9,-7 9,-6 8,-8 7,-8 7,-8 6,-8 6,-9 4,-9 5,-9 3,-9 3,-9 2,-10 2,-10 1,-10 1,-10 -6,-8 -1,13 -2,12 -3,11 -5,11 -5,11 -6,10 -7,10 -8,8 -8,9 -9,8 -10,8 -10,7 -10,6 -10,6 -11,6 -10,5 -5,2 -4,1 h -5 l -5,-1 -4,-1 -5,-2 -4,-1 -4,-2 10,-4 11,-4 10,-5 11,-5 11,-5 10,-6 11,-7 10,-7 9,-8 9,-8 8,-8 7,-10 7,-10 5,-11 4,-11 3,-13 2,-6 1,-6 1,-7 v -19 l -2,-6 -1,-6 -1,-6 -2,-6 -2,-6 -2,-6 -3,-6 -2,-6 -2,-5 -2,-6 1,7 1,7 1,8 1,8 v 36 l -1,10 -1,9 -2,9 -1,9 -3,8 -2,8 -4,7 -3,7 -7,8 -8,7 -7,8 -8,6 -8,6 -9,5 -9,5 -9,4 -9,4 -10,3 -10,2 -11,1 -10,1 h -11 l -11,-1 -12,-2 -8,-2 -7,-2 -7,-3 -6,-3 -5,-3 -5,-4 -5,-4 -5,-4 -4,-5 -4,-4 -4,-6 -4,-5 -4,-5 -5,-6 -4,-6 -5,-7 -8,8 3,2 1,3 1,3 v 2 h -10 l -2,-10 v -10 l -1,-10 1,-10 1,-10 1,-10 3,-9 2,-10 4,-9 3,-9 5,-9 5,-8 6,-8 6,-8 7,-7 8,-7 7,-4 7,-4 8,-3 7,-4 8,-2 7,-3 8,-3 8,-2 8,-3 8,-2 7,-2 9,-2 7,-2 9,-2 8,-2 8,-1 8,-2 8,-2 8,-2 7,-3 8,-2 8,-2 8,-3 8,-3 7,-3 8,-3 7,-4 8,-3 7,-5 6,-4 7,-5 7,-5 3,-4 3,-3 3,-3 3,-3 3,-2 3,-2 4,-2 z" + class="pen1 brush1" + id="path2740" /><path + d="m 1178,361 -9,9 -9,11 -9,11 -8,11 -7,12 -7,12 -6,12 -5,12 -5,13 -4,13 -4,13 -3,13 -3,13 -1,12 -2,13 v 13 l -5,-13 -2,-13 -2,-13 v -13 l 1,-13 2,-13 3,-13 5,-13 5,-12 5,-12 7,-12 7,-12 8,-11 8,-11 9,-10 9,-9 h 7 l 2,-2 3,-1 2,-2 h 3 l 2,2 z" + class="pen1 brush1" + id="path2742" /><path + d="m 955,451 87,-80 3,3 z m 285,-30 10,-14 v 3 z m 71,4 1,4 v 3 l -1,3 -1,2 -2,2 -2,1 -3,2 -3,1 -19,-36 6,-1 h 6 l 4,2 3,2 3,3 3,4 2,4 z m 47,-4 v 3 l -1,2 -1,1 -1,2 -2,1 -1,1 -2,1 -5,2 -4,-1 -3,-2 -2,-2 -1,-4 -1,-4 -1,-3 -1,-3 4,-1 h 7 l 3,1 3,1 3,2 3,1 z m 531,30 h -3 l -4,-2 -4,-3 -5,-5 -4,-5 -4,-5 -3,-6 -1,-4 z m -485,-8 -3,4 -3,2 -3,1 -3,-1 -4,-1 -3,-2 -4,-1 -3,-2 v -18 l 4,2 5,1 4,1 5,1 3,2 3,2 2,4 z m -123,13 v 3 l -1,2 v 4 l -1,1 -1,2 -1,2 -2,1 -6,-2 -6,-3 -5,-4 -4,-5 -4,-5 -1,-6 1,-6 3,-8 6,-3 6,-1 3,3 4,4 2,6 2,6 3,5 z m 554,-28 v 5 l -2,5 -4,4 -4,3 -5,4 -5,3 -4,4 -4,5 -6,-2 -3,-2 -2,-4 -1,-4 1,-4 1,-3 2,-4 3,-2 4,-3 4,-2 3,-2 h 5 l 4,-1 z m -811,15 -5,2 -5,1 -4,3 -4,2 -4,3 -4,3 -4,3 -4,3 -3,3 -4,4 -4,3 -4,3 -4,3 -4,3 -5,2 -4,2 -3,-4 4,-2 4,-3 5,-3 4,-3 4,-3 3,-3 4,-4 4,-3 3,-4 4,-3 4,-4 3,-3 4,-3 4,-3 3,-3 4,-3 z m 750,8 h -8 v -8 h 8 z m -334,20 -4,3 -4,3 -5,3 -5,1 -5,1 -4,-1 -4,-3 -2,-7 1,-4 1,-3 2,-4 1,-3 1,-3 2,-3 3,-2 4,-3 4,1 3,3 3,2 3,4 2,4 1,4 1,3 z m 421,-10 -2,5 -3,4 -4,2 -5,2 -5,1 -5,1 -5,1 -4,2 -3,-2 -2,-3 v -4 l 2,-2 1,-2 1,-3 1,-2 18,-15 z m -155,14 11,-14 3,3 z m -723,25 v -4 l 2,-4 4,-4 5,-4 6,-4 6,-3 5,-3 5,-3 z m 281,-8 h -32 v -17 l 6,-1 h 6 l 6,1 6,3 4,3 3,4 2,4 z m 431,5 h -14 v -2 l 1,-3 1,-2 2,-2 2,-2 2,-1 h 3 l 3,1 z m 176,0 1,4 -1,2 -2,2 -2,1 -3,1 h -3 l -3,2 -2,1 h -2 l -2,1 h -8 l -2,-1 -2,-1 -2,-2 v -7 l 3,-6 5,-5 7,-3 h 6 l 6,1 4,4 z m -416,10 h -33 l 2,-3 5,-4 6,-5 7,-4 6,-2 5,2 2,5 z m 470,-2 h 3 v 17 h -3 z m -937,35 -5,3 -1,-3 -1,-3 1,-4 3,-4 3,-4 3,-4 4,-3 3,-3 2,2 1,4 v 4 l -1,4 -2,4 -3,3 -3,3 z m 276,-22 h -5 l -4,2 -3,3 -3,3 -4,4 -4,2 -4,2 -5,-1 -5,-11 4,-1 4,-1 5,-2 4,-2 5,-1 h 10 z m 425,4 v 11 h -23 v -15 h 15 l 3,1 2,1 z m 182,0 1,3 v 2 l -1,3 v 7 l 1,1 2,2 h -28 l -2,-5 v -4 l 2,-4 4,-2 4,-2 6,-1 z m -421,14 -1,2 -1,3 v 2 l -1,3 v 2 l -1,2 -2,2 -1,2 -24,-18 z m -175,15 -25,21 -3,-2 -2,-3 -2,-2 -2,-2 -2,-2 v -6 l 1,-4 4,-1 5,-3 5,-3 5,-3 5,-1 5,1 3,3 z m 416,7 -3,3 -4,3 -4,2 -4,1 -4,1 -5,1 -4,1 -4,2 4,-26 4,1 h 10 l 5,-1 4,1 4,1 1,4 z m 173,18 h -12 l -4,-1 -4,-2 -3,-2 -3,-3 -3,-4 -1,-3 1,-3 2,-2 3,-2 3,-1 4,-1 h 12 l 4,2 3,2 2,3 1,3 v 4 l -2,5 z m -435,11 h -7 l -4,1 h -5 l -5,-1 -4,-2 -2,-4 -1,-5 -2,-2 -2,-3 v -5 l 1,-2 2,-2 2,-2 2,-2 4,4 5,2 6,2 7,2 5,3 2,3 v 6 z m -435,-5 h -11 l 15,-18 v 13 l -1,2 -1,2 z m 956,-13 h 4 v 13 h -4 z m -657,3 3,4 1,4 -1,5 -1,4 -2,4 -2,4 -2,4 -3,4 -11,-5 1,-4 2,-4 2,-4 2,-4 3,-3 3,-4 3,-3 z m 406,22 -3,1 -3,1 -3,1 -2,2 -3,1 -3,1 -3,-1 -3,-3 1,-3 3,-3 3,-3 4,-3 4,-2 4,-2 4,-3 3,-2 3,2 1,3 -1,2 -1,2 -2,2 -2,2 -1,3 z m -298,6 -15,15 -4,-3 -3,-3 -3,-4 -3,-5 -1,-5 -1,-5 2,-5 3,-6 5,1 3,1 3,3 2,3 2,4 2,4 4,3 z m 437,5 -1,2 -3,1 h -6 l -11,-26 4,3 5,2 5,1 5,2 4,2 2,3 v 4 z m -513,-15 v 6 l -1,3 -1,3 -1,3 -1,3 v 4 l 1,3 h -22 l 15,-28 z m 33,18 v 15 h -23 v -8 l 1,-8 4,-7 5,-7 4,-3 4,1 4,5 z m 348,7 14,-18 v 15 l -1,5 -3,2 h -4 z m 111,3 -15,12 -3,-1 -2,-2 -2,-3 -2,-4 -1,-3 -1,-4 v -4 l 1,-4 1,-6 3,-2 h 3 l 5,3 4,4 5,4 3,5 z m -69,15 -1,1 -1,2 -2,1 -2,-1 -7,-4 -3,-3 v -4 l 3,-4 2,-4 3,-5 v -5 l -2,-7 6,1 3,2 2,4 v 11 l -1,5 z m -760,-15 6,-13 v 7 z m 793,8 v 10 h -18 l 3,-31 h 4 l 2,2 3,2 1,3 1,4 1,3 2,4 z m -200,18 v 8 l -1,5 v 9 l 1,5 2,3 3,3 5,-4 3,-3 2,-4 1,-4 1,-5 v -9 l 1,-4 1,4 1,4 1,4 1,5 1,4 1,5 1,4 v 5 l 1,5 1,4 1,5 1,5 v 4 l 1,5 v 4 l 1,4 -1,11 -1,10 -1,11 -1,10 -2,10 -2,10 -2,10 -2,9 -2,10 -3,9 -3,10 -3,9 -4,9 -4,9 -3,9 -5,9 v -14 l -1,-14 v -27 l 1,-14 v -14 l 1,-13 1,-14 1,-13 v -28 l 1,-13 -1,-14 v -13 l -1,-14 -2,-14 h -7 l -1,8 v 8 l -1,8 -1,8 v 8 l -1,7 -1,8 -1,8 v 8 l -1,8 -1,7 -1,8 -1,8 v 8 l -1,8 -1,8 v 7 l -1,8 -1,8 v 8 l -1,8 -1,8 v 15 l -1,8 v 8 l -1,8 v 40 l -2,-7 -2,-8 -2,-7 -2,-8 -2,-7 -3,-8 -2,-7 -3,-8 -3,-7 -3,-8 -2,-8 -3,-7 -2,-8 -3,-8 -2,-8 -3,-7 -2,-8 -2,-8 -1,-8 -1,-8 -1,-8 -1,-8 -1,-8 1,-8 v -8 l 1,-8 2,-8 2,-8 2,-8 4,-8 3,-8 4,-8 -2,3 -2,3 v 3 l 1,2 2,3 2,3 1,3 1,3 5,-3 4,-3 3,-3 3,-4 1,-5 2,-5 1,-5 1,-5 2,-5 1,-5 2,-4 2,-5 3,-4 3,-3 5,-4 6,-2 z m -644,-18 -1,4 -2,4 -1,5 -1,4 v 5 l -1,4 -1,5 -1,4 -1,5 -1,4 -2,5 -1,4 -2,4 -1,4 -3,4 -2,4 13,3 -1,5 -2,5 -2,6 -2,5 -2,6 -3,5 -2,6 -3,5 -3,6 -2,5 -4,4 -3,5 -3,4 -4,4 -3,4 -4,4 1,12 v 12 l -1,10 -2,11 -3,10 -4,10 -5,9 -4,9 -4,10 -4,9 -4,10 -3,9 -1,11 -1,10 1,11 3,12 -10,15 -12,14 -11,13 -12,12 -13,12 -14,11 -14,11 -14,10 -14,11 -15,10 -15,11 -15,11 -14,11 -15,13 -14,12 -14,14 -9,9 -9,8 -9,9 -8,8 -9,8 -8,9 -8,9 -8,8 -7,9 -8,8 -7,9 -7,8 -8,9 -7,9 -7,9 -6,8 -7,9 -7,9 -7,9 -6,9 -7,9 -6,10 -7,9 -6,9 -7,10 -6,9 -7,10 -6,9 -7,10 -6,10 -7,10 -7,10 1,-4 1,-5 2,-5 3,-6 3,-7 4,-7 3,-8 4,-8 3,-9 4,-8 2,-9 3,-8 1,-8 1,-8 v -8 l -2,-7 h -7 l -5,14 -5,14 -5,14 -5,14 -5,14 -6,14 -5,14 -6,15 -6,13 -6,14 -6,14 -6,14 -5,14 -6,14 -6,14 -6,14 -5,14 -6,14 -5,14 -5,14 -5,14 -5,14 -5,15 -4,14 -4,15 -4,14 -3,15 -3,15 -3,15 -2,15 -2,15 -2,15 -5,24 -6,25 -5,25 -5,24 -5,25 -5,25 -4,25 -4,25 -4,25 -4,26 -4,25 -3,25 -4,26 -3,25 -3,26 -3,26 -4,25 -2,26 -3,26 -3,25 -2,26 -3,26 -2,26 -3,25 -2,26 -2,26 -3,25 -2,26 -2,26 -3,25 -2,26 -2,25 -6,-3 -4,-4 -5,-4 -3,-4 -4,-3 -3,-5 -4,-5 -3,-5 -1,-48 v -95 l 1,-48 1,-47 2,-48 3,-47 3,-47 4,-47 5,-47 5,-46 6,-47 7,-46 7,-47 8,-45 9,-46 9,-46 11,-45 10,-45 12,-45 12,-44 12,-44 14,-44 14,-44 15,-43 16,-43 16,-42 17,-42 18,-42 18,-42 20,-41 20,-40 12,-8 8,-13 7,-14 8,-14 8,-13 7,-14 8,-14 7,-14 8,-14 7,-14 8,-14 7,-13 8,-14 8,-13 8,-14 8,-13 8,-13 9,-13 9,-13 9,-12 9,-13 10,-12 10,-11 10,-12 10,-11 11,-11 12,-11 12,-10 12,-10 13,-9 13,-10 14,-8 15,-8 100,-47 -1,5 -3,5 -4,4 -4,4 -3,4 -2,5 1,4 3,5 4,1 h 4 l 4,-2 3,-4 3,-3 3,-3 4,-2 3,-2 -5,8 -4,8 -5,8 -5,9 -5,8 -4,9 -4,8 -4,9 -3,9 -3,8 -2,9 -1,9 -1,9 v 9 l 1,9 2,9 22,-7 4,-13 3,-12 3,-12 3,-13 3,-13 4,-13 4,-12 4,-13 5,-11 5,-12 7,-11 7,-10 8,-10 10,-8 11,-8 z m 64,7 v 3 l -1,3 -2,3 -2,2 -3,2 -4,2 -3,2 -3,1 h -1 l 2,-1 3,-1 4,-3 4,-3 3,-3 3,-3 z m 8,47 -2,4 -3,3 -4,1 -3,-1 -4,-1 -3,-2 h -2 l 13,-18 2,1 1,1 2,1 1,2 2,2 z m 0,43 -2,1 -2,2 -2,1 -2,1 -2,1 -2,1 -2,2 -1,2 18,-29 2,2 1,2 1,3 -1,2 -1,3 -1,2 -2,2 z m -18,51 1,-6 3,-5 5,-5 5,-4 5,-4 5,-4 5,-4 4,-4 1,6 -1,5 -4,5 -5,4 -7,4 -6,3 -7,4 z" + class="pen1 brush0" + id="path2744" /><path + d="m 793,841 -2,17 -4,16 -4,15 -5,15 -5,14 -7,13 -7,14 -8,13 -8,12 -8,12 -10,12 -9,12 -10,11 -11,11 -10,12 -11,11 -11,10 -11,11 -12,11 -11,10 -11,11 -12,11 -11,11 -11,11 -11,11 -10,11 -11,12 -10,12 -10,12 -9,13 -9,12 -8,14 h -11 l 7,-14 8,-13 8,-13 9,-13 9,-12 9,-12 10,-12 11,-11 11,-11 10,-11 11,-11 12,-11 11,-11 11,-10 12,-11 11,-11 11,-11 11,-10 11,-11 11,-12 10,-11 10,-12 9,-12 9,-12 8,-13 8,-13 7,-14 7,-14 6,-14 5,-15 4,-15 4,-17 z m 716,41 -2,5 -3,5 -4,5 -5,4 -5,4 -6,4 -6,2 -5,2 -6,8 -5,7 -6,6 -6,7 -6,6 -7,5 -6,6 -7,5 -7,5 -8,4 -7,4 -8,4 -8,3 -8,3 -8,3 -8,3 -8,2 -8,2 -9,1 -9,2 -8,1 -9,1 h -35 l -9,-1 -8,-1 -9,-1 -8,-2 -9,-1 -8,-2 -9,-4 -9,-3 -8,-4 -10,-3 -9,-3 -9,-4 -9,-4 -9,-4 -8,-5 -8,-5 -7,-5 -7,-7 -6,-6 -4,-8 -4,-8 -3,-10 7,5 7,5 8,5 7,5 8,4 8,5 8,4 7,4 9,4 8,3 8,4 9,3 8,3 8,3 9,3 9,2 8,2 9,2 9,1 8,2 9,1 h 36 l 9,-1 9,-1 9,-1 9,-2 9,-2 9,-3 9,-3 10,-3 9,-4 8,-5 9,-6 7,-5 8,-7 7,-6 8,-7 7,-7 7,-6 8,-6 8,-6 8,-5 9,-5 9,-4 z" + class="pen1 brush1" + id="path2746" /><path + d="m 226,2265 h 3 l -3,104 h -5 z m 18,36 h 2 v 14 h -2 z m 0,21 h 2 l -2,47 h -5 z m -15,170 -1,-7 v -53 l 1,-7 v -7 l 1,-6 1,-7 2,-6 1,-6 2,-6 v 5 l 1,6 v 6 l -1,6 v 13 l -1,7 v 7 l -1,7 -1,7 -1,7 -1,7 v 7 l -1,6 -1,7 z m 2184,118 -1,-1 -2,1 -1,1 -1,1 -1,1 h -1 l -2,-1 -1,-2 -7,-12 -6,-13 -6,-12 -6,-12 -6,-13 -5,-12 -5,-13 -5,-12 -4,-13 -5,-13 -4,-13 -3,-14 -4,-13 -3,-13 -3,-14 -3,-13 25,-11 2,14 2,14 3,14 3,14 3,14 3,13 4,14 4,13 4,14 5,13 4,13 4,13 5,13 5,13 5,14 z m -1630,-159 3,15 h 4 l 2,-2 2,-3 2,-3 v -7 l 10,3 10,2 9,2 10,2 10,2 10,1 11,1 10,1 10,1 h 20 l 10,1 h 51 l 10,1 h 10 l 10,1 10,1 9,1 10,1 9,1 10,2 10,2 9,3 9,3 10,3 8,4 9,4 9,5 5,7 5,7 6,8 5,7 5,6 5,7 5,7 5,6 5,7 5,7 5,6 5,7 5,6 4,7 5,6 5,7 -6,3 -6,3 -5,1 -5,-1 -6,-1 -5,-3 -5,-5 -6,-5 -4,-4 -3,-5 -3,-5 -2,-5 -3,-4 -2,-5 -4,-4 -4,-4 4,14 4,13 4,14 4,15 4,14 3,15 2,15 3,15 1,15 v 30 l -2,14 -3,15 -4,14 -6,13 -7,13 -5,2 -5,3 -5,3 -4,3 -5,3 -4,4 -4,4 -5,3 -4,4 -5,3 -4,2 -5,2 -6,2 h -12 l -6,-1 8,-12 6,-12 4,-13 2,-13 1,-13 v -14 l -1,-13 -3,-14 -3,-14 -3,-14 -5,-14 -4,-14 -4,-13 -4,-13 -4,-13 -4,-13 -4,-4 -5,-4 -5,-4 -6,-4 -4,-4 -3,-5 1,-7 4,-8 3,-9 4,-8 6,-8 7,-7 8,-6 8,-5 9,-4 9,-3 8,1 8,3 8,4 6,6 6,7 6,7 5,6 4,6 1,-7 v -6 l -2,-7 -2,-6 -3,-7 -3,-6 -4,-6 -5,-5 -5,-5 -5,-4 -6,-3 -7,-2 -8,-1 h -23 l -21,18 -3,-8 -5,-7 -6,-5 -6,-4 -7,-4 -8,-3 -7,-4 -6,-4 h -5 l -5,-1 h -16 l -5,1 h -5 l -5,1 -5,2 -4,1 -5,2 -4,3 -4,3 -3,3 -3,4 -3,5 -5,-3 -5,-3 -5,-2 -6,-3 -6,-2 -5,-2 -6,-2 -6,-1 -6,-1 -6,-1 h -13 l -6,1 -6,1 -6,2 -6,3 -33,17 v -3 l 1,-3 -2,-2 -2,-2 -28,54 1,-4 1,-5 1,-6 1,-5 2,-6 2,-7 2,-6 3,-6 4,-6 3,-5 4,-6 5,-4 5,-4 6,-3 7,-2 7,-1 -6,-5 -6,-2 -5,-1 -5,1 -5,2 -5,3 -4,4 -4,5 -4,5 -4,5 -3,5 -3,6 -3,4 -3,5 -2,3 -3,3 1,-5 2,-5 1,-4 1,-5 2,-5 2,-4 2,-5 2,-4 2,-5 3,-4 3,-4 3,-4 2,-4 4,-4 3,-3 3,-4 -3,1 -4,1 -4,1 -4,2 -3,2 -4,2 -4,3 -4,2 -3,3 -4,3 -4,2 -3,3 -4,2 -3,3 -4,2 -3,1 -1,7 -2,6 -2,6 -2,5 -3,6 -3,5 -2,6 -3,6 1,-5 1,-5 1,-5 1,-5 1,-5 1,-5 2,-5 1,-5 2,-5 2,-5 3,-4 2,-5 3,-4 4,-3 4,-4 4,-3 v -7 l -7,1 -7,3 -6,5 -6,6 -5,6 -5,8 -4,6 -4,6 -5,-6 -2,-5 v -5 l 3,-5 4,-5 4,-5 4,-5 3,-5 1,-1 2,-2 1,-1 v -2 l -4,-4 -28,22 -2,-5 1,-4 1,-4 2,-3 2,-4 2,-3 2,-3 2,-4 -25,-3 -2,-4 v -4 l 3,-4 4,-4 4,-3 4,-4 5,-3 4,-2 5,5 6,6 6,4 6,5 7,4 6,3 7,3 7,3 7,2 7,3 7,2 8,1 7,2 7,2 8,2 z m 1599,162 h -11 l -6,-11 -6,-12 -6,-11 -5,-12 -5,-12 -5,-12 -5,-12 -4,-13 -4,-12 -4,-12 -3,-12 -4,-12 -4,-12 -3,-12 -4,-12 -3,-11 13,-11 3,14 3,13 3,13 5,13 4,13 5,13 5,12 5,13 6,12 5,13 5,12 5,12 4,12 4,12 4,12 z m -8,-201 3,-1 29,94 h -3 z m -25,205 h -28 l -5,-10 -6,-11 -6,-11 -5,-11 -6,-12 -5,-11 -5,-12 -5,-12 -3,-11 -4,-12 -2,-11 -1,-12 v -11 l 2,-11 2,-11 5,-10 4,11 4,11 4,11 4,11 5,11 4,11 5,12 4,11 5,11 5,11 5,12 4,11 5,11 5,12 4,11 z m -43,0 -2,2 -3,1 h -16 v -3 l -2,-1 -1,-2 -1,-1 -1,-1 -2,-1 -1,-1 v 8 l -2,1 -3,1 h -16 l -10,-10 -5,10 -5,-1 -4,-1 -4,-1 -3,-2 -4,-1 -3,-2 -4,-2 -4,-3 v 13 l -10,1 -8,-2 -6,-5 -5,-7 -5,-8 -5,-9 -4,-8 -5,-8 v -21 l 33,42 1,-5 v -5 l -1,-5 -1,-4 -2,-5 -3,-4 -3,-5 -3,-4 -3,-4 -3,-5 -3,-4 -3,-5 -2,-4 -2,-5 -1,-6 v -5 l 5,3 5,4 5,4 5,4 4,5 4,5 5,5 3,5 4,6 4,5 3,6 4,5 4,6 3,5 3,6 4,5 v -5 l -1,-6 -2,-6 -3,-6 -3,-6 -4,-6 -3,-5 -4,-6 -4,-6 -3,-5 -3,-6 -3,-5 -1,-6 -1,-5 v -6 l 2,-5 4,3 5,2 4,3 4,4 3,4 3,4 3,5 3,5 3,5 2,5 3,5 3,5 3,5 4,4 3,5 4,4 1,-6 v -6 l -2,-6 -2,-6 -3,-6 -4,-6 -3,-6 -4,-6 -3,-6 -3,-5 -2,-6 v -11 l 3,-6 4,-5 7,-6 4,8 4,8 4,8 4,8 4,8 4,9 4,8 4,8 4,9 4,8 5,9 4,8 3,9 5,8 4,9 z" + class="pen1 brush0" + id="path2748" /><path + d="m 714,2541 1,-7 1,-7 2,-7 3,-7 3,-6 3,-6 5,-5 4,-4 z m -485,-42 h 4 l -4,85 h -3 z m 772,28 2,4 v 3 l -1,4 -2,5 -3,5 -2,5 -1,5 v 5 l -6,1 -5,2 -5,3 -4,3 -3,3 -3,4 -2,4 -2,5 -2,5 -2,5 -2,5 -2,5 -3,4 -2,5 -3,4 -4,4 -2,13 -4,13 -5,13 -6,14 -6,13 -6,14 -6,13 -6,14 -5,13 -4,13 -3,13 -2,12 -1,12 2,12 4,11 7,11 h -6 l -4,-1 -5,-2 -4,-2 -3,-3 -3,-4 -3,-4 -2,-4 -3,-5 -2,-4 -2,-5 -2,-5 -1,-5 -2,-5 -2,-4 -2,-5 -1,-9 -1,-10 v -39 l 1,-9 1,-10 1,-9 1,-10 1,-9 2,-9 2,-9 1,-9 3,-9 2,-8 3,-9 3,-9 4,-8 3,-8 4,-8 4,-8 5,-8 4,-7 5,-7 6,-7 5,-7 6,-7 7,-6 6,-6 7,-6 7,-6 9,-1 h 7 l 8,2 7,2 6,4 6,4 6,5 z m -118,0 -7,2 -6,3 -6,4 -6,3 -5,4 -5,5 -5,5 -4,5 -4,6 -4,5 -3,6 -3,6 -3,7 -3,6 -3,6 -2,7 1,2 v 3 l -1,2 v 5 l 1,2 1,2 2,2 5,-3 4,-4 3,-4 3,-5 3,-5 3,-5 2,-6 3,-5 3,-6 3,-5 2,-5 4,-5 3,-4 4,-4 5,-3 5,-3 -8,12 -6,13 -6,13 -5,13 -3,14 -4,14 -2,15 -2,14 -2,14 -2,15 -2,15 -1,14 -2,15 -2,14 -2,13 -2,14 -1,1 v -1 l 1,-1 v -6 l -1,-3 -1,-2 -2,-2 -4,1 -4,1 -4,2 -3,3 -3,3 -3,4 -2,4 -2,3 18,40 -57,-76 2,-8 1,-9 2,-9 1,-10 v -10 l 1,-10 1,-11 v -11 l 1,-11 1,-11 v -11 l 1,-11 1,-11 2,-10 2,-11 2,-10 2,-9 3,-9 3,-9 4,-8 4,-7 5,-6 5,-6 7,-5 6,-3 8,-3 8,-1 10,-1 10,1 11,2 12,4 z m 1189,21 -2,-1 -1,-4 v -8 l -1,-4 -2,-4 -3,-3 -5,-1 26,-11 1,4 1,5 v 5 l -1,5 -2,5 -2,5 -4,4 z m 364,36 -3,-2 -2,-3 -2,-3 -2,-4 -2,-5 -2,-4 -1,-5 -2,-5 -2,-5 -1,-5 -2,-6 -1,-5 -2,-5 -2,-5 -1,-5 -2,-5 z m -411,23 2,-5 1,-4 2,-5 1,-5 1,-4 1,-5 1,-5 1,-5 1,-5 v -19 l -1,-5 -1,-5 -1,-4 3,-1 4,-1 h 6 l 2,2 2,3 1,4 1,5 v 15 l -1,4 -2,5 -1,4 -3,4 -2,4 -2,4 -3,4 -3,4 -2,4 -3,4 -2,4 z m -7,-72 v 13 l -1,6 -1,6 -1,6 -1,6 -2,5 -2,6 -1,6 -2,5 -3,6 -2,5 -2,6 -2,6 -2,5 -2,6 -5,-5 -4,-7 -3,-6 -4,-7 -4,-6 -5,-5 -7,-4 -8,-4 -6,1 h -11 l -4,1 h -5 l -4,1 -4,1 -4,1 -3,2 -4,2 -3,3 -3,3 -3,4 -3,4 -2,5 -3,5 -10,8 -14,-72 10,1 h 20 l 9,-1 h 10 l 10,-1 9,-1 9,-2 9,-1 10,-2 9,-1 9,-2 9,-2 9,-2 9,-2 z m -240,11 h -7 l -4,1 -4,1 -3,1 -4,1 -4,1 -4,1 h -3 l -4,1 h -4 l -3,-1 h -4 l -3,-2 -4,-2 -3,-2 4,-2 3,-1 h 4 l 3,-1 h 4 l 3,1 h 4 l 3,1 h 4 l 4,1 4,1 z m 917,0 h 3 l 3,31 h -3 z m -996,21 -5,-1 h -14 l -4,1 h -4 l -4,2 -4,1 -4,1 -4,2 -3,2 -4,2 -4,2 -3,2 -4,2 -3,1 1,-6 3,-5 4,-4 6,-3 6,-3 5,-2 6,-4 4,-4 4,2 5,1 h 5 l 5,-1 4,1 4,1 2,3 z" + class="pen1 brush0" + id="path2750" /><path + d="m 113,2610 -5,2 -5,2 -5,2 -6,2 -6,2 -6,2 -6,1 -6,1 H 50 l -6,-1 -5,-1 -6,-3 -5,-2 -5,-4 h -2 l -1,-1 -1,-2 -1,-2 v -2 l -1,-2 v -2 l 50,-7 -2,-4 -3,-3 -2,-3 -2,-3 -3,-2 -3,-3 -3,-3 -3,-3 13,-15 8,5 7,6 7,7 8,7 6,7 7,7 6,8 z" + class="pen1 brush1" + id="path2752" /><path + d="m 1853,2584 v 11 l -4,-3 -3,-2 -4,-2 h -4 l -3,-1 h -3 l -4,1 h -3 l -4,2 -3,1 -4,2 -4,1 -4,2 -5,2 -4,2 -5,2 v 5 l 43,3 v 8 l 1,1 1,1 h 1 -14 l -5,2 -4,1 -4,2 -5,3 -4,3 v 7 l 6,1 h 7 l 8,-1 8,-1 8,1 6,2 4,5 1,8 v 8 l -3,-2 -3,-2 h -3 l -3,-1 -4,1 h -6 l -3,-1 -2,2 -2,2 -2,2 -2,1 -1,2 -1,2 -1,2 v 2 l 6,6 5,2 4,-1 4,-3 4,-3 5,-2 h 5 l 6,4 1,16 1,15 1,16 -1,15 -2,15 -1,15 -3,15 -4,14 -4,14 -5,13 -7,14 -7,13 -8,13 -9,12 -10,12 -11,11 -15,-5 -11,-7 -7,-8 -5,-9 -1,-11 1,-11 2,-11 4,-13 5,-13 6,-13 6,-13 5,-14 4,-13 3,-13 1,-13 -1,-12 1,-8 v -31 l -1,-8 v -7 l -1,-7 -2,-8 -2,-6 -3,-7 -2,-6 -4,-7 -4,-5 -5,-6 -5,-5 -3,1 -2,1 -3,1 h -15 v -33 l 9,3 9,1 h 9 l 8,-1 8,-2 9,-2 8,-3 7,-2 8,-2 7,-2 h 15 l 7,2 6,3 7,5 z m -244,-7 -3,7 -3,8 -4,7 -5,8 -5,6 -5,5 -6,4 -5,3 -2,-1 -2,-1 -3,-1 -2,-1 -2,-1 h -7 l 5,-5 7,-6 6,-6 7,-6 8,-6 7,-6 7,-4 z" + class="pen1 brush0" + id="path2754" /><path + d="m 2256,2577 3,-1 11,22 -3,1 z" + class="pen1 brush1" + id="path2756" /><path + d="m 908,2811 1,-14 1,-13 2,-13 2,-13 4,-13 3,-13 4,-13 4,-13 5,-12 5,-13 5,-12 4,-12 5,-13 4,-11 5,-12 4,-11 h 5 l 3,-2 3,-3 1,-3 1,-5 1,-4 2,-5 1,-4 -2,15 -4,14 -4,14 -4,14 -5,14 -5,14 -5,14 -6,14 -5,14 -6,14 -5,14 -5,14 -5,15 -5,14 -5,14 z m 804,-209 v 18 l -3,-2 -4,-3 -4,-2 -4,-1 -4,-2 -5,-1 -4,-1 -5,-1 -5,-1 h -15 l -4,1 -5,1 h -5 l -5,2 v 3 l -2,2 -3,3 -2,2 -2,2 -1,2 1,3 4,4 3,-2 3,-1 3,-1 3,-2 4,-1 4,-1 4,-1 h 4 l 4,-1 h 16 l 4,1 4,1 4,2 v 5 l 1,2 v 1 l 1,1 2,1 2,2 2,2 2,4 2,4 2,5 1,6 2,5 v 4 l -5,10 -5,11 -4,11 -3,11 -3,11 -2,12 -2,12 -1,11 -2,13 v 12 l -1,12 -1,12 v 12 l -1,13 v 12 l -1,12 -6,9 -7,3 -8,-2 -7,-3 -8,-4 -6,-1 -5,1 -4,8 -10,-10 -7,-11 -7,-12 -4,-12 -3,-13 -2,-14 -1,-14 -1,-15 1,-15 1,-15 2,-15 1,-15 1,-15 2,-14 1,-13 1,-13 15,-39 7,7 2,-5 3,-6 4,-4 4,-4 6,-4 5,-2 6,-2 6,-1 7,-1 h 13 l 7,1 6,2 6,3 5,3 z m 228,41 -3,2 -3,3 -5,2 -4,3 -4,2 -3,3 -3,4 -1,5 h 32 l -2,2 -4,1 -3,3 -3,2 -4,2 -3,2 -3,3 -2,3 4,3 4,1 4,-1 4,-1 4,-1 4,-1 4,1 4,3 v 6 l -2,3 -3,2 h -9 l -3,1 -2,3 v 6 l 19,8 -4,15 -1,-3 -2,-1 -2,-1 h -2 l -3,3 -2,2 -3,3 v 3 l 8,7 -57,126 -5,2 -5,2 h -33 l 7,-12 8,-13 7,-14 7,-13 7,-14 6,-14 6,-14 5,-15 3,-14 3,-15 2,-15 1,-15 -1,-15 -2,-16 -4,-15 -6,-16 4,-7 6,-6 8,-6 8,-5 9,-1 7,2 5,7 z m -898,121 h -90 l 1,-9 2,-8 2,-8 4,-8 3,-7 4,-7 5,-7 4,-7 5,-7 5,-6 5,-7 5,-7 4,-7 4,-7 4,-8 3,-8 h 7 z m 703,7 -5,2 h -5 l -5,-2 -5,-3 -4,-2 -4,-1 -2,1 -3,3 2,-8 2,-7 3,-8 2,-7 2,-8 2,-7 2,-7 2,-8 2,-7 2,-8 1,-7 1,-8 1,-7 v -15 l -1,-8 3,-2 h 4 l 3,1 2,2 3,3 2,4 2,3 2,4 v 56 l -1,7 v 6 l -1,7 -1,6 -2,7 -1,6 -2,6 z" + class="pen1 brush0" + id="path2758" /><path + d="m 814,2725 h -6 l 2,-4 1,-3 v -5 l -1,-4 v -5 l -1,-5 -1,-5 -1,-5 v -15 l 1,-5 2,-5 3,-4 4,-3 5,-4 2,4 2,5 1,4 1,5 1,4 v 10 l -1,5 -1,5 -1,4 -1,5 -2,5 -2,4 -2,4 -2,4 z" + class="pen1 brush1" + id="path2760" /><path + d="m 1581,2674 -3,8 -2,7 -1,8 -1,7 v 28 l 1,7 1,7 v 7 l 1,7 v 8 l 1,8 -1,8 -1,8 -13,1 -13,1 h -92 l -12,-1 h -13 l -13,-1 h -13 l -13,-1 -12,-1 -13,-1 h -13 l -12,-2 -13,-1 -13,-1 -12,-1 -13,-1 -12,-1 -13,-1 -12,-1 -13,-1 -12,-2 -13,-1 -13,-1 -12,-1 -13,-1 -12,-2 1,-6 2,-7 1,-7 1,-7 1,-8 1,-7 1,-8 1,-7 v -8 l 1,-7 v -7 l 1,-8 v -21 l -1,-7 z m 298,36 -5,-39 5,29 z m 1016,72 h -7 l -7,-1 h -7 l -7,-1 -8,-1 -7,-2 -8,-1 -7,-1 -8,-1 -8,-2 -7,-2 -8,-1 -7,-2 -7,-2 -8,-2 -7,-2 8,-6 7,-5 8,-5 8,-5 8,-5 8,-5 9,-4 9,-4 8,-4 9,-3 9,-4 9,-3 9,-3 9,-3 9,-3 10,-2 z" + class="pen1 brush0" + id="path2762" /><path + d="m 282,2746 7,5 6,4 7,3 8,2 6,3 6,4 4,5 3,7 -9,-4 -9,-3 -10,-3 -10,-2 -9,-2 -10,-1 -10,-1 -10,-1 -11,-1 h -41 l -10,1 h -11 l -10,1 h -11 l -10,1 h -21 l -10,1 H 97 l -10,-1 H 77 l -10,-1 -9,-1 -10,-2 -9,-1 -9,-3 -8,-2 -9,-3 5,-4 1,-4 v -5 l -1,-4 -1,-4 v -9 l 4,-3 h 8 l 8,1 8,1 8,1 8,1 8,1 8,1 8,1 8,1 9,2 8,1 8,1 8,1 h 8 l 8,2 8,1 8,1 8,1 9,1 8,1 8,1 h 8 l 9,1 8,1 8,1 8,1 h 9 l 8,1 8,1 h 9 l 8,1 z" + class="pen1 brush1" + id="path2764" /><path + d="m 1950,2805 29,-80 -10,46 z m 424,-36 -12,2 -14,3 -12,2 -13,2 -14,3 -12,2 -14,2 -13,2 -13,3 -13,2 -13,2 -13,2 -13,2 -14,2 -13,2 -13,2 -13,2 -13,2 -14,2 -13,2 -13,2 -13,2 -13,2 -14,2 -13,2 -13,2 -13,2 -13,2 -14,2 -13,2 -13,2 -13,2 5,-3 5,-3 6,-2 6,-2 7,-2 6,-1 7,-1 7,-1 7,-1 7,-1 7,-2 7,-1 7,-1 7,-1 6,-2 7,-1 11,-1 h 10 l 10,-1 10,-2 10,-1 9,-1 10,-1 10,-2 9,-2 10,-2 10,-2 9,-2 10,-2 10,-2 9,-2 10,-2 9,-2 10,-3 9,-1 10,-2 10,-2 10,-2 9,-1 10,-2 10,-1 10,-1 h 10 l 11,-1 h 31 z m 11,0 7,-5 h 36 z" + class="pen1 brush0" + id="path2766" /><path + d="m 2957,2844 v 10 h -20 l -10,-1 -10,-1 -10,-1 -11,-1 -10,-1 -11,-2 -10,-1 -10,-1 -10,-2 -10,-1 -11,-1 h -29 l 9,5 10,5 10,3 10,2 12,2 11,1 11,1 h 23 l 11,1 11,1 11,2 11,2 10,3 10,5 9,6 -4,4 -5,3 -6,1 h -14 l -7,-1 -7,-1 -7,-2 -7,-1 h -13 l -6,1 -5,3 -4,4 -2,6 -2,8 -4,13 -4,13 -4,12 -4,13 -5,12 -5,13 -5,12 -5,12 -5,12 -5,12 -6,12 -6,11 -6,12 -7,11 -6,12 -7,11 v 6 l 1,6 v 6 l 1,6 1,6 2,6 1,6 1,6 2,6 1,6 1,6 1,6 1,6 1,7 1,6 v 6 l -3,-2 -3,-4 -3,-3 -3,-4 -3,-4 -3,-4 -2,-4 -3,-5 -4,-4 -2,-5 -3,-4 -3,-4 -3,-4 -3,-5 -3,-4 -3,-4 -6,-8 -6,-8 -6,-8 -5,-8 -5,-9 -5,-8 -4,-10 -4,-9 -4,-9 -3,-10 -3,-9 -3,-10 -2,-10 -2,-10 -2,-11 -1,-10 -5,-10 -6,-11 -6,-10 -6,-10 -7,-10 -7,-9 -7,-10 -7,-10 -7,-9 -6,-10 -7,-9 -6,-10 -5,-10 -5,-10 -3,-10 -3,-10 4,-3 2,-4 v -11 l 1,-6 1,-5 4,-3 6,-2 -6,-2 -6,-1 h -6 l -6,1 -6,2 h -12 l -6,-2 v -9 l 1,-4 2,-3 2,-4 3,-2 3,-2 4,-2 12,1 12,1 12,2 12,1 12,2 11,2 12,2 12,3 11,2 11,3 11,3 12,3 11,3 11,3 11,3 11,3 12,4 11,3 11,3 11,3 12,3 11,4 11,3 11,2 11,3 12,3 11,2 12,2 12,3 11,1 12,2 z M 287,2792 h 60 l -16,3 -14,4 -12,7 -11,8 -10,9 -9,11 -8,11 -7,11 -8,13 -7,12 -7,12 -8,12 -8,11 -9,9 -10,9 -10,7 3,-6 2,-6 1,-6 1,-6 -1,-6 v -6 l -2,-5 -2,-6 -2,-5 -2,-6 -3,-5 -3,-6 -2,-5 -3,-5 -3,-6 -2,-5 -4,1 -4,1 -4,2 -4,1 -4,2 -4,1 h -8 l -15,-18 3,-4 3,-3 3,-2 3,-2 3,-2 3,-2 2,-4 1,-4 -139,-18 -3,-2 -3,-3 -2,-4 -2,-5 -1,-4 v -5 l 1,-4 2,-4 10,2 9,2 9,2 9,1 10,1 9,1 h 9 l 9,1 h 36 l 9,-1 h 18 l 9,-1 h 17 l 9,-1 h 26 l 9,1 h 9 l 8,1 9,1 9,2 8,1 9,2 9,3 9,2 z" + class="pen1 brush1" + id="path2768" /><path + d="m 509,2786 -7,-1 -6,-1 -7,-1 h -7 l -7,-1 h -77 l 7,-1 7,-1 h 7 l 7,-1 h 7 l 8,-1 h 20 l 7,1 h 7 l 7,1 6,1 7,1 7,2 z m 202,19 v 2 l -174,-10 2,-5 10,2 11,1 10,1 h 77 l 11,1 h 11 l 11,2 10,1 10,2 z m 1699,-8 7,13 6,13 6,13 6,14 6,13 6,13 6,13 6,13 6,14 6,13 7,13 7,13 6,12 8,13 8,13 8,12 h -8 l -3,-1 -3,-1 -2,-2 -1,-2 -1,-4 -1,-2 -1,-1 -2,-1 h -3 l -1,-1 h -4 l -7,-11 -6,-12 -6,-11 -6,-13 -5,-11 -5,-13 -5,-12 -4,-12 -5,-13 -4,-12 -5,-12 -5,-13 -5,-12 -5,-12 -6,-12 -6,-12 z m 33,0 6,15 7,15 7,14 7,15 8,14 8,14 8,14 9,14 8,14 9,14 8,14 9,14 8,14 8,14 8,13 8,14 -7,-2 -6,-3 -6,-3 -5,-4 -4,-4 -4,-5 -4,-5 -3,-6 -3,-5 -3,-6 -3,-6 -3,-5 -4,-6 -3,-5 -4,-5 -4,-5 -67,-151 z m -61,3 5,12 5,13 5,13 5,12 5,13 6,13 5,12 5,13 5,12 5,13 5,12 5,13 4,13 5,13 5,12 4,13 h -7 l -7,-12 -6,-12 -6,-12 -6,-12 -6,-13 -5,-12 -6,-12 -5,-12 -6,-13 -5,-12 -5,-13 -5,-12 -5,-13 -5,-12 -4,-13 -5,-12 2,-1 h 2 l 2,-1 1,-1 2,-1 2,-1 z m -40,7 5,12 5,12 6,11 5,12 6,11 7,11 6,11 6,12 5,11 6,11 6,12 6,11 5,11 6,12 5,11 4,12 h -21 l -6,-11 -5,-10 -6,-11 -5,-11 -6,-11 -5,-11 -5,-12 -5,-11 -5,-11 -5,-11 -6,-11 -5,-11 -6,-11 -6,-11 -7,-11 -6,-10 1,-2 2,-2 3,-1 2,-1 3,-2 z m 359,0 1,-2 95,28 -2,3 z m -2275,4 1,12 v 12 l 1,12 v 13 l 1,12 2,12 1,12 1,12 1,12 2,12 2,12 2,12 2,11 2,12 2,12 3,11 -18,-22 -2,-11 -1,-11 -1,-11 -2,-10 -2,-11 -1,-10 -2,-10 -1,-10 -2,-10 -1,-11 v -10 l -1,-10 v -33 l 1,-11 z m 598,4 -4,3 -5,3 -5,2 -5,1 -6,1 -5,1 -6,1 h -12 l -7,-1 h -6 l -6,-1 h -5 l -6,-1 -4,-1 -5,-1 4,-3 4,-3 5,-2 5,-1 6,-1 5,-1 6,-1 h 6 l 6,1 h 11 l 7,1 5,1 6,1 h 6 z m -629,165 -5,-9 -5,-9 -3,-9 -3,-10 -2,-9 -2,-10 -1,-10 -1,-11 -1,-10 v -75 l 1,11 v 10 l 1,11 1,10 1,11 1,10 1,10 1,10 2,10 1,10 2,10 2,10 2,10 2,10 2,9 z m 82,33 h -7 l -4,-11 -3,-12 -3,-12 -3,-12 -1,-12 -2,-12 -1,-12 -1,-13 v -25 l -1,-13 v -24 l 1,-13 v -24 l 1,12 2,12 1,13 1,12 2,12 1,12 1,13 2,12 1,12 2,13 1,12 2,12 2,12 2,12 2,12 z m 1905,-33 -8,-9 -7,-10 -7,-10 -7,-10 -7,-10 -7,-10 -6,-11 -7,-10 -6,-11 -6,-11 -6,-10 -6,-11 -5,-10 -5,-10 -5,-10 -5,-9 10,7 10,7 9,8 8,9 7,9 6,10 6,10 6,11 5,11 4,11 5,11 5,12 4,12 5,11 5,11 z m -1840,15 h -8 l -2,-10 -1,-10 -2,-10 -1,-10 -1,-11 v -11 l -1,-11 -1,-11 -1,-11 v -23 l -1,-11 v -11 l -1,-11 -1,-11 -1,-11 h 7 z m 600,-166 h 26 l 13,1 h 13 l 14,1 h 27 l 14,1 h 27 l 14,1 h 14 l 14,1 h 28 l 14,1 h 28 l 15,1 h 28 l 14,1 h 28 l 14,1 h 13 l 14,1 h 27 l 13,1 h 14 l 13,1 v 5 l -461,-17 4,-7 z m -618,173 h -8 l -2,1 -2,2 -2,1 -2,1 -2,1 4,-3 3,-5 2,-6 1,-7 v -28 l -4,-7 -4,-7 -2,-8 -2,-8 -1,-8 -1,-8 v -61 l -1,-9 -1,-8 -2,-9 z m 43,-15 -8,-10 -7,-151 1,10 1,10 1,10 2,10 2,10 1,10 2,10 1,10 2,11 1,10 1,10 1,10 v 30 z m 18,-161 3,9 2,9 2,9 2,9 1,10 1,9 1,10 1,10 1,10 v 30 l -1,10 v 10 l -1,9 -2,10 -10,-11 -11,-143 z m 1753,133 -7,-6 -8,-7 -7,-7 -7,-7 -6,-8 -6,-8 -6,-8 -5,-8 -6,-9 -5,-8 -5,-8 -6,-9 -6,-9 -5,-8 -6,-8 -6,-8 5,-7 8,6 8,7 8,8 7,7 6,8 6,9 6,8 5,9 5,8 5,9 4,9 5,9 5,9 5,9 4,9 z m 313,-98 -7,-35 h 7 z m -2023,-32 3,8 2,9 1,9 1,9 v 37 l -1,9 -1,9 -2,9 -1,9 -1,9 -2,9 -2,9 -1,8 h -3 l -5,-143 z m 1099,0 1,3 -1,3 -1,4 -2,2 -3,2 -2,2 -4,1 h -3 v -6 l 2,-4 2,-2 2,-3 3,-1 3,-1 z m 943,0 h 2 l 5,32 h -5 z m -2293,161 -4,-9 -4,-9 -3,-10 -4,-9 -2,-10 -3,-10 -3,-10 -2,-10 -2,-10 -2,-11 -1,-10 -1,-10 v -29 l 1,-10 1,10 2,10 2,10 1,10 1,10 1,10 2,10 1,10 1,10 2,10 2,10 2,10 2,9 3,10 3,9 z m 287,-157 1,8 1,8 v 9 l 1,8 1,9 v 8 l 1,9 v 18 l -1,8 -1,9 -1,8 -1,8 -2,8 -3,8 -3,7 -1,-6 -1,-6 -1,-7 -1,-7 v -14 l -1,-8 v -14 l 1,-7 v -14 l 1,-7 1,-6 1,-6 1,-5 -4,-26 z m 2049,121 -3,-4 -2,-3 -3,-4 -3,-3 -4,-3 -2,-4 -3,-3 -3,-4 2,-5 v -5 l 1,-5 1,-5 1,-6 v -67 h 6 z m -2025,8 h -5 v -16 l 1,-8 v -8 l 1,-8 1,-7 v -8 l 1,-8 1,-8 v -8 l 1,-8 v -15 l -1,-8 -1,-8 -2,-8 1,7 2,8 1,8 1,8 2,8 1,8 1,9 1,8 v 33 l -1,8 -1,7 -2,7 z m 26,7 h -8 l 5,-133 1,7 3,7 1,8 1,8 2,9 1,8 1,9 v 36 l -1,8 -1,9 -1,8 -2,8 z m 1905,80 -6,-3 -5,-3 -5,-4 -4,-5 -4,-5 -4,-5 -4,-5 -3,-6 -3,-6 -3,-6 -4,-6 -3,-6 -3,-5 -3,-6 -4,-4 -4,-5 -6,-8 -5,-8 -6,-8 -5,-8 -4,-8 -5,-8 -3,-8 -4,-8 -3,-8 -3,-9 -3,-8 -2,-9 -3,-8 -2,-9 -2,-9 -1,-9 9,13 8,12 8,13 8,13 8,13 8,13 7,14 7,13 7,13 8,14 6,14 7,13 7,14 7,14 7,13 z m -1869,-208 -1,3 -2,3 -1,3 -2,4 -1,3 -1,4 -1,4 1,4 h 8 l 1,7 1,7 v 7 l 1,7 1,8 v 14 l -1,8 -1,7 -1,7 -1,7 -2,8 -2,7 -3,7 -3,7 -4,7 v -143 z m 36,0 -1,6 v 22 l 1,7 v 7 l 1,8 v 21 l -1,6 -1,7 -3,6 -2,6 -4,6 -4,5 -1,-4 v -17 l 1,-7 v -7 l 1,-6 1,-7 v -8 l 1,-7 1,-8 v -29 l -1,-7 z m -378,125 -18,-122 11,56 z m 72,-122 h 5 l 18,136 h -5 z m 1712,43 -7,-3 -6,-4 -6,-5 -6,-6 -4,-6 -4,-6 -4,-7 -4,-6 7,3 6,5 6,7 4,7 5,7 4,6 4,5 z m 534,103 -7,-146 h 12 z m -2372,8 h -7 l -4,-8 -4,-8 -3,-8 -3,-8 -3,-8 -2,-8 -3,-9 -2,-9 -2,-8 -1,-9 -2,-9 -1,-9 -2,-9 -1,-8 -2,-10 -1,-9 8,-7 3,8 3,8 3,9 2,9 2,9 1,9 2,10 1,9 2,10 1,9 2,9 2,10 2,9 2,9 4,8 z m 2524,-116 -4,2 -4,2 -2,3 -3,4 -2,4 -1,4 -2,4 -1,5 -1,5 -1,5 -1,5 -1,5 -1,5 -2,5 -1,4 -2,4 -4,7 -3,7 -4,7 -3,8 -3,7 -4,8 -3,7 -3,8 -3,7 -3,7 -4,7 -4,7 -4,7 -4,6 -4,6 -5,5 -14,29 -28,-32 1,-12 2,-13 1,-12 1,-13 1,-12 1,-13 1,-13 1,-12 v -13 l 1,-13 v -25 l -1,-13 -1,-13 -1,-13 -1,-12 h 8 l 8,1 8,2 8,2 7,3 7,3 7,3 7,3 7,4 7,2 8,3 7,2 8,1 8,1 h 9 z m -1725,-23 h 3 v 38 h -3 z m 1106,38 -26,-38 5,3 4,5 4,5 3,5 3,5 3,5 2,5 z m -1034,-36 h 2 l -2,80 h -4 z m 17,90 4,-90 h 7 z m -441,-33 7,-53 v 43 z m 463,33 v -9 l 1,-6 -1,-5 v -18 l -1,-6 v -6 l 1,-5 v -6 l 1,-6 2,-5 2,-5 3,-5 3,-4 z m 36,51 -4,-8 -3,-8 -1,-8 -2,-9 v -9 l -1,-9 v -9 l 1,-9 1,-9 1,-9 2,-8 1,-9 2,-9 3,-8 2,-9 2,-7 z m 35,18 -6,2 -4,-2 -2,-4 -1,-5 v -7 l -1,-7 -1,-5 -3,-5 15,-122 h 8 z m 26,21 -14,-7 1,-11 1,-10 1,-11 v -11 l 1,-10 v -22 l 1,-11 v -11 l 1,-10 1,-11 2,-11 1,-10 3,-10 2,-10 3,-10 2,11 1,11 1,11 v 12 l -1,11 v 11 l -2,11 -1,11 -1,11 -2,11 -1,11 -1,11 v 10 l -1,11 1,11 z m 25,8 -1,-10 -1,-10 -1,-10 v -11 l -1,-11 v -48 l 1,-12 v -12 l 1,-12 2,-12 2,-11 3,-11 2,-10 1,11 2,11 v 11 l 1,11 v 11 l -1,12 v 11 l -1,11 -1,12 -1,11 -1,12 -1,11 -1,11 -1,12 -2,11 z m 43,-8 v -10 l -1,-10 v -11 l 1,-11 v -11 l 1,-10 1,-11 1,-11 1,-11 2,-11 2,-11 2,-11 2,-11 2,-11 2,-11 2,-10 1,10 v 32 l -1,11 v 10 l -2,11 -1,12 -1,11 -2,11 -2,11 -2,10 -2,11 -2,11 -2,11 z m 1251,-133 -6,-3 -3,-4 -1,-5 1,-5 1,-5 3,-6 1,-6 1,-5 z m -1225,118 h -8 l 1,-9 1,-10 1,-10 2,-9 2,-9 2,-10 2,-9 2,-9 2,-10 2,-9 1,-10 2,-9 1,-10 1,-10 v -11 l -1,-10 1,9 v 48 l -1,10 v 10 l -1,10 -1,10 -1,10 -2,10 -1,10 -2,9 -3,9 z m 118,-146 h 3 v 100 h -3 z m 39,25 h -7 l 1,-5 v -5 l -2,-3 -2,-2 -3,-3 -4,-2 -2,-3 -2,-2 4,2 4,3 3,2 3,3 3,2 2,4 2,4 z m 90,21 -3,4 -1,-5 v -5 l 1,-7 1,-7 2,-7 2,-7 3,-6 3,-6 5,4 2,6 -1,6 -2,6 -3,6 -4,6 -3,6 z m -1394,46 -3,-5 -3,-5 -3,-5 -2,-5 -3,-6 -2,-6 -2,-5 -1,-7 -2,-5 v -6 l -1,-6 v -12 l 1,-6 1,-5 2,-6 z m 1240,8 -3,-6 -2,-6 -1,-6 -1,-6 -1,-6 v -7 l 1,-6 1,-6 v -7 l 1,-6 1,-6 1,-6 1,-6 1,-7 v -5 l 1,-6 z m -72,36 10,-129 -3,108 z m 21,-11 12,-118 -8,115 z m -90,36 -1,-9 v -27 l 1,-9 1,-9 1,-9 2,-9 1,-9 2,-9 1,-9 2,-9 1,-9 2,-9 1,-9 1,-9 1,10 v 28 l -1,10 v 8 l -2,9 -1,9 -1,9 -2,8 -2,9 -1,9 -2,9 -2,8 -1,9 z m 112,-87 h 3 v 33 h -3 z m -337,-93 h 4 v 39 h -4 z" + class="pen1 brush0" + id="path2770" /></g><g + style="fill-rule:evenodd;stroke-linecap:round" + id="g4581" + transform="matrix(0.00677919,-0.00677919,0.00677871,0.00677871,84.886261,82.412249)" + inkscape:export-filename="g4581.png" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"><path + d="M 1,4 H 2928.207 L 2772.6967,377.13117 3031,313.34539 3031,652 h -116 l 0,193 h 116 V 3044 H 1 Z" + class="pen1 brush1" + id="path4547" + sodipodi:nodetypes="ccccccccccc" /><path + d="m 1512,2119 12,1 13,2 11,4 11,5 11,7 10,8 9,9 9,10 8,12 6,11 7,14 5,14 4,14 3,15 1,16 1,16 v 397 l -1,16 -1,16 -3,15 -4,15 -5,13 -7,14 -6,12 -8,11 -9,10 -9,9 -10,8 -11,7 -11,5 -11,4 -13,3 h -24 l -12,-3 -12,-4 -11,-5 -10,-7 -10,-8 -9,-9 -9,-10 -8,-11 -7,-12 -6,-14 -5,-13 -4,-15 -3,-15 -2,-16 v -429 l 2,-16 3,-15 4,-14 5,-14 6,-14 7,-11 8,-12 9,-10 9,-9 10,-8 10,-7 11,-5 12,-4 12,-2 z" + class="pen1 brush0" + id="path4551" /><path + d="m 1512,2121 12,1 12,2 11,5 v -1 l 11,5 10,7 10,8 9,9 9,10 7,11 7,12 6,13 5,13 4,15 v -1 l 3,15 2,16 v 429 l -2,16 -3,15 v -1 l -4,15 -5,14 v -1 l -6,14 v -1 l -7,12 -7,12 v -1 l -9,11 -9,8 -10,8 -10,7 -11,5 -11,4 -12,2 -12,1 -12,-1 -12,-2 h 1 l -12,-4 -11,-5 h 1 l -11,-7 -10,-8 h 1 l -9,-8 -9,-11 v 1 l -8,-12 -6,-12 v 1 l -7,-14 1,1 -5,-14 -4,-15 v 1 l -3,-15 -2,-16 -1,-16 v -397 l 1,-16 2,-16 3,-15 v 1 l 4,-15 5,-13 h -1 l 7,-13 6,-12 8,-11 9,-10 9,-9 h -1 l 10,-8 11,-7 h -1 l 11,-5 v 1 l 12,-5 h -1 l 12,-2 12,-1 v -5 l -12,1 -12,2 h -1 l -12,4 v 1 l -11,5 -11,7 -10,8 -9,9 -9,10 v 1 l -8,11 -7,12 -6,14 h -1 l -5,14 -4,14 v 1 l -3,15 -1,16 -1,16 v 397 l 1,16 1,17 3,14 v 1 l 4,14 5,14 1,1 6,13 7,12 8,12 9,10 9,9 10,8 v 1 l 11,7 11,4 v 1 l 12,4 h 1 l 12,2 12,1 12,-1 h 1 l 12,-2 12,-4 v -1 l 11,-4 h 1 l 10,-7 v -1 l 10,-8 h 1 l 9,-9 9,-10 8,-12 7,-12 6,-13 v -1 l 5,-14 4,-14 v -1 l 3,-14 2,-17 1,-16 v -397 l -1,-16 -2,-16 -3,-15 v -1 l -4,-14 -5,-14 -6,-14 -7,-12 -8,-11 v -1 l -9,-10 -9,-9 h -1 l -10,-8 -10,-7 h -1 l -11,-5 v -1 l -12,-4 -12,-2 h -1 l -12,-1 z" + class="pen1 brush1" + id="path4553" /><path + d="M 132,182 H 1673 V 889 H 132 Z" + class="pen1 brush0" + id="path4555" /><path + d="m 135,182 -3,3 h 1541 l -3,-3 v 707 l 3,-3 H 132 l 3,3 V 182 l -5,-2 V 891 H 1675 V 180 H 130 Z" + class="pen1 brush1" + id="path4557" /><path + d="m 1055,1524 1,-24 1,-23 3,-23 4,-23 5,-22 6,-22 8,-21 8,-21 9,-20 10,-20 11,-19 12,-19 13,-18 14,-17 14,-17 15,-16 16,-15 17,-15 17,-13 18,-13 19,-12 19,-11 20,-10 20,-10 21,-8 21,-7 22,-6 22,-5 23,-4 23,-3 23,-2 24,-1 24,1 23,2 23,3 23,4 22,5 22,6 21,7 21,8 20,10 20,10 19,11 19,12 18,13 17,13 17,15 16,15 15,16 14,17 14,17 13,18 12,19 11,19 10,20 9,20 8,21 8,21 6,22 5,22 4,23 3,23 2,23 v 47 l -2,24 -3,23 -4,22 -5,22 -6,22 -8,22 -8,20 -9,21 -10,20 -11,19 -12,18 -13,18 -14,18 -14,16 -15,17 -16,14 -17,15 -17,14 -18,12 -19,12 -19,11 -20,11 -20,9 -21,8 -21,7 -22,6 -22,6 -23,4 -23,3 -23,1 -24,1 -24,-1 -23,-1 -23,-3 -23,-4 -22,-6 -22,-6 -21,-7 -21,-8 -20,-9 -20,-11 -19,-11 -19,-12 -18,-12 -17,-14 -17,-15 -16,-14 -15,-17 -14,-16 -14,-18 -13,-18 -12,-18 -11,-19 -10,-20 -9,-21 -8,-20 -8,-22 -6,-22 -5,-22 -4,-22 -3,-23 -1,-24 z" + class="pen1 brush0" + id="path4559" /><path + d="m 1057,1524 1,-24 2,-23 3,-23 4,-23 v 1 l 5,-22 6,-22 7,-22 v 1 l 8,-21 9,-20 11,-20 11,-19 12,-19 12,-18 14,-17 v 1 l 14,-17 15,-16 16,-15 17,-15 17,-14 v 1 l 18,-13 19,-12 19,-11 h -1 l 20,-10 20,-9 21,-8 21,-7 22,-6 22,-6 22,-4 23,-3 23,-1 24,-1 24,1 23,1 23,3 22,4 22,6 22,6 21,7 21,8 20,9 20,10 h -1 l 20,11 18,12 18,13 v -1 l 18,14 h -1 l 17,15 16,15 15,16 15,17 v -1 l 13,17 13,18 11,19 12,19 10,20 9,20 8,21 v -1 l 7,22 6,22 6,22 v -1 l 3,23 3,23 2,23 1,24 -1,23 -2,24 v -1 l -3,23 -3,23 -6,22 -6,22 -7,21 -8,20 -9,21 -10,19 -12,19 -11,19 -13,18 -13,17 -15,17 -15,16 -16,15 -17,14 h 1 l -18,14 -18,12 -18,12 -20,11 h 1 l -20,10 -20,10 v -1 l -21,8 -21,8 -22,6 -22,5 -22,4 -23,3 -23,1 -24,1 -24,-1 -23,-1 -23,-3 -22,-4 -22,-5 -22,-6 -21,-8 -21,-8 v 1 l -20,-10 -20,-10 h 1 l -19,-11 -19,-12 -18,-12 -17,-14 -17,-14 -16,-15 -15,-16 -14,-17 -14,-17 -12,-18 -12,-19 -11,-19 -11,-19 -9,-21 -8,-20 -7,-21 -6,-22 -5,-22 -4,-23 -3,-23 v 1 l -2,-24 -1,-23 h -5 l 1,23 1,24 3,23 4,23 6,22 6,22 7,21 v 1 l 8,21 10,20 10,20 11,19 12,19 13,18 14,17 v 1 l 14,16 15,16 16,15 17,15 18,14 18,13 18,12 20,11 20,10 20,9 v 1 l 21,8 22,7 21,6 23,5 23,4 23,3 23,2 24,1 24,-1 23,-2 h 1 l 22,-3 23,-4 23,-5 21,-6 22,-7 21,-8 v -1 l 20,-9 20,-10 h 1 l 19,-11 18,-12 18,-13 18,-14 17,-15 16,-15 15,-16 14,-16 v -1 l 14,-17 h 1 l 12,-18 12,-19 11,-19 11,-20 9,-20 8,-21 v -1 l 7,-21 7,-22 5,-22 4,-23 3,-23 1,-24 1,-23 -1,-24 -1,-23 v -1 l -3,-23 -4,-22 v -1 l -5,-22 -7,-22 -7,-21 v -1 l -8,-20 -9,-20 -11,-20 v -1 l -11,-19 -12,-19 -12,-18 h -1 l -14,-17 -14,-17 -15,-16 -16,-15 -17,-15 -18,-13 v -1 l -18,-12 -18,-12 -19,-11 h -1 l -20,-11 -20,-9 -21,-8 -22,-8 -21,-6 -23,-5 -23,-4 -22,-3 h -1 l -23,-1 -24,-1 -24,1 -23,1 -23,3 -23,4 -23,5 -21,6 -22,8 -21,8 -20,9 -20,11 -20,11 -18,12 -18,12 v 1 l -18,13 -17,15 -16,15 -15,16 -14,17 -14,17 -13,18 -12,19 -11,19 v 1 l -10,20 -10,20 -8,20 v 1 l -7,21 -6,22 -6,22 v 1 l -4,22 -3,23 v 1 l -1,23 -1,24 z" + class="pen1 brush1" + id="path4561" /><path + d="m 1235,1524 v -15 l 2,-14 1,-15 3,-13 3,-13 4,-14 4,-13 10,-25 6,-12 7,-11 16,-23 7,-10 9,-10 10,-9 9,-10 10,-9 11,-8 22,-15 11,-7 13,-6 25,-10 13,-5 13,-4 13,-3 14,-2 14,-2 14,-1 h 15 v -5 h -15 l -15,1 -14,1 -13,3 -15,3 -13,4 -13,4 -26,11 -12,6 -12,7 -22,16 -11,8 -11,9 -9,10 -9,9 -10,11 -8,10 -15,23 -7,12 -6,12 -11,26 -5,13 -4,13 -3,14 -2,14 -2,14 -1,15 v 15 z m 279,-279 h 14 l 14,1 14,2 14,2 13,3 14,4 12,5 13,4 13,6 12,6 11,7 11,8 22,15 10,9 10,10 9,9 9,10 8,10 7,12 8,11 7,11 6,12 6,13 4,12 5,13 3,14 4,13 2,13 2,15 1,14 1,15 h 5 l -1,-15 -1,-15 -1,-14 -3,-14 -3,-14 -4,-13 -4,-13 -6,-13 -6,-13 -6,-12 -7,-12 -7,-12 -8,-11 -8,-10 -10,-11 -8,-9 -10,-10 -11,-9 -11,-8 -10,-8 -12,-8 -12,-7 -12,-6 -13,-5 -13,-6 -13,-4 -14,-4 -13,-3 -14,-3 -14,-1 -15,-1 h -14 z m 279,279 -1,13 -1,15 -2,14 -2,13 -4,14 -3,13 -5,13 -4,13 -6,12 -6,12 -7,12 -8,11 -15,21 -9,10 -9,10 -10,9 -10,10 -22,15 -11,7 -11,7 -12,6 -13,6 -13,5 -12,4 -14,4 -13,3 -14,3 -14,1 -14,1 -14,1 v 6 l 14,-1 15,-1 14,-2 14,-3 13,-3 14,-3 13,-5 13,-5 13,-6 12,-6 12,-7 12,-7 10,-8 11,-8 11,-10 10,-9 8,-10 10,-10 8,-11 8,-11 7,-11 7,-13 6,-12 6,-12 6,-14 4,-12 4,-14 3,-13 3,-14 1,-15 1,-15 1,-13 z m -279,278 -15,-1 -14,-1 -14,-1 -13,-3 -14,-3 -13,-4 -13,-4 -13,-5 -12,-6 -13,-6 -11,-7 -11,-7 -11,-8 -11,-7 -10,-10 -9,-9 -10,-10 -9,-10 -15,-21 -8,-11 -7,-12 -6,-12 -5,-12 -5,-13 -4,-13 -4,-13 -3,-13 -3,-14 -1,-14 -2,-15 v -13 h -5 v 13 l 1,15 2,15 2,13 3,14 4,14 5,12 5,14 6,12 6,12 7,13 7,11 8,11 8,11 10,10 9,10 9,9 11,10 11,8 11,8 11,7 12,7 12,6 13,6 13,5 13,5 13,3 14,3 14,3 14,2 15,1 15,1 z M 227,493 h 1319 v -5 H 227 Z m 0,167 h 1319 v -6 H 227 Z m 0,-321 h 1319 v -6 H 227 Z" + class="pen1 brush1" + id="path4563" /></g></g><style + id="style2720">.brush0{fill:#fff}.pen1{stroke:none}.brush1{fill:#000}</style><style + id="style4545">.brush0{fill:#fff}.brush1{fill:#000}.pen1{stroke:none}</style></svg>
diff --git a/intermediate/yokohama.png b/intermediate/yokohama.png line changes: +0/-0 index 0000000..036ceab --- /dev/null +++ b/intermediate/yokohama.png
diff --git a/mplay.pas b/mplay.pas line changes: +13/-0 index 0000000..c769dfb --- /dev/null +++ b/mplay.pas
@@ -0,0 +1,13 @@ +program Mplay; +uses Music, Util, Apricot; + +var i: Integer; + +begin + if ParamCount < 1 then + Die('specify a file'); + LoadMusic(ParamStr(1)); + musicPlaying := true; + repeat until KeyPressed or NOT musicPlaying; + StopMusic; +end.
diff --git a/music.pas b/music.pas line changes: +62/-0 index 0000000..7f8f693 --- /dev/null +++ b/music.pas
@@ -0,0 +1,62 @@ +unit Music; +interface + +type PsgData = record + data: PChar; + len: Word; + end; + +procedure LoadMusic(const filename: String); +procedure SfxTakeoff; + +var currentSong: PsgData; + +implementation + +uses Util; + +const takeoff: array[0..113] of Byte = ( + $04, $e7, $c0, $03, $fd, $84, $03, $c7, $03, $fb, $84, $03, $c0, $04, $f9, $84, + $03, $c7, $04, $f7, $84, $03, $c0, $05, $f5, $84, $03, $c7, $05, $f3, $84, $03, + $c0, $06, $f1, $84, $03, $c7, $06, $f0, $84, $02, $c0, $07, $84, $02, $c7, $07, + $84, $02, $c0, $08, $84, $02, $c7, $08, $8d, $02, $ca, $08, $8d, $03, $cd, $08, + $f1, $8d, $03, $c0, $09, $f3, $8d, $03, $c3, $09, $f5, $8d, $03, $c6, $09, $f7, + $8d, $03, $c9, $09, $f8, $8d, $03, $cc, $09, $f9, $8d, $03, $cf, $09, $fa, $8d, + $03, $c2, $0a, $fb, $8d, $03, $c5, $0a, $fc, $8d, $03, $c8, $0a, $fd, $8d, $01, + $ff, $ff +); + +procedure LoadMusic(const filename: String); +var i, actualLen: Word; + f: File; +begin + { clean up existing song } + if currentSong.data <> nil then + FreeMem(currentSong.data, currentSong.len); + + { load new song } + Assign(f, filename); + Reset(f, 1); + currentSong.len := FileSize(f); + GetMem(currentSong.data, currentSong.len); + BlockRead(f, currentSong.data^, currentSong.len, actualLen); + Close(f); + if actualLen < currentSong.len then + Die('could not load all of ' + filename); + musicStartPtr := currentSong.data; + musicDataPtr := currentSong.data; + musicDelayCount := 0; + musicPlaying := false; + musicEndPtr := musicStartPtr + currentSong.len; +end; + +procedure SfxTakeoff; +begin + musicStartPtr := @takeoff; + musicDataPtr := musicStartPtr; + musicEndPtr := musicStartPtr + SizeOf(takeoff); + musicDelayCount := 0; + musicPlaying := true; +end; + +end.
diff --git a/music/brain_stew.mid b/music/brain_stew.mid line changes: +0/-0 index 0000000..ee4723c --- /dev/null +++ b/music/brain_stew.mid
diff --git a/music/bstew.sn b/music/bstew.sn line changes: +4/-0 index 0000000..29c1235 --- /dev/null +++ b/music/bstew.sn
@@ -0,0 +1,4 @@ +�#��������������������������������������������������#��������������������������������������������������#����������������������������������������������������������������������������������������#���������������������������������������������������������������������������������������������#������������������������������������������������������������ +���������������������������#�������������������������������������������������������������������������������������������������������������������#��������������������������������������������������#��������������������������������������������������#����������������������������������������������������������������������������������������#���������������������������������������������������������������������������������������������#������������������������������������������������������������ +���������������������������#�������������������������������������������������������������������������������������������������������������������#����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������#����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������#����������������������������������������������������������������������������������������#���������������������������������������������������������������������������������������������#������������������������������������������������������������ +�����������������������������#�������������������������������������������������������������������������������������������������������������������#����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������#�������������������������������������������������������� \ No newline at end of file
diff --git a/music/btlboog.mid b/music/btlboog.mid line changes: +0/-0 index 0000000..729f6e4 --- /dev/null +++ b/music/btlboog.mid
diff --git a/music/btlboog.sn b/music/btlboog.sn line changes: +1/-0 index 0000000..d8df2ae --- /dev/null +++ b/music/btlboog.sn
@@ -0,0 +1 @@ +�,�����,�����#�����!���������������!�����#�����,�����,�����#�����!���������������!�����#���� ���,��׆���,������#�߆�����!���������������!�����#������,������,�����#������!��������������������� ��!��������#������ ���5�����5�����,�����'�����#�����#�������'�������,������ ��5��������5�����,�����'�����#������#�������'�����,������ � ��!��Ն���!������!�߇�� ���!��Շ���!������!�������!������!���߃�� � ����ׇ����������߆�� �����׆����������߇�� �����ׇ������߃�����ׁ�,�����,�����#�����!����������������������!��������#������ ��5��������5�����,�����'�����#�������#��������'�����,������ � ��!��Ն���!������!�߇�� ���!��Ն���!������!�߆�� ���!��Շ���!���߃�� � ����Շ����������߆�� �����Շ����������߇�� �����Ն������߂�� ���,��Ն���,�����#�����!���������������!�����#������,�ߎ����������������� �����ӎ�����߆�� �����ӎ�����߇�� �����ӎ��߇ �����ӎ�����߇�� �����ӎ�����߆�� �����ӎ��߆ � ��!�� ӎ����!�߆�� ���!�� Ӎ����!�߇�� � ��!�� ӎ��߇ ���#��Ӎ���#�����#���߃���#�������������� �����ӎ�����߆�� �����ӎ�����߇�� �����Ӎ��߇ �����ӎ�����߇�� �����ӎ�����߆�� �����ӎ��߆ � ��!�� ӎ����!�߆�� ���!�� ӕ��ߋ��� ӆ߃������� � ����ӎ���!�����!�������#�����'���� ���,��׆���,������#�߆�� ���!��ׇ�������������!�����#������,����߂��,��ׇ���#�����!�߆������������������� ��!��������#������ ���5�����5�����,�����'�����#�����#�������'�������,������ ��5��������5�����,�����'�����#������#�������'�����,������ � ��!��׆���!������!�߇�� ���!��ׇ���!������!�������!������!���߃�� � ����ׇ����������߆�� �����׆����������߇�� �����ׇ������߃�����ׁ�,�����,�����#�����!����������������������!��������#������ ��5��������5�����,�����'�����#�����#����������'�����,������ � ��!��׆���!������!�߇�� ���!��׆���!������!�߆�� ���!��ׇ���!���߃�� � ����׆����������߆�� �����ׇ����������߇�� �����׆������߂�����,���ӎ߇�ӆ߃�ә߇�Ӝ�ߥ� \ No newline at end of file
diff --git a/music/elise.mid b/music/elise.mid line changes: +0/-0 index 0000000..98db77d --- /dev/null +++ b/music/elise.mid
diff --git a/music/elise.sn b/music/elise.sn line changes: +3/-0 index 0000000..a9ccaf1 --- /dev/null +++ b/music/elise.sn
@@ -0,0 +1,3 @@ +�����������������������������������#�������݅�����߆������������/݉���߅��������� ��������#�������߅���������������������������������������������#������������������������/��������������������������#ى���߅�������������������������������������������#������������������������/ڈ���߇��چ����߉� �����������#�����������������߇������������������������������#�������������؈������������/ڋ��߆��ۇ���߉�������������#܈���߆������������������و���߃�׃���� ��߃������������'ى��߉��؆���߉����������#ډ���߅��ه����߈����������������������������������������������������������������������������������������������������������#��������߆���؈������������/ۉ���߅�������߈� ����������#ڊ���߆��������߈����������������������������������������#ى���߅��ه���߇�փ�����߇�/���������߆��ׁ�����߅��������#���׃��߁�������������������������������� ����������'�������������������������#�������߅��؆�����߄���������/������߉����������������������������������������������������������������������������������������������������������#������������و���߅�������/ى��߈��ۅ����߇� ������������#ڊ���߄�����������߆��������������������������������#�����ۈ��߃�������߆��������/ډ���߆��������ߊ������������#�����ځ����߅�����������������ل�߁�������ڃ�߁����������������߆��ه���߄�����ن������������������������ ����و���� �߇�ׁ��������������������������ۅ����������������ۆ�����������������ه�����������߁������������ ���ځ��������߂�������ك��������؈��������������߁�������؆߁�����������߁��� ��؇��������߁����������������������������������������������� �����ڃ����߃�� ׃��߂��������� ����� ڃ���߂� ����� ڃ���߂�� ���� ���߃������� ۇ��������������ڂ����������߂� �����ڃ����߁������������������� �����߃�������� ����� ك���߂������ ق��߃� ��� �� ׃��߂�� ����� و���߃����������׃������������߁ +������ك������������� +������ك����������������������������������߁�������������������������������������������������������������������� \ No newline at end of file
diff --git a/music/fly2moon.mid b/music/fly2moon.mid line changes: +0/-0 index 0000000..c9d8b33 --- /dev/null +++ b/music/fly2moon.mid
diff --git a/music/fly2moon.sn b/music/fly2moon.sn line changes: +1/-0 index 0000000..c453bfe --- /dev/null +++ b/music/fly2moon.sn
@@ -0,0 +1 @@ +��ֆ�#֕߂�֖߁�ו߃�֕��և߉�ֆ��י�ח��ؙ��ח�י�֘�ؗ��ח�ؙ��ؖ�ؑ�����ו������������ؓ߁������������߄�ؔ߃�ٖ߁�ؐ������߁�ق��ߋ���ք�����ז�����������������ؗ����� ٍ������߃�׃ߌ�ׂ߂�ՙ��֗�ؘ߁�ُ��������׃�����ؗ����ً�������߁�߆���׃߁�ה��߁�����������ט�����ؓ߃�،����������������������������߄�ׇ��ؕ�ג�����ؖ����߁� ؉߆� փ���Ձ�����������ט��ّ�؆��֑߂��'ٍ���߁�#ٌ�������� ���؎�����߁��٘��ڕ߁�ؒ߄�ז߁�ؗ��ז߄�ؓ߂�#ؑ����߂�����������������߂�ؖ߁�ڕ߁�ؔ߅�'���߃�#ّ߃����������߃��َ���߂�Ԗ߃�ד߃�������߂�֍����߂�؍����߁�Յ߆�� ���ւ߃�Տ�������߁�ז߁�ؐ�����߁�ڒ���߁�׃������������ ؓ����߁�ڎ����������� ��َ���������ؖ��� ����ׄ��߇�ׁ߄�֍� ������ؑ�������������������߁�ד߁�����Ս�����������߁�ٍ����������ו����߁�ۄ��߁�ؑ�����߁�ُ���߂�ׁ�������� ������؎�����߃�ԑ����߁� ���������߂��� �����������߂�ف����������Ֆ߁� ��!Ԋ�����������Ԃ���������߃����߂����������߂�������߁�֓������� ֆߊ�������������߁�ؗ߁�ؑ߂�߁�ߋ�׃߂� ֖��ז��ؖ߂�ה߄���փ������߁�������߅� ���߂���ׂ�ߑ� ���Ԝ����߂�Յ߃������Ԝ�߃�����߂�����������߄��������߅��Ր�������օߊ����Ղ߃�'֔�߁�Ղ���߂���Ձ��������߂���Փ߃� Օ߁�߁�ՙ��Ֆ߁�ԗ߁�֓߃�Տ� \ No newline at end of file
diff --git a/music/fndngio.mid b/music/fndngio.mid line changes: +0/-0 index 0000000..546d3d5 --- /dev/null +++ b/music/fndngio.mid
diff --git a/music/fndngio.sn b/music/fndngio.sn line changes: +24/-0 index 0000000..7024565 --- /dev/null +++ b/music/fndngio.sn
@@ -0,0 +1,24 @@ +��������������� +��� ����� ��� +���/؎����������������ߎ��/؎��������������������ߎ��/َ� �������������� ����ߎ��/؎���������� ����������ߎ��/؎����������������ߎ��/؎������������/َ�������������� +����� ���ߎ � +����/֬���/؎����������������ߎ��/؎��������������������ߎ��/َ� �������������� ����ߎ��/؎���������� ����������ߎ��/؎����������������ߎ��/؎������������/َ�������������� +����� ���ߎ � +����/֎����������ߎ�؇�����������َ� +��� ���ن��� ��� +������ߎ�����؎� +����������������*َ���� �����؇������������ߎ������������؆�����������؎� +��� ���ن���� ��� +������ߎ������� � +����#ٖ� ��������������� ������� ��� +������ +����������������������������������������������������������������������������������������������������� � +���� � +����֎ � ����Վ���֎� ���� +��� � ����/ֆ���� ��� +������ ����� +���������� +��ߎ��������� �����*َ����*���*؎��ߎ����������#؎�*���/؎����������������ߎ��/؎��������������������ߎ��/َ� �������������� ����ߎ��/؎���������� ����������ߎ��/؎����������������ߎ��/؎������������/َ��������������� +����� ���ߎ������� +����ن�؎���ߎ� ��َ�����߆�����������/َ������������������ߎ��/َ� �����������ߎ� �������/َ����������ߎ����� +��� ���������/�����߁�����/������߁��� \ No newline at end of file
diff --git a/music/funk.mid b/music/funk.mid line changes: +0/-0 index 0000000..8cb4e6b --- /dev/null +++ b/music/funk.mid
diff --git a/music/funk.sn b/music/funk.sn line changes: +1/-0 index 0000000..2fdc004 --- /dev/null +++ b/music/funk.sn
@@ -0,0 +1 @@ + � ����׃������߃ � ����ք��߅����!���������� ��֊��'�߃��!���� � ����ׂ��������߃����� � ��!��փ������߄�� ����� ׂ��������߃���������� ����� փ�߂�� � ����ׅ�߈�� ����������߃�� � ����������߂�� ����� �� ���߃�� � ���� ׃�������������������߃���������� � ����ׂ�������߃ � ����փ������������������ ��֊��'�߂���!���� ����� ׂ���������������������߂�#��������� � ����׃��������߂��������� � ����ք�߂�� � ����׃�������߂��������� � ����ք�߁�� ���#�� ׃��#����߃ ���#�� ք��߅�#���'�����2�����#���� ����� ׂ��������߃ ����� փ�������������������� ֊��#�߂������ � ����׃��������߃����� � ����փ�����߅�� � ����׃��������߂����� � ����փ�����߅�� �����׃�������߂��������� �����ք�߁�� �����׃�������߃����� �����ւ������߄�� � ����ׂ�������߃ � ����փ��������!�����'���� � ����֊�߁�� � ����ׂ����������������!����߂�'�����'�����!���� ����� ׃���������������������߂��������������� �����׃�������߃���������� �����ք�߁�� ����� ׂ��������߃����� ����� ւ������߄�� ���#�� ׂ���#�����߃ ���#�� փ�����#���'�����2�����'���� ����� ׃��������߃ ����� փ�������������#�����#��������� � ����׃�������߂����� � ����փ�����߄�� � ����׃�������߃���������� � ����ք�߁�� �����ׂ��������߃���������� �����փ�߂�� � ����ׂ��������߃���������� � ����փ�߂�� � ����ׂ��������߃ � ����փ��������!�����'�����!�����'�����!���� � ����׃��������߂ � ����ք��������!�����'�����'�����!���� ����� ׃������߃ ����� ք��߅����������������������� � ����ׂ��������߃���������� � ����փ�߂�� � ����ׂ��������߃����� � ����փ�����߅�� ���#�� ׃���#�����߃ ���#�� փ�����#���'�����2�����'���� ����� ׃�������������������߃�#�����#��������� � ����ׂ��������߃����� � ����ւ������߄�� � ����ׂ��������߃���������� � ����փ�߂�� �����ׂ��������߃���������� �����փ�߂�� � ����׃��������߃���������� � ����փ�߂�� � ����׃��������߂ � ����ք��������!�����'�����!����'�����!���� � ����ף�ߪ������ \ No newline at end of file
diff --git a/music/gavotte.mid b/music/gavotte.mid line changes: +0/-0 index 0000000..a241a10 --- /dev/null +++ b/music/gavotte.mid
diff --git a/music/gavotte.sn b/music/gavotte.sn line changes: +15/-0 index 0000000..de01527 --- /dev/null +++ b/music/gavotte.sn
@@ -0,0 +1,15 @@ +��ӌ���������#����ӊ����������������*���߄���ӌ��߆�� �Ӌ��߆���ӌ��߆���Ӌ��߅�#��ӌ���������/�߉�ӄ�������������#�����Ӌ����������������*�������߅�� +��ӌ�������������#���ӌ��������������߄ �����Ә���/�߆��Ӂ�����������#������������������*���߆���ӌ��߆ ��� ��Ӌ��߄���ӌ��߆���Ӌ��߄�#��ӌ���������/�ߊ����������������#�����Ӌ��������������*�����߄�� +��ӌ������������#��������������������������������/�߃��� �����ӌ��������������������������������#�����߅���ӌ���� �������������������߂ �����Ә�*���߃������ӌ���������ӊ���߄����ӌ��߄���Ӌ��߅����#�����������������߄�� +�ӌ��߆�� �Ӌ��߆���ӌ��߇�������߅������������� ��/�����߁������ӌ����� �� +�������� +��Ӊ߁� � +Ӌ��� �߆�/� �ӌ�� ����*��������� �*����Ӌ�� �Ӊ���%��������� �%����ӌ����#���� ��� +������������/� ����߃�#���������#�ߍ���ӌ�������������������������������#�����߅����ӌ���� ����������������������߄�� +��Ә�*����������ӌ��߂���� ��Ӌ��߁������ӌ��߆���Ӌ��߅����#�����������������ߋ�� +�ӌ��߄�� �Ӌ��߄���ӌ��߄�������߄���������� ��/�����߃������������� �� +������� +�ӊ߁� � +Ӌ��� �߅�/� �ӌ�� ����*� +���߁��� �*����ӌ� ���%�����߅�%���ӌ�����#���� ��� +��������������/� ���������#���Ә���#���߁� \ No newline at end of file
diff --git a/music/lisztwal.mid b/music/lisztwal.mid line changes: +0/-0 index 0000000..631e5de --- /dev/null +++ b/music/lisztwal.mid
diff --git a/music/lisztwal.sn b/music/lisztwal.sn line changes: +25/-0 index 0000000..ded1fab --- /dev/null +++ b/music/lisztwal.sn
@@ -0,0 +1,25 @@ +�� ��� +������'�� +�������� +������� � ���������߅���� �������� +�߆����'��� +������ +������� +������� +�� �����߁������ ���������߁� +����'����� +������ +�������� � ���������߆���؆��߆��'������� �����ۇ��߇�����������'���������������� �����׆����߅� �����ׅ����߅����'����������������������������߇ ���������߆��'�������������������������������� �����؇�� ��߇��� ��'،߃���ׇ�߇�������߇� �� � +����ۇ�߆ �����ڇ�߃�����������߆� � ����ه�߅��� �������� ��� ��ׇ���߁��� �������������� ��ه߆�ׇ߃���� ��� +���ڇ�߆����ه�߇��������ׇ�߆ � ����ن����� ������ �����؇�߆� +����؆�߆������ ��'����߆�'ׂ��߂�ׂ�����ߋ� +������������������߂�Վ��������߅��������׃����ߌ� +����������Շ���������ه�������������#Ղ����� ��߅��� ���� +���߃��#�� �������� ���߁ � +����ׄ���� ������������߇����׆��������׆���߆ +�� ����ֆ����߉����#Չ���߄ �����׆���߅����������߃�� ����� +����#ۆ�߄������#׆�߂��������ه�߅������ ���߇��� ������� ��� +��؇�߄����� +��׆�߂������ ������������������چ�߈�� ����� +����ۇ�߄� �����ڇ�߇��������ن���� � ����ڇ�߆�� ������������������ � +����؇�߆����� ��'�����߇� \ No newline at end of file
diff --git a/music/polkatim.mid b/music/polkatim.mid line changes: +0/-0 index 0000000..1c17e0a --- /dev/null +++ b/music/polkatim.mid
diff --git a/music/polkatim.sn b/music/polkatim.sn line changes: +8/-0 index 0000000..cca8837 --- /dev/null +++ b/music/polkatim.sn
@@ -0,0 +1,8 @@ +�ֆ� �߃�� �����ل���� ��� �����׃����� ������'ք�����߁�� �����ׅ����߄�� �����ׄ��� �����������؆�߆���������߅� ��Չ߃������������߅��� ���� � ���������߆ +������م����߅�� ��ք��߄ � ����م������ +������ل�����߅�� ��ׅ��߄ � ��������߅� ���������߅����'߅�����߇���ׅ�������#փ��߄ �����م���߅� ����������߅����#؆��߄ �����ل����߅� �����ׄ���߅���ք��߅����� ����� ��߄� ��� ��ׄ��� ��߅���ׅ��߂ ��� �����߆ ��� �����߆� ��׃��߃ � ���������߄�� �����ׄ��� �߅����ׄ�����߃ +�� ������������ � ����ׄ�߁���ֆ���߄ +������ׅ����߄���� ��ׄ���߅� �����߂�������ֆ��߅� � ����օ����߄���ׇ߅ �����ׄ��߇ �����օ��߆�'Ԉ߄ �����օ��߆ �����Յ��������� �����׆��߆���������߆�Ԉ߄ �����ք��߁���� � ����օ��������� �����ֆ��߆ �����؆�����Ԉ߄ �����ׅ��߇ �����׆��߅�Ո߄ �����օ�������������߅�'ֈ߅��� �������Ն����߄�����#Ԉ߄ �����ׅ��߆ �����ֆ�����#߄ �����ׅ��߆ �����օ���߅�ԇ߅ � ����ֆ��߅ � ����Ն��߅�����֍��� ������������Չ߃ � ����օ��߆ � ����Յ��߆�։߃ � ����ׅ��߇ � ����Ն�����ӆ߆ �����Ԅ��߇���������߈ �����ӆ��ߓ��������'օ�������������߁ �����Ճ��������� ��ք��� ������������ � ����ׄ��������� ���ք��� ���������߁��#�� +����������� � ����5Ս������� +����߃������'փ������������߂� �����׃��������� ��օ��� �������� �������������������������������#������������ +����� ����� �����#߁������'օ��������������� �����'փ�����������Ճ������������� �����ք������ք�������������߃�������������������փ�� �����׃������ �����'׃����߁���#ք��������������� �����#ׄ�����߁���Ճ�� �����#�������� �����ׄ�������'ք��� ��������� � ����ւ���߁� ��'ׄ��� \ No newline at end of file
diff --git a/music/quickie.mid b/music/quickie.mid line changes: +0/-0 index 0000000..91b052c --- /dev/null +++ b/music/quickie.mid
diff --git a/music/quickie.sn b/music/quickie.sn line changes: +3/-0 index 0000000..fc4e812 --- /dev/null +++ b/music/quickie.sn
@@ -0,0 +1,3 @@ +�ӏ��� �������ؘ ��� ��ט�ٍ��� +��� ���֙�ז߁�ט�׃�����օ߁�Ր��� ������֏�և ��� ��٘�����߄�ؗ����� �� � ����؇�ט�և����Յ�֏��� �����ؙ �����ט�ט�������������ט �����ؕ߂�،������Տ����������� ��� ��#ؘ�����߄ � �� +��'ט�ֆ���� �����/����٘ � ����#ؘ������� ���ؗ�#ց��� �����ט�ׄ�����������օ���� �����߃������������ߋ�ֈߏ�Ԙ������ \ No newline at end of file
diff --git a/music/song3.mid b/music/song3.mid line changes: +0/-0 index 0000000..3e6f477 --- /dev/null +++ b/music/song3.mid
diff --git a/music/song3.sn b/music/song3.sn line changes: +14/-0 index 0000000..1e10bcf --- /dev/null +++ b/music/song3.sn
@@ -0,0 +1,14 @@ +�������������������� ��������߈������ݓ���߄� +�������� ���߁����������� ����������������������߁�������������� ނ����������� ��������� +�� ���������߂�����ف���������� ����������������������ߋ������ +����� �� ����܁߁����������������܂߆����� ق��߂������� ����������� +؋�����߃��������ڇ��߃����߁������ق�������� ������߁�������փ�߁������ׄ���� �����������������������������������������Ձ����������ٓ��߆�����ׂ������������� �� ����������� ��� ��ړ�������� +��ۃ��������߁��������������� ����������������������������������������������� ��������������������������������������� +���� ��������������������� �� ق�����ߔ��������������� ��� �������� +���� ��������������� �������������� �������������������������������߅����߁��������� �����ؑ������ ق��� +�����߁� ����������� +������ ل��������� ۃ������������� փ��ߊ��������������������� ���� �����ل���������������ڏ������ߋ������� ��߁��������� א���� ����� +؉߃� ���ڃ�� ��������߂������������ Ղ��߂������������������������ +����ې��� ��߁��������ف�����������߂� ���߂������������� َ�߅��� ���� ������������������������� +����� �� �߁���������� �������������������������������������ڍ�߄������ً߁������ ؋߁� �����������؆��߇ ��� �� ד���߃����� +�� ٓ���߅�� ل������������� ����� \ No newline at end of file
diff --git a/music/soshunfu.mid b/music/soshunfu.mid line changes: +0/-0 index 0000000..0f153ac --- /dev/null +++ b/music/soshunfu.mid
diff --git a/music/soshunfu.sn b/music/soshunfu.sn line changes: +1/-0 index 0000000..6d1300a --- /dev/null +++ b/music/soshunfu.sn
@@ -0,0 +1 @@ +�,�����������,������������,���������������������������,��������������,�������������������� �������!������ �������������������������� �����������,������������,��������������������������������������������ߌ������������,���������������������������������������������ߘ�������ߘ���#�����ߘ�������ߘ���!�����ߘ��������ߘ���� �����ߘ�������ߘ�������ߘ��������ߘ���#�����ߘ�������ߘ���!� �����'����������ߘ����� ��� � ߘ������ߌ��� �� ���� ߘ��������������� ����ߘ� ������ �ߘ� ��!� �����#����'�� � ����!����#�����ߘ���,�����ߘ��������ߘ���#�����ߘ���!����ߘ�������� �!�����������ߘ���;� � ���� ߘ������ߌ���������ߘ���#�����ߘ�������ߘ���!�����ߘ��������ߘ���� �����ߘ�������ߘ�������ߘ��������ߘ���#�����ߘ�������ߘ���!� �����'����������ߘ����� ��� � ߘ�������ߌ���� �� ���� ߘ��������������� ����ߘ� ������ �ߘ� ��!� �����#����'�� � ����!����#�����ߘ���,�����ߘ��������ߘ���#�����ߘ���!����ߘ�������� �!�����������ߘ���;� � ���� ߘ���,؋�#�����������ߌ��������������� �����,����߱ �����,����� \ No newline at end of file
diff --git a/music/stomp.mid b/music/stomp.mid line changes: +0/-0 index 0000000..069d93e --- /dev/null +++ b/music/stomp.mid
diff --git a/music/stomp.sn b/music/stomp.sn line changes: +3/-0 index 0000000..cada197 --- /dev/null +++ b/music/stomp.sn
@@ -0,0 +1,3 @@ +����������������������������ׂ��� ��߃��������߂�'���� +����������߂������������������߂������� ��������߁���� ����������߃����� � ���������߂������ ���������ׇ���߂���,�����ׄ��� ���߂�#������߂��!����� �� ������߄�������� ����� ��������߃������������֊�� �����!���� ֊�߁���#�������ֈ�������������� �����և���߂��������ׄ��� ��߄������ׅ�߄���փ��߁�'������������������������� �����և��߂���ׂ�����'���� �������߅��� ��������ֈ������� � �����������ك���߂��� �� +������ׇ��߅������ ������� ����#�����։�����!�������� ֊�߄��������� ������ ���������� ����������� ��߃�������� �������������߁������,�����ׂ��܁�/��܂�ہ���܁�ہ�ہ����ځ���5��ځ�ځ�ہ�܁�܁��ۂ����;���������,���և������'����� ։�߁�����%��� փ������߄�#���ׇ��������!�����ׇ��߄���� ׆߂��� ������߁������������������������߂�����'��� ���߂���#�����ֆ��������!���օ�������������߃� ց�����߂������������������������������������������������������������������ׇ��ق��܂���ق��ځ���ف����ڃ��������ڂ��ڃ��ڂ���ڂ��ڂ��ڂ��ف�'����ڃ��ڂ��ڂ��ځ������ڃ��ڃ�����������ق���ق��ځ�����ڃ����ڃ��ك���ك����������چ����߂����������������������߃�߁�׃��߁�����������/������ڄ߁�����׃߁���ׇ���������,����׆߇�փ��������#��߁�����և߄���!��ׄ��߆�ׄ��߃�����ل߃����������������������������������߈������ �����׆�����������߁������#��ׂ���߁�ׄ�#���؈��ׁ�����ߎ� \ No newline at end of file
diff --git a/music/takeoff.sn b/music/takeoff.sn line changes: +4/-0 index 0000000..b7e6c7a --- /dev/null +++ b/music/takeoff.sn
@@ -0,0 +1,4 @@ +������������������������������������ �� ��� ��� ��� ��� ��� +��� +��� +���� \ No newline at end of file
diff --git a/sfx.pas b/sfx.pas line changes: +6/-0 index 0000000..5839959 --- /dev/null +++ b/sfx.pas
@@ -0,0 +1,6 @@ +unit Sfx; +interface + +implementation + +end.
diff --git a/source-data/5 inch Disk 13.svg b/source-data/5 inch Disk 13.svg line changes: +1/-0 index 0000000..ad1ef5c --- /dev/null +++ b/source-data/5 inch Disk 13.svg
@@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="490.455" height="492.198" fill-rule="evenodd" stroke-linecap="round" preserveAspectRatio="none" viewBox="0 0 3035 3046"><style>.brush0{fill:#fff}.brush1{fill:#000}.pen1{stroke:none}</style><path d="M1 4h3030v648h-116v193h116v2199H1V4z" class="pen1 brush1"/><path d="M4 4 1 6h3030l-3-2v648l3-2h-118v197h118l-3-2v2199l3-3H1l3 3V4l-5-3v3045h3034V842h-118l3 3V652l-3 3h118V1H-1l5 3z" class="pen1 brush1"/><path d="m1512 2119 12 1 13 2 11 4 11 5 11 7 10 8 9 9 9 10 8 12 6 11 7 14 5 14 4 14 3 15 1 16 1 16v397l-1 16-1 16-3 15-4 15-5 13-7 14-6 12-8 11-9 10-9 9-10 8-11 7-11 5-11 4-13 3h-24l-12-3-12-4-11-5-10-7-10-8-9-9-9-10-8-11-7-12-6-14-5-13-4-15-3-15-2-16v-429l2-16 3-15 4-14 5-14 6-14 7-11 8-12 9-10 9-9 10-8 10-7 11-5 12-4 12-2 12-1z" class="pen1 brush0"/><path d="m1512 2121 12 1 12 2 11 5v-1l11 5 10 7 10 8 9 9 9 10 7 11 7 12 6 13 5 13 4 15v-1l3 15 2 16v429l-2 16-3 15v-1l-4 15-5 14v-1l-6 14v-1l-7 12-7 12v-1l-9 11-9 8-10 8-10 7-11 5-11 4-12 2-12 1-12-1-12-2h1l-12-4-11-5h1l-11-7-10-8h1l-9-8-9-11v1l-8-12-6-12v1l-7-14 1 1-5-14-4-15v1l-3-15-2-16-1-16v-397l1-16 2-16 3-15v1l4-15 5-13h-1l7-13 6-12 8-11 9-10 9-9h-1l10-8 11-7h-1l11-5v1l12-5h-1l12-2 12-1v-5l-12 1-12 2h-1l-12 4v1l-11 5-11 7-10 8-9 9-9 10v1l-8 11-7 12-6 14h-1l-5 14-4 14v1l-3 15-1 16-1 16v397l1 16 1 17 3 14v1l4 14 5 14 1 1 6 13 7 12 8 12 9 10 9 9 10 8v1l11 7 11 4v1l12 4h1l12 2 12 1 12-1h1l12-2 12-4v-1l11-4h1l10-7v-1l10-8h1l9-9 9-10 8-12 7-12 6-13v-1l5-14 4-14v-1l3-14 2-17 1-16v-397l-1-16-2-16-3-15v-1l-4-14-5-14-6-14-7-12-8-11v-1l-9-10-9-9h-1l-10-8-10-7h-1l-11-5v-1l-12-4-12-2h-1l-12-1v5z" class="pen1 brush1"/><path d="M132 182h1541v707H132V182z" class="pen1 brush0"/><path d="m135 182-3 3h1541l-3-3v707l3-3H132l3 3V182l-5-2v711h1545V180H130l5 2z" class="pen1 brush1"/><path d="m1055 1524 1-24 1-23 3-23 4-23 5-22 6-22 8-21 8-21 9-20 10-20 11-19 12-19 13-18 14-17 14-17 15-16 16-15 17-15 17-13 18-13 19-12 19-11 20-10 20-10 21-8 21-7 22-6 22-5 23-4 23-3 23-2 24-1 24 1 23 2 23 3 23 4 22 5 22 6 21 7 21 8 20 10 20 10 19 11 19 12 18 13 17 13 17 15 16 15 15 16 14 17 14 17 13 18 12 19 11 19 10 20 9 20 8 21 8 21 6 22 5 22 4 23 3 23 2 23v47l-2 24-3 23-4 22-5 22-6 22-8 22-8 20-9 21-10 20-11 19-12 18-13 18-14 18-14 16-15 17-16 14-17 15-17 14-18 12-19 12-19 11-20 11-20 9-21 8-21 7-22 6-22 6-23 4-23 3-23 1-24 1-24-1-23-1-23-3-23-4-22-6-22-6-21-7-21-8-20-9-20-11-19-11-19-12-18-12-17-14-17-15-16-14-15-17-14-16-14-18-13-18-12-18-11-19-10-20-9-21-8-20-8-22-6-22-5-22-4-22-3-23-1-24-1-23z" class="pen1 brush0"/><path d="m1057 1524 1-24 2-23 3-23 4-23v1l5-22 6-22 7-22v1l8-21 9-20 11-20 11-19 12-19 12-18 14-17v1l14-17 15-16 16-15 17-15 17-14v1l18-13 19-12 19-11h-1l20-10 20-9 21-8 21-7 22-6 22-6 22-4 23-3 23-1 24-1 24 1 23 1 23 3 22 4 22 6 22 6 21 7 21 8 20 9 20 10h-1l20 11 18 12 18 13v-1l18 14h-1l17 15 16 15 15 16 15 17v-1l13 17 13 18 11 19 12 19 10 20 9 20 8 21v-1l7 22 6 22 6 22v-1l3 23 3 23 2 23 1 24-1 23-2 24v-1l-3 23-3 23-6 22-6 22-7 21-8 20-9 21-10 19-12 19-11 19-13 18-13 17-15 17-15 16-16 15-17 14h1l-18 14-18 12-18 12-20 11h1l-20 10-20 10v-1l-21 8-21 8-22 6-22 5-22 4-23 3-23 1-24 1-24-1-23-1-23-3-22-4-22-5-22-6-21-8-21-8v1l-20-10-20-10h1l-19-11-19-12-18-12-17-14-17-14-16-15-15-16-14-17-14-17-12-18-12-19-11-19-11-19-9-21-8-20-7-21-6-22-5-22-4-23-3-23v1l-2-24-1-23h-5l1 23 1 24 3 23 4 23 6 22 6 22 7 21v1l8 21 10 20 10 20 11 19 12 19 13 18 14 17v1l14 16 15 16 16 15 17 15 18 14 18 13 18 12 20 11 20 10 20 9v1l21 8 22 7 21 6 23 5 23 4 23 3 23 2 24 1 24-1 23-2h1l22-3 23-4 23-5 21-6 22-7 21-8v-1l20-9 20-10h1l19-11 18-12 18-13 18-14 17-15 16-15 15-16 14-16v-1l14-17h1l12-18 12-19 11-19 11-20 9-20 8-21v-1l7-21 7-22 5-22 4-23 3-23 1-24 1-23-1-24-1-23v-1l-3-23-4-22v-1l-5-22-7-22-7-21v-1l-8-20-9-20-11-20v-1l-11-19-12-19-12-18h-1l-14-17-14-17-15-16-16-15-17-15-18-13v-1l-18-12-18-12-19-11h-1l-20-11-20-9-21-8-22-8-21-6-23-5-23-4-22-3h-1l-23-1-24-1-24 1-23 1-23 3-23 4-23 5-21 6-22 8-21 8-20 9-20 11-20 11-18 12-18 12v1l-18 13-17 15-16 15-15 16-14 17-14 17-13 18-12 19-11 19v1l-10 20-10 20-8 20v1l-7 21-6 22-6 22v1l-4 22-3 23v1l-1 23-1 24h5z" class="pen1 brush1"/><path d="M1235 1524v-15l2-14 1-15 3-13 3-13 4-14 4-13 10-25 6-12 7-11 16-23 7-10 9-10 10-9 9-10 10-9 11-8 22-15 11-7 13-6 25-10 13-5 13-4 13-3 14-2 14-2 14-1h15v-5h-15l-15 1-14 1-13 3-15 3-13 4-13 4-26 11-12 6-12 7-22 16-11 8-11 9-9 10-9 9-10 11-8 10-15 23-7 12-6 12-11 26-5 13-4 13-3 14-2 14-2 14-1 15v15h5zm279-279h14l14 1 14 2 14 2 13 3 14 4 12 5 13 4 13 6 12 6 11 7 11 8 22 15 10 9 10 10 9 9 9 10 8 10 7 12 8 11 7 11 6 12 6 13 4 12 5 13 3 14 4 13 2 13 2 15 1 14 1 15h5l-1-15-1-15-1-14-3-14-3-14-4-13-4-13-6-13-6-13-6-12-7-12-7-12-8-11-8-10-10-11-8-9-10-10-11-9-11-8-10-8-12-8-12-7-12-6-13-5-13-6-13-4-14-4-13-3-14-3-14-1-15-1h-14v5zm279 279-1 13-1 15-2 14-2 13-4 14-3 13-5 13-4 13-6 12-6 12-7 12-8 11-15 21-9 10-9 10-10 9-10 10-22 15-11 7-11 7-12 6-13 6-13 5-12 4-14 4-13 3-14 3-14 1-14 1-14 1v6l14-1 15-1 14-2 14-3 13-3 14-3 13-5 13-5 13-6 12-6 12-7 12-7 10-8 11-8 11-10 10-9 8-10 10-10 8-11 8-11 7-11 7-13 6-12 6-12 6-14 4-12 4-14 3-13 3-14 1-15 1-15 1-13h-5zm-279 278-15-1-14-1-14-1-13-3-14-3-13-4-13-4-13-5-12-6-13-6-11-7-11-7-11-8-11-7-10-10-9-9-10-10-9-10-15-21-8-11-7-12-6-12-5-12-5-13-4-13-4-13-3-13-3-14-1-14-2-15v-13h-5v13l1 15 2 15 2 13 3 14 4 14 5 12 5 14 6 12 6 12 7 13 7 11 8 11 8 11 10 10 9 10 9 9 11 10 11 8 11 8 11 7 12 7 12 6 13 6 13 5 13 5 13 3 14 3 14 3 14 2 15 1 15 1v-6zM227 493h1319v-5H227v5zm0 167h1319v-6H227v6zm0-321h1319v-6H227v6z" class="pen1 brush1"/></svg>
diff --git a/source-data/EIFFEL TOWER 1.jpg b/source-data/EIFFEL TOWER 1.jpg line changes: +0/-0 index 0000000..a16356c --- /dev/null +++ b/source-data/EIFFEL TOWER 1.jpg
diff --git a/source-data/GLOBEO.svg b/source-data/GLOBEO.svg line changes: +1/-0 index 0000000..eddbc25 --- /dev/null +++ b/source-data/GLOBEO.svg
@@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="508.032" height="258.432"><defs><clipPath id="a" clipPathUnits="userSpaceOnUse"><path d="M150.551 5129.14H3960.79V3190.9H150.551Z" clip-rule="evenodd"/></clipPath><clipPath id="b" clipPathUnits="userSpaceOnUse"><path d="M150.551 5129.14H3960.79V3190.9H150.551Z" clip-rule="evenodd"/></clipPath><clipPath id="c" clipPathUnits="userSpaceOnUse"><path d="M440.949 5052.1H3661.6V3264.34H440.949Z" clip-rule="evenodd"/></clipPath><clipPath id="d" clipPathUnits="userSpaceOnUse"><path d="M440.949 5047.06H1935.43V3272.98H440.949Z" clip-rule="evenodd"/></clipPath><clipPath id="e" clipPathUnits="userSpaceOnUse"><path d="M440.949 5047.06H1935.43V3272.98H440.949Z" clip-rule="evenodd"/></clipPath><clipPath id="f" clipPathUnits="userSpaceOnUse"><path d="M440.949 5047.06H1935.43V3272.98H440.949Z" clip-rule="evenodd"/></clipPath><clipPath id="g" clipPathUnits="userSpaceOnUse"><path d="M440.949 5047.06H1935.43V3272.98H440.949Z" clip-rule="evenodd"/></clipPath><clipPath id="h" clipPathUnits="userSpaceOnUse"><path d="M440.949 5047.06H1935.43V3272.98H440.949Z" clip-rule="evenodd"/></clipPath><clipPath id="i" clipPathUnits="userSpaceOnUse"><path d="M440.949 5052.1H3661.6V3264.34H440.949Z" clip-rule="evenodd"/></clipPath><clipPath id="j" clipPathUnits="userSpaceOnUse"><path d="M440.949 5052.1H3661.6V3264.34H440.949Z" clip-rule="evenodd"/></clipPath><clipPath id="k" clipPathUnits="userSpaceOnUse"><path d="M440.949 5052.1H3661.6V3264.34H440.949Z" clip-rule="evenodd"/></clipPath><clipPath id="l" clipPathUnits="userSpaceOnUse"><path d="M440.949 5052.1H3661.6V3264.34H440.949Z" clip-rule="evenodd"/></clipPath><clipPath id="m" clipPathUnits="userSpaceOnUse"><path d="M440.949 5052.1H3661.6V3264.34H440.949Z" clip-rule="evenodd"/></clipPath><clipPath id="n" clipPathUnits="userSpaceOnUse"><path d="M150.551 5129.14H3960.79V3190.9H150.551Z" clip-rule="evenodd"/></clipPath><clipPath id="o" clipPathUnits="userSpaceOnUse"><path d="M150.551 5129.14H3960.79V3190.9H150.551Z" clip-rule="evenodd"/></clipPath><clipPath id="p" clipPathUnits="userSpaceOnUse"><path d="M150.551 5129.14H3960.79V3190.9H150.551Z" clip-rule="evenodd"/></clipPath><clipPath id="q" clipPathUnits="userSpaceOnUse"><path d="M150.551 5129.14H3960.79V3190.9H150.551Z" clip-rule="evenodd"/></clipPath><clipPath id="r" clipPathUnits="userSpaceOnUse"><path d="M150.551 5129.14H3960.79V3190.9H150.551Z" clip-rule="evenodd"/></clipPath><clipPath id="s" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="t" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="u" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="v" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="w" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="x" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="y" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="z" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="A" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="B" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="C" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="D" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="E" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="F" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="G" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="H" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="I" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="J" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="K" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="L" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="M" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="N" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="O" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="P" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="Q" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="R" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="S" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="T" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="U" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="V" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="W" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="X" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="Y" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="Z" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="aa" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="ab" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="ac" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="ad" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="ae" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="af" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="ag" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="ah" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="ai" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="aj" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="ak" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="al" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="am" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="an" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="ao" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="ap" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="aq" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="ar" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="as" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="at" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="au" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="av" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="aw" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="ax" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="ay" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="az" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="aA" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="aB" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="aC" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="aD" clipPathUnits="userSpaceOnUse"><path d="M790.898 5086.39H3694.93V3214.53H790.898Z" clip-rule="evenodd"/></clipPath><clipPath id="aE" clipPathUnits="userSpaceOnUse"><path d="M150.551 5129.14H3960.79V3190.9H150.551Z" clip-rule="evenodd"/></clipPath></defs><path d="M2055.67 3200.98c1046.88 0 1895.04 429.12 1895.04 959.04s-848.16 959.04-1895.04 959.04c-1046.16 0-1895.041-429.12-1895.041-959.04s848.881-959.04 1895.041-959.04" clip-path="url(#a)" style="fill:#fff;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M2055.67 3200.98c1046.88 0 1895.04 429.12 1895.04 959.04s-848.16 959.04-1895.04 959.04c-1046.16 0-1895.041-429.12-1895.041-959.04s848.881-959.04 1895.041-959.04z" clip-path="url(#b)" style="fill:none;stroke:#191818;stroke-width:20.16;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M2059.99 5042.02v-1767.6" clip-path="url(#c)" style="fill:none;stroke:#191818;stroke-width:20.16;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M1930.39 5038.42c-174.96-150.48-308.16-1263.6-10.8-1760.4" clip-path="url(#d)" style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M1723.75 4979.38c-91.44-10.8-644.4-738.72-3.6-1656" clip-path="url(#e)" style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M1660.39 5042.02c-378-167.76-1049.757-1015.2 0-1753.2" clip-path="url(#f)" style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M1485.43 5038.42c-591.121-209.52-1235.52-1119.6 3.6-1743.12" clip-path="url(#g)" style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M1321.27 5021.14c-426.961-56.16-1739.52-979.92 7.2-1711.44" clip-path="url(#h)" style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M2188.87 5038.42c174.96-150.48 308.16-1263.6 10.8-1760.4" clip-path="url(#i)" style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M2342.95 5034.82c133.2-59.04 696.96-794.16 56.16-1711.44" clip-path="url(#j)" style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M2458.87 5042.02c378-167.76 1049.76-1015.2 0-1753.2" clip-path="url(#k)" style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M2633.83 5038.42c591.12-209.52 1235.52-1119.6-3.6-1743.12" clip-path="url(#l)" style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M2759.83 5034.82c408.96-62.64 1777.68-993.6 30.96-1725.12" clip-path="url(#m)" style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M1601.35 4884.34h1196.64" clip-path="url(#n)" style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M355.031 4558.9H3760.63" clip-path="url(#o)" style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M159.191 4180.9H3949.27" clip-path="url(#p)" style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M285.191 3799.3H3823.27" clip-path="url(#q)" style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M759.531 3460.18H3353.88" clip-path="url(#r)" style="fill:none;stroke:#191818;stroke-width:10.08;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M1453.03 4270.9c12.96-5.76 23.76-12.96 33.84-22.32 21.6-19.44 46.8-44.64 76.32-55.44 23.04-8.64 30.24-39.6 46.8-55.44 27.36-25.92 102.24-31.68 87.84-80.64-3.6-12.24-13.68-25.2-18-36.72-8.64-18.72-18.72-37.44-23.76-58.32-3.6-17.28.72-34.56-2.16-52.56-2.16-18.72-16.56-33.12-37.44-28.08-.72-6.48-8.64-2.88-10.08-7.2-7.92-23.76-15.84-47.52-29.52-70.56-6.48-10.08 1.44-26.64-4.32-36.72-2.16-3.6-11.52-6.48-14.4-11.52-17.28-26.64-38.88-35.28-59.04-56.88-30.96-35.28-23.04-83.52-13.68-128.16 1.44-5.76 12.24-10.08 13.68-14.4 6.48-16.56 13.68-33.84 12.96-51.84-20.16 10.8-48.96 5.04-58.32 28.08-9.36 24.48-18.72 48.96-30.24 71.28-23.04 46.08-56.88 82.8-83.52 127.44 1.44-2.16 2.88-.72 3.6-2.88-12.24 41.04 15.12 80.64-.72 116.64-12.24 28.8-5.76 64.08-32.4 84.24-7.92 6.48-25.2 2.16-30.96 7.92-32.4 28.8-53.28 69.12-65.52 110.16-2.88 9.36-5.76 22.32-3.6 33.84-2.16-4.32-4.32-8.64-6.48-13.68-10.08 11.52-12.24 25.92-20.16 38.88-9.36 17.28-9.36 40.32-4.32 54 4.32 11.52 26.64 20.88 31.68 34.56 5.04 10.8 20.88 22.32 12.96 36.72-3.6 5.76-13.68 8.64-15.84 14.4-2.16 7.92-2.88 17.28-4.32 25.2h249.12" clip-path="url(#s)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M1453.03 4270.9c12.96-5.76 23.76-12.96 33.84-22.32 21.6-19.44 46.8-44.64 76.32-55.44 23.04-8.64 30.24-39.6 46.8-55.44 27.36-25.92 102.24-31.68 87.84-80.64-3.6-12.24-13.68-25.2-18-36.72-8.64-18.72-18.72-37.44-23.76-58.32-3.6-17.28.72-34.56-2.16-52.56-2.16-18.72-16.56-33.12-37.44-28.08-.72-6.48-8.64-2.88-10.08-7.2-7.92-23.76-15.84-47.52-29.52-70.56-6.48-10.08 1.44-26.64-4.32-36.72-2.16-3.6-11.52-6.48-14.4-11.52-17.28-26.64-38.88-35.28-59.04-56.88-30.96-35.28-23.04-83.52-13.68-128.16 1.44-5.76 12.24-10.08 13.68-14.4 6.48-16.56 13.68-33.84 12.96-51.84-20.16 10.8-48.96 5.04-58.32 28.08-9.36 24.48-18.72 48.96-30.24 71.28-23.04 46.08-56.88 82.8-83.52 127.44 1.44-2.16 2.88-.72 3.6-2.88-12.24 41.04 15.12 80.64-.72 116.64-12.24 28.8-5.76 64.08-32.4 84.24-7.92 6.48-25.2 2.16-30.96 7.92-32.4 28.8-53.28 69.12-65.52 110.16-2.88 9.36-5.76 22.32-3.6 33.84-2.16-4.32-4.32-8.64-6.48-13.68-10.08 11.52-12.24 25.92-20.16 38.88-9.36 17.28-9.36 40.32-4.32 54 4.32 11.52 26.64 20.88 31.68 34.56 5.04 10.8 20.88 22.32 12.96 36.72-3.6 5.76-13.68 8.64-15.84 14.4-2.16 7.92-2.88 17.28-4.32 25.2z" clip-path="url(#t)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M1203.91 4270.9c-1.44 7.2-4.32 13.68-9.36 18-17.28 15.84-37.44 29.52-58.32 38.16-15.12 5.76-30.96 15.84-48.24 16.56 3.6 0-8.64 6.48-14.4 8.64-41.04 14.4-72 44.64-103.68 72.72-7.199 7.2-4.32 20.16-4.32 30.96-3.598-7.2-4.32-14.4-7.199-21.6-20.879 16.56-22.321 42.48-37.442 64.08-5.758 7.92-3.597 18-6.48 27.36-5.758 23.76 10.082 46.08 4.32 69.84 0 .72-5.758 0-9.359 0 2.16 29.52-10.078 60.48-.719 86.4 4.32 11.52 23.758 18.72 33.121 28.8 15.117 15.12 38.16 19.44 48.238 38.88 5.762 13.68 1.442 29.52 11.52 41.04 2.16 2.88 10.08-2.16 12.24 4.32 2.16 5.76 1.44 15.84-2.16 21.6 19.44 5.76 48.96 23.04 35.28 43.2-5.04 7.92-20.88 18-35.28 11.52-16.561-7.2-32.4-12.96-46.799-25.92-6.48-5.76-9.359 10.08-16.562 8.64-25.2-5.76-44.637-20.88-66.957-33.12-10.082-5.04-25.204-3.6-33.122 3.6-11.519 11.52-23.039 22.32-22.32 41.04 21.602-1.44 52.559-4.32 56.16 24.48-28.078-13.68-63.359-10.8-87.84 6.48 46.801 2.88 88.559 23.04 132.481 37.44 21.598 7.2 41.758 20.16 64.078 28.8 46.081 18 95.041 26.64 140.401 46.8 11.52 5.04 41.04 12.24 37.44 12.96 5.04-.72-1.44-10.08.72-12.96 7.2-11.52 16.56-21.6 25.2-25.92 12.24-5.76 20.88 17.28 33.84 19.44 23.76 5.04 48.96 0 68.4 11.52 10.08 5.76 23.76-.72 29.52 11.52-2.16-12.24-25.2-24.48-9.36-32.4 10.08-5.04 18-15.84 30.24-16.56-4.32 12.96-5.76 26.64-2.16 38.16 4.32 12.96 20.88 17.28 31.68 22.32 8.64 4.32 14.4-16.56 21.6-23.76 14.4-14.4 46.8-4.32 56.16-26.64 2.16-5.76 8.64-10.08 8.64-17.28 6.48 0 13.68-.72 20.88.72 2.88.72 4.32 2.88 3.6 6.48 10.8 2.16 12.96-8.64 20.88-13.68 2.88-1.44 8.64-1.44 9.36 0 5.04 9.36 12.96 13.68 19.44 19.44 16.56 12.96 31.68 36.72 54 27.36 32.4-13.68 59.76-35.28 87.84-58.32 7.2-5.76 6.48-17.28 5.04-23.04-1.44-12.24-18.72-18.72-31.68-23.04-13.68-5.76-5.76-21.6-10.08-32.4-3.6-9.36-5.04-15.84-12.24-25.2-1.44-2.16-8.64 1.44-9.36-4.32-1.44-7.2 7.2-16.56 2.16-18.72-7.92-3.6-13.68-6.48-13.68-15.84 0-8.64-5.76-4.32-5.76-3.6-2.88-5.76 6.48-15.12 2.16-20.88-.72-1.44-4.32 0-6.48 0 32.4-55.44 12.24-39.6 7.92-43.2-19.44-15.84-48.96-1.44-74.88-2.88 2.16-2.88 5.76-6.48 3.6-10.08-1.44-.72-4.32 0-6.48 0 2.88 0 8.64.72 9.36-.72 5.04-11.52-1.44-23.76-13.68-25.92-23.04-4.32-45.36-20.16-65.52-4.32-2.88 2.88 1.44 19.44-6.48 15.12-7.2-2.88 0-15.84-5.04-22.32-12.24-15.12-33.12-17.28-43.2-38.16-8.64-15.84-36.72-.72-45.36-15.84-5.76-10.8.72-33.12-9.36-33.84-25.2-2.88-25.2-19.44-24.48-38.88 0-5.04-11.52-1.44-10.08-10.08-13.68 3.6-28.08-5.04-36.72-10.08-11.52-7.2-5.04-25.2-21.6-36.72-2.88-1.44.72-10.08-2.16-12.24-10.8-8.64-28.08-17.28-35.28-2.88-7.2 12.96-19.44 22.32-23.04 37.44-30.96-15.84-70.56-2.16-95.04-21.6-7.92-5.76-7.92-25.92-13.68-39.6-3.6-7.92-1.44-24.48 0-36.72 12.24 13.68 32.4 5.04 46.8 19.44 10.08 10.08 29.52 14.4 38.88 3.6 15.84-18.72-9.36-41.76-2.88-61.2 3.6-10.8 15.84-7.92 25.92-6.48 5.76 0 0-15.12 7.2-22.32h-7.2c0-10.8-3.6-19.44-4.32-28.08-1.44-18.72 22.32-46.8 45.36-39.6 11.52 3.6 21.6 18.72 35.28 13.68 4.32-1.44 2.16-12.96 7.92-15.12 7.92-2.88 14.4 2.88 22.32 7.2 25.2 16.56 59.04 15.84 84.24 0 21.6-12.96 44.64-20.88 65.52-31.68h-249.12" clip-path="url(#u)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M1203.91 4270.9c-1.44 7.2-4.32 13.68-9.36 18-17.28 15.84-37.44 29.52-58.32 38.16-15.12 5.76-30.96 15.84-48.24 16.56 3.6 0-8.64 6.48-14.4 8.64-41.04 14.4-72 44.64-103.68 72.72-7.199 7.2-4.32 20.16-4.32 30.96-3.598-7.2-4.32-14.4-7.199-21.6-20.879 16.56-22.321 42.48-37.442 64.08-5.758 7.92-3.597 18-6.48 27.36-5.758 23.76 10.082 46.08 4.32 69.84 0 .72-5.758 0-9.359 0 2.16 29.52-10.078 60.48-.719 86.4 4.32 11.52 23.758 18.72 33.121 28.8 15.117 15.12 38.16 19.44 48.238 38.88 5.762 13.68 1.442 29.52 11.52 41.04 2.16 2.88 10.08-2.16 12.24 4.32 2.16 5.76 1.44 15.84-2.16 21.6 19.44 5.76 48.96 23.04 35.28 43.2-5.04 7.92-20.88 18-35.28 11.52-16.561-7.2-32.4-12.96-46.799-25.92-6.48-5.76-9.359 10.08-16.562 8.64-25.2-5.76-44.637-20.88-66.957-33.12-10.082-5.04-25.204-3.6-33.122 3.6-11.519 11.52-23.039 22.32-22.32 41.04 21.602-1.44 52.559-4.32 56.16 24.48-28.078-13.68-63.359-10.8-87.84 6.48 46.801 2.88 88.559 23.04 132.481 37.44 21.598 7.2 41.758 20.16 64.078 28.8 46.081 18 95.041 26.64 140.401 46.8 11.52 5.04 41.04 12.24 37.44 12.96 5.04-.72-1.44-10.08.72-12.96 7.2-11.52 16.56-21.6 25.2-25.92 12.24-5.76 20.88 17.28 33.84 19.44 23.76 5.04 48.96 0 68.4 11.52 10.08 5.76 23.76-.72 29.52 11.52-2.16-12.24-25.2-24.48-9.36-32.4 10.08-5.04 18-15.84 30.24-16.56-4.32 12.96-5.76 26.64-2.16 38.16 4.32 12.96 20.88 17.28 31.68 22.32 8.64 4.32 14.4-16.56 21.6-23.76 14.4-14.4 46.8-4.32 56.16-26.64 2.16-5.76 8.64-10.08 8.64-17.28 6.48 0 13.68-.72 20.88.72 2.88.72 4.32 2.88 3.6 6.48 10.8 2.16 12.96-8.64 20.88-13.68 2.88-1.44 8.64-1.44 9.36 0 5.04 9.36 12.96 13.68 19.44 19.44 16.56 12.96 31.68 36.72 54 27.36 32.4-13.68 59.76-35.28 87.84-58.32 7.2-5.76 6.48-17.28 5.04-23.04-1.44-12.24-18.72-18.72-31.68-23.04-13.68-5.76-5.76-21.6-10.08-32.4-3.6-9.36-5.04-15.84-12.24-25.2-1.44-2.16-8.64 1.44-9.36-4.32-1.44-7.2 7.2-16.56 2.16-18.72-7.92-3.6-13.68-6.48-13.68-15.84 0-8.64-5.76-4.32-5.76-3.6-2.88-5.76 6.48-15.12 2.16-20.88-.72-1.44-4.32 0-6.48 0 32.4-55.44 12.24-39.6 7.92-43.2-19.44-15.84-48.96-1.44-74.88-2.88 2.16-2.88 5.76-6.48 3.6-10.08-1.44-.72-4.32 0-6.48 0 2.88 0 8.64.72 9.36-.72 5.04-11.52-1.44-23.76-13.68-25.92-23.04-4.32-45.36-20.16-65.52-4.32-2.88 2.88 1.44 19.44-6.48 15.12-7.2-2.88 0-15.84-5.04-22.32-12.24-15.12-33.12-17.28-43.2-38.16-8.64-15.84-36.72-.72-45.36-15.84-5.76-10.8.72-33.12-9.36-33.84-25.2-2.88-25.2-19.44-24.48-38.88 0-5.04-11.52-1.44-10.08-10.08-13.68 3.6-28.08-5.04-36.72-10.08-11.52-7.2-5.04-25.2-21.6-36.72-2.88-1.44.72-10.08-2.16-12.24-10.8-8.64-28.08-17.28-35.28-2.88-7.2 12.96-19.44 22.32-23.04 37.44-30.96-15.84-70.56-2.16-95.04-21.6-7.92-5.76-7.92-25.92-13.68-39.6-3.6-7.92-1.44-24.48 0-36.72 12.24 13.68 32.4 5.04 46.8 19.44 10.08 10.08 29.52 14.4 38.88 3.6 15.84-18.72-9.36-41.76-2.88-61.2 3.6-10.8 15.84-7.92 25.92-6.48 5.76 0 0-15.12 7.2-22.32h-7.2c0-10.8-3.6-19.44-4.32-28.08-1.44-18.72 22.32-46.8 45.36-39.6 11.52 3.6 21.6 18.72 35.28 13.68 4.32-1.44 2.16-12.96 7.92-15.12 7.92-2.88 14.4 2.88 22.32 7.2 25.2 16.56 59.04 15.84 84.24 0 21.6-12.96 44.64-20.88 65.52-31.68z" clip-path="url(#v)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M2948.47 3337.78c2.16-2.16-72.72 56.16-79.2 59.04-12.24 5.76-28.08 2.88-41.76-5.04-18-9.36-36-17.28-55.44-20.88.72-1.44 4.32 0 0 0h-3.6 7.2c-33.84 10.8-67.68 20.16-102.96 1.44-12.24-6.48-27.36 1.44-41.04 8.64-13.68 7.92-28.08 5.76-41.04 2.16-22.32-5.04-46.08-15.12-66.96-12.24-17.28 2.16-37.44-2.88-51.84 11.52-20.88 20.88-56.88 12.96-84.24 6.48-71.28-18.72-138.96 0-201.6 35.28-13.68 7.92-35.28 6.48-50.4.72-24.48-10.8-48.24-20.88-74.16-28.8-30.24-7.92-61.2 11.52-90.72-1.44-21.6-10.08-45.36-9.36-65.52-16.56-35.28-13.68-67.68-48.24-109.44-37.44-37.44 10.08-69.12 32.4-101.52 53.28-30.96 20.16-72 .72-108.72-10.8-4.32-1.44-10.08-7.92-13.68-7.2-26.64 3.6-51.84-3.6-49.68-33.12-34.56-1.44-66.24 6.48-101.52 3.6 1.44 3.6-.72 5.76-3.6 6.48-4.32 1.44-10.8 2.16-12.24 0-6.48-10.8-5.76-25.92-22.32-20.16-15.12 4.32-31.68 12.96-44.64 7.92-10.08-3.6-17.28-17.28-26.64-24.48-3.6-2.88-10.08-7.2-16.56-5.04 282.24-89.28 621.36-90 740.16-92.88 353.52-6.48 782.64 68.4 913.68 119.52" clip-path="url(#w)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M2948.47 3337.78c2.16-2.16-72.72 56.16-79.2 59.04-12.24 5.76-28.08 2.88-41.76-5.04-18-9.36-36-17.28-55.44-20.88.72-1.44 4.32 0 0 0h-3.6 7.2c-33.84 10.8-67.68 20.16-102.96 1.44-12.24-6.48-27.36 1.44-41.04 8.64-13.68 7.92-28.08 5.76-41.04 2.16-22.32-5.04-46.08-15.12-66.96-12.24-17.28 2.16-37.44-2.88-51.84 11.52-20.88 20.88-56.88 12.96-84.24 6.48-71.28-18.72-138.96 0-201.6 35.28-13.68 7.92-35.28 6.48-50.4.72-24.48-10.8-48.24-20.88-74.16-28.8-30.24-7.92-61.2 11.52-90.72-1.44-21.6-10.08-45.36-9.36-65.52-16.56-35.28-13.68-67.68-48.24-109.44-37.44-37.44 10.08-69.12 32.4-101.52 53.28-30.96 20.16-72 .72-108.72-10.8-4.32-1.44-10.08-7.92-13.68-7.2-26.64 3.6-51.84-3.6-49.68-33.12-34.56-1.44-66.24 6.48-101.52 3.6 1.44 3.6-.72 5.76-3.6 6.48-4.32 1.44-10.8 2.16-12.24 0-6.48-10.8-5.76-25.92-22.32-20.16-15.12 4.32-31.68 12.96-44.64 7.92-10.08-3.6-17.28-17.28-26.64-24.48-3.6-2.88-10.08-7.2-16.56-5.04 282.24-89.28 621.36-90 740.16-92.88 353.52-6.48 782.64 68.4 913.68 119.52z" clip-path="url(#x)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M1651.75 5036.26c10.08-1.44 22.32 1.44 25.92 5.76 15.12 15.12 31.68 24.48 51.12 30.96 5.04 1.44 7.92 7.92 14.4 9.36 4.32.72 10.08 1.44 12.96-.72 21.6-16.56 46.8-22.32 69.84-15.12 23.76 7.2 44.64-2.88 66.96 2.88 20.16 5.76 41.04 16.56 59.04 10.08 5.76-2.16 8.64-20.16 15.84-23.04 25.2-8.64 48.24-46.08 45.36-20.16 1.44-12.96-19.44-1.44-28.8-10.08-23.76-21.6-48.24-36.72-76.32-50.4-1.44-.72 0-9.36-4.32-11.52-28.8-16.56-57.6-24.48-86.4-38.16-19.44-10.08-21.6-41.76-43.92-52.56-14.4-6.48-30.96-1.44-40.32 13.68-8.64 14.4-3.6 31.68-16.56 46.08-3.6 4.32 3.6 14.4 2.16 23.04-7.92-2.88 0 10.08-7.2 7.2-1.44 11.52 5.76 33.12 26.64 44.64 4.32 2.88 15.84 19.44 4.32 22.32-31.68 7.92-64.8-2.16-97.2 5.04-2.16.72 3.6 1.44 6.48.72" clip-path="url(#y)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M1651.75 5036.26c10.08-1.44 22.32 1.44 25.92 5.76 15.12 15.12 31.68 24.48 51.12 30.96 5.04 1.44 7.92 7.92 14.4 9.36 4.32.72 10.08 1.44 12.96-.72 21.6-16.56 46.8-22.32 69.84-15.12 23.76 7.2 44.64-2.88 66.96 2.88 20.16 5.76 41.04 16.56 59.04 10.08 5.76-2.16 8.64-20.16 15.84-23.04 25.2-8.64 48.24-46.08 45.36-20.16 1.44-12.96-19.44-1.44-28.8-10.08-23.76-21.6-48.24-36.72-76.32-50.4-1.44-.72 0-9.36-4.32-11.52-28.8-16.56-57.6-24.48-86.4-38.16-19.44-10.08-21.6-41.76-43.92-52.56-14.4-6.48-30.96-1.44-40.32 13.68-8.64 14.4-3.6 31.68-16.56 46.08-3.6 4.32 3.6 14.4 2.16 23.04-7.92-2.88 0 10.08-7.2 7.2-1.44 11.52 5.76 33.12 26.64 44.64 4.32 2.88 15.84 19.44 4.32 22.32-31.68 7.92-64.8-2.16-97.2 5.04-2.16.72 3.6 1.44 6.48.72z" clip-path="url(#z)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M1963.5 4935.46c-7.2 0-15.11 2.16-20.15-1.44-7.92-5.04-10.08-13.68-7.92-23.04 20.16 7.92 15.84-2.16 34.55 11.52 1.45.72.73 5.76 0 9.36-.71 2.16-7.91-4.32-6.48 3.6" clip-path="url(#A)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M1963.5 4935.46c-7.2 0-15.11 2.16-20.15-1.44-7.92-5.04-10.08-13.68-7.92-23.04 20.16 7.92 15.84-2.16 34.55 11.52 1.45.72.73 5.76 0 9.36-.71 2.16-7.91-4.32-6.48 3.6z" clip-path="url(#B)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M1980.8 4816.66c-13.69-2.88-25.21-10.8-15.85-23.76 2.89-4.32 17.28-28.8 25.21-29.52 0 10.8-9.36 42.48-9.36 53.28" clip-path="url(#C)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M1980.8 4816.66c-13.69-2.88-25.21-10.8-15.85-23.76 2.89-4.32 17.28-28.8 25.21-29.52 0 10.8-9.36 42.48-9.36 53.28z" clip-path="url(#D)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M2012.46 4830.34c0 12.24-7.91.72-10.79 3.6-6.48-17.28 0-38.88 1.44-56.16.72-5.76 24.48-26.64 26.64-20.88 7.2 17.28-7.92 59.04-13.68 77.04-1.44-1.44-2.88-2.16-3.61-3.6" clip-path="url(#E)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M2012.46 4830.34c0 12.24-7.91.72-10.79 3.6-6.48-17.28 0-38.88 1.44-56.16.72-5.76 24.48-26.64 26.64-20.88 7.2 17.28-7.92 59.04-13.68 77.04-1.44-1.44-2.88-2.16-3.61-3.6z" clip-path="url(#F)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M2911.75 4262.98c-15.12-10.09.72-27.36-3.6-41.77 43.2 0 2.16-18.71 23.04 1.45 7.2 6.48 20.16 5.75 10.8 14.39-11.52 10.81-23.04 20.88-35.28 31.68-1.44 1.45-2.16-5.03-2.16-9.35 2.16 1.44 4.32 2.87 7.2 3.6" clip-path="url(#G)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M2911.75 4262.98c-15.12-10.09.72-27.36-3.6-41.77 43.2 0 2.16-18.71 23.04 1.45 7.2 6.48 20.16 5.75 10.8 14.39-11.52 10.81-23.04 20.88-35.28 31.68-1.44 1.45-2.16-5.03-2.16-9.35 2.16 1.44 4.32 2.87 7.2 3.6z" clip-path="url(#H)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3278.95 4584.82c3.6 31.68-33.84 36.72-46.8 62.64-5.04 9.36 0 15.12 2.16 21.6 0 .72 5.04-.72 5.76.72 1.44 3.6-.72 9.36 1.44 12.96 4.32 5.76 7.2 10.8 5.76 18 15.84-2.88 24.48 10.08 15.84 19.44-12.24 15.12-21.6 31.68-34.56 46.08-17.28 20.16-42.48 30.24-65.52 45.36-5.04 3.6-13.68 0-20.16 2.16-7.2 2.16-10.08 11.52-5.76 15.12 27.36 25.2 69.12 15.84 98.64-4.32 15.84-10.8 31.68-20.16 48.24-30.96 10.08-7.2 25.2-10.8 36.72-7.2 3.6 1.44 0 15.12-3.6 18.72-17.28 18-48.24 17.28-64.08 43.92-8.64 15.12 9.36 30.24 13.68 44.64 8.64 28.08-37.44 23.76-58.32 31.68-23.04 9.36-50.4 7.92-75.6 15.12-60.48 18-121.68 28.08-178.56 55.44-5.76 2.88-11.52 8.64-18 12.96-.72-6.48 7.2-12.96 2.88-16.56-35.28-25.92-64.8 12.24-100.8 12.96 1.44-3.6 7.92-8.64 6.48-9.36-28.08-14.4-68.4-6.48-95.76 10.08-23.76 14.4-56.16-12.96-81.36 1.44-19.44 10.8-35.28 25.92-56.88 31.68-34.56 9.36-63.36-15.12-93.6-28.08-2.16-.72.72-10.08-1.44-11.52-30.24-25.92-66.96-25.2-103.68-34.56-19.44-4.32-36.72-15.12-53.28-25.92h3.6c-9.36 0-27.36 2.16-31.68-14.4-24.48 9.36-33.84 41.04-59.76 43.92-19.44 2.16-32.4 14.4-48.24 23.04 0-2.88.72-4.32-3.6-3.6-15.84.72-31.68-6.48-43.92-15.12-13.68-8.64-31.68-13.68-38.16-28.08-14.4-30.96-33.12-57.6-68.4-66.24-4.32-1.44-7.92-7.2-7.2-12.96-2.16 0-5.76.72-6.48-.72-2.16-2.88.72-7.92 2.88-9.36 14.4-5.76 30.96-3.6 45.36-11.52-4.32 5.04 7.92 2.16 3.6 7.2 2.16 0 6.48.72 6.48 0 10.08-38.88 13.68-55.44 5.04-44.64 2.16-2.16 9.36-2.16 12.24 0 9.36 6.48 19.44 11.52 21.6 23.76 3.6 14.4 4.32 31.68 12.96 43.92 15.12 20.16 36-8.64 43.2-26.64-24.48.72-41.04-18-62.64-25.2-.72-.72.72-7.92-.72-8.64-15.84-5.76-35.28-7.2-48.24-19.44-2.16-2.16.72-10.8-1.44-12.24-20.16-11.52-59.04-3.6-60.48-22.32-4.32-41.76-51.12-42.48-68.4-68.4-10.08-16.56-4.32-41.76-2.88-64.08.72-10.8 17.28-11.52 17.28-24.48 18.72 1.44 37.44-8.64 55.44.72 2.88 1.44 3.6 7.92 4.32 8.64 23.04 10.8 37.44 27.36 49.68 48.96 1.44 2.16 8.64 0 12.96 1.44 18 7.92 37.44 30.96 48.96 18 10.8-11.52 28.8-18 34.56-38.88 3.6-12.24 24.48 1.44 40.32-8.64 7.92-4.32 8.64-14.4 15.84-15.84 10.08-2.16 18.72-8.64 28.08-6.48 6.48.72 2.16 8.64 4.32 12.24.72 1.44 4.32 0 6.48.72 2.16 1.44 4.32 3.6 3.6 7.2 4.32 0 10.08 1.44 12.96-.72 6.48-5.04 12.96-5.04 17.28-7.92 11.52-8.64 15.12-25.92 24.48-34.56 10.8-10.8 40.32 9.36 46.08-4.32 10.08-23.76-.72-57.6 14.4-79.92 28.08-40.32 56.16-82.08 105.12-97.2 5.04-2.16 5.04-10.08 5.04-13.68 1.44-21.6-3.6-43.92 20.16-50.4 26.64-7.92 56.88-15.12 82.08 0 5.76 4.32 14.4 13.68 20.16 16.56 17.28 7.92 35.28 15.84 43.92 29.52 12.24 18.72 0 46.8-7.2 70.56 25.92 1.44 47.52-15.84 73.44-13.68l10.8-3.6c10.08-6.48 24.48-5.04 30.24-14.4 30.96-51.84 43.92-107.28 73.44-159.12 2.16-3.6 14.4-1.44 22.32-1.44-2.16 6.48 2.88 12.24 5.04 16.56 12.96 26.64 14.4 56.16 31.68 79.92 5.04 5.76 15.12 12.96 25.92 12.24-.72 9.36 8.64 15.12 12.96 18.72 10.08 10.08 14.4-8.64 25.92-15.12 8.64-5.76 21.6-1.44 26.64-8.64 10.08-12.96 28.08-11.52 34.56-23.76 16.56-36 28.8-72 39.6-110.88.72-2.16 15.84 2.88 20.88-4.32 10.08-17.28 25.2-30.24 42.48-39.6 3.6-2.16 9.36-6.48 10.8-12.24 9.36 4.32 3.6 12.24 2.16 16.56-8.64 24.48-18 48.24-19.44 74.16 21.6-5.76 43.2-12.24 66.24-10.8-1.44 31.68 9.36 65.52-6.48 93.6-6.48 11.52-23.76 18.72-31.68 33.12-5.04 8.64-7.2 21.6-2.16 25.92 17.28 13.68 41.76 1.44 61.2 2.16 7.92 0 14.4 23.04 19.44 32.4 10.08 18.72 19.44 63.36 8.64 91.44-12.24 30.24-68.4 32.4-62.64 71.28 2.16 12.96 26.64 6.48 39.6-4.32 6.48-5.04 15.84-12.24 23.76-15.12 4.32-1.44 8.64-5.04 13.68-5.04h10.08" clip-path="url(#I)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3278.95 4584.82c3.6 31.68-33.84 36.72-46.8 62.64-5.04 9.36 0 15.12 2.16 21.6 0 .72 5.04-.72 5.76.72 1.44 3.6-.72 9.36 1.44 12.96 4.32 5.76 7.2 10.8 5.76 18 15.84-2.88 24.48 10.08 15.84 19.44-12.24 15.12-21.6 31.68-34.56 46.08-17.28 20.16-42.48 30.24-65.52 45.36-5.04 3.6-13.68 0-20.16 2.16-7.2 2.16-10.08 11.52-5.76 15.12 27.36 25.2 69.12 15.84 98.64-4.32 15.84-10.8 31.68-20.16 48.24-30.96 10.08-7.2 25.2-10.8 36.72-7.2 3.6 1.44 0 15.12-3.6 18.72-17.28 18-48.24 17.28-64.08 43.92-8.64 15.12 9.36 30.24 13.68 44.64 8.64 28.08-37.44 23.76-58.32 31.68-23.04 9.36-50.4 7.92-75.6 15.12-60.48 18-121.68 28.08-178.56 55.44-5.76 2.88-11.52 8.64-18 12.96-.72-6.48 7.2-12.96 2.88-16.56-35.28-25.92-64.8 12.24-100.8 12.96 1.44-3.6 7.92-8.64 6.48-9.36-28.08-14.4-68.4-6.48-95.76 10.08-23.76 14.4-56.16-12.96-81.36 1.44-19.44 10.8-35.28 25.92-56.88 31.68-34.56 9.36-63.36-15.12-93.6-28.08-2.16-.72.72-10.08-1.44-11.52-30.24-25.92-66.96-25.2-103.68-34.56-19.44-4.32-36.72-15.12-53.28-25.92h3.6c-9.36 0-27.36 2.16-31.68-14.4-24.48 9.36-33.84 41.04-59.76 43.92-19.44 2.16-32.4 14.4-48.24 23.04 0-2.88.72-4.32-3.6-3.6-15.84.72-31.68-6.48-43.92-15.12-13.68-8.64-31.68-13.68-38.16-28.08-14.4-30.96-33.12-57.6-68.4-66.24-4.32-1.44-7.92-7.2-7.2-12.96-2.16 0-5.76.72-6.48-.72-2.16-2.88.72-7.92 2.88-9.36 14.4-5.76 30.96-3.6 45.36-11.52-4.32 5.04 7.92 2.16 3.6 7.2 2.16 0 6.48.72 6.48 0 10.08-38.88 13.68-55.44 5.04-44.64 2.16-2.16 9.36-2.16 12.24 0 9.36 6.48 19.44 11.52 21.6 23.76 3.6 14.4 4.32 31.68 12.96 43.92 15.12 20.16 36-8.64 43.2-26.64-24.48.72-41.04-18-62.64-25.2-.72-.72.72-7.92-.72-8.64-15.84-5.76-35.28-7.2-48.24-19.44-2.16-2.16.72-10.8-1.44-12.24-20.16-11.52-59.04-3.6-60.48-22.32-4.32-41.76-51.12-42.48-68.4-68.4-10.08-16.56-4.32-41.76-2.88-64.08.72-10.8 17.28-11.52 17.28-24.48 18.72 1.44 37.44-8.64 55.44.72 2.88 1.44 3.6 7.92 4.32 8.64 23.04 10.8 37.44 27.36 49.68 48.96 1.44 2.16 8.64 0 12.96 1.44 18 7.92 37.44 30.96 48.96 18 10.8-11.52 28.8-18 34.56-38.88 3.6-12.24 24.48 1.44 40.32-8.64 7.92-4.32 8.64-14.4 15.84-15.84 10.08-2.16 18.72-8.64 28.08-6.48 6.48.72 2.16 8.64 4.32 12.24.72 1.44 4.32 0 6.48.72 2.16 1.44 4.32 3.6 3.6 7.2 4.32 0 10.08 1.44 12.96-.72 6.48-5.04 12.96-5.04 17.28-7.92 11.52-8.64 15.12-25.92 24.48-34.56 10.8-10.8 40.32 9.36 46.08-4.32 10.08-23.76-.72-57.6 14.4-79.92 28.08-40.32 56.16-82.08 105.12-97.2 5.04-2.16 5.04-10.08 5.04-13.68 1.44-21.6-3.6-43.92 20.16-50.4 26.64-7.92 56.88-15.12 82.08 0 5.76 4.32 14.4 13.68 20.16 16.56 17.28 7.92 35.28 15.84 43.92 29.52 12.24 18.72 0 46.8-7.2 70.56 25.92 1.44 47.52-15.84 73.44-13.68l10.8-3.6c10.08-6.48 24.48-5.04 30.24-14.4 30.96-51.84 43.92-107.28 73.44-159.12 2.16-3.6 14.4-1.44 22.32-1.44-2.16 6.48 2.88 12.24 5.04 16.56 12.96 26.64 14.4 56.16 31.68 79.92 5.04 5.76 15.12 12.96 25.92 12.24-.72 9.36 8.64 15.12 12.96 18.72 10.08 10.08 14.4-8.64 25.92-15.12 8.64-5.76 21.6-1.44 26.64-8.64 10.08-12.96 28.08-11.52 34.56-23.76 16.56-36 28.8-72 39.6-110.88.72-2.16 15.84 2.88 20.88-4.32 10.08-17.28 25.2-30.24 42.48-39.6 3.6-2.16 9.36-6.48 10.8-12.24 9.36 4.32 3.6 12.24 2.16 16.56-8.64 24.48-18 48.24-19.44 74.16 21.6-5.76 43.2-12.24 66.24-10.8-1.44 31.68 9.36 65.52-6.48 93.6-6.48 11.52-23.76 18.72-31.68 33.12-5.04 8.64-7.2 21.6-2.16 25.92 17.28 13.68 41.76 1.44 61.2 2.16 7.92 0 14.4 23.04 19.44 32.4 10.08 18.72 19.44 63.36 8.64 91.44-12.24 30.24-68.4 32.4-62.64 71.28 2.16 12.96 26.64 6.48 39.6-4.32 6.48-5.04 15.84-12.24 23.76-15.12 4.32-1.44 8.64-5.04 13.68-5.04z" clip-path="url(#J)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M2043.43 4595.61c-23.75 7.2-50.39 5.04-72.72-11.52-19.44-14.39-30.23-33.84-44.64-52.55-29.52-40.33-23.75-92.16-46.8-133.2-10.07-17.29-30.23-36-23.75-57.61 4.32-16.55 23.03-23.76 29.52-41.76 5.03-14.4 2.87-31.68 10.8-41.04 28.07-34.55 72-48.23 116.64-55.43 30.23-5.05 55.43 14.39 81.36 30.95 13.68 7.93 33.84-1.43 39.59-16.56 3.61-10.8-1.43-25.92 2.16-37.44 12.25-36 20.16-71.27 38.89-106.56 15.11-27.35 10.07-60.48 2.16-88.55-6.48-23.05-20.16-43.93-15.12-66.96 4.32-22.33 23.03-34.57 28.07-56.88 8.64-37.45-1.43-74.16 16.57-107.29 8.64-15.83 18-28.8 34.55-38.16 15.84-9.35 33.84-7.19 51.84-7.92-2.16 4.32 5.04 5.76 3.61 10.08 9.36-2.16 12.95 5.04 19.43 8.65 22.32 15.11 40.32 33.84 61.93 50.39 10.8 7.93 19.44 24.48 25.91 38.88 3.61 10.08-2.88 21.6 4.32 31.68 8.64 11.53 5.77 24.48 15.13 33.84 15.83 16.56 37.44 28.08 46.8 50.4 12.96 28.81 11.52 59.76 5.75 90-1.43 6.49-1.43 15.84-5.75 23.04-7.93 13.68-2.88 33.84-2.88 51.12 10.08-2.87 15.84 6.49 20.16 11.52 20.15 25.93 48.24 43.92 58.31 73.45 7.21 21.59 26.64 36 36 55.43 2.16 5.04 1.44 13.68 5.77 15.84 18.71 12.25 28.07 33.12 23.76 48.96-3.6 13.68-26.64 7.93-41.76 12.25-18.72 5.75-31.68 19.43-48.24 29.52-33.12 21.59-64.8 47.52-79.21 82.79-9.36 23.76-23.75 41.76-38.88 61.21-4.32 5.75-7.19 14.39-15.83 15.11 4.32.73 9.35 2.16 13.67 3.6-7.19 21.61-11.51 43.92-17.28 66.24-36-25.92-81.36 3.6-122.39-1.43-2.88 0 4.32-10.09-.72-11.52-6.48-2.16-12.25 2.87-18.73 7.91-11.52 7.93-30.95-5.75-43.2 5.77-2.87 2.87.73 11.52-1.43 16.55-5.05 10.09-6.48 12.24-14.41 21.61-6.48 7.91-20.16 23.75-30.23 26.63-10.8 2.89-23.05 4.32-30.25-.72-21.59-14.39-38.87-30.23-61.2-43.2-3.6-2.16-9.35.72-17.28 2.88" clip-path="url(#K)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M2043.43 4595.61c-23.75 7.2-50.39 5.04-72.72-11.52-19.44-14.39-30.23-33.84-44.64-52.55-29.52-40.33-23.75-92.16-46.8-133.2-10.07-17.29-30.23-36-23.75-57.61 4.32-16.55 23.03-23.76 29.52-41.76 5.03-14.4 2.87-31.68 10.8-41.04 28.07-34.55 72-48.23 116.64-55.43 30.23-5.05 55.43 14.39 81.36 30.95 13.68 7.93 33.84-1.43 39.59-16.56 3.61-10.8-1.43-25.92 2.16-37.44 12.25-36 20.16-71.27 38.89-106.56 15.11-27.35 10.07-60.48 2.16-88.55-6.48-23.05-20.16-43.93-15.12-66.96 4.32-22.33 23.03-34.57 28.07-56.88 8.64-37.45-1.43-74.16 16.57-107.29 8.64-15.83 18-28.8 34.55-38.16 15.84-9.35 33.84-7.19 51.84-7.92-2.16 4.32 5.04 5.76 3.61 10.08 9.36-2.16 12.95 5.04 19.43 8.65 22.32 15.11 40.32 33.84 61.93 50.39 10.8 7.93 19.44 24.48 25.91 38.88 3.61 10.08-2.88 21.6 4.32 31.68 8.64 11.53 5.77 24.48 15.13 33.84 15.83 16.56 37.44 28.08 46.8 50.4 12.96 28.81 11.52 59.76 5.75 90-1.43 6.49-1.43 15.84-5.75 23.04-7.93 13.68-2.88 33.84-2.88 51.12 10.08-2.87 15.84 6.49 20.16 11.52 20.15 25.93 48.24 43.92 58.31 73.45 7.21 21.59 26.64 36 36 55.43 2.16 5.04 1.44 13.68 5.77 15.84 18.71 12.25 28.07 33.12 23.76 48.96-3.6 13.68-26.64 7.93-41.76 12.25-18.72 5.75-31.68 19.43-48.24 29.52-33.12 21.59-64.8 47.52-79.21 82.79-9.36 23.76-23.75 41.76-38.88 61.21-4.32 5.75-7.19 14.39-15.83 15.11 4.32.73 9.35 2.16 13.67 3.6-7.19 21.61-11.51 43.92-17.28 66.24-36-25.92-81.36 3.6-122.39-1.43-2.88 0 4.32-10.09-.72-11.52-6.48-2.16-12.25 2.87-18.73 7.91-11.52 7.93-30.95-5.75-43.2 5.77-2.87 2.87.73 11.52-1.43 16.55-5.05 10.09-6.48 12.24-14.41 21.61-6.48 7.91-20.16 23.75-30.23 26.63-10.8 2.89-23.05 4.32-30.25-.72-21.59-14.39-38.87-30.23-61.2-43.2-3.6-2.16-9.35.72-17.28 2.88z" clip-path="url(#L)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M2575.52 3980.02c-2.89 7.92-9.36 1.44-13.68 2.88-5.77-23.04-26.64-33.84-48.96-30.96 5.03-20.88 1.44-29.52-16.56-43.2-2.89-2.88.72-12.96-2.16-15.84-26.64-23.76-12.96-65.52 10.07-82.08 15.13-11.52 29.52 6.48 30.24 21.6 1.44 30.24 25.92 47.52 31.69 77.04.72 5.04 3.59 13.68 12.95 10.8-7.2 16.56.73 31.68-3.59 62.64v-2.88" clip-path="url(#M)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M2575.52 3980.02c-2.89 7.92-9.36 1.44-13.68 2.88-5.77-23.04-26.64-33.84-48.96-30.96 5.03-20.88 1.44-29.52-16.56-43.2-2.89-2.88.72-12.96-2.16-15.84-26.64-23.76-12.96-65.52 10.07-82.08 15.13-11.52 29.52 6.48 30.24 21.6 1.44 30.24 25.92 47.52 31.69 77.04.72 5.04 3.59 13.68 12.95 10.8-7.2 16.56.73 31.68-3.59 62.64v-2.88z" clip-path="url(#N)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M1197.43 4461.7c17.28 13.68 41.76 13.68 56.88 4.32 21.6-13.68 45.36-31.68 55.44-56.89 2.88-7.2-12.24-7.2-18-5.04-12.24 5.04-20.88 12.25-29.52 22.32-2.88 2.88-10.8 1.45-16.56 1.45 1.44 9.35 0 16.55-7.92 19.43-10.08 4.32-23.76-1.43-33.12 2.89-2.88 1.43-12.24 7.2-7.2 11.52" clip-path="url(#O)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M1197.43 4461.7c17.28 13.68 41.76 13.68 56.88 4.32 21.6-13.68 45.36-31.68 55.44-56.89 2.88-7.2-12.24-7.2-18-5.04-12.24 5.04-20.88 12.25-29.52 22.32-2.88 2.88-10.8 1.45-16.56 1.45 1.44 9.35 0 16.55-7.92 19.43-10.08 4.32-23.76-1.43-33.12 2.89-2.88 1.43-12.24 7.2-7.2 11.52z" clip-path="url(#P)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3295.52 4692.09c-10.09 7.2-12.25-11.52-8.64-14.39 61.91-41.05 0-17.29 27.35-15.84-2.16 12.95-8.64 23.75-18.71 30.23" clip-path="url(#Q)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3295.52 4692.09c-10.09 7.2-12.25-11.52-8.64-14.39 61.91-41.05 0-17.29 27.35-15.84-2.16 12.95-8.64 23.75-18.71 30.23z" clip-path="url(#R)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3348.79 4630.89c78.48 48.25-48.24-84.96-5.76-.71-2.16-3.61-1.44-8.64-.73-13.68.73-2.89 5.05-2.89 5.77-4.32 5.04-5.77-9.36-14.41 1.43-19.45 2.89-1.44 8.64-1.44 8.64 0 3.61 12.97 3.61 28.09-2.87 41.04-1.45 2.16-4.32-1.43-6.48-2.88" clip-path="url(#S)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3348.79 4630.89c78.48 48.25-48.24-84.96-5.76-.71-2.16-3.61-1.44-8.64-.73-13.68.73-2.89 5.05-2.89 5.77-4.32 5.04-5.77-9.36-14.41 1.43-19.45 2.89-1.44 8.64-1.44 8.64 0 3.61 12.97 3.61 28.09-2.87 41.04-1.45 2.16-4.32-1.43-6.48-2.88z" clip-path="url(#T)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3327.91 4571.14c-3.6 0-6.48-3.6-10.08-4.32-3.6-1.44 13.68-20.88 17.28-23.04 2.16-.72-7.92 12.96-7.92 13.68 2.16 3.6.72 9.36.72 13.68" clip-path="url(#U)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3327.91 4571.14c-3.6 0-6.48-3.6-10.08-4.32-3.6-1.44 13.68-20.88 17.28-23.04 2.16-.72-7.92 12.96-7.92 13.68 2.16 3.6.72 9.36.72 13.68z" clip-path="url(#V)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3299.11 4388.26c-1.44 2.16-7.92 1.44-8.64.72-3.6-9.36-2.16-25.2 12.96-24.48-3.6-19.44 6.48-36.72 9.36-55.44 1.44-7.2 13.68-18.72 20.88-12.24 1.44 1.44 1.44-7.2 1.44 25.92-7.2-2.88-5.04 7.92-10.8 7.2 4.32 23.76-10.08 41.76-25.2 58.32" clip-path="url(#W)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3299.11 4388.26c-1.44 2.16-7.92 1.44-8.64.72-3.6-9.36-2.16-25.2 12.96-24.48-3.6-19.44 6.48-36.72 9.36-55.44 1.44-7.2 13.68-18.72 20.88-12.24 1.44 1.44 1.44-7.2 1.44 25.92-7.2-2.88-5.04 7.92-10.8 7.2 4.32 23.76-10.08 41.76-25.2 58.32z" clip-path="url(#X)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3366.79 4291.06c-5.04 5.04-2.16-7.92-7.2-3.6-8.64-31.68 7.92-18 3.61-13.68 1.43-.72 4.31 0 7.19 0-.72 5.76 1.44 12.24-3.6 17.28" clip-path="url(#Y)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3366.79 4291.06c-5.04 5.04-2.16-7.92-7.2-3.6-8.64-31.68 7.92-18 3.61-13.68 1.43-.72 4.31 0 7.19 0-.72 5.76 1.44 12.24-3.6 17.28z" clip-path="url(#Z)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3307.03 4270.9c-5.04-2.88-9.36 8.64-12.96 2.16-2.88-3.6-2.88-10.8 0-12.24 18.72-12.96 8.64-.72 20.16 5.76-5.04-4.32-1.44 7.2-7.2 4.32" clip-path="url(#aa)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3307.03 4270.9c-5.04-2.88-9.36 8.64-12.96 2.16-2.88-3.6-2.88-10.8 0-12.24 18.72-12.96 8.64-.72 20.16 5.76-5.04-4.32-1.44 7.2-7.2 4.32z" clip-path="url(#ab)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3347.35 4280.26c-1.44 2.88 0 19.44 3.6 23.04l-3.6-23.04" clip-path="url(#ac)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3347.35 4280.26c-1.44 2.88 0 19.44 3.6 23.04z" clip-path="url(#ad)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3342.31 4269.46c5.04-.72-6.48-9.36-6.48-10.08.72-5.04 5.76-2.88 10.08-2.88-4.32 3.6 5.04 12.24-3.6 12.96" clip-path="url(#ae)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3342.31 4269.46c5.04-.72-6.48-9.36-6.48-10.08.72-5.04 5.76-2.88 10.08-2.88-4.32 3.6 5.04 12.24-3.6 12.96z" clip-path="url(#af)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3381.2 4252.18c-8.65-5.04-20.88-7.2-13.68-15.84 4.32-5.76 16.55 2.88 24.48 0 0 3.6-3.61 10.08-5.05 12.24-.72 2.16-5.04 4.32-5.75 3.6" clip-path="url(#ag)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3381.2 4252.18c-8.65-5.04-20.88-7.2-13.68-15.84 4.32-5.76 16.55 2.88 24.48 0 0 3.6-3.61 10.08-5.05 12.24-.72 2.16-5.04 4.32-5.75 3.6z" clip-path="url(#ah)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3299.83 4247.14c-18-5.76-18.72-23.76-20.88-40.32-5.76 2.88-8.64-5.77-13.68-2.88 0-3.6.72-9.37-.72-10.08-23.04-7.92-38.88-23.76-54-40.32-1.44-2.16-8.64-10.08-4.32-11.52 21.6-9.36 43.92-18 64.08-33.84 15.12-12.25 25.92 13.68 38.88 8.64 7.2-2.89 1.44-24.48 7.2-29.52 13.68-12.25 30.24 3.59 38.16 18.72 13.68 26.64 5.04 55.44-.72 82.8-2.88 12.96-20.16 15.84-15.12 32.39 1.44-6.48-2.88-10.07-7.2-14.39-8.64 17.28-1.44 48.96-31.68 40.32" clip-path="url(#ai)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3299.83 4247.14c-18-5.76-18.72-23.76-20.88-40.32-5.76 2.88-8.64-5.77-13.68-2.88 0-3.6.72-9.37-.72-10.08-23.04-7.92-38.88-23.76-54-40.32-1.44-2.16-8.64-10.08-4.32-11.52 21.6-9.36 43.92-18 64.08-33.84 15.12-12.25 25.92 13.68 38.88 8.64 7.2-2.89 1.44-24.48 7.2-29.52 13.68-12.25 30.24 3.59 38.16 18.72 13.68 26.64 5.04 55.44-.72 82.8-2.88 12.96-20.16 15.84-15.12 32.39 1.44-6.48-2.88-10.07-7.2-14.39-8.64 17.28-1.44 48.96-31.68 40.32z" clip-path="url(#aj)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3139.27 4157.86c-5.04 12.96-17.28 18.72-27.36 12.96-7.2-3.6-12.24-11.52-6.48-18.72 20.88-30.24 23.76-39.6 32.4-51.84 7.2-11.52 18-17.28 32.4-19.44-7.92 9.36 5.76 19.44 0 28.08-10.8 18-13.68 39.6-30.96 52.56v-3.6" clip-path="url(#ak)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3139.27 4157.86c-5.04 12.96-17.28 18.72-27.36 12.96-7.2-3.6-12.24-11.52-6.48-18.72 20.88-30.24 23.76-39.6 32.4-51.84 7.2-11.52 18-17.28 32.4-19.44-7.92 9.36 5.76 19.44 0 28.08-10.8 18-13.68 39.6-30.96 52.56v-3.6z" clip-path="url(#al)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3233.59 4067.14c-12.24-2.16-25.2 5.04-34.56-4.32-1.44-1.44-1.44-7.92 0-8.64 26.64-10.08 26.64-20.88 40.32-9.36 6.48 5.04 15.12 7.2 21.6 12.24 1.44.72.72 5.76.72 5.76-9.36 2.88-18 6.48-28.08 4.32" clip-path="url(#am)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3233.59 4067.14c-12.24-2.16-25.2 5.04-34.56-4.32-1.44-1.44-1.44-7.92 0-8.64 26.64-10.08 26.64-20.88 40.32-9.36 6.48 5.04 15.12 7.2 21.6 12.24 1.44.72.72 5.76.72 5.76-9.36 2.88-18 6.48-28.08 4.32z" clip-path="url(#an)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3384.07 4052.74c11.52 5.04-59.03-59.76-26.64-25.2-4.32-4.32 12.24-20.16 13.68-15.12 5.04 12.96 23.04 23.76 15.84 40.32 0 .72-2.16.72-2.88 0" clip-path="url(#ao)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3384.07 4052.74c11.52 5.04-59.03-59.76-26.64-25.2-4.32-4.32 12.24-20.16 13.68-15.12 5.04 12.96 23.04 23.76 15.84 40.32 0 .72-2.16.72-2.88 0z" clip-path="url(#ap)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3408.55 4182.34c0-6.48-7.92-26.64-5.76-33.12 0-.72 11.52 12.24 12.24 12.96 2.16 7.2 1.44 15.84-6.48 20.16" clip-path="url(#aq)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3408.55 4182.34c0-6.48-7.92-26.64-5.76-33.12 0-.72 11.52 12.24 12.24 12.96 2.16 7.2 1.44 15.84-6.48 20.16z" clip-path="url(#ar)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3430.15 4093.06c-5.04 0-3.6 14.4-7.2 11.52-1.44-.72-1.44-7.92 0-8.64 8.64-3.6 17.28 2.16 23.76 10.08-2.88 0-12.96-12.96-16.56-12.96" clip-path="url(#as)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3430.15 4093.06c-5.04 0-3.6 14.4-7.2 11.52-1.44-.72-1.44-7.92 0-8.64 8.64-3.6 17.28 2.16 23.76 10.08-2.88 0-12.96-12.96-16.56-12.96z" clip-path="url(#at)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3496.39 4138.42c-13.68 1.44-17.28-10.08-23.76-19.44-5.76-9.36-.72-16.56 7.2-22.32 5.76-4.32 16.56.72 23.04-2.16 17.28-9.36 3.6-26.64 15.84-35.28 10.8-7.2 26.64-5.04 40.32-7.2 15.12-2.88 17.28-30.24 34.56-24.48 6.48 1.44 5.76 14.4 3.6 22.32 0 .72-5.76-.72-5.76 0-2.16 10.8 2.88 23.04-2.16 30.24-12.96 15.84-26.64 30.96-44.64 42.48-14.4 9.36-30.24 13.68-48.24 15.84" clip-path="url(#au)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3496.39 4138.42c-13.68 1.44-17.28-10.08-23.76-19.44-5.76-9.36-.72-16.56 7.2-22.32 5.76-4.32 16.56.72 23.04-2.16 17.28-9.36 3.6-26.64 15.84-35.28 10.8-7.2 26.64-5.04 40.32-7.2 15.12-2.88 17.28-30.24 34.56-24.48 6.48 1.44 5.76 14.4 3.6 22.32 0 .72-5.76-.72-5.76 0-2.16 10.8 2.88 23.04-2.16 30.24-12.96 15.84-26.64 30.96-44.64 42.48-14.4 9.36-30.24 13.68-48.24 15.84z" clip-path="url(#av)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3562.63 4008.1c-18.72-7.92-24.48-28.8-31.68-45.36-22.32-49.68-28.8-18.72-36.72-12.24-14.4 11.52-12.24 33.12-27.36 45.36-9.36 7.2-20.88-6.48-28.8-11.52-25.92-17.28-51.84-27.36-77.76-43.92-5.04-2.88-10.08-10.08-12.24-10.8-43.2-16.56-78.48-45.36-120.96-64.08-13.68-5.76-31.68-12.96-37.44-26.64-4.32-10.8 5.76-25.92.72-37.44-2.16-4.32-.72-12.24-5.76-13.68-18.72-5.76-18-22.32-23.04-36-2.88-7.92-7.2-18 2.88-22.32 18-8.64 38.88-7.2 59.04-4.32 28.08 3.6 47.52 29.52 76.32 24.48 8.64-1.44 15.12-13.68 23.04-20.16 25.2-20.88 28.8-72.72 68.4-67.68 10.8 1.44 12.96 15.12 21.6 20.16 41.04 23.04 77.04 47.52 117.36 72.72 21.6 13.68 36.72 33.84 41.76 61.2 6.48 29.52 5.04 59.04 3.6 86.4-1.44 34.56-4.32 71.28-12.96 105.84" clip-path="url(#aw)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3562.63 4008.1c-18.72-7.92-24.48-28.8-31.68-45.36-22.32-49.68-28.8-18.72-36.72-12.24-14.4 11.52-12.24 33.12-27.36 45.36-9.36 7.2-20.88-6.48-28.8-11.52-25.92-17.28-51.84-27.36-77.76-43.92-5.04-2.88-10.08-10.08-12.24-10.8-43.2-16.56-78.48-45.36-120.96-64.08-13.68-5.76-31.68-12.96-37.44-26.64-4.32-10.8 5.76-25.92.72-37.44-2.16-4.32-.72-12.24-5.76-13.68-18.72-5.76-18-22.32-23.04-36-2.88-7.92-7.2-18 2.88-22.32 18-8.64 38.88-7.2 59.04-4.32 28.08 3.6 47.52 29.52 76.32 24.48 8.64-1.44 15.12-13.68 23.04-20.16 25.2-20.88 28.8-72.72 68.4-67.68 10.8 1.44 12.96 15.12 21.6 20.16 41.04 23.04 77.04 47.52 117.36 72.72 21.6 13.68 36.72 33.84 41.76 61.2 6.48 29.52 5.04 59.04 3.6 86.4-1.44 34.56-4.32 71.28-12.96 105.84z" clip-path="url(#ax)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3359.59 3634.42c-5.76-2.88-14.4 0-20.16-1.44-.72-.72-.72-4.32-.72-6.48 4.32 0 4.32-4.32 9.36-8.64 14.4-12.96 41.76-6.48 24.48 18-1.44 2.16-7.92 1.44-12.96-1.44" clip-path="url(#ay)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3359.59 3634.42c-5.76-2.88-14.4 0-20.16-1.44-.72-.72-.72-4.32-.72-6.48 4.32 0 4.32-4.32 9.36-8.64 14.4-12.96 41.76-6.48 24.48 18-1.44 2.16-7.92 1.44-12.96-1.44z" clip-path="url(#az)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3597.91 3647.38c-25.2-18-54-26.64-83.52-37.44-5.04-1.44-14.4-8.64-14.4-18.72 29.52 0 48.96 23.04 90.72 36 7.2 2.88 10.08 11.52 10.8 20.16h-7.2 3.6" clip-path="url(#aA)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3597.91 3647.38c-25.2-18-54-26.64-83.52-37.44-5.04-1.44-14.4-8.64-14.4-18.72 29.52 0 48.96 23.04 90.72 36 7.2 2.88 10.08 11.52 10.8 20.16h-7.2 3.6z" clip-path="url(#aB)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3685.04 3703.54c0-2.88 1.44-5.76 0-6.48-1.45-1.44-5.77-.72-5.77-.72-5.75-28.08-28.07-38.88-20.88-28.8-8.64-11.52 19.45-24.48 25.2-12.24 6.48 13.68 7.2 31.68 7.93 48.24.71 2.16-3.61 5.04-5.77 2.88-1.43-1.44-.71-4.32-.71-6.48v3.6" clip-path="url(#aC)" style="fill:#191818;fill-opacity:1;fill-rule:evenodd;stroke:none" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M3685.04 3703.54c0-2.88 1.44-5.76 0-6.48-1.45-1.44-5.77-.72-5.77-.72-5.75-28.08-28.07-38.88-20.88-28.8-8.64-11.52 19.45-24.48 25.2-12.24 6.48 13.68 7.2 31.68 7.93 48.24.71 2.16-3.61 5.04-5.77 2.88-1.43-1.44-.71-4.32-.71-6.48v3.6z" clip-path="url(#aD)" style="fill:none;stroke:#231f20;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/><path d="M1254.31 3306.1c252-73.44 528.48-94.32 805.68-94.32 335.52 0 780.48 59.04 944.64 132.48" clip-path="url(#aE)" style="fill:none;stroke:#fff;stroke-width:20.16;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" transform="matrix(.13333 0 0 -.13333 -20.073 683.885)"/></svg>
diff --git a/source-data/Owl 03.svg b/source-data/Owl 03.svg line changes: +1/-0 index 0000000..4f82fdb --- /dev/null +++ b/source-data/Owl 03.svg
@@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="490.455" height="522.297" fill-rule="evenodd" stroke-linecap="round" preserveAspectRatio="none" viewBox="0 0 3035 3232"><style>.brush0{fill:#fff}.pen1{stroke:none}.brush1{fill:#000}</style><path d="m1993 2661 428-42h1l1-1h7l5-1h5l7-1 8-1h8l9-1h10l10-1h45l13 1 12 1 13 1 13 1 13 2 13 2 13 3 13 3 12 3 13 3 12 5 12 4 12 6 11 5 10 7 10 7h54l123-42 18 30-177 96v3l1 2 2 3 4 3 6 3 8 4 10 4 13 5 17 4 20 5 25 5 28 5 34 5 39 5 1 1 1 1 2 1 3 1 2 3 3 3 3 3 2 4 1 5v5l-1 6-3 7-5 7-6 8-10 8-11 10-93-7v1l-1 2-1 3-1 4-2 6-2 6-3 7-3 9-2 8-4 10-3 10-3 10-4 11-3 11-4 12-3 11-4 12-4 12-3 12-3 11-3 12-2 11-3 10-2 10-2 10-1 9-2 9v20l1 5 1 3 7 11 5 10 4 8 3 6 2 4 2 4 1 1v2l-1 2-2 3-2 4-3 5-3 5-4 5-5 5-5 5-5 3-6 2-6 1h-6l-6-2-8-5-7-7-4-5-4-6-5-7-6-9-5-9-6-10-7-11-7-11-7-12-7-13-7-13-8-13-7-14-8-14-7-13-8-14-7-14-7-13-7-13-7-13-6-12-6-12-6-11-5-10-5-9-5-8-3-8-3-6-3-5-2-3-1-3v-1l-96-143-114-3-375 41 19-131zM58 2502l54 30 21 30 78 45 161 9h153l17 1h53l17 1h17l16 1h16l15 1 13 1 13 1 12 1 10 1 8 1 8 1 5 2 3 1 2 2v12l1 9v12l-1 12v28l-1 14v28l-1 13v11l-1 9v13l-264-21h-50l-8 1h-8l-7 1-7 1-5 1-5 1-3 1-3 3-4 4-6 6-6 6-7 8-7 8-8 8-8 9-8 8-7 8-7 8-6 7-6 5-3 5-3 2-1 1-65 90-1 1h-2l-2 2h-3l-4 1-4 1h-4l-4-1-3-1-4-3-3-3-2-5-1-8v-8l1-11 2-13 3-13 1-13v-12l-1-11-1-10-3-9-3-8-4-7-3-6-4-6-4-5-3-4-3-2-2-3-2-1h-1l-161-24 12-57v-117l63-3-36-33 9-69z" class="pen1 brush0"/><path d="m215 1616 3-12 3-12 3-13 4-12 3-12 3-12 3-12 4-13 3-12 3-12 4-12 4-12 3-13 4-12 3-12 4-12 8-24 9-23 9-24 9-24 9-23 9-24 10-24 10-23 10-23 10-24 10-23 10-23 11-23 11-23 12-22 11-23 12-23 12-22 12-22 13-22 13-22 13-21 14-22 14-21 15-21 14-21 16-20 15-20 16-20 17-20 17-19 17-19 8-6 8-6 8-6 9-5 8-5 9-4 9-5 9-4 10-4 9-4 9-4 10-3 9-4 10-4 9-4 10-4 9-4 9-4 9-4 9-5 9-4 9-5 8-5 9-5 8-6 8-6 8-7 7-7 7-7 7-8 6-9 6-9-17-3v-5l4-6 6-5 7-6 5-6 3-7-2-7-8-9-2 2-1 1-1 1h-2l-1 1h-4v-5l2-4 3-4 5-4 3-4 4-4 3-4 1-4 3 1h2l2-1 2-2 2-2 1-2 1-2 2-2-4-2-2-1-2-1-2-2-2-2-1-2-2-3-3-2 5-7 5-6 5-6 7-6 6-6 6-6 7-6 7-6 7-6 7-5 7-6 7-5 7-5 7-5 7-5 6-4 5 8 5 3 5-1 5-3 6-5 6-5 7-3h8v-5l-4-1-3-1h-4l-5 1-4 1-5 1-5 1-5 1-4 1h-4l-4-1-3-1-2-3-2-4-1-6 1-7 58-10-8-7-9-7-9-6-10-5-10-5-9-4-11-4-10-4-10-3-10-4-11-3-10-3-11-3-10-4-11-3-10-4 6-3 6-2 6-1 6-1h13l6 1h7l6 1 7 1 6 1 7 1h19l6-1-3-1-3-2-3-2-2-2-2-2-2-3-2-3-1-3v-8l22-3-6-5-6-5-7-5-7-5-6-5-7-6-6-6-6-6 33 15 2-5 1-5v-9l-2-4-2-4-3-4-4-4-3-3-4-4-4-3-4-4-4-3-3-3-3-3-2-3 2-1h2l2 1h3l2-1 2-1 3-1 1-2-2-2-3-1h-5v-10l-10-6-9-5-10-5-10-5-10-5-11-4-10-4-10-4-11-3-10-4-11-3-11-3-10-3-12-3-10-2-11-3 9-5 10-5 11-4 10-4 10-2 11-3 11-3 11-2 11-1 11-2 11-2 11-1 12-1 11-1 11-1 11-2h10l10-1h67l10 1h9l10 1 9 1 10 1 9 1 9 1 9 1 9 2 9 2 9 1 9 2 9 2 9 3 9 2 8 3 9 3 8 3 9 3 8 3 9 4 8 4 8 4 10-2 9-2 10-1 10-2 10-1 10-1 10-1 9-1 10-2 10-1 10-2 9-2 10-2 9-2 9-4 9-3 1 4 2 3 3 2 3 2 3 1h17l4-1 4-1h5l4-2h4l4-1 3-1 2-1 3-1 3-1 3-1 2-2 3-2 1-2 1-3h4l5 1 4 2 4 2 4 2 4 3 5 2 4 3 4 2 5 1 4 1h5l4-1 5-2 5-4 5-5 5-2 6-1 6-1 6 1 6 3 5 3 5 5 2 6h4l5-1h4l4-1 3-1 4-2 4-1 4-2 3-1 4-2 4-1h4l4-1h4l5 1 4 1 2 6 2 5 3 3 3 3 4 1 4 1 5-1h5l5-1 5-1 5-1 4-1 5-1h5l4 1 4 1v3l-1 2-1 1-1 2-1 2v1l1 3 4 1 5 1h11l5-2 5-1 5-2 6-2 5-1 5-1h8l4 2 4 2 3 4 2 6-8 8 11 7 11 5 11 3 12 1h11l12-1 11-3 12-4 12-4 12-5 11-5 12-4 11-5 12-4 11-4 11-3h9l10-1h9l10-1 10-1 10-1 10-1h10l10-1 10-1 10-1h10l10-1h20l11-1h10l10 1h10l10 1h9l10 2 10 1 9 1 10 2 9 2 10 3 9 3 9 3 9 3 8 5 9 4-14 7-14 7-14 6-15 6-15 5-15 5-16 5-15 5-15 5-15 5-14 6-14 7-14 8-12 8-13 9-11 11 5 2h5l5-2 5-4 5-3 5-1 6 1 6 4v18l33-12-1 6-2 4-2 4-2 4-3 4-4 3-3 4-4 4 3 1h11l3-1 4-1 3-1 4-1 4-2 3-1 4-1 4-1 4-1h4l5 1h4l2 10v8l-2 6-3 5-5 3-5 3-6 2-7 1-8 1-8 1-7 1-8 1-7 1-7 2-6 3-6 3-3 3-4 1-3 2-4 1-3 1-4 1-4 1-4 2-3 1-4 1-4 1-3 2-4 1-3 2-4 3-3 3 7 1h6l7-3 6-2 6-3 7-2h7l8 1-4 4-5 3-6 3-6 4-7 3-6 3-7 4-5 5 7 5 8 3 8 4 9 3 7 5 6 5 4 8v10l-4 1-5-1-3-2-4-3-4-2-3-2-4 1-4 4 4 7 5 6 4 6 6 6 5 6 5 6 6 6 5 5 5 6 6 5 5 5 5 6 5 6 4 6 4 6 4 6-54-29 2 4 3 4 2 4 3 3 3 4 3 4 2 4 3 4 3 3 3 4 3 3 3 4 4 3 3 3 4 4 4 3-12 10 40 54-4 3-4-1-4-3-4-5-4-3-4-2-4 2-5 6 1 5 3 5 2 4 3 4 4 5 3 4 4 4 4 4 4 5 3 4 3 4 2 4 1 5 1 5v5l-2 5h-6l-3-1-2-1-2-2-2-2-2-2-1-3v10l1 4 2 4 2 4 2 4 3 3 3 3 3 4 4 4 3 3 3 4 3 4 3 5 2 4 2 5v7l-8-1-6-4-5-6-4-7-4-8-4-8-5-8-7-6v14l2 7 2 6 3 6 3 6 3 5 4 6 5 6 4 5 4 6 5 5 4 6 4 5 4 6 4 6-21 3 2 4v1l1-1-1-2-1-3-1-5-1-5-2-6-1-6-2-6v-5l-1-3v-3l1-1h2l2 3 7 2 8 2 7 3 8 2 9 4 8 4 9 4 9 3 9 5 9 5 10 4 9 5 10 6 9 5 10 5 10 6 9 5 10 6 9 6 10 5 9 6 9 5 9 5 8 6 9 5 8 5 8 5 8 4 7 5 8 3 6 4 6 4 13 14 11 13 11 14 9 14 9 13 8 14 8 14 7 14 6 15 7 14 6 14 5 15 6 15 6 15 5 15 6 15 8 18 8 17 8 18 8 18 7 18 8 18 7 18 8 18 7 18 8 18 7 18 7 18 7 18 7 19 7 18 7 18 7 18 7 18 6 19 7 18 7 18 6 19 6 19 6 18 7 18 6 19 5 19 6 18 6 19 5 19 6 18 5 19H215zm2589 0 5 17 5 17 4 17 5 17 4 17 4 17 5 17 4 17 4 17 4 17 3 17 4 17 4 18 3 17 4 17 3 18 3 17 3 18 3 17 3 18 3 18 2 18 3 17 2 18 2 18 2 18 3 18 2 18 2 18 1 18 2 18 1 18 2 13 2 13 2 13 2 12 2 13 2 13 2 13 3 13 1 13 3 12 2 13 1 13 3 13 1 13 3 12 1 13 2 14 2 12 1 13 2 13 2 13 1 13 1 13 2 13 1 13 1 13 1 13 1 13v13l1 13 1 14v13l57-22 2 1 2 2 1 2 1 2 1 3 1 2v3l-1 2-5 4-6 4-5 3-6 3-6 2-7 3-6 2-6 2-6 2-6 3-6 2-6 3-5 3-6 3-5 4-5 4 6 1 7-1h6l6-1 6-2 6-1 7-2 6-2 6-3 7-2 6-2 7-2 6-1 7-2 7-1h7l-1 6v7l2 7v14l-2 5-5 5-8 2-5-1-5-1h-5l-4 1-5 1-4 2-4 1-4 2-3 2-4 2-4 2-4 1-4 2-4 1h-10l-1 8-2 7-3 8-2 8-3 7-3 8-2 8-3 8-2 7-3 8-1 7-1 8-1 7v8l1 7 1 7 6 3 8 1h23l6 2 5 3 3 6v11l-8-1-8-2-8-1-8-1-8-1-8-2-9-1h-9l-8-2-9-1-8-1-9-1-9-1-9-1-8-1-9-2-9-1-8-2-9-1-8-3-9-1-8-2-8-3-8-2-8-3-8-4-8-3-8-3-7-4-7-4-7-5-7-4 9-11 11-10 11-9 11-8 12-7 13-6 13-7 13-6 13-5 13-6 14-5 13-6 13-5 13-6 13-7 12-7-5-1h-6l-6 1-5 2-6 2-5 2-6 3-5 3-6 3-5 2-6 3-5 2-6 2-6 1h-5l-6-1-5 6-6 4-6 1h-21l-7 2-6 5-7 3-7 2-5 1-6-1-5-1-5-2-5-2-4-3-5-4-4-3-4-4-5-3-5-4-5-3-5-3-6-2-6-4-7-3-7-4-7-3-8-2-7-3-8-2-7-2-8-2-8-1-8-2-7-1-8-1-8-1h-8l-9-1h-40l-8 1h-17l-7 1-9 1h-7l-8 1-8 1h-8l-8 1-7 1-14 2-13 1-13 1-13 2-13 1-14 2-13 1-14 1-14 1-13 2-14 1-14 1-13 1-14 1-14 1-14 1-14 1-13 1-14 1-14 1-14 1-14 1-14 1-14 1-14 1h-14l-14 2-14 1-14 1-13 1-14 1-14 1-1 6v7l-1 6v7l-1 6v7l-1 6-1 7v6l-1 6-1 7-1 6-1 6-1 6-2 7-1 6h1l2-1h5l7-1 8-1 9-1 11-1 12-2 13-1 15-2 15-1 16-2 17-2 17-2 18-2 18-2 18-2 18-1 19-2 18-2 18-1 18-2 17-1 17-1 16-1 15-1 14-1h14l12-1h20l8 1 5-1h29l6 1h6l6 1 6 1 6 1 6 2 6 1 5 2 5 3 4 2-13 15 10-1h9l9 2 7 3 7 4 6 4 6 5 5 6 4 7 5 7 3 7 4 8 4 8 4 8 3 7 4 8 2 8 2 10 3 9 2 9 3 9 2 9 3 9 3 9 2 9 3 9 4 9 3 9 3 9 4 8 3 9 4 9 3 9 4 8 4 8 4 9 5 8 4 8 5 8 5 8 5 7 5 8 6 7 5 8 6 7 6 7 6 7 6 6 3 8 2 7 3 8 4 7 3 8 3 7 4 8 3 7 3 8 4 7 3 8 3 7 3 8 2 7 2 8 2 8h-8l-7-1-6-3-5-4-5-5-4-6-4-6-3-7-4-8-3-7-2-8-4-7-3-8-3-7-4-6-4-6-8-11-8-9-9-8-9-7-10-7-10-5-11-5-11-5-10-5-11-3-11-5-11-4-11-4-11-5-11-5-10-5-10-1h-10l-9-1h-10l-10-1-9-1-10-1-10-1-9-2-10-1-9-2-10-1-8-3-10-2-9-2-9-3-8-3-9-3-9-3-8-4-9-4-8-4-8-5-8-5-7-5-8-5-7-7-8-6-6-7-7-7-7-7-6-8-9-5-8-4-9-4-8-4-9-4-9-3-9-4-9-4-8-4-8-5-8-5-7-5-6-7-7-7-5-8-4-10-2 1-1 1v3l-1 2 1 1v3l-15-26-13 2-13 2-13 3-13 2-14 3-13 3-13 3-13 3-12 3-13 3-13 3-12 3-12 3-13 3-11 3-12 3-7-1-6 1-6 2-6 4-6 4-5 5-6 5-5 6-6 6-5 5-6 6-5 5-6 4-7 4-6 3-7 1-3-6 1-6 3-7 3-6 2-6v-5l-4-5-10-2-10 2-10 3-9 5-8 6-9 7-8 7-8 7-8 8-8 7-9 6-8 5-10 3-10 2h-11l-12-2-13-5-7 13-8 9-9 7-9 4-10 2-10 2h-42l-10 1-9 3-9 4-8 7-7 10-6 13-7 4-7 4-6 6-7 6-7 6-6 7-7 7-6 8-7 7-6 8-6 7-6 7-7 7-6 5-6 6-6 4-18-58-24 52-3-7-3-8-3-7-4-7-4-6-3-7-4-6-4-6-4-6-4-6-4-6-4-6-5-5-4-5-5-6-5-5-6-3-6-4-4-5-4-5-3-6-3-6-3-6-2-6-3-6-3-5-3-4-4-3-5-2-6-1-8 1-8 3-6-6-7-7-6-6-6-6-7-7-7-5-6-6-8-6-7-5-7-4-8-4-8-3-8-3-9-2-9-2h-10l-51-49-3 2-3 3-3 2-4 2-3 3-4 2-3 2-4 2-4 2-4 2-4 1-4 2-4 1-5 1-5 1h-4l1-6 2-5 2-6 2-5 3-5 2-5 2-5 1-6-7-2-7-1-7-1-8-1h-7l-7 2-6 4-5 6 5 5 4 5 3 7 3 6 2 7 3 6 2 5 4 5-4-1-3-1-4-2-4-1-5-1-4-1-5-1-5-1-5-1h-4l-5-1h-5l-4-1-5-1-3-1-4-1-2-8-4-6-7-4-7-4-8-3-8-4-6-5-5-7-3 5-1 5-1 4v5l1 4 1 4 2 4 2 4 3 5 2 4 3 4 2 4 2 5 1 4 1 5v5l-5-1-5-3-4-2-5-3-4-2h-5l-4 2-4 5-51 76-6 2-6 2-7 3-7 2-7 4-8 3-6 4-7 4-8-5-9-4-8-3-10-3-9-2-10-2-9-1h-20l-10 1-10 2-9 2-9 3-9 4-8 4-8 4-3 2-1 1-1 2v10l-5-4-6-2-5-1-6 1-6 1-7 2-6 3-7 3-6 3-7 4-7 3-7 2-7 2-7 1-7-1-7-2h-10l-2 1-2 2-2 2-2 3v3l-7-6-6-6-7-4-7-5-7-3-7-4-7-4-6-4-5 1-5 1-5 1-5 2-5 1-5 2-5 2-5 2-4 2-5 2-5 3-4 2-5 3-5 2-4 3-5 2 2 5 1 5 2 5 1 5 1 5 1 5 1 5-1 6-11-4-10-5-9-6-8-6-7-7-7-8-6-8-6-9-6-8-5-9-7-8-6-8-6-8-8-7-7-6-9-6-2 2-1 2-2 2v2h-6l4-12 5-11 5-11 6-11 7-10 7-10 7-10 8-10 8-10 9-9 8-9 9-8 9-9 9-8 9-8 8-8-1-5v-4l2-3 3-3 4-2 4-3 5-2 4-2 5-2 4-2 3-2 2-4 1-3-1-4-2-5-4-5 18-11h11l11-1 11-1h10l11-1h23l11-1h34l11 1h34l11 1h12l11 1h12l11 1h11l11 1h12l11 1 12 1h11l11 1 12 1h11l11 1 11 1h11v-128h-33l-11-1h-11l-12-2-11-1-12-1-11-1-12-1-11-1-12-2-12-1-12-2-11-1-12-1-12-1-12-1-12-1h-11l-12-1h-35l-12 1h-12l-11 2-12 1-12 2-11 3-11 2-12 3-8-4-9-4-9-3-10-2-10-1h-91l-11-2-11-2-10-3-4-3-4-2-4-3-5-2-5-2-4-2-5-1-5-2-4-2-5-2-4-2-5-2-4-3-4-4-3-4-4-4-25-21v-10l-1-8-3-6-4-4-5-3-6-2-7-1-6-1-6-1-5-1-5-2-4-3-2-5-1-6 2-8 3-11 7 2 7 3 6 4 6 4 6 5 6 5 7 5 6 5v-30l1-30v-29l1-30 1-29 1-29 1-29 2-29 2-29 2-29 2-28 3-28 2-29 3-28 3-28 3-28 4-28 3-27 4-28 4-28 5-28 4-27 5-28 5-27 5-27 5-27 6-28 6-27 6-27 6-28 6-27 7-27h2589z" class="pen1 brush1"/><path d="m1353 120-1-2-3-1-2-1h-3l-3-1h-9l6 8 6 9 7 9 7 9 8 9 7 9 8 10 8 9 8 9 8 9 8 9 8 10 7 9 7 9 6 8 6 9-13-12-12-12-13-11-13-12-13-11-14-10-13-11-13-10-13-10-14-9-14-9-15-9-14-8-15-8-15-8-16-7v5l2 5 1 5 3 4 3 3 4 3 4 3 5 2 5 3 5 2 5 3 5 2 4 3 5 3 4 4 4 4-4 1-5 1h-4l-5-1-5-1-4-2-5-2-5-2-4-1-5-1h-7l-3 3-3 3-1 5-1 7 12 2 12 3 12 3 11 4 11 4 12 5 11 5 10 6 11 6 10 7 10 7 10 8 9 8 10 8 8 8 9 9-10-4-10-5-10-6-10-6-11-6-10-6-10-7-10-6-10-5-10-5-10-4-10-2-10-1h-10l-10 2-10 4v6l3 4 4 1h16l5 1 4 3-4 2-4 2-2 2-3 3-2 2-3 3-3 3-3 4 3 2 3 1 4 2 4 1 3 1h4l4 1 4 1h12l4 1h15l5 4 5 2 6 3 6 2 5 3 6 2 6 3 6 2 5 2 6 3 5 2 5 3 6 4 5 3 4 4 5 5-2-2-3-1-4-1-4-1-5-1-6-1-6-2-6-1-7-1-6-2-7-1-7-2-6-2-6-2-6-2-5-2-19 4-17 2-16-2-14-4-13-6-12-8-11-10-11-11-10-12-10-12-9-13-10-12-11-13-11-11-12-10-12-8-6-5-5-4-6-5-6-4-6-4-6-5-6-3-6-5-6-4-7-4-6-5-6-4-6-5-5-5-5-5-5-5-6-1-6-1-7-2-6-1-6-2-6-1-5-2-6-2-6-2-6-2-6-2-5-2-6-3-5-2-6-2-5-3 11-4 12-3 11-3 12-3 12-2 12-2 12-1 12-1 12-1 12-1h25l12 1 12 1 12 1 13 1 12 1 12 2 12 2 12 3 12 2 11 3 12 3 11 3 12 3 11 3 11 4 11 3 11 4 10 3 11 4 10 4 64 47z" class="pen1 brush0"/><path d="m1232 73-36 3 4 1 4 2 3 1 3 2 4 1 3 2 4 1 4 1v4l-69-4V76h33l5-1 5-2-10-3-11-4-10-2-10-3-11-2-10-2-11-1-10-2-11-1-10-1-11-1-10-1h-11l-11-1-11-1h-11v-5l14-1h40l13 1 13 2 13 1 12 2 13 2 12 3 12 3 12 3 12 3 12 4 12 3 12 4z" class="pen1 brush1"/><path d="m1601 51-3 4-3 5-4 3-5 3-5 2-5 2-6 2-5 1-6 2-6 1-6 1-5 1-7 1-5 1-6 2-5 1-18-7 4-7 5-6 5-3 5-3 6-2 6-1 6-1h7l7 1h7l6 1h7l7-1 7-1 6-2 7-3 2 3zm-107 4-6 3-5 3-6 3-6 3-6 3-6 3-7 4-6 2-7 3-6 1-7 1h-6l-7-1-6-2-7-3-7-5-7-15 7-2 6-2 7-1 7-1 6-1h7l6-1h6l6 1h14l6 1 8 1h7l7 2h8zm190 18-4 4-5 4-6 4-5 3-7 2-6 2-7 1-6 1-37-11 3-6 5-7 5-6 6-6 6-4 7-2h8l7 3 1 6 3 3 5 3 5 1 6 1 6 1 5 1 5 2zm482-12 44 5-12 6-13 6-12 6-13 6-12 6-12 6-12 6-12 7-12 6-11 8-10 8-10 9-8 10-8 11-7 11-6 13-17-4-8 9-8 9-9 9-8 8-9 8-9 7-9 7-10 8-10 6-10 6-10 6-10 6-10 6-11 5-10 5-11 4-12 4-11 5-11 4-11 3-11 3-12 4-12 3-11 2-12 3-12 2-12 2-12 2-12 1-12 2-12 1-12 1 12-11 14-11 13-10 13-9 14-9 15-8 14-8 15-7 14-7 15-7 15-7 16-6 15-6 15-7 15-6 15-7h-2l-3-1-3-1-4-1h-8l-4-1h-4l-4 1h-4l-4 1-4 1-4 1-3 1-4 2-3 2-15 5-14 6-15 6-15 6-15 7-14 7-15 7-14 8-14 8-14 9-13 9-13 9-13 10-13 10-12 11-12 11 6-8 6-8 6-7 7-7 6-7 7-7 7-7 7-7 7-6 7-7 7-6 8-6 7-6 8-7 8-5 8-6 8-6 7-5 9-6 7-5 9-6 8-5 8-5 9-5 8-5 8-5 9-5 8-6 8-4 9-5 8-5 9-5v-4l-1-1v-3l-1-1-1-1-2-1-8 3-8 3-8 3-8 3-8 4-8 4-8 4-7 4-8 5-7 4-8 5-7 4-8 5-6 5-7 4-7 4 49-36-13-15 7-3 8-4 8-3 7-4 8-3 7-4 8-4 8-3 8-4 7-4 8-4 8-4 7-4 8-4 7-5 7-4 25-3h-6l-4 2-4 3-3 4-3 4-3 5-3 4-5 4 14 17 6-5 6-5 7-5 7-5 8-4 8-3 9-4 9-3 9-3 8-4 9-3 9-3 9-3 9-4 9-3 8-4 1 1-1 2-3 2-2 3-3 3-3 3-1 3v4l4-1 4-1 5-1 5-1 5-1 5-1 5-2 5-1 5-2 4-1 5-2 5-3 4-2 4-3 4-3 3-4-3-2 1-1 2-1 3-1 3-1 4-1 4-1 4-1 5-2 5-1h5l5-1h20v6zm-752 41-5 3-5 1-6 1h-5l-6-1-5-3-6-2-6-3-6-3-5-4-6-4-6-4-6-4-5-4-6-3-5-4h-10l7-4 8-3 6-1h7l7 1 6 2 6 2 6 4 5 4 6 4 6 5 6 4 6 5 5 4 6 3 6 4zm331-19 3-3 5-3 4-1h10l5 1 5 1 4 1 2 6-2 5-3 3-5 4-5 4-5 3-4 4-3 4h-7l-7-1-6-4-6-5-5-5-5-7-4-7-4-7h-2V66h2l2 6 3 4 5 1h16l4 2 3 4zm-218 32-6 4-5 4-6 3-5 1-5 2-6 1h-5l-6-1-5-1-6-1-5-1-5-3-6-1-5-2-6-3-5-2-5-8v-5l4-2 5-2h8l7-1 5-2 4-4 4 2 3 2 4 1 4 1 5 1h8l4 1 4 1h4l4 1 3 2 4 2 3 2 2 4 3 4zm103 0v5l1 2v1l1 2 1 1 2 1-4 1-5 2-3 1-5 1-4 1-4 1-5 2h-4l-5 1h-17l-5-1-4-2-4-1-21-28 6-3 7-2 6-3 7-1 7-1 7-1 7 1 7 2 4 3 3 3 4 3 3 3 4 2 3 2 5 2h5zm133 18-5 3-5 2-5 2-5 2-6 2-5 1-6 1-6 1h-6l-5 1h-12l-6-1h-6l-6-1-5-1-11-30 26-13 3 3 5 3 4 4 4 3 5 3 4 3 5 3 5 2 5 2 5 3 4 1 5 1 5 1h10l5-1zm-744 0-18-13 11 2 7 11zm418 4-23-7 5 3 2-1 1-2v-4l1-3 1-1h5l1 3 1 2v2l1 2v1l1 2 2 2 2 1zm-295 90-108-86 8 4 7 5 8 5 7 5 8 4 7 5 8 6 7 5 8 5 7 6 6 5 7 6 6 6 5 6 5 7 4 6zm421-61-1 4-2 4-3 4-4 3-5 2-5 2-5 1-5 1h-6l-7 1-6-1-5-1-5-1-5-3-5-4-3-5 2-6 4-5 6-4 7-2 8-2 8-1 7-2 7-3 23 18zm111 11-4 2-4 3-4 2-5 2-4 1-4 1-5 1-5 1-5 1h-14l-5-1-4-1-5-1-5-1-3-3-2-3-2-3-1-4-2-3v-13h7l6-1 5-3 6-2 5-3 6-2h7l7 1 34 29zm-152 154-5-10-6-10-6-11-6-11-7-11-6-11-7-11-7-12-8-11-8-11-8-11-8-11-9-11-9-11-9-10-9-10 10 10 10 9 9 10 9 10 8 10 8 10 7 11 8 11 6 11 7 11 7 12 6 11 6 12 6 11 6 12 5 12zm148-90-3-2 87-68 2 2-46 36-40 32zm-50-32-2 5-3 5-2 3-4 3-4 2-4 1-5 1-5 1h-5l-5 1h-11l-5 1h-5l-5 1-4 2h-11l-5-2-5-2-4-3-3-4-3-3-1-4 1-3-1-2-2-1-2-2h7l7-1 6-2 7-2 7-1 7-2 6-1 7-1 6-1 7-1 6 1h7l6 2 6 2 7 3 6 4zm-496 26-6-3-5-3-3-3-3-4-3-4-3-3-4-3-6-3 33 26zM428 1449l-3 6-4 5-3 6-4 6-4 6-3 6-4 6-4 7-3 6-4 6-4 7-3 6-3 6-4 7-3 6-3 6v4l-1 3-1 4-2 4-2 4-2 4-2 4-2 4-3 4-1 4-1 3-1 4v3l1 4 1 3 3 3-12 12-4 17-3 17-4 16-4 16-3 17-4 17-4 16-4 17-3 16-4 17-4 16-4 17-3 17-4 16-4 17-3 17-4 16-3 17-4 16-3 17-4 17-3 16-3 17-3 17-4 17-2 17-3 17-3 17-3 17-2 17-3 17-2 17h7l-2 112 21-120 2 1 2 1 2 2 1 1-1 14-1 15-1 14v14l-1 14-1 14v14l-1 14v13l-1 14v41l-1 13v41l-1 13v14l-1 14v14l-1 13v14l-1 14-1 13v15l-2 14-1 14-1 14-1 15-2 14-1 15h10l1-12 1-12 1-12 1-12v-24l1-12v-13l1-11 1-12 1-12 2-12 1-12 2-12 3-11 3-11 10 10-8 169 11 8 4-144 3-2 2-3 3-2h3l3 9 2 9 1 9 1 10v20l-1 10-1 9-1 10v10l-1 9v9l1 9 1 9 2 8 4 8 2-6 2-6 1-8 1-8v-8l-1-9-1-9v-9l-1-9v-19l1-8 2-9 3-8 3-8 5-7 1 8v31l-1 9v25l1 8v17l1 8 1 9 1 8 1 8h10v-67l1-6 1-5 2-6 2-5 2-6 2 6 2 6 1 6 1 6 1 7v52l1 6 1 6 1 6h8v-22l-1-5v-21l1-5 1-4 1-4 2-3 2-4 2 6 1 4 1 5v25l3 5 1 6-1 7v14l2 5 5 3h8l8-72 3 3 3 4 2 4 1 5 1 4v4l1 4v4l-1 5v9l-1 4v13l1 4 2 1h3l2-1h2l2-1 3-1h2l2-1-4-87h12l10 83h14v-4l-1-4v-5l-1-4-1-5-1-5-1-4-1-5-1-4-1-4v-8l1-4 2-3 2-3 3-2 15 64 8 3 5-1 2-3 2-4 1-5 1-6 2-5 4-3 7 6v7l2 6 3 3 4 2h23v-6l1-2 1-1 2-1h3l1-1h3l2 3 2 2v6l5 2 5 1 5 1h4l4-2 4-3 3-4 2-6 1 4 2 3 1 4 2 4 1 3 3 3 3 2h4l5 3h5l3-1 3-2 2-3 3-4 2-3 3-2 2 2 1 1 2 2 2 2 1 2v4l-1 2h8l1-15v-28l-2-14-2-15-4-14-3-13-4-14-4-14-4-14-4-14-4-14-4-14-3-14-2-15-2-14 7-5 4-4 3-2h2l2 1v24l1 4 1 5 3 3 3 3 4 2 11-21-7-7-7-7-8-7-7-7-7-7-7-8-7-7-7-7-7-8-6-7-6-8-6-8-5-8-5-9-5-9-3-9-1-4-1-4-2-5-1-5-2-4-2-5-2-5-2-5-1-4-1-5v-14l2-5 2-5 3-4 6 11 6 11 6 11 6 12 6 11 6 12 7 11 7 12 7 11 7 10 8 11 8 10 9 10 9 9 10 8 11 9 20 3 9 7 9 6 10 6 9 6 10 5 10 5 11 4 10 5 11 4 11 3 11 4 11 3 11 3 11 3 11 2 12 3 10-2 10-2 10-2 10-1 10-2 9-2 10-1 9-2 9-1 9-1 9-1 8-1 9-1 8-1h17l8 1 8 1 8 1 8 1 8 2 8 2 7 3 8 3 8 4 7 4 8 5 7 5 8 6 8 6 7 7 8 8 22 37-24-41 36 39 4 6 4 5 2 5 2 6 2 5 1 5 2 5 1 6 1 5 1 5 2 5 2 5 3 5 3 5 4 5 5 5 10 9 11 6 11 4 11 3h11l11-1 11-2 11-2 11-4 12-4 11-5 11-4 11-3 11-4 11-2 12-2 10-17 4 4 5 5 5 3 6 3 5 3 6 3 5 2 6 3 6 2 6 3 6 2 6 3 5 3 6 3 5 4 5 4 9 1 8 1 9-1 8-1 7-2 8-2 7-3 8-3 7-4 6-4 7-5 7-4 6-5 7-5 6-5 7-6 6-5 6-5 7-6 6-5 7-5 7-5 6-4 7-5 8-3 7-4 8-3 7-2 8-3 9-1 8-1h9l14 2 13 1 14 2 14 1 14 1 15 2 14 1 15 1 15 1 15 1h15l15 1h15l15-1 15-1 15-1 15-1 14-3 15-2 14-3 14-4 13-4 14-5 13-5 12-7 12-7 12-7 11-9 11-10 10-10 10-11 9-12 11-6 12-5 11-6 12-5 11-5 12-5 11-6 12-5 11-5 12-6 11-5 12-6 11-6 11-6 11-6 12-7 5 4 2 4-1 4-2 4-3 4-3 4-2 4v5l-15 7-15 7-14 7-15 8-15 7-14 8-14 8-14 8-14 9-14 9-13 9-14 9-13 10-13 11-13 10-13 12 14 18 54-39 22 8 12-10 11-10 12-10 12-10 11-9 13-10 11-9 12-9 12-10 12-9 12-9 12-8 12-9 12-9 12-9 12-9 3 6 1 5v6l-1 5-1 5-3 6-2 5-4 6 7 2 5 2 5 1h4l4 2 4 1 5 3 6 4 2 13 3 13 2 14 3 13 3 14 4 13 3 13 4 13 4 13 5 13 4 13 5 12 5 12 6 12 6 12 6 12-2-9-3-10-3-9-3-10-3-10-3-10-3-10-3-10-3-11-3-10-2-10-2-11-2-10-1-11-1-10 1-11 8 8 7 10 6 10 3 11 4 12 2 11 2 12 2 12 1 12 2 11 3 11 4 11 4 9 6 8 8 8 10 6-2-12-2-11-1-12-1-11-2-12-1-12-1-11-2-12-1-11-1-12-2-11-1-12-2-11-2-12-2-11-3-11 8-8 5 11 4 11 4 12 3 12 4 11 2 12 2 12 2 12 2 12 2 13 1 12 2 12 1 13 1 12 2 12 2 13h15l-1-7-2-8-1-7-1-7-1-7-2-8-1-7-1-7-1-7-1-8-1-7v-21l1-7 1-7 4 3 4 3 2 5 2 5 2 5 1 5 1 6v6l1 6v12l1 6 1 5 1 6 2 4 2 5 3 4 1 6v18l2 3 5 3 7-1-1-9-1-9-1-8-2-9-1-9-2-9-1-9-1-9-2-8-1-9-1-9v-8l-1-9v-8l1-8v-8h14l22 138h5l3-1h5l2 1 2 1 2 2-1-10v-10l-1-9-2-10-2-10-1-9-2-10-2-10-2-9-2-9-1-10-1-9v-28l2-9 5 9 5 9 3 9 3 9 2 10 1 10 1 11 1 11v10l1 11 1 11 1 10 2 10 2 10 3 10 4 9h15l-2-13-2-13-2-13-2-12-2-14-2-13-2-12-2-14-2-12-2-13-2-13-3-13-2-12-3-13-2-12-3-13 7-10 6 10 4 11 4 12 4 12 3 11 2 13 2 12 2 12 2 12 2 13 2 12 2 12 2 13 3 11 3 12 4 12-1 7v6l1 6 3 5 3 4 4 4 3 2 4 2-1-8-1-8-2-8-1-8-1-8-1-8-2-8-1-8-2-8-1-8-2-9-1-7-1-9-2-7-1-9-1-8-2-8-1-8-2-8-1-8-1-7-1-8-2-9-1-7-1-8-1-8-1-8-1-8-1-8-1-7-1-8-1-8h3l2 1 1 1 2 1-1-10-2-10-1-10-1-10-2-10-1-11-2-10-1-10-2-10-1-10v-10l-1-10v-31l1-10 14 15v10l1 9 1 9v9l1 10 1 9 1 10v9l1 10 1 9v9l1 10 1 10 1 9 1 10 1 9 1 10 1 10 1 9 1 10 1 9 2 10 1 9 1 10 2 9 1 10 2 9 1 9 2 9 2 9 2 10 2 9-31-302 6-7 3 13 2 13 3 14 3 13 2 14 2 13 2 14 3 13 2 14 2 13 2 14 2 14 2 13 2 14 1 14 2 13 2 14 2 14 1 14 2 13 1 14 2 14 1 13 2 14 1 14 2 14 1 13 1 14 2 13 1 13 1 14 1 13h3v-12l-1-13v-13l-1-13-1-12-1-13-1-12-1-13-2-12-1-13-2-12-2-12-3-12-3-12-2-12-4-12-1-29-2-29-2-30-2-29-2-29-3-29-3-29-3-29-4-29-4-29-4-28-4-29-4-28-5-29-5-28-5-28-5-28-5-28-6-28-5-28-6-28-6-27-6-28-6-27-6-28-6-27-6-27-6-28-6-27-7-27-6-27-6-27 1 11 2 11 1 11 2 10 1 11 2 10 2 10 2 10 2 11 1 11 2 11 2 13 2 13 2 13 2 15 3 16-3-9-2-9-3-9-2-9-3-9-2-10-2-9-2-9-2-9-2-10-2-9-2-9-2-10-2-9-2-9-2-9-2-10-2-9-2-10-2-9-2-9-2-9-2-10-3-9-2-9-2-10-2-8-2-10-3-9-2-9-3-9-2-9h-3v7l1 9 1 8 1 9 2 9 1 9 3 10 1 9 3 10 1 10 2 9 2 10v10l1 9v19h-3l-3-9-3-9-2-10-3-9-2-9-3-9-2-10-3-9-3-9-2-9-3-9-2-10-3-9-2-9-3-9-3-9h-18v3l1 2v9l-1-2-2-1-1-2-1-2v-1l-2-3v-1l-1-2h-14l-2 88-7-85h-2l-1-1v-1l-1-1h-2l-3 34-1-4-1-4-1-4-1-5-1-4-2-4-1-5-1-4h-30v6l1 5 1 6 1 6v5l1 6v6l1 6v6l1 6v12l1 6v12l1 6-19-62-1-4-1-4-1-5-1-3-1-4-1-4-1-4-1-4H532l-2 4-2 4-2 4-2 4-2 4-3 4-2 4-2 4-2 4-2 4-2 4-2 4-3 4-2 4-2 5-2 3-7-7v-4l1-4 1-3 1-4 1-4 1-3 1-4 1-4 1-3 1-3 1-4 2-4 1-3 1-3 2-4 1-3h-15l-52 75h-3l-2 1-1-1h-2l-1-1-1-1v-1l2-5 2-4 2-5 2-5 2-4 3-5 2-4 2-5 2-4 3-5 2-4 2-5 2-4 3-4 2-5 3-4h-12l-2 5-2 5-2 5-2 5-2 6-2 5-2 5-3 4-2 5-3 4-4 4-3 4-4 4-4 2-5 3-5 2v-9l1-5 1-4 1-4 1-4 2-5 2-4 2-4 2-4 3-4 2-4 2-5 3-4 2-4 3-4h-7zm2131 0 10 36 9 37 9 36 10 37 9 37 9 36 9 37 8 37 8 37 8 37 8 37 8 37 7 38 8 37 6 38 7 37 6 38 7 38 6 38 5 38 6 38 5 38 4 38 5 39 4 38 4 39 3 39 3 38 3 39 2 40 2 39 2 39 11-3 10-4 11-3 10-3 11-4 10-3 11-3 10-4 11-3 10-4 10-4 10-4 11-4 9-5 10-5 10-5 2-13 2-13 1-13v-12l1-13v-25l-1-12-1-13-1-12-2-12-1-13-2-12-2-12-2-12-2-13-3-12-2-12-3-12-2-12-3-12-2-13-3-12-2-12-3-12-2-12-2-13-2-12-2-12-2-13-1-12-2-13-2 5-3-69-3-15-3-16-3-15-3-16-3-15-3-16-2-15-3-16-2-15-3-16-2-15-2-16-3-16-2-15-3-16-2-15-3-16-3-15-3-16-2-15-3-15-3-16-3-15-4-15-3-15-4-15-4-15-4-15-4-15-4-14-5-15-5-15-3-12-4-13-3-12-4-13-3-12-4-13-3-12-4-12-3-13-4-12-4-12-4-12-4-12-4-12-4-12-4-12h-158zm-2124 0 2-4 2-4 2-4 2-4 1-4 2-4 2-4 1-5-2 4-3 4-2 3-3 4-2 5-3 4-3 4-3 5h7zm32 0 4-9 5-9 5-9 5-8 5-9 5-8 6-9 5-8 5-9 6-8 5-8 6-9 5-8 6-8 6-9 6-8-90 122-1 1-1 2-1 2-1 1-1 2v2l-1 2-1 2h12z" class="pen1 brush0"/><path d="m508 1449 2-5 3-5 2-6 2-5 3-5 2-5 3-5 3-6 2-5 3-5 2-5 3-5 3-5 3-5 2-5 3-5-56 82h15zm1861 0-2-8-2-8-1-8-2-8-1-7-2-8-1-8-2-8-1-8-1-8-2-8-1-8-2-8-1-8-1-8-2-8-1-8-2-8-2-7-2-8-1-8-3-8-2-7-2-8-2-8-3-7-3-8-3-7-3-7-3-8-4-7-3-7-4-11-4-11-5-11-5-11-5-10-5-11-6-10-6-10-6-10-7-10-6-10-7-10-7-10-7-10-7-10-7-9-6-10-7-10-7-10-6-10-7-10-6-10-6-11-6-10-5-11-5-10-4-11-5-11-3-11-4-12-3-11-2-12v-5l-1-5-1-6-1-5v-5l-1-5v-5l-1-5-1-5v-5l-2-5-1-5-1-5-1-4-2-5-2-4-6 1-5 1-5 3-4 4-4 4-3 4-3 5-3 5-3 5-3 6-3 5-3 5-4 4-3 5-4 4-5 3-3-3 2-6 2-6 1-6 3-7 2-6 2-6 2-7 3-6 2-5 3-6 3-5 4-5 3-4 5-3 4-3 5-1h-10l1-5v-4l-1-3-2-3-1-3-1-4v-3l1-4 1-2 1-2 2-2 1-3 1-2 2-1 2-1 3 1h-3l-2-2-2-2-1-3-1-3-2-1-3 1-4 4-3-5-1-5v-6l1-6 3-5 2-6 3-5 3-5 4-14 4-12 3-14 2-13 1-13 2-13v-39l-1-13-2-13-1-12-3-13-3-13-3-12-4-12-5-13-4-12-5-12-6-12-5-11-7-12-6-11-7-12-7-11-8-10-7-11-8-10-8-10-9-10-9-10-9-9-13 7-13 6-13 6-14 5-14 5-13 5-14 5-14 4-14 4-14 4-14 4-14 4-14 4-14 5-14 4-14 4-15 2-15 2-14 4-14 5-13 6-12 8-12 8-12 9-10 9-11 11-10 11-10 11-9 12-9 11-9 12-8 13-4-1h-9l-5 1h-5l-4-1-3-3-3-4-5-12-5-11-6-12-7-11-7-10-7-11-8-9-8-10-8-9-9-9-10-8-9-8-10-8-10-7-10-7-10-6-11-6-11-6-11-6-12-5-11-4-12-4-11-4-12-4-12-3-12-3-12-2-12-3-12-1-12-2-12-1h-11l-6-2-5-3-5-3-5-3-5-4-4-4-5-3-5-5-4-4-5-4-4-3-4-4-5-4-4-3-5-3-4-2v4l3 4 3 3 4 3 4 3 4 3 2 4 1 6-3 2-3 1h-9l-4-1h-3l-4 1-4 1-3 3-3 2-1 3-2 2-2 3-2 4-4 3h14l-6 8-6 6-5 6-5 5-5 4-6 5-6 4-8 5v5h33v-5l-1 5-1 3-2 4-2 4-3 3-2 3-2 3-2 4h10l2 1 2 1 1 2-6 11-6 10-7 11-7 10-7 11-6 11-6 10-6 11-6 11-5 11-4 12-3 11-3 12-1 12v13l1 13-2 8-1 9-2 8-1 9-1 8v9l-1 9v27l1 9v9l1 9 1 9 2 9 1 9 2 9 2 9 2 9 2 9 2 9 3 8 3 9 3 9 3 9 3 8 4 8 4 8 3 8 4 9 4 7 5 8 2 3 3 4 4 5 3 4 5 4 4 4 4 5 5 4 4 5 3 5 4 5 3 5 1 5 2 6v5l-1 6-9-6-8-7-8-7-8-8-7-9-7-8-7-9-6-10-6-9-6-10-5-10-5-10-4-10-4-11-4-10-3-10-6 4-6 3-6 4-6 5-6 4-5 5-4 6-3 5 28 15-2 1-2 2h-3l-5-3-5-2-7-3-6-1-6-1-5-1-3 1-2 2 6 4 5 4 6 4 5 4 5 4 5 5 5 4 5 5 5 4 5 5 5 4 5 5 5 4 5 5 5 4 5 4v15l-1 2-1 3-2 1-6-6-6-6-5-7-6-6-5-6-5-6-6-5-6-5-6-5-6-5-6-4-7-4-7-3-7-3-8-2-8-2 1 1 4 2 5 1 6 2 5 2 5 4 2 4v5l-6-4-6-4-7-2-8-2-7-2-7-1-7-1-6-1-9 8-8 9-7 9-5 11-5 10-4 12-4 11-3 11-3 12-3 12-3 11-4 11-4 11-5 11-5 10-6 10-4 5-5 4-5 3-5 2-5 3-4 3-2 5v8l-7 7-7 8-6 7-7 8-7 8-6 8-7 8-6 8-7 8-6 8-6 8-6 8-6 9-6 8-6 9-5 8-6 8-5 9-5 9-5 9-5 9-5 9-4 8-4 10-4 9-4 9-3 10-3 9-3 10-3 9-2 10-2 10-5 7-5 7-4 8-3 7-3 8-4 8-3 8-3 8-4 8-4 7-4 7-4 7-5 6-6 6-6 6-6 5 1-11 2-11 2-10 2-11 3-12 3-11 3-11 4-11 3-11 4-10 3-11 4-9 3-10 4-8 3-8 3-7-8 11-8 12-8 11-8 12-7 12-7 13-8 12-7 12-7 13-6 12-7 13-7 13-6 13-7 12-6 13-7 13h1837z" class="pen1 brush0"/><path d="m2717 1449-6-19-7-19-7-19-7-19-7-19-7-19-7-18-8-19-7-19-8-18-8-18-8-19-8-18-8-18-8-19-9-18-8-18-8-18-9-18-8-19-9-18-9-18-9-18-9-18-9-18-10-18-9-18-9-18-10-19-9-18-10-18-10-18-4-5-5-5-4-5-5-5-4-4-5-5-5-4-5-4-5-5-5-4-6-4-6-4-6-4-7-4-7-4-7-3-15-8-5-3-5-4-6-5-5-4-6-4-6-3-6-2h-6l-6-2-6-3-6-3-6-4-7-3-6-4-7-3-6-4-7-3-7-3-6-2-6-2-7-1h-6l-5 1-5 2-33 5 4 5 3 4 3 5 2 5 1 5 2 5 1 5 1 5 1 4 2 5 2 4 3 4 3 4 5 3 6 3 7 2-1 1-1 2h-2l-1 1h-2l-1 1h-2l3 2 1 3 1 2 1 3v2l-1 3-1 2-2 2-2 2-4-7-6-5-6-4-7-3-6-4-7-3-7-5-5-5 3 4 4 4 5 4 3 4 5 4 4 3 4 4 5 3 4 3 4 4 4 4 4 4 3 4 3 4 3 5 3 6-6 6-7 2-6-1-6-3-6-4-6-3-5-3h-4v24l2 13 1 11 3 12 3 11 3 11 4 11 4 11 5 10 5 11 5 10 6 10 7 10 6 10 7 10 6 11 6 12 6 12 5 11 6 12 6 12 6 12 6 13 5 12 6 13 5 12 6 13 5 12 5 13 6 13 5 14 5 13 5 13 4 14 5 14 4 14 5 14 3 14 4 14 4 15 4 15 3 14 3 15 3 15 3 16 3 15 2 16h30l-3-10-3-11-3-11-3-11-3-11-4-11-3-11-3-12-4-11-3-11-4-11-4-12-4-11-4-12-4-11-4-11-4-11-4-12-4-11-4-10-4-12-4-10-5-11-4-10-4-10-4-10-5-10-4-10-4-9-5-9-4-9-4-9-5-5-5-6-4-6-5-6-4-6-4-7-3-6-3-8-3-6-2-8-2-7-2-7-1-8v-7l-1-7 1-8 4-3 5-1h4l5 1 4 2 4 2 5 1 4 1v-10l5-2h4l4 1 4 1 5 3 4 4 5 4 4 4 4 5 5 4 4 5 4 4 5 5 4 3 4 3 4 2 2 3 1 3 1 3v3l-1 3-1 3-2 3-3 2-5-5-6-4-7-4-7-4-6-5-6-5-6-7-4-7 9 13 11 13 12 12 13 12 12 12 14 12 14 12 13 11 14 13 13 12 13 13 13 13 11 14 11 15 10 15 8 16 4 14 4 14 4 13 4 14 4 14 4 13 4 14 4 14 3 14 4 13 4 14 4 14 4 13 3 14 4 14 4 14h158z" class="pen1 brush0"/><path d="M2432 1449v-2l-1-2v-1l1-2v-6l-1-1-1 14h2zm27 0-1-5-1-5-2-5-1-5-1-4-2-5-2-3-3-3-1 35h14zm25 0-2-10-3-10-3-10-3-10-3-9-3-10-3-10-3-10-3-10-3-10-3-9-4-10-3-10-3-9-4-10-3-9-4-10-3-10-4-9-4-10-4-9-4-10-4-9-4-9-4-9-4-10-5-9-5-9-4-9-5-9-5-9-5-9h-9l-1 2-1 1 5 9 5 9 5 9 4 9 5 9 4 9 5 9 5 9 4 9 4 10 5 9 3 9 4 9 4 10 4 9 4 10 4 9 3 10 4 9 3 10 3 9 2 10 3 10 3 9 2 10 3 10 2 10 2 9 2 10 1 10 2 10 1 10h18zm29 0-1-2v-2l-1-1v-2l-1 2v5h3zM1545 317l-36-64 3 4 4 3 4 4 4 4 4 4 4 3 3 4 4 4 3 4 3 3 2 4 1 5 1 4-1 5-1 4-2 5z" class="pen1 brush0"/><path d="m1199 338 10 12 11 11 12 8 13 6 14 5 13 4 15 3 14 2 15 1 15 2 14 1 15 2 14 3 14 2 14 5 12 5 8 7 7 8 7 7 7 9 5 8 6 10 5 9 4 9 4 10 3 11 3 11 2 10 1 11 1 11v12l-1 11-6 2-5 2-5 3-5 4-5 5-5 5-5 5-5 5-5 5-5 5-6 4-5 5-6 4-6 3-6 3-7 2-8 5-7 5-8 2-8 2-8 1h-8l-8-2-8-1-9-3-7-3-9-3-8-3-7-4-8-3-7-3-7-4-5-4-5-4-5-5-4-5-4-5-3-5-3-6-4-5-2-6-3-6-2-6-3-6-1-6-3-6-1-6-2-6-2-8v-21l1-7 2-7 1-6 2-7 2-6 3-6 2-7 2-6 3-5 1-7 3-5 1-6-6 6-5 7-5 8-4 8-4 9-4 8-2 10-3 9-2 10-1 10v20l1 10 1 9 3 10 2 9 5 6 4 6 4 6 3 6 4 6 3 6 3 6 3 6-5-1-5-2-4-2-4-3-4-3-3-4-3-5-3-4-3-5-2-6-2-5-2-5-2-5-2-6-1-5-1-5-1-4v-4l1-4v-8l-1-4-1-4-1-3-2 8-2 8-1 8v17l1 8 1 9 2 8 2 9 2 8 3 8 3 8 3 8 4 7 3 8 5 7 15 15h-10l-4-2-4-2-3-3-3-4-3-4-3-5-3-4-2-6-2-5-2-5-2-5-2-5-2-4-2-5-3-14-3-14-2-14-1-15v-29l2-15 2-14 3-14 5-15 5-13 6-14 7-13 7-12 9-11 10-12-4-4-5-4-4-4-4-4-4-5-5-4-4-4-4-4-4-4-3-5-3-4-2-5-3-6-1-5-1-6v-6l5 1 4 3 3 4 3 4 2 5 3 5 2 5 3 4z" class="pen1 brush1"/><path d="m1954 343 1 5-1 6-2 5-4 5-4 5-4 5-5 5-4 5-4 5-3 5-1 5v5l2 5 4 6 7 5 10 5 3 9 4 10 3 9 3 9 4 10 3 10 3 9 3 10 3 10 2 11 2 10 1 10 2 11v11l1 11-1 12v16l-2 17-3 17-4 16-5 16-6 17-8 14-8 15-9 14-11 14-11 12-12 12-14 11-13 9-15 8-15 8-6-2h-5l-5 1-5 1-5 2-4 2-5 3-4 2-4 2-5 2-4 1-4 1h-5l-4-2-5-2-5-4h-6l-7 1-6-1h-14l-7-1h-7l-7-1-7-1-6-1-7-1h-7l-6-1-6-1h-12l7 7 8 8 8 7 9 8 9 7 9 7 10 7 10 6 11 6 11 6 11 6 11 4 11 4 11 3 11 2 12 1 11-2 11-2 11-4 11-4 11-4 11-5 10-6 10-6 9-7 9-7 9-8 7-9 8-9 6-10 5-10 5-11v-12l-1-7 1-7 1-7 3-6 5-4 9-1v-10h7l-2 13-4 12-4 13-4 13-6 13-6 12-6 12-8 12-8 11-9 10-10 10-11 9-12 8-12 7-14 6-14 5-17 5-16 4-16 1-15-1-15-3-14-3-15-5-14-6-13-7-13-7-13-9-13-8-13-8-12-9-13-8-12-8-7 3-7 4-7 5-6 6-6 7-5 7-4 9-4 9 12 8 11 9 11 11 11 11 10 12 11 12 11 12 11 12 11 12 12 10 13 10 13 8 15 6 15 5 17 2h18l16-1 15-2 16-3 15-3 15-4 15-4 15-5 14-6 14-7 13-8 13-8 11-10 11-10 11-11 9-12 9-14 3-1 3-2 4-1 3-2 3-3 2-2 3-3 1-4-4 15-6 13-7 13-9 12-10 11-10 10-12 9-12 9-13 8-14 8-14 7-13 6-15 7-14 5-13 6-14 5-8 1h-8l-8 1h-8l-8 1h-17l-8-1h-8l-8-1-8-2-7-2-7-3-7-3-6-4-7-5h-12l-6-2-5-3-5-3-5-4-5-4-4-5-5-5-5-5-4-5-5-5-5-5-5-5-5-4-6-3-5 4-2-3-2-4-2-4-2-4-3-5-2-5-3-5-3-5-3-4-3-5-3-4-4-5-4-3-4-3-4-3-5-2-4 1-4 2-3 2-3 3-2 4-3 4-2 4-2 5-2 5-2 4-3 5-2 5-3 4-3 4-4 4-4 4-4-9-4-8-3-9-4-9-2-10-3-9-3-10-3-9-3-10-3-9-4-9-4-10-4-8-4-9-5-8-6-8-11 5-12 6-10 6-11 7-11 8-10 7-11 8-11 7-11 7-11 6-11 6-12 5-13 3-13 3-14 1-14-1-13-2-13-2-13-4-12-5-12-5-11-7-12-7-10-8-10-9-10-9-8-10-8-11-7-11-7-11-5-12-4-13-1-5-2-6-2-5-1-5-2-5-2-6-2-5-2-5-1-5-1-6-1-6v-16l2-6 2-6 4 13 4 12 5 13 5 13 5 12 5 13 6 12 6 12 7 11 8 12 8 10 9 10 10 10 11 9 12 8 13 7 10 4 11 3 11 2 11 1 11 1 11-1 12-1 11-2 11-2 11-3 10-4 11-4 10-5 10-6 9-6 9-7 4-6 5-6 5-6 6-6 7-6 6-6 6-6 5-7 5-6 5-7 3-7 2-8 1-8v-8l-2-9-4-9-9 8-9 7-10 7-10 7-11 6-10 6-11 5-12 4-11 4-12 2-12 2-12 1h-12l-12-2-12-2-12-4-14-4-14-5-13-7-14-8-12-8-12-10-11-10-11-12-10-12-9-12-8-13-8-13-7-14-6-14-5-13-4-14-3-8-1-8-2-8-2-8-1-8-1-8v-8l-1-8v-17l1-8v-8l1-8 1-8 1-8 2-8 2-8 2-8 3-8 2-7 3-7 3-7 4-7 4-7 4-7 4-6 5-6 5-6 5-6 5-5 6-5 6-5 2 3h8l-1 7-4 8-4 6-5 6-6 7-5 6-4 7-3 7-4 7-3 7-3 8-3 8-2 7-3 8-1 8-2 9-2 8-1 8-1 8-1 9v8l-1 9v8l1 9v8l1 8 1 9 1 8 2 8 1 9 2 7 3 8 2 8 4 8 3 8 3 7 4 7 4 7 5 6 5 7 7 9 9 9 9 9 8 9 10 8 10 8 10 8 11 6 11 6 11 5 12 3 11 3 13 1h12l12-2 13-3 10 1 10-1 9-1 10-2 8-3 8-4 8-5 8-5 7-6 7-6 6-7 7-7 6-7 6-7 5-7 6-8v-7l1-8 3-7 2-6 4-7 4-6 4-6 5-6 5-5 6-5 5-5 6-5 6-5 6-4 6-4 6-4 4-2 4-2 4-2 4-1 4-1h7l4 1h3l4 2 3 2 3 2 3 2 4 3 2 3 4 4 9 11 6 11 6 12 4 12 3 12 3 12 2 12 2 12 2 12 4 11 4 11 5 11 7 10 8 9 11 9 14 8 11 5 13 4 12 3 12 2 13 1h13l13-1 12-1 13-2 13-3 12-4 11-4 12-5 11-6 10-6 10-7 7-8 7-9 6-9 6-9 6-9 5-9 5-10 5-10 4-10 4-10 3-10 3-11 2-10 3-12 1-11 1-12h-9l-6 4-5 5-3 8-4 8-3 8-4 8-6 6-3 3-4 4-4 4-4 4-4 4-4 4-5 4-4 3-5 3-4 3-5 2-5 2-4 2-5 1-4 1-4-1 9-6 9-7 9-6 8-8 7-8 7-8 6-8 6-9 4-9 5-9 3-9 3-9 2-10 2-10 1-10 1-10-6-8-1 13-2 12-3 11-5 11-5 11-6 10-7 10-8 8-8 9-9 8-10 8-10 7-10 6-10 6-11 6-10 5-5 2-4 1h-5l-5-1-4-1-5-2-4-1-4-2 10-4 11-4 10-5 11-5 11-5 10-6 11-7 10-7 9-8 9-8 8-8 7-10 7-10 5-11 4-11 3-13 2-6 1-6 1-7v-19l-2-6-1-6-1-6-2-6-2-6-2-6-3-6-2-6-2-5-2-6 1 7 1 7 1 8 1 8v36l-1 10-1 9-2 9-1 9-3 8-2 8-4 7-3 7-7 8-8 7-7 8-8 6-8 6-9 5-9 5-9 4-9 4-10 3-10 2-11 1-10 1h-11l-11-1-12-2-8-2-7-2-7-3-6-3-5-3-5-4-5-4-5-4-4-5-4-4-4-6-4-5-4-5-5-6-4-6-5-7-8 8 3 2 1 3 1 3v2h-10l-2-10v-10l-1-10 1-10 1-10 1-10 3-9 2-10 4-9 3-9 5-9 5-8 6-8 6-8 7-7 8-7 7-4 7-4 8-3 7-4 8-2 7-3 8-3 8-2 8-3 8-2 7-2 9-2 7-2 9-2 8-2 8-1 8-2 8-2 8-2 7-3 8-2 8-2 8-3 8-3 7-3 8-3 7-4 8-3 7-5 6-4 7-5 7-5 3-4 3-3 3-3 3-3 3-2 3-2 4-2 4-2z" class="pen1 brush1"/><path d="m1178 361-9 9-9 11-9 11-8 11-7 12-7 12-6 12-5 12-5 13-4 13-4 13-3 13-3 13-1 12-2 13v13l-5-13-2-13-2-13v-13l1-13 2-13 3-13 5-13 5-12 5-12 7-12 7-12 8-11 8-11 9-10 9-9h7l2-2 3-1 2-2h3l2 2 3 3z" class="pen1 brush1"/><path d="m955 451 87-80 3 3-90 77zm285-30 10-14v3l-10 11zm71 4 1 4v3l-1 3-1 2-2 2-2 1-3 2-3 1-19-36 6-1h6l4 2 3 2 3 3 3 4 2 4 3 4zm47-4v3l-1 2-1 1-1 2-2 1-1 1-2 1-5 2-4-1-3-2-2-2-1-4-1-4-1-3-1-3 4-1h7l3 1 3 1 3 2 3 1 3 2zm531 30h-3l-4-2-4-3-5-5-4-5-4-5-3-6-1-4 28 30zm-485-8-3 4-3 2-3 1-3-1-4-1-3-2-4-1-3-2v-18l4 2 5 1 4 1 5 1 3 2 3 2 2 4v5zm-123 13v3l-1 2v4l-1 1-1 2-1 2-2 1-6-2-6-3-5-4-4-5-4-5-1-6 1-6 3-8 6-3 6-1 3 3 4 4 2 6 2 6 3 5 2 4zm554-28v5l-2 5-4 4-4 3-5 4-5 3-4 4-4 5-6-2-3-2-2-4-1-4 1-4 1-3 2-4 3-2 4-3 4-2 3-2h5l4-1h13zm-811 15-5 2-5 1-4 3-4 2-4 3-4 3-4 3-4 3-3 3-4 4-4 3-4 3-4 3-4 3-5 2-4 2-3-4 4-2 4-3 5-3 4-3 4-3 3-3 4-4 4-3 3-4 4-3 4-4 3-3 4-3 4-3 3-3 4-3 8 11zm750 8h-8v-8h8v8zm-334 20-4 3-4 3-5 3-5 1-5 1-4-1-4-3-2-7 1-4 1-3 2-4 1-3 1-3 2-3 3-2 4-3 4 1 3 3 3 2 3 4 2 4 1 4 1 3 1 4zm421-10-2 5-3 4-4 2-5 2-5 1-5 1-5 1-4 2-3-2-2-3v-4l2-2 1-2 1-3 1-2 18-15 15 15zm-155 14 11-14 3 3-14 11zm-723 25v-4l2-4 4-4 5-4 6-4 6-3 5-3 5-3-33 29zm281-8h-32v-17l6-1h6l6 1 6 3 4 3 3 4 2 4-1 3zm431 5h-14v-2l1-3 1-2 2-2 2-2 2-1h3l3 1v11zm176 0 1 4-1 2-2 2-2 1-3 1h-3l-3 2-2 1h-2l-2 1h-8l-2-1-2-1-2-2v-7l3-6 5-5 7-3h6l6 1 4 4 2 6zm-416 10h-33l2-3 5-4 6-5 7-4 6-2 5 2 2 5v11zm470-2h3v17h-3v-17zm-937 35-5 3-1-3-1-3 1-4 3-4 3-4 3-4 4-3 3-3 2 2 1 4v4l-1 4-2 4-3 3-3 3-4 1zm276-22h-5l-4 2-3 3-3 3-4 4-4 2-4 2-5-1-5-11 4-1 4-1 5-2 4-2 5-1h10l5 3zm425 4v11h-23v-15h15l3 1 2 1 3 2zm182 0 1 3v2l-1 3v7l1 1 2 2h-28l-2-5v-4l2-4 4-2 4-2 6-1h11zm-421 14-1 2-1 3v2l-1 3v2l-1 2-2 2-1 2-24-18h31zm-175 15-25 21-3-2-2-3-2-2-2-2-2-2v-6l1-4 4-1 5-3 5-3 5-3 5-1 5 1 3 3 3 7zm416 7-3 3-4 3-4 2-4 1-4 1-5 1-4 1-4 2 4-26 4 1h10l5-1 4 1 4 1 1 4v6zm173 18h-12l-4-1-4-2-3-2-3-3-3-4-1-3 1-3 2-2 3-2 3-1 4-1h12l4 2 3 2 2 3 1 3v4l-2 5-3 5zm-435 11h-7l-4 1h-5l-5-1-4-2-2-4-1-5-2-2-2-3v-5l1-2 2-2 2-2 2-2 4 4 5 2 6 2 7 2 5 3 2 3v6l-4 7zm-435-5h-11l15-18v13l-1 2-1 2-2 1zm956-13h4v13h-4v-13zm-657 3 3 4 1 4-1 5-1 4-2 4-2 4-2 4-3 4-11-5 1-4 2-4 2-4 2-4 3-3 3-4 3-3 2-2zm406 22-3 1-3 1-3 1-2 2-3 1-3 1-3-1-3-3 1-3 3-3 3-3 4-3 4-2 4-2 4-3 3-2 3 2 1 3-1 2-1 2-2 2-2 2-1 3v2zm-298 6-15 15-4-3-3-3-3-4-3-5-1-5-1-5 2-5 3-6 5 1 3 1 3 3 2 3 2 4 2 4 4 3 4 2zm437 5-1 2-3 1h-6l-11-26 4 3 5 2 5 1 5 2 4 2 2 3v4l-4 6zm-513-15v6l-1 3-1 3-1 3-1 3v4l1 3h-22l15-28 10 3zm33 18v15h-23v-8l1-8 4-7 5-7 4-3 4 1 4 5 1 12zm348 7 14-18v15l-1 5-3 2h-4l-6-4zm111 3-15 12-3-1-2-2-2-3-2-4-1-3-1-4v-4l1-4 1-6 3-2h3l5 3 4 4 5 4 3 5 1 5zm-69 15-1 1-1 2-2 1-2-1-7-4-3-3v-4l3-4 2-4 3-5v-5l-2-7 6 1 3 2 2 4v11l-1 5v10zm-760-15 6-13v7l-6 6zm793 8v10h-18l3-31h4l2 2 3 2 1 3 1 4 1 3 2 4 1 3zm-200 18v8l-1 5v9l1 5 2 3 3 3 5-4 3-3 2-4 1-4 1-5v-9l1-4 1 4 1 4 1 4 1 5 1 4 1 5 1 4v5l1 5 1 4 1 5 1 5v4l1 5v4l1 4-1 11-1 10-1 11-1 10-2 10-2 10-2 10-2 9-2 10-3 9-3 10-3 9-4 9-4 9-3 9-5 9v-14l-1-14v-27l1-14v-14l1-13 1-14 1-13v-28l1-13-1-14v-13l-1-14-2-14h-7l-1 8v8l-1 8-1 8v8l-1 7-1 8-1 8v8l-1 8-1 7-1 8-1 8v8l-1 8-1 8v7l-1 8-1 8v8l-1 8-1 8v15l-1 8v8l-1 8v40l-2-7-2-8-2-7-2-8-2-7-3-8-2-7-3-8-3-7-3-8-2-8-3-7-2-8-3-8-2-8-3-7-2-8-2-8-1-8-1-8-1-8-1-8-1-8 1-8v-8l1-8 2-8 2-8 2-8 4-8 3-8 4-8-2 3-2 3v3l1 2 2 3 2 3 1 3 1 3 5-3 4-3 3-3 3-4 1-5 2-5 1-5 1-5 2-5 1-5 2-4 2-5 3-4 3-3 5-4 6-2 15 32zm-644-18-1 4-2 4-1 5-1 4v5l-1 4-1 5-1 4-1 5-1 4-2 5-1 4-2 4-1 4-3 4-2 4 13 3-1 5-2 5-2 6-2 5-2 6-3 5-2 6-3 5-3 6-2 5-4 4-3 5-3 4-4 4-3 4-4 4 1 12v12l-1 10-2 11-3 10-4 10-5 9-4 9-4 10-4 9-4 10-3 9-1 11-1 10 1 11 3 12-10 15-12 14-11 13-12 12-13 12-14 11-14 11-14 10-14 11-15 10-15 11-15 11-14 11-15 13-14 12-14 14-9 9-9 8-9 9-8 8-9 8-8 9-8 9-8 8-7 9-8 8-7 9-7 8-8 9-7 9-7 9-6 8-7 9-7 9-7 9-6 9-7 9-6 10-7 9-6 9-7 10-6 9-7 10-6 9-7 10-6 10-7 10-7 10 1-4 1-5 2-5 3-6 3-7 4-7 3-8 4-8 3-9 4-8 2-9 3-8 1-8 1-8v-8l-2-7h-7l-5 14-5 14-5 14-5 14-5 14-6 14-5 14-6 15-6 13-6 14-6 14-6 14-5 14-6 14-6 14-6 14-5 14-6 14-5 14-5 14-5 14-5 14-5 15-4 14-4 15-4 14-3 15-3 15-3 15-2 15-2 15-2 15-5 24-6 25-5 25-5 24-5 25-5 25-4 25-4 25-4 25-4 26-4 25-3 25-4 26-3 25-3 26-3 26-4 25-2 26-3 26-3 25-2 26-3 26-2 26-3 25-2 26-2 26-3 25-2 26-2 26-3 25-2 26-2 25-6-3-4-4-5-4-3-4-4-3-3-5-4-5-3-5-1-48v-95l1-48 1-47 2-48 3-47 3-47 4-47 5-47 5-46 6-47 7-46 7-47 8-45 9-46 9-46 11-45 10-45 12-45 12-44 12-44 14-44 14-44 15-43 16-43 16-42 17-42 18-42 18-42 20-41 20-40 12-8 8-13 7-14 8-14 8-13 7-14 8-14 7-14 8-14 7-14 8-14 7-13 8-14 8-13 8-14 8-13 8-13 9-13 9-13 9-12 9-13 10-12 10-11 10-12 10-11 11-11 12-11 12-10 12-10 13-9 13-10 14-8 15-8 100-47-1 5-3 5-4 4-4 4-3 4-2 5 1 4 3 5 4 1h4l4-2 3-4 3-3 3-3 4-2 3-2-5 8-4 8-5 8-5 9-5 8-4 9-4 8-4 9-3 9-3 8-2 9-1 9-1 9v9l1 9 2 9 22-7 4-13 3-12 3-12 3-13 3-13 4-13 4-12 4-13 5-11 5-12 7-11 7-10 8-10 10-8 11-8 12-6zm64 7v3l-1 3-2 3-2 2-3 2-4 2-3 2-3 1h-1l2-1 3-1 4-3 4-3 3-3 3-3v-4zm8 47-2 4-3 3-4 1-3-1-4-1-3-2h-2l13-18 2 1 1 1 2 1 1 2 2 2v7zm0 43-2 1-2 2-2 1-2 1-2 1-2 1-2 2-1 2 18-29 2 2 1 2 1 3-1 2-1 3-1 2-2 2-2 2zm-18 51 1-6 3-5 5-5 5-4 5-4 5-4 5-4 4-4 1 6-1 5-4 5-5 4-7 4-6 3-7 4-4 5z" class="pen1 brush0"/><path d="m793 841-2 17-4 16-4 15-5 15-5 14-7 13-7 14-8 13-8 12-8 12-10 12-9 12-10 11-11 11-10 12-11 11-11 10-11 11-12 11-11 10-11 11-12 11-11 11-11 11-11 11-10 11-11 12-10 12-10 12-9 13-9 12-8 14h-11l7-14 8-13 8-13 9-13 9-12 9-12 10-12 11-11 11-11 10-11 11-11 12-11 11-11 11-10 12-11 11-11 11-11 11-10 11-11 11-12 10-11 10-12 9-12 9-12 8-13 8-13 7-14 7-14 6-14 5-15 4-15 4-17h7zm716 41-2 5-3 5-4 5-5 4-5 4-6 4-6 2-5 2-6 8-5 7-6 6-6 7-6 6-7 5-6 6-7 5-7 5-8 4-7 4-8 4-8 3-8 3-8 3-8 3-8 2-8 2-9 1-9 2-8 1-9 1h-35l-9-1-8-1-9-1-8-2-9-1-8-2-9-4-9-3-8-4-10-3-9-3-9-4-9-4-9-4-8-5-8-5-7-5-7-7-6-6-4-8-4-8-3-10 7 5 7 5 8 5 7 5 8 4 8 5 8 4 7 4 9 4 8 3 8 4 9 3 8 3 8 3 9 3 9 2 8 2 9 2 9 1 8 2 9 1h36l9-1 9-1 9-1 9-2 9-2 9-3 9-3 10-3 9-4 8-5 9-6 7-5 8-7 7-6 8-7 7-7 7-6 8-6 8-6 8-5 9-5 9-4 11-3z" class="pen1 brush1"/><path d="M226 2265h3l-3 104h-5l5-104zm18 36h2v14h-2v-14zm0 21h2l-2 47h-5l5-47zm-15 170-1-7v-53l1-7v-7l1-6 1-7 2-6 1-6 2-6v5l1 6v6l-1 6v13l-1 7v7l-1 7-1 7-1 7-1 7v7l-1 6-1 7v7zm2184 118-1-1-2 1-1 1-1 1-1 1h-1l-2-1-1-2-7-12-6-13-6-12-6-12-6-13-5-12-5-13-5-12-4-13-5-13-4-13-3-14-4-13-3-13-3-14-3-13 25-11 2 14 2 14 3 14 3 14 3 14 3 13 4 14 4 13 4 14 5 13 4 13 4 13 5 13 5 13 5 14 4 13zM783 2451l3 15h4l2-2 2-3 2-3v-7l10 3 10 2 9 2 10 2 10 2 10 1 11 1 10 1 10 1h20l10 1h51l10 1h10l10 1 10 1 9 1 10 1 9 1 10 2 10 2 9 3 9 3 10 3 8 4 9 4 9 5 5 7 5 7 6 8 5 7 5 6 5 7 5 7 5 6 5 7 5 7 5 6 5 7 5 6 4 7 5 6 5 7-6 3-6 3-5 1-5-1-6-1-5-3-5-5-6-5-4-4-3-5-3-5-2-5-3-4-2-5-4-4-4-4 4 14 4 13 4 14 4 15 4 14 3 15 2 15 3 15 1 15v30l-2 14-3 15-4 14-6 13-7 13-5 2-5 3-5 3-4 3-5 3-4 4-4 4-5 3-4 4-5 3-4 2-5 2-6 2h-12l-6-1 8-12 6-12 4-13 2-13 1-13v-14l-1-13-3-14-3-14-3-14-5-14-4-14-4-13-4-13-4-13-4-13-4-4-5-4-5-4-6-4-4-4-3-5 1-7 4-8 3-9 4-8 6-8 7-7 8-6 8-5 9-4 9-3 8 1 8 3 8 4 6 6 6 7 6 7 5 6 4 6 1-7v-6l-2-7-2-6-3-7-3-6-4-6-5-5-5-5-5-4-6-3-7-2-8-1h-23l-21 18-3-8-5-7-6-5-6-4-7-4-8-3-7-4-6-4h-5l-5-1h-16l-5 1h-5l-5 1-5 2-4 1-5 2-4 3-4 3-3 3-3 4-3 5-5-3-5-3-5-2-6-3-6-2-5-2-6-2-6-1-6-1-6-1h-13l-6 1-6 1-6 2-6 3-33 17v-3l1-3-2-2-2-2-28 54 1-4 1-5 1-6 1-5 2-6 2-7 2-6 3-6 4-6 3-5 4-6 5-4 5-4 6-3 7-2 7-1-6-5-6-2-5-1-5 1-5 2-5 3-4 4-4 5-4 5-4 5-3 5-3 6-3 4-3 5-2 3-3 3 1-5 2-5 1-4 1-5 2-5 2-4 2-5 2-4 2-5 3-4 3-4 3-4 2-4 4-4 3-3 3-4-3 1-4 1-4 1-4 2-3 2-4 2-4 3-4 2-3 3-4 3-4 2-3 3-4 2-3 3-4 2-3 1-1 7-2 6-2 6-2 5-3 6-3 5-2 6-3 6 1-5 1-5 1-5 1-5 1-5 1-5 2-5 1-5 2-5 2-5 3-4 2-5 3-4 4-3 4-4 4-3v-7l-7 1-7 3-6 5-6 6-5 6-5 8-4 6-4 6-5-6-2-5v-5l3-5 4-5 4-5 4-5 3-5 1-1 2-2 1-1v-2l-4-4-28 22-2-5 1-4 1-4 2-3 2-4 2-3 2-3 2-4-25-3-2-4v-4l3-4 4-4 4-3 4-4 5-3 4-2 5 5 6 6 6 4 6 5 7 4 6 3 7 3 7 3 7 2 7 3 7 2 8 1 7 2 7 2 8 2 7 2zm1599 162h-11l-6-11-6-12-6-11-5-12-5-12-5-12-5-12-4-13-4-12-4-12-3-12-4-12-4-12-3-12-4-12-3-11 13-11 3 14 3 13 3 13 5 13 4 13 5 13 5 12 5 13 6 12 5 13 5 12 5 12 4 12 4 12 4 12 3 12zm-8-201 3-1 29 94h-3l-29-93zm-25 205h-28l-5-10-6-11-6-11-5-11-6-12-5-11-5-12-5-12-3-11-4-12-2-11-1-12v-11l2-11 2-11 5-10 4 11 4 11 4 11 4 11 5 11 4 11 5 12 4 11 5 11 5 11 5 12 4 11 5 11 5 12 4 11 5 11zm-43 0-2 2-3 1h-16v-3l-2-1-1-2-1-1-1-1-2-1-1-1v8l-2 1-3 1h-16l-10-10-5 10-5-1-4-1-4-1-3-2-4-1-3-2-4-2-4-3v13l-10 1-8-2-6-5-5-7-5-8-5-9-4-8-5-8v-21l33 42 1-5v-5l-1-5-1-4-2-5-3-4-3-5-3-4-3-4-3-5-3-4-3-5-2-4-2-5-1-6v-5l5 3 5 4 5 4 5 4 4 5 4 5 5 5 3 5 4 6 4 5 3 6 4 5 4 6 3 5 3 6 4 5v-5l-1-6-2-6-3-6-3-6-4-6-3-5-4-6-4-6-3-5-3-6-3-5-1-6-1-5v-6l2-5 4 3 5 2 4 3 4 4 3 4 3 4 3 5 3 5 3 5 2 5 3 5 3 5 3 5 4 4 3 5 4 4 1-6v-6l-2-6-2-6-3-6-4-6-3-6-4-6-3-6-3-5-2-6v-11l3-6 4-5 7-6 4 8 4 8 4 8 4 8 4 8 4 9 4 8 4 8 4 9 4 8 5 9 4 8 3 9 5 8 4 9 4 8z" class="pen1 brush0"/><path d="m714 2541 1-7 1-7 2-7 3-7 3-6 3-6 5-5 4-4-22 49zm-485-42h4l-4 85h-3l3-85zm772 28 2 4v3l-1 4-2 5-3 5-2 5-1 5v5l-6 1-5 2-5 3-4 3-3 3-3 4-2 4-2 5-2 5-2 5-2 5-2 5-3 4-2 5-3 4-4 4-2 13-4 13-5 13-6 14-6 13-6 14-6 13-6 14-5 13-4 13-3 13-2 12-1 12 2 12 4 11 7 11h-6l-4-1-5-2-4-2-3-3-3-4-3-4-2-4-3-5-2-4-2-5-2-5-1-5-2-5-2-4-2-5-1-9-1-10v-39l1-9 1-10 1-9 1-10 1-9 2-9 2-9 1-9 3-9 2-8 3-9 3-9 4-8 3-8 4-8 4-8 5-8 4-7 5-7 6-7 5-7 6-7 7-6 6-6 7-6 7-6 9-1h7l8 2 7 2 6 4 6 4 6 5 5 6zm-118 0-7 2-6 3-6 4-6 3-5 4-5 5-5 5-4 5-4 6-4 5-3 6-3 6-3 7-3 6-3 6-2 7 1 2v3l-1 2v5l1 2 1 2 2 2 5-3 4-4 3-4 3-5 3-5 3-5 2-6 3-5 3-6 3-5 2-5 4-5 3-4 4-4 5-3 5-3-8 12-6 13-6 13-5 13-3 14-4 14-2 15-2 14-2 14-2 15-2 15-1 14-2 15-2 14-2 13-2 14-1 1v-1l1-1v-6l-1-3-1-2-2-2-4 1-4 1-4 2-3 3-3 3-3 4-2 4-2 3 18 40-57-76 2-8 1-9 2-9 1-10v-10l1-10 1-11v-11l1-11 1-11v-11l1-11 1-11 2-10 2-11 2-10 2-9 3-9 3-9 4-8 4-7 5-6 5-6 7-5 6-3 8-3 8-1 10-1 10 1 11 2 12 4 13 5zm1189 21-2-1-1-4v-8l-1-4-2-4-3-3-5-1 26-11 1 4 1 5v5l-1 5-2 5-2 5-4 4-5 3zm364 36-3-2-2-3-2-3-2-4-2-5-2-4-1-5-2-5-2-5-1-5-2-6-1-5-2-5-2-5-1-5-2-5 29 72zm-411 23 2-5 1-4 2-5 1-5 1-4 1-5 1-5 1-5 1-5v-19l-1-5-1-5-1-4 3-1 4-1h6l2 2 2 3 1 4 1 5v15l-1 4-2 5-1 4-3 4-2 4-2 4-3 4-3 4-2 4-3 4-2 4-3 4zm-7-72v13l-1 6-1 6-1 6-1 6-2 5-2 6-1 6-2 5-3 6-2 5-2 6-2 6-2 5-2 6-5-5-4-7-3-6-4-7-4-6-5-5-7-4-8-4-6 1h-11l-4 1h-5l-4 1-4 1-4 1-3 2-4 2-3 3-3 3-3 4-3 4-2 5-3 5-10 8-14-72 10 1h20l9-1h10l10-1 9-1 9-2 9-1 10-2 9-1 9-2 9-2 9-2 9-2 9-2zm-240 11h-7l-4 1-4 1-3 1-4 1-4 1-4 1h-3l-4 1h-4l-3-1h-4l-3-2-4-2-3-2 4-2 3-1h4l3-1h4l3 1h4l3 1h4l4 1 4 1h18zm917 0h3l3 31h-3l-3-31zm-996 21-5-1h-14l-4 1h-4l-4 2-4 1-4 1-4 2-3 2-4 2-4 2-3 2-4 2-3 1 1-6 3-5 4-4 6-3 6-3 5-2 6-4 4-4 4 2 5 1h5l5-1 4 1 4 1 2 3v7z" class="pen1 brush0"/><path d="m113 2610-5 2-5 2-5 2-6 2-6 2-6 2-6 1-6 1H50l-6-1-5-1-6-3-5-2-5-4h-2l-1-1-1-2-1-2v-2l-1-2v-2l50-7-2-4-3-3-2-3-2-3-3-2-3-3-3-3-3-3 13-15 8 5 7 6 7 7 8 7 6 7 7 7 6 8 5 7z" class="pen1 brush1"/><path d="M1853 2584v11l-4-3-3-2-4-2h-4l-3-1h-3l-4 1h-3l-4 2-3 1-4 2-4 1-4 2-5 2-4 2-5 2v5l43 3v8l1 1 1 1h1-14l-5 2-4 1-4 2-5 3-4 3v7l6 1h7l8-1 8-1 8 1 6 2 4 5 1 8v8l-3-2-3-2h-3l-3-1-4 1h-6l-3-1-2 2-2 2-2 2-2 1-1 2-1 2-1 2v2l6 6 5 2 4-1 4-3 4-3 5-2h5l6 4 1 16 1 15 1 16-1 15-2 15-1 15-3 15-4 14-4 14-5 13-7 14-7 13-8 13-9 12-10 12-11 11-15-5-11-7-7-8-5-9-1-11 1-11 2-11 4-13 5-13 6-13 6-13 5-14 4-13 3-13 1-13-1-12 1-8v-31l-1-8v-7l-1-7-2-8-2-6-3-7-2-6-4-7-4-5-5-6-5-5-3 1-2 1-3 1h-15v-33l9 3 9 1h9l8-1 8-2 9-2 8-3 7-2 8-2 7-2h15l7 2 6 3 7 5 6 7zm-244-7-3 7-3 8-4 7-5 8-5 6-5 5-6 4-5 3-2-1-2-1-3-1-2-1-2-1h-7l5-5 7-6 6-6 7-6 8-6 7-6 7-4 7-4z" class="pen1 brush0"/><path d="m2256 2577 3-1 11 22-3 1-11-22z" class="pen1 brush1"/><path d="m908 2811 1-14 1-13 2-13 2-13 4-13 3-13 4-13 4-13 5-12 5-13 5-12 4-12 5-13 4-11 5-12 4-11h5l3-2 3-3 1-3 1-5 1-4 2-5 1-4-2 15-4 14-4 14-4 14-5 14-5 14-5 14-6 14-5 14-6 14-5 14-5 14-5 15-5 14-5 14-4 15zm804-209v18l-3-2-4-3-4-2-4-1-4-2-5-1-4-1-5-1-5-1h-15l-4 1-5 1h-5l-5 2v3l-2 2-3 3-2 2-2 2-1 2 1 3 4 4 3-2 3-1 3-1 3-2 4-1 4-1 4-1h4l4-1h16l4 1 4 1 4 2v5l1 2v1l1 1 2 1 2 2 2 2 2 4 2 4 2 5 1 6 2 5v4l-5 10-5 11-4 11-3 11-3 11-2 12-2 12-1 11-2 13v12l-1 12-1 12v12l-1 13v12l-1 12-6 9-7 3-8-2-7-3-8-4-6-1-5 1-4 8-10-10-7-11-7-12-4-12-3-13-2-14-1-14-1-15 1-15 1-15 2-15 1-15 1-15 2-14 1-13 1-13 15-39 7 7 2-5 3-6 4-4 4-4 6-4 5-2 6-2 6-1 7-1h13l7 1 6 2 6 3 5 3 5 5zm228 41-3 2-3 3-5 2-4 3-4 2-3 3-3 4-1 5h32l-2 2-4 1-3 3-3 2-4 2-3 2-3 3-2 3 4 3 4 1 4-1 4-1 4-1 4-1 4 1 4 3v6l-2 3-3 2h-9l-3 1-2 3v6l19 8-4 15-1-3-2-1-2-1h-2l-3 3-2 2-3 3v3l8 7-57 126-5 2-5 2h-33l7-12 8-13 7-14 7-13 7-14 6-14 6-14 5-15 3-14 3-15 2-15 1-15-1-15-2-16-4-15-6-16 4-7 6-6 8-6 8-5 9-1 7 2 5 7 1 13zm-898 121h-90l1-9 2-8 2-8 4-8 3-7 4-7 5-7 4-7 5-7 5-6 5-7 5-7 4-7 4-7 4-8 3-8h7l23 118zm703 7-5 2h-5l-5-2-5-3-4-2-4-1-2 1-3 3 2-8 2-7 3-8 2-7 2-8 2-7 2-7 2-8 2-7 2-8 1-7 1-8 1-7v-15l-1-8 3-2h4l3 1 2 2 3 3 2 4 2 3 2 4v56l-1 7v6l-1 7-1 6-2 7-1 6-2 6-3 6z" class="pen1 brush0"/><path d="M814 2725h-6l2-4 1-3v-5l-1-4v-5l-1-5-1-5-1-5v-15l1-5 2-5 3-4 4-3 5-4 2 4 2 5 1 4 1 5 1 4v10l-1 5-1 5-1 4-1 5-2 5-2 4-2 4-2 4-3 4z" class="pen1 brush1"/><path d="m1581 2674-3 8-2 7-1 8-1 7v28l1 7 1 7v7l1 7v8l1 8-1 8-1 8-13 1-13 1h-92l-12-1h-13l-13-1h-13l-13-1-12-1-13-1h-13l-12-2-13-1-13-1-12-1-13-1-12-1-13-1-12-1-13-1-12-2-13-1-13-1-12-1-13-1-12-2 1-6 2-7 1-7 1-7 1-8 1-7 1-8 1-7v-8l1-7v-7l1-8v-21l-1-7 403 18zm298 36-5-39 5 29v10zm1016 72h-7l-7-1h-7l-7-1-8-1-7-2-8-1-7-1-8-1-8-2-7-2-8-1-7-2-7-2-8-2-7-2 8-6 7-5 8-5 8-5 8-5 8-5 9-4 9-4 8-4 9-3 9-4 9-3 9-3 9-3 9-3 10-2-19 85z" class="pen1 brush0"/><path d="m282 2746 7 5 6 4 7 3 8 2 6 3 6 4 4 5 3 7-9-4-9-3-10-3-10-2-9-2-10-1-10-1-10-1-11-1h-41l-10 1h-11l-10 1h-11l-10 1h-21l-10 1H97l-10-1H77l-10-1-9-1-10-2-9-1-9-3-8-2-9-3 5-4 1-4v-5l-1-4-1-4v-9l4-3h8l8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 9 2 8 1 8 1 8 1h8l8 2 8 1 8 1 8 1 9 1 8 1 8 1h8l9 1 8 1 8 1 8 1h9l8 1 8 1h9l8 1h8z" class="pen1 brush1"/><path d="m1950 2805 29-80-10 46-19 34zm424-36-12 2-14 3-12 2-13 2-14 3-12 2-14 2-13 2-13 3-13 2-13 2-13 2-13 2-14 2-13 2-13 2-13 2-13 2-14 2-13 2-13 2-13 2-13 2-14 2-13 2-13 2-13 2-13 2-14 2-13 2-13 2-13 2 5-3 5-3 6-2 6-2 7-2 6-1 7-1 7-1 7-1 7-1 7-2 7-1 7-1 7-1 6-2 7-1 11-1h10l10-1 10-2 10-1 9-1 10-1 10-2 9-2 10-2 10-2 9-2 10-2 10-2 9-2 10-2 9-2 10-3 9-1 10-2 10-2 10-2 9-1 10-2 10-1 10-1h10l11-1h31l10 1zm11 0 7-5h36l-43 5z" class="pen1 brush0"/><path d="M2957 2844v10h-20l-10-1-10-1-10-1-11-1-10-1-11-2-10-1-10-1-10-2-10-1-11-1h-29l9 5 10 5 10 3 10 2 12 2 11 1 11 1h23l11 1 11 1 11 2 11 2 10 3 10 5 9 6-4 4-5 3-6 1h-14l-7-1-7-1-7-2-7-1h-13l-6 1-5 3-4 4-2 6-2 8-4 13-4 13-4 12-4 13-5 12-5 13-5 12-5 12-5 12-5 12-6 12-6 11-6 12-7 11-6 12-7 11v6l1 6v6l1 6 1 6 2 6 1 6 1 6 2 6 1 6 1 6 1 6 1 6 1 7 1 6v6l-3-2-3-4-3-3-3-4-3-4-3-4-2-4-3-5-4-4-2-5-3-4-3-4-3-4-3-5-3-4-3-4-6-8-6-8-6-8-5-8-5-9-5-8-4-10-4-9-4-9-3-10-3-9-3-10-2-10-2-10-2-11-1-10-5-10-6-11-6-10-6-10-7-10-7-9-7-10-7-10-7-9-6-10-7-9-6-10-5-10-5-10-3-10-3-10 4-3 2-4v-11l1-6 1-5 4-3 6-2-6-2-6-1h-6l-6 1-6 2h-12l-6-2v-9l1-4 2-3 2-4 3-2 3-2 4-2 12 1 12 1 12 2 12 1 12 2 11 2 12 2 12 3 11 2 11 3 11 3 12 3 11 3 11 3 11 3 11 3 12 4 11 3 11 3 11 3 12 3 11 4 11 3 11 2 11 3 12 3 11 2 12 2 12 3 11 1 12 2 12 2zm-2670-52h60l-16 3-14 4-12 7-11 8-10 9-9 11-8 11-7 11-8 13-7 12-7 12-8 12-8 11-9 9-10 9-10 7 3-6 2-6 1-6 1-6-1-6v-6l-2-5-2-6-2-5-2-6-3-5-3-6-2-5-3-5-3-6-2-5-4 1-4 1-4 2-4 1-4 2-4 1h-8l-15-18 3-4 3-3 3-2 3-2 3-2 3-2 2-4 1-4-139-18-3-2-3-3-2-4-2-5-1-4v-5l1-4 2-4 10 2 9 2 9 2 9 1 10 1 9 1h9l9 1h36l9-1h18l9-1h17l9-1h26l9 1h9l8 1 9 1 9 2 8 1 9 2 9 3 9 2 8 3z" class="pen1 brush1"/><path d="m509 2786-7-1-6-1-7-1h-7l-7-1h-77l7-1 7-1h7l7-1h7l8-1h20l7 1h7l7 1 6 1 7 1 7 2 7 2zm202 19v2l-174-10 2-5 10 2 11 1 10 1h77l11 1h11l11 2 10 1 10 2 11 3zm1699-8 7 13 6 13 6 13 6 14 6 13 6 13 6 13 6 13 6 14 6 13 7 13 7 13 6 12 8 13 8 13 8 12h-8l-3-1-3-1-2-2-1-2-1-4-1-2-1-1-2-1h-3l-1-1h-4l-7-11-6-12-6-11-6-13-5-11-5-13-5-12-4-12-5-13-4-12-5-12-5-13-5-12-5-12-6-12-6-12h10zm33 0 6 15 7 15 7 14 7 15 8 14 8 14 8 14 9 14 8 14 9 14 8 14 9 14 8 14 8 14 8 13 8 14-7-2-6-3-6-3-5-4-4-4-4-5-4-5-3-6-3-5-3-6-3-6-3-5-4-6-3-5-4-5-4-5-67-151h7zm-61 3 5 12 5 13 5 13 5 12 5 13 6 13 5 12 5 13 5 12 5 13 5 12 5 13 4 13 5 13 5 12 4 13h-7l-7-12-6-12-6-12-6-12-6-13-5-12-6-12-5-12-6-13-5-12-5-13-5-12-5-13-5-12-4-13-5-12 2-1h2l2-1 1-1 2-1 2-1h4zm-40 7 5 12 5 12 6 11 5 12 6 11 7 11 6 11 6 12 5 11 6 11 6 12 6 11 5 11 6 12 5 11 4 12h-21l-6-11-5-10-6-11-5-11-6-11-5-11-5-12-5-11-5-11-5-11-6-11-5-11-6-11-6-11-7-11-6-10 1-2 2-2 3-1 2-1 3-2h10zm359 0 1-2 95 28-2 3-94-29zm-2275 4 1 12v12l1 12v13l1 12 2 12 1 12 1 12 1 12 2 12 2 12 2 12 2 11 2 12 2 12 3 11-18-22-2-11-1-11-1-11-2-10-2-11-1-10-2-10-1-10-2-10-1-11v-10l-1-10v-33l1-11h10zm598 4-4 3-5 3-5 2-5 1-6 1-5 1-6 1h-12l-7-1h-6l-6-1h-5l-6-1-4-1-5-1 4-3 4-3 5-2 5-1 6-1 5-1 6-1h6l6 1h11l7 1 5 1 6 1h6l5 1zm-629 165-5-9-5-9-3-9-3-10-2-9-2-10-1-10-1-11-1-10v-75l1 11v10l1 11 1 10 1 11 1 10 1 10 1 10 2 10 1 10 2 10 2 10 2 10 2 10 2 9 3 10zm82 33h-7l-4-11-3-12-3-12-3-12-1-12-2-12-1-12-1-13v-25l-1-13v-24l1-13v-24l1 12 2 12 1 13 1 12 2 12 1 12 1 13 2 12 1 12 2 13 1 12 2 12 2 12 2 12 2 12 2 12zm1905-33-8-9-7-10-7-10-7-10-7-10-7-10-6-11-7-10-6-11-6-11-6-10-6-11-5-10-5-10-5-10-5-9 10 7 10 7 9 8 8 9 7 9 6 10 6 10 6 11 5 11 4 11 5 11 5 12 4 12 5 11 5 11 5 12zm-1840 15h-8l-2-10-1-10-2-10-1-10-1-11v-11l-1-11-1-11-1-11v-23l-1-11v-11l-1-11-1-11-1-11h7l15 173zm600-166h26l13 1h13l14 1h27l14 1h27l14 1h14l14 1h28l14 1h28l15 1h28l14 1h28l14 1h13l14 1h27l13 1h14l13 1v5l-461-17 4-7 18 7zm-618 173h-8l-2 1-2 2-2 1-2 1-2 1 4-3 3-5 2-6 1-7v-28l-4-7-4-7-2-8-2-8-1-8-1-8v-61l-1-9-1-8-2-9 26 176zm43-15-8-10-7-151 1 10 1 10 1 10 2 10 2 10 1 10 2 10 1 10 2 11 1 10 1 10 1 10v30l-1 10zm18-161 3 9 2 9 2 9 2 9 1 10 1 9 1 10 1 10 1 10v30l-1 10v10l-1 9-2 10-10-11-11-143h11zm1753 133-7-6-8-7-7-7-7-7-6-8-6-8-6-8-5-8-6-9-5-8-5-8-6-9-6-9-5-8-6-8-6-8 5-7 8 6 8 7 8 8 7 7 6 8 6 9 6 8 5 9 5 8 5 9 4 9 5 9 5 9 5 9 4 9 5 9zm313-98-7-35h7v35zm-2023-32 3 8 2 9 1 9 1 9v37l-1 9-1 9-2 9-1 9-1 9-2 9-2 9-1 8h-3l-5-143h12zm1099 0 1 3-1 3-1 4-2 2-3 2-2 2-4 1h-3v-6l2-4 2-2 2-3 3-1 3-1h3zm943 0h2l5 32h-5l-2-32zM377 2990l-4-9-4-9-3-10-4-9-2-10-3-10-3-10-2-10-2-10-2-11-1-10-1-10v-29l1-10 1 10 2 10 2 10 1 10 1 10 1 10 2 10 1 10 1 10 2 10 2 10 2 10 2 9 3 10 3 9 4 9zm287-157 1 8 1 8v9l1 8 1 9v8l1 9v18l-1 8-1 9-1 8-1 8-2 8-3 8-3 7-1-6-1-6-1-7-1-7v-14l-1-8v-14l1-7v-14l1-7 1-6 1-6 1-5-4-26h11zm2049 121-3-4-2-3-3-4-3-3-4-3-2-4-3-3-3-4 2-5v-5l1-5 1-5 1-6v-67h6l12 121zm-2025 8h-5v-16l1-8v-8l1-8 1-7v-8l1-8 1-8v-8l1-8v-15l-1-8-1-8-2-8 1 7 2 8 1 8 1 8 2 8 1 8 1 9 1 8v33l-1 8-1 7-2 7-3 7zm26 7h-8l5-133 1 7 3 7 1 8 1 8 2 9 1 8 1 9v36l-1 8-1 9-1 8-2 8-2 8zm1905 80-6-3-5-3-5-4-4-5-4-5-4-5-4-5-3-6-3-6-3-6-4-6-3-6-3-5-3-6-4-4-4-5-6-8-5-8-6-8-5-8-4-8-5-8-3-8-4-8-3-8-3-9-3-8-2-9-3-8-2-9-2-9-1-9 9 13 8 12 8 13 8 13 8 13 8 13 7 14 7 13 7 13 8 14 6 14 7 13 7 14 7 14 7 13 7 14zM750 2841l-1 3-2 3-1 3-2 4-1 3-1 4-1 4 1 4h8l1 7 1 7v7l1 7 1 8v14l-1 8-1 7-1 7-1 7-2 8-2 7-3 7-3 7-4 7v-143h14zm36 0-1 6v22l1 7v7l1 8v21l-1 6-1 7-3 6-2 6-4 6-4 5-1-4v-17l1-7v-7l1-6 1-7v-8l1-7 1-8v-29l-1-7h11zm-378 125-18-122 11 56 7 66zm72-122h5l18 136h-5l-18-136zm1712 43-7-3-6-4-6-5-6-6-4-6-4-6-4-7-4-6 7 3 6 5 6 7 4 7 5 7 4 6 4 5 5 3zm534 103-7-146h12l-5 146zm-2372 8h-7l-4-8-4-8-3-8-3-8-3-8-2-8-3-9-2-9-2-8-1-9-2-9-1-9-2-9-1-8-2-10-1-9 8-7 3 8 3 8 3 9 2 9 2 9 1 9 2 10 1 9 2 10 1 9 2 9 2 10 2 9 2 9 4 8 3 9zm2524-116-4 2-4 2-2 3-3 4-2 4-1 4-2 4-1 5-1 5-1 5-1 5-1 5-1 5-2 5-1 4-2 4-4 7-3 7-4 7-3 8-3 7-4 8-3 7-3 8-3 7-3 7-4 7-4 7-4 7-4 6-4 6-5 5-14 29-28-32 1-12 2-13 1-12 1-13 1-12 1-13 1-13 1-12v-13l1-13v-25l-1-13-1-13-1-13-1-12h8l8 1 8 2 8 2 7 3 7 3 7 3 7 3 7 4 7 2 8 3 7 2 8 1 8 1h9l9-2zm-1725-23h3v38h-3v-38zm1106 38-26-38 5 3 4 5 4 5 3 5 3 5 3 5 2 5 2 5zm-1034-36h2l-2 80h-4l4-80zm17 90 4-90h7l-11 90zm-441-33 7-53v43l-7 10zm463 33v-9l1-6-1-5v-18l-1-6v-6l1-5v-6l1-6 2-5 2-5 3-5 3-4-11 86zm36 51-4-8-3-8-1-8-2-9v-9l-1-9v-9l1-9 1-9 1-9 2-8 1-9 2-9 3-8 2-9 2-7-4 137zm35 18-6 2-4-2-2-4-1-5v-7l-1-7-1-5-3-5 15-122h8l-5 155zm26 21-14-7 1-11 1-10 1-11v-11l1-10v-22l1-11v-11l1-10 1-11 2-11 1-10 3-10 2-10 3-10 2 11 1 11 1 11v12l-1 11v11l-2 11-1 11-1 11-2 11-1 11-1 11v10l-1 11 1 11 1 11zm25 8-1-10-1-10-1-10v-11l-1-11v-48l1-12v-12l1-12 2-12 2-11 3-11 2-10 1 11 2 11v11l1 11v11l-1 12v11l-1 11-1 12-1 11-1 12-1 11-1 11-1 12-2 11-1 11zm43-8v-10l-1-10v-11l1-11v-11l1-10 1-11 1-11 1-11 2-11 2-11 2-11 2-11 2-11 2-11 2-10 1 10v32l-1 11v10l-2 11-1 12-1 11-2 11-2 11-2 10-2 11-2 11-2 11-2 10zm1251-133-6-3-3-4-1-5 1-5 1-5 3-6 1-6 1-5 3 39zm-1225 118h-8l1-9 1-10 1-10 2-9 2-9 2-10 2-9 2-9 2-10 2-9 1-10 2-9 1-10 1-10v-11l-1-10 1 9v48l-1 10v10l-1 10-1 10-1 10-2 10-1 10-2 9-3 9-2 9zm118-146h3v100h-3v-100zm39 25h-7l1-5v-5l-2-3-2-2-3-3-4-2-2-3-2-2 4 2 4 3 3 2 3 3 3 2 2 4 2 4v5zm90 21-3 4-1-5v-5l1-7 1-7 2-7 2-7 3-6 3-6 5 4 2 6-1 6-2 6-3 6-4 6-3 6-2 6zm-1394 46-3-5-3-5-3-5-2-5-3-6-2-6-2-5-1-7-2-5v-6l-1-6v-12l1-6 1-5 2-6 18 90zm1240 8-3-6-2-6-1-6-1-6-1-6v-7l1-6 1-6v-7l1-6 1-6 1-6 1-6 1-7v-5l1-6v98zm-72 36 10-129-3 108-7 21zm21-11 12-118-8 115-4 3zm-90 36-1-9v-27l1-9 1-9 1-9 2-9 1-9 2-9 1-9 2-9 1-9 2-9 1-9 1-9 1 10v28l-1 10v8l-2 9-1 9-1 9-2 8-2 9-1 9-2 9-2 8-1 9-1 9zm112-87h3v33h-3v-33zm-337-93h4v39h-4v-39z" class="pen1 brush0"/></svg>
diff --git a/source-data/Williamstown-Park-Melbo#161.jpg b/source-data/Williamstown-Park-Melbo#161.jpg line changes: +0/-0 index 0000000..64681af --- /dev/null +++ b/source-data/Williamstown-Park-Melbo#161.jpg
diff --git a/source-data/assets.txt b/source-data/assets.txt line changes: +4/-0 index 0000000..0c30cdc --- /dev/null +++ b/source-data/assets.txt
@@ -0,0 +1,4 @@ +GLOBEO.CDR https://discmaster.textfiles.com/view/30018/wbiz0340-0349/wbiz0347.tar/wbiz0347/CDRWCLIP.039/CLIPART/MAP/OTHER/GLOBEO.CDR +EIFFEL TOWER 1.jpg https://discmaster.textfiles.com/view/11659/busmail.nait.ab.ca.tar/busmail.nait.ab.ca/www/mmalik2/EIFFEL%20TOWER%201.jpg +cns1-16.pcf https://discmaster.textfiles.com/view/17600/ftp.cray.com.zip/ftp.cray.com/pub/smw/3.1.06.tar.gz/3.1.GA.tar/3.1.GA/Cray-ULC10SP1-080714.iso/suse/noarch/ifntchia-1.2.1-209.2.noarch.rpm/ifntchia-1.2.1.209.2.cpio.bz2/ifntchia-1.2.1.209.2.cpio/usr/X11R6/lib/X11/fonts/misc/cns1-16.pcf.gz/cns1-16.pcf +sfnt_18066_Brunine-Bold.suit.ttf https://discmaster.textfiles.com/view/21308/Funky%20Fonts/FUNKYFNT.ISO/mac/Mac%20Fonts/Brunine-Bold.suit/Brunine-Bold.suit.rsrc/sfnt_18066_Brunine-Bold.suit.ttf \ No newline at end of file
diff --git a/source-data/computerkamer 13-08-2005 004s.jpg b/source-data/computerkamer 13-08-2005 004s.jpg line changes: +0/-0 index 0000000..2f0b557 --- /dev/null +++ b/source-data/computerkamer 13-08-2005 004s.jpg
diff --git a/source-data/sfnt_18066_Brunine-Bold.suit.ttf b/source-data/sfnt_18066_Brunine-Bold.suit.ttf line changes: +0/-0 index 0000000..adf71a9 --- /dev/null +++ b/source-data/sfnt_18066_Brunine-Bold.suit.ttf
diff --git a/tools/fontconvert.py b/tools/fontconvert.py line changes: +17/-0 index 0000000..410e6c3 --- /dev/null +++ b/tools/fontconvert.py
@@ -0,0 +1,17 @@ +#!/usr/bin/env python3 +import sys, struct +from PIL import Image + +im = Image.open(sys.argv[1]) +out = open(sys.argv[2], 'wb') + +for y in range(0, im.height, 16): + for x in range(0, im.width, 16): + for cy in range(0, 16): + w = 0 + for cx in range(0, 16): + p = im.getpixel((x + cx, y + cy)) + w >>= 1 + w |= (int(p != 0) << 15) + #print(f'{x:2d} {y+cy:2d} {w:016b}') + out.write(struct.pack('<H', w))
diff --git a/tools/midi_convert.py b/tools/midi_convert.py line changes: +143/-0 index 0000000..29037a3 --- /dev/null +++ b/tools/midi_convert.py
@@ -0,0 +1,143 @@ +#!/usr/bin/env python3 +import sys, functools, itertools +import miditoolkit + +mobj = miditoolkit.midi.parser.MidiFile(sys.argv[1]) +print(mobj) +bpm = int(mobj.tempo_changes[0].tempo) +print('bpm:', bpm) + +# These are copied from the internet, therefore they're probably wrong +# Starts at C0 +freq_table = [ + [ 16.35, 32.7, 65.41, 130.81, 261.63, 523.25, 1046.5, 2093, 4186 ], + [ 17.32, 34.65, 69.3, 138.59, 277.18, 554.37, 1108.73, 2217.46, 4434.92 ], + [ 18.35, 36.71, 73.42, 146.83, 293.66, 587.33, 1174.66, 2349.32, 4698.63 ], + [ 19.45, 38.89, 77.78, 155.56, 311.13, 622.25, 1244.51, 2489, 4978 ], + [ 20.6, 41.2, 82.41, 164.81, 329.63, 659.25, 1318.51, 2637, 5274 ], + [ 21.83, 43.65, 87.31, 174.61, 349.23, 698.46, 1396.91, 2793.83, 5587.65 ], + [ 23.12, 46.25, 92.5, 185, 369.99, 739.99, 1479.98, 2959.96, 5919.91 ], + [ 24.5, 49, 98, 196, 392, 783.99, 1567.98, 3135.96, 6271.93 ], + [ 25.96, 51.91, 103.83, 207.65, 415.3, 830.61, 1661.22, 3322.44, 6644.88 ], + [ 27.5, 55, 110, 220, 440, 880, 1760, 3520, 7040 ], + [ 29.14, 58.27, 116.54, 233.08, 466.16, 932.33, 1864.66, 3729.31, 7458.62 ], + [ 30.87, 61.74, 123.47, 246.94, 493.88, 987.77, 1975.53, 3951, 7902.13 ], +] + +class SnEvents: + def __init__(self, t, bytes): + self.t = t + self.bytes = bytes + +def tick_convert(t): + beats = t / mobj.ticks_per_beat + s = 60 * beats / bpm + return round(s * 50) + +def tick_time(t): + beats = t / mobj.ticks_per_beat + s = 60 * beats / bpm + return f'@{int(s / 60)}:{s % 60}s' + +def wait(frames): + buf = [] + # Subtract one because of how the player engine counts + frames -= 1 + while frames > 126: + buf.extend([0xFE]) + frames -= 126 + if frames > 0: + buf.extend([0x80 | frames]) + return buf + +def convert_track(t, target_track): + events = [] + current_t = 0 + current_vel = 0 + tt_val = (target_track & 0b11) << 5 + + # Sort notes by start + t.notes.sort(key=lambda x: x.start) + + # Trim durations to prevent overlap + for (a, b) in itertools.pairwise(t.notes): + if a.start == b.start: + raise Exception('overlapping note! ' + tick_time(a.start)) + if a.end > b.start: + a.end = b.start + + for i in range(0, len(t.notes)): + n = t.notes[i] + + # note on + note = n.pitch % 12 + octave = int(n.pitch / 12) - 1 + if octave < 0: + raise Exception('note is too low: ' + str(n)) + if n.end - n.start < 10: + raise Exception('runt note ' + tick_time(n.start)) + # 62500 is 2MHz divided by the 32x counter + cv = round(62500 / freq_table[note][octave]) + if cv > 2**10 - 1: + raise Exception('impossible counter value: ' + str(cv) + ' ' + tick_time(n.start)) + start_event = SnEvents(tick_convert(n.start), [0x80 | tt_val | (cv & 0xF), (cv & 0x3F0) >> 4]) + events.append(start_event) + if n.velocity != current_vel: + start_event.bytes.extend([0x90 | tt_val | 0xF - (n.velocity >> 3)]) + current_vel = n.velocity + + if i < len(t.notes) - 1 and n.end == t.notes[i+1].start: + # continuous notes; don't send an off command + continue + + # note off + events.append(SnEvents(tick_convert(n.end), [0x9F | tt_val])) + current_vel = 0 + return events + +def normalize(*il): + max_velocity = 0 + for i in il: + max_velocity = max(max_velocity, max(map(lambda n: n.velocity, i.notes))) + print('max velocity:', max_velocity) + scale = 100 / max_velocity + for i in il: + for n in i.notes: + n.velocity = min(int(n.velocity * scale), 127) + +def merge_tracks(*tl): + el = functools.reduce(lambda a, b: a + b, list(tl)) + el.sort(key=lambda x: x.t) + el = itertools.groupby(el, lambda x: x.t) + return el + +def convert_to_sn_stream(sns): + time_counter = 0 + buf = [] + for t, evs in sns: + if t > time_counter: + buf.extend(wait(t - time_counter)) + time_counter = t + cmd_bytes = functools.reduce(lambda a, b: a + b, map(lambda x: x.bytes, evs)) + if len(cmd_bytes) > 10: + raise Exception('suspiciously long command ' + str(t / 50) + 's: ' + str(cmd_bytes)) + buf.extend([len(cmd_bytes)]) + buf.extend(cmd_bytes); + return bytes(buf) + + +print(len(mobj.instruments), 'tracks') +for i in range(0, len(mobj.instruments)): + print('track', i, 'len', len(mobj.instruments[i].notes)) +instruments = [mobj.instruments[x] for x in [0, 1, 2]] +normalize(*instruments) +t1 = convert_track(instruments[0], 0) +print('t1', len(t1)) +t2 = convert_track(instruments[1], 1) +print('t2', len(t2)) +t3 = convert_track(instruments[2], 2) +print('t3', len(t3)) +el = merge_tracks(t1, t2, t3) +out = open(sys.argv[2], 'wb') +out.write(convert_to_sn_stream(el)) +out.close()
diff --git a/tools/pic_compress_8x8.py b/tools/pic_compress_8x8.py line changes: +308/-0 index 0000000..3ba4aee --- /dev/null +++ b/tools/pic_compress_8x8.py
@@ -0,0 +1,308 @@ +#!/usr/bin/env python3 +import sys, struct, math, argparse, copy, operator +from enum import Enum +from functools import reduce +from PIL import Image + +class Chunk: + def __init__(self, words): + if len(words) != 16: + raise Exception('chunk must be 16 words') + self.words = words + + def reduce_8(self): + reduced = [] + for y in range(0, 16, 2): + x = self.words[y] | self.words[y + 1] + x = (x & 0xAAAA) >> 1 | (x & 0x5555) + reduced.append(x) + return reduced + + def reduce_4(self): + reduced = [] + words = self.reduce_8() + for y in range(0, 8, 2): + x = words[y] | words[y + 1] + x = (x >> 2) | x + reduced.append(x) + return reduced + + def reduce_2(self): + a = self.words[0] | self.words[1] | self.words[2] | self.words[3] | self.words[4] | self.words[5] | self.words[6] | self.words[7] + b = self.words[8] | self.words[9] | self.words[10] | self.words[11] | self.words[12] | self.words[13] | self.words[14] | self.words[15] + return ((a & 0xFF00) == 0) | ((a & 0x00FF) == 0) << 1 | ((b & 0xFF00) == 0) << 2 | ((b & 0x00FF) == 0) << 3 + + def pixel_count(self): + return sum(map(int.bit_count, self.words)) + + def pixels_changed(self, other): + return sum(map(lambda v: (v[0] ^ v[1]).bit_count(), zip(self.words, other.words))) + + def similarity(self, other): + s = 0 + if self.reduce_8() == other.reduce_8(): + s += 32 + if self.reduce_4() == other.reduce_4(): + s += 16 + if self.reduce_2() == other.reduce_2(): + s += 8 + s -= abs(self.pixel_count() - other.pixel_count()) // 16 + s -= self.pixels_changed(other) // 16 + return s + + def merge(self, other): + for i in range(0, 16): + if i % 2 == 0: + self.words[i] = (self.words[i] & 0xAAAA) | (other.words[i] & 0x5555) + else: + self.words[i] = (self.words[i] & 0x5555) | (other.words[i] & 0xAAAA) + + def __eq__(self, other): + return self.words == other.words + + def __hash__(self): + return hash((self.words[0], self.words[1], self.words[2], self.words[3], self.words[4], self.words[5], self.words[6], self.words[7], self.words[8], self.words[9], self.words[10], self.words[11], self.words[12], self.words[13], self.words[14], self.words[15])) + + def __str__(self): + return "\n" + "\n".join(map(lambda x: f'{x:016b}', self.words)) + +known_chunks = { + 0xFFF: Chunk([0xFFFF] * 16), + 0xFFE: Chunk([0x0000] * 16), +} +known_chunks_rev = { + Chunk([0xFFFF] * 16): 0xFFF, + Chunk([0x0000] * 16): 0xFFE, +} + +class ImgType(Enum): + Normal = 1 + Mask = 2 + +class SubImage: + def __init__(self, im, type): + self.chunks = [] + self.indexes = [] + self.type = type + for y in range(0, im.height, 16): + for x in range(0, im.width, 16): + words = [] + for cy in range(0, 16): + w = 0 + for cx in range(0, 16): + p = im.getpixel((x + cx, y + cy)) + w >>= 1 + w |= (int(p != 0) << 15) + words.append(w) + c = Chunk(words) + try: + i = self.chunk_index(c) + except ValueError: + i = len(self.chunks) + self.chunks.append(c) + self.indexes.append(i) + + def chunk_at(self, i): + if i in known_chunks: + return known_chunks[i] + else: + return self.chunks[i] + + def chunk_index(self, c): + if c in known_chunks_rev: + return known_chunks_rev[c] + else: + return self.chunks.index(c) + + def histogram(self): + # Generate chunk histogram + histogram = {} + for i in self.indexes: + if i > 0xFF0: # known chunk + continue + if i in histogram: + histogram[i] += 1 + else: + histogram[i] = 1 + histogram = list(histogram.items()) + histogram.sort(key=lambda v: v[1]) + return histogram + + def dump_histogram(self): + histogram = self.histogram() + print('Chunk count') + for p in histogram: + c = p[0] + n = p[1] + print(f'{c} {n}') + + def replace_index(self, idx1, idx2): + for i in range(0, len(self.indexes)): + if self.indexes[i] == idx1: + self.indexes[i] = idx2 + + def disk_size(self): + return 3 + len(self.chunks) * 32 + 3 + math.ceil(len(self.indexes) / 2) * 3 + + def deduplicate(self, similarity_threshold): + histogram = self.histogram() + dead_chunks = [] + # Start with the least common patterns + for i in range(0, len(histogram) - 1): + idx1 = histogram[i][0] + # Then search backwards starting at the most common patterns + a = self.chunks[idx1] + similar_chunks = list(map( + lambda v: (v[0], v[1], a.similarity(self.chunks[v[0]])), + reversed(histogram[i + 1:]) + )) + similar_chunks.sort(key=lambda v: v[2], reverse=True) + if similar_chunks[0][2] < similarity_threshold: + # Bad match, move on + continue + idx2 = similar_chunks[0][0] + if args.merge: + self.chunks[idx2].merge(self.chunks[idx1]) + self.replace_index(idx1, idx2) + dead_chunks.append(idx1) + + # Reverse sort so we work from the back forward and don't have to adjust any + # earlier indexes in the dead chunk list + dead_chunks.sort(reverse=True) + + # Clean dead chunks and shift indexes + for idx in dead_chunks: + self.chunks = self.chunks[:idx] + self.chunks[idx+1:] + # Adjust every index above idx down one (except known chunks) + for i in range(0, len(self.indexes)): + if self.indexes[i] > 0xFF0: + continue + if self.indexes[i] == idx: + raise Exception('dead index found: ' + str(idx)) + if self.indexes[i] > idx: + self.indexes[i] -= 1 + + return len(dead_chunks) + + def into_image(self, width, height): + im = Image.new('1', (width, height)) + x = 0 + y = 0 + for idx in self.indexes: + c = self.chunk_at(idx) + for cy in range(0, 16): + w = c.words[cy] + for cx in range(0, 16): + im.putpixel((x + cx, y + cy), (w >> cx) & 1) + x += 16 + if x == im.width: + x = 0 + y += 16 + + return im + + def write(self, f): + # chunk list section, number of chunks + base_type = 8 * self.type.value + f.write(struct.pack("<BH", base_type + 0, len(self.chunks))) + for c in self.chunks: + for w in c.words: + f.write(struct.pack("<H", w)) + # index section, width and height + f.write(struct.pack("<B", base_type + 1)) + c = 0 + for i in range(0, len(self.indexes), 2): + b1 = self.indexes[i] & 0xFF + b2 = (self.indexes[i] & 0xF00) >> 8 + if i + 1 < len(self.indexes): + b2 |= (self.indexes[i+1] & 0xF00) >> 4 + b3 = self.indexes[i+1] & 0xFF + else: + b3 = 0 + f.write(struct.pack("<BBB", b1, b2, b3)) + c += 3 + print(c, "packed index bytes") + +class ChunkedImage: + def __init__(self, im): + if im.width % 16 != 0 or im.height % 16 != 0: + raise Exception('width and height must be multiples of 16') + self.width = im.width + self.height = im.height + self.subimages = [SubImage(im, ImgType.Normal)] + + def add_mask(self, im): + if im.width != self.width or im.height != self.height: + raise Exception('mask dimensions do not match image') + self.subimages.append(SubImage(im, ImgType.Mask)) + + def disk_size(self): + return 4 + sum(map(lambda i: i.disk_size(), self.subimages)) + + def write_to_file(self, filename): + f = open(filename, 'wb') + # magic + f.write(b"\xA7ci\x00") + chunk_width = int(self.width / 16) + chunk_height = int(self.height / 16) + f.write(struct.pack('<BB', chunk_width, chunk_height)) + for i in self.subimages: + i.write(f) + f.close() + + def into_image(self): + base = self.subimages[0].into_image(self.width, self.height) + if len(self.subimages) > 1: + base = base.convert('RGBA') + mask = self.subimages[1].into_image(self.width, self.height) + transparent = Image.new('RGBA', (self.width, self.height), color='#FF000000') + base = Image.composite(base, transparent, mask) + return base + +def parse_args(): + parser = argparse.ArgumentParser(prog='chunk-compress') + parser.add_argument('input_file') + parser.add_argument('output_file') + parser.add_argument('-s', '--similarity', type=int, default=25, help='similarity rating') + parser.add_argument('-t', '--target-size', type=int, help='decrease similarity incrementally to hit a target size') + parser.add_argument('-m', '--merge', action='store_true', help='merge chunks instead of replacing them') + parser.add_argument('--no-dedup', action='store_true', help='do not run deduplication step (identical and well-known chunks will still be deduplicated)') + parser.add_argument('--mask', help='Add a mask image') + parser.add_argument('--png', help='also output a PNG proofing image') + + return parser.parse_args() + +args = parse_args() + +im = Image.open(args.input_file) +ci = ChunkedImage(im) +if args.mask: + cim = Image.open(args.mask) + ci.add_mask(cim) + +original_chunk_len = len(ci.subimages[0].chunks) +print(f'{original_chunk_len} distinct chunks') + +if not args.no_dedup: + if args.target_size: + similarity = args.similarity + while True: + print('attempting deduplication with similarity', similarity) + ci_temp = copy.deepcopy(ci) + dead_chunk_len = ci_temp.subimages[0].deduplicate(similarity) + if ci_temp.disk_size() <= args.target_size: + ci = ci_temp + break + similarity -= 1 + else: + print('deduplicating chunks with similarity', args.similarity) + dead_chunk_len = ci.subimages[0].deduplicate(args.similarity) + print('deduplicated', dead_chunk_len, 'chunks', f'({int(dead_chunk_len / original_chunk_len * 100):d}% reduction)') + +print('size', ci.disk_size()) + +if args.png: + im = ci.into_image() + im.save(args.png) + +ci.write_to_file(args.output_file)
diff --git a/util.pas b/util.pas line changes: +194/-0 index 0000000..2dc7d69 --- /dev/null +++ b/util.pas
@@ -0,0 +1,194 @@ +unit Util; +interface + +type PWord = ^Word; + +procedure Die(s: string); +function LfsrShift: Word; +function CompareArray(const a, b: array of Byte; const len: Word): boolean; +procedure Delay50(const frames: Word); +procedure HexStr(n: Longint; var s: String); +procedure DebugOut(const s: String); +procedure StopMusic(in_interrupt: boolean); + +var counterVal: Longint; + musicPlaying: boolean; + musicStartPtr: PChar; + musicEndPtr: PChar; + musicDataPtr: PChar; + musicDelayCount: Byte; + +implementation + +uses Apricot, Dos; + +type ScreenFont = array[0..4095] of Word; + +var font0: ScreenFont absolute $0080:0000; + +var ExitSave, OldIntFF: Pointer; +var lfsrData: Word; +var savedFont: ^ScreenFont; +var debugFile: Text; + +procedure Die(s: string); +begin + ScreenMode(ScreenModeText); + Writeln('ERR: ', s); + Halt(1); +end; + +function LfsrShift: Word; +begin + lfsrData := ( + (((lfsrData SHR 15) XOR (lfsrData SHR 11) XOR + (lfsrData SHR 8) XOR (lfsrData SHR 5)) AND 1) OR + (lfsrData SHL 1) + ); + LfsrShift := lfsrData; +end; + +function CompareArray(const a, b: array of Byte; const len: Word): boolean; +var i: Word; +begin + for i := 0 to len - 1 do begin + if a[i] <> b[i] then begin + CompareArray := false; + Exit; + end; + end; + CompareArray := true; +end; + +procedure Delay50(const frames: Word); +var t1: Longint; +begin + t1 := counterVal + frames; + repeat until counterVal >= t1; +end; + +procedure HexStr(n: Longint; var s: String); +var i: Integer; + d: Byte; +begin + s[0] := #8; + for i := 8 downto 1 do begin + d := n AND $F; + if d > 9 then + s[i] := Char($37 + d) + else + s[i] := Char($30 + d); + n := n SHR 4; + end; +end; + +procedure DebugOut(const s: String); +var f: Text; +begin + Writeln(debugFile, s); +end; + +procedure RestoreSystem; far; +begin + ExitProc := ExitSave; + if CurrentScreenMode = ScreenModeGfx then + ScreenMode(ScreenModeText); + + { stop music } + StopMusic(false); + + asm cli end; + SetIntVec($FF, OldIntFF); + asm sti end; + + { restore the original screen font } + Move(savedFont^, font0, SizeOf(ScreenFont)); + { no point in deallocating since we're exiting! :P } + + Close(debugFile); + + Writeln('Thank you for playing!'); +end; + +procedure WasteALittleBitOfTime; +var i: Integer; +begin + for i := 0 to 10 do; +end; + +procedure StopMusic(in_interrupt: boolean); +begin + musicPlaying := false; + if not in_interrupt then + Delay50(1); + { mute all channels } + port[$50] := $9F; + WasteALittleBitOfTime; + port[$50] := $BF; + WasteALittleBitOfTime; + port[$50] := $DF; + WasteALittleBitOfTime; + port[$50] := $FF; +end; + +procedure ProcessMusic; +var b: Byte; + i: Word; +begin + if musicDelayCount > 0 then begin + Dec(musicDelayCount); + Exit; + end; + + repeat + b := Byte(musicDataPtr^); + if (b AND $80) = 0 then begin + for i := 1 to b do begin + Inc(musicDataPtr); + port[$50] := Byte(musicDataPtr^); + end; + end + else + if b = $FF then begin + StopMusic(true); + Break; + end + else + musicDelayCount := b AND $7F; + Inc(musicDataPtr); + if musicDataPtr = musicEndPtr then + musicDataPtr := musicStartPtr; + until musicDelayCount > 0; +end; + +procedure TimerHandler(Flags, CS, IP, AX, BX, CX, DX, SI, DI, DS, ES, BP: Word); +interrupt; +begin + Inc(counterVal); + if musicPlaying then + ProcessMusic; +end; + +begin + { set up debug output } + Assign(debugFile, 'DEBUG.TXT'); + Rewrite(debugFile); + + { restore the screen if we exit } + ExitSave := ExitProc; + ExitProc := @RestoreSystem; + + { set up our timing counter } + counterVal := 0; + asm cli end; + GetIntVec($FF, OldIntFF); + SetIntVec($FF, @TimerHandler); + asm sti end; + + { seed LFSR } + lfsrData := 19; + + { save the original screen font } + New(savedFont); + Move(font0, savedFont^, SizeOf(ScreenFont)); +end.
diff --git a/where.pas b/where.pas line changes: +329/-0 index 0000000..7b09fed --- /dev/null +++ b/where.pas
@@ -0,0 +1,329 @@ +program Where; +uses Apricot, GfxManager, CBI, GfxText, Music, Util, GameData; + +var i: Word; + bg, img1, img2, img3: ChunkedBitmapImage; + tmp: String; + +procedure FadeOut; +var a, i, j: Word; + p: PWord; +begin + for i := 0 to 14 do begin + a := NOT (1 SHL i); + p := @charmem; + for j := 0 to 2048 do begin + p^ := p^ AND a; + Inc(p); + a := (a SHL 1) OR 1; + if a = $FFFF then + a := $FFFE; + end; + end; + for i := 0 to 1249 do + charTable[i] := CHAR_BLACK; +end; + +{ this will also destroy any font characters being displayed } +procedure WindowBlindReset; +var i, j, k: Word; + pattern: Word; + p, q: ^Word; +begin + pattern := $1111; + for i := 0 to 2 do begin + p := @chartable; + for j := 0 to 1250 do begin + q := Ptr(0, p^ SHL 5); + for k := 0 to 31 do begin + q^ := q^ AND (NOT pattern); + Inc(q); + end; + Inc(p); + end; + pattern := pattern OR (pattern SHL 1); + Delay50(1); + end; + p := @charTable; + for i := 0 to 1250 do begin + p^ := CHAR_BLACK; + Inc(p); + end; +end; + +procedure BlankReset; +var i: Word; +begin + for i := 0 to 1249 do + charTable[i] := CHAR_BLACK; +end; + +procedure CheckerboardReset; +var i: Word; +begin + for i := 0 to 2500 do + charTable[LfsrShift mod 1250] := CHAR_BLACK; + for i := 0 to 1249 do + charTable[i] := CHAR_BLACK; +end; + +function StdTextBox(const s: String): Char; +begin + TextBox(4, 19, 46, 24, s); + StdTextBox := ReadKey; +end; + +procedure FlyAway(c: City); +begin + gs.currentCity := c; + DisposeCBI(bg); + CheckerboardReset; + StopMusic(false); + gfxman.Reset; + LoadCBI('airplane.cbi', img1); + SfxTakeoff; + DisplayCBI(img1, 7, 3); + Delay50(90); + DisposeCBI(img1); + BlankReset; + gfxman.Reset; + LoadCBI(cityBackgrounds[c] + '.cbi', bg); + DisplayCBI(bg, 0, 0); + StopMusic(false); + LoadMusic(citySongs[c] + '.sn'); + musicPlaying := true; +end; + +procedure OpeningScene; +var st: Word; +begin + CheckerboardReset; + gfxman.Init; + LoadCBI('desk.cbi', bg); + DisplayCBI(bg, 0, 0); + DebugOut('Randomizing game'); + RandomizeGame; + StdTextBox('Aaaah, time to sit down and play one of my favorite games, ' + + gameName[gs.game] + '.'); + TextBox(4, 19, 46, 24, 'Wait... where is it? I''m sure I left it over here.'); + st := gfxman.SaveTop; + LoadCBI('owl1.cbi', img1); + ReadKey; + DisplayCBI(img1, 6, 2); + DisposeCBI(img1); + gfxman.RestoreTop(st); + StdTextBox('HOOOOT!'); + StdTextBox('Oh no, not you again! You took my disk, didn''t you! You always take ' + + 'my games and fly all over the world!'); + StdTextBox('And then I have to fly after you and solve a series of geographical ' + + 'knowledge puzzles to find you!'); + StdTextBox('HOOOOT!'); + DisplayCBI(bg, 0, 0); + StdTextBox('Ah, he left a note... "See you in ' + cityName[gs.currentCity] + ', sucker!"'); + StdTextBox('That is one very rude bird.'); +end; + +procedure CaughtHim; +begin + StdTextBox('Hey you! Wait right there!'); + gs.progress := gs.progress + 1; +end; + +procedure AskAround; +var savedScreen: PGfxTableArray; + st: Word; + nstr: String[2]; + clue: PClueStr; +begin + if EndGame then begin + CaughtHim; + Exit; + end; + savedScreen := SaveScreen; + st := gfxman.SaveTop; + Str(gs.path[gs.progress].person, nstr); + LoadCBI('person' + nstr + '.cbi', img1); + Box(4, 4, 20, 15); + DisplayCBI(img1, 5, 5); + DisposeCBI(img1); + gfxman.RestoreTop(st); + clue := GetTalkClue; + StdTextBox(clue^); + RestoreScreen(savedScreen); + gs.hours := gs.hours + 1; +end; + +procedure Research; +var clue: PClueStr; +begin + if EndGame then begin + CaughtHim; + Exit; + end; + clue := GetResearchClue; + if clue <> nil then + StdTextBox('You research the whereabouts of the owl. ' + clue^) + else + StdTextBox('You try to do some research but you don''t find anything.'); + gs.hours := gs.hours + 2; +end; + +Procedure Look; +var clue: PClueStr; +begin + if EndGame then begin + CaughtHim; + Exit; + end; + DisplayCBI(bg, 0, 0); + ReadKey; + clue := GetLookClue; + if clue <> nil then + StdTextBox('You look around for a bit and find ' + clue^ + '.'); + gs.hours := gs.hours + 1; +end; + +procedure TravelMenu; +var i: Integer; + c: City; + k: Char; + savedScreen: PGfxTableArray; +begin + savedScreen := SaveScreen; + TextBox(1, 7, 22, 22, 'Select Destination'); + for c := Low(City) to High(City) do begin + i := Ord(c); + WriteLine(2, 10 + i, Char($30 + i) + ') ' + cityName[c], 20); + end; + WriteLine(2, 21, 'X) Exit', 20); + k := ReadKey; + if (k >= #$30) AND (k < #$3A) then begin + i := Integer(k); + c := City(i - $30); + Dispose(savedScreen); + FlyAway(c); + Exit; + end; + RestoreScreen(savedScreen); + Dispose(savedScreen); +end; + +procedure Dream; +var c: City; +begin + StdTextBox('ZZZZZZzzzzzzz.....'); + if (Random(20) = 0) AND (gs.progress < gs.totalCities - 1) then begin + c := gs.path[gs.progress + 1].city; + StdTextBox('A terrible bird haunts your dreams. ' + + 'Flying. Clawing. Hooting. But you fight him off, and as ' + + 'he flies away, you look around.'); + StdTextBox('"This is ' + cityName[c] + + '! That ' + #$1B#$1C#$1D#$1E + ' owl is in ' + cityName[c] + '!"'); + end; + gs.hours := gs.hours + 8; +end; + +procedure AskQuit; +var k: Char; +begin + k := StdTextBox('Are you sure you want to let that bird get away? y/N'); + if (k = 'y') or (k = 'Y') then + Halt(0); +end; + +function GameTime: String; +var d, h: Word; + s: String[2]; +begin + d := (gs.hours div 24) mod 7; + h := gs.hours mod 24; + Str(h:2, s); + if h < 10 then + s[1] := '0'; + GameTime := days[d] + ' ' + s + ':00'; +end; + +procedure CityMenu; +var i: Integer; + k: Char; + s: String[50]; + time: String[9]; +label rekey; +begin + FillChar(s, SizeOf(s), ' '); + time := GameTime; + Move(time[1], s[42], 9); + s[0] := #50; + WriteLine(0, 0, s, 50); + TextRegion(0, 0, 40, 1, cityDetail[gs.currentCity] + ', ' + cityName[gs.currentcity] + ', ' + + cityCountry[gs.currentCity]); + TextBox(4, 19, 46, 24, 'What would you like to do?' + #13#13 + + '[A]sk Around [R]esearch [L]ook' + #13 + + '[T]ravel [S]leep [Q]uit'); + rekey: + k := ReadKey; + case k of + 'a', 'A': AskAround; + 'r', 'R': Research; + 'l', 'L': Look; + 't', 'T': TravelMenu; + 's', 'S': Dream; + 'q', 'Q': AskQuit; + '!': begin + DisplayCBI(bg, 0, 0); + DumpGameState; + ReadKey; + end; + else + Goto rekey; + end; +end; + +procedure Ending; +begin + StopMusic(false); + LoadMusic('fly2moon.sn'); + musicPlaying := true; + DisposeCBI(bg); + CheckerboardReset; + gfxman.Reset; + LoadCBI('ending.cbi', bg); + DisplayCBI(bg, 0, 0); + StdTextBox('The owl seems to smile as he hands you a note with his claw.'); + StdTextBox('"Ha ha! You caught me. I didn''t really want to play your copy of ' + + gameName[gs.game] + '. I don''t even have opposable thumbs!'); + StdTextBox('But I hope ' + + 'you learned a bit about world geography and history along the way. ' + + 'Well anyway, here you go."'); + StdTextBox('The owl drops your floppy disk and flies off.'); + StdTextBox('He... didn''t even want to play it? ' + + 'I''ve charged thousands of dollars on hotels and flights!'); + StdTextBox('If only I''d made a backup copy...'); + StdTextBox('THE END' + #13#13#13 + 'Final time: ' + GameTime); +end; + +begin + BlankReset; + ScreenMode(ScreenModeGfx); + LoadFont('font.bin'); + WriteLine(0, 24, 'Loading...', 50); + LoadCBI('title.cbi', bg); + DisplayCBI(bg, 0, 0); + LoadMusic('quickie.sn'); + musicPlaying := true; + WriteLine(0, 24, 'Press any key...', 50); + ReadKey; + DisposeCBI(bg); + + OpeningScene; + FlyAway(gs.currentCity); + + repeat + CityMenu; + ProcessGameLogic; + until gs.progress = gs.totalCities; + + Ending; + + ScreenMode(ScreenModeText); +end.