Tofugu Pronunciation Examples

Added some examples showing off the tool using the pitch patterns in the
Tofugu Pronunciation article.
This commit is contained in:
Luke 2018-05-23 13:38:04 -07:00
parent 06fac714f9
commit 702e95b02c
53 changed files with 285 additions and 1 deletions

View file

@ -57,4 +57,8 @@ done
Send me your bugs (gently).
-Luke ([@siriusfox](https://twitter.com/siriusfox))
-Luke ([@siriusfox](https://twitter.com/siriusfox))
## Tofugu Examples
I did a small extension where I took the material from the (Tofugu Pronunciation Article)[https://www.tofugu.com/japanese/japanese-pronunciation/] and wrote a simple parser to generate graphics showing the pattern rather than using their LH letter convention to show pitch. The examples are available in tofugu_examples and tofugu_files. [2018-05-23]

30
parse_tofugu.py Executable file
View file

@ -0,0 +1,30 @@
#!/usr/bin/env python3
import punctCode
# Given a file name, loop line by line and convert the string of a Key (filename), phonetic word,
# plus the pitch accent code to a big list.
def parseToneFile(fn):
# TODO: Handle empty/invalid lines gracefully
print("Parsing file: \"%s\"" % fn)
dat = [];
for line in open(fn,'r'):
[key,w,n]=line.split(':')
print(" => importing \"%s\"" % key)
pc = punctCode.parseToneString(key,w,n.strip())
dat.append(pc)
return dat;
# Parse the list, pucntList is now a list of objects containing grouped mora, and the individual
# mora's high/low filled/unfilled graph symbol.
punctList = parseToneFile('tofugu_files/example_codes_tofugu.txt')
print("Saving svgs...")
# For each one, dump an SVG
for pc in punctList:
# using default sizing. Units are in pixels.
filename = ('tofugu_examples/%s.svg' % (pc.key));
print(" => saving \"%s\" as \"%s\"" % (pc.key, filename))
pc.toSVG(filename, style='font-weight:bold;',\
padding_lr=30, padding_tb=15)

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="110" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 868 B

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="160" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-4.949747468305833" y2="-45.05025253169417" /><circle cx="100" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="0" y2="0" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="210" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-4.949747468305833" y2="-45.05025253169417" /><circle cx="100" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="0" y2="0" /><circle cx="150" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="143" x2="107" y1="0" y2="0" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="260" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-4.949747468305833" y2="-45.05025253169417" /><circle cx="100" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="0" y2="0" /><circle cx="150" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="143" x2="107" y1="0" y2="0" /><circle cx="200" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="193" x2="157" y1="0" y2="0" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="200" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="310" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-4.949747468305833" y2="-45.05025253169417" /><circle cx="100" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="0" y2="0" /><circle cx="150" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="143" x2="107" y1="0" y2="0" /><circle cx="200" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="193" x2="157" y1="0" y2="0" /><circle cx="250" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="243" x2="207" y1="0" y2="0" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47">しゃ</text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="200" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="250" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="360" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-4.949747468305833" y2="-45.05025253169417" /><circle cx="100" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="0" y2="0" /><circle cx="150" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="143" x2="107" y1="0" y2="0" /><circle cx="200" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="193" x2="157" y1="0" y2="0" /><circle cx="250" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="243" x2="207" y1="0" y2="0" /><circle cx="300" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="293" x2="257" y1="0" y2="0" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="200" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="250" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="300" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 2 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="410" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-4.949747468305833" y2="-45.05025253169417" /><circle cx="100" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="0" y2="0" /><circle cx="150" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="143" x2="107" y1="0" y2="0" /><circle cx="200" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="193" x2="157" y1="0" y2="0" /><circle cx="250" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="243" x2="207" y1="0" y2="0" /><circle cx="300" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="293" x2="257" y1="0" y2="0" /><circle cx="350" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="343" x2="307" y1="0" y2="0" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="200" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="250" y="47">しゅ</text><text id="moras" style="text-align:center;font-weight:bold;" x="300" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="350" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="160" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="95.05025253169417" x2="54.94974746830583" y1="-4.949747468305833" y2="-45.05025253169417" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="210" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="95.05025253169417" x2="54.94974746830583" y1="-4.949747468305833" y2="-45.05025253169417" /><circle cx="150" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="143" x2="107" y1="0" y2="0" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="260" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="95.05025253169417" x2="54.94974746830583" y1="-4.949747468305833" y2="-45.05025253169417" /><circle cx="150" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="143" x2="107" y1="0" y2="0" /><circle cx="200" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="193" x2="157" y1="0" y2="0" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="200" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="310" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="95.05025253169417" x2="54.94974746830583" y1="-4.949747468305833" y2="-45.05025253169417" /><circle cx="150" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="143" x2="107" y1="0" y2="0" /><circle cx="200" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="193" x2="157" y1="0" y2="0" /><circle cx="250" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="243" x2="207" y1="0" y2="0" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47">きゅ</text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="200" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="250" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="160" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="-50" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="-50" y2="-50" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="360" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="95.05025253169417" x2="54.94974746830583" y1="-4.949747468305833" y2="-45.05025253169417" /><circle cx="150" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="143" x2="107" y1="0" y2="0" /><circle cx="200" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="193" x2="157" y1="0" y2="0" /><circle cx="250" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="243" x2="207" y1="0" y2="0" /><circle cx="300" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="293" x2="257" y1="0" y2="0" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="200" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="250" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="300" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="210" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="-50" y2="-50" /><circle cx="150" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="145.05025253169416" x2="104.94974746830583" y1="-4.949747468305833" y2="-45.05025253169417" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="260" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="-50" y2="-50" /><circle cx="150" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="145.05025253169416" x2="104.94974746830583" y1="-4.949747468305833" y2="-45.05025253169417" /><circle cx="200" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="193" x2="157" y1="0" y2="0" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="200" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="310" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="-50" y2="-50" /><circle cx="150" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="145.05025253169416" x2="104.94974746830583" y1="-4.949747468305833" y2="-45.05025253169417" /><circle cx="200" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="193" x2="157" y1="0" y2="0" /><circle cx="250" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="243" x2="207" y1="0" y2="0" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="200" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="250" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="360" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="-50" y2="-50" /><circle cx="150" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="145.05025253169416" x2="104.94974746830583" y1="-4.949747468305833" y2="-45.05025253169417" /><circle cx="200" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="193" x2="157" y1="0" y2="0" /><circle cx="250" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="243" x2="207" y1="0" y2="0" /><circle cx="300" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="293" x2="257" y1="0" y2="0" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="200" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="250" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="300" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="460" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="-50" y2="-50" /><circle cx="150" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="145.05025253169416" x2="104.94974746830583" y1="-4.949747468305833" y2="-45.05025253169417" /><circle cx="200" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="193" x2="157" y1="0" y2="0" /><circle cx="250" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="243" x2="207" y1="0" y2="0" /><circle cx="300" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="293" x2="257" y1="0" y2="0" /><circle cx="350" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="343" x2="307" y1="0" y2="0" /><circle cx="400" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="393" x2="357" y1="0" y2="0" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="200" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="250" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="300" y="47">りょ</text><text id="moras" style="text-align:center;font-weight:bold;" x="350" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="400" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="260" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="-50" y2="-50" /><circle cx="150" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="143" x2="107" y1="-50" y2="-50" /><circle cx="200" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="195.05025253169416" x2="154.94974746830584" y1="-4.949747468305833" y2="-45.05025253169417" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="200" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="310" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="-50" y2="-50" /><circle cx="150" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="143" x2="107" y1="-50" y2="-50" /><circle cx="200" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="195.05025253169416" x2="154.94974746830584" y1="-4.949747468305833" y2="-45.05025253169417" /><circle cx="250" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="243" x2="207" y1="0" y2="0" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="200" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="250" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="360" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="-50" y2="-50" /><circle cx="150" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="143" x2="107" y1="-50" y2="-50" /><circle cx="200" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="195.05025253169416" x2="154.94974746830584" y1="-4.949747468305833" y2="-45.05025253169417" /><circle cx="250" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="243" x2="207" y1="0" y2="0" /><circle cx="300" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="293" x2="257" y1="0" y2="0" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="200" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="250" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="300" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="410" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="-50" y2="-50" /><circle cx="150" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="143" x2="107" y1="-50" y2="-50" /><circle cx="200" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="195.05025253169416" x2="154.94974746830584" y1="-4.949747468305833" y2="-45.05025253169417" /><circle cx="250" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="243" x2="207" y1="0" y2="0" /><circle cx="300" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="293" x2="257" y1="0" y2="0" /><circle cx="350" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="343" x2="307" y1="0" y2="0" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="200" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="250" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="300" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="350" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="210" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="-50" y2="-50" /><circle cx="150" cy="-50" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="143" x2="107" y1="-50" y2="-50" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47">しゃ</text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="310" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="-50" y2="-50" /><circle cx="150" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="143" x2="107" y1="-50" y2="-50" /><circle cx="200" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="193" x2="157" y1="-50" y2="-50" /><circle cx="250" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="245.05025253169416" x2="204.94974746830584" y1="-4.949747468305833" y2="-45.05025253169417" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="200" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="250" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="360" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="-50" y2="-50" /><circle cx="150" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="143" x2="107" y1="-50" y2="-50" /><circle cx="200" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="193" x2="157" y1="-50" y2="-50" /><circle cx="250" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="245.05025253169416" x2="204.94974746830584" y1="-4.949747468305833" y2="-45.05025253169417" /><circle cx="300" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="293" x2="257" y1="0" y2="0" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="200" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="250" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="300" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="410" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="-50" y2="-50" /><circle cx="150" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="143" x2="107" y1="-50" y2="-50" /><circle cx="200" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="193" x2="157" y1="-50" y2="-50" /><circle cx="250" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="245.05025253169416" x2="204.94974746830584" y1="-4.949747468305833" y2="-45.05025253169417" /><circle cx="300" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="293" x2="257" y1="0" y2="0" /><circle cx="350" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="343" x2="307" y1="0" y2="0" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="200" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="250" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="300" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="350" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="460" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="-50" y2="-50" /><circle cx="150" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="143" x2="107" y1="-50" y2="-50" /><circle cx="200" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="193" x2="157" y1="-50" y2="-50" /><circle cx="250" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="245.05025253169416" x2="204.94974746830584" y1="-4.949747468305833" y2="-45.05025253169417" /><circle cx="300" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="293" x2="257" y1="0" y2="0" /><circle cx="350" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="343" x2="307" y1="0" y2="0" /><circle cx="400" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="393" x2="357" y1="0" y2="0" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="200" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="250" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="300" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="350" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="400" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="360" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="-50" y2="-50" /><circle cx="150" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="143" x2="107" y1="-50" y2="-50" /><circle cx="200" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="193" x2="157" y1="-50" y2="-50" /><circle cx="250" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="243" x2="207" y1="-50" y2="-50" /><circle cx="300" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="295.0502525316942" x2="254.94974746830584" y1="-4.949747468305833" y2="-45.05025253169417" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47">じゅ</text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="200" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="250" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="300" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="360" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="-50" y2="-50" /><circle cx="150" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="143" x2="107" y1="-50" y2="-50" /><circle cx="200" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="193" x2="157" y1="-50" y2="-50" /><circle cx="250" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="243" x2="207" y1="-50" y2="-50" /><circle cx="300" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="295.0502525316942" x2="254.94974746830584" y1="-4.949747468305833" y2="-45.05025253169417" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="200" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="250" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="300" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="460" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="-50" y2="-50" /><circle cx="150" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="143" x2="107" y1="-50" y2="-50" /><circle cx="200" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="193" x2="157" y1="-50" y2="-50" /><circle cx="250" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="243" x2="207" y1="-50" y2="-50" /><circle cx="300" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="295.0502525316942" x2="254.94974746830584" y1="-4.949747468305833" y2="-45.05025253169417" /><circle cx="350" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="343" x2="307" y1="0" y2="0" /><circle cx="400" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="393" x2="357" y1="0" y2="0" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="200" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="250" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="300" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="350" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="400" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="460" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="-50" y2="-50" /><circle cx="150" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="143" x2="107" y1="-50" y2="-50" /><circle cx="200" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="193" x2="157" y1="-50" y2="-50" /><circle cx="250" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="243" x2="207" y1="-50" y2="-50" /><circle cx="300" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="293" x2="257" y1="-50" y2="-50" /><circle cx="350" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="345.0502525316942" x2="304.9497474683058" y1="-4.949747468305833" y2="-45.05025253169417" /><circle cx="400" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="393" x2="357" y1="0" y2="0" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="200" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="250" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="300" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="350" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="400" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="560" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="-50" y2="-50" /><circle cx="150" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="143" x2="107" y1="-50" y2="-50" /><circle cx="200" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="193" x2="157" y1="-50" y2="-50" /><circle cx="250" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="243" x2="207" y1="-50" y2="-50" /><circle cx="300" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="293" x2="257" y1="-50" y2="-50" /><circle cx="350" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="343" x2="307" y1="-50" y2="-50" /><circle cx="400" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="393" x2="357" y1="-50" y2="-50" /><circle cx="450" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="443" x2="407" y1="-50" y2="-50" /><circle cx="500" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="495.0502525316942" x2="454.9497474683058" y1="-4.949747468305833" y2="-45.05025253169417" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="200" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="250" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="300" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="350" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="400" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="450" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="500" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="260" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="-50" y2="-50" /><circle cx="150" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="143" x2="107" y1="-50" y2="-50" /><circle cx="200" cy="-50" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="193" x2="157" y1="-50" y2="-50" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="200" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="310" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="-50" y2="-50" /><circle cx="150" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="143" x2="107" y1="-50" y2="-50" /><circle cx="200" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="193" x2="157" y1="-50" y2="-50" /><circle cx="250" cy="-50" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="243" x2="207" y1="-50" y2="-50" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47">ちゅ</text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="200" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="250" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="360" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="-50" y2="-50" /><circle cx="150" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="143" x2="107" y1="-50" y2="-50" /><circle cx="200" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="193" x2="157" y1="-50" y2="-50" /><circle cx="250" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="243" x2="207" y1="-50" y2="-50" /><circle cx="300" cy="-50" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="293" x2="257" y1="-50" y2="-50" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="200" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="250" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="300" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="410" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="-50" y2="-50" /><circle cx="150" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="143" x2="107" y1="-50" y2="-50" /><circle cx="200" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="193" x2="157" y1="-50" y2="-50" /><circle cx="250" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="243" x2="207" y1="-50" y2="-50" /><circle cx="300" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="293" x2="257" y1="-50" y2="-50" /><circle cx="350" cy="-50" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="343" x2="307" y1="-50" y2="-50" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47">じゅ</text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="200" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="250" y="47">じゅ</text><text id="moras" style="text-align:center;font-weight:bold;" x="300" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="350" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="460" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="-50" y2="-50" /><circle cx="150" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="143" x2="107" y1="-50" y2="-50" /><circle cx="200" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="193" x2="157" y1="-50" y2="-50" /><circle cx="250" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="243" x2="207" y1="-50" y2="-50" /><circle cx="300" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="293" x2="257" y1="-50" y2="-50" /><circle cx="350" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="343" x2="307" y1="-50" y2="-50" /><circle cx="400" cy="-50" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="393" x2="357" y1="-50" y2="-50" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="150" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="200" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="250" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="300" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="350" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="400" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="110" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-4.949747468305833" y2="-45.05025253169417" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 868 B

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="160" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-4.949747468305833" y2="-45.05025253169417" /><circle cx="100" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="0" y2="0" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="160" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="95.05025253169417" x2="54.94974746830583" y1="-4.949747468305833" y2="-45.05025253169417" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="160" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-4.949747468305833" y2="-45.05025253169417" /><circle cx="100" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="0" y2="0" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="160" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="95.05025253169417" x2="54.94974746830583" y1="-4.949747468305833" y2="-45.05025253169417" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="160" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="95.05025253169417" x2="54.94974746830583" y1="-4.949747468305833" y2="-45.05025253169417" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="160" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="-50" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="-50" y2="-50" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="160" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-4.949747468305833" y2="-45.05025253169417" /><circle cx="100" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="0" y2="0" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="160" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-45.05025253169417" y2="-4.949747468305833" /><circle cx="100" cy="-50" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="-50" y2="-50" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" ?>
<svg baseProfile="full" height="127" version="1.1" width="160" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><g id="master_group" transform="translate(30,65)"><g id="graph"><circle cx="0" cy="-50" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><circle cx="50" cy="0" fill="#000000" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="45.05025253169417" x2="4.949747468305833" y1="-4.949747468305833" y2="-45.05025253169417" /><circle cx="100" cy="0" fill="none" r="7" stroke="#000000" stroke-width="3" /><line stroke="#000000" stroke-width="3" x1="93" x2="57" y1="0" y2="0" /></g><g fill="#000000" font-family="Noto Sans" font-size="27" id="moras" text-anchor="middle"><text id="moras" style="text-align:center;font-weight:bold;" x="0" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="50" y="47"></text><text id="moras" style="text-align:center;font-weight:bold;" x="100" y="47"></text></g></g></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,71 @@
#!/bin/bash
# First argument is input file
if [[ $# -ne 1 ]]; then
echo """\
$0:
A tool to convert copy/paste source files from the Tofugu site's pitch
tables to more pretty graphics for humans.
Incorrect usage:
$0 <input_filename.list>
Format example:
LH 名 な
LHH 水 みず
LHHH 会社 かいしゃ
LHHHH 大学 だいがく
LHHHHH 中国語 ちゅうごくご
<pitch>\\t<unique name>\\t<phonetics>
Input is proccessed with bash's \`read\` so spacing is not critical."""
exit
fi
SRC="$1"
MODIFY_SET=(ゃ ゅ ょ ぁ ぃ ぅ ぇ ぉ) # these characters don't count towards a mora length
MARU='○'
IND=0
PFX="1-"
while read INPUT; do
IND=$(($IND+1))
#echo "$INPUT"
ARGS=($INPUT)
CODE=${ARGS[0]}
NAME=${ARGS[1]}
KANA=${ARGS[2]}
# Compute core word length
KANA_TMP=$KANA
for MiniMora in ${MODIFY_SET[@]}; do
KANA_TMP=$(sed "s/$MiniMora//g" <<< $KANA_TMP)
done
MORA_LENGTH=${#KANA_TMP}
# first find the length of the word, count the LH stuff
if [[ ${CODE:0:1} == 'H' ]]; then # 頭高
DOWN_STEP=1
else
CODE_TMP="${CODE:1}"
CODE_TMP=${CODE_TMP%H*}
DOWN_STEP=$((${#CODE_TMP}+2)) # downstep location
if [[ $DOWN_STEP -gt $MORA_LENGTH ]]; then
DOWN_STEP=0
fi
fi
# Lad when tofugu assumes more mora in their code (or a particle)
DELTA=$(($MORA_LENGTH-${#CODE}))
if [[ $DELTA -eq -1 ]]; then
KANA="$KANA$MARU"
elif [[ $DELTA -ne 0 ]]; then
echo "WARNING: Length error in line $IND: '$INPUT'" >&2
fi
#echo $DOWN_STEP/$MORA_LENGTH
echo ${PFX}${IND}-$NAME:$KANA:$DOWN_STEP/$MORA_LENGTH
done < "$SRC"

View file

@ -0,0 +1,38 @@
1-1-名:な○:0/1
1-2-水:みず○:0/2
1-3-会社:かいしゃ○:0/3
1-4-大学:だいがく○:0/4
1-5-中国語:ちゅうごくご○:0/5
1-6-見物人:けんぶつにん○:0/6
1-7-五十音順:ごじゅうおんじゅん○:0/7
1-8-いい加減にしろ:いいかげんにしろ○:0/8
1-9-木:き○:1/1
1-10-秋:あき○:1/2
1-11-電気:でんき○:1/3
1-12-文学:ぶんがく○:1/4
1-13-シャーベット:しゃーべっと○:1/5
1-14-ケンモホロロ:けんもほろろ○:1/6
1-15-呉越同舟:ごえつどうしゅう○:1/7
1-16-花:はな○:2/2
1-17-お菓子:おかし○:2/3
1-18-雪国:ゆきぐに○:2/4
1-19-普及率:ふきゅうりつ○:2/5
1-20-お巡りさん:おまわりさん○:2/6
1-21-男:おとこ○:3/3
1-22-歳時記:さいじき○:3/4
1-23-山登り:やまのぼり○:3/5
1-24-金婚式:きんこんしき○:3/6
1-25-副大統領:ふくだいとうりょう○:3/8
1-26-弟:おとうと○:4/4
1-27-小型バス:こがたばす○:4/5
1-28-国語辞典:こくごじてん○:4/6
1-29-私立大学:しりつだいがく○:4/7
1-30-桃の花:もものはな○:5/5
1-31-炭酸ガス:たんさんがす○:5/6
1-32-幼年時代:ようねんじだい○:5/7
1-33-大学院生:だいがくいんせい○:5/8
1-34-十一月:じゅういちがつ○:6/6
1-35-お願いします:おねがいします:6/7
1-36-自動販売機:じどうはんばいき○:6/8
1-37-携帯ストラップ:けいたいすとらっぷ:7/9
1-38-宜しくお願いします:よろしくおねがいします:10/11

38
tofugu_files/src1.list Normal file
View file

@ -0,0 +1,38 @@
LH 名 な
LHH 水 みず
LHHH 会社 かいしゃ
LHHHH 大学 だいがく
LHHHHH 中国語 ちゅうごくご
LHHHHHH 見物人 けんぶつにん
LHHHHHHH 五十音順 ごじゅうおんじゅん
LHHHHHHHH いい加減にしろ いいかげんにしろ
HL 木 き
HLL 秋 あき
HLLL 電気 でんき
HLLLL 文学 ぶんがく
HLLLLL シャーベット しゃーべっと
HLLLLLL ケンモホロロ けんもほろろ
HLLLLLLL 呉越同舟 ごえつどうしゅう
LHL 花 はな
LHLL お菓子 おかし
LHLLL 雪国 ゆきぐに
LHLLLL 普及率 ふきゅうりつ
LHLLLLL お巡りさん おまわりさん
LHHL 男 おとこ
LHHLL 歳時記 さいじき
LHHLLL 山登り やまのぼり
LHHLLLL 金婚式 きんこんしき
LHHLLLLLL 副大統領 ふくだいとうりょう
LHHHL 弟 おとうと
LHHHLL 小型バス こがたばす
LHHHLLL 国語辞典 こくごじてん
LHHHLLLL 私立大学 しりつだいがく
LHHHHL 桃の花 もものはな
LHHHHLL 炭酸ガス たんさんがす
LHHHHLLL 幼年時代 ようねんじだい
LHHHHLLLL 大学院生 だいがくいんせい
LHHHHHL 十一月 じゅういちがつ
LHHHHHL お願いします おねがいします
LHHHHHLLL 自動販売機 じどうはんばいき
LHHHHHHLL 携帯ストラップ けいたいすとらっぷ
LHHHHHHHHHL 宜しくお願いします よろしくおねがいします

9
tofugu_files/src2.list Normal file
View file

@ -0,0 +1,9 @@
HLL 箸 はし Chopsticks
LHL 橋 はし Bridge
HLL 神 かみ God
LHL 紙 かみ Paper
LHL 髪 かみ Hair
LHH 酒 さけ Alcohol
HLL 鮭 さけ Salmon
LHH 飴 あめ Candy
HLL 雨 あめ Rain